-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.toml
8399 lines (6334 loc) · 369 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 = "README.md"
hash = "f0032bb2e3774c212f26a981dfa4eb82ccdd44e2acc82ba65a5800bbd38f2a2e"
[[files]]
file = "config/LunaPixelStudios"
hash = "a672c3b7c4cebcf67250197d20679885e0beb0b5b9ffad170e684fda9ee58f3c"
[[files]]
file = "config/Mekanism/world.toml"
hash = "4afe6819aa4da9a2317c4f8578c4fbb74b941a90875d142cc8b699531f898267"
[[files]]
file = "config/MusicTriggers/channels.toml"
hash = "b0bfa68362bfaa6dd8decbf757009c5e6ed87b3faa3a8477fba23e7ee8850b02"
[[files]]
file = "config/MusicTriggers/debug.toml"
hash = "aa12e2f35e5478f4e0277e15223fe57c15327a30466641c9ddace8a6d7bb3fe4"
[[files]]
file = "config/MusicTriggers/example/commands.toml"
hash = "8bdd3884c1b428c5357a5b6ee78d1073acfae08460fb4dd823b97a1accad6251"
[[files]]
file = "config/MusicTriggers/example/jukebox.txt"
hash = "a1a5822f28ad5c597498ee532838cef17a747f020f21c72fcc8a419f5134d53b"
[[files]]
file = "config/MusicTriggers/example/main.toml"
hash = "096ac4a4d4a4d0d8f1311bf5248756ea5e95c389d86d0fcf163042079fe2d365"
[[files]]
file = "config/MusicTriggers/example/redirect.txt"
hash = "d8db2d12f48439d9f3b316afef799f9fe9b06ff791acd995771eee21a35dde59"
[[files]]
file = "config/MusicTriggers/example/toggles.toml"
hash = "d2dbca3eb827eaaee393ba1ee0460b8d5619a48914e89065c9d5450e00de4a7c"
[[files]]
file = "config/MusicTriggers/example/transitions.toml"
hash = "b013fb3249c811335a1f75baee19ad0e7012f4e7c404b7947103fdb7b95fcfbe"
[[files]]
file = "config/MusicTriggers/registration.toml"
hash = "d674ad8b711aea989e45dcc154feda2c42a1c61127b56f8b2992faab965d9b9a"
[[files]]
file = "config/MusicTriggers/songs/godseyesarelikemymotherseyes.mp3"
hash = "9af0f103b41fba6756c3fca7af4d809910fbe8487a52a56d0f46c6aa879d89b9"
[[files]]
file = "config/MusicTriggers/songs/heavenexistsandisfullofpoorpeople.mp3"
hash = "c33951a5e91a566d8b6590b44cc1c8190c1f58d39257607726bda9a8057fbff1"
[[files]]
file = "config/MusicTriggers/songs/mainmenu.mp3"
hash = "b81df3feabafe86791ccbcc422e8ba26a82b8823b9999a2a202bb3c6fcbd2d79"
[[files]]
file = "config/MusicTriggers/songs/relic2.mp3"
hash = "4be532f5e201b09032ccf9da5330104f3da9659bd95bf04cf95f6c23457cf6e7"
[[files]]
file = "config/MusicTriggers/songs/relic4_1.mp3"
hash = "aad833392335857b48b8a26deef8dc1cbf00a52ae88045dba7918036a01f78c6"
[[files]]
file = "config/MusicTriggers/songs/relic4_2.mp3"
hash = "c1a63c352906c87dab06cff12e67767148195d070108ce2f654631de114865d3"
[[files]]
file = "config/MusicTriggers/songs/relic6.mp3"
hash = "3d7054bdd7c890292ce00ba9134bc86a7f36f556631b40856df8270f78bf29de"
[[files]]
file = "config/MusicTriggers/songs/relic9.mp3"
hash = "49d374542a3cec6a6a898f7cb7b709c1d1f93d5b8e26befada28013bd3be87ca"
[[files]]
file = "config/MusicTriggers/songs/silicontransmittercompress.mp3"
hash = "66d3526fdfc2819dba56f9b06477ebfe42448d759bc8f1b374791923b0af3e0a"
[[files]]
file = "config/MusicTriggers/songs/silicontransmitterdecay.mp3"
hash = "1a508540cab72e9b816590ae71195fe945920cfba27a57558c378d4309bde65b"
[[files]]
file = "config/MusicTriggers/songs/silicontransmitterruin.mp3"
hash = "d40ef5566a597a2edd3a744fac6762303addc4f9a39d20fa45ca51abdb0fc897"
[[files]]
file = "config/MusicTriggers/songs/thankyouforgivingsomuch.mp3"
hash = "b81df3feabafe86791ccbcc422e8ba26a82b8823b9999a2a202bb3c6fcbd2d79"
[[files]]
file = "config/MusicTriggers/songs/thegloriousexperienceofdyingpeacefully.mp3"
hash = "207b5eed80335e42a6719c66d8eba262171587b507fa829fcfb377f6a4f4aa77"
[[files]]
file = "config/MusicTriggers/songs/wheredoyouhideinthebrightlight.mp3"
hash = "db6e7a04f10b801db1b2b24e3f08a99514237577363d9fe8ad3b80f2b4800553"
[[files]]
file = "config/ae2/client.json"
hash = "d3e7030c1e712e1d10f07716ac18e6499a6963507e68fd1a74ccdee8fd7c823d"
[[files]]
file = "config/ae2/common.json"
hash = "a6e17f32066945fc78ff7f78bcc67b4c80ee3f0cc0282a83670b5188c7b77297"
[[files]]
file = "config/ae2/common.json.bak"
hash = "c6feb69f61dc6288748d3d5e4fea334558a5db4b4f2d78a3bbdbd07e52cdeb9c"
[[files]]
file = "config/almostunified/debug.json"
hash = "4f1808d3941300cf6e2c53b5a37f2808a4d904e63597cd4e03a03d19e4762fef"
[[files]]
file = "config/almostunified/duplicates.json"
hash = "153d252f0802b79517673c25c891c72b1e52566d7dac172832c6a83cfc224a90"
[[files]]
file = "config/almostunified/startup.json"
hash = "ad711622f9b8c5cc8115f52396f5d82587b809fb20cbf9d94c7744aeebcaf4d5"
[[files]]
file = "config/almostunified/unify.json"
hash = "6e9ec2b402116dc2f28a268acf2a07743038677ce772bdef899a70db7532cce0"
[[files]]
file = "config/botania-client.toml"
hash = "b30e5c177cec07cda8f332ca645d40d3917fb3e13e0b2f51bf0fc393bf933d92"
[[files]]
file = "config/create-client.toml"
hash = "667b50af91a4312360fac0502a25f9497e745e3e321b297ed4efb6e257e81db4"
[[files]]
file = "config/create-common.toml"
hash = "b97f2dcaa2b14666eb4f846fe2c92079a7f0484cf70495d885f0b06039820236"
[[files]]
file = "config/defaultworldtype/client-config.toml"
hash = "da9776febdf43ec722c549596be77f1275ed2482fa667107f5277fba5abfd8ea"
[[files]]
file = "config/emi.css"
hash = "04aa98aaa9d9915743aad1731e4e188e3c6bce024a8148a2037edf70460c2392"
[[files]]
file = "config/fancymenu/assets/blackbackground.png"
hash = "d7da16ca03c4543195c9d6a545d0c7a590067b329ae8527672505d6b9899f52d"
[[files]]
file = "config/fancymenu/assets/circuit.png"
hash = "d08672398f32cb6bcc50abef9b1d1b45cb22e3246627c3d11dbb73e323ddadab"
[[files]]
file = "config/fancymenu/assets/circuit_cpu_on.png"
hash = "9f303ccb5c3a8e9ef0efbd3abc6ab0fcfae286afe4d4ea69906b141c9f6cd1c0"
[[files]]
file = "config/fancymenu/assets/compression16.png"
hash = "02ea842f03585dc58ea0cda0f6c70385b3143bc74b9cead4479c99375047946e"
[[files]]
file = "config/fancymenu/assets/compression32.png"
hash = "f7e42fc5e1e919151c65a0a36aed777d4e592cf97a1292b2ecf816b611c81a68"
[[files]]
file = "config/fancymenu/assets/compressionexit.png"
hash = "28438fa95acebd1df0730b2060828c22bfbd4304d4a7688aa9890e29dd76e1d8"
[[files]]
file = "config/fancymenu/assets/compressionexitarrow.png"
hash = "bcd37766896061df55c4d72736847348b8f78dbc5415f5bb1b765a1aa5f0d07d"
[[files]]
file = "config/fancymenu/assets/compressioneyeloading.png"
hash = "4be72fa7606c527ed10b63d0bf29aa30f6da820d03860a4bb97c5dd6ccfe5c6c"
[[files]]
file = "config/fancymenu/assets/compressionicon.icns"
hash = "803f04994339c9b15cca17b91a260006f1d3811c7ae29a9a93560d83511fff35"
[[files]]
file = "config/fancymenu/assets/compressionicon.png"
hash = "b1e3c0eed821bddc9df71a888da034735ad7631c2ee76a98372d518577ff74ad"
[[files]]
file = "config/fancymenu/assets/compressioniconblackbackground.png"
hash = "27b9d0879c856f660f92c153a85f48025c2b5b044bbc994956dadc079932cf86"
[[files]]
file = "config/fancymenu/assets/compressionlogo.png"
hash = "611f848472a2816860eb61ea26343a50c470930ba8d54ba2ed594f0b5c59c540"
[[files]]
file = "config/fancymenu/assets/compressionlogoinverted.png"
hash = "d6731a4fb234a36765f55a517daa9c47e4c0cb6d35be72edd34d21b5d72f7f4b"
[[files]]
file = "config/fancymenu/assets/compressionlogored.png"
hash = "cad1670f521ebe9952ae907c84a479bd34eaedf2a71e270c2eeedb4893c198a1"
[[files]]
file = "config/fancymenu/assets/compressionmultiplayer.png"
hash = "12cf067131ef307aaa79e19b6f79d9b875eaf850688ecb48943bbcd096ae615b"
[[files]]
file = "config/fancymenu/assets/compressionmultiplayerarrow.png"
hash = "11d5ff4fdb905353e6458ed9e94d2632646717e5475b7300d1ccd906ec5256e3"
[[files]]
file = "config/fancymenu/assets/compressionplay.png"
hash = "954d11ce4bf88101da7a2b16aee3622855bc88a84dc7cd283c607574bf9f4021"
[[files]]
file = "config/fancymenu/assets/compressionplayarrow.png"
hash = "c94798440cb19f62858bd095434691938b0ab8e39b58a7cce1ee454df11317ad"
[[files]]
file = "config/fancymenu/assets/compressionplayreal.png"
hash = "807ab87470fe51823e4d4fb2f985c342321dce9e1ab4f0fc8374cc0c1e01f289"
[[files]]
file = "config/fancymenu/assets/compressionsettings.png"
hash = "fe94258795fc94fc50fffb067d065c1a3d853a1d00848497272749bec8fcff36"
[[files]]
file = "config/fancymenu/assets/compressionsettingsarrow.png"
hash = "ba7e3fd3242994a73a61ea283179b2f97f16ceb8298a74ab88a66959f8df462c"
[[files]]
file = "config/fancymenu/assets/compressionsettingsreal.png"
hash = "a30069031953d5b3c489465ed294d6918d2030dcb97cc4618cf6bddb573be55d"
[[files]]
file = "config/fancymenu/assets/cursor.png"
hash = "b17bf9560eebf602b917d2d48d54f02d827d5e0e26d3f6a69bd07ff9e057e285"
[[files]]
file = "config/fancymenu/assets/cursor1.png"
hash = "78a2be1683369e913dfd12caacba4a221c5ae1e4ff2c75c4627ff9c7d464fb74"
[[files]]
file = "config/fancymenu/assets/exit.png"
hash = "a9ce280f0da2a525ae7da5010c93bb8d6f9793fcdcc55f38b57d9f7552ef3c0b"
[[files]]
file = "config/fancymenu/assets/ffffff.png"
hash = "1b1236b3223b61a821d16d1d8da2fa644ee15602d52d87f3649684bc4e395806"
[[files]]
file = "config/fancymenu/assets/gear.png"
hash = "105da3fea50221bedc9dacd4ee58482eab29326fdce03951408b8c1b9b639b8a"
[[files]]
file = "config/fancymenu/assets/godseyesarelikemymotherseyes.ogg"
hash = "c0bd776369e889c9c7397fc6a48af4b53de9e557ef7eb3a2a1754319974e756f"
[[files]]
file = "config/fancymenu/assets/gradient.png"
hash = "f2ffe56688733534c6b97fe555dc0c90dcfd0641a5dddb2770384593e6241c5a"
[[files]]
file = "config/fancymenu/assets/gradient2.png"
hash = "8cd1c08f344089c2e85553175ea7f9ea3e7045658fc0520cafd385e54bbe3a1a"
[[files]]
file = "config/fancymenu/assets/mechanical_click.ogg"
hash = "9091b4bcd2465ec9e26509c5b1d8e4ce79bc3c22047d902fb11990212e716d0d"
[[files]]
file = "config/fancymenu/assets/mechanical_click_2.ogg"
hash = "52df1edd48174256ba316c1ca5efff51a53bc5d49fe1e93a1a632b9f420595a3"
[[files]]
file = "config/fancymenu/assets/menu.ogg"
hash = "b0ad3d8aacb1d86cc10f81607a2b305ee741c18daf77114c1b086540cbaaf0a8"
[[files]]
file = "config/fancymenu/assets/multiplayer.png"
hash = "a1192da849399e96091d33abc85ac87ef3669f275f422af4aef6742d25cad9d7"
[[files]]
file = "config/fancymenu/assets/oblivion_arrives.png"
hash = "faa31de036c8ff4605d6a5a02d8e8efe25be5657f9a5170ef4a0a3f5d84a0ea9"
[[files]]
file = "config/fancymenu/assets/oblivion_awaits.png"
hash = "d88e9351ab906f8a99bc83e84a72279ad1f01504df65f642b4d734ac42f8fd8d"
[[files]]
file = "config/fancymenu/assets/pillar.png"
hash = "c3538d962218b19ff9ac1ed65133a55328b27b08324ee9272e92fdbb73e72d44"
[[files]]
file = "config/fancymenu/assets/silicontransmittercompress.ogg"
hash = "f0c8a55124befbbe681f9ef64ddac2f916150f1b2502e5847e800679cf3505fe"
[[files]]
file = "config/fancymenu/assets/silicontransmitterportent.ogg"
hash = "286cd6dbf8c0e370b3812c0cda76d02864d4779ed7850acca25a0e6d12c95023"
[[files]]
file = "config/fancymenu/assets/singleplayer.png"
hash = "a7655304826e3dafe43836289f45ccfa781876b2b3892a1cfe9e6aff6c7f4346"
[[files]]
file = "config/fancymenu/assets/skytext2.png"
hash = "ae5090da67be455634ec17f818adfc9f7516c35cef26658a834a6fdf4482bd7e"
[[files]]
file = "config/fancymenu/assets/test.apng"
hash = "53942aa5de56ad7e5766c95777ee632b8c2c1dd532a9b846d60a40449a88ade0"
[[files]]
file = "config/fancymenu/assets/thehandthatmockedthem.apng"
hash = "cf18916b3eda22e08faf4095ece2681aadefb183dc690957214e67dce4ffccbf"
[[files]]
file = "config/fancymenu/assets/theskyisscreaminginpain.png"
hash = "aa6b7b2c9dacfacec933eabb0acef0da705fc076007880a6bef8a1ba63a16ae9"
[[files]]
file = "config/fancymenu/assets/theskythesky.png"
hash = "50d039da8ab91ceec9f27edb4c371131ff132abb9ea9dd0871216a42d8fe0e4e"
[[files]]
file = "config/fancymenu/assets/transparent_picture.png"
hash = "b144377c58b90f9503cbaedb07f2749be28752ee327165ef29a8e6a2f34d4812"
[[files]]
file = "config/fancymenu/audio_element_controller_metas.json"
hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
[[files]]
file = "config/fancymenu/custom_gui_screens.txt"
hash = "65a398463a5358b14798fb9b022d0b0c7ec903b589dc372b26906ef18ad73370"
[[files]]
file = "config/fancymenu/customizablemenus.txt"
hash = "dfd6d3496ec3b05e02eb5e399e2c70797d5f099923edb9e1dae2f31cc201b032"
[[files]]
file = "config/fancymenu/customization/compressionloading.txt"
hash = "f723df93802ddef901fea1e9335de36bd8cdc084ff0de5d45cb85226ab384f64"
[[files]]
file = "config/fancymenu/customization/compressionloading_2.txt"
hash = "c40a899867be3d8554e0f8a0c606a891bed2834338f0eaf37eae48c9b15b8b50"
[[files]]
file = "config/fancymenu/customization/compressionloading_3.txt"
hash = "e9a2a69d9ca15f666259ec6505e5818dad73ee1c9f1848fe367ec8d516fae7f6"
[[files]]
file = "config/fancymenu/customization/credits_layout.txt"
hash = "9a2579dd7d5695e01d16e15ce94c3716dc2b965bad0c3f8c3adb091c648e4cd8"
[[files]]
file = "config/fancymenu/customization/menu_music.txt"
hash = "836a0695c7f664761dd91da3f5000e2f1711abad40c62943be39ca711c276a84"
[[files]]
file = "config/fancymenu/customization/title_screen_layout.txt"
hash = "88bbc74df121ebe5e22e5f52b841e51b3b4688056996d30144a8506eaebdc9d2"
[[files]]
file = "config/fancymenu/customization/title_screen_layout_1.txt"
hash = "cc6e603e69a3997545d0d35de5348994eb708fd76b3c067ea857d6444391620e"
[[files]]
file = "config/fancymenu/customization/title_screen_layout_2.txt"
hash = "616914759e8c435e8f08de7736f1a5d39a93b512881ad5b8621ecf8924b67eca"
[[files]]
file = "config/fancymenu/customization/title_screen_layout_3.txt"
hash = "40c74eb159d45883f4bbfbdedf322b7b05437bf44f438c6d2ce88602d1f1def2"
[[files]]
file = "config/fancymenu/customization/title_screen_layout_old.txt"
hash = "b6d5a459ab43ec20b825750e3115578cae15511118f91190255cb0dec5807c48"
[[files]]
file = "config/fancymenu/customization/title_screen_layout_old2.txt"
hash = "8a73c21aefd36677a5151e850af8ef8e879f2bd303e684ddacf0760b809a15a9"
[[files]]
file = "config/fancymenu/customization/title_screen_layout_testing.txt"
hash = "767eb53ebc13a84df56e76bea9c8ee5c0a189e2e0ffb926ed2f85a9675f8c749"
[[files]]
file = "config/fancymenu/dragger_metas.json"
hash = "eb008c46bb904433f7e96fda6f38843703d7c61f5e02a029135c6c4295f95816"
[[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 = "214d9c58c84bb6a174854ae19a9ef72423940e7b47c71f99d34f1503616dc904"
[[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 = "753817219fcd342292b0ffb7e6a5f448993d5a11530a0a626ba0a0d9876a938e"
[[files]]
file = "config/flywheel-client.toml"
hash = "0d0e22785b8811b4010b7cf39f78fcfb25e31e70558176a52cb9e95ea9202c8f"
[[files]]
file = "config/fml.toml"
hash = "d83e4d24fce7bc83b84b6ae97451a82b965c9b2c6a77268c06ec390f7124c6e8"
[[files]]
file = "config/forge-client.toml"
hash = "534d9fc367bb58ded17ad2820df913dee00eb6e64ef9270c3a8e491db585f548"
[[files]]
file = "config/forge-common.toml"
hash = "a440d2a7ce939ef3c462475555a9a188263aebdbf13db600de3f01d9d312970c"
[[files]]
file = "config/forge-resource-caching.toml"
hash = "acfdb749a28106463b96980100a7e542b0b2bc3f9c9464196e0765a4f1c39061"
[[files]]
file = "config/ftbquests/quests/chapter_groups.snbt"
hash = "a05c7346da7a93c4aa34a900f321b38439b22c141514a90b5824abadeb4898d5"
[[files]]
file = "config/ftbquests/quests/chapters/6t0_20_8_5_16_18_9_19_15_14.snbt"
hash = "ffac074e14e40f9c6274b854e7022f28d8a36282c41a62c7db73188c85735576"
[[files]]
file = "config/ftbquests/quests/chapters/6tier_0.snbt"
hash = "6dee5a071304fc1ed4480b0f1dba296099a49094bc88dedf406a652d35258135"
[[files]]
file = "config/ftbquests/quests/chapters/6tier_1.snbt"
hash = "7d1f5a102e9909d72247369418c25e011aabf481220a9656716a08bcd025da93"
[[files]]
file = "config/ftbquests/quests/chapters/ore_line.snbt"
hash = "1674d7cb392e6dce4dbb4e53e5adba9881c4b51a3724776558a6f065c665ec38"
[[files]]
file = "config/ftbquests/quests/chapters/organics.snbt"
hash = "c41810af6d09c0c768c0781318cf24de584c2c1c9c7f33dd58022a8171efb95a"
[[files]]
file = "config/ftbquests/quests/chapters/proficiency.snbt"
hash = "0b5df6439a69959fc3d237b8bf668007be6a96a6bb81f31c5cabb5cdd0b5cc0d"
[[files]]
file = "config/ftbquests/quests/chapters/scale_tree_i.snbt"
hash = "85e84f9a4bcff2ee21e5e5f498f36d87725884953d766fade73a9a0728672fe7"
[[files]]
file = "config/ftbquests/quests/chapters/tier_0.snbt"
hash = "5eaa01737c46ffc31178fbfacbaaf71d9b0492e8a34838f1973905af60636bd4"
[[files]]
file = "config/ftbquests/quests/chapters/tier_1.snbt"
hash = "78338ba5f677084857636543c1cdb58ed511040ba7b3bf2fee0e8b7c478e5a8e"
[[files]]
file = "config/ftbquests/quests/chapters/tier_10__beyond_the_standard_model.snbt"
hash = "57724ca7bd91ac0c458cb73c22e26ba3b09698b507337339688aa2d3baeabd96"
[[files]]
file = "config/ftbquests/quests/chapters/tier_11__a_frame_of_reference.snbt"
hash = "183865d18b6fd861089bb81e210cc6bfbbba514a4b473a20ba4a8421b1ef46a3"
[[files]]
file = "config/ftbquests/quests/chapters/tier_12__preparation.snbt"
hash = "d718bc492ecc078157598ac9aec18a44b79efe2bc76a39d24fab607c85469ba2"
[[files]]
file = "config/ftbquests/quests/chapters/tier_13__all_that_begins.snbt"
hash = "dfcc78d3e5e8e1128f2e331db77e78efd02f18811ab445e93d9f5b0286cad0eb"
[[files]]
file = "config/ftbquests/quests/chapters/tier_14__all_that_toils.snbt"
hash = "8f7da08e27548d0a6476961c83dc1d391784433d71733543cc8cdb076e25f178"
[[files]]
file = "config/ftbquests/quests/chapters/tier_15__all_that_is_must.snbt"
hash = "2639f4a72fc57577297ffa3c6a56ec596fcbba358532c9188204afea6a6343d1"
[[files]]
file = "config/ftbquests/quests/chapters/tier_16__end.snbt"
hash = "099ba67a8fa80b6d942c494f67d65743faa7194eaf31ea49dc1f83b237bb48e6"
[[files]]
file = "config/ftbquests/quests/chapters/tier_2__polytetrafluoro.snbt"
hash = "01b4dadf2a57bef40ef7b85f22b3ce1105a38f128c9a1dc92c7207e547dc3561"
[[files]]
file = "config/ftbquests/quests/chapters/tier_3__a_golden_box.snbt"
hash = "375180eec7143a77a80d6191fbcec7f0bde4a47dbe6272221e93e157dc269ffd"
[[files]]
file = "config/ftbquests/quests/chapters/tier_4__deoxyribonucleic_acid.snbt"
hash = "e044ac02952a07a92f8a0d66f778cc9926aaeaa333af26117834fb23af0f8946"
[[files]]
file = "config/ftbquests/quests/chapters/tier_5__glowing_green.snbt"
hash = "5ae23df54d86aed97807419af706454217aff125f02cebc545ddc81c47f68e2a"
[[files]]
file = "config/ftbquests/quests/chapters/tier_6__5_billion_per_second.snbt"
hash = "28d65330e3447b2b32b89ab294cd1fea42a9cfe5a2795509e7a6fa8901105761"
[[files]]
file = "config/ftbquests/quests/chapters/tier_7__a_very_small_sun.snbt"
hash = "1653dc2d0c5e08331f6ae7a7aaab350f19bf1e0429291b2145c010488cdd5bcd"
[[files]]
file = "config/ftbquests/quests/chapters/tier_8__poking_the_boundaries.snbt"
hash = "4f272ae8116c5086deb1677d2a9cc6d22e31f2fbe294c0a0f15ca0f82ed3ae85"
[[files]]
file = "config/ftbquests/quests/chapters/tier_9__looking_up.snbt"
hash = "55a668749c65a2929945b96fdeda9f42caa5ba27713e1ae35fd472f2b74b34f7"
[[files]]
file = "config/ftbquests/quests/chapters/welcome_to_compression.snbt"
hash = "3a00da2fbf38ced18de56c24ca4397a3c2b81c24cbe9f6d63243a36e67961230"
[[files]]
file = "config/ftbquests/quests/data.snbt"
hash = "8478c60f8a6d27bb200a6984e6fcd8e4f44eb4a8240e9d5fc786c535afb8f1af"
[[files]]
file = "config/packtweaker-common.toml"
hash = "2f9032b38c0d562bcbf977a75b8d77e31de701871c8e96c2e3421e57979b8a96"
[[files]]
file = "config/paxi/datapack_load_order.json"
hash = "54e1940f6a7748855dbe5d69ac348b0256ccb4633058b4c49aa80803499c3f5c"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/blasting/skystone_looping_recipe.json"
hash = "d2405306a60df4439b09673bd955a1aa1ca6833189771b0d06e4914303802c0f"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/decorative/light_detector.json"
hash = "0e2ef7edd4ceab1ecbe95439483862f423d0ac598055be072a8002d731cca735"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/decorative/quartz_fixture.json"
hash = "426bd1677698d49d29f51b32abfb923342d0e74103c8f599a851f66d5522c2a4"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/decorative/quartz_glass.json"
hash = "dd367052be1259daaad3a79d30761954e18c61edeccb9a0cdf61d409e84d0b41"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/decorative/quartz_glass_t1.json"
hash = "48d4cb893420b17104d82b06e3bbe364e14e51681abb54c41b07f77397a97243"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/decorative/quartz_glass_t2.json"
hash = "a89fa32d99d6a9cb1d6093abe5af6779a6d8ccc37f3634780f5a1529a8f387e5"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/inscriber/calculation_processor.json"
hash = "f8ee21486aea99b8f729c1a046af6b6b725cff783a6d37316e96dd1955d332af"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/inscriber/calculation_processor_print.json"
hash = "fc11b7e9450ff47157e136c92d71e2f338e1ffa1a619e99a9ef9aa5249da61f3"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/inscriber/calculation_processor_printed.json"
hash = "2900b65d7b49319f6bfe4ac354fce02159a1538e9c3c36c2eb5b5a8d9a41ed97"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/inscriber/engineering_processor.json"
hash = "0a52afea9d6d51137177e8f144e710f6a7247603b1054b66d0dfc5d9a03538d7"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/inscriber/engineering_processor_print.json"
hash = "bf710b02df6314406f3e63c687aed4079f4e48fc66e2ccd249828af20e9d626c"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/inscriber/engineering_processor_printed.json"
hash = "76c8da6f4cc315013a0e52853b750896dc09fa234c7270f287f2d956f848cd63"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/inscriber/logic_processor.json"
hash = "ccd1532d9d43d55922457a3fabba5bab47560a1a76daf1d0f07e0ecb4c670c06"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/inscriber/logic_processor_print.json"
hash = "2ec6fea9f97b8460e007709118a0a3924b2c4631c486ff6e764122a8b333cb0d"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/inscriber/logic_processor_printed.json"
hash = "ebcb850f6e380c7e1c650f6c171e4961a6bbe9c05f50bc023ac55d7941897ebd"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/materials/advancedcard.json"
hash = "5cb7cecd8f15a5f07f987313bd7fcfdc4eefd5327eb162f04eeabb38025bacdd"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/materials/basiccard.json"
hash = "fa1019682bc61315e9542916694e1722fc2f3f2af2a0693bac0cefac216c30dc"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/misc/silicon_cutting_crude.json"
hash = "10ff3e9372c132afa4036984aa51994b90b13be5cc50cfb9afe08de516de1581"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/misc/tank_sky_stone.json"
hash = "a7d42d89d2f27c273da1ee4c566a668971c42d2d3fbe5fc192941c4b193b1e4e"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/misc/tiny_tnt.json"
hash = "7577285c7878c3f5321975cb8dfff607bc1efe66f79c8629866d8d100b7fb49a"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/blocks/cell_workbench.json"
hash = "b3fe1e051df633a8cb36d5050c193a6a241ad573ec023b2e3eed92e15dd5f1d2"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/blocks/controller.json"
hash = "1f25cef4a39da21a5e8dd53d0f0e6d4da983af240646fcfdc211b7553bb372fc"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/blocks/crank.json"
hash = "5635d8d737b1e7fe5997bcb2da384a10704ad900f56572a6c40f3f6131c42861"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/blocks/crystal_processing_charger.json"
hash = "9195c40270c74c610e37024019aaf61be621009ea217bc65d2cd346cea6a514f"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/blocks/crystal_processing_quartz_growth_accelerator.json"
hash = "07da1beffaaeb8c1d4040bf20adedb60ce0c024f5af6e180baf4ae1302411c97"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/blocks/energy_energy_acceptor.json"
hash = "7b47370564fbc21d6b548eebe2cb64f85d9913dfba1df17ac72210db52f16c3d"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/blocks/energy_vibration_chamber.json"
hash = "69708c7918ede9a2a680c32df398f2374caf2ed5b4224ff7228579bb0572f644"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/blocks/inscribers.json"
hash = "5c8aeffa05cec3ed123872948d293042b4d3da3d41697f32a0cf7ad8ed7e5db4"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/blocks/interfaces_interface.json"
hash = "869338e0805d8699b4cfe33a3da2ee85af540b90d4ef44f2235da5802ca666fc"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/blocks/io_port.json"
hash = "da45bbe8e901272654f4647a31c1ccacfdde9b3029a0dc341e44dff3a299981e"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/blocks/storage_chest.json"
hash = "2f689c9de98c01a739641beeb7d9f523efd118f6cf03d2e8078753ff1e8ec23b"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/blocks/storage_drive.json"
hash = "ef23c0dc3d22e1dd5a0599ec2f59f59730d52772af4ab9e238ea5b118e575e23"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/cables/dense_smart_fluix.json"
hash = "0e60324af488dfe2c098abfd81f42a351745a48051807f120203c4893f914c3e"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/cables/glass_fluix.json"
hash = "5a03a44a3b6d1c9f3f141bcb7db7fd37ecd7a2a3d6d31fe55e66805b106fde9d"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/cables/smart_fluix.json"
hash = "000e3c8aae2afc8c68b5dbd3045288666d1cd8d3028813ac381787714f4a5f6b"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/cells/fluid_cell_housing.json"
hash = "1129a925931127d720003e828e2578a86f6ba1565f42ffbcd9c43b92d526164b"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/cells/fluid_storage_cell_1k.json"
hash = "2460e0c5e9af3e635c78f4a8809b13892043426295d5add0a519779a7e3e4b74"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/cells/fluid_storage_cell_4k.json"
hash = "e510bf5d088b89fb0696740c0b59000b9ffd9fe591f3bbba712899262562e302"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/cells/item_cell_housing.json"
hash = "9565f2bf23ec4e70a98d0e3d287c6f61c7e82963d5e2dbaeb394f65dc45f527f"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/cells/item_storage_cell_1k.json"
hash = "1075dbc03ad665ea4406a943ebfe3e2c188b3beec86325f09b365bbd4bd064f8"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/cells/item_storage_cell_4k.json"
hash = "8fdb4ff4d6ddd1863988e716c5a571308c89a5f8a628d45f8453062b6e7f396a"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/cells/item_storage_components_cell_1k_part.json"
hash = "f84d6f65c09c488213adacea128636ad08cf78266734d726777cf831aad48222"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/cells/item_storage_components_cell_4k_part.json"
hash = "c25ca83573b9273ed8b49f4899809969186186273feb85e7ffe5a06c3ba59464"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/crafting/patterns_blank.json"
hash = "96850e3bdfb4a4a5841f7d547a2c10e12dae125dad61e08f5cd8733881fecba7"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/parts/annihilation_plane.json"
hash = "6e48a280344659c6da1f59da8cdf3676519ad23222459c101da9703e2437fdd2"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/parts/energy_level_emitter.json"
hash = "a3f157a2c58cce3b3985dae4a4cd69cb6dc7846062d33620c7ac46f41135746a"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/parts/export_bus.json"
hash = "40aec24633e6431cff14d52e92c9f57394ecace0307e21ef31d9473931d91945"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/parts/formation_plane.json"
hash = "7febe80433b96ff212f95fa70985ca082f71f733f52a3912a54b863965470eae"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/parts/import_bus.json"
hash = "31a9729929a7b247234a2b793721243c1afb269844e834e976c20cc3c1d41a2b"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/parts/level_emitter.json"
hash = "aba673457546698d00fb1162db0566bfd8bb48da23647a4c14b87f0af69e521d"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/parts/panels_semi_dark_monitor.json"
hash = "0abf2be06849fb95b367c6912f0a916af3b9c723a5489958b04634ae4155fc73"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/parts/quartz_fiber_part.json"
hash = "3edcd84e416dcb226aae66f3fcdbd546d1837ab136ca3b9467fe82b72c8b2bc6"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/parts/storage_bus.json"
hash = "5e4115639684f9cd8fb52ce431764035e8d74a6fa3303c70b863f55f81ab90f5"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/network/parts/tunnels_me.json"
hash = "2632d388a527fa6e85f46204d70e47d2b968c51a9c5aa1a80fb7e03f35231831"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/parts/quartz_cable_t1.json"
hash = "5dd2dd49d1362ac5a23501db546ffe1ddcb55b1ee1dfac33fd400a1460036b8c"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/parts/quartz_cable_t2.json"
hash = "4d9eb79eb73b9f00bfa2dffb948ee9b7f85f065e2ec32bbddc6a3248a4e319e0"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/tools/matter_cannon.json"
hash = "7f85b9b20b3adf5aca16301d22db71287c9a00309e621211c08578fd2cb32129"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/tools/network_color_applicator.json"
hash = "8ffd01536410c5a466a7d092931ba236f6e578bb74e18c69de4a49e6f8b17a7d"
[[files]]
file = "config/paxi/datapacks/compression/data/ae2/recipes/tools/network_memory_card.json"
hash = "e4963756ba27ce6fe8a1c7ccfb5ec3b18838d4d3289bc55ab3204650ffa014f9"
[[files]]
file = "config/paxi/datapacks/compression/data/aiotbotania/recipes/livingrock_aiot.json"
hash = "0cc73d080edf91fa625d5b958b613ec57c3c14018c269fd0ac7fcef8fd5b106e"
[[files]]
file = "config/paxi/datapacks/compression/data/aiotbotania/recipes/manasteel_aiot.json"
hash = "3989793aeb58fe3af83cd121a845ba01718b572e1ef836a5c95b4cd6d73dc7e8"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/atomizer.json"
hash = "69729e1f3ee5ae146ed7e906281b8d04be6364ffa92178ebdda66b6bb56c4409"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/combiner/acetylene.json"
hash = "e4f1eb377ce7dad78e4d9c8cd04f5835938e5e9039145255e789b251a33323e7"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/combiner/ammonium_chloride.json"
hash = "9774dd8ddcb884fc8832936fdceca6a1d6362a4bc274c2a64dad9f0585036729"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/combiner/calcium_hydroxide.json"
hash = "2e352d0030397e2e4aeb5f9f24b7c3cc336fce245e867e583b591fe12f4306d6"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/combiner/carbon_dioxide.json"
hash = "df815943a623e37b708f526f48238510eeeb683bf6aa0332a146a9176f2a588c"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/combiner/diammonium_phosphate.json"
hash = "dd266369e3e0f29156d9328a76afb9fa961af5458ca02188b6e8fbfcf801fae3"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/combiner/ethanol.json"
hash = "a5acf97f2eeec70b5650363e1642491c3a7057436153021b6d70920208e0eb74"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/combiner/methane.json"
hash = "73d1c69915b24336d0e7b5c4a0574dc409e2476cd490532b694bfcf12bbfcda4"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/combiner/methane_rottenflesh.json"
hash = "39586022744decd00823c35951ade915e788d6e742ce29eed8723b0e58650667"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/combiner/nitric_acid.json"
hash = "eceee7b60fc898b5f0c174c6b861819abb1b7d0c49f748119388d2fb493c883a"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/combiner/rubber.json"
hash = "bb0c6d0e10f696c489c71a731fda7c0678596368bc6cd5848950eb1f5c2166a9"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/combiner/sulfur_trioxide.json"
hash = "34f0b81a631c71ecbdcd57ae1ae50078411841e1eaf5a57ae0a2afa790bfb727"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/combiner/sulfuric_acid.json"
hash = "a82169bde4ca0fb8cbe4e59f1f29fe45f4b937a0f95e957d4a9f467170c30a90"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/compactor.json"
hash = "2b77c6a7082363dec68e7ecb3f255b36dd98e58108b6365eef8491d4e3ac5455"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver.json"
hash = "900dbd92f4ab864095c72bc3128c6dd619b7fab5351a883972953a1470da0932"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/aluminum_oxide_from_feldspar.json"
hash = "e61a0e1de62bc76e5a1f84416dfe7636b90ef8734061bc25a395ed6eb6383f0b"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/botania_stones/cataclasite.json"
hash = "b89c11e5e855d6b5e97d7c5332ea12b8d50c843fd69775c21d48e402d4effa73"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/botania_stones/fuchsite.json"
hash = "0e9c4bb43fddd9f35f4ad81c2594c200ff71f8de74b90288e3303d87825964c9"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/botania_stones/gneiss.json"
hash = "15a862c6ea5a1268b117817739fc16ae23f860bb48b30d1bf12bb571a6522109"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/botania_stones/lunite.json"
hash = "bcb13a249e697a4cc140bf142b21fe28a598b5098549fc59cb059e17d4cbd52f"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/botania_stones/mycelite.json"
hash = "96a63040c2313214962e8f46d309e4b5971f8a4e32577e40f8d6d0269064fb48"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/botania_stones/rosy_talc.json"
hash = "1cf54e51e357153294227d84637c25fa31318b97d86399efdfc282fcfafa98fb"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/botania_stones/solite.json"
hash = "abf1ceb49c59bd3087c283a900aa0ab36a380b321bbd515aaac82db6a76e4ce2"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/botania_stones/talc.json"
hash = "b45d601a518e7cd2290da104cc87652d94b4e1fcb279c35b1541ca7d879b8b63"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/cellulose.json"
hash = "e55b8199ee8bffe45130b1a41363fd1101584eacf58d4e54edf26aa0fabe85bb"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/dusts/apatite.json"
hash = "bb0898821a692090b96e966b096f2c216a721f4be867e41d38cd4ad5cb254411"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/gallium.json"
hash = "d7af13130cc1cddc8dbf9b53cf3f4e262f0dcdd9606d441e7520c94a3033a5a7"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/lead_sulfide_dust.json"
hash = "379a0a96b2c1e23400c669c085f16139a4b1c42691cda37622bc326c0bd1da13"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/magma_block.json"
hash = "0ba1d36f9b5b5bcfe6543b51ee9a8c67dfe70989bf1571bcea12c2ce22262f34"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/meteoric_certus_chromium_jumpstart.json"
hash = "ef71740ecb4e856d97d785f695eee12dc90ad85a8299e48633114b9d184d4cab"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/meteoric_iron_chromium_jumpstart.json"
hash = "75f1278e1c64db9cea0d256faaa14bdf981e750e5d2f300490eae0bcbdd0dbf5"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/meteoric_kamacite_chromium_jumpstart.json"
hash = "cfce343d14b7e32dce0f98e5b153ef69ed7340d3ea0f7f227a5c8adad4399b33"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/meteoric_taenite_chromium_jumpstart.json"
hash = "4c41cf12318d78be88189103ebec0b815875a7fbf7128ceb72c5fdde9357ac87"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/oxidized_copper.json"
hash = "9381ae3a43f1f19ab72b3f1194b87ce2afd132d0eef8b11861b7e2c6d3798a99"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/palladium_from_raw_electrum.json"
hash = "8dd2dbeafb75381a1c45ee94a4208948a7c52e1831c85e6b378f317481c16c7a"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/palladium_from_raw_kustelite_electrum.json"
hash = "ddd2af068358a40ec1fb45bc9958ff03f173ee05182999cababe38c538dddd1f"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/platinum_from_native_gold.json"
hash = "faebd642153c14f387cbf540a1286719a4b9f2540385a7b96a2474fc9d8b1974"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/salt.json"
hash = "2ba1a78f4cf4ff367069fd39882f114c0799597a326ea83e0b4ad1744cd741d3"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/sodium_hydroxide.json"
hash = "0af391d0682ad40a44733eb1464ac31dd682e8aaa9cbcee6582b90f4a1930e10"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/dissolver/sulfur_trioxide.json"
hash = "1b7a957ff89c0d2c9b95453af3f0cf8358613e40c425c001ef5c3bf032c37c3f"
[[files]]
file = "config/paxi/datapacks/compression/data/alchemistry/recipes/liquifier.json"
hash = "d1c478dba6938ed37ebf71f7cda51c23d32dc1a3b402956b4c385997d8366847"
[[files]]
file = "config/paxi/datapacks/compression/data/botania/recipes/abstruse_platform.json"
hash = "bc5c8003872e24d85219cdef5f0a0a00c2d908bb0f2a3b003e3378fefca7551c"
[[files]]
file = "config/paxi/datapacks/compression/data/botania/recipes/alchemy_catalyst.json"
hash = "3e5ad14ffc91fb226bfbf7101007014c0ad4559fe4b6f62456575108021fc62c"
[[files]]
file = "config/paxi/datapacks/compression/data/botania/recipes/animated_torch.json"
hash = "c57cfffb3e627c5c5b6f07c3d01ac4cc5a87cc5b4a67b12d58297b410db673fd"
[[files]]
file = "config/paxi/datapacks/compression/data/botania/recipes/apothecary_deepslate.json"
hash = "de51fd734ea63d1b3fc4f77a4afe647b0958d7081f2816afd3ad485e9da211df"
[[files]]
file = "config/paxi/datapacks/compression/data/botania/recipes/apothecary_default.json"
hash = "09d3a44a90b6f15fd4d7d7a68be588ac4ab437fe126188115d7ea3f8425ad52a"
[[files]]
file = "config/paxi/datapacks/compression/data/botania/recipes/apothecary_default_from_stonecutting.json"
hash = "bee7eec71f58ba67380cbd848373d4a2aec7004ff12805b5442b009ae66e2ad1"
[[files]]
file = "config/paxi/datapacks/compression/data/botania/recipes/apothecary_desert.json"
hash = "30ae9d5e2ddc5eb9633c0d68820f369bdb135be5d4c99521ea72ae2afcc11895"
[[files]]
file = "config/paxi/datapacks/compression/data/botania/recipes/apothecary_forest.json"