-
Notifications
You must be signed in to change notification settings - Fork 18
/
tsconfig.tsbuildinfo
7144 lines (7144 loc) · 406 KB
/
tsconfig.tsbuildinfo
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
{
"program": {
"fileInfos": {
"./node_modules/typescript/lib/lib.es5.d.ts": {
"version": "c9a1f03d6ba0fe3c871eb0dd81622e78fbb61ade70878b34d48a341a690c59e9",
"signature": "c9a1f03d6ba0fe3c871eb0dd81622e78fbb61ade70878b34d48a341a690c59e9",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.d.ts": {
"version": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
"signature": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
"affectsGlobalScope": false
},
"./node_modules/typescript/lib/lib.es2016.d.ts": {
"version": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
"signature": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
"affectsGlobalScope": false
},
"./node_modules/typescript/lib/lib.es2017.d.ts": {
"version": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
"signature": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
"affectsGlobalScope": false
},
"./node_modules/typescript/lib/lib.dom.d.ts": {
"version": "38130cdd16bd2318b9362f9d60dd9670f7e38708bb6131cf11fc78a41b2c34a0",
"signature": "38130cdd16bd2318b9362f9d60dd9670f7e38708bb6131cf11fc78a41b2c34a0",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.dom.iterable.d.ts": {
"version": "fb0c09b697dc42afa84d1587e3c994a2f554d2a45635e4f0618768d16a86b69a",
"signature": "fb0c09b697dc42afa84d1587e3c994a2f554d2a45635e4f0618768d16a86b69a",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.webworker.importscripts.d.ts": {
"version": "7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481",
"signature": "7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.scripthost.d.ts": {
"version": "097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd",
"signature": "097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.core.d.ts": {
"version": "46ee15e9fefa913333b61eaf6b18885900b139867d89832a515059b62cf16a17",
"signature": "46ee15e9fefa913333b61eaf6b18885900b139867d89832a515059b62cf16a17",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.collection.d.ts": {
"version": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
"signature": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.generator.d.ts": {
"version": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
"signature": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.iterable.d.ts": {
"version": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf",
"signature": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.promise.d.ts": {
"version": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4",
"signature": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
"version": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315",
"signature": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
"version": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
"signature": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.symbol.d.ts": {
"version": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
"signature": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": {
"version": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce",
"signature": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2016.array.include.d.ts": {
"version": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
"signature": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.object.d.ts": {
"version": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
"signature": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": {
"version": "b5e4c2d67aa844ed503b29cd4ca2ede1a229ac7fe874613b2c996fa9c581a25f",
"signature": "b5e4c2d67aa844ed503b29cd4ca2ede1a229ac7fe874613b2c996fa9c581a25f",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.string.d.ts": {
"version": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
"signature": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.intl.d.ts": {
"version": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
"signature": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": {
"version": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
"signature": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.full.d.ts": {
"version": "d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed",
"signature": "d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/json.d.ts": {
"version": "44a4b5ef53f2ff94bfcfa223e3fc3ad35f32bef57337e050513dd7c729a0cb63",
"signature": "44a4b5ef53f2ff94bfcfa223e3fc3ad35f32bef57337e050513dd7c729a0cb63",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/mime.d.ts": {
"version": "47dbb9212d0f309e56914de06038a91ad4f0ce9e28a200ebe7c8268bada8fede",
"signature": "47dbb9212d0f309e56914de06038a91ad4f0ce9e28a200ebe7c8268bada8fede",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/promise.d.ts": {
"version": "a57ee34edf8791c8c4395ada1fb459df7aad714838555ab306729b66db795840",
"signature": "a57ee34edf8791c8c4395ada1fb459df7aad714838555ab306729b66db795840",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/token.d.ts": {
"version": "facc62a0c8748f37d6c85d3e5a6eb4cd1d40a899d4ee2c360c9ec4756513931c",
"signature": "facc62a0c8748f37d6c85d3e5a6eb4cd1d40a899d4ee2c360c9ec4756513931c",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/index.common.d.ts": {
"version": "d59884537fee2053545586c2ea66e27ae54fa0e59e9fec4ef58b9bb3eb3a676c",
"signature": "d59884537fee2053545586c2ea66e27ae54fa0e59e9fec4ef58b9bb3eb3a676c",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/random.d.ts": {
"version": "f58caa451ccf0cdc2834698380fa13f964033178d0cb73cce5d2fd2ba0cfbade",
"signature": "f58caa451ccf0cdc2834698380fa13f964033178d0cb73cce5d2fd2ba0cfbade",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/random.browser.d.ts": {
"version": "42b37508de20026ecfb53ad4293a3fb1d5ceac85d03f4d831c999db3f2d942cc",
"signature": "42b37508de20026ecfb53ad4293a3fb1d5ceac85d03f4d831c999db3f2d942cc",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/uuid.browser.d.ts": {
"version": "6bb2babdac69f5089b8e5d645977aa18301e6c9ddd8e80fdd5996149235ffe35",
"signature": "6bb2babdac69f5089b8e5d645977aa18301e6c9ddd8e80fdd5996149235ffe35",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/index.d.ts": {
"version": "741e32002f767357ff950d74855ea336e51409738f861e6d5a163cd4b0450bd2",
"signature": "741e32002f767357ff950d74855ea336e51409738f861e6d5a163cd4b0450bd2",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/config/index.d.ts": {
"version": "41bd5decb99be607b760e0fcec9bccb318b0db4e32fa4771d07fdeffca120552",
"signature": "41bd5decb99be607b760e0fcec9bccb318b0db4e32fa4771d07fdeffca120552",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/array.d.ts": {
"version": "df52f40fae2bd287b9fb52f0d4cd6978891f5b9e12c8bc4b51f5aeb20673db24",
"signature": "df52f40fae2bd287b9fb52f0d4cd6978891f5b9e12c8bc4b51f5aeb20673db24",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/iter.d.ts": {
"version": "95a373d620cf8adb5baa4d4f18c0880d9279761d742075693b64dcfe25d93249",
"signature": "95a373d620cf8adb5baa4d4f18c0880d9279761d742075693b64dcfe25d93249",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/chain.d.ts": {
"version": "59c71ace3907b7558202ab9fb0fc29d0f000455e6addb8891476ea6f29704fb0",
"signature": "59c71ace3907b7558202ab9fb0fc29d0f000455e6addb8891476ea6f29704fb0",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/empty.d.ts": {
"version": "ac222059167c12b97693a32458d469428079921ef2e21a41370e192f679559a4",
"signature": "ac222059167c12b97693a32458d469428079921ef2e21a41370e192f679559a4",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/enumerate.d.ts": {
"version": "49fa72b3dd09f2d8cfa8538f3aba53644e90a99866c486a1e535f6e45a809019",
"signature": "49fa72b3dd09f2d8cfa8538f3aba53644e90a99866c486a1e535f6e45a809019",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/filter.d.ts": {
"version": "4bd953ab46129d1a06fc848cc1e04f69d003cba1010839ae5f11d9a8ecc1b45c",
"signature": "4bd953ab46129d1a06fc848cc1e04f69d003cba1010839ae5f11d9a8ecc1b45c",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/find.d.ts": {
"version": "985be8579445c37fccc690db36529d9197abac484b76e2374845eda82fc134be",
"signature": "985be8579445c37fccc690db36529d9197abac484b76e2374845eda82fc134be",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/map.d.ts": {
"version": "778e780516d0cfa36e160dcdbc2cc64193fb13853c4019bafeb2adc39d4b6f95",
"signature": "778e780516d0cfa36e160dcdbc2cc64193fb13853c4019bafeb2adc39d4b6f95",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/range.d.ts": {
"version": "61821a4dfe8525bb4082648600ecd1f945698fb65a0bbf4fa2b6e160751fe5e1",
"signature": "61821a4dfe8525bb4082648600ecd1f945698fb65a0bbf4fa2b6e160751fe5e1",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/reduce.d.ts": {
"version": "6f2192fe22e5aed3e61ae7891921feb8601bfa101161c7b522965d709210cc41",
"signature": "6f2192fe22e5aed3e61ae7891921feb8601bfa101161c7b522965d709210cc41",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/repeat.d.ts": {
"version": "39effd6ab75c733dd48cbe43a91658cec9cf86db5a961d3b091d8194b7e7b573",
"signature": "39effd6ab75c733dd48cbe43a91658cec9cf86db5a961d3b091d8194b7e7b573",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/retro.d.ts": {
"version": "431207ccbae58b4046cba4a5956beeea69a151defc993bcba16b357cbc8871e7",
"signature": "431207ccbae58b4046cba4a5956beeea69a151defc993bcba16b357cbc8871e7",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/sort.d.ts": {
"version": "2053f012d9d8edaeb4b66bb65120888dd342be84316cc7b85e78cae9ceade349",
"signature": "2053f012d9d8edaeb4b66bb65120888dd342be84316cc7b85e78cae9ceade349",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/stride.d.ts": {
"version": "bcfae0d75f0dd13b0d0bd6bb6a1a527076f23d48335a1530211d4926556edf4d",
"signature": "bcfae0d75f0dd13b0d0bd6bb6a1a527076f23d48335a1530211d4926556edf4d",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/string.d.ts": {
"version": "b8186710d384b0b58f9ac2e8e9e4a8cf6385718fd47f12adfca9e163def1fa5e",
"signature": "b8186710d384b0b58f9ac2e8e9e4a8cf6385718fd47f12adfca9e163def1fa5e",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/take.d.ts": {
"version": "2e55931399ada20784a0903627d3e7cac14e6849ef7e589f32907ed733160af0",
"signature": "2e55931399ada20784a0903627d3e7cac14e6849ef7e589f32907ed733160af0",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/zip.d.ts": {
"version": "425744ecce376e0c201eb15a24df23c20b9f9222c25501a64147191255f1a5bb",
"signature": "425744ecce376e0c201eb15a24df23c20b9f9222c25501a64147191255f1a5bb",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/index.d.ts": {
"version": "d9700500170f5138bbb3b59ede0d2303486b24826a19dd242eaaa667a3735b63",
"signature": "d9700500170f5138bbb3b59ede0d2303486b24826a19dd242eaaa667a3735b63",
"affectsGlobalScope": false
},
"./node_modules/@lumino/signaling/types/index.d.ts": {
"version": "c0eef34070d526837db630849e57c75136ddbaef7e58e06f935b3648d94471b7",
"signature": "c0eef34070d526837db630849e57c75136ddbaef7e58e06f935b3648d94471b7",
"affectsGlobalScope": false
},
"./node_modules/@lumino/disposable/types/index.d.ts": {
"version": "80a29bdb045c8403249b0df81e2c660139556735e363b9228b9e6ed731576cfe",
"signature": "80a29bdb045c8403249b0df81e2c660139556735e363b9228b9e6ed731576cfe",
"affectsGlobalScope": false
},
"./node_modules/@lumino/messaging/types/index.d.ts": {
"version": "cac40d24651330bd29ebcf835dc9014a8d9ce02219503fb1dd880ffd27d71b3b",
"signature": "cac40d24651330bd29ebcf835dc9014a8d9ce02219503fb1dd880ffd27d71b3b",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/observables/lib/observablemap.d.ts": {
"version": "f4b2304c8d9dd3ddb3d614dd8bc4c26f5fdb1dc9e4a0ab0a2df2fdc4d5d859e4",
"signature": "f4b2304c8d9dd3ddb3d614dd8bc4c26f5fdb1dc9e4a0ab0a2df2fdc4d5d859e4",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/observables/lib/observablejson.d.ts": {
"version": "e330139099ebcf6830ae396ff59e59e09ae0f6b56ebdc9205609e66843d7e3ef",
"signature": "e330139099ebcf6830ae396ff59e59e09ae0f6b56ebdc9205609e66843d7e3ef",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/observables/lib/observablestring.d.ts": {
"version": "f3c6769aeebc6890c190aa33831461a7d7d0d59ae1474555594dc480af6a4a5b",
"signature": "f3c6769aeebc6890c190aa33831461a7d7d0d59ae1474555594dc480af6a4a5b",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/observables/lib/observablelist.d.ts": {
"version": "04112734ad3a86529f9c78ba774e2999caafdf446c0d987304ac4eb65807902a",
"signature": "04112734ad3a86529f9c78ba774e2999caafdf446c0d987304ac4eb65807902a",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/observables/lib/undoablelist.d.ts": {
"version": "17b1e1fc5d431f6380ab9ae528d4c3fa648bcfbe5cd49e9061c7779fc3095f7f",
"signature": "17b1e1fc5d431f6380ab9ae528d4c3fa648bcfbe5cd49e9061c7779fc3095f7f",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/observables/lib/modeldb.d.ts": {
"version": "14b8b314fea37db11061f1dc67aa9877a925e2fbf8c11213d547cdb8cf164ed1",
"signature": "14b8b314fea37db11061f1dc67aa9877a925e2fbf8c11213d547cdb8cf164ed1",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/observables/lib/index.d.ts": {
"version": "ce0d82d3a839e026518bee8d357cce5ec6396010314ebd7176bf3486e6eb0730",
"signature": "ce0d82d3a839e026518bee8d357cce5ec6396010314ebd7176bf3486e6eb0730",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/contents/index.d.ts": {
"version": "fdd25846f3054fa2d14f909a4d0b859f69639dee1be9b845f886c5b03eaa4dbf",
"signature": "fdd25846f3054fa2d14f909a4d0b859f69639dee1be9b845f886c5b03eaa4dbf",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/nbformat/lib/index.d.ts": {
"version": "2ffb6539ee354e561c489603b226ad7f484aa1e8920eda91d3d0d1e46f7d3872",
"signature": "2ffb6539ee354e561c489603b226ad7f484aa1e8920eda91d3d0d1e46f7d3872",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernel/messages.d.ts": {
"version": "9509676d5f597f0fae0bd56b2cc7699e48e07ecdcb9dd9a5a4131269403aca3f",
"signature": "9509676d5f597f0fae0bd56b2cc7699e48e07ecdcb9dd9a5a4131269403aca3f",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/serverconnection.d.ts": {
"version": "090c14cd80bfa4ee3709139dafa5df319eda501736d465a41c822346f564331b",
"signature": "090c14cd80bfa4ee3709139dafa5df319eda501736d465a41c822346f564331b",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/basemanager.d.ts": {
"version": "ed186aff8f5899e1c5bc14ccff9c892a6e701d6aee339e38e10ae76d8d0f60fe",
"signature": "ed186aff8f5899e1c5bc14ccff9c892a6e701d6aee339e38e10ae76d8d0f60fe",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernelspec/restapi.d.ts": {
"version": "1e516b8aace99b3cfd896b1d52f51c8d7186fb721718007f2fd632d65caaa204",
"signature": "1e516b8aace99b3cfd896b1d52f51c8d7186fb721718007f2fd632d65caaa204",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernelspec/kernelspec.d.ts": {
"version": "e655ecf9defa4207f36029831d09487233b7cb3d0af1f22cdd39bbbcc89ed242",
"signature": "e655ecf9defa4207f36029831d09487233b7cb3d0af1f22cdd39bbbcc89ed242",
"affectsGlobalScope": false
},
"./node_modules/@lumino/polling/types/poll.d.ts": {
"version": "ce473f99dd39a6d3df6ccd27fa99482e4195d7c64c06d75d58eec9a272a421fe",
"signature": "ce473f99dd39a6d3df6ccd27fa99482e4195d7c64c06d75d58eec9a272a421fe",
"affectsGlobalScope": false
},
"./node_modules/@lumino/polling/types/ratelimiter.d.ts": {
"version": "71bf7f6fab1f1eee43ee6ac8007376b183404c876bc71bce3c6f28181da74ebf",
"signature": "71bf7f6fab1f1eee43ee6ac8007376b183404c876bc71bce3c6f28181da74ebf",
"affectsGlobalScope": false
},
"./node_modules/@lumino/polling/types/index.d.ts": {
"version": "86914f3fa143d10a02cb12b8350f7ed00f00261ea4f0a08864c24afa91d54563",
"signature": "86914f3fa143d10a02cb12b8350f7ed00f00261ea4f0a08864c24afa91d54563",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernelspec/manager.d.ts": {
"version": "5af5d2530e681dfea1ca7271eee7ede8d55eb4f0f8ae12cc7f02a87b50191b1d",
"signature": "5af5d2530e681dfea1ca7271eee7ede8d55eb4f0f8ae12cc7f02a87b50191b1d",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernelspec/index.d.ts": {
"version": "ee46549bb25b958e351bbfeb37b4a0fb42091b5d9e95233a25000a8abeedb688",
"signature": "ee46549bb25b958e351bbfeb37b4a0fb42091b5d9e95233a25000a8abeedb688",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernel/restapi.d.ts": {
"version": "97f86af95be712eff0916d4c2f579c1806b1f5725f380a6246e5903029d5a547",
"signature": "97f86af95be712eff0916d4c2f579c1806b1f5725f380a6246e5903029d5a547",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernel/kernel.d.ts": {
"version": "43110607422e1808f8df38b1763e3dd5b50956b9b476d198b17c83f5c9e3dc85",
"signature": "43110607422e1808f8df38b1763e3dd5b50956b9b476d198b17c83f5c9e3dc85",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernel/default.d.ts": {
"version": "b9d1caa53cd05516b6e6e043b863e572ec08f19beb04034981b5c40cdc3ea6e9",
"signature": "b9d1caa53cd05516b6e6e043b863e572ec08f19beb04034981b5c40cdc3ea6e9",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernel/manager.d.ts": {
"version": "64355cb023413b9f710306b65a083d3d70226c8f28e32bf866492a2c843ac641",
"signature": "64355cb023413b9f710306b65a083d3d70226c8f28e32bf866492a2c843ac641",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernel/index.d.ts": {
"version": "3094865bcd68e704ca0862d9ad1b6aa98b7ba23ac6e2f1667aabdfa520ab035a",
"signature": "3094865bcd68e704ca0862d9ad1b6aa98b7ba23ac6e2f1667aabdfa520ab035a",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/builder/index.d.ts": {
"version": "7c4ca33d63aba0dd458b26f777d76ec26467537eaa7f86c6676bef45e2deb36e",
"signature": "7c4ca33d63aba0dd458b26f777d76ec26467537eaa7f86c6676bef45e2deb36e",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/nbconvert/index.d.ts": {
"version": "e3d73207d0e9c210e4a9d133a929c474f870e9d23ff0075c7d2512a107e50a5e",
"signature": "e3d73207d0e9c210e4a9d133a929c474f870e9d23ff0075c7d2512a107e50a5e",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/activitymonitor.d.ts": {
"version": "b5575443873e492a09e84e53f65c37a24f5d291a306036f74fd34646ee9c14dd",
"signature": "b5575443873e492a09e84e53f65c37a24f5d291a306036f74fd34646ee9c14dd",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/interfaces.d.ts": {
"version": "e4591a005f34ccbbbec0bd140702e243387d57a21b1d4bb6bd3e76de152fc89f",
"signature": "e4591a005f34ccbbbec0bd140702e243387d57a21b1d4bb6bd3e76de152fc89f",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/markdowncodeblocks.d.ts": {
"version": "377fa33e5213ba934d4350d674296c1387aa2ebd225e2a296a465bb691915884",
"signature": "377fa33e5213ba934d4350d674296c1387aa2ebd225e2a296a465bb691915884",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/pageconfig.d.ts": {
"version": "8285079f41ab72940a3889e2fabd26c4fe9662783d3ce008213ee68c1f5bca06",
"signature": "8285079f41ab72940a3889e2fabd26c4fe9662783d3ce008213ee68c1f5bca06",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/path.d.ts": {
"version": "6baff3e4e3aca45d2879a6b26369316430f8756d85319898c64c69019036ab61",
"signature": "6baff3e4e3aca45d2879a6b26369316430f8756d85319898c64c69019036ab61",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/text.d.ts": {
"version": "7efd9303320cf186211b14e1723172a2bc15378c0d95e49990f31be5d2f271d4",
"signature": "7efd9303320cf186211b14e1723172a2bc15378c0d95e49990f31be5d2f271d4",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/time.d.ts": {
"version": "315dfd130e525ffa1934e769dc2266bafb35d021951a7845eb145089501ed86d",
"signature": "315dfd130e525ffa1934e769dc2266bafb35d021951a7845eb145089501ed86d",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/url.d.ts": {
"version": "99dda0cb4742feb2ea1339c6227119d47df6bc4ba8c886341c1fc879dfccb1d2",
"signature": "99dda0cb4742feb2ea1339c6227119d47df6bc4ba8c886341c1fc879dfccb1d2",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/index.d.ts": {
"version": "7a7fa32e403e381e681ef4984c9dc22adf0d32c1e4b7ad9fd5c6552412c855f0",
"signature": "7a7fa32e403e381e681ef4984c9dc22adf0d32c1e4b7ad9fd5c6552412c855f0",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/session/session.d.ts": {
"version": "f717135d66f061e058f704e91a8d8d72a61ea2fdeecc9265689452a81c494bdf",
"signature": "f717135d66f061e058f704e91a8d8d72a61ea2fdeecc9265689452a81c494bdf",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/session/restapi.d.ts": {
"version": "1e376fe94028a3e12ca8c3d2db097bb6f1c9de17a72f6e854e1d512bb1734adf",
"signature": "1e376fe94028a3e12ca8c3d2db097bb6f1c9de17a72f6e854e1d512bb1734adf",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/session/manager.d.ts": {
"version": "30e5c9e5ecd787438ad41ca8a487a77d6d571122c4eca365b24074eb2163964c",
"signature": "30e5c9e5ecd787438ad41ca8a487a77d6d571122c4eca365b24074eb2163964c",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/session/index.d.ts": {
"version": "0214c4398c638c72f77a78bc20c16fb8fab08d9cfe2bdfcd67f0baeafcc5b02b",
"signature": "0214c4398c638c72f77a78bc20c16fb8fab08d9cfe2bdfcd67f0baeafcc5b02b",
"affectsGlobalScope": false
},
"./node_modules/@lumino/virtualdom/types/index.d.ts": {
"version": "189b287ec7c821f61bf76d90a62575b048d0434c3baee8fc8dea6c30ebc35999",
"signature": "189b287ec7c821f61bf76d90a62575b048d0434c3baee8fc8dea6c30ebc35999",
"affectsGlobalScope": false
},
"./node_modules/@lumino/commands/types/index.d.ts": {
"version": "d16dac98c7c963f48faaa302b8d119a92b78b0d1d6f8ee80b2bc86626232d4bf",
"signature": "d16dac98c7c963f48faaa302b8d119a92b78b0d1d6f8ee80b2bc86626232d4bf",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/statedb/lib/interfaces.d.ts": {
"version": "9bfdb958a6b460d0c0c0f2781dece557cd20698820f0d4e644690dc23bc05cd9",
"signature": "9bfdb958a6b460d0c0c0f2781dece557cd20698820f0d4e644690dc23bc05cd9",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/statedb/lib/dataconnector.d.ts": {
"version": "bd969829f3805c917933ef812d4cabe2c045aff801859f2c5166eb8d56aea4eb",
"signature": "bd969829f3805c917933ef812d4cabe2c045aff801859f2c5166eb8d56aea4eb",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/statedb/lib/restorablepool.d.ts": {
"version": "4c21323d9575649908d578c403dac9a3f240e839c5e0f3a7422d6bdea0d596f8",
"signature": "4c21323d9575649908d578c403dac9a3f240e839c5e0f3a7422d6bdea0d596f8",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/statedb/lib/tokens.d.ts": {
"version": "d3ee87ecc46e36a9b361b0ad770cde8a06f5b973b7fea6d5aa7cb2b7cc56315c",
"signature": "d3ee87ecc46e36a9b361b0ad770cde8a06f5b973b7fea6d5aa7cb2b7cc56315c",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/statedb/lib/statedb.d.ts": {
"version": "f8c57de65d7a1c151041621bf9ed1cc3da20ffb5bd004182e4e04dbbaa21e41e",
"signature": "f8c57de65d7a1c151041621bf9ed1cc3da20ffb5bd004182e4e04dbbaa21e41e",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/statedb/lib/index.d.ts": {
"version": "cc935329b723e345e8118454fde946f73b69f40086589d11f25513137075720a",
"signature": "cc935329b723e345e8118454fde946f73b69f40086589d11f25513137075720a",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/settingregistry/lib/tokens.d.ts": {
"version": "e2a66577639a534585d79c8b241253e08b506f8aaadd746d935f03addc769b9e",
"signature": "e2a66577639a534585d79c8b241253e08b506f8aaadd746d935f03addc769b9e",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/settingregistry/lib/settingregistry.d.ts": {
"version": "8607bba0dc7671dff1d745b785601e7aeadbd338d93f6e70f0abaabcbadc4f2d",
"signature": "8607bba0dc7671dff1d745b785601e7aeadbd338d93f6e70f0abaabcbadc4f2d",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/settingregistry/lib/index.d.ts": {
"version": "178c7c98157f7910ea4e19771e26374ecfd552df7c35b1cda6cd9dcc03b32016",
"signature": "178c7c98157f7910ea4e19771e26374ecfd552df7c35b1cda6cd9dcc03b32016",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/setting/index.d.ts": {
"version": "3f60325f8360846557509a160b9211c90419c4325581b04d3bd6fbe8a0972f9e",
"signature": "3f60325f8360846557509a160b9211c90419c4325581b04d3bd6fbe8a0972f9e",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/terminal/restapi.d.ts": {
"version": "d5c7e6c16fe96673f6f1010d31c54beedc77f31542736c28f1fe87570f730d46",
"signature": "d5c7e6c16fe96673f6f1010d31c54beedc77f31542736c28f1fe87570f730d46",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/terminal/terminal.d.ts": {
"version": "00cec9a23ceedb1421bca6cc4b0c489d7d6fd98ee2e80c3d751cf4d9485aad65",
"signature": "00cec9a23ceedb1421bca6cc4b0c489d7d6fd98ee2e80c3d751cf4d9485aad65",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/terminal/manager.d.ts": {
"version": "2a6001828f9a4616c48a3cb019fe8cff22918990d67d11de4af7152417ee1623",
"signature": "2a6001828f9a4616c48a3cb019fe8cff22918990d67d11de4af7152417ee1623",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/terminal/index.d.ts": {
"version": "77a4cfb8baa8f9861178b8ff4de8409841b387cd73ea4e51e2beee758c2d818a",
"signature": "77a4cfb8baa8f9861178b8ff4de8409841b387cd73ea4e51e2beee758c2d818a",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/workspace/index.d.ts": {
"version": "11bb21614c3c792941e289fdc340489be2881f51198217894d510dde943544fa",
"signature": "11bb21614c3c792941e289fdc340489be2881f51198217894d510dde943544fa",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/manager.d.ts": {
"version": "fdbe60857d35ec916e210e581890f5387e885d0e73e8c6fb62052bad05362bb8",
"signature": "fdbe60857d35ec916e210e581890f5387e885d0e73e8c6fb62052bad05362bb8",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/index.d.ts": {
"version": "3a8bab6cc1bee98448c5869f0ae38ab59a0651b533fdd9118ff23e02bc27ac4c",
"signature": "3a8bab6cc1bee98448c5869f0ae38ab59a0651b533fdd9118ff23e02bc27ac4c",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/translation/lib/tokens.d.ts": {
"version": "c97410aab3860667c54e48ab4f751222911f8887202df5c11b61868009d4ff14",
"signature": "c97410aab3860667c54e48ab4f751222911f8887202df5c11b61868009d4ff14",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/translation/lib/base.d.ts": {
"version": "7e80cbd62318016cfedfd4ccb53f930b4abe7f4b6bc4673fd8ec44f9de6243e2",
"signature": "7e80cbd62318016cfedfd4ccb53f930b4abe7f4b6bc4673fd8ec44f9de6243e2",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/translation/lib/gettext.d.ts": {
"version": "ba9e2a7e215602ba81103f3f2c7cdb3457e48e1b8fb96dae3af9873e12821f40",
"signature": "ba9e2a7e215602ba81103f3f2c7cdb3457e48e1b8fb96dae3af9873e12821f40",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/translation/lib/manager.d.ts": {
"version": "e527ab52c64b2db062a12f22ec2050608b99b8b08cc5397fd869ae66bc441fdc",
"signature": "e527ab52c64b2db062a12f22ec2050608b99b8b08cc5397fd869ae66bc441fdc",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/translation/lib/server.d.ts": {
"version": "e2bfb86488150c78cea78c2b726a3bd81c9a2053a5d56916beed898d4dc7f5b5",
"signature": "e2bfb86488150c78cea78c2b726a3bd81c9a2053a5d56916beed898d4dc7f5b5",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/translation/lib/index.d.ts": {
"version": "c2d417bfcfb62ed2101db6175ea83f91b2656ada1397d4abaf8c7681c42fb534",
"signature": "c2d417bfcfb62ed2101db6175ea83f91b2656ada1397d4abaf8c7681c42fb534",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/application/lib/tokens.d.ts": {
"version": "4c8b8186eea5f23ac4f595a5bd4f0a90fa793614463839365ccd7494bc78c2e3",
"signature": "4c8b8186eea5f23ac4f595a5bd4f0a90fa793614463839365ccd7494bc78c2e3",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/application/lib/connectionlost.d.ts": {
"version": "4078af51a426601e46cedc694ee3d046b5a144397872dd3f245b9dddd204c8b4",
"signature": "4078af51a426601e46cedc694ee3d046b5a144397872dd3f245b9dddd204c8b4",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/clipboard.d.ts": {
"version": "b9a2b4d2c1040298a3940b1f904553904336c6618bd87aaefa9e170b0b9331e9",
"signature": "b9a2b4d2c1040298a3940b1f904553904336c6618bd87aaefa9e170b0b9331e9",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/title.d.ts": {
"version": "a4b91055eac6096b0d40a4981c4a993d3e259b1f009360880902e98eb5e028ea",
"signature": "a4b91055eac6096b0d40a4981c4a993d3e259b1f009360880902e98eb5e028ea",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/widget.d.ts": {
"version": "29476079a25eac3dd7aa7af3411cd675b6a446f7e56b9fb720a7f4c451b6cb8b",
"signature": "29476079a25eac3dd7aa7af3411cd675b6a446f7e56b9fb720a7f4c451b6cb8b",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/layout.d.ts": {
"version": "e28b6033949daa05a21c45ac3bf4db03d07e9da632a976224c57744c46bce08e",
"signature": "e28b6033949daa05a21c45ac3bf4db03d07e9da632a976224c57744c46bce08e",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/panellayout.d.ts": {
"version": "b6fe9902db09a08fb5816c2644d47b21b48763a6493d1f2080dcc8f97f63ffd5",
"signature": "b6fe9902db09a08fb5816c2644d47b21b48763a6493d1f2080dcc8f97f63ffd5",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/splitlayout.d.ts": {
"version": "92e8a3c3a8469d4afad78dbee2dd444ccbb8f96b87cba06a3c2b5480eb67c311",
"signature": "92e8a3c3a8469d4afad78dbee2dd444ccbb8f96b87cba06a3c2b5480eb67c311",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/accordionlayout.d.ts": {
"version": "0b2d7f6ab179f786acc2e52f0470e25ff5bb9c92bb625424f452e05b1111c059",
"signature": "0b2d7f6ab179f786acc2e52f0470e25ff5bb9c92bb625424f452e05b1111c059",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/panel.d.ts": {
"version": "4ea4e4aeb7cc473d641ec53cc7a05324ff1c528e452e1a0f5949a245911d4775",
"signature": "4ea4e4aeb7cc473d641ec53cc7a05324ff1c528e452e1a0f5949a245911d4775",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/splitpanel.d.ts": {
"version": "d29aaf721f4504024f0f55fed33190b289699b5664a4b312ba1e2aff6b7999ae",
"signature": "d29aaf721f4504024f0f55fed33190b289699b5664a4b312ba1e2aff6b7999ae",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/accordionpanel.d.ts": {
"version": "8bd26b19dd64568de284cc8a385915d1f8d2ba056d811e7ea43fa397914fed1a",
"signature": "8bd26b19dd64568de284cc8a385915d1f8d2ba056d811e7ea43fa397914fed1a",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/boxengine.d.ts": {
"version": "6ce99f2c6e7c79a0b467e93cc607909fdeea4075ac24b2ea26df81c756c91197",
"signature": "6ce99f2c6e7c79a0b467e93cc607909fdeea4075ac24b2ea26df81c756c91197",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/boxlayout.d.ts": {
"version": "b450cc3a4ab4ba2663144cb5d2bee1dad19437bb22008bf4cb6abf33ab93c394",
"signature": "b450cc3a4ab4ba2663144cb5d2bee1dad19437bb22008bf4cb6abf33ab93c394",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/boxpanel.d.ts": {
"version": "eb0acd32fc29c07e864c737a4811b71159e03833b36febb85f7e47259d87e135",
"signature": "eb0acd32fc29c07e864c737a4811b71159e03833b36febb85f7e47259d87e135",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/commandpalette.d.ts": {
"version": "1293b8f4930237c82f58861ca488f50a2537a88f94682440f9fd07223ccee56c",
"signature": "1293b8f4930237c82f58861ca488f50a2537a88f94682440f9fd07223ccee56c",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/menu.d.ts": {
"version": "6bbef46fbe0c945b2d21d1a085e6340785c2d1d7829dadd43282b72536c16613",
"signature": "6bbef46fbe0c945b2d21d1a085e6340785c2d1d7829dadd43282b72536c16613",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/contextmenu.d.ts": {
"version": "cfef3a852fed8d8e32682841735514dc19a614d2bb04e0de6a430e72a3130ac6",
"signature": "cfef3a852fed8d8e32682841735514dc19a614d2bb04e0de6a430e72a3130ac6",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/tabbar.d.ts": {
"version": "86475f81977dea0553ee4a4458a198daa34c514d7006be0ef5127d875de29bd2",
"signature": "86475f81977dea0553ee4a4458a198daa34c514d7006be0ef5127d875de29bd2",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/docklayout.d.ts": {
"version": "c2d6545069db68b471ce68ef45ed33327663dc9c832c0bee2a72cd360a08f7fe",
"signature": "c2d6545069db68b471ce68ef45ed33327663dc9c832c0bee2a72cd360a08f7fe",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/dockpanel.d.ts": {
"version": "1d4df0f49549c39bc09a70dc267f5d0022f4cab181750f4d50d61ee30edd5a07",
"signature": "1d4df0f49549c39bc09a70dc267f5d0022f4cab181750f4d50d61ee30edd5a07",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/focustracker.d.ts": {
"version": "b36ccfcfa507c9be4bc662468d708d9fadb87d6950583f60456799e2534eac1b",
"signature": "b36ccfcfa507c9be4bc662468d708d9fadb87d6950583f60456799e2534eac1b",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/gridlayout.d.ts": {
"version": "9d3fb450742b3f5c5f459177e70fa3c4c4ab52d0b4215be87cfcdf5fc8685ad2",
"signature": "9d3fb450742b3f5c5f459177e70fa3c4c4ab52d0b4215be87cfcdf5fc8685ad2",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/menubar.d.ts": {
"version": "5c5b9222589f8da73a81317a9c6ffa21c5adb74cfcf3db731031c83e35ce5444",
"signature": "5c5b9222589f8da73a81317a9c6ffa21c5adb74cfcf3db731031c83e35ce5444",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/scrollbar.d.ts": {
"version": "ff8fce615e42a7a40d34fd1110488663bc010469e7cd3d21df8ddda06f6ebd95",
"signature": "ff8fce615e42a7a40d34fd1110488663bc010469e7cd3d21df8ddda06f6ebd95",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/singletonlayout.d.ts": {
"version": "cb114e95d686eadc19feda14f7ae0c497fd060415cf669d4062447ef22b54e93",
"signature": "cb114e95d686eadc19feda14f7ae0c497fd060415cf669d4062447ef22b54e93",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/stackedlayout.d.ts": {
"version": "1fb371850fe099544d0a16b29f3627fe634e4ca2f1e4ac92c12f4481fb1395e5",
"signature": "1fb371850fe099544d0a16b29f3627fe634e4ca2f1e4ac92c12f4481fb1395e5",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/stackedpanel.d.ts": {
"version": "4f3efa9e1d11ad4670f1773324781831819064d702e85616b05534025e927a81",
"signature": "4f3efa9e1d11ad4670f1773324781831819064d702e85616b05534025e927a81",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/tabpanel.d.ts": {
"version": "c172f46cd9c655653f116d3707ef6c84aa3e924514685e78ac5dababe2986313",
"signature": "c172f46cd9c655653f116d3707ef6c84aa3e924514685e78ac5dababe2986313",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/index.d.ts": {
"version": "5f90fbeec75ffafa87e37f8e1caa1411174f0d89f24b0bb19970e18bb1dd3c0d",
"signature": "5f90fbeec75ffafa87e37f8e1caa1411174f0d89f24b0bb19970e18bb1dd3c0d",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/collapse.d.ts": {
"version": "147d833a2c635e5e69bcf63b33bbbd07fc47cd95d012d8199a132c8e63a78f05",
"signature": "147d833a2c635e5e69bcf63b33bbbd07fc47cd95d012d8199a132c8e63a78f05",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/commandlinker.d.ts": {
"version": "78f55430f6416c48a547522a56dc085b23955c7a2dfbb79865367ebfa3ac8f0a",
"signature": "78f55430f6416c48a547522a56dc085b23955c7a2dfbb79865367ebfa3ac8f0a",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/commandpalette.d.ts": {
"version": "b69b18f9708e8a2c5eea2898b2800a0e97085f1e5ce5a895dec59cab01040bb7",
"signature": "b69b18f9708e8a2c5eea2898b2800a0e97085f1e5ce5a895dec59cab01040bb7",
"affectsGlobalScope": false
},
"./node_modules/@types/react/global.d.ts": {
"version": "bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f",
"signature": "bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f",
"affectsGlobalScope": true
},
"./node_modules/csstype/index.d.ts": {
"version": "381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d",
"signature": "381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d",
"affectsGlobalScope": false
},
"./node_modules/@types/prop-types/index.d.ts": {
"version": "6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea",
"signature": "6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea",
"affectsGlobalScope": false
},
"./node_modules/@types/scheduler/tracing.d.ts": {
"version": "f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",
"signature": "f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",
"affectsGlobalScope": false
},
"./node_modules/@types/react/index.d.ts": {
"version": "facb3daa9cb4215070b5662409638ac826681c208d701e96efe9b731d0ec39ee",
"signature": "facb3daa9cb4215070b5662409638ac826681c208d701e96efe9b731d0ec39ee",
"affectsGlobalScope": true
},
"./node_modules/@jupyterlab/apputils/lib/widgettracker.d.ts": {
"version": "47373ee1335c841b028086f19214476c62380d6db1061331b365fb03a77131c6",
"signature": "47373ee1335c841b028086f19214476c62380d6db1061331b365fb03a77131c6",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/dialog.d.ts": {
"version": "fddb97e1f1dce8b55dbae1fce8ad0fac7a2763c4084860f7be93372ba561e562",
"signature": "fddb97e1f1dce8b55dbae1fce8ad0fac7a2763c4084860f7be93372ba561e562",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/domutils.d.ts": {
"version": "b8a6b60217ac1eb177c22d3e78878387fb9b4326d9c42d48e7db569f397609c6",
"signature": "b8a6b60217ac1eb177c22d3e78878387fb9b4326d9c42d48e7db569f397609c6",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/hoverbox.d.ts": {
"version": "75e0cecefeee361f433032bcb0653dd09639cfaf11e0aff27c1c0add842d63bc",
"signature": "75e0cecefeee361f433032bcb0653dd09639cfaf11e0aff27c1c0add842d63bc",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/iframe.d.ts": {
"version": "e590fee01c5af4203c63b179c12531dbaf17f9027ed1bc9e58ccadf1999ac495",
"signature": "e590fee01c5af4203c63b179c12531dbaf17f9027ed1bc9e58ccadf1999ac495",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/inputdialog.d.ts": {
"version": "41cb2a312796c8fa083439f5f8bde19821b2de26ceef1b8a53e33438b367a008",
"signature": "41cb2a312796c8fa083439f5f8bde19821b2de26ceef1b8a53e33438b367a008",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/printing.d.ts": {
"version": "3c94850686707d1d046e05ea6178e3fc7cd115ba1eb159d1c59e93594e54131f",
"signature": "3c94850686707d1d046e05ea6178e3fc7cd115ba1eb159d1c59e93594e54131f",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/sessioncontext.d.ts": {
"version": "7feee510023df8fb51c1797d70e92babc39948965cbf14062a373c32484aab8b",
"signature": "7feee510023df8fb51c1797d70e92babc39948965cbf14062a373c32484aab8b",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/tokens.d.ts": {
"version": "45bf317467aecd8111bf35093dcf4b2daa6ee110ab5e5dc2cf558a26419beb33",
"signature": "45bf317467aecd8111bf35093dcf4b2daa6ee110ab5e5dc2cf558a26419beb33",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/refs.d.ts": {
"version": "459a61b7dfec3982abca4e3f22e2fdb064053793fbc9a74240f03207a863c1db",
"signature": "459a61b7dfec3982abca4e3f22e2fdb064053793fbc9a74240f03207a863c1db",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/abstractcomponent.d.ts": {
"version": "d1dbebf193f3122f34a883ec910beb7c5e6d2921a56cc3065c33c91ff27a01d5",
"signature": "d1dbebf193f3122f34a883ec910beb7c5e6d2921a56cc3065c33c91ff27a01d5",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/abstractcomponent2.d.ts": {
"version": "4e81cedd4aca5f757c315cbf9a4ac69acfa79d178af0f60511f6cca9f55f82a2",
"signature": "4e81cedd4aca5f757c315cbf9a4ac69acfa79d178af0f60511f6cca9f55f82a2",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/abstractpurecomponent.d.ts": {
"version": "93bb365a11749a610355844b9cec34b2b2390581fa49619cec047610b0e92432",
"signature": "93bb365a11749a610355844b9cec34b2b2390581fa49619cec047610b0e92432",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/abstractpurecomponent2.d.ts": {
"version": "f2c9ddb2fe02d13686be12dc202659ff0de37837859bbc40c004c0296b424bfa",
"signature": "f2c9ddb2fe02d13686be12dc202659ff0de37837859bbc40c004c0296b424bfa",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/alignment.d.ts": {
"version": "bd2ab07f4d3e1f9f541383e8ef2c61658344348181d3020f6c663ee042375c88",
"signature": "bd2ab07f4d3e1f9f541383e8ef2c61658344348181d3020f6c663ee042375c88",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/boundary.d.ts": {
"version": "f1e1e68cbe048ee1112f2929c7d68d53d4ad86dacd6e45bafaa5c5801047b7c6",
"signature": "f1e1e68cbe048ee1112f2929c7d68d53d4ad86dacd6e45bafaa5c5801047b7c6",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/colors.d.ts": {
"version": "0ccaffe1ea5cef0ecb9cc897082b76cafcebe63dee99678ee373d4d037361822",
"signature": "0ccaffe1ea5cef0ecb9cc897082b76cafcebe63dee99678ee373d4d037361822",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/constructor.d.ts": {
"version": "2fd06d4c195333c49771d66853322b928a15b3900677e2bf46e12f2d7da4540f",
"signature": "2fd06d4c195333c49771d66853322b928a15b3900677e2bf46e12f2d7da4540f",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/elevation.d.ts": {
"version": "5873abbf948918e64a1d648d7b60cdfd2eb9e9902d6d1c580876218824ff689b",
"signature": "5873abbf948918e64a1d648d7b60cdfd2eb9e9902d6d1c580876218824ff689b",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/intent.d.ts": {
"version": "843fbd11bfa2082344b49c439a938f6f0cb3a185eb68acfde43f672b093b8558",
"signature": "843fbd11bfa2082344b49c439a938f6f0cb3a185eb68acfde43f672b093b8558",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/position.d.ts": {
"version": "e1cbde3f55a1d15093334577484cfd3f3f0ace8edb928ff4d0526663ca23ce62",
"signature": "e1cbde3f55a1d15093334577484cfd3f3f0ace8edb928ff4d0526663ca23ce62",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/icons/lib/esm/generated/iconcontents.d.ts": {
"version": "1cfa9fdb2b2bcb3e204dfb2da4cbb1035725124ef2472018e9153bc945f9d60e",
"signature": "1cfa9fdb2b2bcb3e204dfb2da4cbb1035725124ef2472018e9153bc945f9d60e",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/icons/lib/esm/generated/iconnames.d.ts": {
"version": "9da38b661062966f1dafc78d034614af5181a92e1b9dba51cb2ad2320e300154",
"signature": "9da38b661062966f1dafc78d034614af5181a92e1b9dba51cb2ad2320e300154",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/icons/lib/esm/iconname.d.ts": {
"version": "f83b02a0e5d2ea81b9a14362a1cadafd534392bacdf731e461afc330c476980d",
"signature": "f83b02a0e5d2ea81b9a14362a1cadafd534392bacdf731e461afc330c476980d",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/icons/lib/esm/generated/iconsvgpaths.d.ts": {
"version": "f634926161579868440ca5372c890f0e20200b1323af31802a7075c4efdabe04",
"signature": "f634926161579868440ca5372c890f0e20200b1323af31802a7075c4efdabe04",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/icons/lib/esm/index.d.ts": {
"version": "9954e278f4c8a55b3c70710fc601addf02cf0a3eeccfb1b569917f10e3899a20",
"signature": "9954e278f4c8a55b3c70710fc601addf02cf0a3eeccfb1b569917f10e3899a20",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/props.d.ts": {
"version": "27953c75d82f1fd701c2e3f76c927199c264350d304ca1b6701099d6d4c6ec51",
"signature": "27953c75d82f1fd701c2e3f76c927199c264350d304ca1b6701099d6d4c6ec51",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/classes.d.ts": {
"version": "d7ac703836066d80c98305474443d2b5ce456bf1667e76a89659735e040b686b",
"signature": "d7ac703836066d80c98305474443d2b5ce456bf1667e76a89659735e040b686b",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/keys.d.ts": {
"version": "75eaa6171bc3ce74f87a9fea83c35e5d2bfda3518eec74466cf3551fadded8fe",
"signature": "75eaa6171bc3ce74f87a9fea83c35e5d2bfda3518eec74466cf3551fadded8fe",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/compareutils.d.ts": {
"version": "46b6fd7de6d4297b7c8c24209672f1e87db5119a4e73ec08bc6426662cb6fd21",
"signature": "46b6fd7de6d4297b7c8c24209672f1e87db5119a4e73ec08bc6426662cb6fd21",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/domutils.d.ts": {
"version": "5fe0701f446d17874b6ab8c141985faf0fe9c898cea9a84b009a30911cc86bee",
"signature": "5fe0701f446d17874b6ab8c141985faf0fe9c898cea9a84b009a30911cc86bee",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/functionutils.d.ts": {
"version": "8802ee7636d5e15d7f732f8dd5d52e972f7c139c279f15f0b2768a1af183e1fc",
"signature": "8802ee7636d5e15d7f732f8dd5d52e972f7c139c279f15f0b2768a1af183e1fc",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/jsutils.d.ts": {
"version": "9a54ced1026d946236b15d77a2f106d479087928c0d458f43917c26db39c96f7",
"signature": "9a54ced1026d946236b15d77a2f106d479087928c0d458f43917c26db39c96f7",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/reactutils.d.ts": {
"version": "4dd37743fe7eb33ee2d65854b63d2e99999e2f8398c427ef6bff99ee1f94a4a7",
"signature": "4dd37743fe7eb33ee2d65854b63d2e99999e2f8398c427ef6bff99ee1f94a4a7",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/safeinvokemember.d.ts": {
"version": "76a73ecc334a853411ba43d5e977bc56811b90448dafb383b4062acdd716c310",
"signature": "76a73ecc334a853411ba43d5e977bc56811b90448dafb383b4062acdd716c310",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/configuredom4.d.ts": {
"version": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
"signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/isdarktheme.d.ts": {
"version": "525d24d74fbf1b3d4427e8e56db49667d67c15ec1685dd20d88cc5ee106a031d",
"signature": "525d24d74fbf1b3d4427e8e56db49667d67c15ec1685dd20d88cc5ee106a031d",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/index.d.ts": {
"version": "10ae57df94ab0cc4e92643ff0052454ec0a15b3956e4ba8b9d7a3e6e1497c747",
"signature": "10ae57df94ab0cc4e92643ff0052454ec0a15b3956e4ba8b9d7a3e6e1497c747",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/index.d.ts": {
"version": "f916f9303709d609e852bd97e8cc6586d3dab103ea4e605a4d63598e37b87190",
"signature": "f916f9303709d609e852bd97e8cc6586d3dab103ea4e605a4d63598e37b87190",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/components/icon/icon.d.ts": {
"version": "215a85b4d33bcc3d955c9a7dfe84368e97ce828aa095b07a1c39b9b136055f29",
"signature": "215a85b4d33bcc3d955c9a7dfe84368e97ce828aa095b07a1c39b9b136055f29",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/components/button/abstractbutton.d.ts": {
"version": "a7de820c873e4f0db59303940aaa7f6f06a1a46d3f89eaada44d76c871876fb6",
"signature": "a7de820c873e4f0db59303940aaa7f6f06a1a46d3f89eaada44d76c871876fb6",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/components/button/buttons.d.ts": {
"version": "aed5c2f80124fcda53b6fe13b187fbf45979c931504b534601c8ea3ce9b2adba",
"signature": "aed5c2f80124fcda53b6fe13b187fbf45979c931504b534601c8ea3ce9b2adba",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/components/collapse/collapse.d.ts": {
"version": "8822d39d94eec0ce799e13cf2412680fd3238fb0059f05c6bf5f077f8ba9df72",