-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.toml
More file actions
3631 lines (2831 loc) · 111 KB
/
index.toml
File metadata and controls
3631 lines (2831 loc) · 111 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
hash-format = "sha256"
[[files]]
file = ".versioning/meta.json"
hash = "f1de0dea8f43aad1041b481b61007f0cb1514d1cbf00df8de1c9bfeeaf4ba4cb"
[[files]]
file = ".versioning/versions/1.0.0/changelog.txt"
hash = "8a50749350b7ecaf7596bb240dbd29eafe1c40ba78714ca3457e0a4b73d074f5"
[[files]]
file = ".versioning/versions/1.0.1/changelog.txt"
hash = "bcafdd3b930f068637a9894ea56b3253e43c2bbbc6ca9d5505fff9ab288f94c1"
[[files]]
file = ".versioning/versions/1.0.2/changelog.txt"
hash = "d25589f0d294f1e30ded0a49e6ee059dd96a8e5760a5ce6857e5767b8face67d"
[[files]]
file = ".versioning/versions/1.1.0/changelog.txt"
hash = "479e7272c2da932031afddcd71972d03a849a3049ce37971f68b346bc8bd9744"
[[files]]
file = ".versioning/versions/1.2.0/changelog.txt"
hash = "5f0a24a758d7c81a234074411a8f10955d1d7ad1e328ab9c00a334e5743a0e4e"
[[files]]
file = ".versioning/versions/1.2.1/changelog.txt"
hash = "0b2a1bff9aacfc7ae3611a65542abe47b94fa43d193e196b50f19ee7827cdd06"
[[files]]
file = ".versioning/versions/1.3.0/changelog.txt"
hash = "b58e8b7eb4b1d2fcd5e1146499c7ddcb11aeb782ecff43f2af2b96ae0d593fa3"
[[files]]
file = ".versioning/versions/1.3.1/changelog.txt"
hash = "760275be7604133d85b966d3d6896d3eba0d37aa09ae81a7eb1dadfb63cc0188"
[[files]]
file = ".versioning/versions/Beta 1.0.0/changelog.txt"
hash = "b77d839e832cbbc895192ffffe76c67ebb72af867922515c6f1387a2858f533c"
[[files]]
file = "config/Advancedperipherals/peripherals.toml"
hash = "0fd830363e1477e5ecec61cd071fe0b429d1154a1ce6a0c31ad95ddabfbe9143"
[[files]]
file = "config/Advancedperipherals/world.toml"
hash = "ebdcd0bea168ee286993b1b9d01051b6eec511f13e3ef6b705deae36a46753dd"
[[files]]
file = "config/Obscuria/obscure-api-client.toml"
hash = "978e952719c35724ffc46d0839646e5fa9eecfd268df41de0389da009a5ec80e"
[[files]]
file = "config/additionalplacements-client.toml"
hash = "c819262648f654c566226e67e562c5481d0d8424197e8bf9fae73ba5975abe7c"
[[files]]
file = "config/additionalplacements-common.toml"
hash = "7e77de175db39b18bc300e6bf2b61f7b47d7a0c562e349da06a61405b1f6b5c4"
[[files]]
file = "config/advancementframes-client.toml"
hash = "6f150c2fa06c6c23a4c0146cfa911222d70192fa38dd5cadb50517116191e0c9"
[[files]]
file = "config/ae2/client.json"
hash = "c1a4e1058ad7970f2f4d83aab93afda83ea713026c8ebc1d63942ee66a6d3c66"
[[files]]
file = "config/aether-client.toml"
hash = "1b4815f9c04cebb0b971bc12573dd54e8f7a303cef572620e641c415b7326d64"
[[files]]
file = "config/aether-common.toml"
hash = "c779a829e266452c17ccb3852f9a3274a27ffe5caf6bec665cf8f04877993d25"
[[files]]
file = "config/alexscaves-general.toml"
hash = "c7bf72eb416f143e490d71a6a935ecd0f2672ec6b8d2369126b6dfb70108a5a6"
[[files]]
file = "config/alexscaves_biome_generation/abyssal_chasm.json"
hash = "f349b67b58739372299e6182e05f13f39fb1ff3dc207a22d023171bd42257f71"
[[files]]
file = "config/alexscaves_biome_generation/candy_cavity.json"
hash = "000d8664ffaacc97df0c8228997e466c07de36bce5f153c04111ab2942cf49bc"
[[files]]
file = "config/alexscaves_biome_generation/forlorn_hollows.json"
hash = "811ac4bdea3331aab4a056d875636b65ecb2a210839344e6701208ff8675261c"
[[files]]
file = "config/alexscaves_biome_generation/magnetic_caves.json"
hash = "1d0938488224ad3562e95700def425f20ada98b0794a86d6c840425329b60074"
[[files]]
file = "config/alexscaves_biome_generation/primordial_caves.json"
hash = "29831094310a471c6dd95f650294bdddadc13a86cd73ef05b7fe3ba6b2f57924"
[[files]]
file = "config/alexscaves_biome_generation/toxic_caves.json"
hash = "569f137de0fa1708023bb05589023bb9e5595466ea0680d9c5dc4d890f6c6407"
[[files]]
file = "config/allurement-common.toml"
hash = "ca682cd8db1dfeb509cbdb75fa0e061d4d0b7791237c3de4c3b63dead27f2927"
[[files]]
file = "config/almostunified/unify.json"
hash = "9813be7df822c4e11994697ec472fb762097392623aa9eaadb69910cf2d98940"
[[files]]
file = "config/armorstatues-client.toml"
hash = "ef1e3f7e146fff952530d0be20546e18287d6b4543e9987515378eb8be7f54c2"
[[files]]
file = "config/ars_nouveau-common.toml"
hash = "732702004fcc02128294ff9b4f30b1a07dd15977b64f24d019464c4c6ccc6b1a"
[[files]]
file = "config/betterendisland-forge-1_20.toml"
hash = "6605a1fe56462568e48cd64fb7b3c54c9214db4a0007ffd4a78311e5087db765"
[[files]]
file = "config/betternethermap-common.toml"
hash = "71ec39144914c78dd1685d4abcab8413ae2d4d0dd19af23667d58b12571b48db"
[[files]]
file = "config/blockswap/block_swap.json5"
hash = "8e2e48ffc2cdb576c33be80748b11efa93aa0e0d02e4fd3ee2ec4798874e61df"
[[files]]
file = "config/bobby.toml"
hash = "3be89a11a0ec9aa79e6c29657b3b7aefc93011364598964f612cfd337d11a2c9"
[[files]]
file = "config/botania-common.toml"
hash = "35c54cc03dbfdc948bfaee6c45a3f5ac0156abff12abf879f91337497ee865db"
[[files]]
file = "config/bountiful/bountiful.json"
hash = "294a7d05c298048de1a38147ebf856202c74ea60a417f9d4fd63f67a6bb7667e"
[[files]]
file = "config/carryon-common.toml"
hash = "f6ea5acb7c19bf4070bf6c442e4177db88ec199c2e35a50d850486cac5cff6bc"
[[files]]
file = "config/cofh_core-client.toml"
hash = "cc61b0d1fe59dc5e215a28de0434d567047c6f2959c31886617ce9d1a5ad6428"
[[files]]
file = "config/configured-client.toml"
hash = "1a3677c27a5e93fb382b12956cafb772f92bfbb375c18544fa3353b2abdc2d75"
[[files]]
file = "config/corgilib/announcement_config.json5"
hash = "98556de3804a7d3285b9123aacbd68e58fa1541b201abe624fc565d301c1719f"
[[files]]
file = "config/crash_assistant/config.toml"
hash = "8c07160beeb088334cc1ab26461932e6d5e2a00add77c707818d2af2444bf276"
[[files]]
file = "config/creeperoverhaul.jsonc"
hash = "7ed52c7f86be331882f5c94d23c4842a12b206ac40c05ec628303d087124a003"
[[files]]
file = "config/curios-common.toml"
hash = "1810ee39ff02aee5ec6e3fb3d45807cbbaecd06f87e324f26bfc7fcfbb741f3c"
[[files]]
file = "config/dimdoors-config.json5"
hash = "0df910f2ca96fa86fdd48288ec42f42f3a01b13be9fe1477c08f60b87c36de3d"
[[files]]
file = "config/domestication-innovation.toml"
hash = "331ddf98fc510ed2e4878aa6783e298b8614ce309c0a8ed86eac64b1c54605b9"
[[files]]
file = "config/dummmmmmy-common.toml"
hash = "4593e67d665ff9c888543c9488548b060aecb48e4ed50ccd8dcfe5e2d52ae3f5"
[[files]]
file = "config/everycomp-entries.toml"
hash = "b82a67b6bedf0f7559ba552d9e6da05cc4ac3f833bdac99891e7e326df7fd484"
[[files]]
file = "config/fallingleaves-client.toml"
hash = "950cdae0262dff23a0397cb7896eff04f3f9d665271386776ece980e69c2350e"
[[files]]
file = "config/fancymenu/assets/changelog_button.png"
hash = "634f5f1050a03bb09bc3ab7d982286641df7ea8296e0e4623869fcfbe3af29e1"
[[files]]
file = "config/fancymenu/assets/changelog_button_hover.png"
hash = "1b51a2cab0e315c2adbb06112b7325324477d3adeadfe9e3fc1212d296ee815e"
[[files]]
file = "config/fancymenu/assets/mods_button.png"
hash = "c55dc014d467996c52df6b7cbb5a7396733dba497a23bc0363bf94fa7a8dc59e"
[[files]]
file = "config/fancymenu/assets/mods_button_hover.png"
hash = "d0ac6a5725ecd03b255b6e4b916b0ec6e77ddba28e33a0d227f37ec36e620117"
[[files]]
file = "config/fancymenu/assets/mods_button_inactive.png"
hash = "5e09f86968dfcbd70924cfe62f3914f93a1db95d34bd141df5c7c721cf59f862"
[[files]]
file = "config/fancymenu/assets/perpendicular_logo.png"
hash = "a762831ac96d420042543f732be1852d2e37a2c6b74e4d847a2eb6b8af2e3835"
[[files]]
file = "config/fancymenu/assets/perpendicular_logo_16x16.png"
hash = "300c370e1041ba1d18a5a5e2a204a6c3d9919ba042dd6c8d9a642771154359f2"
[[files]]
file = "config/fancymenu/assets/perpendicular_logo_32x32.png"
hash = "119bf50b984f8d8c127c5946796f9ff2e1ebe3ac3453c5c04ac2d830e1cc9025"
[[files]]
file = "config/fancymenu/assets/perpendicular_logo_mac.icns"
hash = "743d8bf95c37dc3b5be5a35c6c2b008ea1e22557a14e57f3dff01defdcf5e325"
[[files]]
file = "config/fancymenu/assets/perpendicular_title.png"
hash = "e8ecbda18f84446c9cd899d53e824f8c9c227a7c779ec2c7296114456dfd6cd6"
[[files]]
file = "config/fancymenu/custom_gui_screens.txt"
hash = "ff492043eaf454c46e949d5eef32ece90cc5a19feb50a161dd29a43b5732c880"
[[files]]
file = "config/fancymenu/customizablemenus.txt"
hash = "9f0ada5a7f0193d2d717d1c1736f545f5235c2597213731493b97488617ebbf2"
[[files]]
file = "config/fancymenu/customization/title_screen_layout.txt"
hash = "f1ca4c14b75e78e3527959dd12e36b1d5559a55402da9dce401316ab5e5d275b"
[[files]]
file = "config/fancymenu/layout_editor/widgets/element_layer_control.lewidget"
hash = "d4e66bc22fcfa56158ca7100017623c71b1437fb4722229b6e064e0a48a5f5de"
[[files]]
file = "config/fancymenu/legacy_checklist.txt"
hash = "9a25d3dc708e43eabafce5479a13c02dae15bc7f673afb2745b8b2ba48a97dc0"
[[files]]
file = "config/fancymenu/options.txt"
hash = "6f5b5e5181d10ead382e5d314d76cb2d87badbbd2b78cd5efa5a0cf65d063abe"
[[files]]
file = "config/fancymenu/panoramas/title_screen/panorama/panorama_0.png"
hash = "3c30cecb3b00f7e083f63df64edcc10a9d78eb430ed41c42ad75c9e3394bae17"
[[files]]
file = "config/fancymenu/panoramas/title_screen/panorama/panorama_1.png"
hash = "117da2b9ad440b8478d12081a1942ac796674939e45e6d5f53c107cd9b1ed83b"
[[files]]
file = "config/fancymenu/panoramas/title_screen/panorama/panorama_2.png"
hash = "7439d897d9d4a518b49d4e6c92ffbe5cb2aee2b394eacd9df81d42b924e48881"
[[files]]
file = "config/fancymenu/panoramas/title_screen/panorama/panorama_3.png"
hash = "15a6a37c74c961f90a045e8e5090de6edcc4a775232ab571e9579fa3be997995"
[[files]]
file = "config/fancymenu/panoramas/title_screen/panorama/panorama_4.png"
hash = "81962823ae474d9a35250bc39cb0d264dc982310350eecac8e851720121b7011"
[[files]]
file = "config/fancymenu/panoramas/title_screen/panorama/panorama_5.png"
hash = "8d3f8a08d9a1334e9290679125f85beae4434f32fe0e8454bce336c2f154789a"
[[files]]
file = "config/fancymenu/panoramas/title_screen/properties.txt"
hash = "6168304fa0143837c2d6563de96bab508cc3175819995bdc2fa6af6b0a1b7bcb"
[[files]]
file = "config/fancymenu/ui_themes/dark.json"
hash = "45541e5c5019585b9c4ff114aed530826129e8a7ac6866b5d5fe41dd278abae4"
[[files]]
file = "config/fancymenu/ui_themes/light.json"
hash = "6954379d658fdf496f162792a3244f0f08635858ed4b0553a718a7ef63b8a620"
[[files]]
file = "config/fancymenu/user_variables.db"
hash = "3d7d4cda73d6bde134a568ccbe4e8d2e7fbe701570012b71fa45acdb2258c823"
[[files]]
file = "config/farmersdelight-common.toml"
hash = "64dff225c3025efcfe3e1265f29f8ed2edfcaf584ad71a4c8a0e337900f2f3c3"
[[files]]
file = "config/figura.json"
hash = "51567deb96a304fd155b3aff8f816a11e64b977f52992f9b3eea7427e11bd785"
[[files]]
file = "config/fml.toml"
hash = "845926b0fad854b5dfccc8005e6a65fbf183fc465fd0ba8060101fe56c558ad8"
[[files]]
file = "config/forge-client.toml"
hash = "613d60015c3671d95f59f4ce70c0b9956c377a3050219560d0b824cd1e9648b7"
[[files]]
file = "config/forgery/features.ini"
hash = "28beea0faba0f955b2150d44f717a43168aa0d8a987b6ba1bb77356f95b82775"
[[files]]
file = "config/friendsandfoes.json"
hash = "833105e77a257540f99d2b088d97d87d201397abfa810e2f9f1cb88fe2a24fc0"
[[files]]
file = "config/hauntedharvest-common.toml"
hash = "529b12685a4176f1d1eecb0651da01bc5d9ae20264fd217707667f103ec07df1"
[[files]]
file = "config/immediatelyfast.json"
hash = "2c26bdb40d2013c212f0fbdb05b7e87c5774a5dfeca1259806dae42de463c5eb"
[[files]]
file = "config/immersive_optimization.json"
hash = "a7f293642797e63724b16dadb87664556ce926953fd98ebf92966cc1c479a2b9"
[[files]]
file = "config/incontrol/events.json"
hash = "76aa5f75ef75c581a3f3b7b7764c487a1d002a8271ba33203c3375e4a0eb3806"
[[files]]
file = "config/incontrol/spawn.json"
hash = "a1346c252862ad82fad76d9228fa0a6e3d11b169c33445c0f43b12f5e97fcdbe"
[[files]]
file = "config/lmft.json"
hash = "2a2ee19297afe3fc512f5cbe639349847f3e7a74616f282d24a179a17f4559ed"
[[files]]
file = "config/mantle-client.toml"
hash = "4c38703df36b13467072a180265992430ce864e7b62b99eb27f33634f9c00050"
[[files]]
file = "config/modernfix-mixins.properties"
hash = "5e2d87125ae28c4c072024d4cdcdc0b7b24bd1ae178b62138603744d51a2c84d"
[[files]]
file = "config/modpack-update-checker/config.json"
hash = "375d8c1b3d5ef830acf1684724d6f3d1209c2f23d0e9e657958cfd1d9a16e539"
[[files]]
file = "config/modpack-update-checker/modpack-info.txt"
hash = "43ef89c0e2da3a7ee2774279aadda8d555b06136b221f633b22e9e60def4d0ac"
[[files]]
file = "config/moonlight-client.toml"
hash = "9bc8f1f2f0a1f4bb9a12f3577197e0dfe444964afe85a3c243e91d5938030195"
[[files]]
file = "config/morphtool-common.toml"
hash = "71b207495d5655a7110b94227774466d8220677681c68dd4fba7164a4dec359d"
[[files]]
file = "config/naturescompass-common.toml"
hash = "c4dc4ef55d544026c1625fb08b11a2f59eea865829aeecee76067edb6eabdcc5"
[[files]]
file = "config/neapolitan-common.toml"
hash = "92a781f8c6a6c5e615ebf4a08ed66c8947b23f91636a6959cc7ed89925f7f527"
[[files]]
file = "config/nostartupmessages-common.toml"
hash = "72220298a9f0d7bdc848c9d965ec7bc911fa0ab9651e868e4e33d351b3ab2ba7"
[[files]]
file = "config/notenoughanimations.json"
hash = "f35db4d18c6e2cf92ad9fd3761ac1dab168c978f2d586b78200b3aa706edcaf4"
[[files]]
file = "config/observable.json"
hash = "ff5fabd401a990ac21cb95d06608427d080a4371e24a177fb113f2d03bc1dca0"
[[files]]
file = "config/personality-client.toml"
hash = "b5a09def79c15c1f2d75a2aa5683b2c0c3401cc5581e0c77dda1ce811a9e0077"
[[files]]
file = "config/pneumaticcraft-common.toml"
hash = "46e87bc69ca2beb52b3eb86e9dc5c90f8dc6977a12411b3c2080358f27f78ada"
[[files]]
file = "config/quark-common.toml"
hash = "4042a5114f26c44b3e5c2df35c57654e15875eee7dc4c7253764ab5c8dc30571"
[[files]]
file = "config/rats-common.toml"
hash = "a051b787c5a222db95e6d15b5ba9d6ce9b7619aaceca17983e770df3af3edc6d"
[[files]]
file = "config/resourcepackoverrides.json"
hash = "9bd55909ffe55ebbb9b7d31825da3912cdfc1acfdeb65711cd8980de7ea40802"
[[files]]
file = "config/ribbits-forge-1_20_1.toml"
hash = "da9f6fa4546936b77dcc501513153ce1d97efa827c7b87ab87378a05a59e58c6"
[[files]]
file = "config/sawmill-common.toml"
hash = "4b5e8dc2e5b2c5738287bd75e318e4a52fd32b3c74e1d27a9f2cc06832ba2638"
[[files]]
file = "config/sleep_tight-common.toml"
hash = "784004cffb8be0961bcc800835105c2eb622e1f6c918dcc7117acc91098db288"
[[files]]
file = "config/solonion.json"
hash = "47d0e4ca47b8e56fe5ac38937f3e899763c72e57988366ef0b158f8d5649df50"
[[files]]
file = "config/spelunkery-client.toml"
hash = "8784e8daf8674eacea1d1a502a54ea767d1272dfd3bf91a863fa5ac87c345c2e"
[[files]]
file = "config/spelunkery-common.toml"
hash = "8a7dcc3dba14ea7e516d0a4179bcecaa649176c66135d6fd5093298298561410"
[[files]]
file = "config/stylisheffects-client.toml"
hash = "22c9ebfaa8932f0e4be69226bcb44b764fee7009e20f0ff632665a3fb0e0db32"
[[files]]
file = "config/supplementaries-client.toml"
hash = "5ed775e6837f9d5f4b8221ea606245dad8dab7720126d58c558ac3103afaf169"
[[files]]
file = "config/supplementaries-common.toml"
hash = "4ce7586cbddfcbcd99dbe090d0d13c9ecdd052ee104115f0176bbbfd1b5615c4"
[[files]]
file = "config/tconstruct-client.toml"
hash = "f2d181296e3653a1eda8064101046ce5b9970d5e2e2abe120709241e0d7fcf42"
[[files]]
file = "config/tconstruct-common.toml"
hash = "3706ce716247028474b2335bb8301a5d8742875f96523c70925e6c3fed90c79d"
[[files]]
file = "config/tectonic.json"
hash = "2c13dc94794ed54c3a74d8a3d195db26753b74fc9100d4ad15a6689220a50503"
[[files]]
file = "config/terrablender.toml"
hash = "acd11ba2c9e0f323b5bc123d9a35b2d4e100862b745ffc5f2b0d9ae36554a327"
[[files]]
file = "config/upgrade_aquatic-common.toml"
hash = "b7b27934f38ea2a9b15a24fbf11c11bc3a72713ab7cdc97a1fecc66e26a32614"
[[files]]
file = "config/vanillin-client.toml"
hash = "0439dabb59e19e999cbcffa2f36e9b9cf456d753d0904c4b768e2e2ede51d442"
[[files]]
file = "config/yosby/config/aether_redux_client.toml"
hash = "7e4549093a5c697ca19b6c5637a6a10d0d1fe328aa1ae618e640ed4b72cd95f3"
[[files]]
file = "config/yosby/config/ambientsounds-client.json"
hash = "d75bebf94d5f745e1b5a8728e426b48fb4bc644769d14889d745bc5c5955eb7f"
[[files]]
file = "config/yosby/config/ars_nouveau-client.toml"
hash = "b057cb8063565e48ae377e4ad3506df3dc06ebbc294c429e0711c30ca537effb"
[[files]]
file = "config/yosby/config/betteradvancements-client.toml"
hash = "1ecba87b0813f507046abe6d8466363da557d52ee28deb8454306b0a01b04b81"
[[files]]
file = "config/yosby/config/betterf3.toml"
hash = "9b505428a0351e1e069ebe87eda97cfeb1f426308d0528f660869519ccff011f"
[[files]]
file = "config/yosby/config/cpm.json"
hash = "076ac6544fb6cf7dde4a8a35289ba82efa16f1c95ab56b51225d3beaefee3f97"
[[files]]
file = "config/yosby/config/dummmmmmy-client.toml"
hash = "3e0b01e23a2e4b185b64565a644442996d9465962beb18c48710299c4a735a9e"
[[files]]
file = "config/yosby/config/emotecraft.json"
hash = "be446dabb065073a720325262845a5ba16828c623817c42e39a81fb64b827cda"
[[files]]
file = "config/yosby/config/enchdesc.json"
hash = "9f35da9d63833fb6e1da09327c834fa20d3c4b63b66df5667596d107a78600e5"
[[files]]
file = "config/yosby/config/exposure-client.toml"
hash = "6fd4106c4b8410f747a9e8b95f73d0aad1037cb3204f1f071972cedf87a5734e"
[[files]]
file = "config/yosby/config/jade/jade.json"
hash = "179ed745dc57f576eba02c23749ef3eb422073dc6583900dd48fe91cfbd5dd64"
[[files]]
file = "config/yosby/config/jade/plugins.json"
hash = "49074e2594c25afb1b3f69c7aa0708f601a86a4eee3d505b186a70d8fcdde9ef"
[[files]]
file = "config/yosby/config/jeed-client.toml"
hash = "92551a90a52f6df1c708a5730808b2eb73b33b71bb10f4bc824a4f015c79aab0"
[[files]]
file = "config/yosby/config/jei/jei-client.ini"
hash = "b88592f33fa32917368809ba01020b51da089c9354fcf379de2cac07faf69f18"
[[files]]
file = "config/yosby/config/oculus.properties"
hash = "a9a6c0ecd319c9417e35b3b17f91de37075001803296dc6fab2a52f888a342c8"
[[files]]
file = "config/yosby/config/pvp_flagging-client.toml"
hash = "d86adb371acec08a10828db25d811923bdff7c6e3d931952706b26b581bfc379"
[[files]]
file = "config/yosby/config/shulkerboxtooltip.json5"
hash = "625f185b95cd1256b69b36a289756b4ba1f79c4e68a7b0c8ab906b39a2ac49f7"
[[files]]
file = "config/yosby/config/sleep_tight-client.toml"
hash = "eff4ec77afdc5e1256f1b0d0a58d7bf6581a30029bbb7290238db166c3dd3088"
[[files]]
file = "config/yosby/config/toolstats.json"
hash = "65761a39f4bb538303bc78cf3f7b2129d76f61724debb1ac60ac6db26a97c858"
[[files]]
file = "config/yosby/config/watut-common.toml"
hash = "33022fe9416d6e50a720174d2ecbf00be8a7042afc004b67d76f5b083ffface1"
[[files]]
file = "config/yosby/config/xaerominimap-common.txt"
hash = "1d4e36fc012cffdbb3dabf2815e8ba6d1ab7e76f25c24de10da0ef6560816206"
[[files]]
file = "config/yosby/config/xaerominimap.txt"
hash = "9c74522b2900c952303d42b1ff82487acd4103fea819efb3c21bdc45f25c1e44"
[[files]]
file = "config/yosby/config/xaeroworldmap.txt"
hash = "f50e212d10dd3b23aa0bbebaaa7a8108a630e6b7e1f33e4b1e53b115344903e2"
[[files]]
file = "config/yosby/config/zume.json5"
hash = "6e478dd748af2e6d1ea234dec8af16776bea72ec9dcf51b2562852cdd4a4c950"
[[files]]
file = "config/yosby/options.txt"
hash = "84a6ac8f78c6b1703961a549bd412ad4cb92913b6b2f25e9d8a0a7539471a3e3"
[[files]]
file = "config/yosby/servers.dat"
hash = "7bb74ee34526d41068914acb9ffded2cebc8c1906d4b192761985d0df9866241"
[[files]]
file = "defaultconfigs/cofh_core-server.toml"
hash = "168489963efe113d834d422045ae105622bf4e0d6361bdfe674fda6c6d0c496d"
[[files]]
file = "defaultconfigs/create_enchantment_industry-server.toml"
hash = "879a7dadec35b930cc02656e3d991b3d8d093177e7475b19f18304e09b067b1d"
[[files]]
file = "defaultconfigs/crossroads-server.toml"
hash = "49c15e42838ae24776b7b1c03c3fe405ea6c4422c80c583fd66926d9821cd6d6"
[[files]]
file = "defaultconfigs/fluxnetworks-server.toml"
hash = "af827ebbf680f242d911617caf2950c99d455715119b8a747b0af865d1cea4f6"
[[files]]
file = "defaultconfigs/openpartiesandclaims-default-player-config.toml"
hash = "42f5a9c9fbc4616c1af01257efc94588abe6379c2e8d7f7068b8dc3fa763ef1d"
[[files]]
file = "defaultconfigs/openpartiesandclaims-expired-claim-config.toml"
hash = "43e496fb7745f38c3d26368eadeaacfc551a68a7607cb0f616c90be096a0629f"
[[files]]
file = "defaultconfigs/openpartiesandclaims-server-claim-config.toml"
hash = "42f5a9c9fbc4616c1af01257efc94588abe6379c2e8d7f7068b8dc3fa763ef1d"
[[files]]
file = "defaultconfigs/openpartiesandclaims-server.toml"
hash = "9b10e172a6000a5bf09a86eab4bccad4128b0204ee7fc050bdc86ddeb0368616"
[[files]]
file = "defaultconfigs/pvp_flagging-server.toml"
hash = "9524a5e9f8904ff7f1ccad187e0681204bbb4f8074162b76366b4d783e1f78db"
[[files]]
file = "defaultconfigs/sophisticatedbackpacks-server.toml"
hash = "9a4ce361aa5e5a4cbc654f447ad02ead62e371209f55f6f91d2076638d25f529"
[[files]]
file = "defaultconfigs/torchslabmod-server.toml"
hash = "e9cedcecd88b82e97337e66f710183b33a4dc6db5e791a79b541c38e9619e7c5"
[[files]]
file = "kubejs/assets/ad_astra/lang/en_us.json"
hash = "544bb10456259b3e9cffba17fdd4c7656dfc5536ba5e367c5b9e252f0b5e1182"
[[files]]
file = "kubejs/assets/ad_astra/patchouli_books/astrodux/en_us/entries/the_first_launch/fuel.json"
hash = "ef612e3a97fde1ec1cf9ea338a2b98432f9b282da517ab5af3a1e891a7ec3c84"
[[files]]
file = "kubejs/assets/alexscaves/lang/en_us.json"
hash = "48becb3d41f98cd452423a5caed03bd86bb8766426486c8df0221c1c7c15b4f5"
[[files]]
file = "kubejs/assets/architects_palette/lang/en_us.json"
hash = "c7c8ea40ff5f48493645006ee7aca94c6bb04c227805aa8293cbec9db2cfda26"
[[files]]
file = "kubejs/assets/bbb/lang/en_us.json"
hash = "8ff58017b66ad0faa60ad4143b32330adb5d3ae0a620939669eac22cce695a33"
[[files]]
file = "kubejs/assets/cataclysm/lang/en_us.json"
hash = "88b06711fa6eeda23b4393b571fba7eb45ae876104887c2406cddd7cc120ee0f"
[[files]]
file = "kubejs/assets/caverns_and_chasms/lang/en_us.json"
hash = "8c46418eb89b9c015c86382fe936fa9497d43267d29df09022e11d6d76555ab5"
[[files]]
file = "kubejs/assets/create/lang/en_us.json"
hash = "7d0bb9b1cd31ca46e545a7379b1b236345a5e3da7b776fb65229cc43366e8a87"
[[files]]
file = "kubejs/assets/create_confectionery/lang/en_us.json"
hash = "ebd340af731c23d31829aac0fcd5f370945f66db43f5997dc34f334e7537d7fc"
[[files]]
file = "kubejs/assets/create_enchantment_industry/lang/en_us.json"
hash = "919e8aa0f14e6b620459b39fbc307a669d1c49715b488899f38ff08fafe30dcb"
[[files]]
file = "kubejs/assets/crossroads/lang/en_us.json"
hash = "1377ad79a21330a584dad6dd5add4f4efff4eff4c927528504691a15b757caac"
[[files]]
file = "kubejs/assets/etcetera/lang/en_us.json"
hash = "6f865917cb99a05c26de489aa0fb7de5504bf846e5d33374b112d4eb133e1a29"
[[files]]
file = "kubejs/assets/industrialforegoing/lang/en_us.json"
hash = "6a3dd4564348054d49b0ce40482fb28771e1f0f3e7eadce6aab1f3833d703aaf"
[[files]]
file = "kubejs/assets/meadow/lang/en_us.json"
hash = "c50d0d329a88d613dfaf8ab99d23f177a4e9ac507f1cd005c5b0afc8a6cba3b2"
[[files]]
file = "kubejs/assets/netherexp/lang/en_us.json"
hash = "8c975205ca827ec0d7c434e5dc4646da9b3ed7fb028fb258019980bd0b19f3c6"
[[files]]
file = "kubejs/assets/perpendicular/lang/en_us.json"
hash = "7f9244e4c07300cfe92b5c1b92a9c94f361bd6209b515d23ca206c0549fc705a"
[[files]]
file = "kubejs/assets/pneumaticcraft/lang/en_us.json"
hash = "5565aa067b7a168c923702833977df32090948f71bb89781389a3ca2551cf57a"
[[files]]
file = "kubejs/assets/productive_bees/lang/en_us.json"
hash = "e7b7b43e4c0d14fabb8b2755cdc1cc4ac4e72c9c08fff6b0c56733fb2fe847f3"
[[files]]
file = "kubejs/assets/rats/lang/en_us.json"
hash = "c4d482edf3ea76aa048bfa93c22bd6114aa23d1be500df9f38813702af2b0e35"
[[files]]
file = "kubejs/assets/refurbished_furniture/lang/en_us.json"
hash = "bbfc302ddebe546bfe3d82ee31b871e3ae3a2ac20323403d021aabafdbde017d"
[[files]]
file = "kubejs/assets/spelunkery/lang/en_us.json"
hash = "858f26ae4c9ab0178e256e21c36ac0c79fa863b9f77ec0e95218033127cadfdd"
[[files]]
file = "kubejs/client_scripts/jei_cleanup.js"
hash = "2d1b24c1f308817aff460f7f22e5a9735351e757b0f68569dba36e749326ce29"
[[files]]
file = "kubejs/client_scripts/jei_info.js"
hash = "50317de1d39baa4a5829ba093c22dfbbce115a0468b10e8c007b1658567dfda2"
[[files]]
file = "kubejs/data/ad_astra/dimension/mars.json"
hash = "2657a456f80e3619148105758d3c04b2b486069252c99585690dd5d95df1b7d8"
[[files]]
file = "kubejs/data/ad_astra/dimension/mercury.json"
hash = "d3616e21f0bb788f6cdb09fe2a2f96ef2329119cd8e453cc9b4737e7fb48e96c"
[[files]]
file = "kubejs/data/ad_astra/dimension/moon.json"
hash = "1c78468687171c5d6560e46d50aec2598f29083f294e9667e6bbeea19128f0ff"
[[files]]
file = "kubejs/data/ad_astra/dimension/venus.json"
hash = "4b0f5b44c8886e422449486cff90b8875f45ceafb4544b94f2007db4405c364d"
[[files]]
file = "kubejs/data/ad_astra/recipes/space_station/lacrimosa_orbit_space_station.json"
hash = "9a202599db6c4e85605446be68571ac54a29f499c4f4d35b734e823be9000d1a"
[[files]]
file = "kubejs/data/ad_astra/recipes/space_station/vulcandy_orbit_space_station.json"
hash = "0ee2708eb9f1b6e0abbbc9329690427ddb1d11d82ed9fb29c2df11fc150e9c9b"
[[files]]
file = "kubejs/data/ad_astra/worldgen/noise_settings/mercury.json"
hash = "ac2b2d33dce3598e6900ef2a498c7639fc024f7a370f0aca78d827cd84617545"
[[files]]
file = "kubejs/data/alexscaves/worldgen/biome/magnetic_caves.json"
hash = "15123f625b3657dcf6ea54d019dac1d82742ff67dad5df0d4635cdd0b168308d"
[[files]]
file = "kubejs/data/alexscaves/worldgen/biome/toxic_caves.json"
hash = "f8663598f0ffdd2ac678c1ee45b756ade762e79609358b2afb099f5b8db2bf29"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/_all_objs.json"
hash = "357128ab423948ec623798095932b75c02cf61c600a0912de1109606fb386f0f"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/_all_rews.json"
hash = "9efa48a325efb407fdda22bf158a72a6dab17a9eac587c1b3c3824e98c9b55d5"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/_equip_rews.json"
hash = "74db87d0be0e3f8b5bcf1bb88ee293c0d06bdc97721d1c5b3e0cd03938d44c00"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/_gardening_rews.json"
hash = "34881f00c2286091229773088659cc7ac01567464eed3c1800c161e996763ce0"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/_metal_objs.json"
hash = "5855e10a85879c0861be73e74303d06610090d1e17293583f59daff31dd56262"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/armorer_objs.json"
hash = "55a2e49bfecea98213cecf390c5059bdeb67688799d21cec4ea873e11a8ea60e"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/armorer_rews.json"
hash = "81c16d22adbf6c74a38d256b88e9ba72e6703e71c834db748c947016b291a850"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/butcher_objs.json"
hash = "873c4b985de6910893d5e5b48d22ae2dafddee4adff1f6023c831e02eb0a329f"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/butcher_rews.json"
hash = "f28d8953ecf3d9f412a5faadaf3780e23fe13743aa22307ef23e04d4cdfcdc7d"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/cleric_objs.json"
hash = "94cf385973b8c1ecbcb07b60296271358f43198082fa229a6396a8540c41ba99"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/cleric_rews.json"
hash = "0a99f19f3088c970218461d425ccafaa18698d298c18a2b744bf851656bfc790"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/farmer_objs.json"
hash = "79e8015735dbf47ae1b8009317367e4e40eddef8966adfd8ff293bcc7f34df61"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/farmer_rews.json"
hash = "fdb0fa01195a51d8cdc88e1157e39f5f82d7ff2930e90afaba7ca2cd4f8a8e4b"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/fisherman_objs.json"
hash = "86c068a95d28af46b69849c1a666331abf99d1a77d8ba4ed7102ecdc898eefd9"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/fisherman_rews.json"
hash = "9fe78df245c4b590ee4dec0102aee5db897c78a9ee1155145e892d543a773881"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/inventor_objs.json"
hash = "5d4ec3c82fd33b24921c9fcdd484d9af889ca9cb20ec3e176baec00de808b101"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/inventor_rews.json"
hash = "2a27142473b9e38f1dd490b26ce3f5ca17f3546d13b8e4376412aca61a1aae5a"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/librarian_objs.json"
hash = "c3b929b2848b37349519ffea02eadd2ab914303580380900a7ad50a4116eea16"
[[files]]
file = "kubejs/data/bountiful/bounty_pools/bountiful/librarian_rews.json"
hash = "6321e383384dc83e861242719ad7009456544da66c6d65d026041d90e2159280"
[[files]]
file = "kubejs/data/catalysm/worldgen/structure_set/acropolis.json"
hash = "7bd0f4c41d2151d5d6195a655264238e7b96624b46df76980b8b0d1cd009ff30"
[[files]]
file = "kubejs/data/catalysm/worldgen/structure_set/ancient_factory.json"
hash = "05bd51793e700c3db32ae2d6973fc3972382f1606eccad737879898f8815f8da"
[[files]]
file = "kubejs/data/catalysm/worldgen/structure_set/burning_arena.json"
hash = "23b30445a6cc5194db6e35945bd4e17241c497f669cb493232992aa9c43faa20"
[[files]]
file = "kubejs/data/catalysm/worldgen/structure_set/cursed_pyramid.json"
hash = "222bc8f7fdc9328daeaa312a11e09032b70fe32af900b712b0b9877e9789d93f"
[[files]]
file = "kubejs/data/catalysm/worldgen/structure_set/frosted_prison.json"
hash = "b100aff3915334c72b22eeff83e68031bac37d5d58bc13c94894b055f478f129"
[[files]]
file = "kubejs/data/catalysm/worldgen/structure_set/soul_black_smith.json"
hash = "c5e3a53e3cb71a341b9c34f28a29c5c7c4676f582a9fccab8ab800f2c9812782"
[[files]]
file = "kubejs/data/catalysm/worldgen/structure_set/sunken_city.json"
hash = "e45341bf9416d91b2da089edfb0a57a4bf65bb1f6b39bd2570d71fd2c1a43c43"
[[files]]
file = "kubejs/data/irons_spellbooks/advancements/grant_patchouli.json"
hash = "8eb95bcbc154530931e15fc418c8b1fe991095671409552099ea1aa596999ede"
[[files]]
file = "kubejs/data/irons_spellbooks/loot_tables/entities/additional_dragon_loot.json"
hash = "be06e67114274b3183a0e08fb67d8db6206c1d58fd60565816a78e770d8fd7d8"
[[files]]
file = "kubejs/data/meadow/worldgen/configured_feature/ores/ore_salt_buried.json"
hash = "8b5227d0129cdc90238fe47c5f76957016f14034daddbef0f8e4e1dc9929bb40"
[[files]]
file = "kubejs/data/meadow/worldgen/configured_feature/ores/ore_salt_upper.json"
hash = "8b5227d0129cdc90238fe47c5f76957016f14034daddbef0f8e4e1dc9929bb40"
[[files]]
file = "kubejs/data/minecraft/loot_tables/archaeology/jungle_ruins.json"
hash = "6ac73d70a8baa99f177f274441dbdc7953c45d2d372c2515518bce60082c0179"
[[files]]
file = "kubejs/data/minecraft/loot_tables/archaeology/ruins.json"
hash = "3c1ff6dc99dbb397ca316a2d83e9506b7a9a3c4016f8e0cbc471f7847add5c23"
[[files]]
file = "kubejs/data/perpendicular/dimension/lacrimosa.json"
hash = "7d34d321b525ad430007acfa71cd3d89e27a6301860bc44ea970a73a27dff1b9"
[[files]]
file = "kubejs/data/perpendicular/dimension/lacrimosa_orbit.json"
hash = "41654ca0eb296fc5f90e0600e2a40abc8acd45814cd191fcf982a4a6e92ccf07"
[[files]]
file = "kubejs/data/perpendicular/dimension/vulcandy.json"
hash = "c5a242ab75df6a3924c58dec6d371288a4f457d9cceb07426914348418ac391b"
[[files]]
file = "kubejs/data/perpendicular/dimension/vulcandy_orbit.json"
hash = "054a7ae3fb497333c3f0d69fc0e5b5b4c35535490507c554f275990a3c35ef22"
[[files]]
file = "kubejs/data/perpendicular/dimension_type/lacrimosa.json"
hash = "a29300746810a911d0abc992e6094904221f6db1acb93e4533c5291d5fbac825"
[[files]]
file = "kubejs/data/perpendicular/dimension_type/lacrimosa_orbit.json"
hash = "b20ca53a122e2e6d5576b6d00548dd8bba3d19e237fe84046921454d050d7e40"
[[files]]
file = "kubejs/data/perpendicular/dimension_type/vulcandy.json"
hash = "a29300746810a911d0abc992e6094904221f6db1acb93e4533c5291d5fbac825"
[[files]]
file = "kubejs/data/perpendicular/dimension_type/vulcandy_orbit.json"
hash = "57eb7c54ef6280219e4a0116f80849f30f22bf127b81d84c377356fc23c20371"
[[files]]
file = "kubejs/data/perpendicular/planets/lacrimosa.json"
hash = "0c6da4bc687f94fab6069601eab733fea9fe008bed2218d71367fdea803fa286"
[[files]]
file = "kubejs/data/perpendicular/planets/lacrimosa_orbit.json"
hash = "6cbf705d4f556f0e16cc1856de54708d562c5a9e2f87dbca8b9f167a323f944a"
[[files]]
file = "kubejs/data/perpendicular/planets/vulcandy.json"
hash = "c2770b0c88ffeae288b8c9d50a0081a4b5ff60cbb56879b878cdc677443d8e4d"
[[files]]
file = "kubejs/data/perpendicular/planets/vulcandy_orbit.json"
hash = "24550af6c4db15e9bc8b54c9d3c0770945a5738713af8d6c05f93debce33c988"
[[files]]
file = "kubejs/data/perpendicular/worldgen/noise_settings/lacrimosa.json"
hash = "37c5bf046001eaa1ebb6f967ef6dea2019dc156eeeb35d092323e9268fe09e14"
[[files]]
file = "kubejs/data/perpendicular/worldgen/noise_settings/vulcandy.json"
hash = "41f2877e55fd597b20b2fac068f0215570544f676b77036c970bdfef46fc0a8e"
[[files]]
file = "kubejs/data/productivebees/productivebees/ae2/fluix.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/ae2/silicon.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/alloys/brass.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/alloys/bronze.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/alloys/constantan.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/alloys/electrum.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/alloys/enderium.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/alloys/invar.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/alloys/lumium.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/alloys/signalum.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/alloys/steel.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/ars_nouveau/arcane.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/botania/elementium.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/botania/mana.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/botania/manasteel.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/botania/terrasteel.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/create_enchantment_industry/hyper_experience.json"
hash = "68129c75445c7fbf9742f0909405c6accb8308cb6bd73231763038fa2fa76b92"
[[files]]
file = "kubejs/data/productivebees/productivebees/eidolon/arcane_gold.json"