-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.lock
More file actions
3932 lines (3932 loc) · 149 KB
/
deno.lock
File metadata and controls
3932 lines (3932 loc) · 149 KB
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
{
"version": "4",
"specifiers": {
"npm:@emailjs/browser@^4.4.1": "4.4.1",
"npm:@pixi/react@^7.1.2": "7.1.2_@babel+runtime@7.26.9_@pixi+app@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+constants@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2_@pixi+extensions@7.4.2_@pixi+graphics@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2_@pixi+math@7.4.2_@pixi+mesh@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+mesh-extras@7.4.2__@pixi+core@7.4.2__@pixi+mesh@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+particle-container@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2_@pixi+sprite@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+sprite-animated@7.4.2__@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+sprite-tiling@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2_@pixi+text@7.4.2__@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+text-bitmap@7.4.2__@pixi+assets@7.4.2___@pixi+core@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2__@pixi+mesh@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2__@pixi+text@7.4.2___@pixi+core@7.4.2___@pixi+sprite@7.4.2____@pixi+core@7.4.2____@pixi+display@7.4.2_____@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2_@pixi+ticker@7.4.2_prop-types@15.8.1_react@18.3.1_react-dom@18.3.1__react@18.3.1",
"npm:@types/node@20": "20.17.19",
"npm:@types/react-dom@18": "18.3.5_@types+react@18.3.18",
"npm:@types/react@18": "18.3.18",
"npm:eslint-config-next@14.2.13": "14.2.13_eslint@8.57.1_typescript@5.7.3_@typescript-eslint+parser@8.24.1__eslint@8.57.1__typescript@5.7.3_eslint-plugin-import@2.31.0__eslint@8.57.1",
"npm:eslint@8": "8.57.1",
"npm:framer-motion@^11.11.17": "11.18.2_react@18.3.1_react-dom@18.3.1__react@18.3.1",
"npm:next@14.2.13": "14.2.13_react@18.3.1_react-dom@18.3.1__react@18.3.1",
"npm:pixi.js@^7.4.2": "7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2_@pixi+events@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+assets@7.4.2__@pixi+core@7.4.2_@pixi+sprite@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+mesh@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+graphics@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2_@pixi+text@7.4.2__@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2",
"npm:postcss@8": "8.5.2",
"npm:re-resizable@^6.10.0": "6.10.3_react@18.3.1_react-dom@18.3.1__react@18.3.1",
"npm:react-dom@18": "18.3.1_react@18.3.1",
"npm:react-draggable@^4.4.6": "4.4.6_react@18.3.1_react-dom@18.3.1__react@18.3.1",
"npm:react-icons@^5.3.0": "5.4.0_react@18.3.1",
"npm:react-markdown@^9.0.1": "9.0.3_@types+react@18.3.18_react@18.3.1",
"npm:react-pdf@^9.2.1": "9.2.1_@types+react@18.3.18_react@18.3.1_react-dom@18.3.1__react@18.3.1",
"npm:react-rnd@^10.4.13": "10.4.14_react@18.3.1_react-dom@18.3.1__react@18.3.1",
"npm:react-spinners@~0.14.1": "0.14.1_react@18.3.1_react-dom@18.3.1__react@18.3.1",
"npm:react-toastify@^10.0.6": "10.0.6_react@18.3.1_react-dom@18.3.1__react@18.3.1",
"npm:react-tooltip@^5.28.0": "5.28.0_react@18.3.1_react-dom@18.3.1__react@18.3.1",
"npm:react@18": "18.3.1",
"npm:remark-gfm@4": "4.0.1",
"npm:sharp@~0.33.5": "0.33.5",
"npm:tailwindcss@^3.4.1": "3.4.17_postcss@8.5.2",
"npm:typescript@5": "5.7.3",
"npm:zustand@^5.0.0-rc.2": "5.0.3_@types+react@18.3.18_react@18.3.1"
},
"npm": {
"@alloc/quick-lru@5.2.0": {
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="
},
"@babel/runtime@7.26.9": {
"integrity": "sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==",
"dependencies": [
"regenerator-runtime"
]
},
"@emailjs/browser@4.4.1": {
"integrity": "sha512-DGSlP9sPvyFba3to2A50kDtZ+pXVp/0rhmqs2LmbMS3I5J8FSOgLwzY2Xb4qfKlOVHh29EAutLYwe5yuEZmEFg=="
},
"@emnapi/runtime@1.3.1": {
"integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==",
"dependencies": [
"tslib@2.8.1"
]
},
"@eslint-community/eslint-utils@4.4.1_eslint@8.57.1": {
"integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==",
"dependencies": [
"eslint",
"eslint-visitor-keys@3.4.3"
]
},
"@eslint-community/regexpp@4.12.1": {
"integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ=="
},
"@eslint/eslintrc@2.1.4": {
"integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
"dependencies": [
"ajv",
"debug@4.4.0",
"espree",
"globals",
"ignore",
"import-fresh",
"js-yaml",
"minimatch@3.1.2",
"strip-json-comments@3.1.1"
]
},
"@eslint/js@8.57.1": {
"integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q=="
},
"@floating-ui/core@1.6.9": {
"integrity": "sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==",
"dependencies": [
"@floating-ui/utils"
]
},
"@floating-ui/dom@1.6.13": {
"integrity": "sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==",
"dependencies": [
"@floating-ui/core",
"@floating-ui/utils"
]
},
"@floating-ui/utils@0.2.9": {
"integrity": "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg=="
},
"@humanwhocodes/config-array@0.13.0": {
"integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==",
"dependencies": [
"@humanwhocodes/object-schema",
"debug@4.4.0",
"minimatch@3.1.2"
]
},
"@humanwhocodes/module-importer@1.0.1": {
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="
},
"@humanwhocodes/object-schema@2.0.3": {
"integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA=="
},
"@img/sharp-darwin-arm64@0.33.5": {
"integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==",
"dependencies": [
"@img/sharp-libvips-darwin-arm64"
]
},
"@img/sharp-darwin-x64@0.33.5": {
"integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==",
"dependencies": [
"@img/sharp-libvips-darwin-x64"
]
},
"@img/sharp-libvips-darwin-arm64@1.0.4": {
"integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg=="
},
"@img/sharp-libvips-darwin-x64@1.0.4": {
"integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ=="
},
"@img/sharp-libvips-linux-arm64@1.0.4": {
"integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA=="
},
"@img/sharp-libvips-linux-arm@1.0.5": {
"integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g=="
},
"@img/sharp-libvips-linux-s390x@1.0.4": {
"integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA=="
},
"@img/sharp-libvips-linux-x64@1.0.4": {
"integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw=="
},
"@img/sharp-libvips-linuxmusl-arm64@1.0.4": {
"integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA=="
},
"@img/sharp-libvips-linuxmusl-x64@1.0.4": {
"integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw=="
},
"@img/sharp-linux-arm64@0.33.5": {
"integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==",
"dependencies": [
"@img/sharp-libvips-linux-arm64"
]
},
"@img/sharp-linux-arm@0.33.5": {
"integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==",
"dependencies": [
"@img/sharp-libvips-linux-arm"
]
},
"@img/sharp-linux-s390x@0.33.5": {
"integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==",
"dependencies": [
"@img/sharp-libvips-linux-s390x"
]
},
"@img/sharp-linux-x64@0.33.5": {
"integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==",
"dependencies": [
"@img/sharp-libvips-linux-x64"
]
},
"@img/sharp-linuxmusl-arm64@0.33.5": {
"integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==",
"dependencies": [
"@img/sharp-libvips-linuxmusl-arm64"
]
},
"@img/sharp-linuxmusl-x64@0.33.5": {
"integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==",
"dependencies": [
"@img/sharp-libvips-linuxmusl-x64"
]
},
"@img/sharp-wasm32@0.33.5": {
"integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==",
"dependencies": [
"@emnapi/runtime"
]
},
"@img/sharp-win32-ia32@0.33.5": {
"integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ=="
},
"@img/sharp-win32-x64@0.33.5": {
"integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg=="
},
"@isaacs/cliui@8.0.2": {
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
"dependencies": [
"string-width@5.1.2",
"string-width-cjs@npm:string-width@4.2.3",
"strip-ansi@7.1.0",
"strip-ansi-cjs@npm:strip-ansi@6.0.1",
"wrap-ansi@8.1.0",
"wrap-ansi-cjs@npm:wrap-ansi@7.0.0"
]
},
"@jridgewell/gen-mapping@0.3.8": {
"integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
"dependencies": [
"@jridgewell/set-array",
"@jridgewell/sourcemap-codec",
"@jridgewell/trace-mapping"
]
},
"@jridgewell/resolve-uri@3.1.2": {
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="
},
"@jridgewell/set-array@1.2.1": {
"integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A=="
},
"@jridgewell/sourcemap-codec@1.5.0": {
"integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="
},
"@jridgewell/trace-mapping@0.3.25": {
"integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
"dependencies": [
"@jridgewell/resolve-uri",
"@jridgewell/sourcemap-codec"
]
},
"@next/env@14.2.13": {
"integrity": "sha512-s3lh6K8cbW1h5Nga7NNeXrbe0+2jIIYK9YaA9T7IufDWnZpozdFUp6Hf0d5rNWUKu4fEuSX2rCKlGjCrtylfDw=="
},
"@next/eslint-plugin-next@14.2.13": {
"integrity": "sha512-z8Mk0VljxhIzsSiZUSdt3wp+t2lKd+jk5a9Jsvh3zDGkItgDMfjv/ZbET6HsxEl/fSihVoHGsXV6VLyDH0lfTQ==",
"dependencies": [
"glob@10.3.10"
]
},
"@next/swc-darwin-arm64@14.2.13": {
"integrity": "sha512-IkAmQEa2Htq+wHACBxOsslt+jMoV3msvxCn0WFSfJSkv/scy+i/EukBKNad36grRxywaXUYJc9mxEGkeIs8Bzg=="
},
"@next/swc-darwin-x64@14.2.13": {
"integrity": "sha512-Dv1RBGs2TTjkwEnFMVL5XIfJEavnLqqwYSD6LXgTPdEy/u6FlSrLBSSfe1pcfqhFEXRAgVL3Wpjibe5wXJzWog=="
},
"@next/swc-linux-arm64-gnu@14.2.13": {
"integrity": "sha512-yB1tYEFFqo4ZNWkwrJultbsw7NPAAxlPXURXioRl9SdW6aIefOLS+0TEsKrWBtbJ9moTDgU3HRILL6QBQnMevg=="
},
"@next/swc-linux-arm64-musl@14.2.13": {
"integrity": "sha512-v5jZ/FV/eHGoWhMKYrsAweQ7CWb8xsWGM/8m1mwwZQ/sutJjoFaXchwK4pX8NqwImILEvQmZWyb8pPTcP7htWg=="
},
"@next/swc-linux-x64-gnu@14.2.13": {
"integrity": "sha512-aVc7m4YL7ViiRv7SOXK3RplXzOEe/qQzRA5R2vpXboHABs3w8vtFslGTz+5tKiQzWUmTmBNVW0UQdhkKRORmGA=="
},
"@next/swc-linux-x64-musl@14.2.13": {
"integrity": "sha512-4wWY7/OsSaJOOKvMsu1Teylku7vKyTuocvDLTZQq0TYv9OjiYYWt63PiE1nTuZnqQ4RPvME7Xai+9enoiN0Wrg=="
},
"@next/swc-win32-arm64-msvc@14.2.13": {
"integrity": "sha512-uP1XkqCqV2NVH9+g2sC7qIw+w2tRbcMiXFEbMihkQ8B1+V6m28sshBwAB0SDmOe0u44ne1vFU66+gx/28RsBVQ=="
},
"@next/swc-win32-ia32-msvc@14.2.13": {
"integrity": "sha512-V26ezyjPqQpDBV4lcWIh8B/QICQ4v+M5Bo9ykLN+sqeKKBxJVDpEc6biDVyluTXTC40f5IqCU0ttth7Es2ZuMw=="
},
"@next/swc-win32-x64-msvc@14.2.13": {
"integrity": "sha512-WwzOEAFBGhlDHE5Z73mNU8CO8mqMNLqaG+AO9ETmzdCQlJhVtWZnOl2+rqgVQS+YHunjOWptdFmNfbpwcUuEsw=="
},
"@nodelib/fs.scandir@2.1.5": {
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dependencies": [
"@nodelib/fs.stat",
"run-parallel"
]
},
"@nodelib/fs.stat@2.0.5": {
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
},
"@nodelib/fs.walk@1.2.8": {
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dependencies": [
"@nodelib/fs.scandir",
"fastq"
]
},
"@nolyfill/is-core-module@1.0.39": {
"integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA=="
},
"@pixi/accessibility@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2_@pixi+events@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2": {
"integrity": "sha512-R6VEolm8uyy1FB1F2qaLKxVbzXAFTZCF2ka8fl9lsz7We6ZfO4QpXv9ur7DvzratjCQUQVCKo0/V7xL5q1EV/g==",
"dependencies": [
"@pixi/core",
"@pixi/display",
"@pixi/events"
]
},
"@pixi/app@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2": {
"integrity": "sha512-ugkH3kOgjT8P1mTMY29yCOgEh+KuVMAn8uBxeY0aMqaUgIMysfpnFv+Aepp2CtvI9ygr22NC+OiKl+u+eEaQHw==",
"dependencies": [
"@pixi/core",
"@pixi/display"
]
},
"@pixi/assets@7.4.2_@pixi+core@7.4.2": {
"integrity": "sha512-anxho59H9egZwoaEdM5aLvYyxoz6NCy3CaQIvNHD1bbGg8L16Ih0e26QSBR5fu53jl8OjT6M7s+p6n7uu4+fGA==",
"dependencies": [
"@pixi/core",
"@types/css-font-loading-module"
]
},
"@pixi/color@7.4.2": {
"integrity": "sha512-av1LOvhHsiaW8+T4n/FgnOKHby55/w7VcA1HzPIHRBtEcsmxvSCDanT1HU2LslNhrxLPzyVx18nlmalOyt5OBg==",
"dependencies": [
"@pixi/colord"
]
},
"@pixi/colord@2.9.6": {
"integrity": "sha512-nezytU2pw587fQstUu1AsJZDVEynjskwOL+kibwcdxsMBFqPsFFNA7xl0ii/gXuDi6M0xj3mfRJj8pBSc2jCfA=="
},
"@pixi/compressed-textures@7.4.2_@pixi+assets@7.4.2__@pixi+core@7.4.2_@pixi+core@7.4.2": {
"integrity": "sha512-VJrt7el6O4ZJSWkeOGXwrhJaiLg1UBhHB3fj42VR4YloYkAxpfd9K6s6IcbcVz7n9L48APKBMgHyaB2pX2Ck/A==",
"dependencies": [
"@pixi/assets",
"@pixi/core"
]
},
"@pixi/constants@7.4.2": {
"integrity": "sha512-N9vn6Wpz5WIQg7ugUg2+SdqD2u2+NM0QthE8YzLJ4tLH2Iz+/TrnPKUJzeyIqbg3sxJG5ZpGGPiacqIBpy1KyA=="
},
"@pixi/core@7.4.2": {
"integrity": "sha512-UbMtgSEnyCOFPzbE6ThB9qopXxbZ5GCof2ArB4FXOC5Xi/83MOIIYg5kf5M8689C5HJMhg2SrJu3xLKppF+CMg==",
"dependencies": [
"@pixi/color",
"@pixi/constants",
"@pixi/extensions",
"@pixi/math",
"@pixi/runner",
"@pixi/settings",
"@pixi/ticker",
"@pixi/utils"
]
},
"@pixi/display@7.4.2_@pixi+core@7.4.2": {
"integrity": "sha512-DaD0J7gIlNlzO0Fdlby/0OH+tB5LtCY6rgFeCBKVDnzmn8wKW3zYZRenWBSFJ0Psx6vLqXYkSIM/rcokaKviIw==",
"dependencies": [
"@pixi/core"
]
},
"@pixi/events@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2": {
"integrity": "sha512-Jw/w57heZjzZShIXL0bxOvKB+XgGIevyezhGtfF2ZSzQoSBWo+Fj1uE0QwKd0RIaXegZw/DhSmiMJSbNmcjifA==",
"dependencies": [
"@pixi/core",
"@pixi/display"
]
},
"@pixi/extensions@7.4.2": {
"integrity": "sha512-Hmx2+O0yZ8XIvgomHM9GZEGcy9S9Dd8flmtOK5Aa3fXs/8v7xD08+ANQpN9ZqWU2Xs+C6UBlpqlt2BWALvKKKA=="
},
"@pixi/extract@7.4.2_@pixi+core@7.4.2": {
"integrity": "sha512-JOX27TRWjVEjauGBbF8PU7/g6LYXnivehdgqS5QlVDv1CNHTOrz/j3MdKcVWOhyZPbH5c9sh7lxyRxvd9AIuTQ==",
"dependencies": [
"@pixi/core"
]
},
"@pixi/filter-alpha@7.4.2_@pixi+core@7.4.2": {
"integrity": "sha512-9OsKJ+yvY2wIcQXwswj5HQBiwNGymwmqdxfp7mo+nZSBoDmxUqvMZzE9UNJ3eUlswuNvNRO8zNOsQvwdz7WFww==",
"dependencies": [
"@pixi/core"
]
},
"@pixi/filter-blur@7.4.2_@pixi+core@7.4.2": {
"integrity": "sha512-gOXBbIUx6CRZP1fmsis2wLzzSsofrqmIHhbf1gIkZMIQaLsc9T7brj+PaLTTiOiyJgnvGN5j20RZnkERWWKV0Q==",
"dependencies": [
"@pixi/core"
]
},
"@pixi/filter-color-matrix@7.4.2_@pixi+core@7.4.2": {
"integrity": "sha512-ykZiR59Gvj80UKs9qm7jeUTKvn+wWk6HBVJOmJbK9jFK5juakDWp7BbH26U78Q61EWj97kI1FdfcbMkuQ7rqkA==",
"dependencies": [
"@pixi/core"
]
},
"@pixi/filter-displacement@7.4.2_@pixi+core@7.4.2": {
"integrity": "sha512-QS/eWp/ivsxef3xapNeGwpPX7vrqQQeo99Fux4k5zsvplnNEsf91t6QYJLG776AbZEu/qh8VYRBA5raIVY/REw==",
"dependencies": [
"@pixi/core"
]
},
"@pixi/filter-fxaa@7.4.2_@pixi+core@7.4.2": {
"integrity": "sha512-U/ptJgDsfs/r8y2a6gCaiPfDu2IFAxpQ4wtfmBpz6vRhqeE4kI8yNIUx5dZbui57zlsJaW0BNacOQxHU0vLkyQ==",
"dependencies": [
"@pixi/core"
]
},
"@pixi/filter-noise@7.4.2_@pixi+core@7.4.2": {
"integrity": "sha512-Vy9ViBFhZEGh6xKkd3kFWErolZTwv1Y5Qb1bV7qPIYbvBECYsqzlR4uCrrjBV6KKm0PufpG/+NKC5vICZaqKzg==",
"dependencies": [
"@pixi/core"
]
},
"@pixi/graphics@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2_@pixi+sprite@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2": {
"integrity": "sha512-jH4/Tum2RqWzHGzvlwEr7HIVduoLO57Ze705N2zQPkUD57TInn5911aGUeoua7f/wK8cTLGzgB9BzSo2kTdcHw==",
"dependencies": [
"@pixi/core",
"@pixi/display",
"@pixi/sprite"
]
},
"@pixi/math@7.4.2": {
"integrity": "sha512-7jHmCQoYk6e0rfSKjdNFOPl0wCcdgoraxgteXJTTHv3r0bMNx2pHD9FJ0VvocEUG7XHfj55O3+u7yItOAx0JaQ=="
},
"@pixi/mesh-extras@7.4.2_@pixi+core@7.4.2_@pixi+mesh@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2": {
"integrity": "sha512-vNR/7wjxjs7sv9fGoKkHyU91ZAD+7EnMHBS5F3CVISlOIFxLi96NNZCB81oUIdky/90pHw40johd/4izR5zTyw==",
"dependencies": [
"@pixi/core",
"@pixi/mesh"
]
},
"@pixi/mesh@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2": {
"integrity": "sha512-mEkKyQvvMrYXC3pahvH5WBIKtrtB63WixRr91ANFI7zXD+ESG6Ap6XtxMCJmXDQPwBDNk7SWVMiCflYuchG7kA==",
"dependencies": [
"@pixi/core",
"@pixi/display"
]
},
"@pixi/mixin-cache-as-bitmap@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2_@pixi+sprite@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2": {
"integrity": "sha512-6dgthi2ruUT/lervSrFDQ7vXkEsHo6CxdgV7W/wNdW1dqgQlKfDvO6FhjXzyIMRLSooUf5FoeluVtfsjkUIYrw==",
"dependencies": [
"@pixi/core",
"@pixi/display",
"@pixi/sprite"
]
},
"@pixi/mixin-get-child-by-name@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2_@pixi+core@7.4.2": {
"integrity": "sha512-0Cfw8JpQhsixprxiYph4Lj+B5n83Kk4ftNMXgM5xtZz+tVLz5s91qR0MqcdzwTGTJ7utVygiGmS4/3EfR/duRQ==",
"dependencies": [
"@pixi/display"
]
},
"@pixi/mixin-get-global-position@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2": {
"integrity": "sha512-LcsahbVdX4DFS2IcGfNp4KaXuu7SjAwUp/flZSGIfstyKOKb5FWFgihtqcc9ZT4coyri3gs2JbILZub/zPZj1w==",
"dependencies": [
"@pixi/core",
"@pixi/display"
]
},
"@pixi/particle-container@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2_@pixi+sprite@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2": {
"integrity": "sha512-B78Qq86kt0lEa5WtB2YFIm3+PjhKfw9La9R++GBSgABl+g13s2UaZ6BIPxvY3JxWMdxPm4iPrQPFX1QWRN68mw==",
"dependencies": [
"@pixi/core",
"@pixi/display",
"@pixi/sprite"
]
},
"@pixi/prepare@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2_@pixi+graphics@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2_@pixi+text@7.4.2__@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+sprite@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2": {
"integrity": "sha512-PugyMzReCHXUzc3so9PPJj2OdHwibpUNWyqG4mWY2UUkb6c8NAGK1AnAPiscOvLilJcv/XQSFoNhX+N1jrvJEg==",
"dependencies": [
"@pixi/core",
"@pixi/display",
"@pixi/graphics",
"@pixi/text"
]
},
"@pixi/react@7.1.2_@babel+runtime@7.26.9_@pixi+app@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+constants@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2_@pixi+extensions@7.4.2_@pixi+graphics@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2_@pixi+math@7.4.2_@pixi+mesh@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+mesh-extras@7.4.2__@pixi+core@7.4.2__@pixi+mesh@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+particle-container@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2_@pixi+sprite@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+sprite-animated@7.4.2__@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+sprite-tiling@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2_@pixi+text@7.4.2__@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+text-bitmap@7.4.2__@pixi+assets@7.4.2___@pixi+core@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2__@pixi+mesh@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2__@pixi+text@7.4.2___@pixi+core@7.4.2___@pixi+sprite@7.4.2____@pixi+core@7.4.2____@pixi+display@7.4.2_____@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2_@pixi+ticker@7.4.2_prop-types@15.8.1_react@18.3.1_react-dom@18.3.1__react@18.3.1": {
"integrity": "sha512-ZhqeXcFCRfFYCvncGW6Bxc3PFCYN1PgpF60iZwQJA6/UD3DB70JQvtDkRnyQcy5yqsjNtdxS8HB42oNjQFnZrA==",
"dependencies": [
"@babel/runtime",
"@pixi/app",
"@pixi/constants",
"@pixi/core",
"@pixi/display",
"@pixi/extensions",
"@pixi/graphics",
"@pixi/math",
"@pixi/mesh",
"@pixi/mesh-extras",
"@pixi/particle-container",
"@pixi/sprite",
"@pixi/sprite-animated",
"@pixi/sprite-tiling",
"@pixi/text",
"@pixi/text-bitmap",
"@pixi/ticker",
"lodash.isnil",
"lodash.times",
"performance-now",
"prop-types",
"react",
"react-dom"
]
},
"@pixi/runner@7.4.2": {
"integrity": "sha512-LPBpwym4vdyyDY5ucF4INQccaGyxztERyLTY1YN6aqJyyMmnc7iqXlIKt+a0euMBtNoLoxy6MWMvIuZj0JfFPA=="
},
"@pixi/settings@7.4.2": {
"integrity": "sha512-pMN+L6aWgvUbwhFIL/BTHKe2ShYGPZ8h9wlVBnFHMtUcJcFLMF1B3lzuvCayZRepOphs6RY0TqvnDvVb585JhQ==",
"dependencies": [
"@pixi/constants",
"@types/css-font-loading-module",
"ismobilejs"
]
},
"@pixi/sprite-animated@7.4.2_@pixi+core@7.4.2_@pixi+sprite@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2": {
"integrity": "sha512-QPT6yxCUGOBN+98H3pyIZ1ZO6Y7BN1o0Q2IMZEsD1rNfZJrTYS3Q8VlCG5t2YlFlcB8j5iBo24bZb6FUxLOmsQ==",
"dependencies": [
"@pixi/core",
"@pixi/sprite"
]
},
"@pixi/sprite-tiling@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2_@pixi+sprite@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2": {
"integrity": "sha512-Z8PP6ewy3nuDYL+NeEdltHAhuucVgia33uzAitvH3OqqRSx6a6YRBFbNLUM9Sx+fBO2Lk3PpV1g6QZX+NE5LOg==",
"dependencies": [
"@pixi/core",
"@pixi/display",
"@pixi/sprite"
]
},
"@pixi/sprite@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2": {
"integrity": "sha512-Ccf/OVQsB+HQV0Fyf5lwD+jk1jeU7uSIqEjbxenNNssmEdB7S5qlkTBV2EJTHT83+T6Z9OMOHsreJZerydpjeg==",
"dependencies": [
"@pixi/core",
"@pixi/display"
]
},
"@pixi/spritesheet@7.4.2_@pixi+assets@7.4.2__@pixi+core@7.4.2_@pixi+core@7.4.2": {
"integrity": "sha512-YIvHdpXW+AYp8vD0NkjJmrdnVHTZKidCnx6k8ATSuuvCT6O5Tuh2N/Ul2oDj4/QaePy0lVhyhAbZpJW00Jr7mQ==",
"dependencies": [
"@pixi/assets",
"@pixi/core"
]
},
"@pixi/text-bitmap@7.4.2_@pixi+assets@7.4.2__@pixi+core@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2_@pixi+mesh@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+text@7.4.2__@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+sprite@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2": {
"integrity": "sha512-lPBMJ83JnpFVL+6ckQ8KO8QmwdPm0z9Zs/M0NgFKH2F+BcjelRNnk80NI3O0qBDYSEDQIE+cFbKoZ213kf7zwA==",
"dependencies": [
"@pixi/assets",
"@pixi/core",
"@pixi/display",
"@pixi/mesh",
"@pixi/text"
]
},
"@pixi/text-html@7.4.2_@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2_@pixi+sprite@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+text@7.4.2__@pixi+core@7.4.2__@pixi+sprite@7.4.2___@pixi+core@7.4.2___@pixi+display@7.4.2____@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2": {
"integrity": "sha512-duOu8oDYeDNuyPozj2DAsQ5VZBbRiwIXy78Gn7H2pCiEAefw/Uv5jJYwdgneKME0e1tOxz1eOUGKPcI6IJnZjw==",
"dependencies": [
"@pixi/core",
"@pixi/display",
"@pixi/sprite",
"@pixi/text"
]
},
"@pixi/text@7.4.2_@pixi+core@7.4.2_@pixi+sprite@7.4.2__@pixi+core@7.4.2__@pixi+display@7.4.2___@pixi+core@7.4.2_@pixi+display@7.4.2__@pixi+core@7.4.2": {
"integrity": "sha512-rZZWpJNsIQ8WoCWrcVg8Gi6L/PDakB941clo6dO3XjoII2ucoOUcnpe5HIkudxi2xPvS/8Bfq990gFEx50TP5A==",
"dependencies": [
"@pixi/core",
"@pixi/sprite"
]
},
"@pixi/ticker@7.4.2": {
"integrity": "sha512-cAvxCh/KI6IW4m3tp2b+GQIf+DoSj9NNmPJmsOeEJ7LzvruG8Ps7SKI6CdjQob5WbceL1apBTDbqZ/f77hFDiQ==",
"dependencies": [
"@pixi/extensions",
"@pixi/settings",
"@pixi/utils"
]
},
"@pixi/utils@7.4.2": {
"integrity": "sha512-aU/itcyMC4TxFbmdngmak6ey4kC5c16Y5ntIYob9QnjNAfD/7GTsYIBnP6FqEAyO1eq0MjkAALxdONuay1BG3g==",
"dependencies": [
"@pixi/color",
"@pixi/constants",
"@pixi/settings",
"@types/earcut",
"earcut",
"eventemitter3",
"url"
]
},
"@pkgjs/parseargs@0.11.0": {
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="
},
"@rtsao/scc@1.1.0": {
"integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g=="
},
"@rushstack/eslint-patch@1.10.5": {
"integrity": "sha512-kkKUDVlII2DQiKy7UstOR1ErJP8kUKAQ4oa+SQtM0K+lPdmmjj0YnnxBgtTVYH7mUKtbsxeFC9y0AmK7Yb78/A=="
},
"@swc/counter@0.1.3": {
"integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="
},
"@swc/helpers@0.5.5": {
"integrity": "sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==",
"dependencies": [
"@swc/counter",
"tslib@2.8.1"
]
},
"@types/css-font-loading-module@0.0.12": {
"integrity": "sha512-x2tZZYkSxXqWvTDgveSynfjq/T2HyiZHXb00j/+gy19yp70PHCizM48XFdjBCWH7eHBD0R5i/pw9yMBP/BH5uA=="
},
"@types/debug@4.1.12": {
"integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
"dependencies": [
"@types/ms"
]
},
"@types/earcut@2.1.4": {
"integrity": "sha512-qp3m9PPz4gULB9MhjGID7wpo3gJ4bTGXm7ltNDsmOvsPduTeHp8wSW9YckBj3mljeOh4F0m2z/0JKAALRKbmLQ=="
},
"@types/estree-jsx@1.0.5": {
"integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
"dependencies": [
"@types/estree"
]
},
"@types/estree@1.0.6": {
"integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw=="
},
"@types/hast@3.0.4": {
"integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==",
"dependencies": [
"@types/unist@3.0.3"
]
},
"@types/json5@0.0.29": {
"integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
},
"@types/mdast@4.0.4": {
"integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
"dependencies": [
"@types/unist@3.0.3"
]
},
"@types/ms@2.1.0": {
"integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA=="
},
"@types/node@20.17.19": {
"integrity": "sha512-LEwC7o1ifqg/6r2gn9Dns0f1rhK+fPFDoMiceTJ6kWmVk6bgXBI/9IOWfVan4WiAavK9pIVWdX0/e3J+eEUh5A==",
"dependencies": [
"undici-types"
]
},
"@types/prop-types@15.7.14": {
"integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ=="
},
"@types/react-dom@18.3.5_@types+react@18.3.18": {
"integrity": "sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==",
"dependencies": [
"@types/react"
]
},
"@types/react@18.3.18": {
"integrity": "sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==",
"dependencies": [
"@types/prop-types",
"csstype"
]
},
"@types/unist@2.0.11": {
"integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA=="
},
"@types/unist@3.0.3": {
"integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q=="
},
"@typescript-eslint/eslint-plugin@8.24.1_@typescript-eslint+parser@8.24.1__eslint@8.57.1__typescript@5.7.3_eslint@8.57.1_typescript@5.7.3": {
"integrity": "sha512-ll1StnKtBigWIGqvYDVuDmXJHVH4zLVot1yQ4fJtLpL7qacwkxJc1T0bptqw+miBQ/QfUbhl1TcQ4accW5KUyA==",
"dependencies": [
"@eslint-community/regexpp",
"@typescript-eslint/parser",
"@typescript-eslint/scope-manager",
"@typescript-eslint/type-utils",
"@typescript-eslint/utils",
"@typescript-eslint/visitor-keys",
"eslint",
"graphemer",
"ignore",
"natural-compare",
"ts-api-utils",
"typescript"
]
},
"@typescript-eslint/parser@8.24.1_eslint@8.57.1_typescript@5.7.3": {
"integrity": "sha512-Tqoa05bu+t5s8CTZFaGpCH2ub3QeT9YDkXbPd3uQ4SfsLoh1/vv2GEYAioPoxCWJJNsenXlC88tRjwoHNts1oQ==",
"dependencies": [
"@typescript-eslint/scope-manager",
"@typescript-eslint/types",
"@typescript-eslint/typescript-estree",
"@typescript-eslint/visitor-keys",
"debug@4.4.0",
"eslint",
"typescript"
]
},
"@typescript-eslint/scope-manager@8.24.1": {
"integrity": "sha512-OdQr6BNBzwRjNEXMQyaGyZzgg7wzjYKfX2ZBV3E04hUCBDv3GQCHiz9RpqdUIiVrMgJGkXm3tcEh4vFSHreS2Q==",
"dependencies": [
"@typescript-eslint/types",
"@typescript-eslint/visitor-keys"
]
},
"@typescript-eslint/type-utils@8.24.1_eslint@8.57.1_typescript@5.7.3": {
"integrity": "sha512-/Do9fmNgCsQ+K4rCz0STI7lYB4phTtEXqqCAs3gZW0pnK7lWNkvWd5iW545GSmApm4AzmQXmSqXPO565B4WVrw==",
"dependencies": [
"@typescript-eslint/typescript-estree",
"@typescript-eslint/utils",
"debug@4.4.0",
"eslint",
"ts-api-utils",
"typescript"
]
},
"@typescript-eslint/types@8.24.1": {
"integrity": "sha512-9kqJ+2DkUXiuhoiYIUvIYjGcwle8pcPpdlfkemGvTObzgmYfJ5d0Qm6jwb4NBXP9W1I5tss0VIAnWFumz3mC5A=="
},
"@typescript-eslint/typescript-estree@8.24.1_typescript@5.7.3": {
"integrity": "sha512-UPyy4MJ/0RE648DSKQe9g0VDSehPINiejjA6ElqnFaFIhI6ZEiZAkUI0D5MCk0bQcTf/LVqZStvQ6K4lPn/BRg==",
"dependencies": [
"@typescript-eslint/types",
"@typescript-eslint/visitor-keys",
"debug@4.4.0",
"fast-glob",
"is-glob",
"minimatch@9.0.5",
"semver@7.7.1",
"ts-api-utils",
"typescript"
]
},
"@typescript-eslint/utils@8.24.1_eslint@8.57.1_typescript@5.7.3": {
"integrity": "sha512-OOcg3PMMQx9EXspId5iktsI3eMaXVwlhC8BvNnX6B5w9a4dVgpkQZuU8Hy67TolKcl+iFWq0XX+jbDGN4xWxjQ==",
"dependencies": [
"@eslint-community/eslint-utils",
"@typescript-eslint/scope-manager",
"@typescript-eslint/types",
"@typescript-eslint/typescript-estree",
"eslint",
"typescript"
]
},
"@typescript-eslint/visitor-keys@8.24.1": {
"integrity": "sha512-EwVHlp5l+2vp8CoqJm9KikPZgi3gbdZAtabKT9KPShGeOcJhsv4Zdo3oc8T8I0uKEmYoU4ItyxbptjF08enaxg==",
"dependencies": [
"@typescript-eslint/types",
"eslint-visitor-keys@4.2.0"
]
},
"@ungap/structured-clone@1.3.0": {
"integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g=="
},
"acorn-jsx@5.3.2_acorn@8.14.0": {
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
"dependencies": [
"acorn"
]
},
"acorn@8.14.0": {
"integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA=="
},
"ajv@6.12.6": {
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dependencies": [
"fast-deep-equal",
"fast-json-stable-stringify",
"json-schema-traverse",
"uri-js"
]
},
"ansi-regex@5.0.1": {
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
},
"ansi-regex@6.1.0": {
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA=="
},
"ansi-styles@4.3.0": {
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dependencies": [
"color-convert"
]
},
"ansi-styles@6.2.1": {
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="
},
"any-promise@1.3.0": {
"integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="
},
"anymatch@3.1.3": {
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
"dependencies": [
"normalize-path",
"picomatch@2.3.1"
]
},
"arg@5.0.2": {
"integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="
},
"argparse@2.0.1": {
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
},
"aria-query@5.3.2": {
"integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw=="
},
"array-buffer-byte-length@1.0.2": {
"integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==",
"dependencies": [
"call-bound",
"is-array-buffer"
]
},
"array-includes@3.1.8": {
"integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==",
"dependencies": [
"call-bind",
"define-properties",
"es-abstract",
"es-object-atoms",
"get-intrinsic",
"is-string"
]
},
"array.prototype.findlast@1.2.5": {
"integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==",
"dependencies": [
"call-bind",
"define-properties",
"es-abstract",
"es-errors",
"es-object-atoms",
"es-shim-unscopables"
]
},
"array.prototype.findlastindex@1.2.5": {
"integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==",
"dependencies": [
"call-bind",
"define-properties",
"es-abstract",
"es-errors",
"es-object-atoms",
"es-shim-unscopables"
]
},
"array.prototype.flat@1.3.3": {
"integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==",
"dependencies": [
"call-bind",
"define-properties",
"es-abstract",
"es-shim-unscopables"
]
},
"array.prototype.flatmap@1.3.3": {
"integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==",
"dependencies": [
"call-bind",
"define-properties",
"es-abstract",
"es-shim-unscopables"
]
},
"array.prototype.tosorted@1.1.4": {
"integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==",
"dependencies": [
"call-bind",
"define-properties",
"es-abstract",
"es-errors",
"es-shim-unscopables"
]
},
"arraybuffer.prototype.slice@1.0.4": {
"integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==",
"dependencies": [
"array-buffer-byte-length",
"call-bind",
"define-properties",
"es-abstract",
"es-errors",
"get-intrinsic",
"is-array-buffer"
]
},
"ast-types-flow@0.0.8": {
"integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ=="
},
"async-function@1.0.0": {
"integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA=="
},
"available-typed-arrays@1.0.7": {
"integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
"dependencies": [
"possible-typed-array-names"
]
},
"axe-core@4.10.2": {
"integrity": "sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w=="
},
"axobject-query@4.1.0": {
"integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ=="
},
"bail@2.0.2": {
"integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw=="
},
"balanced-match@1.0.2": {
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
"base64-js@1.5.1": {
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
},
"binary-extensions@2.3.0": {
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw=="
},
"bl@4.1.0": {
"integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
"dependencies": [
"buffer",
"inherits",
"readable-stream"
]
},
"brace-expansion@1.1.11": {
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"dependencies": [
"balanced-match",
"concat-map"
]
},
"brace-expansion@2.0.1": {
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"dependencies": [
"balanced-match"
]
},
"braces@3.0.3": {
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
"dependencies": [
"fill-range"
]
},
"buffer@5.7.1": {
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
"dependencies": [
"base64-js",
"ieee754"
]
},
"busboy@1.6.0": {
"integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
"dependencies": [
"streamsearch"
]
},
"call-bind-apply-helpers@1.0.2": {
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
"dependencies": [
"es-errors",
"function-bind"
]
},
"call-bind@1.0.8": {
"integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
"dependencies": [
"call-bind-apply-helpers",
"es-define-property",
"get-intrinsic",
"set-function-length"
]
},
"call-bound@1.0.3": {
"integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==",
"dependencies": [
"call-bind-apply-helpers",
"get-intrinsic"
]
},
"callsites@3.1.0": {
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
},
"camelcase-css@2.0.1": {
"integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA=="
},
"caniuse-lite@1.0.30001700": {
"integrity": "sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ=="
},
"canvas@3.1.0": {
"integrity": "sha512-tTj3CqqukVJ9NgSahykNwtGda7V33VLObwrHfzT0vqJXu7J4d4C/7kQQW3fOEGDfZZoILPut5H00gOjyttPGyg==",
"dependencies": [
"node-addon-api",
"prebuild-install"
]
},
"ccount@2.0.1": {
"integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="
},
"chalk@4.1.2": {
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dependencies": [
"ansi-styles@4.3.0",
"supports-color"
]
},
"character-entities-html4@2.1.0": {
"integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA=="
},
"character-entities-legacy@3.0.0": {
"integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ=="
},
"character-entities@2.0.2": {