-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
1643 lines (1457 loc) · 88.9 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@stdlib/array-base-filled@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/array-base-filled/-/array-base-filled-0.2.2.tgz#07571a36f9997441048147af8c1a32d04ee4398b"
integrity sha512-T7nB7dni5Y4/nsq6Gc1bAhYfzJbcOdqsmVZJUI698xpDbhCdVCIIaEbf0PnDMGN24psN+5mgAVmnNBom+uF0Xg==
"@stdlib/array-base-zeros@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/array-base-zeros/-/array-base-zeros-0.2.2.tgz#552bbcdf879ec78856d84f89e157eb6a3a71c89d"
integrity sha512-iwxqaEtpi4c2qpqabmhFdaQGkzgo5COwjHPn2T0S0wfJuM1VuVl5UBl15syr+MmZPJQOB1eBbh6F1uTh9597qw==
dependencies:
"@stdlib/array-base-filled" "^0.2.1"
"@stdlib/array-float32@^0.2.1", "@stdlib/array-float32@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/array-float32/-/array-float32-0.2.2.tgz#88dcbb6cb138da3f3b4bc565423a0afc4dec4e1b"
integrity sha512-pTcy1FNQrrJLL1LMxJjuVpcKJaibbGCFFTe41iCSXpSOC8SuTBuNohrO6K9+xR301Ruxxn4yrzjJJ6Fa3nQJ2g==
dependencies:
"@stdlib/assert-has-float32array-support" "^0.2.2"
"@stdlib/array-float64@^0.2.1", "@stdlib/array-float64@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/array-float64/-/array-float64-0.2.2.tgz#66b3a6fd0e030da1b3d9ba195b865791486ec3a7"
integrity sha512-ZmV5wcacGrhT0maw9dfLXNv4N3ZwFUV3D7ItFfZFGFnKIJbubrWzwtaYnxzIXigrDc8g3F6FVHRpsQLMxq0/lA==
dependencies:
"@stdlib/assert-has-float64array-support" "^0.2.2"
"@stdlib/array-uint16@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/array-uint16/-/array-uint16-0.2.2.tgz#d9647ec67f86dcb032b4e72659df818874498959"
integrity sha512-z5c/Izw43HkKfb1pTgEUMAS8GFvhtHkkHZSjX3XJN+17P0VjknxjlSvPiCBGqaDX9jXtlWH3mn1LSyDKtJQoeA==
dependencies:
"@stdlib/assert-has-uint16array-support" "^0.2.2"
"@stdlib/array-uint32@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/array-uint32/-/array-uint32-0.2.2.tgz#0e772f971706e7060fa1878f81b0fe05b86c8f07"
integrity sha512-3T894I9C2MqZJJmRCYFTuJp4Qw9RAt+GzYnVPyIXoK1h3TepUXe9VIVx50cUFIibdXycgu0IFGASeAb3YMyupw==
dependencies:
"@stdlib/assert-has-uint32array-support" "^0.2.2"
"@stdlib/array-uint8@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/array-uint8/-/array-uint8-0.2.2.tgz#4add6fc8fd574c6330a6162aac1ebb421f8a0a82"
integrity sha512-Ip9MUC8+10U9x0crMKWkpvfoUBBhWzc6k5SI4lxx38neFVmiJ3f+5MBADEagjpoKSBs71vlY2drnEZe+Gs2Ytg==
dependencies:
"@stdlib/assert-has-uint8array-support" "^0.2.2"
"@stdlib/assert-has-float32array-support@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-has-float32array-support/-/assert-has-float32array-support-0.2.2.tgz#dacf3439d9a91be30c5637144a2f9afc342ef258"
integrity sha512-pi2akQl8mVki43fF1GNQVLYW0bHIPp2HuRNThX9GjB3OFQTpvrV8/3zPSh4lOxQa5gRiabgf0+Rgeu3AOhEw9A==
dependencies:
"@stdlib/assert-is-float32array" "^0.2.2"
"@stdlib/constants-float64-pinf" "^0.2.2"
"@stdlib/assert-has-float64array-support@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-has-float64array-support/-/assert-has-float64array-support-0.2.2.tgz#228ed3c8a174c4a467b6daccb24b6c9c307cbab5"
integrity sha512-8L3GuKY1o0dJARCOsW9MXcugXapaMTpSG6dGxyNuUVEvFfY5UOzcj9/JIDal5FjqSgqVOGL5qZl2qtRwub34VA==
dependencies:
"@stdlib/assert-is-float64array" "^0.2.2"
"@stdlib/assert-has-generator-support@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-has-generator-support/-/assert-has-generator-support-0.2.2.tgz#93d81c9d8e7ccee8a90bbc8d3f0ddaa1ae7e1ee8"
integrity sha512-TcE9BGV8i7B2OmxPlJ/2DUrAwG0W4fFS/DE7HmVk68PXVZsgyNQ/WP/IHBoazHDjhN5c3dU21c20kM/Bw007Rw==
dependencies:
"@stdlib/utils-eval" "^0.2.2"
"@stdlib/assert-has-own-property@^0.2.1", "@stdlib/assert-has-own-property@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-has-own-property/-/assert-has-own-property-0.2.2.tgz#072661539bb79c353dc5e62ae9252ce428adb5f1"
integrity sha512-m5rV4Z2/iNkwx2vRsNheM6sQZMzc8rQQOo90LieICXovXZy8wA5jNld4kRKjMNcRt/TjrNP7i2Rhh8hruRDlHg==
"@stdlib/assert-has-symbol-support@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-has-symbol-support/-/assert-has-symbol-support-0.2.2.tgz#ed7abecb6ae513c5f52dbd14d4601f3d707ab19f"
integrity sha512-vCsGGmDZz5dikGgdF26rIL0y0nHvH7qaVf89HLLTybceuZijAqFSJEqcB3Gpl5uaeueLNAWExHi2EkoUVqKHGg==
"@stdlib/assert-has-tostringtag-support@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-has-tostringtag-support/-/assert-has-tostringtag-support-0.2.2.tgz#4e5053b69571aca325b9ccf26f8e6acbf8190acb"
integrity sha512-bSHGqku11VH0swPEzO4Y2Dr+lTYEtjSWjamwqCTC8udOiOIOHKoxuU4uaMGKJjVfXG1L+XefLHqzuO5azxdRaA==
dependencies:
"@stdlib/assert-has-symbol-support" "^0.2.1"
"@stdlib/assert-has-uint16array-support@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-has-uint16array-support/-/assert-has-uint16array-support-0.2.2.tgz#b94f9adf53292151129e46a4f2aae2629c679a86"
integrity sha512-aL188V7rOkkEH4wYjfpB+1waDO4ULxo5ppGEK6X0kG4YiXYBL2Zyum53bjEQvo0Nkn6ixe18dNzqqWWytBmDeg==
dependencies:
"@stdlib/assert-is-uint16array" "^0.2.1"
"@stdlib/constants-uint16-max" "^0.2.2"
"@stdlib/assert-has-uint32array-support@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-has-uint32array-support/-/assert-has-uint32array-support-0.2.2.tgz#d5b70c4c068cff8dec176fcd71868690e47abee9"
integrity sha512-+UHKP3mZOACkJ9CQjeKNfbXHm5HGQB862V5nV5q3UQlHPzhslnXKyG1SwAxTx+0g88C/2vlDLeqG8H4TH2UTFA==
dependencies:
"@stdlib/assert-is-uint32array" "^0.2.1"
"@stdlib/constants-uint32-max" "^0.2.2"
"@stdlib/assert-has-uint8array-support@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-has-uint8array-support/-/assert-has-uint8array-support-0.2.2.tgz#33af366594a8540a643360763aada11a1d837075"
integrity sha512-VfzrB0BMik9MvPyKcMDJL3waq4nM30RZUrr2EuuQ/RbUpromRWSDbzGTlRq5SfjtJrHDxILPV3rytDCc03dgWA==
dependencies:
"@stdlib/assert-is-uint8array" "^0.2.1"
"@stdlib/constants-uint8-max" "^0.2.2"
"@stdlib/assert-is-array@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-array/-/assert-is-array-0.2.2.tgz#ba820d24dd914fe8c29bd61033417ab5a2c2c34f"
integrity sha512-aJyTX2U3JqAGCATgaAX9ygvDHc97GCIKkIhiZm/AZaLoFHPtMA1atQ4bKcefEC8Um9eefryxTHfFPfSr9CoNQQ==
dependencies:
"@stdlib/utils-native-class" "^0.2.1"
"@stdlib/assert-is-big-endian@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-big-endian/-/assert-is-big-endian-0.2.2.tgz#6894d3c01f83b0441801bd5b4a25edc1c2a959c7"
integrity sha512-mPEl30/bqZh++UyQbxlyOuB7k0wC73y5J9nD2J6Ud6Fcl76R5IAGHRW0WT3W18is/6jG1jzMd8hrISFyD7N0sA==
dependencies:
"@stdlib/array-uint16" "^0.2.1"
"@stdlib/array-uint8" "^0.2.1"
"@stdlib/assert-is-boolean@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-boolean/-/assert-is-boolean-0.2.2.tgz#1d6361f66a25cd81ae12085da6ce1457311758ee"
integrity sha512-3KFLRTYZpX6u95baZ6PubBvjehJs2xBU6+zrenR0jx8KToUYCnJPxqqj7JXRhSD+cOURmcjj9rocVaG9Nz18Pg==
dependencies:
"@stdlib/assert-has-tostringtag-support" "^0.2.2"
"@stdlib/boolean-ctor" "^0.2.2"
"@stdlib/utils-define-nonenumerable-read-only-property" "^0.2.2"
"@stdlib/utils-native-class" "^0.2.1"
"@stdlib/assert-is-buffer@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-buffer/-/assert-is-buffer-0.2.2.tgz#f32894cc86103c151e144cf3dbac63ef9e3f8f15"
integrity sha512-4/WMFTEcDYlVbRhxY8Wlqag4S70QCnn6WmQ4wmfiLW92kqQHsLvTNvdt/qqh/SDyDV31R/cpd3QPsVN534dNEA==
dependencies:
"@stdlib/assert-is-object-like" "^0.2.1"
"@stdlib/assert-is-float32array@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-float32array/-/assert-is-float32array-0.2.2.tgz#8b6187136f95e3ef8ba8acad33197736e4844bfb"
integrity sha512-hxEKz/Y4m1NYuOaiQKoqQA1HeAYwNXFqSk3FJ4hC71DuGNit2tuxucVyck3mcWLpLmqo0+Qlojgwo5P9/C/9MQ==
dependencies:
"@stdlib/utils-native-class" "^0.2.1"
"@stdlib/assert-is-float64array@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-float64array/-/assert-is-float64array-0.2.2.tgz#c69a894d85a0a9c71f8b68b3aea1ea35bd3ebe85"
integrity sha512-3R1wLi6u/IHXsXMtaLnvN9BSpqAJ8tWhwjOOr6kadDqCWsU7Odc7xKLeAXAInAxwnV8VDpO4ifym4A3wehazPQ==
dependencies:
"@stdlib/utils-native-class" "^0.2.1"
"@stdlib/assert-is-function@^0.2.1", "@stdlib/assert-is-function@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-function/-/assert-is-function-0.2.2.tgz#97b54f449e54fd15913054cc69c7385ea9baab81"
integrity sha512-whY69DUYWljCJ79Cvygp7VzWGOtGTsh3SQhzNuGt+ut6EsOW+8nwiRkyBXYKf/MOF+NRn15pxg8cJEoeRgsPcA==
dependencies:
"@stdlib/utils-type-of" "^0.2.1"
"@stdlib/assert-is-little-endian@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-little-endian/-/assert-is-little-endian-0.2.2.tgz#3f8f2400cee206ce55a21135fd42277361ba88dc"
integrity sha512-KMzPndj85jDiE1+hYCpw12k2OQOVkfpCo7ojCmCl8366wtKGEaEdGbz1iH98zkxRvnZLSMXcYXI2z3gtdmB0Ag==
dependencies:
"@stdlib/array-uint16" "^0.2.1"
"@stdlib/array-uint8" "^0.2.1"
"@stdlib/assert-is-number@^0.2.1", "@stdlib/assert-is-number@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-number/-/assert-is-number-0.2.2.tgz#269ab5bf779a26a2cec7575c9a47e163f5bb74b2"
integrity sha512-sWpJ59GqGbmlcdYSUV/OYkmQW8k47w10+E0K0zPu1x1VKzhjgA5ZB2sJcpgI8Vt3ckRLjdhuc62ZHJkrJujG7A==
dependencies:
"@stdlib/assert-has-tostringtag-support" "^0.2.2"
"@stdlib/number-ctor" "^0.2.2"
"@stdlib/utils-define-nonenumerable-read-only-property" "^0.2.2"
"@stdlib/utils-native-class" "^0.2.1"
"@stdlib/assert-is-object-like@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-object-like/-/assert-is-object-like-0.2.2.tgz#3bd47386addeb7ccb4ac82b9d924ddaa5fddde57"
integrity sha512-MjQBpHdEebbJwLlxh/BKNH8IEHqY0YlcCMRKOQU0UOlILSJg0vG+GL4fDDqtx9FSXxcTqC+w3keHx8kAKvQhzg==
dependencies:
"@stdlib/assert-tools-array-function" "^0.2.1"
"@stdlib/utils-define-nonenumerable-read-only-property" "^0.2.2"
"@stdlib/assert-is-object@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-object/-/assert-is-object-0.2.2.tgz#671297efc43788aa5368ce59ede28a8089387a7f"
integrity sha512-sNnphJuHyMDHHHaonlx6vaCKMe4sHOn0ag5Ck4iW3kJtM2OZB2J4h8qFcwKzlMk7fgFu7vYNGCZtpm1dYbbUfQ==
dependencies:
"@stdlib/assert-is-array" "^0.2.1"
"@stdlib/assert-is-plain-object@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-plain-object/-/assert-is-plain-object-0.2.2.tgz#90b67c33ec6430ee5ca5a4c053ef5843550a3435"
integrity sha512-o4AFWgBsSNzZAOOfIrxoDFYTqnLuGiaHDFwIeZGUHdpQeav2Fll+sGeaqOcekF7yKawoswnwWdJqTsjapb4Yzw==
dependencies:
"@stdlib/assert-has-own-property" "^0.2.1"
"@stdlib/assert-is-function" "^0.2.1"
"@stdlib/assert-is-object" "^0.2.1"
"@stdlib/utils-get-prototype-of" "^0.2.1"
"@stdlib/utils-native-class" "^0.2.1"
"@stdlib/assert-is-regexp@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-regexp/-/assert-is-regexp-0.2.2.tgz#4d0f24c5ab189da3839ceca7e6955d263d7b798d"
integrity sha512-2JtiUtRJxPaVXL7dkWoV3n5jouI65DwYDXsDXg3xo23TXlTNGgU/HhKO4FWC1Yqju7YMZi0hcZSW6E9v8ISqeQ==
dependencies:
"@stdlib/assert-has-tostringtag-support" "^0.2.2"
"@stdlib/utils-native-class" "^0.2.1"
"@stdlib/assert-is-string@^0.2.1", "@stdlib/assert-is-string@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-string/-/assert-is-string-0.2.2.tgz#2f3099045f5c9bdb85bf7620c021c17e5be19f2f"
integrity sha512-SOkFg4Hq443hkadM4tzcwTHWvTyKP9ULOZ8MSnnqmU0nBX1zLVFLFGY8jnF6Cary0dL0V7QQBCfuxqKFM6u2PQ==
dependencies:
"@stdlib/assert-has-tostringtag-support" "^0.2.2"
"@stdlib/utils-define-nonenumerable-read-only-property" "^0.2.2"
"@stdlib/utils-native-class" "^0.2.1"
"@stdlib/assert-is-uint16array@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-uint16array/-/assert-is-uint16array-0.2.2.tgz#85346d95d8fd08c879a0b33a210d9224f54a2d4b"
integrity sha512-w3+HeTiXGLJGw5nCqr0WbvgArNMEj7ulED1Yd19xXbmmk2W1ZUB+g9hJDOQTiKsTU4AVyH4/As+aA8eDVmWtmg==
dependencies:
"@stdlib/utils-native-class" "^0.2.1"
"@stdlib/assert-is-uint32array@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-uint32array/-/assert-is-uint32array-0.2.2.tgz#37f35526101e5847c54cb8c9952976d1888a0bb8"
integrity sha512-3F4nIHg1Qp0mMIsImWUC8DwQ3qBK5vdIJTjS2LufLbFBhHNmv5kK1yJiIXQDTLkENU0STZe05TByo01ZNLOmDQ==
dependencies:
"@stdlib/utils-native-class" "^0.2.1"
"@stdlib/assert-is-uint8array@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-is-uint8array/-/assert-is-uint8array-0.2.2.tgz#2d46b13d58b8d1b6aa4e4841fbb6903c6cd07a08"
integrity sha512-51WnDip6H2RrN0CbqWmfqySAjam8IZ0VjlfUDc3PtcgrZGrKKjVgyHAsT/L3ZDydwF+aB94uvYJu5QyrCPNaZw==
dependencies:
"@stdlib/utils-native-class" "^0.2.1"
"@stdlib/assert-tools-array-function@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/assert-tools-array-function/-/assert-tools-array-function-0.2.2.tgz#aba9b71b5164e97872cd2d6b16b221e01bd8c5e0"
integrity sha512-FYeT7X9x0C8Nh+MN6IJUDz+7i7yB6mio2/SDlrvyepjyPSU/cfHfwW0GEOnQhxZ+keLZC/YqDD930WjRODwMdA==
dependencies:
"@stdlib/assert-is-array" "^0.2.1"
"@stdlib/error-tools-fmtprodmsg" "^0.2.2"
"@stdlib/string-format" "^0.2.2"
"@stdlib/boolean-ctor@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/boolean-ctor/-/boolean-ctor-0.2.2.tgz#d0add4760adeca22631625dd95bb9ca32abb931a"
integrity sha512-qIkHzmfxDvGzQ3XI9R7sZG97QSaWG5TvWVlrvcysOGT1cs6HtQgnf4D//SRzZ52VLm8oICP+6OKtd8Hpm6G7Ww==
"@stdlib/complex-float32-ctor@^0.0.2":
version "0.0.2"
resolved "https://registry.yarnpkg.com/@stdlib/complex-float32-ctor/-/complex-float32-ctor-0.0.2.tgz#57f6d3f0217c1ae1f83ea12b044a80e951a215d3"
integrity sha512-QsTLynhTRmDT0mSkfdHj0FSqQSxh2nKx+vvrH3Y0/Cd/r0WoHFZwyibndDxshfkf9B7nist8QKyvV82I3IZciA==
dependencies:
"@stdlib/assert-is-number" "^0.2.2"
"@stdlib/error-tools-fmtprodmsg" "^0.2.2"
"@stdlib/number-float64-base-to-float32" "^0.2.1"
"@stdlib/string-format" "^0.2.2"
"@stdlib/utils-define-nonenumerable-read-only-property" "^0.2.2"
"@stdlib/utils-define-property" "^0.2.4"
"@stdlib/complex-float32-reim@^0.1.1", "@stdlib/complex-float32-reim@^0.1.2":
version "0.1.2"
resolved "https://registry.yarnpkg.com/@stdlib/complex-float32-reim/-/complex-float32-reim-0.1.2.tgz#095fcd9e4c2657d58c294eeeaeb5d46591d844bc"
integrity sha512-24H+t1xwQF6vhOoMZdDA3TFB4M+jb5Swm/FwNaepovlzVIG2NlthUZs6mZg1T3oegqesIRQRwhpn4jIPjuGiTw==
dependencies:
"@stdlib/array-float32" "^0.2.2"
"@stdlib/complex-float32-ctor" "^0.0.2"
"@stdlib/complex-float32@^0.2.1":
version "0.2.1"
resolved "https://registry.yarnpkg.com/@stdlib/complex-float32/-/complex-float32-0.2.1.tgz#a0438d278f4dd6ed76f31cc5d2094afdc113ff1e"
integrity sha512-tp83HfJzcZLK7/6P6gZPcAa/8F/aHS7gBHgB6ft45d/n6oE+/VbnyOvsJKanRv8S96kBRj8xkvlWHz4IiBrT0Q==
dependencies:
"@stdlib/assert-is-number" "^0.2.1"
"@stdlib/number-float64-base-to-float32" "^0.2.1"
"@stdlib/string-format" "^0.2.1"
"@stdlib/utils-define-nonenumerable-read-only-property" "^0.2.1"
"@stdlib/utils-define-property" "^0.2.1"
"@stdlib/complex-float64-ctor@^0.0.3":
version "0.0.3"
resolved "https://registry.yarnpkg.com/@stdlib/complex-float64-ctor/-/complex-float64-ctor-0.0.3.tgz#740fdb24f5d1d5db82fa7800b91037e552a47bb6"
integrity sha512-oixCtBif+Uab2rKtgedwQTbQTEC+wVSu4JQH935eJ8Jo0eL6vXUHHlVrkLgYKlCDLvq5px1QQn42Czg/ixh6Gw==
dependencies:
"@stdlib/assert-is-number" "^0.2.2"
"@stdlib/complex-float32-ctor" "^0.0.2"
"@stdlib/error-tools-fmtprodmsg" "^0.2.2"
"@stdlib/string-format" "^0.2.2"
"@stdlib/utils-define-nonenumerable-read-only-property" "^0.2.2"
"@stdlib/utils-define-property" "^0.2.4"
"@stdlib/complex-float64-reim@^0.1.1", "@stdlib/complex-float64-reim@^0.1.2":
version "0.1.2"
resolved "https://registry.yarnpkg.com/@stdlib/complex-float64-reim/-/complex-float64-reim-0.1.2.tgz#22276ea7feef9d61c5bc0d4b0d0137386c57960e"
integrity sha512-q6RnfgbUunApAYuGmkft1oOM3x3xVMVJwNRlRgfIXwKDb8pYt+S/CeIwi3Su5SF6ay3AqA1s+ze7m21osXAJyw==
dependencies:
"@stdlib/array-float64" "^0.2.2"
"@stdlib/complex-float64-ctor" "^0.0.3"
"@stdlib/complex-float64@^0.2.1":
version "0.2.1"
resolved "https://registry.yarnpkg.com/@stdlib/complex-float64/-/complex-float64-0.2.1.tgz#c22fb40c12078a9ed3a4b8dadf82ab642455b149"
integrity sha512-vN9GqlSaonoREf8/RIN9tfNLnkfN4s7AI0DPsGnvc1491oOqq9UqMw8rYTrnxuum9/OaNAAUqDkb5GLu5uTveQ==
dependencies:
"@stdlib/assert-is-number" "^0.2.1"
"@stdlib/complex-float32" "^0.2.1"
"@stdlib/string-format" "^0.2.1"
"@stdlib/utils-define-nonenumerable-read-only-property" "^0.2.1"
"@stdlib/utils-define-property" "^0.2.1"
"@stdlib/complex-reim@^0.2.1":
version "0.2.1"
resolved "https://registry.yarnpkg.com/@stdlib/complex-reim/-/complex-reim-0.2.1.tgz#19d50743696060f3d993ad9c014f5794ea6f1d94"
integrity sha512-67nakj+HwBRx/ha3j/sLbrMr2hwFVgEZtaczOgn1Jy/cU03lKvNbMkR7QI9s+sA+b+A3yJB3ob8ZQSqh3D1+dA==
dependencies:
"@stdlib/array-float64" "^0.2.1"
"@stdlib/complex-float64" "^0.2.1"
"@stdlib/complex-reimf@^0.2.1":
version "0.2.1"
resolved "https://registry.yarnpkg.com/@stdlib/complex-reimf/-/complex-reimf-0.2.1.tgz#d14cd881ea0da0f952e381b936c58629f575803f"
integrity sha512-6HyPPmo0CEHoBjOg2w70mMFLcFEunM78ljnW6kf1OxjM/mqMaBM1NRpDrQoFwCIdh1RF1ojl3JR0YLllEf0qyQ==
dependencies:
"@stdlib/array-float32" "^0.2.1"
"@stdlib/complex-float32" "^0.2.1"
"@stdlib/constants-float32-smallest-normal@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float32-smallest-normal/-/constants-float32-smallest-normal-0.2.2.tgz#6919f88ec5398935a5e52950e3910e0a454f6292"
integrity sha512-2qkGjGML2/8P9YguHnac2AKXLbfycpYdCxKmuXQdAVzMMNCJWjHoIqZMFG29WBEDBOP057X+48S6WhIqoxRpWA==
"@stdlib/constants-float64-e@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-e/-/constants-float64-e-0.2.2.tgz#d05f73f9901852a71eb0d79eaff79a574d22b2d6"
integrity sha512-7fxHaABwosbUzpBsw6Z9Dd9MqUYne8x+44EjohVcWDr0p0mHB/DXVYEYTlwEP/U/XbRrKdO3jUG6IO/GsEjzWg==
"@stdlib/constants-float64-eps@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-eps/-/constants-float64-eps-0.2.2.tgz#4a39f718e1ce570a0e020e8b393cf4dc28b5c453"
integrity sha512-61Pb2ip9aPhHXxiCn+VZ0UVw2rMYUp0xrX93FXyB3UTLacrofRKLMKtbV0SFac4VXx5igv2+0G+h6G/fwCgjyw==
"@stdlib/constants-float64-eulergamma@^0.2.1", "@stdlib/constants-float64-eulergamma@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-eulergamma/-/constants-float64-eulergamma-0.2.2.tgz#18b42b978e1f8763049661d98948aa548a1e2d66"
integrity sha512-XsuVud0d1hLTQspFzgUSH2e3IawTXLlJi2k4Vg0Nn6juulxfNO9PnAGtHz+p1BynYF/YwN+qhKnISQxrN31rsQ==
"@stdlib/constants-float64-exponent-bias@^0.2.1", "@stdlib/constants-float64-exponent-bias@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-exponent-bias/-/constants-float64-exponent-bias-0.2.2.tgz#ca64c846f1eac982b45fe8b0c3dc059796781ecb"
integrity sha512-zLWkjzDYHSsBsXB/4mwHysOGl64JS3XBt/McjvjCLc/IZpfsUNFxLCl7oVCplXzYYHcQj/RfEBFy6cxQ6FvdpQ==
"@stdlib/constants-float64-fourth-pi@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-fourth-pi/-/constants-float64-fourth-pi-0.2.2.tgz#0e1cb8c11018930bc36a9feba9a46acbda8b68ab"
integrity sha512-j0NOg45ouibms4ML8pfS/eDrurdtnhJTNPCGQM4mg3X+1ljsuO0pvkpVCvuz29t5J23KTcfGBXXr90ikoBmjlw==
"@stdlib/constants-float64-gamma-lanczos-g@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-gamma-lanczos-g/-/constants-float64-gamma-lanczos-g-0.2.2.tgz#3c33664a71869a31cdc2d6e8b9564ec1a74cd8d1"
integrity sha512-hCaZbZ042htCy9mlGrfUEbz4d0xW/DLdr3vHs5KiBWU+G+WHVH33vubSnEoyT0ugWpAk2ZqWXe/V8sLGgOu0xg==
"@stdlib/constants-float64-half-ln-two@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-half-ln-two/-/constants-float64-half-ln-two-0.2.2.tgz#aebc7069842ddb2bb8a5f07c47465a4024a9fe8b"
integrity sha512-yv1XhzZR2AfJmnAGL0kdWlIUhc/vqdWol+1Gq2brXPVfgqbUmJu5XZuuK+jZA2k+fHyvRHNEwQRv9OPnOjchFg==
"@stdlib/constants-float64-half-pi@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-half-pi/-/constants-float64-half-pi-0.2.2.tgz#50e022720f1d96fc1bd0f49573cb5283778a11a7"
integrity sha512-lM3SiDsZCKiuF5lPThZFFqioIwh1bUiBUnnDMLB04/QkVRCAaXUo+dsq2hOB6iBhHoYhiKds6T+PsHSBlpqAaA==
"@stdlib/constants-float64-high-word-abs-mask@^0.2.1", "@stdlib/constants-float64-high-word-abs-mask@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-high-word-abs-mask/-/constants-float64-high-word-abs-mask-0.2.2.tgz#475f292601837efb5d1647239a80cf4f9e68d2e9"
integrity sha512-YtYngcHlw9qvOpmsSlkNHi6cy/7Y7QkyYh5kJbDvuOUXPDKa3rEwBln4mKjbWsXhmmN0bk7TLypH7Ryd/UAjUQ==
"@stdlib/constants-float64-high-word-exponent-mask@^0.2.1", "@stdlib/constants-float64-high-word-exponent-mask@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-high-word-exponent-mask/-/constants-float64-high-word-exponent-mask-0.2.2.tgz#d215f3f1e36278a8349759c6451e457e7d037723"
integrity sha512-LhYUXvpnLOFnWr8ucHA9N/H75VxcS2T9EoBDTmWBZoKj2Pg0icGVDmcNciRLIWbuPA9osgcKpxoU+ADIfaipVA==
"@stdlib/constants-float64-high-word-sign-mask@^0.2.1":
version "0.2.1"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-high-word-sign-mask/-/constants-float64-high-word-sign-mask-0.2.1.tgz#c5b4bc07c023e92aee6bc4dd5c737b9a6374cd55"
integrity sha512-Fep/Ccgvz5i9d5k96zJsDjgXGno8HJfmH7wihLmziFmA2z9t7NSacH4/BH4rPJ5yXFHLkacNLDxaF1gO1XpcLA==
"@stdlib/constants-float64-high-word-significand-mask@^0.2.1", "@stdlib/constants-float64-high-word-significand-mask@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-high-word-significand-mask/-/constants-float64-high-word-significand-mask-0.2.2.tgz#66d3a609b9e06d6e7eb219d75ffe36550e95a312"
integrity sha512-eDDyiQ5PR1/qyklrW0Pus0ZopM7BYjkWTjqhSHhj0DibH6UMwSMlIl4ddCh3VX37p5eByuAavnaPgizk5c9mUw==
"@stdlib/constants-float64-ln-two@^0.2.1", "@stdlib/constants-float64-ln-two@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-ln-two/-/constants-float64-ln-two-0.2.2.tgz#9fc1ba5f35b11c780a13efb1c238d1488f314c14"
integrity sha512-EQ8EJ6B1wPfuhva0aApKIsF7lTna++txV4AUzL2wTfwDHw6RzWpA44u+k54KnLF8ZXUNIYDNQHHvtzdfKrFzCA==
"@stdlib/constants-float64-max-base2-exponent-subnormal@^0.2.1":
version "0.2.1"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-max-base2-exponent-subnormal/-/constants-float64-max-base2-exponent-subnormal-0.2.1.tgz#57a5550f0f148cab0f51872237016344e6b0b10c"
integrity sha512-D1wBNn54Hu2pK6P/yBz0FtPBI3/7HdgK8igYjWDKWUKzC92R/6PHZ9q5NzedcGxoBs8MUk1zNpP0tZyYj9Y4YQ==
"@stdlib/constants-float64-max-base2-exponent@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-max-base2-exponent/-/constants-float64-max-base2-exponent-0.2.2.tgz#bc5f506ae7022442f7ea8da8105b5392b72efdfd"
integrity sha512-KmDe98pJ2HXz2SbqyFfSDhlSSVD7JssjbZ5K11HEK2avqMcoCbdHH20T+6/TpA01VqaK8dLbeyphOfALcDdMKA==
"@stdlib/constants-float64-max-ln@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-max-ln/-/constants-float64-max-ln-0.2.2.tgz#7d0c813590533544e7984a9eb1db9375b2adbd04"
integrity sha512-FPAEGjnoQMDPWJbCyyto7HWQ/SY2jjD8IkjyD8aOwENqbswjCbOINXRiK2ar27OOXG7Dv7CCpFpoorTxv0gmfA==
"@stdlib/constants-float64-max-safe-integer@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-max-safe-integer/-/constants-float64-max-safe-integer-0.2.2.tgz#2ac062325f9d2da4869005db396b75d16f15e53b"
integrity sha512-d+sxmxhkt980SDFhnnRDSpujPQTv4nEt5Ox3L86HgYZU4mQU/wbzYVkMuHIANW9x3ehww5blnGXTKYG9rQCXAw==
"@stdlib/constants-float64-max-safe-nth-factorial@^0.1.0":
version "0.1.0"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-max-safe-nth-factorial/-/constants-float64-max-safe-nth-factorial-0.1.0.tgz#d11a056dba48a6106865c96265f487dc93eec56a"
integrity sha512-sppIfkBbeyKNwfRbmNFi5obI7Q+IJCQzfWKYqvzmEJVOkmEg6hhtEeFc8zZJGCU7+Pndc3M2wdbTT5a3rhamHw==
"@stdlib/constants-float64-max@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-max/-/constants-float64-max-0.2.2.tgz#a8c2e6fdcc845266c9796a912f58ef14c11499dd"
integrity sha512-S3kcIKTK65hPqirziof3KTYqfFKopgaTnaiDlDKdzaCzBZ5qkrAcRd4vl+W1KHoZruUyWC2/RYZUa/8+h075TQ==
"@stdlib/constants-float64-min-base2-exponent-subnormal@^0.2.1":
version "0.2.1"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-min-base2-exponent-subnormal/-/constants-float64-min-base2-exponent-subnormal-0.2.1.tgz#b09334e3ba1ef29a166a46bf21d10c5896f46968"
integrity sha512-fTXfvctXWj/48gK+gbRBrHuEHEKY4QOJoXSGp414Sz6vUxHusHJJ686p8ze3XqM7CY6fmL09ZgdGz/uhJl/7lw==
"@stdlib/constants-float64-min-base2-exponent@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-min-base2-exponent/-/constants-float64-min-base2-exponent-0.2.2.tgz#a6f7d080d54b68a753114dabe724ed881ccdc3c7"
integrity sha512-YZmBiKik6LbWB4EOZ/ZUs/u6OIF742xNK8mhEqL0OEN4NuJe3OdErpOic6KjMmHjQuqCXdFoSqsWZaFHcIN7HA==
"@stdlib/constants-float64-min-ln@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-min-ln/-/constants-float64-min-ln-0.2.2.tgz#5e50f21037b78cfb8c81f9f39bfd00982fdb29ec"
integrity sha512-N1Sxjo3uTdEIpHeG2TzaX06UuvpcKHvjYKpIMhJSajbxvfVDURHlc9kIpfbP9C9/YYoCy0FvewA/kvbqNaYypA==
"@stdlib/constants-float64-ninf@^0.2.1", "@stdlib/constants-float64-ninf@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-ninf/-/constants-float64-ninf-0.2.2.tgz#d7f5c5d445701dca25d39c14cac7a17acd7c5ee0"
integrity sha512-Iu+wZs/vgudAKVg9FEcRY3FadkmvsWuq/wJ3jIHjhaP5xcnoF3XJUO4IneEndybHwehfJL65NShnDsJcg1gicw==
dependencies:
"@stdlib/number-ctor" "^0.2.2"
"@stdlib/constants-float64-pi@^0.2.1", "@stdlib/constants-float64-pi@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-pi/-/constants-float64-pi-0.2.2.tgz#78fce5be6156bf3f676c1e2d3398b8ede4b39beb"
integrity sha512-ix34KmpUQ0LUM++L6avLhM9LFCcGTlsUDyWD/tYVGZBiIzDS3TMKShHRkZvC+v87fuyYNPoxolYtk5AlbacI6g==
"@stdlib/constants-float64-pinf@^0.2.1", "@stdlib/constants-float64-pinf@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-pinf/-/constants-float64-pinf-0.2.2.tgz#e568ccfc63f8788f48acb55821bc9f0a7403ec5d"
integrity sha512-UcwnWaSkUMD8QyKADwkXPlY7yOosCPZpE2EDXf/+WOzuWi5vpsec+JaasD5ggAN8Rv8OTVmexTFs1uZfrHgqVQ==
"@stdlib/constants-float64-smallest-normal@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-smallest-normal/-/constants-float64-smallest-normal-0.2.2.tgz#943976c55fbb8f1a53d48cd2cb16e26611a290e2"
integrity sha512-GXNBkdqLT9X+dU59O1kmb7W5da/RhSXSvxx0xG5r7ipJPOtRLfTXGGvvTzWD4xA3Z5TKlrEL6ww5sph9BsPJnA==
"@stdlib/constants-float64-sqrt-eps@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-sqrt-eps/-/constants-float64-sqrt-eps-0.2.2.tgz#24ec5396e6ec54e46844d27f1e3301b2bb602203"
integrity sha512-X7LnGfnwNnhiwlY+zd3FX6zclsx61MaboGTNAAdaV78YjBDTdGdWMHk5MQo1U17ryPlhdGphOAejhDHeaSnTXQ==
"@stdlib/constants-float64-sqrt-two-pi@^0.2.1", "@stdlib/constants-float64-sqrt-two-pi@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-sqrt-two-pi/-/constants-float64-sqrt-two-pi-0.2.2.tgz#92f7b972e486cd6508054d2c6b85ef05004dffd3"
integrity sha512-I8Ylr64x8AFSQ2hFBT8szuIBAy2wqPx69taJMzfcmuM5SnSbS8SE/H19YnCimZErVFo4bz0Rh8Fp3edN4i6teQ==
"@stdlib/constants-float64-two-pi@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-float64-two-pi/-/constants-float64-two-pi-0.2.2.tgz#5c4b9dfad499932dec554da9f62da46a9bbf071c"
integrity sha512-cyXuwYOersVsA8tDSJ0ocMbtOc5KGxjlGvYC4vrpLQVkgNpxcGbA57n6JvaGmNk7+InXXbQ7qhTWGbTNgafcLQ==
"@stdlib/constants-int32-max@^0.2.1":
version "0.2.1"
resolved "https://registry.yarnpkg.com/@stdlib/constants-int32-max/-/constants-int32-max-0.2.1.tgz#5e4b47015561de50fdfb5c7ad9350a192c5a2f48"
integrity sha512-vKtp3q/HdAeGG8BJBZdNzFrYpVQeleODgvOxh9Pn/TX1Ktjc50I9TVl7nTVWsT2QnacruOorILk2zNsdgBHPUQ==
"@stdlib/constants-int32-max@^0.3.0":
version "0.3.0"
resolved "https://registry.yarnpkg.com/@stdlib/constants-int32-max/-/constants-int32-max-0.3.0.tgz#e575c365738d81b5fa1273877893312d3597af2c"
integrity sha512-jYN84QfG/yP2RYw98OR6UYehFFs0PsGAihV6pYU0ey+WF9IOXgSjRP56KMoZ7ctHwl4wsnj9I+qB2tGuEXr+pQ==
"@stdlib/constants-uint16-max@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-uint16-max/-/constants-uint16-max-0.2.2.tgz#8bba489909ea11a468a01afe57be912cbce57f56"
integrity sha512-qaFXbxgFnAkt73P5Ch7ODb0TsOTg0LEBM52hw6qt7+gTMZUdS0zBAiy5J2eEkTxA9rD9X3nIyUtLf2C7jafNdw==
"@stdlib/constants-uint32-max@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-uint32-max/-/constants-uint32-max-0.2.2.tgz#354b3c0f78ad54ff565087f01d9d8c337af63831"
integrity sha512-2G44HQgIKDrh3tJUkmvtz+eM+uwDvOMF+2I3sONcTHacANb+zP7la4LDYiTp+HFkPJyfh/kPapXBiHpissAb1A==
"@stdlib/constants-uint8-max@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/constants-uint8-max/-/constants-uint8-max-0.2.2.tgz#1187e326b5f03d94a72051cace560ef156ac609d"
integrity sha512-ZTBQq3fqS/Y4ll6cPY5SKaS266EfmKP9PW3YLJaTELmYIzVo9w2RFtfCqN05G3olTQ6Le9MUEE/C6VFgZNElDQ==
"@stdlib/error-tools-fmtprodmsg@^0.2.1", "@stdlib/error-tools-fmtprodmsg@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/error-tools-fmtprodmsg/-/error-tools-fmtprodmsg-0.2.2.tgz#0b42240fc5131b460f1120b77da8345dd22ee2dd"
integrity sha512-2IliQfTes4WV5odPidZFGD5eYDswZrPXob7oOu95Q69ERqImo8WzSwnG2EDbHPyOyYCewuMfM5Ha6Ggf+u944Q==
"@stdlib/fs-exists@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/fs-exists/-/fs-exists-0.2.2.tgz#ccb289c0784f765796c27593abe6e398fb1bbdd2"
integrity sha512-uGLqc7izCIam2aTyv0miyktl4l8awgRkCS39eIEvvvnKIaTBF6pxfac7FtFHeEQKE3XhtKsOmdQ/yJjUMChLuA==
dependencies:
"@stdlib/utils-define-nonenumerable-read-only-property" "^0.2.2"
"@stdlib/fs-resolve-parent-path@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/fs-resolve-parent-path/-/fs-resolve-parent-path-0.2.2.tgz#434fa93c067894fea7632aa4b93fba41d7a58cf5"
integrity sha512-ZG78ouZc+pdPLtU+sSpYTvbKTiLUgn6NTtlVFYmcmkYRFn+fGOOakwVuhYMcYG6ti10cLD6WzB/YujxIt8f+nA==
dependencies:
"@stdlib/assert-has-own-property" "^0.2.2"
"@stdlib/assert-is-function" "^0.2.2"
"@stdlib/assert-is-plain-object" "^0.2.2"
"@stdlib/assert-is-string" "^0.2.2"
"@stdlib/error-tools-fmtprodmsg" "^0.2.2"
"@stdlib/fs-exists" "^0.2.2"
"@stdlib/process-cwd" "^0.2.2"
"@stdlib/string-format" "^0.2.2"
"@stdlib/utils-define-nonenumerable-read-only-property" "^0.2.2"
"@stdlib/function-ctor@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/function-ctor/-/function-ctor-0.2.2.tgz#7212e3dc6ff3ec719584b68427d17d7b7bd8b6f1"
integrity sha512-qSn1XQnnhgCSYBfFy4II0dY5eW4wdOprgDTHcOJ3PkPWuZHDC1fXZsok1OYAosHqIiIw44zBFcMS/JRex4ebdQ==
"@stdlib/math-base-assert-is-even@^0.2.1", "@stdlib/math-base-assert-is-even@^0.2.2":
version "0.2.3"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-assert-is-even/-/math-base-assert-is-even-0.2.3.tgz#1bc3977e3f9b9fc732c2230a6cf515971a6b16c0"
integrity sha512-cziGv8F/aNyfME7Wx2XJjnYBnf9vIeh8yTIzlLELd0OqGHqfsHU5OQxxcl9x5DbjZ1G/w0lphWxHFHYCuwFCHw==
dependencies:
"@stdlib/math-base-assert-is-integer" "^0.2.4"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-assert-is-infinite@^0.2.1", "@stdlib/math-base-assert-is-infinite@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-assert-is-infinite/-/math-base-assert-is-infinite-0.2.2.tgz#9bf19e92e8498cbf6ffb46900f422799e6b08523"
integrity sha512-4zDZuinC3vkXRdQepr0ZTwWX3KgM0VIWqYthOmCSgLLA87L9M9z9MgUZL1QeYeYa0+60epjDcQ8MS3ecT70Jxw==
dependencies:
"@stdlib/constants-float64-ninf" "^0.2.2"
"@stdlib/constants-float64-pinf" "^0.2.1"
"@stdlib/utils-library-manifest" "^0.2.1"
"@stdlib/math-base-assert-is-integer@^0.2.1", "@stdlib/math-base-assert-is-integer@^0.2.4", "@stdlib/math-base-assert-is-integer@^0.2.5":
version "0.2.5"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-assert-is-integer/-/math-base-assert-is-integer-0.2.5.tgz#fa30a62ee27a90bf5cf598f78d7c0de50b582413"
integrity sha512-Zi8N66GbWtSCR3OUsRdBknjNlX+aBN8w6CaVEP5+Jy/a7MgMYzevS52TNS5sm8jqzKBlFhZlPLex+Zl2GlPvSA==
dependencies:
"@stdlib/math-base-special-floor" "^0.2.3"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-assert-is-nan@^0.2.1", "@stdlib/math-base-assert-is-nan@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-assert-is-nan/-/math-base-assert-is-nan-0.2.2.tgz#84289029340e0002a3795e640b7c46be3c3e1696"
integrity sha512-QVS8rpWdkR9YmHqiYLDVLsCiM+dASt/2feuTl4T/GSdou3Y/PS/4j/tuDvCDoHDNfDkULUW+FCVjKYpbyoeqBQ==
dependencies:
"@stdlib/utils-library-manifest" "^0.2.1"
"@stdlib/math-base-assert-is-negative-zero@^0.2.1", "@stdlib/math-base-assert-is-negative-zero@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-assert-is-negative-zero/-/math-base-assert-is-negative-zero-0.2.2.tgz#63c7a9a8d3a876e2107abab6c5e520135f7c36f6"
integrity sha512-WvKNuBZ6CDarOTzOuFLmO1jwZnFD+butIvfD2Ws6SsuqSCiWOaF4OhIckqPzo1XEdkqqhRNPqBxqc0D+hsEYVA==
dependencies:
"@stdlib/constants-float64-ninf" "^0.2.2"
"@stdlib/utils-library-manifest" "^0.2.1"
"@stdlib/math-base-assert-is-odd@^0.2.1":
version "0.2.1"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-assert-is-odd/-/math-base-assert-is-odd-0.2.1.tgz#c75a051c3fca6211908f5cbc161e987022de2b66"
integrity sha512-V4qQuCO6/AA5udqlNatMRZ8R/MgpqD8mPIkFrpSZJdpLcGYSz815uAAf3NBOuWXkE2Izw0/Tg/hTQ+YcOW2g5g==
dependencies:
"@stdlib/math-base-assert-is-even" "^0.2.1"
"@stdlib/math-base-assert-is-odd@^0.3.0":
version "0.3.0"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-assert-is-odd/-/math-base-assert-is-odd-0.3.0.tgz#b20b99e31ec4c6cc28aae4e722360f12eea82c1a"
integrity sha512-V44F3xdR5/bHXqqYvE/AldLnVmijLr/rgf7EjnJXXDQLfPCgemy0iHTFl19N68KG1YO9SMPdyOaNjh4K0O9Qqw==
dependencies:
"@stdlib/math-base-assert-is-even" "^0.2.2"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-assert-is-positive-zero@^0.2.1", "@stdlib/math-base-assert-is-positive-zero@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-assert-is-positive-zero/-/math-base-assert-is-positive-zero-0.2.2.tgz#51e3f4bcda6e7d53c9cd840b872029169cf6dafc"
integrity sha512-mMX5xsemKpHRAgjpVJCb3eVZ3WIkZh6KnHQH8i8n4vI44pcdpN5rcTdEAMlhLjxT/rT7H2wq85f7/FRsq9r9rw==
dependencies:
"@stdlib/constants-float64-pinf" "^0.2.1"
"@stdlib/utils-library-manifest" "^0.2.1"
"@stdlib/math-base-napi-binary@^0.2.1":
version "0.2.1"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-napi-binary/-/math-base-napi-binary-0.2.1.tgz#0e69751a6570efe606bcc9826ebcacdfc2864213"
integrity sha512-ewGarSRaz5gaLsE17yJ4me03e56ICgPAA0ru0SYFCeMK2E5Z4Z2Lbu7HAQTTg+8XhpoaZSw0h2GJopTV7PCKmw==
dependencies:
"@stdlib/complex-float32" "^0.2.1"
"@stdlib/complex-float64" "^0.2.1"
"@stdlib/complex-reim" "^0.2.1"
"@stdlib/complex-reimf" "^0.2.1"
"@stdlib/utils-library-manifest" "^0.2.1"
"@stdlib/math-base-napi-binary@^0.3.0":
version "0.3.0"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-napi-binary/-/math-base-napi-binary-0.3.0.tgz#3a3e2d29b2298fc07e3bf39ef408371dfeedfa40"
integrity sha512-bhwsmGMOMN1srcpNAFRjDMSXe9ue1s/XmaoBBlqcG6S2nqRQlIVnKKH4WZx4hmC1jDqoFXuNPJGE47VXpVV+mA==
dependencies:
"@stdlib/complex-float32-ctor" "^0.0.2"
"@stdlib/complex-float32-reim" "^0.1.2"
"@stdlib/complex-float64-ctor" "^0.0.3"
"@stdlib/complex-float64-reim" "^0.1.2"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-napi-unary@^0.2.1", "@stdlib/math-base-napi-unary@^0.2.3":
version "0.2.3"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-napi-unary/-/math-base-napi-unary-0.2.3.tgz#57862685d6ce037aa927020d272e8d74cc243320"
integrity sha512-BCyJmpq2S8EFo2yMt1z+v1EL7nn8RHcM6jn7fa8n3BTP679K0MSlawIh3A0CFogfrTdjPM4G44VO1ddsdLExcg==
dependencies:
"@stdlib/complex-float32-ctor" "^0.0.2"
"@stdlib/complex-float32-reim" "^0.1.1"
"@stdlib/complex-float64-ctor" "^0.0.3"
"@stdlib/complex-float64-reim" "^0.1.1"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-abs@^0.2.1", "@stdlib/math-base-special-abs@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-abs/-/math-base-special-abs-0.2.2.tgz#cc52e7e62f43df358c078ec1894faa5a988efee0"
integrity sha512-cw5CXj05c/L0COaD9J+paHXwmoN5IBYh+Spk0331f1pEMvGxSO1KmCREZaooUEEFKPhKDukEHKeitja2yAQh4Q==
dependencies:
"@stdlib/constants-float64-high-word-abs-mask" "^0.2.2"
"@stdlib/math-base-napi-unary" "^0.2.3"
"@stdlib/number-float64-base-to-words" "^0.2.2"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-asin@^0.2.3":
version "0.2.3"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-asin/-/math-base-special-asin-0.2.3.tgz#69c6b0ffd29ceb46b6904ce3cb2b6e22821fd631"
integrity sha512-Ju1UFJspOOL630SqBtVmUh3lHv5JMu1szcAgx7kQupJwZiwWljoVQ5MmxlNY4l3nGM5oMokenlqTDNXOau43lw==
dependencies:
"@stdlib/constants-float64-fourth-pi" "^0.2.2"
"@stdlib/math-base-assert-is-nan" "^0.2.2"
"@stdlib/math-base-napi-unary" "^0.2.3"
"@stdlib/math-base-special-sqrt" "^0.2.2"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-beta@^0.3.0":
version "0.3.0"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-beta/-/math-base-special-beta-0.3.0.tgz#c94a7a973bfdad70cdf8fd381d3f4b4fae8b1926"
integrity sha512-SWUF1AZLqaEJ8g1Lj0/UOfj955AsIS3QPYH/ZMijELVxCwmp7VRgalI0AxMM09IraJt1cH5WrSwSnouH1WC3ZQ==
dependencies:
"@stdlib/constants-float64-e" "^0.2.2"
"@stdlib/constants-float64-eps" "^0.2.2"
"@stdlib/math-base-assert-is-nan" "^0.2.2"
"@stdlib/math-base-napi-binary" "^0.3.0"
"@stdlib/math-base-special-abs" "^0.2.2"
"@stdlib/math-base-special-exp" "^0.2.4"
"@stdlib/math-base-special-log1p" "^0.2.3"
"@stdlib/math-base-special-pow" "^0.3.0"
"@stdlib/math-base-special-sqrt" "^0.2.2"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-betainc@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-betainc/-/math-base-special-betainc-0.2.2.tgz#62407f509dbb3da79cdf94291d82751f46943d11"
integrity sha512-95tzDgn5d9RV9al4gxHwKfszd9M6AizlpnhAiwIi0JwqcO+OY3xgbABWal4/H09Tb8DaC9jDqiyGuyPuB0iDew==
dependencies:
"@stdlib/math-base-special-kernel-betainc" "^0.2.1"
"@stdlib/math-base-special-binomcoef@^0.2.3":
version "0.2.3"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-binomcoef/-/math-base-special-binomcoef-0.2.3.tgz#0025b0cf5abb70d69b58177e3a0aed336efe5877"
integrity sha512-RxnQ/QGgKUeqTvBL+7IH8rNKQYCfGs0I3PsFYfb0e9V1O2yIVvthURUpzjukurZM89JRapK1dN6aeZ5UM71Zgw==
dependencies:
"@stdlib/constants-float64-max-safe-integer" "^0.2.2"
"@stdlib/constants-float64-pinf" "^0.2.2"
"@stdlib/math-base-assert-is-integer" "^0.2.5"
"@stdlib/math-base-assert-is-nan" "^0.2.2"
"@stdlib/math-base-assert-is-odd" "^0.3.0"
"@stdlib/math-base-special-floor" "^0.2.3"
"@stdlib/math-base-special-gcd" "^0.2.1"
"@stdlib/math-base-special-ceil@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-ceil/-/math-base-special-ceil-0.2.2.tgz#26213c02d8fe3cd3c8d95566e0a18c0db7528744"
integrity sha512-zGkDaMcPrxQ9Zo+fegf2MyI8UPIrVTK5sc/FgCN9qdwEFJTKGLsBd249T3xH7L2MDxx5JbIMGrr6L4U4uEm2Hw==
dependencies:
"@stdlib/math-base-napi-unary" "^0.2.3"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-copysign@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-copysign/-/math-base-special-copysign-0.2.2.tgz#5d56fd4429e6aa63d2c32861920d904128558e67"
integrity sha512-m9nWIQhKsaNrZtS2vIPeToWDbzs/T0d0NWy7gSci38auQVufSbF6FYnCKl0f+uwiWlh5GYXs0uVbyCp7FFXN+A==
dependencies:
"@stdlib/constants-float64-high-word-abs-mask" "^0.2.2"
"@stdlib/constants-float64-high-word-sign-mask" "^0.2.1"
"@stdlib/math-base-napi-binary" "^0.3.0"
"@stdlib/number-float64-base-from-words" "^0.2.2"
"@stdlib/number-float64-base-get-high-word" "^0.2.2"
"@stdlib/number-float64-base-to-words" "^0.2.2"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-cos@^0.2.1":
version "0.2.1"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-cos/-/math-base-special-cos-0.2.1.tgz#82158055e80be3255e633c94c2f2bfb66d36eed4"
integrity sha512-Yre+ASwsv4pQJk5dqY6488ZfmYDA6vtUTdapAVjCx28NluSFhXw1+S8EmsqnzYnqp/4x7Y1H7V2UPZfw+AdnbQ==
dependencies:
"@stdlib/math-base-special-kernel-cos" "^0.2.1"
"@stdlib/math-base-special-kernel-sin" "^0.2.1"
"@stdlib/math-base-special-rempio2" "^0.2.1"
"@stdlib/number-float64-base-get-high-word" "^0.2.1"
"@stdlib/math-base-special-erfc@^0.2.4":
version "0.2.4"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-erfc/-/math-base-special-erfc-0.2.4.tgz#043f096897d3ddaf2d42cb7bf3bae8e82c0d8799"
integrity sha512-tVI+mMnW+oDfQXwoH86sZ8q4ximpUXX6wZFCYZB6KcO5GXeKuvK74DnU0YyIm+sTV+r9WJiTSBEW9iVQLZOkzg==
dependencies:
"@stdlib/constants-float64-ninf" "^0.2.2"
"@stdlib/constants-float64-pinf" "^0.2.2"
"@stdlib/math-base-assert-is-nan" "^0.2.2"
"@stdlib/math-base-napi-unary" "^0.2.3"
"@stdlib/math-base-special-exp" "^0.2.4"
"@stdlib/number-float64-base-set-low-word" "^0.2.2"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-exp@^0.2.1", "@stdlib/math-base-special-exp@^0.2.4":
version "0.2.4"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-exp/-/math-base-special-exp-0.2.4.tgz#bf242b719f21f559a0cb454ee113c8b055e9a3ac"
integrity sha512-G6pZqu1wA4WwBj7DcnztA+/ro61wXJUTpKFLOwrIb2f/28pHGpA//Lub+3vAk6/ksAkhJ+qM/dfdM2ue7zLuEw==
dependencies:
"@stdlib/constants-float64-ninf" "^0.2.2"
"@stdlib/constants-float64-pinf" "^0.2.2"
"@stdlib/math-base-assert-is-nan" "^0.2.2"
"@stdlib/math-base-napi-unary" "^0.2.3"
"@stdlib/math-base-special-ldexp" "^0.2.3"
"@stdlib/math-base-special-trunc" "^0.2.2"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-expm1@^0.2.3":
version "0.2.3"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-expm1/-/math-base-special-expm1-0.2.3.tgz#56e60252f3d6924200c0c3881ab0a9b5455f09af"
integrity sha512-uJlYZjPjG9X8owuwp1h1/iz9xf21v3dlyEAuutQ0NoacUDzZKVSCbQ3Of0i2Mujn+4N+kjCvEeph6cqhfYAl+A==
dependencies:
"@stdlib/constants-float64-exponent-bias" "^0.2.2"
"@stdlib/constants-float64-half-ln-two" "^0.2.2"
"@stdlib/constants-float64-ninf" "^0.2.2"
"@stdlib/constants-float64-pinf" "^0.2.2"
"@stdlib/math-base-assert-is-nan" "^0.2.2"
"@stdlib/math-base-napi-unary" "^0.2.3"
"@stdlib/number-float64-base-from-words" "^0.2.2"
"@stdlib/number-float64-base-get-high-word" "^0.2.2"
"@stdlib/number-float64-base-set-high-word" "^0.2.2"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-factorial@^0.2.1":
version "0.2.1"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-factorial/-/math-base-special-factorial-0.2.1.tgz#c79862d441a3eb533dc449d17a357609bcf78748"
integrity sha512-uqsANeW4gHFzhgDrV9X0INEwO74MPzQvDVXbxY9+b0E13Vq2HHCi0GqdtPOWXdhOCUk8RkLRs9GizU3X6Coy8A==
dependencies:
"@stdlib/constants-float64-pinf" "^0.2.1"
"@stdlib/math-base-assert-is-integer" "^0.2.1"
"@stdlib/math-base-assert-is-nan" "^0.2.1"
"@stdlib/math-base-special-gamma" "^0.2.1"
"@stdlib/math-base-special-factorial@^0.3.0":
version "0.3.0"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-factorial/-/math-base-special-factorial-0.3.0.tgz#2017b5fb0b70649fb3b6c917c31f22dac24a01ab"
integrity sha512-tXdXqstF4gmy4HpzALo3Bhkj2UQSlyk+PU3alWXZH5XtKUozHuXhQDnak+2c4w0JqnKxHq4mnaR2qgjfkDNZcA==
dependencies:
"@stdlib/constants-float64-max-safe-nth-factorial" "^0.1.0"
"@stdlib/constants-float64-pinf" "^0.2.2"
"@stdlib/math-base-assert-is-integer" "^0.2.5"
"@stdlib/math-base-assert-is-nan" "^0.2.2"
"@stdlib/math-base-napi-unary" "^0.2.3"
"@stdlib/math-base-special-gamma" "^0.2.1"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-floor@^0.2.1", "@stdlib/math-base-special-floor@^0.2.3":
version "0.2.3"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-floor/-/math-base-special-floor-0.2.3.tgz#978f69d99f298e571cadf00d8d4b92111db4644d"
integrity sha512-zTkxVRawtWwJ4NmAT/1e+ZsIoBj1JqUquGOpiNVGNIKtyLOeCONZlZSbN7zuxPkshvmcSjpQ/VLKR8Tw/37E9A==
dependencies:
"@stdlib/math-base-napi-unary" "^0.2.1"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-fmod@^0.1.0":
version "0.1.0"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-fmod/-/math-base-special-fmod-0.1.0.tgz#48ac979b10196bd2a3f3b0dd8f89332160b37e76"
integrity sha512-osHwmEOT5MPWOXRx8y3wKCp362eGHIcJRt8LARJJICr/qTZlu1HMnZnbwuhfy1NIQzpJ8aLOhEdl2PrProTt3A==
dependencies:
"@stdlib/constants-float64-exponent-bias" "^0.2.2"
"@stdlib/constants-float64-high-word-abs-mask" "^0.2.2"
"@stdlib/constants-float64-high-word-exponent-mask" "^0.2.2"
"@stdlib/constants-float64-high-word-sign-mask" "^0.2.1"
"@stdlib/constants-float64-high-word-significand-mask" "^0.2.2"
"@stdlib/constants-float64-min-base2-exponent" "^0.2.2"
"@stdlib/math-base-napi-binary" "^0.3.0"
"@stdlib/number-float64-base-from-words" "^0.2.2"
"@stdlib/number-float64-base-to-words" "^0.2.2"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-gamma-delta-ratio@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-gamma-delta-ratio/-/math-base-special-gamma-delta-ratio-0.2.2.tgz#19e873541be1d7e63b9915b75cb58e29d88dfd49"
integrity sha512-lan+cfafH7aoyUxa88vLO+pYwLA+0uiyVFmCumxDemQUboCrTiNCYhBjONFGI/ljE3RukHoE3ZV4AccIcx526A==
dependencies:
"@stdlib/constants-float64-e" "^0.2.2"
"@stdlib/constants-float64-eps" "^0.2.2"
"@stdlib/constants-float64-gamma-lanczos-g" "^0.2.2"
"@stdlib/math-base-special-abs" "^0.2.2"
"@stdlib/math-base-special-exp" "^0.2.4"
"@stdlib/math-base-special-factorial" "^0.2.1"
"@stdlib/math-base-special-floor" "^0.2.3"
"@stdlib/math-base-special-gamma" "^0.2.1"
"@stdlib/math-base-special-gamma-lanczos-sum" "^0.3.0"
"@stdlib/math-base-special-log1p" "^0.2.3"
"@stdlib/math-base-special-pow" "^0.3.0"
"@stdlib/math-base-special-gamma-lanczos-sum-expg-scaled@^0.3.0":
version "0.3.0"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-gamma-lanczos-sum-expg-scaled/-/math-base-special-gamma-lanczos-sum-expg-scaled-0.3.0.tgz#7ccff49e23f54d96c1ac32df323c8a8f538b4cfb"
integrity sha512-hScjKZvueOK5piX84ZLIV3ZiYvtvYtcixN8psxkPIxJlN7Bd5nAmSkEOBL+T+LeW2RjmdEMXFFJMF7FsK1js/Q==
dependencies:
"@stdlib/math-base-napi-unary" "^0.2.1"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-gamma-lanczos-sum@^0.3.0":
version "0.3.0"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-gamma-lanczos-sum/-/math-base-special-gamma-lanczos-sum-0.3.0.tgz#804ec9259a336ae2ccac2156d6a42b66aa9f6c5b"
integrity sha512-q13p6r7G0TmbD54cU8QgG8wGgdGGznV9dNKiNszw+hOqCQ+1DqziG8I6vN64R3EQLP7QN4yVprZcmuXSK+fgsg==
dependencies:
"@stdlib/constants-float64-pinf" "^0.2.2"
"@stdlib/math-base-napi-unary" "^0.2.1"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-gamma1pm1@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-gamma1pm1/-/math-base-special-gamma1pm1-0.2.2.tgz#c1773fa01bfcc1e68fcd25841bc8202bb491f027"
integrity sha512-lNT1lk0ifK2a/ta3GfR5V8KvfgkgheE44n5AQ/07BBfcVBMiAdqNuyjSMeWqsH/zVGzjU6G8+kLBzmaJXivPXQ==
dependencies:
"@stdlib/constants-float64-eps" "^0.2.2"
"@stdlib/math-base-assert-is-nan" "^0.2.2"
"@stdlib/math-base-special-expm1" "^0.2.3"
"@stdlib/math-base-special-gamma" "^0.2.1"
"@stdlib/math-base-special-ln" "^0.2.4"
"@stdlib/math-base-special-log1p" "^0.2.3"
"@stdlib/math-base-special-gamma@^0.2.1":
version "0.2.1"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-gamma/-/math-base-special-gamma-0.2.1.tgz#33b9a84c5514a4fa7a290664d65a315922b211f1"
integrity sha512-Sfq1HnVoL4kN9EDHH3YparEAF0r7QD5jNFppUTOXmrqkofgImSl5tLttttnr2I7O9zsNhYkBAiTx9q0y25bAiA==
dependencies:
"@stdlib/constants-float64-eulergamma" "^0.2.1"
"@stdlib/constants-float64-ninf" "^0.2.1"
"@stdlib/constants-float64-pi" "^0.2.1"
"@stdlib/constants-float64-pinf" "^0.2.1"
"@stdlib/constants-float64-sqrt-two-pi" "^0.2.1"
"@stdlib/math-base-assert-is-integer" "^0.2.1"
"@stdlib/math-base-assert-is-nan" "^0.2.1"
"@stdlib/math-base-assert-is-negative-zero" "^0.2.1"
"@stdlib/math-base-special-abs" "^0.2.1"
"@stdlib/math-base-special-exp" "^0.2.1"
"@stdlib/math-base-special-floor" "^0.2.1"
"@stdlib/math-base-special-pow" "^0.2.1"
"@stdlib/math-base-special-sin" "^0.2.1"
"@stdlib/math-base-special-gamma@^0.3.0":
version "0.3.0"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-gamma/-/math-base-special-gamma-0.3.0.tgz#234cc8e1e0cc25bfc2b5f15ac301838d1370dc74"
integrity sha512-YfW+e5xuSDoUxgpquXPrFtAbdwOzE7Kqt7M0dcAkDNot8/yUn+QmrDGzURyBVzUyhRm9SaC9bACHxTShdJkcuA==
dependencies:
"@stdlib/constants-float64-eulergamma" "^0.2.2"
"@stdlib/constants-float64-ninf" "^0.2.2"
"@stdlib/constants-float64-pi" "^0.2.2"
"@stdlib/constants-float64-pinf" "^0.2.2"
"@stdlib/constants-float64-sqrt-two-pi" "^0.2.2"
"@stdlib/math-base-assert-is-integer" "^0.2.5"
"@stdlib/math-base-assert-is-nan" "^0.2.2"
"@stdlib/math-base-assert-is-negative-zero" "^0.2.2"
"@stdlib/math-base-napi-unary" "^0.2.3"
"@stdlib/math-base-special-abs" "^0.2.2"
"@stdlib/math-base-special-exp" "^0.2.4"
"@stdlib/math-base-special-floor" "^0.2.3"
"@stdlib/math-base-special-pow" "^0.3.0"
"@stdlib/math-base-special-sin" "^0.2.1"
"@stdlib/utils-library-manifest" "^0.2.2"
"@stdlib/math-base-special-gammainc@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-gammainc/-/math-base-special-gammainc-0.2.2.tgz#8f60e3b0cdce1fa5dac3d18836f14032ea92b8ae"
integrity sha512-ffKZFiv/41SXs2Xms7IW3lPnICR898yfWAidq5uKjOLgRb3wrzNjq0sZ6EAVXvdBwyGULvSjyud28PpVhDLv3A==
dependencies:
"@stdlib/constants-float64-e" "^0.2.2"
"@stdlib/constants-float64-gamma-lanczos-g" "^0.2.2"
"@stdlib/constants-float64-max" "^0.2.2"
"@stdlib/constants-float64-max-ln" "^0.2.2"
"@stdlib/constants-float64-min-ln" "^0.2.2"
"@stdlib/constants-float64-pi" "^0.2.2"
"@stdlib/constants-float64-pinf" "^0.2.2"
"@stdlib/constants-float64-sqrt-eps" "^0.2.2"
"@stdlib/constants-float64-sqrt-two-pi" "^0.2.2"
"@stdlib/constants-float64-two-pi" "^0.2.2"
"@stdlib/math-base-special-abs" "^0.2.2"
"@stdlib/math-base-special-erfc" "^0.2.4"
"@stdlib/math-base-special-exp" "^0.2.4"
"@stdlib/math-base-special-floor" "^0.2.3"
"@stdlib/math-base-special-gamma" "^0.3.0"
"@stdlib/math-base-special-gamma-lanczos-sum-expg-scaled" "^0.3.0"
"@stdlib/math-base-special-gamma1pm1" "^0.2.2"
"@stdlib/math-base-special-gammaln" "^0.2.2"
"@stdlib/math-base-special-ln" "^0.2.4"
"@stdlib/math-base-special-log1p" "^0.2.3"
"@stdlib/math-base-special-log1pmx" "^0.2.3"
"@stdlib/math-base-special-max" "^0.3.0"
"@stdlib/math-base-special-min" "^0.2.3"
"@stdlib/math-base-special-pow" "^0.3.0"
"@stdlib/math-base-special-powm1" "^0.3.0"
"@stdlib/math-base-special-sqrt" "^0.2.2"
"@stdlib/math-base-tools-continued-fraction" "^0.2.2"
"@stdlib/math-base-tools-evalpoly" "^0.2.2"
"@stdlib/math-base-tools-sum-series" "^0.2.2"
"@stdlib/math-base-special-gammaln@^0.2.2":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-gammaln/-/math-base-special-gammaln-0.2.2.tgz#98bf083f46753d914bf735e256d1851a924fcafd"
integrity sha512-opG6HUlspi/GLvQAr4pcwyAevm7BYuymlopgNZ1VulWUvksDpytalaX3zva0idlD2HvniKrDmzHngT1N9p0J1A==
dependencies:
"@stdlib/constants-float64-pi" "^0.2.2"
"@stdlib/constants-float64-pinf" "^0.2.2"
"@stdlib/math-base-assert-is-infinite" "^0.2.2"
"@stdlib/math-base-assert-is-nan" "^0.2.2"
"@stdlib/math-base-special-abs" "^0.2.2"
"@stdlib/math-base-special-ln" "^0.2.4"
"@stdlib/math-base-special-sinpi" "^0.2.1"
"@stdlib/math-base-special-trunc" "^0.2.2"
"@stdlib/math-base-special-gcd@^0.2.1":
version "0.2.1"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-gcd/-/math-base-special-gcd-0.2.1.tgz#583eb234aa6ccab9449a55cb9e96310145fd1af3"
integrity sha512-w10k9W176lDkbiDIwnmVr1nkTyypTQLwA3/CN9qEUmXh/u8NlxkSnDYBpArcWnxE0oFaIggw8sLJ58TuMvxMaw==
dependencies:
"@stdlib/constants-float64-ninf" "^0.2.1"
"@stdlib/constants-float64-pinf" "^0.2.1"
"@stdlib/constants-int32-max" "^0.2.1"
"@stdlib/math-base-assert-is-integer" "^0.2.1"
"@stdlib/math-base-assert-is-nan" "^0.2.1"
"@stdlib/math-base-special-kernel-betainc@^0.2.1":
version "0.2.2"
resolved "https://registry.yarnpkg.com/@stdlib/math-base-special-kernel-betainc/-/math-base-special-kernel-betainc-0.2.2.tgz#b04ea3cb371e00ed1153e2327efe145b46ac0908"
integrity sha512-DQwQUWQkmZtjRgdvZ1yZOEdAYLQoEUEndbr47Z69Oe6AgwKwxxpZUh09h9imKheFCFHLVnwVUz20azIM5KifQw==
dependencies:
"@stdlib/constants-float64-e" "^0.2.2"
"@stdlib/constants-float64-eps" "^0.2.2"
"@stdlib/constants-float64-gamma-lanczos-g" "^0.2.2"
"@stdlib/constants-float64-half-pi" "^0.2.2"
"@stdlib/constants-float64-max" "^0.2.2"
"@stdlib/constants-float64-max-ln" "^0.2.2"
"@stdlib/constants-float64-min-ln" "^0.2.2"
"@stdlib/constants-float64-pi" "^0.2.2"
"@stdlib/constants-float64-smallest-normal" "^0.2.2"
"@stdlib/constants-int32-max" "^0.3.0"
"@stdlib/math-base-assert-is-nan" "^0.2.2"
"@stdlib/math-base-special-abs" "^0.2.2"
"@stdlib/math-base-special-asin" "^0.2.3"
"@stdlib/math-base-special-beta" "^0.3.0"
"@stdlib/math-base-special-binomcoef" "^0.2.3"
"@stdlib/math-base-special-exp" "^0.2.4"
"@stdlib/math-base-special-expm1" "^0.2.3"
"@stdlib/math-base-special-factorial" "^0.3.0"
"@stdlib/math-base-special-floor" "^0.2.3"
"@stdlib/math-base-special-gamma" "^0.3.0"
"@stdlib/math-base-special-gamma-delta-ratio" "^0.2.2"
"@stdlib/math-base-special-gamma-lanczos-sum-expg-scaled" "^0.3.0"
"@stdlib/math-base-special-gammainc" "^0.2.1"
"@stdlib/math-base-special-gammaln" "^0.2.2"
"@stdlib/math-base-special-ln" "^0.2.4"
"@stdlib/math-base-special-log1p" "^0.2.3"