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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
|
fileFormatVersion: 2
guid: 4ee9b98c5eeed174ca39c613661ff5af
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 1
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 0
spriteMeshType: 0
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 256
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 8192
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 8192
resizeAlgorithm: 0
textureFormat: 4
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: Base_Palette4 1_0
rect:
serializedVersion: 2
x: 0
y: 2304
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: e55fc03783032d04daeabdc476a93fc3
internalID: -2037868760
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_1
rect:
serializedVersion: 2
x: 256
y: 2304
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: bd2c1d08b056fe54085b6097559a7598
internalID: -2123925663
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_2
rect:
serializedVersion: 2
x: 512
y: 2304
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 299b55290f7fe004ea30654c7c03e4c7
internalID: -2012886645
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_3
rect:
serializedVersion: 2
x: 768
y: 2304
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 1b88435032ee01847930184b0c6781e4
internalID: -2129629859
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_4
rect:
serializedVersion: 2
x: 1024
y: 2304
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: ae688c8f6b8ce144f9d506580733a3aa
internalID: -1806907921
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_5
rect:
serializedVersion: 2
x: 1280
y: 2304
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 254b6fc452afe0d4ebcadcb59288514a
internalID: 1559490672
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_6
rect:
serializedVersion: 2
x: 1536
y: 2304
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 4ca2de3fe3b079d42b111130b6855d3d
internalID: 1782439515
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_7
rect:
serializedVersion: 2
x: 1792
y: 2304
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 0a21ec64e55c358498b2bfa593cda61c
internalID: -1405755494
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_8
rect:
serializedVersion: 2
x: 2048
y: 2304
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 92d3610693de9214097c320100f867a5
internalID: -1860919492
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_9
rect:
serializedVersion: 2
x: 2304
y: 2304
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: c9e91ad81f7550e4fae3a6d9434f640d
internalID: -1699693718
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_10
rect:
serializedVersion: 2
x: 0
y: 2048
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 049e1e444f29490469020d679f4350a6
internalID: 1132916211
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_11
rect:
serializedVersion: 2
x: 256
y: 2048
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 687af495e96d44146951b83a66fa4f57
internalID: 390825896
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_12
rect:
serializedVersion: 2
x: 512
y: 2048
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: ee514a1213a8f0046a4df133efbe3101
internalID: 1227058503
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_13
rect:
serializedVersion: 2
x: 768
y: 2048
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 1be61c462abc13547bf575f85f8bdb6f
internalID: -1310886175
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_14
rect:
serializedVersion: 2
x: 1024
y: 2048
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 8e26a36400ba23045bd5ca35e4263f36
internalID: 924988983
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_15
rect:
serializedVersion: 2
x: 1280
y: 2048
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 7f6375a9dba0d6f4c99b7b85cf26dbb7
internalID: 1784890822
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_16
rect:
serializedVersion: 2
x: 1536
y: 2048
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: d75725c61c2717e40b0a6ea8a0fd0726
internalID: 1490062562
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_17
rect:
serializedVersion: 2
x: 1792
y: 2048
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 4a23dc7ed2e5c914bbbe98fa23f386dc
internalID: 764594100
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_18
rect:
serializedVersion: 2
x: 2048
y: 2048
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: e1afd054c2b56bd459ee242154daaf9c
internalID: 558477326
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_19
rect:
serializedVersion: 2
x: 2304
y: 2048
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 4c9c46b6b7a55414f968c0fbeef2bae8
internalID: -1603051454
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_20
rect:
serializedVersion: 2
x: 0
y: 1792
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: aa171888b8a73b14185a9f9624ca48da
internalID: 1212707654
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_21
rect:
serializedVersion: 2
x: 256
y: 1792
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 6d1cc855dbeece6468265bb9531a2c40
internalID: -1679600712
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_22
rect:
serializedVersion: 2
x: 512
y: 1792
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 8f40732a474455249aa8aac4014eb8bd
internalID: -1285698879
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_23
rect:
serializedVersion: 2
x: 768
y: 1792
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 43881f987c10465459b445b91ea6d51e
internalID: -692214261
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_24
rect:
serializedVersion: 2
x: 1024
y: 1792
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: b69a04d1c7d10cc47a1ac6559e583270
internalID: 989719289
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_25
rect:
serializedVersion: 2
x: 1280
y: 1792
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: e7b573ab1bd071744805d2b8efac8811
internalID: -762292131
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_26
rect:
serializedVersion: 2
x: 1536
y: 1792
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 5e59246182b944b4e90c6df9d3a73dec
internalID: -81842222
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_27
rect:
serializedVersion: 2
x: 1792
y: 1792
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 8fa85a0d6c5282040871080026954d07
internalID: -1997303060
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_28
rect:
serializedVersion: 2
x: 2048
y: 1792
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: d5f368a48c9db8f44969821faa241aaa
internalID: -42066369
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_29
rect:
serializedVersion: 2
x: 2304
y: 1792
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 27a67cc884260d148b2d4f8b824e9be4
internalID: -181237870
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_30
rect:
serializedVersion: 2
x: 0
y: 1536
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 281b8218ce873374fb4ca7c508db788b
internalID: -1048043187
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_31
rect:
serializedVersion: 2
x: 256
y: 1536
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: bed6d9d68a6871c4498041b8fe1a7dec
internalID: 1297162156
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_32
rect:
serializedVersion: 2
x: 512
y: 1536
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 30fe0dcde108a464ebff41a119042f72
internalID: -425067634
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_33
rect:
serializedVersion: 2
x: 768
y: 1536
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: c36a22a8813a58542966d1964de7964e
internalID: -579007670
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_34
rect:
serializedVersion: 2
x: 1024
y: 1536
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 99f5c44a3644c764e88cc029f54e8302
internalID: -1159665985
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_35
rect:
serializedVersion: 2
x: 1280
y: 1536
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 6ff62f2877678cf43b04d82989717cde
internalID: -928543722
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_36
rect:
serializedVersion: 2
x: 1536
y: 1536
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: c464b5a91a99aaa4997e83c8843a148f
internalID: 1536484360
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_37
rect:
serializedVersion: 2
x: 1792
y: 1536
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 9ae084f0c4e03d744b35fcbcaffdb275
internalID: 32797319
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_38
rect:
serializedVersion: 2
x: 2048
y: 1536
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 4bd1d7e6086fe404eb0b101da1616747
internalID: -604126984
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_39
rect:
serializedVersion: 2
x: 2304
y: 1536
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 6e9569e2003f6a74f9489a30fd0fd37a
internalID: -1135517462
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_40
rect:
serializedVersion: 2
x: 0
y: 1280
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 3438a9ec1f079d54eb4987d79a9a6949
internalID: -816427639
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_41
rect:
serializedVersion: 2
x: 256
y: 1280
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: f5ae1157aae229c49ae1f823bb5278f4
internalID: 957032871
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_42
rect:
serializedVersion: 2
x: 512
y: 1280
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: e918e3b3a9d333d498f0d11345e13e67
internalID: 1843647989
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_43
rect:
serializedVersion: 2
x: 768
y: 1280
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 6603fc8bea21b494f9f92cc09bc19651
internalID: -1115265622
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_44
rect:
serializedVersion: 2
x: 1024
y: 1280
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 34482c85df5b0944b9d8db75a463e1e3
internalID: 1506457855
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_45
rect:
serializedVersion: 2
x: 1280
y: 1280
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: a3dd9221465988d45b08c3f21edce9a7
internalID: -2099354546
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_46
rect:
serializedVersion: 2
x: 2048
y: 1280
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 40930ee113bbc4c45a7f0a113b0722dd
internalID: -2017391705
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_47
rect:
serializedVersion: 2
x: 2304
y: 1280
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 30260a6e58220904aae2cff72026b4cf
internalID: 889089234
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_48
rect:
serializedVersion: 2
x: 0
y: 1024
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 464f059515985114dae95e2fc46c57f8
internalID: 1133958128
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_49
rect:
serializedVersion: 2
x: 256
y: 1024
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 7498bb145ad7a1146b5f2624a4769707
internalID: 1702689434
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_50
rect:
serializedVersion: 2
x: 512
y: 1024
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 9015306cb14f4244e9b61d395177fe02
internalID: 1577454077
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_51
rect:
serializedVersion: 2
x: 768
y: 1024
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 84f05cf2e9b20c34597d475fce079dc1
internalID: 990819651
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_52
rect:
serializedVersion: 2
x: 1024
y: 1024
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: f71627deb2b394c4d99d79f3de984f72
internalID: -1557850036
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_53
rect:
serializedVersion: 2
x: 1280
y: 1024
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 2cbaa3381127c2f48a29ad93373566f0
internalID: 309627848
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_54
rect:
serializedVersion: 2
x: 1536
y: 1024
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 24b7129d6d6f2e544ab1765c9fcd898f
internalID: 2010116257
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_55
rect:
serializedVersion: 2
x: 1792
y: 1024
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 5130ccc7ba8cb8a4ca5e7e365f9580cc
internalID: 874606387
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_56
rect:
serializedVersion: 2
x: 2048
y: 1024
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: e9eeccd8cc301e1479f4a4ebe2465230
internalID: 2042692735
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_57
rect:
serializedVersion: 2
x: 2304
y: 1024
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 0a7bca404a2b3a049b651ea1a08004be
internalID: -1886818525
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_58
rect:
serializedVersion: 2
x: 0
y: 768
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 88695ffd234b57442b12ec2bf0ef285b
internalID: 1622166831
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_59
rect:
serializedVersion: 2
x: 256
y: 768
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: b880b1cc409d5bd419d556060083f7fe
internalID: -1595072890
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_60
rect:
serializedVersion: 2
x: 512
y: 768
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 4d7fc0f070cbd80488fce2c0cd65eec9
internalID: 1283174015
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_61
rect:
serializedVersion: 2
x: 768
y: 768
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 65aa89511bd68d14782384515fadcea9
internalID: -1351524575
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_62
rect:
serializedVersion: 2
x: 1024
y: 768
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 59f85c0b8ad906e47ae5114584170525
internalID: 1977466898
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_63
rect:
serializedVersion: 2
x: 1280
y: 768
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 7776160e147a7d24ab9370d1396411c4
internalID: 416035339
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_64
rect:
serializedVersion: 2
x: 1536
y: 768
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 94732ff31dfbd9e43ab94888015c3d77
internalID: -437548709
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_65
rect:
serializedVersion: 2
x: 2048
y: 768
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 9ca97d66da4a1ca4b98fd120ffe53aed
internalID: 1291043896
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_66
rect:
serializedVersion: 2
x: 2304
y: 768
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 99a5ce8e072527041823bc4c03f3e17b
internalID: -414606656
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_67
rect:
serializedVersion: 2
x: 0
y: 512
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 1863b2f5d7479c944ba4c420c11e2021
internalID: -770376152
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_68
rect:
serializedVersion: 2
x: 256
y: 512
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: e27def406b0957b459db320ca3a6c665
internalID: 1630366155
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_69
rect:
serializedVersion: 2
x: 512
y: 512
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: d05639e268279f9418afd5b0f7ae2b8b
internalID: -66223099
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_70
rect:
serializedVersion: 2
x: 768
y: 512
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 6eba971210f83f849b94e7fbfeb66c45
internalID: -512051203
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_71
rect:
serializedVersion: 2
x: 1024
y: 512
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 4fb3dbcf702aedf4a821e592b7a0ad02
internalID: 224115794
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_72
rect:
serializedVersion: 2
x: 1536
y: 512
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 8b13d36a724c03b4a84e29947216f406
internalID: -1910656894
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_73
rect:
serializedVersion: 2
x: 2048
y: 512
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: bbfe24a8d37234141b8bfe76ef1cd5db
internalID: -374475503
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_74
rect:
serializedVersion: 2
x: 2304
y: 512
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: f394c9422a7ab54429166e675cc8ec4a
internalID: -1228229690
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_75
rect:
serializedVersion: 2
x: 0
y: 256
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 3c9a517e624608b488102096cc889872
internalID: -1159775795
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_76
rect:
serializedVersion: 2
x: 256
y: 256
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 0e2e3f871b33d564e9a7c357e9df9276
internalID: 1328697017
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_77
rect:
serializedVersion: 2
x: 512
y: 256
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: b83f78bad5a11cd4e8d853bbee5cdd6c
internalID: 1200623162
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_78
rect:
serializedVersion: 2
x: 768
y: 256
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 90a2992c5d520b84d816c373a29b55ba
internalID: 257382115
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_79
rect:
serializedVersion: 2
x: 1024
y: 256
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: bf2e015c62742ea44b41cef4ca312122
internalID: -1063976303
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_80
rect:
serializedVersion: 2
x: 1280
y: 256
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 3107a3d861d362247aa9f107fadbf8b0
internalID: -309176083
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_81
rect:
serializedVersion: 2
x: 1536
y: 256
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 995ec8e0802757c43ba205d4bfeac327
internalID: 225118697
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_82
rect:
serializedVersion: 2
x: 1792
y: 256
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 03a2eff5c7f7aa147999bf630dea43d5
internalID: -746237985
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_83
rect:
serializedVersion: 2
x: 2048
y: 256
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 726eb65fcd5c81647b543b7bdf4d4a2a
internalID: -838647519
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_84
rect:
serializedVersion: 2
x: 2304
y: 256
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 78a7974ed7623e74ea32e3b40589cf6a
internalID: 1652826896
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_85
rect:
serializedVersion: 2
x: 0
y: 0
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 127f0551c6ca45b4f961c5b61757226f
internalID: -2010512805
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_86
rect:
serializedVersion: 2
x: 256
y: 0
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 00ac7ddd1159bee4d83a32ef46b878b7
internalID: 345291764
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_87
rect:
serializedVersion: 2
x: 512
y: 0
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: b7f191f42a0f0f14896c6b298bc74251
internalID: -1250601515
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_88
rect:
serializedVersion: 2
x: 768
y: 0
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 366275b3391c5a9459d6a1002053faf4
internalID: -2077190689
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_89
rect:
serializedVersion: 2
x: 1024
y: 0
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 0459ee2fa9ec1dd4c97a2e74b6d73368
internalID: 1526603357
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_90
rect:
serializedVersion: 2
x: 1280
y: 0
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 2af9a957e2e37ae4c859f83529e28bfc
internalID: -1487959430
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_91
rect:
serializedVersion: 2
x: 1536
y: 0
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: ec34b59fa1367734a9c8275e2b605274
internalID: 349191708
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_92
rect:
serializedVersion: 2
x: 1792
y: 0
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: b36d85f7b77b02c4dbee77ebed474b29
internalID: 445975211
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_93
rect:
serializedVersion: 2
x: 2048
y: 0
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 5d62f100fcd29df4e9d70b2f6155f411
internalID: -1132036178
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Base_Palette4 1_94
rect:
serializedVersion: 2
x: 2304
y: 0
width: 256
height: 256
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 706216afbfcab624e9ac178ee984183c
internalID: -1391797320
vertices: []
indices:
edges: []
weights: []
outline: []
physicsShape: []
bones: []
spriteID: 03a4f946e354f45439e57f2677b9cc0f
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable:
Base_Palette4 1_0: -2037868760
Base_Palette4 1_1: -2123925663
Base_Palette4 1_10: 1132916211
Base_Palette4 1_11: 390825896
Base_Palette4 1_12: 1227058503
Base_Palette4 1_13: -1310886175
Base_Palette4 1_14: 924988983
Base_Palette4 1_15: 1784890822
Base_Palette4 1_16: 1490062562
Base_Palette4 1_17: 764594100
Base_Palette4 1_18: 558477326
Base_Palette4 1_19: -1603051454
Base_Palette4 1_2: -2012886645
Base_Palette4 1_20: 1212707654
Base_Palette4 1_21: -1679600712
Base_Palette4 1_22: -1285698879
Base_Palette4 1_23: -692214261
Base_Palette4 1_24: 989719289
Base_Palette4 1_25: -762292131
Base_Palette4 1_26: -81842222
Base_Palette4 1_27: -1997303060
Base_Palette4 1_28: -42066369
Base_Palette4 1_29: -181237870
Base_Palette4 1_3: -2129629859
Base_Palette4 1_30: -1048043187
Base_Palette4 1_31: 1297162156
Base_Palette4 1_32: -425067634
Base_Palette4 1_33: -579007670
Base_Palette4 1_34: -1159665985
Base_Palette4 1_35: -928543722
Base_Palette4 1_36: 1536484360
Base_Palette4 1_37: 32797319
Base_Palette4 1_38: -604126984
Base_Palette4 1_39: -1135517462
Base_Palette4 1_4: -1806907921
Base_Palette4 1_40: -816427639
Base_Palette4 1_41: 957032871
Base_Palette4 1_42: 1843647989
Base_Palette4 1_43: -1115265622
Base_Palette4 1_44: 1506457855
Base_Palette4 1_45: -2099354546
Base_Palette4 1_46: -2017391705
Base_Palette4 1_47: 889089234
Base_Palette4 1_48: 1133958128
Base_Palette4 1_49: 1702689434
Base_Palette4 1_5: 1559490672
Base_Palette4 1_50: 1577454077
Base_Palette4 1_51: 990819651
Base_Palette4 1_52: -1557850036
Base_Palette4 1_53: 309627848
Base_Palette4 1_54: 2010116257
Base_Palette4 1_55: 874606387
Base_Palette4 1_56: 2042692735
Base_Palette4 1_57: -1886818525
Base_Palette4 1_58: 1622166831
Base_Palette4 1_59: -1595072890
Base_Palette4 1_6: 1782439515
Base_Palette4 1_60: 1283174015
Base_Palette4 1_61: -1351524575
Base_Palette4 1_62: 1977466898
Base_Palette4 1_63: 416035339
Base_Palette4 1_64: -437548709
Base_Palette4 1_65: 1291043896
Base_Palette4 1_66: -414606656
Base_Palette4 1_67: -770376152
Base_Palette4 1_68: 1630366155
Base_Palette4 1_69: -66223099
Base_Palette4 1_7: -1405755494
Base_Palette4 1_70: -512051203
Base_Palette4 1_71: 224115794
Base_Palette4 1_72: -1910656894
Base_Palette4 1_73: -374475503
Base_Palette4 1_74: -1228229690
Base_Palette4 1_75: -1159775795
Base_Palette4 1_76: 1328697017
Base_Palette4 1_77: 1200623162
Base_Palette4 1_78: 257382115
Base_Palette4 1_79: -1063976303
Base_Palette4 1_8: -1860919492
Base_Palette4 1_80: -309176083
Base_Palette4 1_81: 225118697
Base_Palette4 1_82: -746237985
Base_Palette4 1_83: -838647519
Base_Palette4 1_84: 1652826896
Base_Palette4 1_85: -2010512805
Base_Palette4 1_86: 345291764
Base_Palette4 1_87: -1250601515
Base_Palette4 1_88: -2077190689
Base_Palette4 1_89: 1526603357
Base_Palette4 1_9: -1699693718
Base_Palette4 1_90: -1487959430
Base_Palette4 1_91: 349191708
Base_Palette4 1_92: 445975211
Base_Palette4 1_93: -1132036178
Base_Palette4 1_94: -1391797320
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:
|