-
Notifications
You must be signed in to change notification settings - Fork 2
/
0005000010143500_v0.json
4079 lines (4079 loc) · 175 KB
/
0005000010143500_v0.json
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
{
"title_id": "0005000010143500",
"region": 2,
"version": 0,
"files": [
{
"file": "code/app.xml",
"hash": "CF789AD9EE006534B510CF4B166412615688F26EEAED3A2A8DA96073CBE7C913"
},
{
"file": "code/cking.rpx",
"hash": "C4F0AB300542E0BFC462696850534E71DB2AD02288A7EB55E5A4CD4062F16153"
},
{
"file": "code/cos.xml",
"hash": "01A8B1A19BA3BA0A6E661DFA16CDEDF6AB5778DB4AD7836D5EC19E9D8334FAD2"
},
{
"file": "content/Cafe/Common/agl_resource_cafe.sarc",
"hash": "56FE599CA0DF1EB9C37ACA83E992721804B83E319525292D8753F10B35BA7A5D"
},
{
"file": "content/Cafe/Common/agl_resource_cafe_dev.sarc",
"hash": "305F53BABCADC9731215E40E1A36DA5030CCF1B8D76E3EDDD0341423F7FDFCB7"
},
{
"file": "content/Cafe/Common/primitive_renderer/primitive_renderer_cafe.gsh",
"hash": "27C12959A068F6DCA780D52AD39EA81B8683CD2C74DA703A224855A29EE190E6"
},
{
"file": "content/Cafe/Common/primitive_renderer_cafe.gsh",
"hash": "27C12959A068F6DCA780D52AD39EA81B8683CD2C74DA703A224855A29EE190E6"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/A_mori_0.aw",
"hash": "21C589338183A77747947A61575DB08FF323F76D89283229BA80DBA51132DEDD"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/A_umikz_0.aw",
"hash": "0B5C9844EE4433EFA9E2D77000AD3E4F8FF7CBC613A5DBED45C98FA7CC905477"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/Asoko_0.aw",
"hash": "4EB49EB558C00450F1342C614DD3D9811EB0EC71C43CDC98A2BF8E05DA541C8A"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/Atmos_0.aw",
"hash": "20C07A22C4DC9706E9E7D25D52582E6CF5DF67D09C96CC194B34FE8F50269917"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/CharVoice_0.aw",
"hash": "60DB68D14765798008921C449328CF1AB4374E95C231152D7F36E04CF44648D4"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/DaiDun_0.aw",
"hash": "D18F3944CBE51331490539BDF55166CCCF5306984E10AE569E460EA285AE7205"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/Footnote_0.aw",
"hash": "991A22BF109994D7DB74921EB55161CFF157125B4AED38CE5EC5FF97C6059F48"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/GanonB_0.aw",
"hash": "80428B80488E4F50BDDA39D3DAB0CF490B4ADBB6F558C86E174823FB7203600B"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/GanonT_0.aw",
"hash": "CB02F745E8ADAB21F9C5742384798EC97CDBE06EF42C91911C06115CCC7B1CF4"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/I_Maju_0.aw",
"hash": "4EBFA72D516DD02E49C90E32C8BA57A7AFCC1032EB5EAE213E5C6C31E92366D6"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/InForest_0.aw",
"hash": "43CD510F6D6BB3B88D82F229D039DDC92C643A372AB52EB660008A8FB2A1E0CA"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/IsleDrg_0.aw",
"hash": "27ABB7835A8B07773A55A20456A3DF4A9466A0EBF44840B86C93F3C72E8D7676"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/IsleLink_0.aw",
"hash": "ABFBCD1BE95BBC9FE4F9E4E0BBC78BDE048DC130503E1CA712EF32EAE55D104E"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/IsleRiv_0.aw",
"hash": "AF79ABF33CB4570B8658E795D4C97292FB98A9E4DAA21D4DB41FD47A636C5558"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/IsleTown_0.aw",
"hash": "13BD18AE169338C75ADB83EF6B2AAADD4825D1395A7377ED87152C68B186F8CF"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/IsleWood_0.aw",
"hash": "02A713E07A475D307E2DAAA9314A1BC74A26D804250D44683336FDFF96616D6F"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/Jaboo_0.aw",
"hash": "AD30A6C23F5BB3BFFEC761DDD1F11B47BD9A802E6A97E5B9990E26D60115AECA"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/Kindan_0.aw",
"hash": "B080F95ED7AF4E81BA04D18E0630F702E8EDAEBF8962A44D03866D69908BCD6B"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/LinkMotion_0.aw",
"hash": "D8017AA6A0D54401DA27253C3DAE0A30C7ABADCABE27E3AECE070D13D65B90DC"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/MJGanon_0.aw",
"hash": "8CF01DDF52E06C485CDF58ADE60071F36C5AA7FBC60CA9A83250C469133B1F90"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/Mj_Tower_0.aw",
"hash": "105CAE8F557FDDE2586EEC97D5A6C1DFCD40BE9554BCAEAFFE48268A2A4C4BA1"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/Ojhous_0.aw",
"hash": "BA1E40446C287D41117A513B4B64BBC5A77D6D3EFEA9342B9928345ACA620826"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/Omoush_0.aw",
"hash": "3BE49EB2F09AAFDB2260DB02E5E7C354D098BFDBD41091CAE5614B2862E95A15"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/Orichh_0.aw",
"hash": "D9F77BF4A115117D1F64E92199F9E5A8394AAA5CAA3726D5CC54C959A2A435E1"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/Raichin_0.aw",
"hash": "14FD2A9DD053290335641F41F3725FA1CC7C477FD2D8F2F584E00E0CF70530A0"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/Ryu_Mt_0.aw",
"hash": "D415EBDFFDD336B6AE3B8E9AB0EFCCDEAC5892269D5DA2A116AF99BB7FEECF6D"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/Shiren_0.aw",
"hash": "AF1DB87F331FC4B9F694E8AC6659AEF986EB9E7A74DB780F8FEAB515F0775120"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/SystemSE_0.aw",
"hash": "B098DD5BA2A7B68F8F0F55D2090C00E747ACB9B4FCAB32150DBC10B880C2C44C"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/WindDun_0.aw",
"hash": "0787A999B7F5BA643A3B789BCE1FAF69B227AC5D4F8D39265A6C5435169EC80A"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/bigpow_0.aw",
"hash": "228549AF9EE62B63CBA214A103570F0DD95C0FF84C95CBDE9061CAC609DA99B2"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/bird_0.aw",
"hash": "1DE187B469CD8C665D026ADF12A851FEE219D07AC3F258B5D3E4A9059A87BDA0"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/boco_0.aw",
"hash": "E7D811CC778C2AAAB0C446816E1219AD405EDB311966341B0B0ED90E25342998"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/d_amosu_0.aw",
"hash": "BF130ECA7709B416E145CF4A7FA74288624AB31F98DAECBC993CF2052072B7FE"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/d_earth_0.aw",
"hash": "D471C055B7EB20186E94CD07FF3052E5090FE6ADE28A29E14C1F83F6043F3790"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/d_forest_0.aw",
"hash": "089DE7A9B2EC66BE94284CD985169448AFD88E2D63050EE20A2D6DF1BD9723CF"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/d_ganon1_0.aw",
"hash": "C535D5AB84BFC1E63D565607ACDE6BAC8701D6BB4A0F5E867C2E77DC7AECCB08"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/d_ganon2_0.aw",
"hash": "BAB5AEA07AF052FD08039EAC6EEA74F4D02B0ADDA03C50BD02A8F0F69F102996"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/d_wind_0.aw",
"hash": "610426EAA73299F6A4AACA72AC6DDEB067C0D7EE382C96E712832FC37F460D7E"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/e_diocta_0.aw",
"hash": "A7BC918B1CC34BA007633D8EA8C80E1A52A75C757D455EA6E3C9165DDE2AA68F"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/goma_0.aw",
"hash": "6D530C7101897AA509788F89EA9FB0AE04F52EBBFC4C7105180C7D594CEDE127"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/hyrul_0.aw",
"hash": "62B4207080FED4B5547E95BAC800844E776A43409CF2156074B8612D83001102"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/kaminoto_0.aw",
"hash": "D3D27CCDCC9E0F2C86144762AB8644660D43F32C7D9AF82201FFE9245E7853FD"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/kugutu_0.aw",
"hash": "0549512C7DD3F5913DDCD5E1F6BFB42070CD004965351616ED848ECD27CE4E33"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/mboss_0.aw",
"hash": "7A508E4948D88FD1B2379EC03704FD522DA10F6F33423FF86516BCAFD12D8F80"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/n10i_ryu_0.aw",
"hash": "18E0EC380253FB6BFC7DC4849E5557D479DC63D02E1ABB1FFD2CBCAD1C9B799D"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/n11i_tur_0.aw",
"hash": "8DEE7E5CE5463AA3EE521157B0717C5C6BF8A34B94ADBBFB4F5EE477B3BC8CC7"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/n12death_0.aw",
"hash": "2C079109B2876C3704C9623CD2ECC236E2DC35F2C6A6135474D2BBCC54132AB6"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/n2i_link_0.aw",
"hash": "43F4398FCC51A6DB6D2DE2EF93C44062A732BA74A4A12876EDD45404D7AB4930"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/n3i_maju_0.aw",
"hash": "FA6580C5A00350F1BB5E6DD856A400E386443630941515CBA5D308BB893EF949"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/n4d_ryu_0.aw",
"hash": "E32050863D3B44895ADD2D0D449963EF52085679A1F898B05659CF63079F8BEC"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/n5store_0.aw",
"hash": "97106A1FE65B086EBEB1EC01ADC9369F9AA5985F6B38FBD17142430C4527DD27"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/n6pirate_0.aw",
"hash": "0CD19AEDA5178419FF74E2D1C9FD47D7ECA8D4A229FE91255626F005252FFD16"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/n7i_mori_0.aw",
"hash": "3BAA9E6E26BC0F1E4D2F35F0126770142398BCFE3AD1629E89A94992F161AAED"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/n8s_race_0.aw",
"hash": "0237E3AB32036AFE45C22F956569DDC95A98D0CB682715FF38FBDB0F08DDDF0A"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/n9drug_0.aw",
"hash": "CBB3FD8AF6FC0010D4BA0FDC18B02B2521A3D72DE983854CAC84F7028425AF1E"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/n_zelda_0.aw",
"hash": "6AF44E34A02E45EC0B733932F86C496BCA5FEBF9B05F941E916CE364BB19EB78"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/objSE_0.aw",
"hash": "7019EC244BC62077C6CBEA00552EEA1FE7574B2C7C222207E3CDC4F0743DFB01"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/p_ganon_0.aw",
"hash": "89E8D3D1FCD59D9ACEED98D9026B77D83176F5D8B923B90DED7587171F712062"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/p_goma_0.aw",
"hash": "AE411DD71E13E03EC20869D664153364F160E1B49AFA03937C8A7CDF01F40169"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/rane_0.aw",
"hash": "7ADECE5A5200E64B364ADED819686B85A52610B938B54104F26237B64EEA2D28"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/room1_0.aw",
"hash": "561E5060F966E638BA726C7CF707312DB522731653DE73B6BA49CF89029D9E2E"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/shop_0.aw",
"hash": "E2E7511B131960D5AC44FC4DF2C1514722326396105CFFC7799CC40C734C024B"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/tetra_0.aw",
"hash": "A2F0FAEBDA27CE1E111FF8C92AE15935367E9AAAC28DD4F8AD03A46BEF819D99"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/tower_0.aw",
"hash": "16DF9261A8FF991243C46F005DEAFDBF857B5C2F3FE34B687B7337176FE8C15F"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/umi_0.aw",
"hash": "9128093C4CB71854B44AF5C9F8C8C46BAD6D34FECF3B7444A71818B6087226E1"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/voice_0.aw",
"hash": "43DC3B33A6EC683A3CBF43640BA134B0A95D6D0B9C0F5CBB07CAB690B9572676"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Banks/w_zelda_0.aw",
"hash": "94BAF0B5D5277E7777C93011F95F33C7C63B9BDE265253D958C0944015B6A55A"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/JaiInfo.asn",
"hash": "490B1D378CE35F9558C5738A7EBD548B4D4BE1202CBD4D35263A73C5C924CA1E"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/JaiInit.aaf",
"hash": "6A074815666207C959C0C7F2196B60AA9EE611D8EEDBA3DAF7636B7A2D244BC2"
},
{
"file": "content/Cafe/US/AudioRes/JAudioRes/Seqs/JaiSeq.bdt",
"hash": "2E0C2740FB6738BF59384B1DCED32BD14F0108E6FDDE00E3B18CCC7EAC0ACFFE"
},
{
"file": "content/Common/AudioRes/c_king.bfsar",
"hash": "DFCF04688B80A68812F2B23EFD401C1BB2DB2CEEC7944DBCE48792C258DF7F2F"
},
{
"file": "content/Common/AudioRes/stream/00_e3title.r.32.c4.dspadpcm.bfstm",
"hash": "1BD186B6EF09D63FFA83C5DC1CA34B1201E0CEA2A6E6C50857D2DE24E2BCAEC2"
},
{
"file": "content/Common/AudioRes/stream/02_goma_start.w.32.c4.dspadpcm.bfstm",
"hash": "A156654628CB9E90D55563036BD4CA3D495C37D7570EB0061EB933DF3D285677"
},
{
"file": "content/Common/AudioRes/stream/03_boss_clear.w.32.c4.dspadpcm.bfstm",
"hash": "DD41B0E7CBE12A66637BE876D8BD869DC836D888D57F6C0CC6332AAE5314DAF0"
},
{
"file": "content/Common/AudioRes/stream/06_maju_d1_lr.n.32.c4.dspadpcm.bfstm",
"hash": "B00F70E0881E253FF335D3628108DCEC68D85853169EC113FE513CAB37991E83"
},
{
"file": "content/Common/AudioRes/stream/07_kindan_start.w.32.c4.dspadpcm.bfstm",
"hash": "B7A0D60F3E7882460B8BE0DB0CC5CB82F35B9C22F97D5AD872A1EEA369EB2FCC"
},
{
"file": "content/Common/AudioRes/stream/08_bird_s.w.32.c4.dspadpcm.bfstm",
"hash": "AE528F0C57FFA6E209DFBECA3779AB718E4FC74CC47BEE5FA7554C190674CB8F"
},
{
"file": "content/Common/AudioRes/stream/09_d_amosu_start.w.32.c4.dspadpcm.bfstm",
"hash": "EEA2398FFEABCB918D9CE513646950F186135D6394DFF0857282925024BB7146"
},
{
"file": "content/Common/AudioRes/stream/10_m_14_01.g.32.c4.dspadpcm.bfstm",
"hash": "CB56A11889CD9620A185BE39B4974483007F12C0983150825D92579195F12E1F"
},
{
"file": "content/Common/AudioRes/stream/11_m_14_02.g.32.c4.dspadpcm.bfstm",
"hash": "52CB4A89A2D804D4BD45C8990F798B51DEA15FCB06E848522E936BF40136A34B"
},
{
"file": "content/Common/AudioRes/stream/12_m_14_03.g.32.c4.dspadpcm.bfstm",
"hash": "C1EDC9976053878C06E826F72C9B1EA98A98098977B1BAF31801C813256C8BD7"
},
{
"file": "content/Common/AudioRes/stream/13_m_14_04.g.32.c4.dspadpcm.bfstm",
"hash": "128270EBF641269F65DFED72FFB8FF99D58E0F461C61877BEA25BB4DEF51E63D"
},
{
"file": "content/Common/AudioRes/stream/14_m_14_05.g.32.c4.dspadpcm.bfstm",
"hash": "3CE01A97BE48E9D86F60E42A764F411960D5A2456C971EE6BFE98EEBA8527FFC"
},
{
"file": "content/Common/AudioRes/stream/15_rane_start.w.32.c4.dspadpcm.bfstm",
"hash": "49BB31C3E5BE064920A4B18BEE40F3E18B454871C3D80016B950FEBC34B74D1E"
},
{
"file": "content/Common/AudioRes/stream/16_m_15_01.g.32.c4.dspadpcm.bfstm",
"hash": "2B58E94C737D2888EFB4CC73B2BA3344DDA69160E11E553C88425EB365538C98"
},
{
"file": "content/Common/AudioRes/stream/17_m_15_02.g.32.c4.dspadpcm.bfstm",
"hash": "5177943A9A25E22140D204EDCA5F36F51073BFE3BF9376C4B8730162E64E79EF"
},
{
"file": "content/Common/AudioRes/stream/18_m_15_03.g.32.c4.dspadpcm.bfstm",
"hash": "ACB0F4F2EA664D43C39DD615C8F1C22952D412F39953363F0AC48DE16A20E052"
},
{
"file": "content/Common/AudioRes/stream/19_m_15_04.g.32.c4.dspadpcm.bfstm",
"hash": "38D5C5B07D7F6AF7EE16C45DDE06ED7D05CD76239A97B1C81A7FFBC38FF337F3"
},
{
"file": "content/Common/AudioRes/stream/21_ariru_yukai_2.w.32.c4.dspadpcm.bfstm",
"hash": "8F6AA1FB02AB6024CB193412DFE206994F4D80098C88C70C9EF0E9AE34A0240F"
},
{
"file": "content/Common/AudioRes/stream/22_sisio_1.w.32.c4.dspadpcm.bfstm",
"hash": "148C70439735D20B8B11705D5757956913A7474F14CDBE615519B0E6CDCCB839"
},
{
"file": "content/Common/AudioRes/stream/23_sisio_2.w.32.c4.dspadpcm.bfstm",
"hash": "87ED7C003E767565A0C0499F65EF30E71F6EC821971584A6C697A114D3A4AC34"
},
{
"file": "content/Common/AudioRes/stream/24_sisio_3.w.32.c4.dspadpcm.bfstm",
"hash": "BE0845931EE71B9AC61ADADA0F56AD0782A83F8B8BDCA0651D475D27A785BD9A"
},
{
"file": "content/Common/AudioRes/stream/25_d_amosu_clear.w.32.c4.dspadpcm.bfstm",
"hash": "E464E3E68A5536EF7C40BDDBFEBCDBCEFECDA282B4430CF5042BEC6BDE54BC8C"
},
{
"file": "content/Common/AudioRes/stream/26_bird_clear.w.32.c4.dspadpcm.bfstm",
"hash": "E4CA74C8A3FA26EBD8CE738145E3E88320218F197E1AFABB74B6EA8A2D6028A1"
},
{
"file": "content/Common/AudioRes/stream/27_rane_clear.w.32.c4.dspadpcm.bfstm",
"hash": "2FEC8CA7DE01EDD04830AF6B58DE86C32F250F4F5181352B36227E78D7B990B4"
},
{
"file": "content/Common/AudioRes/stream/28_5departure.k.32.dspadpcm.bfstm",
"hash": "6519781F04DC073FFEA2DD4909A8A1AA99AE6EE4324C77A68E69B2F221BF0F37"
},
{
"file": "content/Common/AudioRes/stream/29_m_24_01.g.32.c4.dspadpcm.bfstm",
"hash": "5878B0CAAA5C754AFB4751AC3E37AD8F439C13C4338031FF024A6AA5D37E412F"
},
{
"file": "content/Common/AudioRes/stream/30_m_24_02.g.32.c4.dspadpcm.bfstm",
"hash": "9016ACFC0670097BEBF5CEAEE297574BD516066C499BE98F2A489F7C0E89AD34"
},
{
"file": "content/Common/AudioRes/stream/31_m_24_03.g.32.c4.dspadpcm.bfstm",
"hash": "223BDF4892E4CA7B6D02698D02656B1E3A452F0FC51AAB3B17B2A66771A76801"
},
{
"file": "content/Common/AudioRes/stream/32_m_24_04.g.32.c4.dspadpcm.bfstm",
"hash": "FA2EAFAB56A3230379258E7E69DB5EE0A8988CAFCBAF3101B107AD3955F60841"
},
{
"file": "content/Common/AudioRes/stream/33_m_24_05.g.32.c4.dspadpcm.bfstm",
"hash": "6F62E5E553779307035057892593D91DDF063CD02656FF100A827AA24EFE53B1"
},
{
"file": "content/Common/AudioRes/stream/35_m_33_01.g.32.c4.dspadpcm.bfstm",
"hash": "DECC301C6F85ACC0EE4529C59AAE9C3EF10BC9D4BC2C1C5EA8CD9961F1EB22DC"
},
{
"file": "content/Common/AudioRes/stream/36_1tale.k.32.dspadpcm.bfstm",
"hash": "F8460EB9817BA5C32C98D43AB009498D9F20273FCBB90419AC7B16B915370B00"
},
{
"file": "content/Common/AudioRes/stream/38_25awakezelda1.k.32.dspadpcm.bfstm",
"hash": "71005F46670773CB63587E88ECD7968332C9F5BF524A21C9E271546BDE50B9BC"
},
{
"file": "content/Common/AudioRes/stream/39_25awakezelda2.k.32.dspadpcm.bfstm",
"hash": "D2B4631857521F678AFD3478A0E7F342512DB525FF97557952D8927EC65DEB87"
},
{
"file": "content/Common/AudioRes/stream/40_25awakezelda3.k.32.dspadpcm.bfstm",
"hash": "624907EB5FE92CD93EE15CDFC890F170AAD8ED53206834266E3EE8DDD02608B2"
},
{
"file": "content/Common/AudioRes/stream/41_25awakezelda4.k.32.dspadpcm.bfstm",
"hash": "9BF2F549D4EB0997926D3A57CD642F7AC51710DBD46E6D275CA2F04F9411ECAE"
},
{
"file": "content/Common/AudioRes/stream/42_18jabuu.k.32.dspadpcm.bfstm",
"hash": "7BA9150CAB12C91D95D53006273FBBB76807B6C28E4751F76E07846A3C7E9480"
},
{
"file": "content/Common/AudioRes/stream/43_26fairy1.k.32.dspadpcm.bfstm",
"hash": "C81ABECADBC3747DFF3C34CDDB2951C26731A0E71AE00415A528D16C7E883521"
},
{
"file": "content/Common/AudioRes/stream/44_26fairy2.k.32.dspadpcm.bfstm",
"hash": "9CE78307AA8D74AA8ABDD0362C7270E6CB0A17A7D21F41BE9CC680E226337E9D"
},
{
"file": "content/Common/AudioRes/stream/45_rescue_1.w.32.c4.dspadpcm.bfstm",
"hash": "7391D5D5B54897443FE47DC3C0F6F9B549F278A3A6231E5E88497152DAB359E2"
},
{
"file": "content/Common/AudioRes/stream/46_rescue_2.w.32.c4.dspadpcm.bfstm",
"hash": "D933C21D2E98488BDB0FA69341AED5163342077BF4B5512DD36522ADA7FBC17C"
},
{
"file": "content/Common/AudioRes/stream/47_rescue_3.w.32.c4.dspadpcm.bfstm",
"hash": "9E08F31DC32D60224D13069CCE4C653B2356E78CE1C7BBB7D62CFA51629F1076"
},
{
"file": "content/Common/AudioRes/stream/48_rescue_4.w.32.c4.dspadpcm.bfstm",
"hash": "11B435D4001E85F896283ACD66EB62CA4EA76D7C9D2640B340348CA02AB4E78E"
},
{
"file": "content/Common/AudioRes/stream/49_rescue_5.w.32.c4.dspadpcm.bfstm",
"hash": "8E8F53FC6D866C95B42359BE83946FAF0A8FE684C507E1ED2C52AD03B567B265"
},
{
"file": "content/Common/AudioRes/stream/50_m_44_01.g.32.c4.dspadpcm.bfstm",
"hash": "471A59192251B5A66F53AAF1976D390BE949B34D3A93E7784B230A3FF7837617"
},
{
"file": "content/Common/AudioRes/stream/51_43sono2.k.32.c4.dspadpcm.bfstm",
"hash": "2771A37791382382489722E701B4229620D866C09721AF168C605451038EB287"
},
{
"file": "content/Common/AudioRes/stream/52_bp_start.w.32.c4.dspadpcm.bfstm",
"hash": "F21D3B0E9A695AE78CC5987AF1BC1FC0AE31F273B3EA50658CDCF7D3245233F8"
},
{
"file": "content/Common/AudioRes/stream/53_m_27_01.g.32.c4.dspadpcm.bfstm",
"hash": "E0AD9EE4C22BBD75367ECCDA958D9B535B2C8B3F829774AD45089606E7C1835C"
},
{
"file": "content/Common/AudioRes/stream/54_m_28_01.g.32.c4.dspadpcm.bfstm",
"hash": "223BFE18E0831E5198A53761013E4EFF8668CA2D586F69708C0903DD441ECA91"
},
{
"file": "content/Common/AudioRes/stream/55_m_28_02.g.32.c4.dspadpcm.bfstm",
"hash": "17A095EF0BAF67F62F677C290070FBF823BC63C880257F9C7E225BF13F2A7AA5"
},
{
"file": "content/Common/AudioRes/stream/56_m_29_01.g.32.c4.dspadpcm.bfstm",
"hash": "B0CC76220C42585B6416C5015002FBD6A0BA5B3E92E120F89BF7523175F72A8B"
},
{
"file": "content/Common/AudioRes/stream/57_m_36_01.g.32.c4.dspadpcm.bfstm",
"hash": "1FF3E02ED7991F022E8A7A2FCC0EBD7ABBB6376F3E71BDE42BDEB49594168640"
},
{
"file": "content/Common/AudioRes/stream/59_m_30_01.g.32.c4.dspadpcm.bfstm",
"hash": "04AD85883BD10E532696A2EF517ADC8CF211BCC6722A7BBFC2784409E0C719B6"
},
{
"file": "content/Common/AudioRes/stream/61_m_32_01.g.32.c4.dspadpcm.bfstm",
"hash": "80FCA4581A6833593005BEEFD11DA67C81332CA45F86A72C09043BE1ED0930F4"
},
{
"file": "content/Common/AudioRes/stream/62_title.n.32.c4.dspadpcm.bfstm",
"hash": "946360842D361A23863EE6D7B4F5A961564BABCECC0FB59DCCD530C6E5E0C5F5"
},
{
"file": "content/Common/AudioRes/stream/63_m_42_01.g.32.c4.dspadpcm.bfstm",
"hash": "3A724ECDE727C6333C417B0C2B2BC45673953D4723C5D09989E6EF6D6E777E26"
},
{
"file": "content/Common/AudioRes/stream/64_m_42_02.g.32.c4.dspadpcm.bfstm",
"hash": "95E8F7FECB543F0C81ED02C4DE077521A61C7EC3EEE41A800F4C3FC51F540BA9"
},
{
"file": "content/Common/AudioRes/stream/65_m_42_03.g.32.c4.dspadpcm.bfstm",
"hash": "58983F330DA5FB1108A152552A790DE91E31703D3C2C3F0BA4B86907A80922BD"
},
{
"file": "content/Common/AudioRes/stream/66_m_42_04.g.32.c4.dspadpcm.bfstm",
"hash": "015E5D2DE85897EBCDB9FCC3046C4144EE06B111132EF8A7326B7AECC8CF2AF3"
},
{
"file": "content/Common/AudioRes/stream/67_m_42_05.g.32.c4.dspadpcm.bfstm",
"hash": "C248C240E8991653C0A3CFD1B4F633A2EAF514DF0103B1A481C754D10BB71525"
},
{
"file": "content/Common/AudioRes/stream/68_m_42_06.g.32.c4.dspadpcm.bfstm",
"hash": "CEAE24D9EAAA2E318351F6655C30D455348B78DA4D6687039C6D6CF3631B52AA"
},
{
"file": "content/Common/AudioRes/stream/69_m_35_01.g.32.c4.dspadpcm.bfstm",
"hash": "035AFF192D6801EFF1BFA5FFE583F595723BD914DCB6081FD1AC5346A1DC7FE5"
},
{
"file": "content/Common/AudioRes/stream/71_m_35_03.g.32.c4.dspadpcm.bfstm",
"hash": "0C3A789EF95A94D153380BFDD9191E29B855926B83E1E4EAE57A60727DC91FE7"
},
{
"file": "content/Common/AudioRes/stream/72_m_35_04.g.32.c4.dspadpcm.bfstm",
"hash": "0CC5CE65D3E327DBDB17476BD6DFCE8777FFBD3F4539935EA2AB630A6C6D302B"
},
{
"file": "content/Common/AudioRes/stream/73_m_42_07.g.32.c4.dspadpcm.bfstm",
"hash": "6798DC3AA90EDB8A9B62CA3B063037CEA652196BFC03C8B765A19E74CB67FB59"
},
{
"file": "content/Common/AudioRes/stream/74_ganon_laugh.i.32.c4.dspadpcm.bfstm",
"hash": "3D6412F5F60C8725AA69DD84D103D808535CF38CD9B1CA82D9207B99F306493F"
},
{
"file": "content/Common/AudioRes/stream/Baachan_CK.o.32.dspadpcm.bfstm",
"hash": "6CF98CB75B813F4ACA43E7849C70168C1BAA42C11293AB6024F80FE7FF114AF8"
},
{
"file": "content/Common/AudioRes/stream/D_Forest_CK.o.32.dspadpcm.bfstm",
"hash": "C31467ECFD13C607E1C054A263554B8E08B342BEC7B97FD2CAC1579C2BCFC447"
},
{
"file": "content/Common/AudioRes/stream/D_Wind_CK.o.32.dspadpcm.bfstm",
"hash": "05EBE8FFBF2C73D6845B55FB73AAF7F3E66C65E05D01A1DE5FBFC1CAD587B1AC"
},
{
"file": "content/Common/AudioRes/stream/Deku_Pinch_CK.aa.32.dspadpcm.bfstm",
"hash": "F45818B009F306362559B9FB764810E068A2464D33C6026AAAB814296BB9C693"
},
{
"file": "content/Common/AudioRes/stream/Diocta1_CK.aa.32.dspadpcm.bfstm",
"hash": "C49805935B0A5D82E23781715A48A200E053E7A65176FD8AD7D80279FBB7EFAB"
},
{
"file": "content/Common/AudioRes/stream/Diocta2_CK.aa.32.dspadpcm.bfstm",
"hash": "0A67DE8DD0B2CC3AD01FB7A559261CAB5347F16E5E7890AB17908BD13D7146D8"
},
{
"file": "content/Common/AudioRes/stream/Elf_CK.o.32.dspadpcm.bfstm",
"hash": "FA1DBAC146913881E1787AACD83D5E97AE037DB736B2E19299F81C0C98419BB5"
},
{
"file": "content/Common/AudioRes/stream/Find_Tetra_CK.w.32.dspadpcm.bfstm",
"hash": "B3D6249D4E7A2C1F9EC8D37687914BFD30C95FA7A07C1DEA9353C3736FDC45C5"
},
{
"file": "content/Common/AudioRes/stream/Goma_A_CK.aa.32.dspadpcm.bfstm",
"hash": "823D6CA7B756D4E8C9C788FDA3AD69A95038A4CB4968BA86AF7197B83941F54E"
},
{
"file": "content/Common/AudioRes/stream/Goma_B_CK.aa.32.dspadpcm.bfstm",
"hash": "C5E0E95CC60E3BF73BAF9697CCE57817EDD9038470F83924231A03797796125C"
},
{
"file": "content/Common/AudioRes/stream/House_CK.n.32.dspadpcm.bfstm",
"hash": "3597D6B27EA73D4D9C918CC106D65AD82C154E6C3417BA33067AA134CF30D893"
},
{
"file": "content/Common/AudioRes/stream/House_G_CK.o.32.dspadpcm.bfstm",
"hash": "7D77E7EB771C269902F3F1AE652598916408BB987B2C7550F879FB775260A2AD"
},
{
"file": "content/Common/AudioRes/stream/Hyrul_On_CK.o.32.dspadpcm.bfstm",
"hash": "04A64E9F51FB3489072CC423B5F7C6E5E141DD51599FDA85BBAAC0E422E65C8A"
},
{
"file": "content/Common/AudioRes/stream/Kugutu1_CK.w.32.dspadpcm.bfstm",
"hash": "C6CCAD2FFDC8721DD25D731120DE2B5CE4626980D33AEB32EB109FA3AB553E4A"
},
{
"file": "content/Common/AudioRes/stream/Kugutu2_CK.w.32.dspadpcm.bfstm",
"hash": "6860D1FEB29DD02E9596E5C4CCD309EC5383CF1976D2BE889137CC27B960488F"
},
{
"file": "content/Common/AudioRes/stream/Kugutu3_CK.w.32.dspadpcm.bfstm",
"hash": "D41DFEF63280FBE337F85327A0DCD20DDC83FFDA29B31ACB046CF8DE0BEA30CD"
},
{
"file": "content/Common/AudioRes/stream/Kugutu_Taraba_Intro_CK.w.32.dspadpcm.bfstm",
"hash": "D016658676B8CFA8DB7D9BF4C6157F6D5223234E5847DD88A89F99E273E49AC8"
},
{
"file": "content/Common/AudioRes/stream/MajuIsl_CK.n.32.dspadpcm.bfstm",
"hash": "9AFF9CDF1D43A3281170B3668569DA376D1373BD5AB265F3689B79C86307AE17"
},
{
"file": "content/Common/AudioRes/stream/MajuIsl_Jail_CK.n.32.dspadpcm.bfstm",
"hash": "BE29FF6737357F3A9C78F0C8EDADFB3A6339FE36D0B9168FE7EE2F6FC02B8629"
},
{
"file": "content/Common/AudioRes/stream/MasterSword_Get_CK.o.32.dspadpcm.bfstm",
"hash": "D33670DC21368E9FF7E1C8C931C71F36A4A32B31C159D2DD172D8DCC998608CB"
},
{
"file": "content/Common/AudioRes/stream/Moldgera_CK.aa.32.dspadpcm.bfstm",
"hash": "35EB0616C62E0E7D378BF10A049AD3B9245A4878097FAFE54E9B2F63C189AB8E"
},
{
"file": "content/Common/AudioRes/stream/NW_STRM_DEMO_04_01.bfstm",
"hash": "6CD276A7E70D152686549640A3D4C8A6E34F49E3759C814C3F02C44B4BB0669F"
},
{
"file": "content/Common/AudioRes/stream/NW_STRM_DEMO_19_01.bfstm",
"hash": "C4C4D8F55F85363D1059C0839E333ECA6345E6DAA7ACFECCCFD414D0A517232C"
},
{
"file": "content/Common/AudioRes/stream/NW_STRM_DEMO_24_06.bfstm",
"hash": "619EA574D87EA280E74A76797F7E23985D210D7E6ACAD3BD4C16B212E0C78FE7"
},
{
"file": "content/Common/AudioRes/stream/NW_STRM_DEMO_31_01.bfstm",
"hash": "46B8A4F52E34B5A55542EFB880EA2D15056C08F5FCF05EDCB28205BB5D37BD06"
},
{
"file": "content/Common/AudioRes/stream/NW_STRM_DEMO_34_01.bfstm",
"hash": "18DE9A1EDBCC322FCF8E40BD7D9E358FCD9D9725EBC81F2D9BF260899A4F1D72"
},
{
"file": "content/Common/AudioRes/stream/NW_STRM_DEMO_35_02.bfstm",
"hash": "3ADAD51048C7F844666071D5F0E2768C8A894820A08698042B49B9F0F42535BA"
},
{
"file": "content/Common/AudioRes/stream/NW_STRM_DEMO_45.bfstm",
"hash": "6C4EB69F3CB37AE217D3F9F3537449C69376F1C53451B73854288382E7E6ECE4"
},
{
"file": "content/Common/AudioRes/stream/NW_STRM_DEMO_GO_MAJU.bfstm",
"hash": "B409885A6B02048B894C118F65430648CCEA6639A0F87DE6CFDF4406277316EE"
},
{
"file": "content/Common/AudioRes/stream/NW_STRM_DEMO_MJ_SISTER.bfstm",
"hash": "A7A49A6B880837839B3327A57C899301887200C3D487ABD6691814725A35888A"
},
{
"file": "content/Common/AudioRes/stream/NW_STRM_DEMO_TETRA_FLY.bfstm",
"hash": "F2A39FEEDAF895BA2AA584E3B22813495D9D99BF8CBE06DFDD97F73F0F961D4B"
},
{
"file": "content/Common/AudioRes/stream/NW_STRM_ENDING.bfstm",
"hash": "AF0D3CB6ACBF1E07AE42F4BA3723821AA6477B17464DFBD778C2C66E3B1DFD39"
},
{
"file": "content/Common/AudioRes/stream/NW_STRM_EPILOGUE.bfstm",
"hash": "941A052F00E9F517B569C65F7E5FE6E4AD122E6C4F2A393F3096176BAED8D2FD"
},
{
"file": "content/Common/AudioRes/stream/P_Goma_A_CK.w.32.dspadpcm.bfstm",
"hash": "912A0C84D44F44CF80D56115CEBCE5F90157A0B88787BAA8672D75A250DD11A5"
},
{
"file": "content/Common/AudioRes/stream/P_Goma_B_CK.w.32.dspadpcm.bfstm",
"hash": "F9907A30044CA5B4E419F2F9A1E122A33ED74471DECC162EBDF5E1629B280B41"
},
{
"file": "content/Common/AudioRes/stream/P_Moldgera_CK.w.32.dspadpcm.bfstm",
"hash": "7678A03E924A9138B17BEDF8F79F076820B7EEC0D4DCDD2A4F48621BD1334A5E"
},
{
"file": "content/Common/AudioRes/stream/Pirate_CK.n.32.dspadpcm.bfstm",
"hash": "886C35C17373982A8752892E983B3CF75DAA0E6C102F63DBD4E1D20AF1F2D2AD"
},
{
"file": "content/Common/AudioRes/stream/Pirate_Cabin_CK.w.32.dspadpcm.bfstm",
"hash": "656D6FD42CA1ECC7CBC9A32A130C2AE997881B7134C012C1780D4AC5C322B5E6"
},
{
"file": "content/Common/AudioRes/stream/ProloForest_FadeIn_CK.n.32.dspadpcm.bfstm",
"hash": "8A3BB7773E50825EC4C46CC5ACBED73C7C7FF6F387953AACC20CE833AB28C0A1"
},
{
"file": "content/Common/AudioRes/stream/ProloIsl_A_CK.n.32.dspadpcm.bfstm",
"hash": "3ED81873A04A98D98BDF54969869D1EF070C19EFF67366BCC2CD92D7D270C23A"
},
{
"file": "content/Common/AudioRes/stream/ProloIsl_A_Intro_CK.n.32.dspadpcm.bfstm",
"hash": "3839AAC8FB5F1CB3F9B6AE8FF72E6882183D237C0099F95A6AC6F2302AE26637"
},
{
"file": "content/Common/AudioRes/stream/ProloIsl_B_CK.n.32.dspadpcm.bfstm",
"hash": "4E55588A5A47E777C96779CCEC3F240F6DC9FBE4E1FE8AA974DC89E2A7044BF9"
},
{
"file": "content/Common/AudioRes/stream/Select_CK.n.32.dspadpcm.bfstm",
"hash": "DBBC842559B2AE5064481235A1A00E6FC11D6AB079A218477FAA762144E0376D"
},
{
"file": "content/Common/AudioRes/stream/Tak8_MDR_CK.n.32.dspadpcm.bfstm",
"hash": "E83F6FB655C79FB8519B3F98EE4A8E68C04095A3B37103BDB8ED189C766ABB88"
},
{
"file": "content/Common/AudioRes/stream/Tak8_MKR_CK.n.32.dspadpcm.bfstm",
"hash": "797E8A76431AEC98742AD1AF4BB8489C8D038F29D19D527FFB7AAE8227037F61"
},
{
"file": "content/Common/AudioRes/stream/TauraIsl_CK.n.32.dspadpcm.bfstm",
"hash": "4F01909E7F2FA0F43CB950083F9AD393CDAE4884489F50BAA3A30E7515916426"
},
{
"file": "content/Common/AudioRes/stream/Tetra_Meet_CK.w.32.dspadpcm.bfstm",
"hash": "59A9700D7225094733927FDED7187125646E27400E96F9DD8B62831F5E90FB24"
},
{
"file": "content/Common/AudioRes/stream/Tower_Battle_CK.aa.32.dspadpcm.bfstm",
"hash": "0494E3A6E232F7C9CE25F0A0EA1614ACE89ACE33D28C82311D7FBFC1A2AA874E"
},
{
"file": "content/Common/AudioRes/stream/end_credit.n.32.c4.dspadpcm.bfstm",
"hash": "C9B78F2615A150E9D3B14FF31EF6416B3EB26FCB0805EC63CCB036D8207859D6"
},
{
"file": "content/Common/Jpeg/Jpeg.sarc",
"hash": "2AF68F7AAB6A9BA3E776E4520E3F72B92A6F2EFBCE0694F332D726967017226A"
},
{
"file": "content/Common/Layout/Boot_00.szs",
"hash": "9A0E9D71B12853E690685F1DE08DD93307DEE525855A47D1868C45FC6150FCC6"
},
{
"file": "content/Common/Layout/BtnController_00.szs",
"hash": "381CD79B66073647CE097D04F855858A99DB26DE6EE09BADD1D52B74963238B0"
},
{
"file": "content/Common/Layout/BtnDifficulty_00.szs",
"hash": "AF18FE84B2BFD25B2CD5282C90EB49385AFAF14DFFC229C95D034FD22ADBF79D"
},
{
"file": "content/Common/Layout/BtnSaveData_00.szs",
"hash": "9EAFCDE4B686F6A6F0B4374A485052A17961E69BABAA30AF82B51A9974E251DA"
},
{
"file": "content/Common/Layout/Bubble_00.szs",
"hash": "08D387FC874087D7773C93501AD6D4BE7BB61BA86F1403FAB70A5A646CB12A36"
},
{
"file": "content/Common/Layout/EndingEnd_00.szs",
"hash": "51A41234D289D0FAE86B71F30666F26E21753FD5843D11588EDCEE4498B62470"
},
{
"file": "content/Common/Layout/Opening_00.szs",
"hash": "06AEDFC3F555CBE2759FEE979F653BA265820C47F7057F9B8809987B48BF683D"
},
{
"file": "content/Common/Layout/SaveData_00.szs",
"hash": "B24659DF7E5F9AC7595C97F32F391DDFB4ADEEB1C0B8C02129AFC61349A1AD6D"
},
{
"file": "content/Common/Layout/SelectController_00.szs",
"hash": "B58E7E24C398B9A41E77A8D969B794B8E53E7358EB315E0A4FBAE4F93663B6DE"
},
{
"file": "content/Common/Layout/StaffRollBG_00.szs",
"hash": "2276F1B258889652FB017BAB64DEB33AB40449875F39DB2875A36337A5D16ED6"
},
{
"file": "content/Common/Layout/StaffRollBubbleS_00.szs",
"hash": "187962BB9A3471952A962B0D3E9C6B774AFA15BA7F56290EFE130E25C1774BD0"
},
{
"file": "content/Common/Layout/StaffRollBubble_00.szs",
"hash": "F626F6C3B3F48612543D979102FC4F86EC7AF4C02ACF2FBFA7E52CEB008556AF"
},
{
"file": "content/Common/Layout/StaffRoll_00.szs",
"hash": "DA5211A79CD5B9CF537D65F3E19675F1E4C90D5A861E0BFE71C0852B014E86C3"
},
{
"file": "content/Common/Layout/StartSequeneBG_00.szs",
"hash": "1DCCD069FCE70C1C03C001F20976F563D4C6A18DAC49D7D3697A6A3A25D76474"
},
{
"file": "content/Common/Layout/Title_00.szs",
"hash": "06AAA05D996605D379B04E7AB1DFB9592D8D739C7C13E97BCD23049D33F29C5A"
},
{
"file": "content/Common/Misc/Misc.szs",
"hash": "2BC5B3C42E98CBFBE3E9DF1F4DD4BCC3444C766E4C202F764B2FA85C339A2219"
},
{
"file": "content/Common/Object/Apzl.szs",
"hash": "6A4EA4BF8121D941D77A6F833789DFCD91A4BC88A1D3AB2CC118874380152E6F"
},
{
"file": "content/Common/Object/Auction.szs",
"hash": "12C7311BA3C63089EDE079C83D808FCEEA8D1F07449418FA76455EBF165D0549"
},
{
"file": "content/Common/Object/Bdk.szs",
"hash": "DE0C45C58427C5096796DFA6AA9D1EE74939D57B8E95A662E1A4FBF18A52C025"
},
{
"file": "content/Common/Object/Bgn.szs",
"hash": "0EB49984D7047D0A4FB25FE646562F069459087A86FB15A8BA59F77B440428B4"
},
{
"file": "content/Common/Object/Bin.szs",
"hash": "B66C01A96BF3D89A8428A7F2626DF5C84D93FFBC378241A0B2928C968D5DCFE9"
},
{
"file": "content/Common/Object/Bita.szs",
"hash": "E9F90B4CD61AE587CD31CB3E6A511D08612E4C530EAB010AC04F90A5037426A9"
},
{
"file": "content/Common/Object/Bmd.szs",
"hash": "952199AB0BD10DE6165B64C2896008D97F0BFB8E094B9CC0C16B90518BD5DE6A"
},
{
"file": "content/Common/Object/Bmdfoot.szs",
"hash": "14A6F025193F9A7D80DDA45B7FAB6F6BC792DA2B10838A467989DACDA050A726"
},
{
"file": "content/Common/Object/Bmdhand.szs",
"hash": "E0E52DAC4884D7C1DAB07BE849F6A3ACD163585D664EC9682B64D836955D6859"
},
{
"file": "content/Common/Object/Bms.szs",
"hash": "DE7514319383332D25EDA37A8164CE4907AA82632B2407398726981230E9B3B7"
},
{
"file": "content/Common/Object/Bomb_00.szs",
"hash": "6B8FDF0C7CFC6B969D4BEE6B0A5A5B589B8DCB3E889314499138FAD9D2F0A1E8"
},
{
"file": "content/Common/Object/Bomber.szs",
"hash": "FFEDD087A7FEC115DE16EEAA26C74B963A24DC0303196067E04ED7F40867246B"
},
{
"file": "content/Common/Object/Boom.szs",
"hash": "49B58BA870017EEAFFEF7492AF2EFD152680B805D92F7DF622B04CA00B3DDE06"
},
{
"file": "content/Common/Object/Bpw.szs",
"hash": "3DBAA50EF1C833E08F3D42AF978831FD9D7233898F47FDD28EE0987981958699"
},
{
"file": "content/Common/Object/Bst.szs",
"hash": "53CC384CE9A6C911CBAB7059840D1C884041340DDC347342036684537F795B7C"
},
{
"file": "content/Common/Object/Btd.szs",
"hash": "78E01B1AB6A4CE65D5A3D0B17CEDCE058ED8139AE707614046564EB3B98BB7DD"
},
{
"file": "content/Common/Object/Bwd.szs",
"hash": "FAD4EBC34CD61037C7D0BD427181C87999B87EA798242CE14DA13C7EC61F4B5C"
},
{
"file": "content/Common/Object/Bwdg.szs",
"hash": "0F40F400653A52BEA2BAAE37B1B6E895B8B72564102A0016A933E0C06533651A"
},
{
"file": "content/Common/Object/Bwds.szs",
"hash": "33DFD6134669DA02EFBDDED33889B295AFAF33239E1B8E3C002390C483454170"
},
{
"file": "content/Common/Object/Deku.szs",
"hash": "B70EABFD60FAB39F047014A19209482611001724CD2B95B858D02FC8FC918191"
},
{
"file": "content/Common/Object/Demo01.szs",
"hash": "0BDF8242FDE9506F9EF3045896F02026F732DD9EBECD7D963CC64AC86913892A"
},
{
"file": "content/Common/Object/Demo02.szs",
"hash": "2BA6F1CC66B96F6D18000F87008C23487EAA13126B9BEBCB8046ACDB26672723"
},
{
"file": "content/Common/Object/Demo03.szs",
"hash": "7BD147B9ED1DE3E6861F4F0B8018AAFC9DFD7FEAB8FE636EC9E02051168BA60A"
},
{
"file": "content/Common/Object/Demo04.szs",
"hash": "0F1E8DF7F96426D410AF045525F2FB7F9338D9D75C886D582DAC8E7E5507E9A2"
},
{
"file": "content/Common/Object/Demo05.szs",
"hash": "7542023873871753DC6068FDEC672A194F3A2B42A097FED772111BDB8ED8792E"
},
{
"file": "content/Common/Object/Demo06.szs",
"hash": "137575B089827C1CEAF1AC8059130A4FF88C826C21B0E732644BA008B0A450D0"
},
{
"file": "content/Common/Object/Demo07.szs",
"hash": "B80BFA58C427498DDBBBCE9536495AE9026349E08C0F114A4EFEE5EF599B79C9"
},
{
"file": "content/Common/Object/Demo08.szs",
"hash": "3D459ACED590A5FB285FAD9763632801658B64A04B4C6A1A36035D59076903D7"
},
{
"file": "content/Common/Object/Demo10.szs",
"hash": "DB200A3E7EFFE83886C25B679481C733B4B08C5B9680DF3D0F59F26597948FF3"
},
{
"file": "content/Common/Object/Demo11.szs",
"hash": "318BCEEE098295518E44D076E8610CBDDE9462A49E705DD6D39FE7EA64A66179"
},
{
"file": "content/Common/Object/Demo14.szs",
"hash": "86A723F28DB6D6081DFAAB088ED7EB984AB2BC1D9EC4040520F6839C9FD53286"
},
{
"file": "content/Common/Object/Demo15.szs",
"hash": "B9A2181554E37137B36544254A554C4633BDBCC4562E7AD4FB4070DB37C96400"
},
{
"file": "content/Common/Object/Demo17.szs",
"hash": "8232ECD4BA2FA4D9B537F747D0F4BB1FFFF3CE780023702E51F8D88B22AF68F2"
},
{
"file": "content/Common/Object/Demo18.szs",
"hash": "D28548EE7EB5E4CA76A5A3199B99F35DF7A414598FA0C4BE0D4996196D8DD8E7"
},
{
"file": "content/Common/Object/Demo19.szs",
"hash": "ED825C2A67F9AB82647FCD90F95445763616FCCA17726E6702B5494CCC8893CC"
},
{
"file": "content/Common/Object/Demo20.szs",
"hash": "55D79768074A9A38B23D2B911B967980A1E7B212B1918B7AD3280C5D931B0124"
},
{
"file": "content/Common/Object/Demo21.szs",
"hash": "128651C50A07DA3286C279DE6DA36373C5D3949428E1A28FE2407F2B6FC75A8E"
},
{
"file": "content/Common/Object/Demo23.szs",
"hash": "D0A549EA5D0B9C06EB7D2215571F7C4B6737386F1899B9D847516BEC4CAD57DD"
},
{
"file": "content/Common/Object/Demo24.szs",
"hash": "4D7AFC10589681E693E8B7A4ECD6B5928B8E1E6D621B98DE5741C4FFF58A874E"