-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.toml
1736 lines (1328 loc) · 55.9 KB
/
index.toml
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 = ".nojekyll"
hash = "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b"
[[files]]
file = "config/NoChatReports/NCR-Client.json"
hash = "2af6da57b84d25082989cb3c62328da216bc1c457b5676591346c62f64879cbe"
[[files]]
file = "config/NoChatReports/NCR-Common.json"
hash = "bbc93e6b3cb7a917334cbbb3d1b0775a1cb3244ebc2075e4fa1fb7420e32cea7"
[[files]]
file = "config/NoChatReports/NCR-Encryption.json"
hash = "df34a1ed7b309c08deaf42c906fa2ea6f29bb3bf8395ce26593fac4834938496"
[[files]]
file = "config/NoChatReports/NCR-ServerWhitelist.json"
hash = "fdf38fd061bb38e0389ffb008eb33f454f762e504080e8adf2ed5e3911554a8c"
[[files]]
file = "config/bedrockify.json"
hash = "5ccb5a45d42168272d8fe0e0f7c340ce09bc550c9f5daca890abde89056b0469"
[[files]]
file = "config/bedrockify/bedrockify-ExternalLoadingTips.json"
hash = "070db915479c969425c248b201e833d01fde22c6c4f0b325a36aa9dbcbaa9a9c"
[[files]]
file = "config/bedrockify/bedrockifyClient.json"
hash = "e91b85cfc8e762176868236f504558bf43754978bbf2bd92f1c7a39600d60afb"
[[files]]
file = "config/bedrockify/bedrockifyCommon.json"
hash = "1d0c761352a8cda4cfe5679520d89c5649f36067db1bd8f6722cc34ba4438123"
[[files]]
file = "config/bedrockify/bedrockifyMixins.json"
hash = "c8552ac55284532eab049c2a7bce4cbc345c74e2fee38e62b20a748743e3a25b"
[[files]]
file = "config/betterf3.json"
hash = "87522f737ef0e702a349c4ec28e58ed47fbd1d7875c1eabfd555b6992d6bbfcd"
[[files]]
file = "config/capes.json5"
hash = "3d32bfa3fa69fdf7a35c99b8d99d32ec20924bcafd953c60bbedd22c2c0ccb14"
[[files]]
file = "config/customsplashscreen.json5"
hash = "edc88686e8127f3308d2fbc62a94d4d44a2fb2b15cb5de84565770a4977c3faa"
[[files]]
file = "config/customsplashscreen/background.png"
hash = "1cdaae5564cf4b3a3b5bd351b5bcc42b035b80148e6791bec652f8507e8fef16"
[[files]]
file = "config/customsplashscreen/mojangstudios.png"
hash = "27b2ea2946ca5b00841ce7d1813b42dfb7e36b12ad50c7c9bea09053ac226cf3"
[[files]]
file = "config/drippyloadingscreen/config.cfg"
hash = "b9a9956e2ad94100a2150b4467f144aae5311766761cbab67733896d7f29e92a"
[[files]]
file = "config/enchancement.json"
hash = "392fb61d3e9b72189e8c6ebdadfe51f45c99903fb15b7a64a106ad4427a86e8e"
[[files]]
file = "config/fabrication/block_logo.ini"
hash = "1a58d3ffaaf266eb0f6f3574f15559689fa237be980a13b741834d640d9a8375"
[[files]]
file = "config/fabrication/block_logo.png"
hash = "f2938cfb35d857049425b51f59ce557dd8f329e6b76bef68ffb561f118a4def0"
[[files]]
file = "config/fabrication/classic_block_drops.ini"
hash = "45e501b8528ef8d27c2a67efd27304c81cd0503f8b0671094e6653eefd394b12"
[[files]]
file = "config/fabrication/dimensional_tools.ini"
hash = "14eb4e8cd105c580403c4e5bc6bba831c81aedcf4e6e04485c74e9d3f253689f"
[[files]]
file = "config/fabrication/features.ini"
hash = "b51a635a2f5cbdc80092553cf02b0c999ebb67f1bcc76f51048846bf8db75b37"
[[files]]
file = "config/fabrication/fscript.ini"
hash = "06d742af1c186bd89bb808f7ff407865f1c08b1ebf7bb2e52ae2d042b64acd16"
[[files]]
file = "config/fabrication/gear_components.ini"
hash = "5a9291467f9f7918687a0d138a61e396cb9299b0b4ea2e4cf4f4d6f3594f865b"
[[files]]
file = "config/fabrication/item_despawn.ini"
hash = "24b26ac0b8ff13889b6b3b00b2309366eb72c36014a9679a82f4cbff46c275f4"
[[files]]
file = "config/fabrication/taggable_players.ini"
hash = "fe069b4316f910f2f3b703cedd9930b73eed74c2ae86909f8b43a8ffd3d1af45"
[[files]]
file = "config/fabrication/yeet_recipes.ini"
hash = "939cfc95ed4a7480ac08d3f692538a348af72c6db693349c61f93f926976d1f2"
[[files]]
file = "config/fancymenu/assets/icons/icon.icns"
hash = "7a2a4460b5ff3129c71d43df3cd0aacc1c83f5cc4d88602f935cea0deb01630b"
[[files]]
file = "config/fancymenu/assets/icons/icon.png"
hash = "0a2688a6308894bb56d285096a9cb9e30771f955e858a02b291e81bee95d7bac"
[[files]]
file = "config/fancymenu/assets/icons/icon16x16.png"
hash = "01a7b568a50516a39de716c53efbf26b38eb2d0ad6b25a567d6a5e6df7208fd0"
[[files]]
file = "config/fancymenu/assets/icons/icon32x32.png"
hash = "a29e531b87006a9aaaaf42f3f38ec5c80d464a6942421ca47f5ef74479887273"
[[files]]
file = "config/fancymenu/config.txt"
hash = "327d3685911de89ccac7fd2b80e72c073cf6593dc40c68bfe1db5f5185eb8fe4"
[[files]]
file = "config/fancymenu/custom_gui_screens.txt"
hash = "ff492043eaf454c46e949d5eef32ece90cc5a19feb50a161dd29a43b5732c880"
[[files]]
file = "config/fancymenu/customizablemenus.txt"
hash = "0103d063b8571d57bfd68813db0fb22850cc050739f6ce3c3c78d789ee81c52a"
[[files]]
file = "config/fancymenu/customization/menu.txt"
hash = "70a2951f34d94fdd92d88678ff7a49103e07b050cdc127965ae047f9b16ffa2d"
[[files]]
file = "config/fancymenu/customization/pause.txt"
hash = "e4e391c87a24c0699c978bbee21fbed5d5040af614c6a39e3de50ec683b21f6c"
[[files]]
file = "config/fancymenu/customization/pause2.txt"
hash = "3259ab011f9f3545b0dedfcaea2e50cf6a251af1253085f8a4bc7aa6de89c122"
[[files]]
file = "config/fancymenu/customization/pause_1.txt"
hash = "c792ad5f9c23b702a8485980da366bc9a15e96d25e62c604ad1ffa1fea43a393"
[[files]]
file = "config/fancymenu/customization/pause_10.txt"
hash = "b6caf777b6468af6440d97485c3df37c2cf66e7c47c385ce521c63eb4ed1a022"
[[files]]
file = "config/fancymenu/customization/pause_11.txt"
hash = "112a38c4ca0aca5a13fd6fbee3ee51242816f4413b0f50fde799cc226b13d001"
[[files]]
file = "config/fancymenu/customization/pause_12.txt"
hash = "63214fa9ec8ce2bd538fa552d6e765299f81547815877651bcfd56566878898d"
[[files]]
file = "config/fancymenu/customization/pause_13.txt"
hash = "3ab2a312fe4b770abb4fabbcc5606eb05520ac8da0975170ef3ca710e7d9a3f4"
[[files]]
file = "config/fancymenu/customization/pause_14.txt"
hash = "12dfbda5cb1e46f3877095004fc68d70f27f021264d85d0d2ef2d7aab7ba488e"
[[files]]
file = "config/fancymenu/customization/pause_15.txt"
hash = "a1f1f518be82190f30bba3242ea0e41145fa121e3b7ff8e5cefb41054d36472d"
[[files]]
file = "config/fancymenu/customization/pause_16.txt"
hash = "af31d3ff1d1344ec13ae072af79d892f75448c887e58197da61ba20259052e75"
[[files]]
file = "config/fancymenu/customization/pause_17.txt"
hash = "f8732af7f096c14b0a58077bfc2a091ce27b858bcae1656336b3e2f01e35858b"
[[files]]
file = "config/fancymenu/customization/pause_18.txt"
hash = "ed23fc3375ba6baff89fa74dc1801c04fff98611a92aec5b620c43b660223aaf"
[[files]]
file = "config/fancymenu/customization/pause_19.txt"
hash = "47f7ab58caa46c4cecfabd578a944c127ac74f157cf5ae129bf5fac1edf38545"
[[files]]
file = "config/fancymenu/customization/pause_2.txt"
hash = "b686869a811e209943d681575fe9978d220c9d58e88484920ced9213c2296f76"
[[files]]
file = "config/fancymenu/customization/pause_20.txt"
hash = "11718b181be0a0eaecd70b3efee9b329f132d0d916417d532e6d6ec57d498655"
[[files]]
file = "config/fancymenu/customization/pause_21.txt"
hash = "c57778c7633d28fb66b6a045801ff44c829cedf447bda410c2ad0da54f146718"
[[files]]
file = "config/fancymenu/customization/pause_22.txt"
hash = "3c19bcba508c83fc8c1c8b52a1fc93a8c45d798720ad3910b398d276d5dc455b"
[[files]]
file = "config/fancymenu/customization/pause_23.txt"
hash = "d1dcb40a9be661273c62058aa21c531a6a4de2e97420d932baf94c9520b4c3df"
[[files]]
file = "config/fancymenu/customization/pause_24.txt"
hash = "c6c9e49ba6d7bbac492bf06d4b382ae18ebfa8aaf2b68098cef1e1f8e55b98aa"
[[files]]
file = "config/fancymenu/customization/pause_25.txt"
hash = "0a6cf6084b4a31b4a8a1ce2cbf1f49d6d6bf4a0ce1a36d1b9c823fa3a829ec7b"
[[files]]
file = "config/fancymenu/customization/pause_26.txt"
hash = "a1b9a55c7c913c31769c1dd0515ab123ab26bdaff75b3d2283f1a9f9552e8c7b"
[[files]]
file = "config/fancymenu/customization/pause_27.txt"
hash = "f8e2bfcc839b77adb9b9c33140f9e5243f02bc2438f12447d64adce6534d2ae4"
[[files]]
file = "config/fancymenu/customization/pause_28.txt"
hash = "03b6849a418254eb6642e1c8c39fc31d8d3b974c527015a1683df749fecd9252"
[[files]]
file = "config/fancymenu/customization/pause_29.txt"
hash = "ab6605ddf23aa1b84dfef57bbd39d9e719873dbf75c92f92e68b483daeb28af3"
[[files]]
file = "config/fancymenu/customization/pause_3.txt"
hash = "001ed1b42517f1f2ed9984c3e00712144af14f608f8174708df91702c3f04c92"
[[files]]
file = "config/fancymenu/customization/pause_30.txt"
hash = "4608f1842ae58979ae9c67c991f3f6bf83e64ed8fcf9520abc3eb4275c470cc3"
[[files]]
file = "config/fancymenu/customization/pause_31.txt"
hash = "0459c4d4638922f0d31d10cfd71a4d09f532c96a823b8945a5c8fd76020655a9"
[[files]]
file = "config/fancymenu/customization/pause_32.txt"
hash = "54e783af5afc77210152bcdfac5ba08a78c45f23189d9c82397b7c089d01da9f"
[[files]]
file = "config/fancymenu/customization/pause_33.txt"
hash = "4a9b279532f0c8ec83322b235e82a0a2f4283e8239c06d693ac6f0f7eadeca53"
[[files]]
file = "config/fancymenu/customization/pause_34.txt"
hash = "a9334c3e1c399825315d03161d5e9c1e5457ba40f262da7c35f9343e39ae1462"
[[files]]
file = "config/fancymenu/customization/pause_35.txt"
hash = "e1e2be5229e2cac6f6b0ed26dab5bd920f57fcce0d06255eb37506a523a1b3d6"
[[files]]
file = "config/fancymenu/customization/pause_36.txt"
hash = "423633d5f3053d4dbd8c8704ecd788617dccfb1bbef6e5d9310b812e923e5505"
[[files]]
file = "config/fancymenu/customization/pause_37.txt"
hash = "c6c89b863c965fdbafab750b8dee18dac3de46bcd09e624d35b60b52581cb7f3"
[[files]]
file = "config/fancymenu/customization/pause_38.txt"
hash = "b07fba62b1c45d7f92a654dea4c5a509dbf3095f80b49a06441721857f074544"
[[files]]
file = "config/fancymenu/customization/pause_39.txt"
hash = "d8c3ef532258e0c2fe2585e99f03dee098ca8ddaae59e6a024b54e347b1f1383"
[[files]]
file = "config/fancymenu/customization/pause_4.txt"
hash = "26ea457af2bf24877f72d6917bfe9a1b28544a71c9c19e98bc7cbd13f899ff9f"
[[files]]
file = "config/fancymenu/customization/pause_40.txt"
hash = "ace433885d5bddae16a59882a1c612d590785150af9dcbe0ae56093dba27d30f"
[[files]]
file = "config/fancymenu/customization/pause_5.txt"
hash = "083521e78e4df47c370b01c0a20a6a7c1d17015d7a75aa5a2738fbc723a402db"
[[files]]
file = "config/fancymenu/customization/pause_6.txt"
hash = "daa4642c755ed1c8d9877cd0e2338f7753476cc3370326a6115a81aab1490b9f"
[[files]]
file = "config/fancymenu/customization/pause_7.txt"
hash = "d41d72e004ab57404239b2946f262deb65ab130ffe8ed1a677b53a807667330a"
[[files]]
file = "config/fancymenu/customization/pause_8.txt"
hash = "22425d4fffc8d67c1fccd7eb5e6e9b985361352b4d25fa73ff4c34acb3b91f5f"
[[files]]
file = "config/fancymenu/customization/pause_9.txt"
hash = "ac745a4803a8b1d04f88645f38c6c76bf4e5d630d8b0f6bae2781544a3a08f0b"
[[files]]
file = "config/fancymenu/customization/settings.txt"
hash = "5aa7adb42518dca1da50d0e0cbc51cf7acff32c280b0665017e567229724f4b2"
[[files]]
file = "config/fancymenu/customization/sv.txt"
hash = "477343d6bf6a8d6925fb5e94bbf966118d6849514376b0738907c97064338d8a"
[[files]]
file = "config/fancymenu/legacy_checklist.txt"
hash = "9a25d3dc708e43eabafce5479a13c02dae15bc7f673afb2745b8b2ba48a97dc0"
[[files]]
file = "config/fancymenu/locals/de_de.local"
hash = "13485f1d678322a328e798c34f1ff9f7f9c690464d1050e2e7c1ea02b0f49b61"
[[files]]
file = "config/fancymenu/locals/en_us.local"
hash = "cef0b6b4ed124cb2e5f0f19de2bd86cc59e6f7426a58d6d74bbd3554727553d4"
[[files]]
file = "config/fancymenu/locals/pl_pl.local"
hash = "66d4e9b270d4d92bffd85b13255def475d3ff6c865965deaa700be2ed1b08bc0"
[[files]]
file = "config/fancymenu/locals/pt_br.local"
hash = "0b19fc1d8bd8c86435eb39886116aceb3b4554fa749561fc87be2df0157a134c"
[[files]]
file = "config/fancymenu/locals/ru_ru.local"
hash = "2120cd2e1de7d8ec9ee8d18f24db70645e92042ba55ffbbc68403ecdc8a50fce"
[[files]]
file = "config/fancymenu/locals/uk_ua.local"
hash = "c9a592ff8445f3d8d6a87a59df27e72a67b71afcf0fc03dad27a5ded2f94a780"
[[files]]
file = "config/fancymenu/locals/zh_cn.local"
hash = "50cf30919fd2c7b11f6ce246425d657e3b93dfb919a0b6fe4730dc5d9fee0d2a"
[[files]]
file = "config/fancymenu/menu_identifiers.db"
hash = "003a1c89846741e0eb9475089d4ed653896fd08e0b994667fae452b4ad894a72"
[[files]]
file = "config/fancymenu/minecraftwindow/icons/icon16x16.png"
hash = "1d0d245784064bab88ef50d821c3a95c52c5eea0028279b08d28d1e7e6a3edee"
[[files]]
file = "config/fancymenu/minecraftwindow/icons/icon32x32.png"
hash = "75b348242e2f5bdcd6d322b27e1f0470fefe9c2cbd53cb5a5c96b2874b87f43d"
[[files]]
file = "config/fancymenu/options.txt"
hash = "ae2972919d1c65e03c586c052d8ce482cb5b2c1c1eb4190b971abc2265ff0995"
[[files]]
file = "config/fancymenu/ui_themes/dark.json"
hash = "43ac9bee88f1a4c9b66fee0d4b6fcec14a52feab46bf803928aabed96f510cc9"
[[files]]
file = "config/fancymenu/ui_themes/light.json"
hash = "6954379d658fdf496f162792a3244f0f08635858ed4b0553a718a7ef63b8a620"
[[files]]
file = "config/fancymenu/user_variables.db"
hash = "3d7d4cda73d6bde134a568ccbe4e8d2e7fbe701570012b71fa45acdb2258c823"
[[files]]
file = "config/infinity/.util/evicted_files.json"
hash = "13b2f1c52c76a41c7b687892410d2bd70232dd04b77ea92704278652160dad11"
[[files]]
file = "config/infinity/.util/noise.json"
hash = "a00f4d9c0242217a4fab370a406808298afc5d1de0fbcdac02d72870f54c90a6"
[[files]]
file = "config/infinity/.util/noise_router/amplified.json"
hash = "602be3fc471862a11a451251c9066a355e7aab4a64d5548be164c5e333954589"
[[files]]
file = "config/infinity/.util/noise_router/caves.json"
hash = "b399aa8f10df3e115ec6e7fbb965f09d53bb59bdb5742c05c3cfe3933045b715"
[[files]]
file = "config/infinity/.util/noise_router/end.json"
hash = "6bca17a3194532140ad220241e29a01ab99693309731b5cca9f59763f41171c3"
[[files]]
file = "config/infinity/.util/noise_router/floating_islands.json"
hash = "fa436adb2bc9fb203f249f231db392fa0b04d0833168f30a99734bf720563439"
[[files]]
file = "config/infinity/.util/noise_router/large_biomes.json"
hash = "bf5bb054daa8d644bc9815f991804f6016885fc2e612812644ed69f4a15a38bc"
[[files]]
file = "config/infinity/.util/noise_router/overworld.json"
hash = "c90d30159da7913c16f446bd94c8753836694121643f9795675445456d0b7f3f"
[[files]]
file = "config/infinity/.util/noise_router/tangled.json"
hash = "25ea6e94d32cb4e0f27e28ad7e675c592ce0485c9e33eed971f61b8bb2e73c0f"
[[files]]
file = "config/infinity/.util/noise_router/whack.json"
hash = "1f36dad58abb32d3a14bf8ba18dcd1fdd54c2125cebfa720fa3d3778afc032e5"
[[files]]
file = "config/infinity/.util/placements/tree_vanilla.json"
hash = "823f999ee1a38784c02cfa9beb142a4cb6581b4b9584f621351ffa93bbcc0d7f"
[[files]]
file = "config/infinity/.util/preplacements/floatingpatch.json"
hash = "9599720c8acca5aeff0cf0d813abd6d2faf3e98b061a38687d9a1d476a209bac"
[[files]]
file = "config/infinity/.util/preplacements/surfacepatch.json"
hash = "84ad197440247ad806c3acbb67c126e4a65051d020b40c5e006a75f207626cde"
[[files]]
file = "config/infinity/.util/shader.json"
hash = "86afe960c5ea5dcdc88ed1330e307ea07a1a1f16e0c846eeca767cbf4f54d116"
[[files]]
file = "config/infinity/.util/spawn_target/default.json"
hash = "b14414ade1d9c54db153ae0663a7640c91b9bdee79a1648072edb8242432d042"
[[files]]
file = "config/infinity/.util/spawn_target/overworld.json"
hash = "00b70053b36fb42092bbe7da188d01e1a97a12bffedc549aa78a3a171517c06f"
[[files]]
file = "config/infinity/.util/structure_tags.json"
hash = "f4d7701b1e48abae310cf0b01775cb9c45a70d11b566eb36cb528753a05c0bde"
[[files]]
file = "config/infinity/.util/surface_rule/bedrock_floor.json"
hash = "92ef6a429f862bdb5ac551a7c5f5acc762f76265014cbf6347de9961193cea0d"
[[files]]
file = "config/infinity/.util/surface_rule/bedrock_roof.json"
hash = "4974c2233a2596bb59cfa263c522817f3027389b4cc466678e8dd3dfa497e189"
[[files]]
file = "config/infinity/.util/surface_rule/custom/ceiling.json"
hash = "78edfc10972d76640c61d4840f466e09efe5fb22c58d79ba118afe36eb8bd36a"
[[files]]
file = "config/infinity/.util/surface_rule/custom/dirt.json"
hash = "3b3563b12afadbab97d0a1b26ac2033fdb3e1ed6633fa234abbbea9d99e5c2de"
[[files]]
file = "config/infinity/.util/surface_rule/custom/final.json"
hash = "1f04097631b7490e6ca81bf1e5a3b6173b79dbaf2740aaf5703d9a2795e9eef3"
[[files]]
file = "config/infinity/.util/surface_rule/custom/grass.json"
hash = "ea1c57941fc12ef71e6ca8659abb26d07acd8d3190edd9ed17902fc40d7cd625"
[[files]]
file = "config/infinity/.util/surface_rule/deepslate.json"
hash = "c186d68ce20bd4a8337383d7e1ed21f07050eea22acf474eda3e812f8d3e18a1"
[[files]]
file = "config/infinity/.util/surface_rule/default.json"
hash = "196b1ae2605369c5913e319f79cf1f1381501bc8abfcfc408bc3b755a4dc128f"
[[files]]
file = "config/infinity/easter/ant.json"
hash = "086852d99953eece66b13032553332dbdf829ac2dc7ec460c40df67bbb115e3c"
[[files]]
file = "config/infinity/easter/blue.json"
hash = "76be5b73cb49e2a795ec8649b50420fbbbad35e479f4e1277fcc1210e561ac5b"
[[files]]
file = "config/infinity/easter/chaos.json"
hash = "b10f7a10e2d8e19dd28e24f537343473dd415629a5fe807ac55be4ecb2cdbc43"
[[files]]
file = "config/infinity/easter/chess.json"
hash = "82435204518b74d1e2da2f3db30e8a75997a6917976727450efef0a27280e359"
[[files]]
file = "config/infinity/easter/classic.json"
hash = "cf0c471360cd6d603db4b9dc456715e88e51956fdaffc3b1f9352b80694ed655"
[[files]]
file = "config/infinity/easter/colors.json"
hash = "d735656ba35b14e698a4804cb169464e320ed01e33ce1b9e0353bb0a76214427"
[[files]]
file = "config/infinity/easter/content.json"
hash = "35b299dfb027cc41b90b8358be85ce809641de92631eeeac0fe0e081fc43db54"
[[files]]
file = "config/infinity/easter/credits.json"
hash = "a01755048a5ddd60e34c99a9886a42c8c48561c3d82f94fed6624a90fd289f3a"
[[files]]
file = "config/infinity/easter/custom.json"
hash = "cfaa5d223fc24ef07f032811f9c4dfbe99d15890a6399f6bfca07c7f2c337856"
[[files]]
file = "config/infinity/easter/debug.json"
hash = "ed212492f5fdf3cb4cc2cda519fd375fc5002c4791b3baa8197fa90174c14c69"
[[files]]
file = "config/infinity/easter/elephants.json"
hash = "f6b71b7d64ac10fd84144873ad611fd07beb4245b15321b33dbf677d4ef4943f"
[[files]]
file = "config/infinity/easter/empty.json"
hash = "5513bf8f66199920e73559285d96ef0e6443720c7301647ba6ea0b3e4a2e2615"
[[files]]
file = "config/infinity/easter/green.json"
hash = "91d50b5ed0193d96dd85933b138515c973d191aa936dbd70398aacb2300a2762"
[[files]]
file = "config/infinity/easter/hills.json"
hash = "71bf1d12a6101346d650020abd23fb58f0411701bac151e971dd0314294e8554"
[[files]]
file = "config/infinity/easter/isolation.json"
hash = "2d02c363f5d7d40894b862612596926700cc67353f7c81c0f3245bbfad86ba27"
[[files]]
file = "config/infinity/easter/library.json"
hash = "946b6bb76cb71c8932fcf37d8134f8f908744f5c56c6403a4b554a4cddd8a1f3"
[[files]]
file = "config/infinity/easter/missing.json"
hash = "35b8b8b7f19a4d2c6732d312bf9751aed897472b12a11f45328482849d4ce9b6"
[[files]]
file = "config/infinity/easter/nexus.json"
hash = "4413f758084d28af2a0f47de91c41801a0d8dbdae9789fcf7aa1d2275eb3fead"
[[files]]
file = "config/infinity/easter/perfection.json"
hash = "4e6def500c5caa167fda3101dc24485df19f62427a99008adcdc89a50b02f57b"
[[files]]
file = "config/infinity/easter/pride.json"
hash = "68eab77049bec7b9a79fa68eed5e0341a8ea3d87b6e3ae6c010312f07a68e2e7"
[[files]]
file = "config/infinity/easter/random_forest.json"
hash = "3019a00904aab21125ba25b92a4576332d498230dd8c97320b83d1422275e8f9"
[[files]]
file = "config/infinity/easter/red.json"
hash = "c5a2dcc45493ff688d90412ddd64f00469d82234594075e82aa290fb7e6566e1"
[[files]]
file = "config/infinity/easter/skygrid.json"
hash = "45daaf70a725b0d38de7de5958d1b1109592c4a6750d7a18fe37b3025acef123"
[[files]]
file = "config/infinity/easter/slime.json"
hash = "be84ddf013b54f022de65906bcdbf5fedc7e852c43f07dbdd60080162570c4d5"
[[files]]
file = "config/infinity/easter/spiral.json"
hash = "9762ad340e02e1a12333b3367bc35edc9f90f22da8622a7476e3df7a9eb63ef4"
[[files]]
file = "config/infinity/easter/sponge.json"
hash = "7fb806cc347910876761aff5d296b493840f1a6221d5e549a6dc57f5110cc3f5"
[[files]]
file = "config/infinity/easter/terminal.json"
hash = "de6389257610b4456a94513d6f98d64a07a95f51002848b4a3ba2d2ed34371f8"
[[files]]
file = "config/infinity/hardcoded/biome_source_types.json"
hash = "f07ae6744b45d815c0377f99873e13656f891807b855fc89856787b6be83bb9f"
[[files]]
file = "config/infinity/hardcoded/dimension_effects.json"
hash = "e4d77791a47167c956747b5a1347a885e89b91c96ddc377632829adce9766a9b"
[[files]]
file = "config/infinity/hardcoded/floral_distribution.json"
hash = "195ca2fd359c6cc2b34408caa58787fdcd00e43ac5d4ea7e7daffc1e4fde1b16"
[[files]]
file = "config/infinity/hardcoded/foliage_placers.json"
hash = "dc9a3a4999882f825288618f408e18e4efde8d49523b4a2133a18daa09333f37"
[[files]]
file = "config/infinity/hardcoded/generator_types.json"
hash = "faaf9e39823b7d927ebd582b66bdafdc6f0a301465d09acfb1169a80f80889ed"
[[files]]
file = "config/infinity/hardcoded/mob_categories.json"
hash = "89ae10c80e0ae2faa6e3ba273b759857b05ffe73a2e4981d44cb46adb84c1666"
[[files]]
file = "config/infinity/hardcoded/multinoise_presets.json"
hash = "5f076e6149042990208191db1732df562eafaea510d279fa32eb6195b1b6696a"
[[files]]
file = "config/infinity/hardcoded/noise_presets.json"
hash = "b1764acb0402709c4fdaad813f4f9a39db795ec6c4ffed1c8d33133a639b89fc"
[[files]]
file = "config/infinity/hardcoded/ruined_portal_placements.json"
hash = "16f3125d72afa5ec5e0352d7ab37523955203b3f1f189b335c7613e24fc1e0e2"
[[files]]
file = "config/infinity/hardcoded/shape_types.json"
hash = "6ec3ea868ce96d66bb238ae570f5bcac1a970e14c7407e72d1a3b284d8bb08de"
[[files]]
file = "config/infinity/hardcoded/structure_placement_types.json"
hash = "022b73633883c616c4f00a61c22346b71f0817a0276ddcce5ca1707405c2a705"
[[files]]
file = "config/infinity/hardcoded/tree_decorators.json"
hash = "514acdf691dd75b143fac0962058048110f505ce9e4c022f2fc613522e55acc5"
[[files]]
file = "config/infinity/hardcoded/trunk_placers.json"
hash = "353c7e04d5d9b9fc05d175532b38051b5cdcd21ae47f147a09032528173d1a5b"
[[files]]
file = "config/infinity/infinity.json"
hash = "752a414225b35a77d7fc46e05f923ef4ebf7199de58bb8809d6ed61767fa7300"
[[files]]
file = "config/infinity/modular/aether/blocks/blocks.json"
hash = "55ea549fb965b2beda35aa993358b2f4c86a80b98291280c7bdf8c6f69965c8e"
[[files]]
file = "config/infinity/modular/aether/blocks/flowers.json"
hash = "add06db0af7d0d6cd663fd6e1dc4f6b991979c4d8f666256b91cd87930ca178c"
[[files]]
file = "config/infinity/modular/aether/extra/effects.json"
hash = "08929b5908ec097aede8531de09ee7915cf0899770531782bec26304b1f96e3f"
[[files]]
file = "config/infinity/modular/aether/extra/mobs.json"
hash = "91840983aa90589a310876914086733c7d1e9b1ba62beee9394b3ae5c518782b"
[[files]]
file = "config/infinity/modular/aether/extra/trees.json"
hash = "afdae542b8ff6a0955f0cf7189d3551bb1031e81401570da3678d5ef13650ef1"
[[files]]
file = "config/infinity/modular/aether/misc/biomes.json"
hash = "5c8cbad3d42324e5f5eed49085ad261491a4525a64fc7783dad1cdcb12f005e5"
[[files]]
file = "config/infinity/modular/aether/misc/items.json"
hash = "8aa3b1e0ee8fba31fe7836d458ffe420ef88f599cdb7f560e8aa2270bb48cecf"
[[files]]
file = "config/infinity/modular/aether/misc/music.json"
hash = "23867db0d04ab9d2da4b319333bdddc470900587447821ccefdffce3ee3a5a31"
[[files]]
file = "config/infinity/modular/aether/misc/particles.json"
hash = "fc98039c957909044424a21f0b62215f0d4d0df0f9707b99d0be11eedf43be1a"
[[files]]
file = "config/infinity/modular/aether/misc/sounds.json"
hash = "3ea0917b303d322c7414bd0f2a51fdd353526bb5e42dc93c202bd6af0d721d20"
[[files]]
file = "config/infinity/modular/aether/misc/tags.json"
hash = "6190020a18badd815ecff98f8d52c2e3e87b5bd6d481e4c73de97311ebc98bd5"
[[files]]
file = "config/infinity/modular/amendments/blocks/blocks.json"
hash = "ffde936d03e8d0dbae10dd7b5df043f1b889f719050e30a6062ea92da2bfb059"
[[files]]
file = "config/infinity/modular/amendments/misc/items.json"
hash = "4c72dbdafb5396467916c6753bd20187b71364bd76cc71d9abf33fbc2dc3b0c3"
[[files]]
file = "config/infinity/modular/amendments/misc/particles.json"
hash = "93de3fb280c9c2903bdedfd4a24645162cc22501d65a33fa806d6e88d5845f1b"
[[files]]
file = "config/infinity/modular/amendments/misc/tags.json"
hash = "8c88ab6f975ac5bc18c3c9d11659a659795e0a26f7104017fe01c24f80204b75"
[[files]]
file = "config/infinity/modular/blahaj/blocks/blocks.json"
hash = "27957ba43cbef1ceec134c358ae59965641040f0652c9a17ef70686d4575bda7"
[[files]]
file = "config/infinity/modular/blahaj/misc/items.json"
hash = "0c319fee3c1940556231de0ece176294c94fa9f433cd17c805d1eedbf791f6e8"
[[files]]
file = "config/infinity/modular/c/misc/tags.json"
hash = "e8639b12d5c1a8f0ed8b9d5ebed4c552e2a5ec34d87f16037fea39361f3dc387"
[[files]]
file = "config/infinity/modular/comforts/blocks/blocks.json"
hash = "250950eec8c05191facbd85f3b305a1ff90251b8a73f45f07096605df4148107"
[[files]]
file = "config/infinity/modular/comforts/misc/items.json"
hash = "f7d4225ec537c0cb20e167eb177b90e99a75c713add6d678dc45d6624b938c04"
[[files]]
file = "config/infinity/modular/comforts/misc/tags.json"
hash = "bb3d770746ac62f36ffa7975a8bfcf8eabf4d0d9548fa3c995712b1e54daa90b"
[[files]]
file = "config/infinity/modular/enchancement/misc/particles.json"
hash = "ae918ff6001a8221454e91f184d675ff03b09aad76a65371ee8fc74b33ffa550"
[[files]]
file = "config/infinity/modular/enchancement/misc/sounds.json"
hash = "5e8eafa548b2beef450481b54692f71f9adfa39f4ba655e034adf6a464536f5d"
[[files]]
file = "config/infinity/modular/enchancement/misc/tags.json"
hash = "068645d858973579d2fb3670b7dac1301cd8c28b66281d1e5a7ebf2c69cf4f48"
[[files]]
file = "config/infinity/modular/fwaystones/blocks/blocks.json"
hash = "c760241878d16bd34dce999b72114ba830bfb00c4c07388100c9ad335bf08a5f"
[[files]]
file = "config/infinity/modular/fwaystones/misc/items.json"
hash = "53c6c7093784926531242e4e6d7568e939be64de70efc62a8c639679a4f12384"
[[files]]
file = "config/infinity/modular/fwaystones/misc/tags.json"
hash = "89db21138cf4e0be0170a3651be5d45d05f888b0876cdb486089c37b17256801"
[[files]]
file = "config/infinity/modular/infinity/blocks/blocks.json"
hash = "3c1e0c2134411c0bb2d1575d45b83c9e3cb838ba4e7fe3516c763259b89e6487"
[[files]]
file = "config/infinity/modular/infinity/blocks/fluids.json"
hash = "c4cf89a165103562e4b2d7852da37fa5e29565a1949e770b109979caa971f0ca"
[[files]]
file = "config/infinity/modular/infinity/extra/effects.json"
hash = "ee409b5d082a3aecd4d630946beb7e204c9ee47c48a59c1a4221b97570a1afb1"
[[files]]
file = "config/infinity/modular/infinity/extra/mobs.json"
hash = "52e8b4956de7d6db24aa1fb53b942183c01ba625c8abf201ee3bef6608bd41f0"
[[files]]
file = "config/infinity/modular/infinity/extra/structures.json"
hash = "54e70865ed9f8a280d84b9bc0ae2d4e35cf1e2d6271e8aa67d35832c5c9a4aa0"
[[files]]
file = "config/infinity/modular/infinity/extra/trees.json"
hash = "98e616341f734204b248f65c179dad50924de21cd3e73a05bc8b58d8817c0005"
[[files]]
file = "config/infinity/modular/infinity/misc/items.json"
hash = "87ed26a4f368cab6e757b65d771829a3bb088d7aec92837fbee26a0ea0cd7170"
[[files]]
file = "config/infinity/modular/infinity/misc/music.json"
hash = "b9c884383cc9080ed363c7cd2c35287c648dda205427e26bf8dcbcbda5c28636"
[[files]]
file = "config/infinity/modular/invocation.lock"
hash = "9b39a9814d3e7ca3ca9a0f6a30033572397911987bfaf2fa872978db0638e85b"
[[files]]
file = "config/infinity/modular/minecraft/blocks/airs.json"
hash = "1a1b8a238c338c1ed8b9e33792f985e622152e018e8dcb52e0395e7326900e54"
[[files]]
file = "config/infinity/modular/minecraft/blocks/blocks.json"
hash = "9a96a0ea536b03bb8cb3005c23d9bf9758a31a7b61a6c6eb0cca6cfa2ec44572"
[[files]]
file = "config/infinity/modular/minecraft/blocks/flowers.json"
hash = "983ce36cd08946bd112a46958db052bacc7e697c719afa1a164bb1e1701a05d3"
[[files]]
file = "config/infinity/modular/minecraft/blocks/fluids.json"
hash = "7883664b4af53b7278b49e9ed98300a882ea78b396b2992dbcda6ab1b3b62983"
[[files]]
file = "config/infinity/modular/minecraft/extra/color_presets.json"
hash = "5ca6d3759275cc2e7772ca1d424d1a6960e818a514484db7f71c4ea263d95d6e"
[[files]]
file = "config/infinity/modular/minecraft/extra/crops.json"
hash = "aa6bb9346a724169bac5f7b242e7407eef6fac4a09425d91bb9e5caad286dd91"
[[files]]
file = "config/infinity/modular/minecraft/extra/effects.json"
hash = "10cf377ab6db7237f32ad15ca56e53c4737c523ecd759583d2b0dec4fdf6b550"
[[files]]
file = "config/infinity/modular/minecraft/extra/mobs.json"
hash = "027a2223592a1d135a269de3a6e52e875d504a83b9e3766aec2fc6e05e89253f"
[[files]]
file = "config/infinity/modular/minecraft/extra/structures.json"
hash = "e262f2b36be8e706fc8c133efce3fbf55f36d4b89eea183f430e2a8c3f1d6fbb"
[[files]]
file = "config/infinity/modular/minecraft/extra/trees.json"
hash = "2e369ec5a047404f461f1c22bd400eee0bfc488293b9333550c669a2359dd97a"
[[files]]
file = "config/infinity/modular/minecraft/features/fluidsprings.json"
hash = "2717438cb7a18e675813b9bddfc56116b0b37fbd72a10ac89e6c1c3bcf7a2535"
[[files]]
file = "config/infinity/modular/minecraft/features/lakes.json"
hash = "e4d57a7cc0407e595295fe0bec79e2e6a73d6b64f2d0b8ed94e6f61595abe293"
[[files]]
file = "config/infinity/modular/minecraft/features/localmodifications.json"
hash = "b7da86460fa4d592be58559c2d9cb99d1c82cbddd3f3fe6213ba6b89f1efc3e5"
[[files]]
file = "config/infinity/modular/minecraft/features/rawgeneration.json"
hash = "484df93f8e2d5ce8af948be490d6e565f7d59440b6eec6eb1cbd20b9a59e9ba7"
[[files]]
file = "config/infinity/modular/minecraft/features/strongholds.json"
hash = "5175fefa7a674eac6813742f3d571f162b1fe091816ad26d9630eded1d2eb3a0"
[[files]]
file = "config/infinity/modular/minecraft/features/surfacestructures.json"
hash = "b27eee6c1d7f17090577ccfe45f09d67ec6163d4f42826aa84cf8195b426d42e"
[[files]]
file = "config/infinity/modular/minecraft/features/toplayermodification.json"
hash = "a741e26367aaae7c78a000dd8af88cd0b3d41ec78461587597fb371f4bb1a2a1"
[[files]]
file = "config/infinity/modular/minecraft/features/undergrounddecoration.json"
hash = "344fad1a134c9638e7854ba3fea2c90087913db2d515229e3f708404313eb5ad"
[[files]]
file = "config/infinity/modular/minecraft/features/undergroundores.json"
hash = "dd60638807ddf27e650e7cf81918d1c42d2105377651a64f7ea1c1f1534a9f31"
[[files]]
file = "config/infinity/modular/minecraft/features/undergroundstructures.json"
hash = "37d26ce518ef50acfb869582fd0444b13eedef2dfa0606afd5d8f788b1626c0c"
[[files]]
file = "config/infinity/modular/minecraft/misc/biomes.json"
hash = "19ae547fb52b7533f13c72051ec523c97d415dd2722e18092ce7d64d708270b8"
[[files]]
file = "config/infinity/modular/minecraft/misc/carvers.json"
hash = "9cc62b30e07c2f056b2c0fb37e531e2071f7ff4b3ea7d273342f1a5d78bc5a21"
[[files]]
file = "config/infinity/modular/minecraft/misc/items.json"
hash = "081ef905b5d9e43a60d390b84fe905c974c5e6629e99be04be9b9cb0abed0add"
[[files]]
file = "config/infinity/modular/minecraft/misc/music.json"
hash = "fd564f5464c8f2d8286aedb00b2ff366cfc9d516417c47eac2fd425e66daa45f"
[[files]]
file = "config/infinity/modular/minecraft/misc/particles.json"
hash = "8af17c6785f245e5d2f1b4abe504277b0b77e09f0a01fd2f06cb786ac3ee6314"
[[files]]
file = "config/infinity/modular/minecraft/misc/sounds.json"
hash = "567ef51cce3c507438594d54394403b3cf1131ea62bf124fc2cf710b4c6eafe3"
[[files]]
file = "config/infinity/modular/minecraft/misc/tags.json"
hash = "0394c8708b06c6ce29a0f203623cecc9061879737f6be15899fe6646f11cf0ba"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/badlands.json"
hash = "12712e02bd9d31936c5d2a99013f5afbfe2b8ba3cf3c2eefa1d0299592413b4c"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/basalt_deltas.json"
hash = "94ef24192541e6bfc5f29fc14ef46c0f589182941a7dd16302e1e699be2d7c3b"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/beach.json"
hash = "5eeb623dad40829df34ae7cbd37d83af4c8f2924438aad06fc7639091648d112"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/crimson_forest.json"
hash = "c354f4fb5182a5abbd75ac4f19736956287e224af4efa08a5dec08519eb15ab2"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/deep_frozen_ocean.json"
hash = "6d1abab07ff57afcd85efecc903307418a06d59dead8e119c809978713e383e0"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/deep_lukewarm_ocean.json"
hash = "706b2c2ff22b1a1c36f6c1db350f46fc7eafdad3d6bbaf880ffaf21e616ffda0"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/default.json"
hash = "9a95cb8f503f1641cb243aa85de92bbd01a18f1ccded40328d6d41f894f9c925"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/default_overworld.json"
hash = "0c3aaa34a9594138a025ccf33545a1189f7d144274e9f9e07090f61f4da5d83d"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/desert.json"
hash = "0059867515439025142f0d54f3fc6702f20f5c483f4257c6e03dffdc95fed78c"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/dripstone_caves.json"
hash = "f7398cf7cda74f0140c980a7d8923edd9c17ab8b0eb34aca1cbe2c43ddd23c64"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/end.json"
hash = "e05318a1c08083fd63196e5109627d576f2e19486276c6e6988064fdba5e95c3"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/eroded_badlands.json"
hash = "cea64fe7a70b56a3da53fc27fddadc3435dc15d78968593642164f5c0af9710f"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/frozen_ocean.json"
hash = "c6ae2f6a7ba5961e54bf4c231329db1634017568fcf7d4b24df784dc87080e33"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/frozen_peaks.json"
hash = "f740e139873912d94cbe3f5a97b1bdaa82182a12ebcba00f19b17519328134d9"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/grove.json"
hash = "68bce9bccd82b865a566c0ec86c3c310ef11a83703fc6d88abd1abbce6cb5587"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/ice_spikes.json"
hash = "27e584d82bb3a8116e9315c6b0fbb9b88731b82e073a8d7dd749b33e6ff8f770"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/jagged_peaks.json"
hash = "d46ef8c9af6a6513de44e82378efa2185c191fc0afe388f99704f0426ccb7abd"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/lukewarm_ocean.json"
hash = "327556008b9e17dad0c45ee8247830c4ac793ce6dea5db23972e085e7b2caa4a"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/mangrove_swamp.json"
hash = "c4c363679e76f8f57f332c97c55a98e7d9e7b5e1af217fa45eccb0517b20a2c7"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/mushroom_fields.json"
hash = "a0edf0c6ff3c95a8ae0db138e673c306010b38d4a89bbd37db1512c83ce6093f"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/nether_wastes.json"
hash = "d28ba508dd9954b71af68b7aab45ad3f9ae85d5b1e9c03ba2ed76c83e2a42fa3"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/old_growth_pine_taiga.json"
hash = "bd274b3ba6c738315831398f4d4d45629e897b69bb8b1a1cfbb66d14d057ffb9"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/old_growth_spruce_taiga.json"
hash = "b03a9766b4449d859355186549955d6bc13df8ee9243eb4d34564013710f6ce6"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/snowy_beach.json"
hash = "622da31610b25b329754692bb4105f8b77d9d68ab1b25731078edb9dc79c7f0d"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/snowy_slopes.json"
hash = "fca1e22b4dee6b353fc0a7177769945ac60df82fd098fd3e4c84d67e2cba390a"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/soul_sand_valley.json"
hash = "14de10de3455fddacb6385ca1d56694d024daa1ffb46bc47e46d07e834b9745e"
[[files]]
file = "config/infinity/modular/minecraft/surface_rule/stony_peaks.json"