-
Notifications
You must be signed in to change notification settings - Fork 31
/
textures.ini
5536 lines (5502 loc) · 449 KB
/
textures.ini
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
# This file is optional
# for syntax explanation check:
# - https://github.com/hrydgard/ppsspp/pull/8715
# - https://github.com/hrydgard/ppsspp/pull/8792
# - Hash syntax: 000000000 is wildcard
[options]
version = 1
hash = xxh64
ignoreAddress = true
[hashes]
################## UI ELEMENTS ####################
# http://forums.qhimm.com/index.php?topic=18051.0 #
# Credits go to KaosuReido / Devina #
###################################################
00000000c675ceea16aa760c = ui_upscale/hermione_bigblack.png
0000000056a7083e8885f0e3 = ui_upscale/cloud_bigblack.png
00000000788fd6c3ff2a12a1 = ui_upscale/tseng_bigblack.png
000000008ee1b94078bbe6f1 = ui_upscale/aerith_bigblack.png
00000000d65b7443b714f1a5 = ui_upscale/hermione_smallblack.png
00000000e1b91a3778c9d3bf = ui_upscale/cloud_smallblack.png
0000000057593dc2534d50c2 = ui_upscale/tseng_smallblack.png
00000000b593d94f754cdb80 = ui_upscale/aerith_smallblack.png
00000000b4d591df3c584e48 = textures/ignore/00000000b4d591df3c584e48.png
00000000b5de75c28a8a8aaf = textures/ignore/00000000b5de75c28a8a8aaf.png
00000000c7d7d86228a1af6d = textures/ignore/00000000c7d7d86228a1af6d.png
00000000f833a2ee2da6e84d = textures/ignore/00000000f833a2ee2da6e84d.png
000000005d4e5c389bf0ae34 = textures/ignore/000000005d4e5c389bf0ae34.png
0000000010acff032a5c490f = textures/ignore/0000000010acff032a5c490f.png
00000000882f18332a6c78de = textures/ignore/00000000882f18332a6c78de.png
000000002587cb941447f3eb = textures/ignore/000000002587cb941447f3eb.png
0000000059f333a561b36378 = ui_upscale/DMW.png
00000000c08e99b55ddaa501 = ui_upscale/Materia Fusion 1.png
000000009398d0c01719f17c = ui_upscale/Materia Fusion 2.png
00000000ceaf23947dbe9b20 = ui_upscale/Menu UI 1.png
00000000e1f55188cbd8d181 = ui_upscale/Difficulty Text and Sparkles.png
00000000693a49fea64c600b = ui_upscale/Combat Overlay Text.png
000000001fe0c62e9befc2e0 = ui_upscale/Combat UI 1.png
00000000ddd6bb50fa7c0294 = ui_upscale/Combat UI 2.png
00000000d05e082547ac852a = ui_upscale/Menu UI Text.png
00000000cc4cb20bdad96a6c = ui_upscale/Materia Fusion Background Left.png
00000000cc4cb20b1b9a0fba = ui_upscale/Materia Fusion Background Right.png
0000000026d0db39d8b13e7d = ui_upscale/Text - Red.png
000000001a117755d8b13e7d = ui_upscale/Text - Teal.png
0000000010e11d03d8b13e7d = ui_upscale/Text - White.png
00000000fc4bfa39d8b13e7d = ui_upscale/Text - Outline.png
000000007b8fae60d8b13e7d = ui_upscale/Text - Black.png
0000000051e8663547db5374 = ui_upscale/UI Icons.png
00000000ab445ec8fa293b0d = ui_upscale/UI Glows.png
0000000042479039bf2c00ed = ui_upscale/Lines.png
00000000e4674d1b9f36c831 = ui_upscale/1.png
000000006b88b6f8dc194dc6 = ui_upscale/2.png
0000000084e1f5e829830b58 = ui_upscale/3.png
00000000af0d94ebdbb4fe8a = ui_upscale/4.png
00000000afe26d8720ef960c = ui_upscale/5.png
00000000c95ab3ecc43cb3f1 = ui_upscale/6.png
000000008c06ba8442a225ec = ui_upscale/7.png
000000001a1177553e844464 = ui_upscale/Dialog - Cyan.png
000000005f60956b3e844464 = ui_upscale/Dialog - Outline.png
000000002b8579a9045e7217 = ui_upscale/Pause.png
00000000988c20b9899569b5 = ui_upscale/chocobo.png
00000000e2f2caa5df17ba76 = ui_upscale/cait_sith.png
000000006bff1e383c584e48 = ui_upscale/purple_guy.png
000000007519b4019bf0ae34 = ui_upscale/moogle.png
00000000023139f0a7afe217 = ui_upscale/save.png
00000000020f6f462a6c78de = ui_upscale/tonberry.png
00000000674ff67b2a5c490f = ui_upscale/firebirdy.png
000000004a7329da2da6e84d = ui_upscale/cactuar.png
0000000026800ae51447f3eb = ui_upscale/big_statue_man.png
00000000c37657bc28a1af6d = ui_upscale/silver_summon.png
#00000000ccb0c441669d523d = ui_upscale/gray_summon.png
000000001df8a8bc1b09c63f = ui_upscale/ifrit.png
00000000099e9a8b420e3d1e = ui_upscale/ron_weasley.png
000000008bedae1231aeb4b3 = ui_upscale/ron_weasley_tiny.png
00000000a4e99588b714f1a5 = ui_upscale/hermione.png
00000000d4435faf16aa760c = ui_upscale/hermione_tiny.png
000000002ea8cb61754cdb80 = ui_upscale/aerith.png
000000004845370878bbe6f1 = ui_upscale/aerith_tiny.png
0000000018f6adf178c9d3bf = ui_upscale/cloud.png
00000000dd34b2938885f0e3 = ui_upscale/cloud_tiny.png
000000002c4f67ff534d50c2 = ui_upscale/tseng.png
000000009860fc4aff2a12a1 = ui_upscale/tseng_tiny.png
00000000b8b8cb34db726920 = ui_upscale/sephiroth.png
000000006513129bfa4eda55 = ui_upscale/sephiroth_tiny.png
0000000062164ce841803b18 = ui_upscale/angeal.png
000000008e187009fb88d996 = ui_upscale/angeal_tiny.png
00000000821dc057cb49cad7 = ui_upscale/1_big.png
00000000e2fdf0e5f32885c5 = ui_upscale/2_big.png
00000000c836a3a520a11e26 = ui_upscale/3_big.png
00000000c9757abc428c333e = ui_upscale/4_big.png
00000000e91eba8bb828d05e = ui_upscale/5_big.png
00000000ba7eb560feb343b2 = ui_upscale/6_big.png
00000000f62bbcb76accdcda = ui_upscale/7_big.png
000000000d7aa104a9308d0e = ui_upscale/square_logo.png
00000000adbd21b771797104 = ui_upscale/10th_annv.png
#IGNORE FMVS#
; videos
000000000000090900000000 =
#[]
#ZACK - 1ST
0000000009574f9037602ec5 = /textures/characters/zack - 1st Class/0000000009574f9037602ec5.png
000000004bb54918000ac23b = /textures/characters/zack - 1st Class/000000004bb54918000ac23b.png
000000004bb549180cb5f445 = /textures/characters/zack - 1st Class/000000004bb549180cb5f445.png
000000004bb549180f9ac2c7 = /textures/characters/zack - 1st Class/000000004bb549180f9ac2c7.png
000000004bb54918143ed1fb = /textures/characters/zack - 1st Class/000000004bb54918143ed1fb.png
000000004bb5491818fd559b = /textures/characters/zack - 1st Class/000000004bb5491818fd559b.png
000000004bb549182a6bb4f9 = /textures/characters/zack - 1st Class/000000004bb549182a6bb4f9.png
000000004bb5491847e01547 = /textures/characters/zack - 1st Class/000000004bb5491847e01547.png
000000004bb549184875d2f4 = /textures/characters/zack - 1st Class/000000004bb549184875d2f4.png
000000004bb549184a0c7dfc = /textures/characters/zack - 1st Class/000000004bb549184a0c7dfc.png
000000004bb54918548e1bec = /textures/characters/zack - 1st Class/000000004bb54918548e1bec.png
000000004bb549185e475ebd = /textures/characters/zack - 1st Class/000000004bb549185e475ebd.png
000000004bb5491866f83b81 = /textures/characters/zack - 1st Class/000000004bb5491866f83b81.png
000000004bb549187b83be73 = /textures/characters/zack - 1st Class/000000004bb549187b83be73.png
000000004bb549187fae7e65 = /textures/characters/zack - 1st Class/000000004bb549187fae7e65.png
000000004bb5491884757b71 = /textures/characters/zack - 1st Class/000000004bb5491884757b71.png
000000004bb5491885afa46b = /textures/characters/zack - 1st Class/000000004bb5491885afa46b.png
000000004bb549188a1c6864 = /textures/characters/zack - 1st Class/000000004bb549188a1c6864.png
000000004bb5491892c94a11 = /textures/characters/zack - 1st Class/000000004bb5491892c94a11.png
000000004bb54918ac84fc89 = /textures/characters/zack - 1st Class/000000004bb54918ac84fc89.png
000000004bb54918ad81c70f = /textures/characters/zack - 1st Class/000000004bb54918ad81c70f.png
000000004bb54918b314702a = /textures/characters/zack - 1st Class/000000004bb54918b314702a.png
000000004bb54918b6d94e25 = /textures/characters/zack - 1st Class/000000004bb54918b6d94e25.png
000000004bb54918c61b2e5f = /textures/characters/zack - 1st Class/000000004bb54918c61b2e5f.png
000000004bb54918d7fcdbf0 = /textures/characters/zack - 1st Class/000000004bb54918d7fcdbf0.png
000000004bb54918db71b18e = /textures/characters/zack - 1st Class/000000004bb54918db71b18e.png
000000004bb54918f9e3bf1d = /textures/characters/zack - 1st Class/000000004bb54918f9e3bf1d.png
0000000059701055cfdc408a = /textures/characters/zack - 1st Class/0000000059701055cfdc408a.png
000000006020de14f1fad7db = /textures/characters/zack - 1st Class/000000006020de14f1fad7db.png
00000000de5bff65f401a4ed = /textures/characters/zack - 1st Class/00000000de5bff65f401a4ed.png
000000004bb54918a088a17e = /textures/characters/zack - 1st Class/000000004bb54918a088a17e.png
000000004bb54918e0eda9d6 = /textures/characters/zack - 1st Class/000000004bb54918e0eda9d6.png
000000004bb549189ff3446c = /textures/characters/zack - 1st Class/000000004bb549189ff3446c.png
000000004bb5491852699147 = /textures/characters/zack - 1st Class/000000004bb5491852699147.png
#ZACK - 2ND
00000000116307af1634bc4f = /textures/characters/zack - 2nd Class/00000000116307af1634bc4f.png
00000000116307af6bc7702e = /textures/characters/zack - 2nd Class/00000000116307af6bc7702e.png
00000000116307afc1ac0794 = /textures/characters/zack - 2nd Class/00000000116307afc1ac0794.png
00000000116307afd63b6918 = /textures/characters/zack - 2nd Class/00000000116307afd63b6918.png
00000000299347aba6ab9ea1 = /textures/characters/zack - 2nd Class/00000000299347aba6ab9ea1.png
00000000db0f282d95ab414d = /textures/characters/zack - 2nd Class/00000000db0f282d95ab414d.png
000000002c488af84c2d42b1 = /textures/characters/zack - 2nd Class/000000002c488af84c2d42b1.png
00000000116307af0c0af183 = /textures/characters/zack - 2nd Class/00000000116307af0c0af183.png
00000000116307af1e34c958 = /textures/characters/zack - 2nd Class/00000000116307af1e34c958.png
00000000116307af2fe3ef0b = /textures/characters/zack - 2nd Class/00000000116307af2fe3ef0b.png
00000000116307af3295c8af = /textures/characters/zack - 2nd Class/00000000116307af3295c8af.png
00000000116307af5aea700e = /textures/characters/zack - 2nd Class/00000000116307af5aea700e.png
00000000116307af5fbcec86 = /textures/characters/zack - 2nd Class/00000000116307af5fbcec86.png
00000000116307af66d3c086 = /textures/characters/zack - 2nd Class/00000000116307af66d3c086.png
00000000116307af7bdc79d6 = /textures/characters/zack - 2nd Class/00000000116307af7bdc79d6.png
00000000116307af8f082126 = /textures/characters/zack - 2nd Class/00000000116307af8f082126.png
00000000116307af9144e048 = /textures/characters/zack - 2nd Class/00000000116307af9144e048.png
00000000116307af91bf4d13 = /textures/characters/zack - 2nd Class/00000000116307af91bf4d13.png
00000000116307af92d5e168 = /textures/characters/zack - 2nd Class/00000000116307af92d5e168.png
00000000116307af95eb71f6 = /textures/characters/zack - 2nd Class/00000000116307af95eb71f6.png
00000000116307af97d8bb42 = /textures/characters/zack - 2nd Class/00000000116307af97d8bb42.png
00000000116307afbecfa073 = /textures/characters/zack - 2nd Class/00000000116307afbecfa073.png
00000000116307afc5816222 = /textures/characters/zack - 2nd Class/00000000116307afc5816222.png
00000000116307afd9c589bd = /textures/characters/zack - 2nd Class/00000000116307afd9c589bd.png
00000000116307afdd7454d5 = /textures/characters/zack - 2nd Class/00000000116307afdd7454d5.png
00000000116307afe27a21c3 = /textures/characters/zack - 2nd Class/00000000116307afe27a21c3.png
00000000116307aff5ca1c0b = /textures/characters/zack - 2nd Class/00000000116307aff5ca1c0b.png
00000000116307af3b2eeef4 = /textures/characters/zack - 2nd Class/00000000116307af3b2eeef4.png
00000000116307af52b4d286 = /textures/characters/zack - 2nd Class/00000000116307af52b4d286.png
00000000116307af92190fbf = /textures/characters/zack - 2nd Class/00000000116307af92190fbf.png
00000000116307af1823216e = /textures/characters/zack - 2nd Class/00000000116307af1823216e.png
00000000116307afebfe9488 = /textures/characters/zack - 2nd Class/00000000116307afebfe9488.png
00000000116307afeecda96e = /textures/characters/zack - 2nd Class/00000000116307afeecda96e.png
#ZACK - BUSTER
0000000069959aeff8a2f477 = /textures/characters/zack - Buster Sword/0000000069959aeff8a2f477.png
000000007b05a24403196501 = /textures/characters/zack - Buster Sword/000000007b05a24403196501.png
000000007b05a2440703578c = /textures/characters/zack - Buster Sword/000000007b05a2440703578c.png
000000007b05a2440913f566 = /textures/characters/zack - Buster Sword/000000007b05a2440913f566.png
000000007b05a24411862bc3 = /textures/characters/zack - Buster Sword/000000007b05a24411862bc3.png
000000007b05a244183623c4 = /textures/characters/zack - Buster Sword/000000007b05a244183623c4.png
000000007b05a2441db40c77 = /textures/characters/zack - Buster Sword/000000007b05a2441db40c77.png
000000007b05a2442f81b01f = /textures/characters/zack - Buster Sword/000000007b05a2442f81b01f.png
000000007b05a244365a33e0 = /textures/characters/zack - Buster Sword/000000007b05a244365a33e0.png
000000007b05a244397619c0 = /textures/characters/zack - Buster Sword/000000007b05a244397619c0.png
000000007b05a24440a8ac7a = /textures/characters/zack - Buster Sword/000000007b05a24440a8ac7a.png
000000007b05a244429a5337 = /textures/characters/zack - Buster Sword/000000007b05a244429a5337.png
000000007b05a2444328bf13 = /textures/characters/zack - Buster Sword/000000007b05a2444328bf13.png
000000007b05a2444bc1b98e = /textures/characters/zack - Buster Sword/000000007b05a2444bc1b98e.png
000000007b05a2444cd2f50c = /textures/characters/zack - Buster Sword/000000007b05a2444cd2f50c.png
000000007b05a2445f7271b8 = /textures/characters/zack - Buster Sword/000000007b05a2445f7271b8.png
000000007b05a244606478a6 = /textures/characters/zack - Buster Sword/000000007b05a244606478a6.png
000000007b05a244616151b8 = /textures/characters/zack - Buster Sword/000000007b05a244616151b8.png
000000007b05a24462439642 = /textures/characters/zack - Buster Sword/000000007b05a24462439642.png
000000007b05a24479bb03e2 = /textures/characters/zack - Buster Sword/000000007b05a24479bb03e2.png
000000007b05a2447b3adb21 = /textures/characters/zack - Buster Sword/000000007b05a2447b3adb21.png
000000007b05a24480beee34 = /textures/characters/zack - Buster Sword/000000007b05a24480beee34.png
000000007b05a24481045872 = /textures/characters/zack - Buster Sword/000000007b05a24481045872.png
000000007b05a24486d31c93 = /textures/characters/zack - Buster Sword/000000007b05a24486d31c93.png
000000007b05a2449c717d27 = /textures/characters/zack - Buster Sword/000000007b05a2449c717d27.png
000000007b05a244a9b18dcc = /textures/characters/zack - Buster Sword/000000007b05a244a9b18dcc.png
000000007b05a244b25b2362 = /textures/characters/zack - Buster Sword/000000007b05a244b25b2362.png
000000007b05a244b578e4cd = /textures/characters/zack - Buster Sword/000000007b05a244b578e4cd.png
00000000829daf6a082785e3 = /textures/characters/zack - Buster Sword/00000000829daf6a082785e3.png
000000008ee8b9660ef78b6b = /textures/characters/zack - Buster Sword/000000008ee8b9660ef78b6b.png
000000008ee8b966122c79fe = /textures/characters/zack - Buster Sword/000000008ee8b966122c79fe.png
000000008ee8b96640d9a308 = /textures/characters/zack - Buster Sword/000000008ee8b96640d9a308.png
000000008ee8b9664cd0820a = /textures/characters/zack - Buster Sword/000000008ee8b9664cd0820a.png
000000008ee8b9667b288bd8 = /textures/characters/zack - Buster Sword/000000008ee8b9667b288bd8.png
000000008ee8b9667b522dbe = /textures/characters/zack - Buster Sword/000000008ee8b9667b522dbe.png
000000008ee8b9668921fd3c = /textures/characters/zack - Buster Sword/000000008ee8b9668921fd3c.png
000000008ee8b966a026be32 = /textures/characters/zack - Buster Sword/000000008ee8b966a026be32.png
000000008ee8b966ef529573 = /textures/characters/zack - Buster Sword/000000008ee8b966ef529573.png
00000000a83330f9715caaed = /textures/characters/zack - Buster Sword/00000000a83330f9715caaed.png
00000000db4a2baba01be523 = /textures/characters/zack - Buster Sword/00000000db4a2baba01be523.png
00000000e257e6f837c9a8e5 = /textures/characters/zack - Buster Sword/00000000e257e6f837c9a8e5.png
00000000242d1bc9ca5945e5 = /textures/characters/zack - Buster Sword/00000000242d1bc9ca5945e5.png
00000000356895a30e47edcf = /textures/characters/zack - Buster Sword/00000000356895a30e47edcf.png
00000000356895a3607146ee = /textures/characters/zack - Buster Sword/00000000356895a3607146ee.png
00000000356895a37f8186f5 = /textures/characters/zack - Buster Sword/00000000356895a37f8186f5.png
00000000356895a3842a5759 = /textures/characters/zack - Buster Sword/00000000356895a3842a5759.png
000000006a9426c4912fe42e = /textures/characters/zack - Buster Sword/000000006a9426c4912fe42e.png
00000000b0afa12c37b83ff4 = /textures/characters/zack - Buster Sword/00000000b0afa12c37b83ff4.png
00000000ea4ed12ddab378fe = /textures/characters/zack - Buster Sword/00000000ea4ed12ddab378fe.png
00000000ef8ed0ea77c13197 = /textures/characters/zack - Buster Sword/00000000ef8ed0ea77c13197.png
000000008ee8b966a026be32 = /textures/characters/zack - Buster Sword/000000008ee8b966a026be32.png
000000008ee8b966a548fbbb = /textures/characters/zack - Buster Sword/000000008ee8b966a548fbbb.png
000000008ee8b966c89dbfbd = /textures/characters/zack - Buster Sword/000000008ee8b966c89dbfbd.png
000000008ee8b966d5f15dd0 = /textures/characters/zack - Buster Sword/000000008ee8b966d5f15dd0.png
000000008ee8b966d666bf40 = /textures/characters/zack - Buster Sword/000000008ee8b966d666bf40.png
000000008ee8b966ea022439 = /textures/characters/zack - Buster Sword/000000008ee8b966ea022439.png
000000008ee8b966ef3c0c78 = /textures/characters/zack - Buster Sword/000000008ee8b966ef3c0c78.png
000000008ee8b966ef529573 = /textures/characters/zack - Buster Sword/000000008ee8b966ef529573.png
000000008ee8b966fa8b7127 = /textures/characters/zack - Buster Sword/000000008ee8b966fa8b7127.png
000000008ee8b966fa044b4c = /textures/characters/zack - Buster Sword/000000008ee8b966fa044b4c.png
000000008ee8b9660ef78b6b = /textures/characters/zack - Buster Sword/000000008ee8b9660ef78b6b.png
000000008ee8b9660fbc3b5e = /textures/characters/zack - Buster Sword/000000008ee8b9660fbc3b5e.png
000000008ee8b9664cd0820a = /textures/characters/zack - Buster Sword/000000008ee8b9664cd0820a.png
000000008ee8b9667af4ac3b = /textures/characters/zack - Buster Sword/000000008ee8b9667af4ac3b.png
000000008ee8b9667b288bd8 = /textures/characters/zack - Buster Sword/000000008ee8b9667b288bd8.png
000000008ee8b9667b522dbe = /textures/characters/zack - Buster Sword/000000008ee8b9667b522dbe.png
000000008ee8b96623b4a69e = /textures/characters/zack - Buster Sword/000000008ee8b96623b4a69e.png
000000008ee8b96640d9a308 = /textures/characters/zack - Buster Sword/000000008ee8b96640d9a308.png
000000008ee8b96688ba8302 = /textures/characters/zack - Buster Sword/000000008ee8b96688ba8302.png
000000008ee8b966122c79fe = /textures/characters/zack - Buster Sword/000000008ee8b966122c79fe.png
000000008ee8b966179f1fb9 = /textures/characters/zack - Buster Sword/000000008ee8b966179f1fb9.png
000000008ee8b966632f5ab5 = /textures/characters/zack - Buster Sword/000000008ee8b966632f5ab5.png
000000008ee8b9668921fd3c = /textures/characters/zack - Buster Sword/000000008ee8b9668921fd3c.png
000000008ee8b966125499db = /textures/characters/zack - Buster Sword/000000008ee8b966125499db.png
000000008ee8b966420892eb = /textures/characters/zack - Buster Sword/000000008ee8b966420892eb.png
#AERITH
00000000261f8f930ca8442a = /textures/characters/aerith/00000000261f8f930ca8442a.png
00000000261f8f93108264cd = /textures/characters/aerith/00000000261f8f93108264cd.png
00000000261f8f93165fb2bd = /textures/characters/aerith/00000000261f8f93165fb2bd.png
00000000261f8f9320706b75 = /textures/characters/aerith/00000000261f8f9320706b75.png
00000000261f8f9327b64ace = /textures/characters/aerith/00000000261f8f9327b64ace.png
00000000261f8f9328304a65 = /textures/characters/aerith/00000000261f8f9328304a65.png
00000000261f8f9338b0adb6 = /textures/characters/aerith/00000000261f8f9338b0adb6.png
00000000261f8f933a7a34b5 = /textures/characters/aerith/00000000261f8f933a7a34b5.png
00000000261f8f933f9d005b = /textures/characters/aerith/00000000261f8f933f9d005b.png
00000000261f8f933fcc4f2f = /textures/characters/aerith/00000000261f8f933fcc4f2f.png
00000000261f8f9343d6a6d1 = /textures/characters/aerith/00000000261f8f9343d6a6d1.png
00000000261f8f9345a1e6ba = /textures/characters/aerith/00000000261f8f9345a1e6ba.png
00000000261f8f93487ff393 = /textures/characters/aerith/00000000261f8f93487ff393.png
00000000261f8f9360716f38 = /textures/characters/aerith/00000000261f8f9360716f38.png
00000000261f8f936730bf4d = /textures/characters/aerith/00000000261f8f936730bf4d.png
00000000261f8f9367647dcc = /textures/characters/aerith/00000000261f8f9367647dcc.png
00000000261f8f936a8e8c96 = /textures/characters/aerith/00000000261f8f936a8e8c96.png
00000000261f8f937086ef4c = /textures/characters/aerith/00000000261f8f937086ef4c.png
00000000261f8f93757faef3 = /textures/characters/aerith/00000000261f8f93757faef3.png
00000000261f8f9382350aa9 = /textures/characters/aerith/00000000261f8f9382350aa9.png
00000000261f8f938b21005f = /textures/characters/aerith/00000000261f8f938b21005f.png
00000000261f8f9398fd6e6f = /textures/characters/aerith/00000000261f8f9398fd6e6f.png
00000000261f8f93a2cea9b1 = /textures/characters/aerith/00000000261f8f93a2cea9b1.png
00000000261f8f93af9d8a6c = /textures/characters/aerith/00000000261f8f93af9d8a6c.png
00000000261f8f93b9efd5e7 = /textures/characters/aerith/00000000261f8f93b9efd5e7.png
00000000261f8f93bfaf0d0a = /textures/characters/aerith/00000000261f8f93bfaf0d0a.png
00000000261f8f93c285021d = /textures/characters/aerith/00000000261f8f93c285021d.png
00000000261f8f93cfc2901e = /textures/characters/aerith/00000000261f8f93cfc2901e.png
00000000261f8f93f8d15a30 = /textures/characters/aerith/00000000261f8f93f8d15a30.png
00000000261f8f93f91e4d32 = /textures/characters/aerith/00000000261f8f93f91e4d32.png
0000000070492b2200bffcd9 = /textures/characters/aerith/0000000070492b2200bffcd9.png
00000000e18174b6276c437d = /textures/characters/aerith/00000000e18174b6276c437d.png
000000005e6ac572d8fbdd16 = /textures/characters/aerith/000000005e6ac572d8fbdd16.png
0000000085710b3fc9a362ea = /textures/characters/aerith/0000000085710b3fc9a362ea.png
#ANGEAL
0000000001d0a0ba567fbd3b = /textures/characters/angeal/0000000001d0a0ba567fbd3b.png
0000000075dc604bf76868eb = /textures/characters/angeal/0000000075dc604bf76868eb.png
00000000b0c960591066c779 = /textures/characters/angeal/00000000b0c960591066c779.png
00000000b0c960591b9094bb = /textures/characters/angeal/00000000b0c960591b9094bb.png
00000000b0c96059332c0bd5 = /textures/characters/angeal/00000000b0c96059332c0bd5.png
00000000b0c96059554121d6 = /textures/characters/angeal/00000000b0c96059554121d6.png
00000000b0c960596d0e49b5 = /textures/characters/angeal/00000000b0c960596d0e49b5.png
00000000b0c96059926222a5 = /textures/characters/angeal/00000000b0c96059926222a5.png
00000000b0c96059c47fa563 = /textures/characters/angeal/00000000b0c96059c47fa563.png
00000000b0c96059d0aadabf = /textures/characters/angeal/00000000b0c96059d0aadabf.png
00000000b0c96059d6a09fbc = /textures/characters/angeal/00000000b0c96059d6a09fbc.png
00000000b0c96059db3c7d87 = /textures/characters/angeal/00000000b0c96059db3c7d87.png
00000000dccb18b181fe7a98 = /textures/characters/angeal/00000000dccb18b181fe7a98.png
00000000b0c9605980e0fdcb = /textures/characters/angeal/00000000b0c9605980e0fdcb.png
00000000b0c960598c97c230 = /textures/characters/angeal/00000000b0c960598c97c230.png
#CISSNEI
000000000005e9e84532d1fb = /textures/characters/cissnei/000000000005e9e84532d1fb.png
000000002cf7c8c136366738 = /textures/characters/cissnei/000000002cf7c8c136366738.png
000000002cf7c8c14ea20758 = /textures/characters/cissnei/000000002cf7c8c14ea20758.png
000000002cf7c8c19c874660 = /textures/characters/cissnei/000000002cf7c8c19c874660.png
000000002cf7c8c1daa62db7 = /textures/characters/cissnei/000000002cf7c8c1daa62db7.png
0000000087dd23078e3d606f = /textures/characters/cissnei/0000000087dd23078e3d606f.png
00000000ffef414623680d56 = /textures/characters/cissnei/00000000ffef414623680d56.png
00000000ffef414662b099b2 = /textures/characters/cissnei/00000000ffef414662b099b2.png
00000000ffef414683f5208e = /textures/characters/cissnei/00000000ffef414683f5208e.png
00000000ffef41469624ab96 = /textures/characters/cissnei/00000000ffef41469624ab96.png
00000000ffef4146b98bf022 = /textures/characters/cissnei/00000000ffef4146b98bf022.png
00000000ffef4146c6303d54 = /textures/characters/cissnei/00000000ffef4146c6303d54.png
00000000ffef4146f8c375f7 = /textures/characters/cissnei/00000000ffef4146f8c375f7.png
0000000087cbe699be867bb9 = /textures/characters/cissnei/0000000087cbe699be867bb9.png
00000000ffef414612662daf = /textures/characters/cissnei/00000000ffef414612662daf.png
00000000ffef41464fecd248 = /textures/characters/cissnei/00000000ffef41464fecd248.png
00000000ffef414668dde6cb = /textures/characters/cissnei/00000000ffef414668dde6cb.png
#CLOUD
0000000071aefe56f0b3f6e3 = /textures/characters/cloud/0000000071aefe56f0b3f6e3.png
00000000c4af972371b78740 = /textures/characters/cloud/00000000c4af972371b78740.png
00000000c75fbbef06b1dc0b = /textures/characters/cloud/00000000c75fbbef06b1dc0b.png
00000000c75fbbef3b629be2 = /textures/characters/cloud/00000000c75fbbef3b629be2.png
00000000c75fbbef614c6e7f = /textures/characters/cloud/00000000c75fbbef614c6e7f.png
00000000c75fbbef662cccc7 = /textures/characters/cloud/00000000c75fbbef662cccc7.png
00000000c75fbbef9aef6e73 = /textures/characters/cloud/00000000c75fbbef9aef6e73.png
00000000c75fbbefa92eab3a = /textures/characters/cloud/00000000c75fbbefa92eab3a.png
00000000c75fbbefb7e7a5d6 = /textures/characters/cloud/00000000c75fbbefb7e7a5d6.png
00000000c75fbbefd52d6e12 = /textures/characters/cloud/00000000c75fbbefd52d6e12.png
00000000c75fbbefdc743716 = /textures/characters/cloud/00000000c75fbbefdc743716.png
00000000c75fbbefec726dde = /textures/characters/cloud/00000000c75fbbefec726dde.png
00000000eb771fca011c1973 = /textures/characters/cloud/00000000eb771fca011c1973.png
000000004abafe667a4672b4 = /textures/characters/cloud/000000004abafe667a4672b4.png
000000008ddfcdd15282dfec = /textures/characters/cloud/000000008ddfcdd15282dfec.png
000000008ddfcdd187adc62b = /textures/characters/cloud/000000008ddfcdd187adc62b.png
000000008ddfcdd189e04222 = /textures/characters/cloud/000000008ddfcdd189e04222.png
000000008ddfcdd1f82eee97 = /textures/characters/cloud/000000008ddfcdd1f82eee97.png
00000000d299af52c3d62733 = /textures/characters/cloud/00000000d299af52c3d62733.png
00000000e60b78d85e2dadaf = /textures/characters/cloud/00000000e60b78d85e2dadaf.png
#GENESIS
0000000010c1e83647e5046e = /textures/characters/genesis/0000000010c1e83647e5046e.png
0000000034680dbb0903c544 = /textures/characters/genesis/0000000034680dbb0903c544.png
000000003f866d20f4f0deac = /textures/characters/genesis/000000003f866d20f4f0deac.png
00000000754af6b1178bd6e1 = /textures/characters/genesis/00000000754af6b1178bd6e1.png
000000009f8fa4b40ce587f0 = /textures/characters/genesis/000000009f8fa4b40ce587f0.png
000000009f8fa4b41265c6b6 = /textures/characters/genesis/000000009f8fa4b41265c6b6.png
000000009f8fa4b419f99152 = /textures/characters/genesis/000000009f8fa4b419f99152.png
000000009f8fa4b424a9bd36 = /textures/characters/genesis/000000009f8fa4b424a9bd36.png
000000009f8fa4b43a383677 = /textures/characters/genesis/000000009f8fa4b43a383677.png
000000009f8fa4b43b43901c = /textures/characters/genesis/000000009f8fa4b43b43901c.png
000000009f8fa4b45d4c27de = /textures/characters/genesis/000000009f8fa4b45d4c27de.png
000000009f8fa4b46251c244 = /textures/characters/genesis/000000009f8fa4b46251c244.png
000000009f8fa4b479af8b7d = /textures/characters/genesis/000000009f8fa4b479af8b7d.png
000000009f8fa4b4870d8669 = /textures/characters/genesis/000000009f8fa4b4870d8669.png
000000009f8fa4b494f61c84 = /textures/characters/genesis/000000009f8fa4b494f61c84.png
000000009f8fa4b49b4bdf5d = /textures/characters/genesis/000000009f8fa4b49b4bdf5d.png
000000009f8fa4b49ce6c3fa = /textures/characters/genesis/000000009f8fa4b49ce6c3fa.png
000000009f8fa4b4b51c10ed = /textures/characters/genesis/000000009f8fa4b4b51c10ed.png
000000009f8fa4b4c8eefa7e = /textures/characters/genesis/000000009f8fa4b4c8eefa7e.png
000000009f8fa4b4ca92f0e8 = /textures/characters/genesis/000000009f8fa4b4ca92f0e8.png
000000009f8fa4b4d235bd64 = /textures/characters/genesis/000000009f8fa4b4d235bd64.png
000000009f8fa4b4d8cad766 = /textures/characters/genesis/000000009f8fa4b4d8cad766.png
000000009f8fa4b4dc83af4b = /textures/characters/genesis/000000009f8fa4b4dc83af4b.png
000000009f8fa4b4f04c7e06 = /textures/characters/genesis/000000009f8fa4b4f04c7e06.png
000000009f8fa4b4f9b82ce5 = /textures/characters/genesis/000000009f8fa4b4f9b82ce5.png
000000009f8fa4b4ff350fe4 = /textures/characters/genesis/000000009f8fa4b4ff350fe4.png
00000000a411a84581dded20 = /textures/characters/genesis/00000000a411a84581dded20.png
00000000c6c0c8d8973e09f4 = /textures/characters/genesis/00000000c6c0c8d8973e09f4.png
00000000e94c7e69e9299f91 = /textures/characters/genesis/00000000e94c7e69e9299f91.png
0000000026f4dc13d8df77f3 = /textures/characters/genesis/0000000026f4dc13d8df77f3.png
0000000067c905fb6caa8338 = /textures/characters/genesis/0000000067c905fb6caa8338.png
000000006f349b6d9e274b7b = /textures/characters/genesis/000000006f349b6d9e274b7b.png
000000007139fba1629b32cc = /textures/characters/genesis/000000007139fba1629b32cc.png
00000000754af6b12671f75e = /textures/characters/genesis/00000000754af6b12671f75e.png
00000000754af6b1654b0fe9 = /textures/characters/genesis/00000000754af6b1654b0fe9.png
00000000754af6b17dc90754 = /textures/characters/genesis/00000000754af6b17dc90754.png
00000000754af6b1ca7ccec9 = /textures/characters/genesis/00000000754af6b1ca7ccec9.png
00000000788a44189f12bcc2 = /textures/characters/genesis/00000000788a44189f12bcc2.png
00000000e08f4be20c0665cf = /textures/characters/genesis/00000000e08f4be20c0665cf.png
#SEPHIROTH
000000001174606ef2cf83fe = /textures/characters/sephiroth/000000001174606ef2cf83fe.png
0000000043e59e1900f2356c = /textures/characters/sephiroth/0000000043e59e1900f2356c.png
0000000043e59e192b0b9d8b = /textures/characters/sephiroth/0000000043e59e192b0b9d8b.png
0000000043e59e19832149bc = /textures/characters/sephiroth/0000000043e59e19832149bc.png
0000000043e59e199d8cad7f = /textures/characters/sephiroth/0000000043e59e199d8cad7f.png
0000000043e59e19a13b3832 = /textures/characters/sephiroth/0000000043e59e19a13b3832.png
000000004ccd9bdcc0ed9f10 = /textures/characters/sephiroth/000000004ccd9bdcc0ed9f10.png
0000000054345c30e53a0de5 = /textures/characters/sephiroth/0000000054345c30e53a0de5.png
00000000776328e2869abfd4 = /textures/characters/sephiroth/00000000776328e2869abfd4.png
000000008ee283359111507b = /textures/characters/sephiroth/000000008ee283359111507b.png
00000000c198ad05e0cb56da = /textures/characters/sephiroth/00000000c198ad05e0cb56da.png
00000000c7df0ddecc2ffce6 = /textures/characters/sephiroth/00000000c7df0ddecc2ffce6.png
0000000043e59e195e019572 = /textures/characters/sephiroth/0000000043e59e195e019572.png
0000000043e59e19fc35e9c2 = /textures/characters/sephiroth/0000000043e59e19fc35e9c2.png
000000003e8534fbca561d49 = /textures/characters/sephiroth/000000003e8534fbca561d49.png
000000004ac6f31325168f19 = /textures/characters/sephiroth/000000004ac6f31325168f19.png
000000004ac6f3132a98769b = /textures/characters/sephiroth/000000004ac6f3132a98769b.png
000000004ac6f313202b4f57 = /textures/characters/sephiroth/000000004ac6f313202b4f57.png
000000004ac6f313879dc2a2 = /textures/characters/sephiroth/000000004ac6f313879dc2a2.png
000000004ac6f313af8f4e79 = /textures/characters/sephiroth/000000004ac6f313af8f4e79.png
000000004ac6f313bb1a9ac9 = /textures/characters/sephiroth/000000004ac6f313bb1a9ac9.png
000000004ac6f313cd6baed3 = /textures/characters/sephiroth/000000004ac6f313cd6baed3.png
000000004ac6f313f666e7bd = /textures/characters/sephiroth/000000004ac6f313f666e7bd.png
00000000839e35c179f14234 = /textures/characters/sephiroth/00000000839e35c179f14234.png
000000008a4d4e4e03da1357 = /textures/characters/sephiroth/000000008a4d4e4e03da1357.png
000000008a4d4e4e073d8ae2 = /textures/characters/sephiroth/000000008a4d4e4e073d8ae2.png
000000008a4d4e4e69fe9949 = /textures/characters/sephiroth/000000008a4d4e4e69fe9949.png
000000008a4d4e4ed9cd964c = /textures/characters/sephiroth/000000008a4d4e4ed9cd964c.png
000000008a4d4e4ee7ce238c = /textures/characters/sephiroth/000000008a4d4e4ee7ce238c.png
0000000097fa3f9ea215ea23 = /textures/characters/sephiroth/0000000097fa3f9ea215ea23.png
00000000fa29105b37cab943 = /textures/characters/sephiroth/00000000fa29105b37cab943.png
#TIFA
0000000030daa89e0fdf8c83 = /textures/characters/tifa/0000000030daa89e0fdf8c83.png
0000000030daa89e204a335c = /textures/characters/tifa/0000000030daa89e204a335c.png
0000000030daa89eb0413359 = /textures/characters/tifa/0000000030daa89eb0413359.png
0000000030daa89ee5ce93dc = /textures/characters/tifa/0000000030daa89ee5ce93dc.png
#LAZARD
000000006a2625170ee492f9 = /textures/characters/lazard/000000006a2625170ee492f9.png
000000006a262517132f8e21 = /textures/characters/lazard/000000006a262517132f8e21.png
000000006a26251717d0dbc0 = /textures/characters/lazard/000000006a26251717d0dbc0.png
000000006a26251736ab2ba5 = /textures/characters/lazard/000000006a26251736ab2ba5.png
000000006a2625173823c5c3 = /textures/characters/lazard/000000006a2625173823c5c3.png
000000006a2625174fdb0161 = /textures/characters/lazard/000000006a2625174fdb0161.png
000000006a26251779e8c03e = /textures/characters/lazard/000000006a26251779e8c03e.png
000000006a262517a0ddda1b = /textures/characters/lazard/000000006a262517a0ddda1b.png
000000006a262517b8d4c281 = /textures/characters/lazard/000000006a262517b8d4c281.png
000000006a262517b110fcb0 = /textures/characters/lazard/000000006a262517b110fcb0.png
000000006a262517d8844289 = /textures/characters/lazard/000000006a262517d8844289.png
000000006a262517de7a421f = /textures/characters/lazard/000000006a262517de7a421f.png
000000006a262517d8dce7a4 = /textures/characters/lazard/000000006a262517d8dce7a4.png
000000006a262517e3dc368b = /textures/characters/lazard/000000006a262517e3dc368b.png
000000006a262517f2ee633a = /textures/characters/lazard/000000006a262517f2ee633a.png
0000000028d0495bb0174f6b = /textures/characters/lazard/0000000028d0495bb0174f6b.png
000000004ac6f31373655066 = /textures/characters/lazard/000000004ac6f31373655066.png
000000005b6b13dc3d1b98df = /textures/characters/lazard/000000005b6b13dc3d1b98df.png
000000005b858b2b2b2dc490 = /textures/characters/lazard/000000005b858b2b2b2dc490.png
000000009ffae1380e8b5b42 = /textures/characters/lazard/000000009ffae1380e8b5b42.png
00000000a387a4bc3c437c2b = /textures/characters/lazard/00000000a387a4bc3c437c2b.png
00000000cbcfba0175b41fcd = /textures/characters/lazard/00000000cbcfba0175b41fcd.png
00000000ea8c58e5a47bec65 = /textures/characters/lazard/00000000ea8c58e5a47bec65.png
00000000f98355a90bed7a75 = /textures/characters/lazard/00000000f98355a90bed7a75.png
00000000f98355a966cf21a0 = /textures/characters/lazard/00000000f98355a966cf21a0.png
00000000f98355a9a97d579e = /textures/characters/lazard/00000000f98355a9a97d579e.png
00000000f98355a9c5d9aafb = /textures/characters/lazard/00000000f98355a9c5d9aafb.png
00000000f98355a9de530987 = /textures/characters/lazard/00000000f98355a9de530987.png
00000000f98355a9df87752b = /textures/characters/lazard/00000000f98355a9df87752b.png
00000000f98355a9e91a8122 = /textures/characters/lazard/00000000f98355a9e91a8122.png
00000000f98355a9ef596657 = /textures/characters/lazard/00000000f98355a9ef596657.png
00000000fb523c73e4ad74dc = /textures/characters/lazard/00000000fb523c73e4ad74dc.png
00000000caba2a761d4b79b2 = /textures/characters/lazard/00000000caba2a761d4b79b2.png
00000000ed1b869e82cf926c = /textures/characters/lazard/00000000ed1b869e82cf926c.png
000000006a2625170114fc82 = /textures/characters/lazard/000000006a2625170114fc82.png
000000006a262517027d710e = /textures/characters/lazard/000000006a262517027d710e.png
000000006a2625172a095798 = /textures/characters/lazard/000000006a2625172a095798.png
000000006a2625175f778118 = /textures/characters/lazard/000000006a2625175f778118.png
000000006a2625176d52e274 = /textures/characters/lazard/000000006a2625176d52e274.png
000000006a262517703974e1 = /textures/characters/lazard/000000006a262517703974e1.png
000000006a2625177f3aba85 = /textures/characters/lazard/000000006a2625177f3aba85.png
000000006a26251791ecf8bf = /textures/characters/lazard/000000006a26251791ecf8bf.png
000000006a262517cdc55b1e = /textures/characters/lazard/000000006a262517cdc55b1e.png
000000006a262517cdd7c7af = /textures/characters/lazard/000000006a262517cdd7c7af.png
000000006a262517fe32da3d = /textures/characters/lazard/000000006a262517fe32da3d.png
#TSENG
000000003ae4dbad32b015f6 = /textures/characters/tseng/000000003ae4dbad32b015f6.png
000000003ae4dbad4107a1bb = /textures/characters/tseng/000000003ae4dbad4107a1bb.png
000000003ae4dbad4f3b351e = /textures/characters/tseng/000000003ae4dbad4f3b351e.png
000000003ae4dbad7160cb5a = /textures/characters/tseng/000000003ae4dbad7160cb5a.png
000000003ae4dbad918861d8 = /textures/characters/tseng/000000003ae4dbad918861d8.png
000000003ae4dbadb0f54d64 = /textures/characters/tseng/000000003ae4dbadb0f54d64.png
000000003ae4dbadb35b5a7b = /textures/characters/tseng/000000003ae4dbadb35b5a7b.png
000000003ae4dbadba594dab = /textures/characters/tseng/000000003ae4dbadba594dab.png
000000003ae4dbadbd531f2c = /textures/characters/tseng/000000003ae4dbadbd531f2c.png
000000003ae4dbadd06e6b63 = /textures/characters/tseng/000000003ae4dbadd06e6b63.png
000000003ae4dbadd31e6f6d = /textures/characters/tseng/000000003ae4dbadd31e6f6d.png
000000003ae4dbadfe7a6c7f = /textures/characters/tseng/000000003ae4dbadfe7a6c7f.png
000000005be89ef834ed5c4d = /textures/characters/tseng/000000005be89ef834ed5c4d.png
00000000d229fa3a9a494aaa = /textures/characters/tseng/00000000d229fa3a9a494aaa.png
00000000e9c9ff49e0caba37 = /textures/characters/tseng/00000000e9c9ff49e0caba37.png
#HOLLANDER
000000003ae1d89c037255d7 = /textures/characters/hollander/000000003ae1d89c037255d7.png
000000003ae1d89c1ce85fe9 = /textures/characters/hollander/000000003ae1d89c1ce85fe9.png
000000003ae1d89c249a0c2d = /textures/characters/hollander/000000003ae1d89c249a0c2d.png
000000003ae1d89c56bcfbba = /textures/characters/hollander/000000003ae1d89c56bcfbba.png
000000003ae1d89c601cb92e = /textures/characters/hollander/000000003ae1d89c601cb92e.png
000000003ae1d89c69d92bee = /textures/characters/hollander/000000003ae1d89c69d92bee.png
000000003ae1d89c6ddc841c = /textures/characters/hollander/000000003ae1d89c6ddc841c.png
000000003ae1d89c74637def = /textures/characters/hollander/000000003ae1d89c74637def.png
000000003ae1d89c9eab90eb = /textures/characters/hollander/000000003ae1d89c9eab90eb.png
000000003ae1d89caa052a44 = /textures/characters/hollander/000000003ae1d89caa052a44.png
000000003ae1d89cae8a4e6d = /textures/characters/hollander/000000003ae1d89cae8a4e6d.png
000000003ae1d89cf0bcc2e6 = /textures/characters/hollander/000000003ae1d89cf0bcc2e6.png
0000000075c6eb9b3aa1ae28 = /textures/characters/hollander/0000000075c6eb9b3aa1ae28.png
00000000b4219bae37f11ea9 = /textures/characters/hollander/00000000b4219bae37f11ea9.png
00000000fd788ab01d139dc3 = /textures/characters/hollander/00000000fd788ab01d139dc3.png
00000000fd788ab01fb1b4f9 = /textures/characters/hollander/00000000fd788ab01fb1b4f9.png
00000000fd788ab02d22ad77 = /textures/characters/hollander/00000000fd788ab02d22ad77.png
00000000fd788ab040365a31 = /textures/characters/hollander/00000000fd788ab040365a31.png
00000000fd788ab051e6d928 = /textures/characters/hollander/00000000fd788ab051e6d928.png
00000000fd788ab055166aad = /textures/characters/hollander/00000000fd788ab055166aad.png
00000000fd788ab05d0d477f = /textures/characters/hollander/00000000fd788ab05d0d477f.png
00000000fd788ab05f390384 = /textures/characters/hollander/00000000fd788ab05f390384.png
00000000fd788ab0a21f604b = /textures/characters/hollander/00000000fd788ab0a21f604b.png
00000000fd788ab0a9adcf84 = /textures/characters/hollander/00000000fd788ab0a9adcf84.png
00000000fd788ab0af4c3930 = /textures/characters/hollander/00000000fd788ab0af4c3930.png
00000000fd788ab0b3bcc5e2 = /textures/characters/hollander/00000000fd788ab0b3bcc5e2.png
00000000fd788ab0c26a1d7c = /textures/characters/hollander/00000000fd788ab0c26a1d7c.png
00000000fd788ab0f2aa9612 = /textures/characters/hollander/00000000fd788ab0f2aa9612.png
#YUFFIE
0000000029a85ee0050c50cc = /textures/characters/yuffie/0000000029a85ee0050c50cc.png
0000000029a85ee012872821 = /textures/characters/yuffie/0000000029a85ee012872821.png
0000000029a85ee01b3262ff = /textures/characters/yuffie/0000000029a85ee01b3262ff.png
0000000029a85ee045b809e7 = /textures/characters/yuffie/0000000029a85ee045b809e7.png
0000000029a85ee05ff7fb0b = /textures/characters/yuffie/0000000029a85ee05ff7fb0b.png
0000000029a85ee08b24db7b = /textures/characters/yuffie/0000000029a85ee08b24db7b.png
0000000029a85ee08f3d9a84 = /textures/characters/yuffie/0000000029a85ee08f3d9a84.png
0000000029a85ee0aa760acd = /textures/characters/yuffie/0000000029a85ee0aa760acd.png
0000000029a85ee0b35d3159 = /textures/characters/yuffie/0000000029a85ee0b35d3159.png
0000000029a85ee0d6bd6f0a = /textures/characters/yuffie/0000000029a85ee0d6bd6f0a.png
0000000029a85ee0dca7f107 = /textures/characters/yuffie/0000000029a85ee0dca7f107.png
#RENO
000000005628bd883eb4fd2b = /textures/characters/reno/000000005628bd883eb4fd2b.png
000000005628bd888082c4aa = /textures/characters/reno/000000005628bd888082c4aa.png
000000005628bd88539180e0 = /textures/characters/reno/000000005628bd88539180e0.png
#RUDE
00000000445b1abc8be26160 = /textures/characters/rude/00000000445b1abc8be26160.png
#NPC
000000000134c84cd2208a00 = /textures/characters/npc/000000000134c84cd2208a00.png
0000000001aab5155df1d0b2 = /textures/characters/npc/0000000001aab5155df1d0b2.png
000000001f5cbbee150122dd = /textures/characters/npc/000000001f5cbbee150122dd.png
000000001f5cbbee1da7dd0f = /textures/characters/npc/000000001f5cbbee1da7dd0f.png
000000001f5cbbee35594a5b = /textures/characters/npc/000000001f5cbbee35594a5b.png
000000001f5cbbee48b2b8fd = /textures/characters/npc/000000001f5cbbee48b2b8fd.png
000000001f5cbbee4e909fc9 = /textures/characters/npc/000000001f5cbbee4e909fc9.png
000000001f5cbbee549cdc49 = /textures/characters/npc/000000001f5cbbee549cdc49.png
000000001f5cbbee6c8da935 = /textures/characters/npc/000000001f5cbbee6c8da935.png
000000001f5cbbee81acb78f = /textures/characters/npc/000000001f5cbbee81acb78f.png
000000001f5cbbeea702799d = /textures/characters/npc/000000001f5cbbeea702799d.png
000000001f5cbbeead9587f1 = /textures/characters/npc/000000001f5cbbeead9587f1.png
000000001f5cbbeee8b1c43b = /textures/characters/npc/000000001f5cbbeee8b1c43b.png
00000000204fb2abbae05968 = /textures/characters/npc/00000000204fb2abbae05968.png
0000000021f1f65f21a2c4e1 = /textures/characters/npc/0000000021f1f65f21a2c4e1.png
0000000021f1f65f8afa008d = /textures/characters/npc/0000000021f1f65f8afa008d.png
0000000021f1f65f9b6f33b7 = /textures/characters/npc/0000000021f1f65f9b6f33b7.png
0000000021f1f65ffd524d55 = /textures/characters/npc/0000000021f1f65ffd524d55.png
0000000028612deb5660e833 = /textures/characters/npc/0000000028612deb5660e833.png
000000002952b85417588f55 = /textures/characters/npc/000000002952b85417588f55.png
000000002952b8543135c30a = /textures/characters/npc/000000002952b8543135c30a.png
000000002952b8544d02a295 = /textures/characters/npc/000000002952b8544d02a295.png
000000002952b85470ab429f = /textures/characters/npc/000000002952b85470ab429f.png
000000002952b85486272de0 = /textures/characters/npc/000000002952b85486272de0.png
000000002952b8548ff7d9bb = /textures/characters/npc/000000002952b8548ff7d9bb.png
000000002952b85491fb9a2c = /textures/characters/npc/000000002952b85491fb9a2c.png
000000002952b85498a880db = /textures/characters/npc/000000002952b85498a880db.png
000000002952b854a3ae48d2 = /textures/characters/npc/000000002952b854a3ae48d2.png
000000002952b854abd789a3 = /textures/characters/npc/000000002952b854abd789a3.png
000000002952b854d7d304bb = /textures/characters/npc/000000002952b854d7d304bb.png
000000002952b854fb25f122 = /textures/characters/npc/000000002952b854fb25f122.png
00000000406a59b214f1e69d = /textures/characters/npc/00000000406a59b214f1e69d.png
00000000406a59b246ba5c2d = /textures/characters/npc/00000000406a59b246ba5c2d.png
00000000406a59b25ccc0f23 = /textures/characters/npc/00000000406a59b25ccc0f23.png
00000000406a59b265844824 = /textures/characters/npc/00000000406a59b265844824.png
00000000406a59b2755b5ea0 = /textures/characters/npc/00000000406a59b2755b5ea0.png
00000000406a59b2820533df = /textures/characters/npc/00000000406a59b2820533df.png
00000000406a59b29d5e5761 = /textures/characters/npc/00000000406a59b29d5e5761.png
00000000406a59b2b3caa357 = /textures/characters/npc/00000000406a59b2b3caa357.png
00000000406a59b2f4aeb698 = /textures/characters/npc/00000000406a59b2f4aeb698.png
000000004d6677f8ab7c54c1 = /textures/characters/npc/000000004d6677f8ab7c54c1.png
00000000568366582d5e9034 = /textures/characters/npc/00000000568366582d5e9034.png
00000000568366588f62d365 = /textures/characters/npc/00000000568366588f62d365.png
0000000056836658d4a8b0bd = /textures/characters/npc/0000000056836658d4a8b0bd.png
000000005aca8ea33bb9c9fb = /textures/characters/npc/000000005aca8ea33bb9c9fb.png
000000005aca8ea34d4a248a = /textures/characters/npc/000000005aca8ea34d4a248a.png
000000005aca8ea35d5f132e = /textures/characters/npc/000000005aca8ea35d5f132e.png
000000005aca8ea36de9a314 = /textures/characters/npc/000000005aca8ea36de9a314.png
000000005aca8ea37c136ee9 = /textures/characters/npc/000000005aca8ea37c136ee9.png
000000005aca8ea390279294 = /textures/characters/npc/000000005aca8ea390279294.png
000000005aca8ea39453d704 = /textures/characters/npc/000000005aca8ea39453d704.png
000000005aca8ea3c6e048bd = /textures/characters/npc/000000005aca8ea3c6e048bd.png
000000005aca8ea3d45df43e = /textures/characters/npc/000000005aca8ea3d45df43e.png
000000005aca8ea3d5fa1143 = /textures/characters/npc/000000005aca8ea3d5fa1143.png
000000005aca8ea3db9abb99 = /textures/characters/npc/000000005aca8ea3db9abb99.png
000000005aca8ea3f80a6216 = /textures/characters/npc/000000005aca8ea3f80a6216.png
00000000625a0739865306cc = /textures/characters/npc/00000000625a0739865306cc.png
0000000068335aefec0600d6 = /textures/characters/npc/0000000068335aefec0600d6.png
000000006ba30cbb93f40247 = /textures/characters/npc/000000006ba30cbb93f40247.png
000000006f42d98701eacc97 = /textures/characters/npc/000000006f42d98701eacc97.png
000000006f42d987301a17bc = /textures/characters/npc/000000006f42d987301a17bc.png
000000006f42d98752edec9f = /textures/characters/npc/000000006f42d98752edec9f.png
000000006f42d9875a8dd5da = /textures/characters/npc/000000006f42d9875a8dd5da.png
000000006f42d98772fc0d75 = /textures/characters/npc/000000006f42d98772fc0d75.png
000000006f42d98774cfabad = /textures/characters/npc/000000006f42d98774cfabad.png
000000006f42d987961a577d = /textures/characters/npc/000000006f42d987961a577d.png
000000006f42d987c0c1cc3a = /textures/characters/npc/000000006f42d987c0c1cc3a.png
000000006f42d987f27e2345 = /textures/characters/npc/000000006f42d987f27e2345.png
000000006f42d987fb7db48f = /textures/characters/npc/000000006f42d987fb7db48f.png
000000007333129407308950 = /textures/characters/npc/000000007333129407308950.png
00000000733312940d60b223 = /textures/characters/npc/00000000733312940d60b223.png
00000000733312942e58bf77 = /textures/characters/npc/00000000733312942e58bf77.png
00000000733312945108adf7 = /textures/characters/npc/00000000733312945108adf7.png
00000000733312945924d9b4 = /textures/characters/npc/00000000733312945924d9b4.png
00000000733312946137d664 = /textures/characters/npc/00000000733312946137d664.png
000000007333129476bb22f7 = /textures/characters/npc/000000007333129476bb22f7.png
0000000073331294832c7a11 = /textures/characters/npc/0000000073331294832c7a11.png
000000007333129489b51f73 = /textures/characters/npc/000000007333129489b51f73.png
0000000073331294c35e1420 = /textures/characters/npc/0000000073331294c35e1420.png
0000000073331294d3c51368 = /textures/characters/npc/0000000073331294d3c51368.png
0000000073331294fb60e45b = /textures/characters/npc/0000000073331294fb60e45b.png
0000000077e5a244447279d3 = /textures/characters/npc/0000000077e5a244447279d3.png
00000000844512991daa8163 = /textures/characters/npc/00000000844512991daa8163.png
00000000844512994bd842dc = /textures/characters/npc/00000000844512994bd842dc.png
00000000844512995b0819b2 = /textures/characters/npc/00000000844512995b0819b2.png
00000000844512995c2153cc = /textures/characters/npc/00000000844512995c2153cc.png
00000000844512999a83951e = /textures/characters/npc/00000000844512999a83951e.png
0000000084451299a7eee645 = /textures/characters/npc/0000000084451299a7eee645.png
0000000084451299aaedb85f = /textures/characters/npc/0000000084451299aaedb85f.png
0000000084451299ac90204e = /textures/characters/npc/0000000084451299ac90204e.png
0000000084451299aec19cce = /textures/characters/npc/0000000084451299aec19cce.png
0000000084451299c5b70846 = /textures/characters/npc/0000000084451299c5b70846.png
0000000084451299dc8c99e5 = /textures/characters/npc/0000000084451299dc8c99e5.png
0000000084451299fa06a8e7 = /textures/characters/npc/0000000084451299fa06a8e7.png
000000008b420c801da842f1 = /textures/characters/npc/000000008b420c801da842f1.png
000000008b420c80d2c43fd9 = /textures/characters/npc/000000008b420c80d2c43fd9.png
000000008b420c80e6c10542 = /textures/characters/npc/000000008b420c80e6c10542.png
000000008b420c80eb3ec2e2 = /textures/characters/npc/000000008b420c80eb3ec2e2.png
000000008e3d0afe1bfaf21b = /textures/characters/npc/000000008e3d0afe1bfaf21b.png
000000008e3d0afe567f140c = /textures/characters/npc/000000008e3d0afe567f140c.png
000000008e3d0afe8f1a09cc = /textures/characters/npc/000000008e3d0afe8f1a09cc.png
000000008e3d0afedc8b55e1 = /textures/characters/npc/000000008e3d0afedc8b55e1.png
00000000927b99ce50b4884a = /textures/characters/npc/00000000927b99ce50b4884a.png
00000000927b99ce6580845b = /textures/characters/npc/00000000927b99ce6580845b.png
00000000927b99ce6e082f90 = /textures/characters/npc/00000000927b99ce6e082f90.png
00000000927b99cea10c845c = /textures/characters/npc/00000000927b99cea10c845c.png
00000000927b99ced9596563 = /textures/characters/npc/00000000927b99ced9596563.png
00000000927b99ceda308403 = /textures/characters/npc/00000000927b99ceda308403.png
00000000927b99cedae29a43 = /textures/characters/npc/00000000927b99cedae29a43.png
00000000927b99cefbee15c5 = /textures/characters/npc/00000000927b99cefbee15c5.png
00000000a317ff136b7d0ccc = /textures/characters/npc/00000000a317ff136b7d0ccc.png
00000000a692ec4522491e66 = /textures/characters/npc/00000000a692ec4522491e66.png
00000000a692ec452d268b58 = /textures/characters/npc/00000000a692ec452d268b58.png
00000000a692ec4540b84258 = /textures/characters/npc/00000000a692ec4540b84258.png
00000000a692ec45451c915e = /textures/characters/npc/00000000a692ec45451c915e.png
00000000a692ec4579cf5839 = /textures/characters/npc/00000000a692ec4579cf5839.png
00000000a692ec45b9944741 = /textures/characters/npc/00000000a692ec45b9944741.png
00000000a692ec45c69556b3 = /textures/characters/npc/00000000a692ec45c69556b3.png
00000000a692ec45d007ecba = /textures/characters/npc/00000000a692ec45d007ecba.png
00000000a692ec45da4e8ca8 = /textures/characters/npc/00000000a692ec45da4e8ca8.png
00000000a692ec45f4fabab2 = /textures/characters/npc/00000000a692ec45f4fabab2.png
00000000a7829b2b18f94e4c = /textures/characters/npc/00000000a7829b2b18f94e4c.png
00000000a7829b2b20e12f42 = /textures/characters/npc/00000000a7829b2b20e12f42.png
00000000a7829b2b925b8b3e = /textures/characters/npc/00000000a7829b2b925b8b3e.png
00000000a7829b2b96f96620 = /textures/characters/npc/00000000a7829b2b96f96620.png
00000000aa231efc3b5aac81 = /textures/characters/npc/00000000aa231efc3b5aac81.png
00000000aaee9b690b708223 = /textures/characters/npc/00000000aaee9b690b708223.png
00000000c3642bea098f562c = /textures/characters/npc/00000000c3642bea098f562c.png
00000000c8e91c2c47e88bf4 = /textures/characters/npc/00000000c8e91c2c47e88bf4.png
00000000ccb0c4418a8a8aaf = /textures/characters/npc/00000000ccb0c4418a8a8aaf.png
00000000cef2f7f981d47cb8 = /textures/characters/npc/00000000cef2f7f981d47cb8.png
00000000d617ef609b2dfe22 = /textures/characters/npc/00000000d617ef609b2dfe22.png
00000000d61b413707c8d771 = /textures/characters/npc/00000000d61b413707c8d771.png
00000000d61b4137172ae690 = /textures/characters/npc/00000000d61b4137172ae690.png
00000000d61b41374831371c = /textures/characters/npc/00000000d61b41374831371c.png
00000000d61b41374c45fb7c = /textures/characters/npc/00000000d61b41374c45fb7c.png
00000000d61b41378a893f9f = /textures/characters/npc/00000000d61b41378a893f9f.png
00000000d61b41379ab75577 = /textures/characters/npc/00000000d61b41379ab75577.png
00000000d61b4137a82991b3 = /textures/characters/npc/00000000d61b4137a82991b3.png
00000000d61b4137c235a8b2 = /textures/characters/npc/00000000d61b4137c235a8b2.png
00000000d61b4137c648bb7b = /textures/characters/npc/00000000d61b4137c648bb7b.png
00000000d61b4137d4bb7298 = /textures/characters/npc/00000000d61b4137d4bb7298.png
00000000d61b4137d606e327 = /textures/characters/npc/00000000d61b4137d606e327.png
00000000d61b4137d635bc0f = /textures/characters/npc/00000000d61b4137d635bc0f.png
00000000eca0a072109eb9c0 = /textures/characters/npc/00000000eca0a072109eb9c0.png
00000000fd8073fb633c8fd4 = /textures/characters/npc/00000000fd8073fb633c8fd4.png
00000000ca39ae4709b851b2 = /textures/characters/npc/00000000ca39ae4709b851b2.png
00000000ca39ae4711226ea8 = /textures/characters/npc/00000000ca39ae4711226ea8.png
00000000ca39ae47af328364 = /textures/characters/npc/00000000ca39ae47af328364.png
00000000ca39ae47b655f54f = /textures/characters/npc/00000000ca39ae47b655f54f.png
00000000ca39ae47d2896a0a = /textures/characters/npc/00000000ca39ae47d2896a0a.png
00000000ca39ae47db3545c5 = /textures/characters/npc/00000000ca39ae47db3545c5.png
00000000ca39ae47f380a3f6 = /textures/characters/npc/00000000ca39ae47f380a3f6.png
00000000db22319110a99ce1 = /textures/characters/npc/00000000db22319110a99ce1.png
00000000db2231918f76ceb9 = /textures/characters/npc/00000000db2231918f76ceb9.png
00000000db223191cd5a9b56 = /textures/characters/npc/00000000db223191cd5a9b56.png
00000000f103904b0f005503 = /textures/characters/npc/00000000f103904b0f005503.png
00000000f103904b6819cf82 = /textures/characters/npc/00000000f103904b6819cf82.png
00000000f103904b6b86d072 = /textures/characters/npc/00000000f103904b6b86d072.png
00000000f103904b7238be07 = /textures/characters/npc/00000000f103904b7238be07.png
00000000f103904b8b054f75 = /textures/characters/npc/00000000f103904b8b054f75.png
00000000f103904b9ef3924f = /textures/characters/npc/00000000f103904b9ef3924f.png
00000000f103904bb327e851 = /textures/characters/npc/00000000f103904bb327e851.png
00000000f103904bc1e76af7 = /textures/characters/npc/00000000f103904bc1e76af7.png
00000000f103904be931cb69 = /textures/characters/npc/00000000f103904be931cb69.png
00000000f103904bfc995d83 = /textures/characters/npc/00000000f103904bfc995d83.png
000000002768de5b0f0fd8c0 = /textures/characters/npc/000000002768de5b0f0fd8c0.png
000000002768de5b396f33d3 = /textures/characters/npc/000000002768de5b396f33d3.png
000000002768de5b568d5b51 = /textures/characters/npc/000000002768de5b568d5b51.png
000000002768de5b5bc814e4 = /textures/characters/npc/000000002768de5b5bc814e4.png
000000002768de5b65e498d3 = /textures/characters/npc/000000002768de5b65e498d3.png
000000002768de5b6dfcca9e = /textures/characters/npc/000000002768de5b6dfcca9e.png
000000002768de5bb82c06ba = /textures/characters/npc/000000002768de5bb82c06ba.png
000000002768de5bc24e30b7 = /textures/characters/npc/000000002768de5bc24e30b7.png
000000002768de5bdcde16a9 = /textures/characters/npc/000000002768de5bdcde16a9.png
000000002768de5be059b029 = /textures/characters/npc/000000002768de5be059b029.png
00000000927b99ce8c759662 = /textures/characters/npc/00000000927b99ce8c759662.png
0000000002d9f528dcc50912 = /textures/characters/npc/0000000002d9f528dcc50912.png
0000000008712fd4778f308b = /textures/characters/npc/0000000008712fd4778f308b.png
000000001c1cb026eaa5ee00 = /textures/characters/npc/000000001c1cb026eaa5ee00.png
0000000022010ff1e7629069 = /textures/characters/npc/0000000022010ff1e7629069.png
00000000254c425b4ee1f9d9 = /textures/characters/npc/00000000254c425b4ee1f9d9.png
0000000034e28a2e2553a963 = /textures/characters/npc/0000000034e28a2e2553a963.png
000000004e3f0900a83f4102 = /textures/characters/npc/000000004e3f0900a83f4102.png
0000000053eb7ac8c0d10664 = /textures/characters/npc/0000000053eb7ac8c0d10664.png
0000000071be676cb7115459 = /textures/characters/npc/0000000071be676cb7115459.png
00000000810d7f3d828ff1a7 = /textures/characters/npc/00000000810d7f3d828ff1a7.png
0000000090584213d7ac9f9c = /textures/characters/npc/0000000090584213d7ac9f9c.png
00000000a593476f39729fda = /textures/characters/npc/00000000a593476f39729fda.png
00000000abc56586083c25dd = /textures/characters/npc/00000000abc56586083c25dd.png
00000000afa9f16bac8b2e2e = /textures/characters/npc/00000000afa9f16bac8b2e2e.png
00000000ec634a7c6afeb5a6 = /textures/characters/npc/00000000ec634a7c6afeb5a6.png
00000000f103904bca11545e = /textures/characters/npc/00000000f103904bca11545e.png
00000000fc5aae0461d68952 = /textures/characters/npc/00000000fc5aae0461d68952.png
00000000406a59b24302b7ca = /textures/characters/npc/00000000406a59b24302b7ca.png
00000000406a59b2def3b2e1 = /textures/characters/npc/00000000406a59b2def3b2e1.png
000000006aa6506903cdbb6d = /textures/characters/npc/000000006aa6506903cdbb6d.png
000000006aa65069080de99d = /textures/characters/npc/000000006aa65069080de99d.png
000000006aa650692cb41824 = /textures/characters/npc/000000006aa650692cb41824.png
000000006aa6506937116b8b = /textures/characters/npc/000000006aa6506937116b8b.png
000000006aa65069e14bf6b1 = /textures/characters/npc/000000006aa65069e14bf6b1.png
000000006aa65069fba23cac = /textures/characters/npc/000000006aa65069fba23cac.png
00000000f3e7f174c5407eb8 = /textures/characters/npc/00000000f3e7f174c5407eb8.png
0000000084371f8517c7ab29 = /textures/characters/npc/0000000084371f8517c7ab29.png
00000000017cfe95240148b8 = /textures/characters/npc/00000000017cfe95240148b8.png
#ENEMY
000000000526f7bb79096fa3 = /textures/characters/enemy/000000000526f7bb79096fa3.png
000000000cc0997a565954cf = /textures/characters/enemy/000000000cc0997a565954cf.png
000000000e69a62ade9e6843 = /textures/characters/enemy/000000000e69a62ade9e6843.png
00000000131f874dec151c1c = /textures/characters/enemy/00000000131f874dec151c1c.png
000000001958649a15a014e9 = /textures/characters/enemy/000000001958649a15a014e9.png
00000000277cb1d2c68679da = /textures/characters/enemy/00000000277cb1d2c68679da.png
0000000028f28fe3ca6137fe = /textures/characters/enemy/0000000028f28fe3ca6137fe.png
00000000293da0c60e618d9c = /textures/characters/enemy/00000000293da0c60e618d9c.png
000000002ccb40968e0b5bab = /textures/characters/enemy/000000002ccb40968e0b5bab.png
000000002e36e34e0dcf16e3 = /textures/characters/enemy/000000002e36e34e0dcf16e3.png
00000000343ffc85180e9c66 = /textures/characters/enemy/00000000343ffc85180e9c66.png
00000000364f5b3e04c9dbdc = /textures/characters/enemy/00000000364f5b3e04c9dbdc.png
0000000037708022131efae3 = /textures/characters/enemy/0000000037708022131efae3.png
000000004130ded5799e1163 = /textures/characters/enemy/000000004130ded5799e1163.png
000000004bb44273801c23e3 = /textures/characters/enemy/000000004bb44273801c23e3.png
000000004da32aca94071db6 = /textures/characters/enemy/000000004da32aca94071db6.png
0000000052af6bc4986495ec = /textures/characters/enemy/0000000052af6bc4986495ec.png
00000000553f1ca757dddb46 = /textures/characters/enemy/00000000553f1ca757dddb46.png
000000005d8515f35a077a0d = /textures/characters/enemy/000000005d8515f35a077a0d.png
00000000695e9f580985e0bc = /textures/characters/enemy/00000000695e9f580985e0bc.png
0000000069e7d18edf76cdc4 = /textures/characters/enemy/0000000069e7d18edf76cdc4.png
00000000716c8ede83c21821 = /textures/characters/enemy/00000000716c8ede83c21821.png
0000000077d463f94fca1b3e = /textures/characters/enemy/0000000077d463f94fca1b3e.png
000000007e8f24cb772cbddb = /textures/characters/enemy/000000007e8f24cb772cbddb.png
00000000803aeb17c31fb7d9 = /textures/characters/enemy/00000000803aeb17c31fb7d9.png
0000000083a43bfd41d8e665 = /textures/characters/enemy/0000000083a43bfd41d8e665.png
000000008bece09328fa3e80 = /textures/characters/enemy/000000008bece09328fa3e80.png
000000008fbc66a18aa55e24 = /textures/characters/enemy/000000008fbc66a18aa55e24.png
0000000092a5fa8fc039146e = /textures/characters/enemy/0000000092a5fa8fc039146e.png
000000009722c0b5fc7feabe = /textures/characters/enemy/000000009722c0b5fc7feabe.png
000000009edc64ad3756041e = /textures/characters/enemy/000000009edc64ad3756041e.png
00000000a8f62fdd5beb92fa = /textures/characters/enemy/00000000a8f62fdd5beb92fa.png
00000000af250352d25e96c8 = /textures/characters/enemy/00000000af250352d25e96c8.png
00000000af7ef5bef5fba281 = /textures/characters/enemy/00000000af7ef5bef5fba281.png
00000000b103f4b0dd6e1414 = /textures/characters/enemy/00000000b103f4b0dd6e1414.png
00000000b6f72944ec445184 = /textures/characters/enemy/00000000b6f72944ec445184.png
00000000b7c6fa5796780eb5 = /textures/characters/enemy/00000000b7c6fa5796780eb5.png
00000000baf065161de04578 = /textures/characters/enemy/00000000baf065161de04578.png
00000000bfbcf7328cee033c = /textures/characters/enemy/00000000bfbcf7328cee033c.png
00000000c0926a15bb71ad68 = /textures/characters/enemy/00000000c0926a15bb71ad68.png
00000000c0cd8fea334afbdc = /textures/characters/enemy/00000000c0cd8fea334afbdc.png
00000000c34a178204ad7795 = /textures/characters/enemy/00000000c34a178204ad7795.png
00000000c4fa172a429d28b8 = /textures/characters/enemy/00000000c4fa172a429d28b8.png
00000000c4fa172a4dc36f88 = /textures/characters/enemy/00000000c4fa172a4dc36f88.png
00000000c4fa172a58e3f03a = /textures/characters/enemy/00000000c4fa172a58e3f03a.png
00000000c4fa172a653c9bed = /textures/characters/enemy/00000000c4fa172a653c9bed.png
00000000c4fa172a9ca6613c = /textures/characters/enemy/00000000c4fa172a9ca6613c.png
00000000c4fa172aa727df58 = /textures/characters/enemy/00000000c4fa172aa727df58.png
00000000c4fa172ae56a8199 = /textures/characters/enemy/00000000c4fa172ae56a8199.png
00000000c66e4a0f6b7c8619 = /textures/characters/enemy/00000000c66e4a0f6b7c8619.png
00000000c8a7d3be0f16856a = /textures/characters/enemy/00000000c8a7d3be0f16856a.png
00000000cb90626ffdadc32a = /textures/characters/enemy/00000000cb90626ffdadc32a.png
00000000cdbeaeeba8ff0786 = /textures/characters/enemy/00000000cdbeaeeba8ff0786.png
00000000d16a875300021b15 = /textures/characters/enemy/00000000d16a875300021b15.png
00000000d94a44d91095e608 = /textures/characters/enemy/00000000d94a44d91095e608.png
00000000d96ab8b33303364b = /textures/characters/enemy/00000000d96ab8b33303364b.png
00000000db223191a534cc48 = /textures/characters/enemy/00000000db223191a534cc48.png
00000000dfc3f432390860b0 = /textures/characters/enemy/00000000dfc3f432390860b0.png
00000000e072342230b76bef = /textures/characters/enemy/00000000e072342230b76bef.png
00000000e33232f39b5fa9d2 = /textures/characters/enemy/00000000e33232f39b5fa9d2.png
00000000e522d498ac244b39 = /textures/characters/enemy/00000000e522d498ac244b39.png
00000000e61c01fd4b64c719 = /textures/characters/enemy/00000000e61c01fd4b64c719.png
00000000eb6bbdae8d4174b8 = /textures/characters/enemy/00000000eb6bbdae8d4174b8.png
00000000eed9df8597a99121 = /textures/characters/enemy/00000000eed9df8597a99121.png
00000000f2c75580982d71f6 = /textures/characters/enemy/00000000f2c75580982d71f6.png
00000000fa7086f11ce65496 = /textures/characters/enemy/00000000fa7086f11ce65496.png
00000000fa7086f19558420a = /textures/characters/enemy/00000000fa7086f19558420a.png
00000000fa7086f1ffb61736 = /textures/characters/enemy/00000000fa7086f1ffb61736.png
00000000fbb37c11cec7c276 = /textures/characters/enemy/00000000fbb37c11cec7c276.png
00000000fc80fc7819991ef9 = /textures/characters/enemy/00000000fc80fc7819991ef9.png
00000000fcf33f4e3c46d3e2 = /textures/characters/enemy/00000000fcf33f4e3c46d3e2.png
00000000fe2ebff957f68cd6 = /textures/characters/enemy/00000000fe2ebff957f68cd6.png
0000000037ffda4fa3e1f800 = /textures/characters/enemy/0000000037ffda4fa3e1f800.png
0000000041f8de0132d4c346 = /textures/characters/enemy/0000000041f8de0132d4c346.png
0000000041f8de0e8da0c242 = /textures/characters/enemy/0000000041f8de0e8da0c242.png
000000005775c45811d115b0 = /textures/characters/enemy/000000005775c45811d115b0.png
00000000729857327de880d7 = /textures/characters/enemy/00000000729857327de880d7.png
000000008669200ac492a234 = /textures/characters/enemy/000000008669200ac492a234.png
00000000a940eeb1aaeb7f1f = /textures/characters/enemy/00000000a940eeb1aaeb7f1f.png
00000000c8f8c79675a644cf = /textures/characters/enemy/00000000c8f8c79675a644cf.png
00000000d087ce0280c2354f = /textures/characters/enemy/00000000d087ce0280c2354f.png
000000007851e73cd037a921 = /textures/characters/enemy/000000007851e73cd037a921.png
000000009fb9c728907a361b = /textures/characters/enemy/000000009fb9c728907a361b.png
00000000b55adead4a62399f = /textures/characters/enemy/00000000b55adead4a62399f.png
00000000d07b8fb91993cb83 = /textures/characters/enemy/00000000d07b8fb91993cb83.png
000000000575cd5aece00166 = /textures/characters/enemy/000000000575cd5aece00166.png
0000000011eb3ba22f5e0de2 = /textures/characters/enemy/0000000011eb3ba22f5e0de2.png
00000000147f9280f91b28a0 = /textures/characters/enemy/00000000147f9280f91b28a0.png
0000000028f2f8271a912c74 = /textures/characters/enemy/0000000028f2f8271a912c74.png
000000002917f3926f6d8e00 = /textures/characters/enemy/000000002917f3926f6d8e00.png
000000002c8e56bea8ec2c7f = /textures/characters/enemy/000000002c8e56bea8ec2c7f.png
000000003026085dd7930839 = /textures/characters/enemy/000000003026085dd7930839.png
0000000035bb31631bcec054 = /textures/characters/enemy/0000000035bb31631bcec054.png
00000000371d50daaa655042 = /textures/characters/enemy/00000000371d50daaa655042.png
0000000039f0acba385e03e2 = /textures/characters/enemy/0000000039f0acba385e03e2.png
000000003c5548e3b433e64b = /textures/characters/enemy/000000003c5548e3b433e64b.png
000000003eca0bfc0f4a40ad = /textures/characters/enemy/000000003eca0bfc0f4a40ad.png
000000004106f95718c421bb = /textures/characters/enemy/000000004106f95718c421bb.png
00000000472d8d5c0d6acdb3 = /textures/characters/enemy/00000000472d8d5c0d6acdb3.png
000000004bff65012906d458 = /textures/characters/enemy/000000004bff65012906d458.png
0000000050c3bdbbae3a716a = /textures/characters/enemy/0000000050c3bdbbae3a716a.png
000000005c3ef54e3c6ffaab = /textures/characters/enemy/000000005c3ef54e3c6ffaab.png
000000005fb485c5f9951277 = /textures/characters/enemy/000000005fb485c5f9951277.png
0000000063260142706b8c24 = /textures/characters/enemy/0000000063260142706b8c24.png
0000000063260142ca3bf8ae = /textures/characters/enemy/0000000063260142ca3bf8ae.png
00000000632601424c62b01e = /textures/characters/enemy/00000000632601424c62b01e.png
0000000063260142838790b6 = /textures/characters/enemy/0000000063260142838790b6.png
0000000063dd510accda297a = /textures/characters/enemy/0000000063dd510accda297a.png
000000006d338a6509c6eaf2 = /textures/characters/enemy/000000006d338a6509c6eaf2.png
000000007f17785c841a6002 = /textures/characters/enemy/000000007f17785c841a6002.png
0000000084c9b309557c5758 = /textures/characters/enemy/0000000084c9b309557c5758.png
00000000a0f87a169987be4f = /textures/characters/enemy/00000000a0f87a169987be4f.png
00000000a62b2bbe1e012f20 = /textures/characters/enemy/00000000a62b2bbe1e012f20.png
00000000b368cbfea2e0ca98 = /textures/characters/enemy/00000000b368cbfea2e0ca98.png
00000000bc327f56235e9aec = /textures/characters/enemy/00000000bc327f56235e9aec.png
00000000c002617b325da5f3 = /textures/characters/enemy/00000000c002617b325da5f3.png
00000000e1dfe772bcc77be0 = /textures/characters/enemy/00000000e1dfe772bcc77be0.png
00000000eacdd0183dfe945c = /textures/characters/enemy/00000000eacdd0183dfe945c.png
00000000ed8a937b479cc651 = /textures/characters/enemy/00000000ed8a937b479cc651.png
00000000eee060c4414546e0 = /textures/characters/enemy/00000000eee060c4414546e0.png
0000000068823102ad8ed08b = /textures/characters/enemy/0000000068823102ad8ed08b.png
00000000ded5e80d377f4c68 = /textures/characters/enemy/00000000ded5e80d377f4c68.png
00000000415494c0543835c5 = /textures/characters/enemy/00000000415494c0543835c5.png
000000008127bf512cf6af57 = /textures/characters/enemy/000000008127bf512cf6af57.png
000000009bfdac39a32b9599 = /textures/characters/enemy/000000009bfdac39a32b9599.png
00000000c1b9f16776ed4ece = /textures/characters/enemy/00000000c1b9f16776ed4ece.png
00000000aec1da759614038d = /textures/characters/enemy/00000000aec1da759614038d.png
00000000abfbb2174eed6fab = /textures/characters/enemy/00000000abfbb2174eed6fab.png
00000000f859e4e1c50f00cf = /textures/characters/enemy/00000000f859e4e1c50f00cf.png
000000001d5e05cceb91c441 = /textures/characters/enemy/000000001d5e05cceb91c441.png
000000001e0fb31f4b2da4ba = /textures/characters/enemy/000000001e0fb31f4b2da4ba.png
000000002fbc0b5bf03e746c = /textures/characters/enemy/000000002fbc0b5bf03e746c.png
000000003be60f0e5611c407 = /textures/characters/enemy/000000003be60f0e5611c407.png
000000007c13d8bae3c2a481 = /textures/characters/enemy/000000007c13d8bae3c2a481.png
0000000067cd80222deadeb8 = /textures/characters/enemy/0000000067cd80222deadeb8.png
0000000082cef737609b88a7 = /textures/characters/enemy/0000000082cef737609b88a7.png
00000000108c8a6144c8db5d = /textures/characters/enemy/00000000108c8a6144c8db5d.png
00000000607dcb103e181bd4 = /textures/characters/enemy/00000000607dcb103e181bd4.png
000000001339afbd4e02eed6 = /textures/characters/enemy/000000001339afbd4e02eed6.png
000000006071e6ef39112a59 = /textures/characters/enemy/000000006071e6ef39112a59.png
000000007421f9c558515818 = /textures/characters/enemy/000000007421f9c558515818.png
000000008826528a72274442 = /textures/characters/enemy/000000008826528a72274442.png
00000000288563398683a938 = /textures/characters/enemy/00000000288563398683a938.png
#[]
#PRIORITY
0000000000eacddec230c3b4 = /textures/priority/0000000000eacddec230c3b4.png
00000000031655661b9bd1c4 = /textures/priority/00000000031655661b9bd1c4.png
00000000031655663789c78d = /textures/priority/00000000031655663789c78d.png
00000000031655663c26c239 = /textures/priority/00000000031655663c26c239.png
00000000031655665b92c792 = /textures/priority/00000000031655665b92c792.png
000000000316556668db9632 = /textures/priority/000000000316556668db9632.png
00000000031655666a2d0d18 = /textures/priority/00000000031655666a2d0d18.png
00000000031655669bc68c65 = /textures/priority/00000000031655669bc68c65.png
0000000003165566cafac8bc = /textures/priority/0000000003165566cafac8bc.png
0000000003165566ee20e236 = /textures/priority/0000000003165566ee20e236.png
00000000032c7e5be5495cae = /textures/priority/00000000032c7e5be5495cae.png
0000000008eaed3d9f43f0c8 = /textures/priority/0000000008eaed3d9f43f0c8.png
00000000097f2a33c6e9e9f4 = /textures/priority/00000000097f2a33c6e9e9f4.png
000000000993a80182896b61 = /textures/priority/000000000993a80182896b61.png
0000000009d9cfd145ffec36 = /textures/priority/0000000009d9cfd145ffec36.png
0000000009f085121344fe7e = /textures/priority/0000000009f085121344fe7e.png
000000000a64c1026b19828b = /textures/priority/000000000a64c1026b19828b.png
000000000aa9436838fbd4eb = /textures/priority/000000000aa9436838fbd4eb.png
000000000bdd6ef98524047b = /textures/priority/000000000bdd6ef98524047b.png
000000000bfa5b9e9e18a5f0 = /textures/priority/000000000bfa5b9e9e18a5f0.png
000000000c2d378e33463ca7 = /textures/priority/000000000c2d378e33463ca7.png
000000000db5eb5b14238522 = /textures/priority/000000000db5eb5b14238522.png
000000000de696c174fcdd2a = /textures/priority/000000000de696c174fcdd2a.png
000000000f2d706025d295cc = /textures/priority/000000000f2d706025d295cc.png
000000000f3bbfc014e1c4c2 = /textures/priority/000000000f3bbfc014e1c4c2.png
000000000f86ec1b46ec4866 = /textures/priority/000000000f86ec1b46ec4866.png
000000000f8dbf5d853bd01c = /textures/priority/000000000f8dbf5d853bd01c.png
000000000fc81d54bed79ffd = /textures/priority/000000000fc81d54bed79ffd.png
000000000fface78eff2ff87 = /textures/priority/000000000fface78eff2ff87.png
000000001035e0d9a5fb0be3 = /textures/priority/000000001035e0d9a5fb0be3.png
00000000108bc62d567055dd = /textures/priority/00000000108bc62d567055dd.png
0000000011404dcf465736e4 = /textures/priority/0000000011404dcf465736e4.png
00000000116cac0fe770cf0a = /textures/priority/00000000116cac0fe770cf0a.png
0000000016a46ddbccb8b3e3 = /textures/priority/0000000016a46ddbccb8b3e3.png
000000001770444ac5e4ebfd = /textures/priority/000000001770444ac5e4ebfd.png
000000001781b97cbee4da44 = /textures/priority/000000001781b97cbee4da44.png
0000000017d461312a0426f0 = /textures/priority/0000000017d461312a0426f0.png
00000000186478b3b78171c7 = /textures/priority/00000000186478b3b78171c7.png
000000001866777d0f8d0831 = /textures/priority/000000001866777d0f8d0831.png
0000000019848654ad520925 = /textures/priority/0000000019848654ad520925.png
0000000019c0df8f7e561105 = /textures/priority/0000000019c0df8f7e561105.png
0000000019dc54c4993e0efd = /textures/priority/0000000019dc54c4993e0efd.png
0000000019dc76957dbd4c92 = /textures/priority/0000000019dc76957dbd4c92.png
000000001ac4b0ad0d100769 = /textures/priority/000000001ac4b0ad0d100769.png
000000001b0bf136d9b27466 = /textures/priority/000000001b0bf136d9b27466.png
000000001bfcbdcf94f6c17f = /textures/priority/000000001bfcbdcf94f6c17f.png
000000001c771f1ad6684e0f = /textures/priority/000000001c771f1ad6684e0f.png
000000001de94cf0af53b53d = /textures/priority/000000001de94cf0af53b53d.png
0000000021678f3b26912796 = /textures/priority/0000000021678f3b26912796.png
0000000021c476d09a5a6e44 = /textures/priority/0000000021c476d09a5a6e44.png
0000000022e0aeb5de2ec6ea = /textures/priority/0000000022e0aeb5de2ec6ea.png
0000000023ba35047aa98d7c = /textures/priority/0000000023ba35047aa98d7c.png
0000000025118c10bdc2f55a = /textures/priority/0000000025118c10bdc2f55a.png
000000002669ef6b6aec1ca1 = /textures/priority/000000002669ef6b6aec1ca1.png
0000000026e5a80ab5dbead5 = /textures/priority/0000000026e5a80ab5dbead5.png
000000002721e0a087d1cfe5 = /textures/priority/000000002721e0a087d1cfe5.png
0000000027f8dff7b4dea7d3 = /textures/priority/0000000027f8dff7b4dea7d3.png
000000002893006ec16ad74c = /textures/priority/000000002893006ec16ad74c.png
000000002934eac0dda2bbe1 = /textures/priority/000000002934eac0dda2bbe1.png
0000000029cb9ee5bf89b8ea = /textures/priority/0000000029cb9ee5bf89b8ea.png
000000002a1f07e540f6f3d1 = /textures/priority/000000002a1f07e540f6f3d1.png
000000002aa63347f3b5d634 = /textures/priority/000000002aa63347f3b5d634.png
000000002b9bb2790f170e11 = /textures/priority/000000002b9bb2790f170e11.png
000000002d05af28d4134d6a = /textures/priority/000000002d05af28d4134d6a.png
000000002d4490bbb8ced0f1 = /textures/priority/000000002d4490bbb8ced0f1.png
000000002e02fae5db2ecc11 = /textures/priority/000000002e02fae5db2ecc11.png
000000002e09e3937694294e = /textures/priority/000000002e09e3937694294e.png
000000002e83ea4076f3fca5 = /textures/priority/000000002e83ea4076f3fca5.png
000000003000ea3fed6cfd86 = /textures/priority/000000003000ea3fed6cfd86.png
00000000302874fc542538d6 = /textures/priority/00000000302874fc542538d6.png
00000000352728829c11ee78 = /textures/priority/00000000352728829c11ee78.png
00000000352ab6c225d295cc = /textures/priority/00000000352ab6c225d295cc.png
000000003561d31faa0ce26f = /textures/priority/000000003561d31faa0ce26f.png
0000000035f5221b641aabf3 = /textures/priority/0000000035f5221b641aabf3.png
000000003706575cf626a808 = /textures/priority/000000003706575cf626a808.png
000000003a68008bdda34076 = /textures/priority/000000003a68008bdda34076.png
000000003d08f0cbe0f065b3 = /textures/priority/000000003d08f0cbe0f065b3.png
000000003f2d32439c02dde6 = /textures/priority/000000003f2d32439c02dde6.png
00000000406a59b20f96a9d6 = /textures/priority/00000000406a59b20f96a9d6.png
00000000420141a63cf4ce9a = /textures/priority/00000000420141a63cf4ce9a.png
00000000420de00a251fea86 = /textures/priority/00000000420de00a251fea86.png
00000000422abcaf68ef3a77 = /textures/priority/00000000422abcaf68ef3a77.png
00000000436af56b905dacb9 = /textures/priority/00000000436af56b905dacb9.png
000000004394e3e3b9f7165b = /textures/priority/000000004394e3e3b9f7165b.png
0000000043a062a80bbee155 = /textures/priority/0000000043a062a80bbee155.png
0000000043a062a817588c7c = /textures/priority/0000000043a062a817588c7c.png
0000000043a062a843d11de8 = /textures/priority/0000000043a062a843d11de8.png
0000000043a062a8696ba6e4 = /textures/priority/0000000043a062a8696ba6e4.png
0000000043a062a88bf7d8ec = /textures/priority/0000000043a062a88bf7d8ec.png
0000000043a062a8983027aa = /textures/priority/0000000043a062a8983027aa.png
0000000043a062a899f7bf11 = /textures/priority/0000000043a062a899f7bf11.png
0000000043a062a8b95ce41d = /textures/priority/0000000043a062a8b95ce41d.png
0000000043a062a8e08bb0aa = /textures/priority/0000000043a062a8e08bb0aa.png
0000000043a062a8e2b948e9 = /textures/priority/0000000043a062a8e2b948e9.png
0000000043b03b0149384136 = /textures/priority/0000000043b03b0149384136.png
0000000043e59e1946a3c181 = /textures/priority/0000000043e59e1946a3c181.png
0000000043e59e1958f471f9 = /textures/priority/0000000043e59e1958f471f9.png
0000000043e59e1984148fa5 = textures/characters/sephiroth/000000004ac6f313879dc2a2.png
00000000447ed3323b1cb7cb = /textures/priority/00000000447ed3323b1cb7cb.png
00000000447ed33247cfd2d4 = /textures/priority/00000000447ed33247cfd2d4.png
00000000447ed3327cd18e11 = /textures/priority/00000000447ed3327cd18e11.png
00000000447ed332f5c3d86b = /textures/priority/00000000447ed332f5c3d86b.png
0000000045fbc706f9a922e7 = /textures/priority/0000000045fbc706f9a922e7.png
00000000461645d5bd66ee21 = /textures/priority/00000000461645d5bd66ee21.png
000000004780b8ca768fe7ec = /textures/priority/000000004780b8ca768fe7ec.png
00000000485b88ee25437d53 = /textures/priority/00000000485b88ee25437d53.png
0000000049a8c9f0018d7754 = /textures/priority/0000000049a8c9f0018d7754.png
0000000049b40650f0562596 = /textures/priority/0000000049b40650f0562596.png