-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
9955 lines (8672 loc) · 377 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
"@assemblyscript/loader@^0.9.4":
"integrity" "sha512-HazVq9zwTVwGmqdwYzu7WyQ6FQVZ7SwET0KKQuKm55jD0IfUpZgN0OPIiZG3zV1iSrVYcN0bdwLRXI/VNCYsUA=="
"resolved" "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.9.4.tgz"
"version" "0.9.4"
"@babel/code-frame@7.12.11":
"integrity" "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"
"version" "7.12.11"
dependencies:
"@babel/highlight" "^7.10.4"
"@babel/helper-validator-identifier@^7.14.5":
"integrity" "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz"
"version" "7.14.9"
"@babel/highlight@^7.10.4":
"integrity" "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-validator-identifier" "^7.14.5"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/runtime-corejs3@^7.10.2":
"integrity" "sha512-30A3lP+sRL6ml8uhoJSs+8jwpKzbw8CqBvDc1laeptxPm5FahumJxirigcbD2qTs71Sonvj1cyZB0OKGAmxQ+A=="
"resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.3.tgz"
"version" "7.15.3"
dependencies:
"core-js-pure" "^3.16.0"
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.10.2", "@babel/runtime@^7.10.4", "@babel/runtime@^7.10.5", "@babel/runtime@^7.11.2", "@babel/runtime@7.12.5":
"integrity" "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz"
"version" "7.12.5"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/types@7.8.3":
"integrity" "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"esutils" "^2.0.2"
"lodash" "^4.17.13"
"to-fast-properties" "^2.0.0"
"@eslint/eslintrc@^0.4.2":
"integrity" "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz"
"version" "0.4.3"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.1.1"
"espree" "^7.3.0"
"globals" "^13.9.0"
"ignore" "^4.0.6"
"import-fresh" "^3.2.1"
"js-yaml" "^3.13.1"
"minimatch" "^3.0.4"
"strip-json-comments" "^3.1.1"
"@ethereumjs/common@^2.3.0", "@ethereumjs/common@^2.4.0":
"integrity" "sha512-UdkhFWzWcJCZVsj1O/H8/oqj/0RVYjLc1OhPjBrQdALAkQHpCp8xXI4WLnuGTADqTdJZww0NtgwG+TRPkXt27w=="
"resolved" "https://registry.npmjs.org/@ethereumjs/common/-/common-2.4.0.tgz"
"version" "2.4.0"
dependencies:
"crc-32" "^1.2.0"
"ethereumjs-util" "^7.1.0"
"@ethereumjs/tx@^3.2.1":
"integrity" "sha512-yTwEj2lVzSMgE6Hjw9Oa1DZks/nKTWM8Wn4ykDNapBPua2f4nXO3qKnni86O6lgDj5fVNRqbDsD0yy7/XNGDEA=="
"resolved" "https://registry.npmjs.org/@ethereumjs/tx/-/tx-3.3.0.tgz"
"version" "3.3.0"
dependencies:
"@ethereumjs/common" "^2.4.0"
"ethereumjs-util" "^7.1.0"
"@ethersproject/abi@^5.4.0", "@ethersproject/abi@5.4.0":
"integrity" "sha512-9gU2H+/yK1j2eVMdzm6xvHSnMxk8waIHQGYCZg5uvAyH0rsAzxkModzBSpbAkAuhKFEovC2S9hM4nPuLym8IZw=="
"resolved" "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/address" "^5.4.0"
"@ethersproject/bignumber" "^5.4.0"
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/constants" "^5.4.0"
"@ethersproject/hash" "^5.4.0"
"@ethersproject/keccak256" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/properties" "^5.4.0"
"@ethersproject/strings" "^5.4.0"
"@ethersproject/abi@5.0.7":
"integrity" "sha512-Cqktk+hSIckwP/W8O47Eef60VwmoSC/L3lY0+dIBhQPCNn9E4V7rwmm2aFrNRRDJfFlGuZ1khkQUOc3oBX+niw=="
"resolved" "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.0.7.tgz"
"version" "5.0.7"
dependencies:
"@ethersproject/address" "^5.0.4"
"@ethersproject/bignumber" "^5.0.7"
"@ethersproject/bytes" "^5.0.4"
"@ethersproject/constants" "^5.0.4"
"@ethersproject/hash" "^5.0.4"
"@ethersproject/keccak256" "^5.0.3"
"@ethersproject/logger" "^5.0.5"
"@ethersproject/properties" "^5.0.3"
"@ethersproject/strings" "^5.0.4"
"@ethersproject/abstract-provider@^5.4.0", "@ethersproject/abstract-provider@5.4.1":
"integrity" "sha512-3EedfKI3LVpjSKgAxoUaI+gB27frKsxzm+r21w9G60Ugk+3wVLQwhi1LsEJAKNV7WoZc8CIpNrATlL1QFABjtQ=="
"resolved" "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.4.1.tgz"
"version" "5.4.1"
dependencies:
"@ethersproject/bignumber" "^5.4.0"
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/networks" "^5.4.0"
"@ethersproject/properties" "^5.4.0"
"@ethersproject/transactions" "^5.4.0"
"@ethersproject/web" "^5.4.0"
"@ethersproject/abstract-signer@^5.4.0", "@ethersproject/abstract-signer@5.4.1":
"integrity" "sha512-SkkFL5HVq1k4/25dM+NWP9MILgohJCgGv5xT5AcRruGz4ILpfHeBtO/y6j+Z3UN/PAjDeb4P7E51Yh8wcGNLGA=="
"resolved" "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.4.1.tgz"
"version" "5.4.1"
dependencies:
"@ethersproject/abstract-provider" "^5.4.0"
"@ethersproject/bignumber" "^5.4.0"
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/properties" "^5.4.0"
"@ethersproject/address@^5.0.4", "@ethersproject/address@^5.4.0", "@ethersproject/address@5.4.0":
"integrity" "sha512-SD0VgOEkcACEG/C6xavlU1Hy3m5DGSXW3CUHkaaEHbAPPsgi0coP5oNPsxau8eTlZOk/bpa/hKeCNoK5IzVI2Q=="
"resolved" "https://registry.npmjs.org/@ethersproject/address/-/address-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/bignumber" "^5.4.0"
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/keccak256" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/rlp" "^5.4.0"
"@ethersproject/base64@^5.4.0", "@ethersproject/base64@5.4.0":
"integrity" "sha512-CjQw6E17QDSSC5jiM9YpF7N1aSCHmYGMt9bWD8PWv6YPMxjsys2/Q8xLrROKI3IWJ7sFfZ8B3flKDTM5wlWuZQ=="
"resolved" "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/basex@^5.4.0", "@ethersproject/basex@5.4.0":
"integrity" "sha512-J07+QCVJ7np2bcpxydFVf/CuYo9mZ7T73Pe7KQY4c1lRlrixMeblauMxHXD0MPwFmUHZIILDNViVkykFBZylbg=="
"resolved" "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/properties" "^5.4.0"
"@ethersproject/bignumber@^5.0.7", "@ethersproject/bignumber@^5.4.0", "@ethersproject/bignumber@5.4.1":
"integrity" "sha512-fJhdxqoQNuDOk6epfM7yD6J8Pol4NUCy1vkaGAkuujZm0+lNow//MKu1hLhRiYV4BsOHyBv5/lsTjF+7hWwhJg=="
"resolved" "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.4.1.tgz"
"version" "5.4.1"
dependencies:
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"bn.js" "^4.11.9"
"@ethersproject/bytes@^5.0.4", "@ethersproject/bytes@^5.4.0", "@ethersproject/bytes@5.4.0":
"integrity" "sha512-H60ceqgTHbhzOj4uRc/83SCN9d+BSUnOkrr2intevqdtEMO1JFVZ1XL84OEZV+QjV36OaZYxtnt4lGmxcGsPfA=="
"resolved" "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/logger" "^5.4.0"
"@ethersproject/constants@^5.0.4", "@ethersproject/constants@^5.4.0", "@ethersproject/constants@5.4.0":
"integrity" "sha512-tzjn6S7sj9+DIIeKTJLjK9WGN2Tj0P++Z8ONEIlZjyoTkBuODN+0VfhAyYksKi43l1Sx9tX2VlFfzjfmr5Wl3Q=="
"resolved" "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/bignumber" "^5.4.0"
"@ethersproject/contracts@5.4.1":
"integrity" "sha512-m+z2ZgPy4pyR15Je//dUaymRUZq5MtDajF6GwFbGAVmKz/RF+DNIPwF0k5qEcL3wPGVqUjFg2/krlCRVTU4T5w=="
"resolved" "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.4.1.tgz"
"version" "5.4.1"
dependencies:
"@ethersproject/abi" "^5.4.0"
"@ethersproject/abstract-provider" "^5.4.0"
"@ethersproject/abstract-signer" "^5.4.0"
"@ethersproject/address" "^5.4.0"
"@ethersproject/bignumber" "^5.4.0"
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/constants" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/properties" "^5.4.0"
"@ethersproject/transactions" "^5.4.0"
"@ethersproject/hash@^5.0.4", "@ethersproject/hash@^5.4.0", "@ethersproject/hash@5.4.0":
"integrity" "sha512-xymAM9tmikKgbktOCjW60Z5sdouiIIurkZUr9oW5NOex5uwxrbsYG09kb5bMcNjlVeJD3yPivTNzViIs1GCbqA=="
"resolved" "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/abstract-signer" "^5.4.0"
"@ethersproject/address" "^5.4.0"
"@ethersproject/bignumber" "^5.4.0"
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/keccak256" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/properties" "^5.4.0"
"@ethersproject/strings" "^5.4.0"
"@ethersproject/hdnode@^5.4.0", "@ethersproject/hdnode@5.4.0":
"integrity" "sha512-pKxdS0KAaeVGfZPp1KOiDLB0jba11tG6OP1u11QnYfb7pXn6IZx0xceqWRr6ygke8+Kw74IpOoSi7/DwANhy8Q=="
"resolved" "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/abstract-signer" "^5.4.0"
"@ethersproject/basex" "^5.4.0"
"@ethersproject/bignumber" "^5.4.0"
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/pbkdf2" "^5.4.0"
"@ethersproject/properties" "^5.4.0"
"@ethersproject/sha2" "^5.4.0"
"@ethersproject/signing-key" "^5.4.0"
"@ethersproject/strings" "^5.4.0"
"@ethersproject/transactions" "^5.4.0"
"@ethersproject/wordlists" "^5.4.0"
"@ethersproject/json-wallets@^5.4.0", "@ethersproject/json-wallets@5.4.0":
"integrity" "sha512-igWcu3fx4aiczrzEHwG1xJZo9l1cFfQOWzTqwRw/xcvxTk58q4f9M7cjh51EKphMHvrJtcezJ1gf1q1AUOfEQQ=="
"resolved" "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/abstract-signer" "^5.4.0"
"@ethersproject/address" "^5.4.0"
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/hdnode" "^5.4.0"
"@ethersproject/keccak256" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/pbkdf2" "^5.4.0"
"@ethersproject/properties" "^5.4.0"
"@ethersproject/random" "^5.4.0"
"@ethersproject/strings" "^5.4.0"
"@ethersproject/transactions" "^5.4.0"
"aes-js" "3.0.0"
"scrypt-js" "3.0.1"
"@ethersproject/keccak256@^5.0.3", "@ethersproject/keccak256@^5.4.0", "@ethersproject/keccak256@5.4.0":
"integrity" "sha512-FBI1plWet+dPUvAzPAeHzRKiPpETQzqSUWR1wXJGHVWi4i8bOSrpC3NwpkPjgeXG7MnugVc1B42VbfnQikyC/A=="
"resolved" "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/bytes" "^5.4.0"
"js-sha3" "0.5.7"
"@ethersproject/logger@^5.0.5", "@ethersproject/logger@^5.4.0", "@ethersproject/logger@5.4.0":
"integrity" "sha512-xYdWGGQ9P2cxBayt64d8LC8aPFJk6yWCawQi/4eJ4+oJdMMjEBMrIcIMZ9AxhwpPVmnBPrsB10PcXGmGAqgUEQ=="
"resolved" "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.4.0.tgz"
"version" "5.4.0"
"@ethersproject/networks@^5.4.0", "@ethersproject/networks@5.4.2":
"integrity" "sha512-eekOhvJyBnuibfJnhtK46b8HimBc5+4gqpvd1/H9LEl7Q7/qhsIhM81dI9Fcnjpk3jB1aTy6bj0hz3cifhNeYw=="
"resolved" "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.4.2.tgz"
"version" "5.4.2"
dependencies:
"@ethersproject/logger" "^5.4.0"
"@ethersproject/pbkdf2@^5.4.0", "@ethersproject/pbkdf2@5.4.0":
"integrity" "sha512-x94aIv6tiA04g6BnazZSLoRXqyusawRyZWlUhKip2jvoLpzJuLb//KtMM6PEovE47pMbW+Qe1uw+68ameJjB7g=="
"resolved" "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/sha2" "^5.4.0"
"@ethersproject/properties@^5.0.3", "@ethersproject/properties@^5.4.0", "@ethersproject/properties@5.4.0":
"integrity" "sha512-7jczalGVRAJ+XSRvNA6D5sAwT4gavLq3OXPuV/74o3Rd2wuzSL035IMpIMgei4CYyBdialJMrTqkOnzccLHn4A=="
"resolved" "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/logger" "^5.4.0"
"@ethersproject/providers@5.4.3":
"integrity" "sha512-VURwkaWPoUj7jq9NheNDT5Iyy64Qcyf6BOFDwVdHsmLmX/5prNjFrgSX3GHPE4z1BRrVerDxe2yayvXKFm/NNg=="
"resolved" "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.4.3.tgz"
"version" "5.4.3"
dependencies:
"@ethersproject/abstract-provider" "^5.4.0"
"@ethersproject/abstract-signer" "^5.4.0"
"@ethersproject/address" "^5.4.0"
"@ethersproject/basex" "^5.4.0"
"@ethersproject/bignumber" "^5.4.0"
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/constants" "^5.4.0"
"@ethersproject/hash" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/networks" "^5.4.0"
"@ethersproject/properties" "^5.4.0"
"@ethersproject/random" "^5.4.0"
"@ethersproject/rlp" "^5.4.0"
"@ethersproject/sha2" "^5.4.0"
"@ethersproject/strings" "^5.4.0"
"@ethersproject/transactions" "^5.4.0"
"@ethersproject/web" "^5.4.0"
"bech32" "1.1.4"
"ws" "7.4.6"
"@ethersproject/random@^5.4.0", "@ethersproject/random@5.4.0":
"integrity" "sha512-pnpWNQlf0VAZDEOVp1rsYQosmv2o0ITS/PecNw+mS2/btF8eYdspkN0vIXrCMtkX09EAh9bdk8GoXmFXM1eAKw=="
"resolved" "https://registry.npmjs.org/@ethersproject/random/-/random-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/rlp@^5.4.0", "@ethersproject/rlp@5.4.0":
"integrity" "sha512-0I7MZKfi+T5+G8atId9QaQKHRvvasM/kqLyAH4XxBCBchAooH2EX5rL9kYZWwcm3awYV+XC7VF6nLhfeQFKVPg=="
"resolved" "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/sha2@^5.4.0", "@ethersproject/sha2@5.4.0":
"integrity" "sha512-siheo36r1WD7Cy+bDdE1BJ8y0bDtqXCOxRMzPa4bV1TGt/eTUUt03BHoJNB6reWJD8A30E/pdJ8WFkq+/uz4Gg=="
"resolved" "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"hash.js" "1.1.7"
"@ethersproject/signing-key@^5.4.0", "@ethersproject/signing-key@5.4.0":
"integrity" "sha512-q8POUeywx6AKg2/jX9qBYZIAmKSB4ubGXdQ88l40hmATj29JnG5pp331nAWwwxPn2Qao4JpWHNZsQN+bPiSW9A=="
"resolved" "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/properties" "^5.4.0"
"bn.js" "^4.11.9"
"elliptic" "6.5.4"
"hash.js" "1.1.7"
"@ethersproject/solidity@5.4.0":
"integrity" "sha512-XFQTZ7wFSHOhHcV1DpcWj7VXECEiSrBuv7JErJvB9Uo+KfCdc3QtUZV+Vjh/AAaYgezUEKbCtE6Khjm44seevQ=="
"resolved" "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/bignumber" "^5.4.0"
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/keccak256" "^5.4.0"
"@ethersproject/sha2" "^5.4.0"
"@ethersproject/strings" "^5.4.0"
"@ethersproject/strings@^5.0.4", "@ethersproject/strings@^5.4.0", "@ethersproject/strings@5.4.0":
"integrity" "sha512-k/9DkH5UGDhv7aReXLluFG5ExurwtIpUfnDNhQA29w896Dw3i4uDTz01Quaptbks1Uj9kI8wo9tmW73wcIEaWA=="
"resolved" "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/constants" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/transactions@^5.0.0-beta.135", "@ethersproject/transactions@^5.4.0", "@ethersproject/transactions@5.4.0":
"integrity" "sha512-s3EjZZt7xa4BkLknJZ98QGoIza94rVjaEed0rzZ/jB9WrIuu/1+tjvYCWzVrystXtDswy7TPBeIepyXwSYa4WQ=="
"resolved" "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/address" "^5.4.0"
"@ethersproject/bignumber" "^5.4.0"
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/constants" "^5.4.0"
"@ethersproject/keccak256" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/properties" "^5.4.0"
"@ethersproject/rlp" "^5.4.0"
"@ethersproject/signing-key" "^5.4.0"
"@ethersproject/units@5.4.0":
"integrity" "sha512-Z88krX40KCp+JqPCP5oPv5p750g+uU6gopDYRTBGcDvOASh6qhiEYCRatuM/suC4S2XW9Zz90QI35MfSrTIaFg=="
"resolved" "https://registry.npmjs.org/@ethersproject/units/-/units-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/bignumber" "^5.4.0"
"@ethersproject/constants" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/wallet@5.4.0":
"integrity" "sha512-wU29majLjM6AjCjpat21mPPviG+EpK7wY1+jzKD0fg3ui5fgedf2zEu1RDgpfIMsfn8fJHJuzM4zXZ2+hSHaSQ=="
"resolved" "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/abstract-provider" "^5.4.0"
"@ethersproject/abstract-signer" "^5.4.0"
"@ethersproject/address" "^5.4.0"
"@ethersproject/bignumber" "^5.4.0"
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/hash" "^5.4.0"
"@ethersproject/hdnode" "^5.4.0"
"@ethersproject/json-wallets" "^5.4.0"
"@ethersproject/keccak256" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/properties" "^5.4.0"
"@ethersproject/random" "^5.4.0"
"@ethersproject/signing-key" "^5.4.0"
"@ethersproject/transactions" "^5.4.0"
"@ethersproject/wordlists" "^5.4.0"
"@ethersproject/web@^5.4.0", "@ethersproject/web@5.4.0":
"integrity" "sha512-1bUusGmcoRLYgMn6c1BLk1tOKUIFuTg8j+6N8lYlbMpDesnle+i3pGSagGNvwjaiLo4Y5gBibwctpPRmjrh4Og=="
"resolved" "https://registry.npmjs.org/@ethersproject/web/-/web-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/base64" "^5.4.0"
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/properties" "^5.4.0"
"@ethersproject/strings" "^5.4.0"
"@ethersproject/wordlists@^5.4.0", "@ethersproject/wordlists@5.4.0":
"integrity" "sha512-FemEkf6a+EBKEPxlzeVgUaVSodU7G0Na89jqKjmWMlDB0tomoU8RlEMgUvXyqtrg8N4cwpLh8nyRnm1Nay1isA=="
"resolved" "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.4.0.tgz"
"version" "5.4.0"
dependencies:
"@ethersproject/bytes" "^5.4.0"
"@ethersproject/hash" "^5.4.0"
"@ethersproject/logger" "^5.4.0"
"@ethersproject/properties" "^5.4.0"
"@ethersproject/strings" "^5.4.0"
"@firebase/analytics-types@0.6.0":
"integrity" "sha512-kbMawY0WRPyL/lbknBkme4CNLl+Gw+E9G4OpNeXAauqoQiNkBgpIvZYy7BRT4sNGhZbxdxXxXbruqUwDzLmvTw=="
"resolved" "https://registry.npmjs.org/@firebase/analytics-types/-/analytics-types-0.6.0.tgz"
"version" "0.6.0"
"@firebase/analytics@0.6.17":
"integrity" "sha512-Iiip24vQw7p+dBxoGWP2WvVqV2tOdLPjWw6OP6a+8vgss9PRsjKE2AAskruqveMUO4Ox5uPW65wdgeJxoFoMvQ=="
"resolved" "https://registry.npmjs.org/@firebase/analytics/-/analytics-0.6.17.tgz"
"version" "0.6.17"
dependencies:
"@firebase/analytics-types" "0.6.0"
"@firebase/component" "0.5.5"
"@firebase/installations" "0.4.31"
"@firebase/logger" "0.2.6"
"@firebase/util" "1.2.0"
"tslib" "^2.1.0"
"@firebase/app-check-interop-types@0.1.0":
"integrity" "sha512-uZfn9s4uuRsaX5Lwx+gFP3B6YsyOKUE+Rqa6z9ojT4VSRAsZFko9FRn6OxQUA1z5t5d08fY4pf+/+Dkd5wbdbA=="
"resolved" "https://registry.npmjs.org/@firebase/app-check-interop-types/-/app-check-interop-types-0.1.0.tgz"
"version" "0.1.0"
"@firebase/app-check-types@0.3.1":
"integrity" "sha512-KJ+BqJbdNsx4QT/JIT1yDj5p6D+QN97iJs3GuHnORrqL+DU3RWc9nSYQsrY6Tv9jVWcOkMENXAgDT484vzsm2w=="
"resolved" "https://registry.npmjs.org/@firebase/app-check-types/-/app-check-types-0.3.1.tgz"
"version" "0.3.1"
"@firebase/app-check@0.3.1":
"integrity" "sha512-5OWXzhXdtrmOqn2aN44FyNTwjlZJrip/3WC7UlMeUBPi3apuUgChHTolZ1oITszGdw52lP3r5SOCDtRsNtbkJg=="
"resolved" "https://registry.npmjs.org/@firebase/app-check/-/app-check-0.3.1.tgz"
"version" "0.3.1"
dependencies:
"@firebase/app-check-interop-types" "0.1.0"
"@firebase/app-check-types" "0.3.1"
"@firebase/component" "0.5.5"
"@firebase/logger" "0.2.6"
"@firebase/util" "1.2.0"
"tslib" "^2.1.0"
"@firebase/app-types@0.6.3", "@firebase/app-types@0.x":
"integrity" "sha512-/M13DPPati7FQHEQ9Minjk1HGLm/4K4gs9bR4rzLCWJg64yGtVC0zNg9gDpkw9yc2cvol/mNFxqTtd4geGrwdw=="
"resolved" "https://registry.npmjs.org/@firebase/app-types/-/app-types-0.6.3.tgz"
"version" "0.6.3"
"@firebase/app@0.6.29", "@firebase/app@0.x":
"integrity" "sha512-duCzk9/BSVVsb5Y9b0rnvGSuD5zQA/JghiQsccRl+lA4xiUYjFudTU4cVFftkw+0zzeYBHn4KiVxchsva1O9dA=="
"resolved" "https://registry.npmjs.org/@firebase/app/-/app-0.6.29.tgz"
"version" "0.6.29"
dependencies:
"@firebase/app-types" "0.6.3"
"@firebase/component" "0.5.5"
"@firebase/logger" "0.2.6"
"@firebase/util" "1.2.0"
"dom-storage" "2.1.0"
"tslib" "^2.1.0"
"xmlhttprequest" "1.8.0"
"@firebase/auth-interop-types@0.1.6":
"integrity" "sha512-etIi92fW3CctsmR9e3sYM3Uqnoq861M0Id9mdOPF6PWIg38BXL5k4upCNBggGUpLIS0H1grMOvy/wn1xymwe2g=="
"resolved" "https://registry.npmjs.org/@firebase/auth-interop-types/-/auth-interop-types-0.1.6.tgz"
"version" "0.1.6"
"@firebase/auth-types@0.10.3":
"integrity" "sha512-zExrThRqyqGUbXOFrH/sowuh2rRtfKHp9SBVY2vOqKWdCX1Ztn682n9WLtlUDsiYVIbBcwautYWk2HyCGFv0OA=="
"resolved" "https://registry.npmjs.org/@firebase/auth-types/-/auth-types-0.10.3.tgz"
"version" "0.10.3"
"@firebase/auth@0.16.8":
"integrity" "sha512-mR0UXG4LirWIfOiCWxVmvz1o23BuKGxeItQ2cCUgXLTjNtWJXdcky/356iTUsd7ZV5A78s2NHeN5tIDDG6H4rg=="
"resolved" "https://registry.npmjs.org/@firebase/auth/-/auth-0.16.8.tgz"
"version" "0.16.8"
dependencies:
"@firebase/auth-types" "0.10.3"
"@firebase/component@0.5.5":
"integrity" "sha512-L41SdS/4a164jx2iGfakJgaBUPPBI3DI+RrUlmh3oHSUljTeCwfj/Nhcv3S7e2lyXsGFJtAyepfPUx4IQ05crw=="
"resolved" "https://registry.npmjs.org/@firebase/component/-/component-0.5.5.tgz"
"version" "0.5.5"
dependencies:
"@firebase/util" "1.2.0"
"tslib" "^2.1.0"
"@firebase/database-types@0.7.3":
"integrity" "sha512-dSOJmhKQ0nL8O4EQMRNGpSExWCXeHtH57gGg0BfNAdWcKhC8/4Y+qfKLfWXzyHvrSecpLmO0SmAi/iK2D5fp5A=="
"resolved" "https://registry.npmjs.org/@firebase/database-types/-/database-types-0.7.3.tgz"
"version" "0.7.3"
dependencies:
"@firebase/app-types" "0.6.3"
"@firebase/database@0.10.9":
"integrity" "sha512-Jxi9SiE4cNOftO9YKlG71ccyWFw4kSM9AG/xYu6vWXUGBr39Uw1TvYougANOcU21Q0TP4J08VPGnOnpXk/FGbQ=="
"resolved" "https://registry.npmjs.org/@firebase/database/-/database-0.10.9.tgz"
"version" "0.10.9"
dependencies:
"@firebase/auth-interop-types" "0.1.6"
"@firebase/component" "0.5.5"
"@firebase/database-types" "0.7.3"
"@firebase/logger" "0.2.6"
"@firebase/util" "1.2.0"
"faye-websocket" "0.11.3"
"tslib" "^2.1.0"
"@firebase/firestore-types@2.3.0":
"integrity" "sha512-QTW7NP7nDL0pgT/X53lyj+mIMh4nRQBBTBlRNQBt7eSyeqBf3ag3bxdQhCg358+5KbjYTC2/O6QtX9DlJZmh1A=="
"resolved" "https://registry.npmjs.org/@firebase/firestore-types/-/firestore-types-2.3.0.tgz"
"version" "2.3.0"
"@firebase/firestore@2.3.10":
"integrity" "sha512-O+XpaZVhDIBK2fMwBUBR2BuhaXF6zTmz+afAuXAx18DK+2rFfLefbALZLaUYw0Aabe9pryy0c7OenzRbHA8n4Q=="
"resolved" "https://registry.npmjs.org/@firebase/firestore/-/firestore-2.3.10.tgz"
"version" "2.3.10"
dependencies:
"@firebase/component" "0.5.5"
"@firebase/firestore-types" "2.3.0"
"@firebase/logger" "0.2.6"
"@firebase/util" "1.2.0"
"@firebase/webchannel-wrapper" "0.5.1"
"@grpc/grpc-js" "^1.3.2"
"@grpc/proto-loader" "^0.6.0"
"node-fetch" "2.6.1"
"tslib" "^2.1.0"
"@firebase/functions-types@0.4.0":
"integrity" "sha512-3KElyO3887HNxtxNF1ytGFrNmqD+hheqjwmT3sI09FaDCuaxGbOnsXAXH2eQ049XRXw9YQpHMgYws/aUNgXVyQ=="
"resolved" "https://registry.npmjs.org/@firebase/functions-types/-/functions-types-0.4.0.tgz"
"version" "0.4.0"
"@firebase/functions@0.6.14":
"integrity" "sha512-Gthru/wHPQqkn651MenVM+qKVFFqIyFcNT3qfJUacibqrKlvDtYtaCMjFGAkChuGnYzNVnXJIaNrIHkEIII4Hg=="
"resolved" "https://registry.npmjs.org/@firebase/functions/-/functions-0.6.14.tgz"
"version" "0.6.14"
dependencies:
"@firebase/component" "0.5.5"
"@firebase/functions-types" "0.4.0"
"@firebase/messaging-types" "0.5.0"
"node-fetch" "2.6.1"
"tslib" "^2.1.0"
"@firebase/installations-types@0.3.4":
"integrity" "sha512-RfePJFovmdIXb6rYwtngyxuEcWnOrzdZd9m7xAW0gRxDIjBT20n3BOhjpmgRWXo/DAxRmS7bRjWAyTHY9cqN7Q=="
"resolved" "https://registry.npmjs.org/@firebase/installations-types/-/installations-types-0.3.4.tgz"
"version" "0.3.4"
"@firebase/installations@0.4.31":
"integrity" "sha512-qWolhAgMHvD3avsNCl+K8+untzoDDFQIRR8At8kyWMKKosy0vttdWTWzjvDoZbyKU6r0RNlxDUWAgV88Q8EudQ=="
"resolved" "https://registry.npmjs.org/@firebase/installations/-/installations-0.4.31.tgz"
"version" "0.4.31"
dependencies:
"@firebase/component" "0.5.5"
"@firebase/installations-types" "0.3.4"
"@firebase/util" "1.2.0"
"idb" "3.0.2"
"tslib" "^2.1.0"
"@firebase/logger@0.2.6":
"integrity" "sha512-KIxcUvW/cRGWlzK9Vd2KB864HlUnCfdTH0taHE0sXW5Xl7+W68suaeau1oKNEqmc3l45azkd4NzXTCWZRZdXrw=="
"resolved" "https://registry.npmjs.org/@firebase/logger/-/logger-0.2.6.tgz"
"version" "0.2.6"
"@firebase/messaging-types@0.5.0":
"integrity" "sha512-QaaBswrU6umJYb/ZYvjR5JDSslCGOH6D9P136PhabFAHLTR4TWjsaACvbBXuvwrfCXu10DtcjMxqfhdNIB1Xfg=="
"resolved" "https://registry.npmjs.org/@firebase/messaging-types/-/messaging-types-0.5.0.tgz"
"version" "0.5.0"
"@firebase/messaging@0.7.15":
"integrity" "sha512-81t6iJtqMBJF5LHTjDhlHUpbPZOV6dKhW0TueAoON4omc0SaDXgf4nnk6JkvZRfdcuOaP8848Cv53tvZPFFAYQ=="
"resolved" "https://registry.npmjs.org/@firebase/messaging/-/messaging-0.7.15.tgz"
"version" "0.7.15"
dependencies:
"@firebase/component" "0.5.5"
"@firebase/installations" "0.4.31"
"@firebase/messaging-types" "0.5.0"
"@firebase/util" "1.2.0"
"idb" "3.0.2"
"tslib" "^2.1.0"
"@firebase/performance-types@0.0.13":
"integrity" "sha512-6fZfIGjQpwo9S5OzMpPyqgYAUZcFzZxHFqOyNtorDIgNXq33nlldTL/vtaUZA8iT9TT5cJlCrF/jthKU7X21EA=="
"resolved" "https://registry.npmjs.org/@firebase/performance-types/-/performance-types-0.0.13.tgz"
"version" "0.0.13"
"@firebase/performance@0.4.17":
"integrity" "sha512-uhDs9rhdMrGraYHcd3CTRkGtcNap4hp6rAHTwJNIX56Z3RzQ1VW2ea9vvesl7EjFtEIPU0jfdrS32wV+qer5DQ=="
"resolved" "https://registry.npmjs.org/@firebase/performance/-/performance-0.4.17.tgz"
"version" "0.4.17"
dependencies:
"@firebase/component" "0.5.5"
"@firebase/installations" "0.4.31"
"@firebase/logger" "0.2.6"
"@firebase/performance-types" "0.0.13"
"@firebase/util" "1.2.0"
"tslib" "^2.1.0"
"@firebase/polyfill@0.3.36":
"integrity" "sha512-zMM9oSJgY6cT2jx3Ce9LYqb0eIpDE52meIzd/oe/y70F+v9u1LDqk5kUF5mf16zovGBWMNFmgzlsh6Wj0OsFtg=="
"resolved" "https://registry.npmjs.org/@firebase/polyfill/-/polyfill-0.3.36.tgz"
"version" "0.3.36"
dependencies:
"core-js" "3.6.5"
"promise-polyfill" "8.1.3"
"whatwg-fetch" "2.0.4"
"@firebase/remote-config-types@0.1.9":
"integrity" "sha512-G96qnF3RYGbZsTRut7NBX0sxyczxt1uyCgXQuH/eAfUCngxjEGcZQnBdy6mvSdqdJh5mC31rWPO4v9/s7HwtzA=="
"resolved" "https://registry.npmjs.org/@firebase/remote-config-types/-/remote-config-types-0.1.9.tgz"
"version" "0.1.9"
"@firebase/remote-config@0.1.42":
"integrity" "sha512-hWwtAZmYLB274bxjV2cdMYhyBCUUqbYErihGx3rMyab76D+VbIxOuKJb2z0DS67jQG+SA3pr9/MtWsTPHV/l9g=="
"resolved" "https://registry.npmjs.org/@firebase/remote-config/-/remote-config-0.1.42.tgz"
"version" "0.1.42"
dependencies:
"@firebase/component" "0.5.5"
"@firebase/installations" "0.4.31"
"@firebase/logger" "0.2.6"
"@firebase/remote-config-types" "0.1.9"
"@firebase/util" "1.2.0"
"tslib" "^2.1.0"
"@firebase/storage-types@0.4.1":
"integrity" "sha512-IM4cRzAnQ6QZoaxVZ5MatBzqXVcp47hOlE28jd9xXw1M9V7gfjhmW0PALGFQx58tPVmuUwIKyoEbHZjV4qRJwQ=="
"resolved" "https://registry.npmjs.org/@firebase/storage-types/-/storage-types-0.4.1.tgz"
"version" "0.4.1"
"@firebase/storage@0.6.2":
"integrity" "sha512-qbYx+KOxnD5andWAtVPgMHFa/62jdLCgPGdfIRQIEgBoYibk3KigRYVdnfKRLcCO3Vip63BRUvyeqfiUHNNu2g=="
"resolved" "https://registry.npmjs.org/@firebase/storage/-/storage-0.6.2.tgz"
"version" "0.6.2"
dependencies:
"@firebase/component" "0.5.5"
"@firebase/storage-types" "0.4.1"
"@firebase/util" "1.2.0"
"node-fetch" "2.6.1"
"tslib" "^2.1.0"
"@firebase/util@1.2.0", "@firebase/util@1.x":
"integrity" "sha512-8W9TTGImXr9cu+oyjBJ7yjoEd/IVAv0pBZA4c1uIuKrpGZi2ee38m+8xlZOBRmsAaOU/tR9DXz1WF/oeM6Fb7Q=="
"resolved" "https://registry.npmjs.org/@firebase/util/-/util-1.2.0.tgz"
"version" "1.2.0"
dependencies:
"tslib" "^2.1.0"
"@firebase/webchannel-wrapper@0.5.1":
"integrity" "sha512-dZMzN0uAjwJXWYYAcnxIwXqRTZw3o14hGe7O6uhwjD1ZQWPVYA5lASgnNskEBra0knVBsOXB4KXg+HnlKewN/A=="
"resolved" "https://registry.npmjs.org/@firebase/webchannel-wrapper/-/webchannel-wrapper-0.5.1.tgz"
"version" "0.5.1"
"@fluentui/react-component-event-listener@~0.51.6":
"integrity" "sha512-NjVm+crN0T9A7vITL8alZeHnuV8zi2gos0nezU/2YOxaUAB9E4zKiPxt/6k5U50rJs/gj8Nu45iXxnjO41HbZg=="
"resolved" "https://registry.npmjs.org/@fluentui/react-component-event-listener/-/react-component-event-listener-0.51.7.tgz"
"version" "0.51.7"
dependencies:
"@babel/runtime" "^7.10.4"
"@fluentui/react-component-ref@~0.51.6":
"integrity" "sha512-CX27jVJYaFoBCWpuWAizQZ2se137ku1dmDyn8sw+ySNJa+kkQf7LnMydiPW5K7cRdUSqUJW3eS4EjKRvVAx8xA=="
"resolved" "https://registry.npmjs.org/@fluentui/react-component-ref/-/react-component-ref-0.51.7.tgz"
"version" "0.51.7"
dependencies:
"@babel/runtime" "^7.10.4"
"react-is" "^16.6.3"
"@grpc/grpc-js@^1.3.2":
"integrity" "sha512-CKQVuwuSPh40tgOkR7c0ZisxYRiN05PcKPW72mQL5y++qd7CwBRoaJZvU5xfXnCJDFBmS3qZGQ71Frx6Ofo2XA=="
"resolved" "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.7.tgz"
"version" "1.3.7"
dependencies:
"@types/node" ">=12.12.47"
"@grpc/proto-loader@^0.6.0":
"integrity" "sha512-7xvDvW/vJEcmLUltCUGOgWRPM8Oofv0eCFSVMuKqaqWJaXSzmB+m9hiyqe34QofAl4WAzIKUZZlinIF9FOHyTQ=="
"resolved" "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.4.tgz"
"version" "0.6.4"
dependencies:
"@types/long" "^4.0.1"
"lodash.camelcase" "^4.3.0"
"long" "^4.0.0"
"protobufjs" "^6.10.0"
"yargs" "^16.1.1"
"@hapi/accept@^5.0.1", "@hapi/accept@5.0.2":
"integrity" "sha512-CmzBx/bXUR8451fnZRuZAJRlzgm0Jgu5dltTX/bszmR2lheb9BpyN47Q1RbaGTsvFzn0PXAEs+lXDKfshccYZw=="
"resolved" "https://registry.npmjs.org/@hapi/accept/-/accept-5.0.2.tgz"
"version" "5.0.2"
dependencies:
"@hapi/boom" "9.x.x"
"@hapi/hoek" "9.x.x"
"@hapi/ammo@^5.0.1", "@hapi/ammo@5.x.x":
"integrity" "sha512-FbCNwcTbnQP4VYYhLNGZmA76xb2aHg9AMPiy18NZyWMG310P5KdFGyA9v2rm5ujrIny77dEEIkMOwl0Xv+fSSA=="
"resolved" "https://registry.npmjs.org/@hapi/ammo/-/ammo-5.0.1.tgz"
"version" "5.0.1"
dependencies:
"@hapi/hoek" "9.x.x"
"@hapi/b64@5.x.x":
"integrity" "sha512-ngu0tSEmrezoiIaNGG6rRvKOUkUuDdf4XTPnONHGYfSGRmDqPZX5oJL6HAdKTo1UQHECbdB4OzhWrfgVppjHUw=="
"resolved" "https://registry.npmjs.org/@hapi/b64/-/b64-5.0.0.tgz"
"version" "5.0.0"
dependencies:
"@hapi/hoek" "9.x.x"
"@hapi/boom@^9.1.0", "@hapi/boom@9.x.x":
"integrity" "sha512-RlrGyZ603hE/eRTZtTltocRm50HHmrmL3kGOP0SQ9MasazlW1mt/fkv4C5P/6rnpFXjwld/POFX1C8tMZE3ldg=="
"resolved" "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.3.tgz"
"version" "9.1.3"
dependencies:
"@hapi/hoek" "9.x.x"
"@hapi/bounce@^2.0.0", "@hapi/bounce@2.x.x":
"integrity" "sha512-JesW92uyzOOyuzJKjoLHM1ThiOvHPOLDHw01YV8yh5nCso7sDwJho1h0Ad2N+E62bZyz46TG3xhAi/78Gsct6A=="
"resolved" "https://registry.npmjs.org/@hapi/bounce/-/bounce-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"@hapi/boom" "9.x.x"
"@hapi/hoek" "9.x.x"
"@hapi/bourne@2.x.x":
"integrity" "sha512-WEezM1FWztfbzqIUbsDzFRVMxSoLy3HugVcux6KDDtTqzPsLE8NDRHfXvev66aH1i2oOKKar3/XDjbvh/OUBdg=="
"resolved" "https://registry.npmjs.org/@hapi/bourne/-/bourne-2.0.0.tgz"
"version" "2.0.0"
"@hapi/call@^8.0.0":
"integrity" "sha512-bOff6GTdOnoe5b8oXRV3lwkQSb/LAWylvDMae6RgEWWntd0SHtkYbQukDHKlfaYtVnSAgIavJ0kqszF/AIBb6g=="
"resolved" "https://registry.npmjs.org/@hapi/call/-/call-8.0.1.tgz"
"version" "8.0.1"
dependencies:
"@hapi/boom" "9.x.x"
"@hapi/hoek" "9.x.x"
"@hapi/catbox-memory@^5.0.0":
"integrity" "sha512-QWw9nOYJq5PlvChLWV8i6hQHJYfvdqiXdvTupJFh0eqLZ64Xir7mKNi96d5/ZMUAqXPursfNDIDxjFgoEDUqeQ=="
"resolved" "https://registry.npmjs.org/@hapi/catbox-memory/-/catbox-memory-5.0.1.tgz"
"version" "5.0.1"
dependencies:
"@hapi/boom" "9.x.x"
"@hapi/hoek" "9.x.x"
"@hapi/catbox@^11.1.1":
"integrity" "sha512-u/8HvB7dD/6X8hsZIpskSDo4yMKpHxFd7NluoylhGrL6cUfYxdQPnvUp9YU2C6F9hsyBVLGulBd9vBN1ebfXOQ=="
"resolved" "https://registry.npmjs.org/@hapi/catbox/-/catbox-11.1.1.tgz"
"version" "11.1.1"
dependencies:
"@hapi/boom" "9.x.x"
"@hapi/hoek" "9.x.x"
"@hapi/podium" "4.x.x"
"@hapi/validate" "1.x.x"
"@hapi/content@^5.0.2":
"integrity" "sha512-mre4dl1ygd4ZyOH3tiYBrOUBzV7Pu/EOs8VLGf58vtOEECWed8Uuw6B4iR9AN/8uQt42tB04qpVaMyoMQh0oMw=="
"resolved" "https://registry.npmjs.org/@hapi/content/-/content-5.0.2.tgz"
"version" "5.0.2"
dependencies:
"@hapi/boom" "9.x.x"
"@hapi/cryptiles@5.x.x":
"integrity" "sha512-fo9+d1Ba5/FIoMySfMqPBR/7Pa29J2RsiPrl7bkwo5W5o+AN1dAYQRi4SPrPwwVxVGKjgLOEWrsvt1BonJSfLA=="
"resolved" "https://registry.npmjs.org/@hapi/cryptiles/-/cryptiles-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"@hapi/boom" "9.x.x"
"@hapi/file@2.x.x":
"integrity" "sha512-WSrlgpvEqgPWkI18kkGELEZfXr0bYLtr16iIN4Krh9sRnzBZN6nnWxHFxtsnP684wueEySBbXPDg/WfA9xJdBQ=="
"resolved" "https://registry.npmjs.org/@hapi/file/-/file-2.0.0.tgz"
"version" "2.0.0"
"@hapi/hapi@^20.0.0":
"integrity" "sha512-BhJ5XFR9uWPUBj/z5pPqXSk8OnvQQU/EbQjwpmjZy0ymNEiq7kIhXkAmzXcntbBHta9o7zpW8XMeXnfV4wudXw=="
"resolved" "https://registry.npmjs.org/@hapi/hapi/-/hapi-20.1.5.tgz"
"version" "20.1.5"
dependencies:
"@hapi/accept" "^5.0.1"
"@hapi/ammo" "^5.0.1"
"@hapi/boom" "^9.1.0"
"@hapi/bounce" "^2.0.0"
"@hapi/call" "^8.0.0"
"@hapi/catbox" "^11.1.1"
"@hapi/catbox-memory" "^5.0.0"
"@hapi/heavy" "^7.0.1"
"@hapi/hoek" "^9.0.4"
"@hapi/mimos" "^6.0.0"
"@hapi/podium" "^4.1.1"
"@hapi/shot" "^5.0.5"
"@hapi/somever" "^3.0.0"
"@hapi/statehood" "^7.0.3"
"@hapi/subtext" "^7.0.3"
"@hapi/teamwork" "^5.1.0"
"@hapi/topo" "^5.0.0"
"@hapi/validate" "^1.1.1"
"@hapi/heavy@^7.0.1":
"integrity" "sha512-vJ/vzRQ13MtRzz6Qd4zRHWS3FaUc/5uivV2TIuExGTM9Qk+7Zzqj0e2G7EpE6KztO9SalTbiIkTh7qFKj/33cA=="
"resolved" "https://registry.npmjs.org/@hapi/heavy/-/heavy-7.0.1.tgz"
"version" "7.0.1"
dependencies:
"@hapi/boom" "9.x.x"
"@hapi/hoek" "9.x.x"
"@hapi/validate" "1.x.x"
"@hapi/hoek@^9.0.0", "@hapi/hoek@^9.0.4", "@hapi/hoek@9.x.x":
"integrity" "sha512-sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug=="
"resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.0.tgz"
"version" "9.2.0"
"@hapi/inert@^6.0.3":
"integrity" "sha512-Z6Pi0Wsn2pJex5CmBaq+Dky9q40LGzXLUIUFrYpDtReuMkmfy9UuUeYc4064jQ1Xe9uuw7kbwE6Fq6rqKAdjAg=="
"resolved" "https://registry.npmjs.org/@hapi/inert/-/inert-6.0.3.tgz"
"version" "6.0.3"
dependencies:
"@hapi/ammo" "5.x.x"
"@hapi/boom" "9.x.x"
"@hapi/bounce" "2.x.x"
"@hapi/hoek" "9.x.x"
"@hapi/validate" "1.x.x"
"lru-cache" "^6.0.0"
"@hapi/iron@6.x.x":
"integrity" "sha512-zvGvWDufiTGpTJPG1Y/McN8UqWBu0k/xs/7l++HVU535NLHXsHhy54cfEMdW7EjwKfbBfM9Xy25FmTiobb7Hvw=="
"resolved" "https://registry.npmjs.org/@hapi/iron/-/iron-6.0.0.tgz"
"version" "6.0.0"
dependencies:
"@hapi/b64" "5.x.x"
"@hapi/boom" "9.x.x"
"@hapi/bourne" "2.x.x"
"@hapi/cryptiles" "5.x.x"
"@hapi/hoek" "9.x.x"
"@hapi/mimos@^6.0.0":
"integrity" "sha512-Op/67tr1I+JafN3R3XN5DucVSxKRT/Tc+tUszDwENoNpolxeXkhrJ2Czt6B6AAqrespHoivhgZBWYSuANN9QXg=="
"resolved" "https://registry.npmjs.org/@hapi/mimos/-/mimos-6.0.0.tgz"
"version" "6.0.0"
dependencies:
"@hapi/hoek" "9.x.x"
"mime-db" "1.x.x"
"@hapi/nigel@4.x.x":
"integrity" "sha512-ht2KoEsDW22BxQOEkLEJaqfpoKPXxi7tvabXy7B/77eFtOyG5ZEstfZwxHQcqAiZhp58Ae5vkhEqI03kawkYNw=="
"resolved" "https://registry.npmjs.org/@hapi/nigel/-/nigel-4.0.2.tgz"
"version" "4.0.2"
dependencies:
"@hapi/hoek" "^9.0.4"
"@hapi/vise" "^4.0.0"
"@hapi/pez@^5.0.1":
"integrity" "sha512-mpikYRJjtrbJgdDHG/H9ySqYqwJ+QU/D7FXsYciS9P7NYBXE2ayKDAy3H0ou6CohOCaxPuTV4SZ0D936+VomHA=="
"resolved" "https://registry.npmjs.org/@hapi/pez/-/pez-5.0.3.tgz"
"version" "5.0.3"
dependencies:
"@hapi/b64" "5.x.x"
"@hapi/boom" "9.x.x"
"@hapi/content" "^5.0.2"
"@hapi/hoek" "9.x.x"
"@hapi/nigel" "4.x.x"
"@hapi/podium@^4.1.1", "@hapi/podium@4.x.x":
"integrity" "sha512-ljsKGQzLkFqnQxE7qeanvgGj4dejnciErYd30dbrYzUOF/FyS/DOF97qcrT3bhoVwCYmxa6PEMhxfCPlnUcD2g=="
"resolved" "https://registry.npmjs.org/@hapi/podium/-/podium-4.1.3.tgz"
"version" "4.1.3"
dependencies:
"@hapi/hoek" "9.x.x"
"@hapi/teamwork" "5.x.x"
"@hapi/validate" "1.x.x"
"@hapi/shot@^5.0.5":
"integrity" "sha512-x5AMSZ5+j+Paa8KdfCoKh+klB78otxF+vcJR/IoN91Vo2e5ulXIW6HUsFTCU+4W6P/Etaip9nmdAx2zWDimB2A=="
"resolved" "https://registry.npmjs.org/@hapi/shot/-/shot-5.0.5.tgz"
"version" "5.0.5"
dependencies:
"@hapi/hoek" "9.x.x"
"@hapi/validate" "1.x.x"
"@hapi/somever@^3.0.0":
"integrity" "sha512-4ZTSN3YAHtgpY/M4GOtHUXgi6uZtG9nEZfNI6QrArhK0XN/RDVgijlb9kOmXwCR5VclDSkBul9FBvhSuKXx9+w=="
"resolved" "https://registry.npmjs.org/@hapi/somever/-/somever-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"@hapi/bounce" "2.x.x"
"@hapi/hoek" "9.x.x"
"@hapi/statehood@^7.0.3":
"integrity" "sha512-pYB+pyCHkf2Amh67QAXz7e/DN9jcMplIL7Z6N8h0K+ZTy0b404JKPEYkbWHSnDtxLjJB/OtgElxocr2fMH4G7w=="
"resolved" "https://registry.npmjs.org/@hapi/statehood/-/statehood-7.0.3.tgz"
"version" "7.0.3"
dependencies:
"@hapi/boom" "9.x.x"
"@hapi/bounce" "2.x.x"
"@hapi/bourne" "2.x.x"
"@hapi/cryptiles" "5.x.x"
"@hapi/hoek" "9.x.x"
"@hapi/iron" "6.x.x"
"@hapi/validate" "1.x.x"
"@hapi/subtext@^7.0.3":
"integrity" "sha512-CekDizZkDGERJ01C0+TzHlKtqdXZxzSWTOaH6THBrbOHnsr3GY+yiMZC+AfNCypfE17RaIakGIAbpL2Tk1z2+A=="
"resolved" "https://registry.npmjs.org/@hapi/subtext/-/subtext-7.0.3.tgz"
"version" "7.0.3"
dependencies:
"@hapi/boom" "9.x.x"
"@hapi/bourne" "2.x.x"
"@hapi/content" "^5.0.2"
"@hapi/file" "2.x.x"
"@hapi/hoek" "9.x.x"
"@hapi/pez" "^5.0.1"
"@hapi/wreck" "17.x.x"
"@hapi/teamwork@^5.1.0", "@hapi/teamwork@5.x.x":
"integrity" "sha512-llqoQTrAJDTXxG3c4Kz/uzhBS1TsmSBa/XG5SPcVXgmffHE1nFtyLIK0hNJHCB3EuBKT84adzd1hZNY9GJLWtg=="
"resolved" "https://registry.npmjs.org/@hapi/teamwork/-/teamwork-5.1.0.tgz"
"version" "5.1.0"
"@hapi/topo@^5.0.0":
"integrity" "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg=="
"resolved" "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"@hapi/hoek" "^9.0.0"
"@hapi/validate@^1.1.1", "@hapi/validate@1.x.x":
"integrity" "sha512-/XMR0N0wjw0Twzq2pQOzPBZlDzkekGcoCtzO314BpIEsbXdYGthQUbxgkGDf4nhk1+IPDAsXqWjMohRQYO06UA=="
"resolved" "https://registry.npmjs.org/@hapi/validate/-/validate-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"@hapi/hoek" "^9.0.0"
"@hapi/topo" "^5.0.0"
"@hapi/vise@^4.0.0":
"integrity" "sha512-eYyLkuUiFZTer59h+SGy7hUm+qE9p+UemePTHLlIWppEd+wExn3Df5jO04bFQTm7nleF5V8CtuYQYb+VFpZ6Sg=="
"resolved" "https://registry.npmjs.org/@hapi/vise/-/vise-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"@hapi/hoek" "9.x.x"
"@hapi/wreck@17.x.x":
"integrity" "sha512-nx6sFyfqOpJ+EFrHX+XWwJAxs3ju4iHdbB/bwR8yTNZOiYmuhA8eCe7lYPtYmb4j7vyK/SlbaQsmTtUrMvPEBw=="
"resolved" "https://registry.npmjs.org/@hapi/wreck/-/wreck-17.1.0.tgz"
"version" "17.1.0"
dependencies:
"@hapi/boom" "9.x.x"
"@hapi/bourne" "2.x.x"
"@hapi/hoek" "9.x.x"
"@ipld/car@^3.0.1":
"integrity" "sha512-LvIXl7BYmy8em1PFB1l2Iu3/bFHYHy3h3x7HcDi9veoGSYi70dAIthJsXgkoYoGfRSLONR1FDjaoFjbbXk87Qw=="
"resolved" "https://registry.npmjs.org/@ipld/car/-/car-3.1.16.tgz"
"version" "3.1.16"
dependencies:
"@ipld/dag-cbor" "^6.0.0"
"@types/varint" "^6.0.0"
"multiformats" "^9.0.0"
"varint" "^6.0.0"
"@ipld/dag-cbor@^6.0.0", "@ipld/dag-cbor@^6.0.3":
"integrity" "sha512-Kj8K8z2YMhupPJMHAn3jSVgGl/V7gT3Eki1dCE4bVhbli+vHS6lLObZXAcrTXMMHHYFmkSoOFdvwoYu5AU7lBA=="
"resolved" "https://registry.npmjs.org/@ipld/dag-cbor/-/dag-cbor-6.0.9.tgz"
"version" "6.0.9"
dependencies:
"cborg" "^1.2.1"
"multiformats" "^9.0.0"
"@ipld/dag-pb@^2.0.2":