860da849
zhaolu
auto package
|
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
|
{
"skeleton": { "hash": "dvWoD3zNK6cRQtKOg3B3we6new0", "spine": "3.4.02", "width": 405.58, "height": 336.08, "images": "" },
"bones": [
{ "name": "root", "y": -52.93, "scaleX": 0.65, "scaleY": 0.65 },
{ "name": "body", "parent": "root", "length": 196.76, "rotation": 81.49, "x": 18.34, "y": 164.95 },
{ "name": "backHair", "parent": "body", "length": 56.85, "rotation": 174.56, "x": 258.14, "y": 122.6 },
{ "name": "bone", "parent": "body", "length": 75.08, "rotation": 32.2, "x": 252.36, "y": 27.31 },
{ "name": "hair", "parent": "body", "length": 42.75, "rotation": -169.21, "x": 231.31, "y": 49.21 },
{ "name": "bone19", "parent": "hair", "length": 50.17, "x": 42.75, "y": 0.16 },
{ "name": "bone20", "parent": "bone19", "length": 48.28, "rotation": -2.27, "x": 50.17, "y": -0.13 },
{ "name": "bone21", "parent": "bone20", "length": 37.19, "rotation": -2.72, "x": 48.28 },
{ "name": "bone22", "parent": "bone21", "length": 48.28, "rotation": 2.27, "x": 37.19, "y": -0.11 },
{ "name": "bone25", "parent": "backHair", "length": 53.51, "rotation": 7.23, "x": 56.85, "y": -0.09 },
{ "name": "bone26", "parent": "bone25", "length": 53.77, "rotation": -1.35, "x": 53.51, "y": 0.34 },
{ "name": "bone27", "parent": "bone26", "length": 49.4, "rotation": 3.15, "x": 53.76, "y": -0.35 },
{ "name": "bone28", "parent": "bone27", "length": 88.73, "rotation": 7.18, "x": 49.4, "y": 0.29 },
{ "name": "tou", "parent": "root", "length": 201.82, "rotation": -63.07, "x": 65.2, "y": 412.15 },
{ "name": "eye", "parent": "tou", "x": 123.7, "y": -10.76 },
{ "name": "eyelight", "parent": "root", "x": -122.66, "y": 661.35 },
{ "name": "images/niujiao003", "parent": "tou", "length": 31.53, "rotation": 89.63, "x": 46.6, "y": -30.68 },
{ "name": "kucha", "parent": "root", "x": 18.34, "y": 131.21 },
{ "name": "skillB01", "parent": "root", "x": 599.47, "y": 779.39 },
{ "name": "skillB02", "parent": "root", "x": 186.18, "y": 785.9 },
{ "name": "youdabi", "parent": "body", "length": 145.88, "rotation": 157.18, "x": 194.15, "y": 146.93 },
{ "name": "youdatui", "parent": "root", "length": 57.65, "rotation": -100.7, "x": -33.33, "y": 147.43 },
{ "name": "youjianjia", "parent": "body", "length": 129.32, "rotation": 110.7, "x": 214.99, "y": 133.15 },
{ "name": "youjiao", "parent": "root", "x": -71.46, "y": 10.9 },
{ "name": "youxiaobi", "parent": "youdabi", "length": 132.07, "rotation": 27.81, "x": 150.36, "y": -4.15 },
{ "name": "youshou", "parent": "youxiaobi", "length": 59.69, "rotation": 8.5, "x": 167.62, "y": -2.75 },
{ "name": "youxiaotui", "parent": "youdatui", "length": 59.9, "rotation": -8.06, "x": 65.06, "y": -6.49 },
{ "name": "zuodabi", "parent": "body", "length": 153.71, "rotation": -159.69, "x": 228.61, "y": -95.78 },
{ "name": "zuodatui", "parent": "root", "length": 69.86, "rotation": -63.97, "x": 55.22, "y": 137.59 },
{ "name": "zuojiao", "parent": "root", "x": 62.6, "y": 7.21 },
{ "name": "zuoxiaobi", "parent": "zuodabi", "length": 127.94, "rotation": -20.7, "x": 172.28, "y": -1.87 },
{ "name": "zuoshou", "parent": "zuoxiaobi", "length": 43.07, "rotation": 1.35, "x": 146.56, "y": 0.36 },
{ "name": "zuoxiaotui", "parent": "zuodatui", "length": 51.91, "rotation": -62.53, "x": 80.36, "y": -3.65 }
],
"slots": [
{ "name": "images/zuoshou001", "bone": "zuoshou", "attachment": "images/zuoshou001" },
{ "name": "images/zuoxiaobi001", "bone": "zuoxiaobi", "attachment": "images/zuoxiaobi001" },
{ "name": "images/zuoshangbi001", "bone": "zuodabi", "attachment": "images/zuoshangbi001" },
{ "name": "images/hair003", "bone": "backHair", "attachment": "images/hair003" },
{ "name": "images/zuofoot001", "bone": "zuojiao", "attachment": "images/zuofoot001" },
{ "name": "images/zuoxiaotui", "bone": "zuoxiaotui", "attachment": "images/zuoxiaotui" },
{ "name": "images/zuodatui001", "bone": "zuodatui", "attachment": "images/zuodatui001" },
{ "name": "images/body003", "bone": "body", "attachment": "images/body003" },
{ "name": "images/houbeitoufa003", "bone": "bone", "attachment": "images/houbeitoufa003" },
{ "name": "images/dangbu002", "bone": "kucha", "attachment": "images/dangbu002" },
{ "name": "images/youfoot", "bone": "youjiao", "attachment": "images/youfoot" },
{ "name": "images/youdatui001", "bone": "youdatui", "attachment": "images/youdatui001" },
{ "name": "images/touHair002", "bone": "hair", "attachment": "images/touHair002" },
{ "name": "images/head003", "bone": "tou", "attachment": "images/head003" },
{ "name": "images/youxiaotui", "bone": "youxiaotui", "attachment": "images/youxiaotui" },
{ "name": "images/niujiao003", "bone": "images/niujiao003", "attachment": "images/niujiao003" },
{ "name": "images/eye", "bone": "eye", "attachment": "images/eye" },
{ "name": "images/hand004", "bone": "youshou", "attachment": "images/hand004" },
{ "name": "images/youshangbi001", "bone": "youdabi", "attachment": "images/youshangbi001" },
{ "name": "images/jianjia004", "bone": "youjianjia", "attachment": "images/jianjia004" },
{ "name": "images/youshoubi003", "bone": "youxiaobi", "attachment": "images/youshoubi003" },
{ "name": "images/eyelight", "bone": "eyelight", "blend": "screen" },
{ "name": "images/skill0001", "bone": "skillB01", "blend": "additive" },
{ "name": "images/skillB0001", "bone": "skillB02", "blend": "additive" }
],
"skins": {
"default": {
"images/body003": {
"images/body001": { "x": 116.9, "y": 19.18, "rotation": -81.49, "width": 251, "height": 303 },
"images/body002": { "x": 116.9, "y": 19.18, "rotation": -81.49, "width": 252, "height": 327 },
"images/body003": { "x": 116.9, "y": 19.18, "rotation": -81.49, "width": 289, "height": 307 }
},
"images/dangbu002": {
"images/dangbu002": { "x": -14.53, "y": -24.7, "width": 168, "height": 132 }
},
"images/eye": {
"images/eye": { "x": -4.52, "y": 6.8, "rotation": 63.07, "width": 27, "height": 32 }
},
"images/eyelight": {
"images/eyelight": { "x": 1.71, "y": -4.09, "width": 535, "height": 155 }
},
"images/hair003": {
"images/hair003": {
"type": "mesh",
"uvs": [ 0, 0, 0.16666, 0, 0.33333, 0, 0.5, 0, 0.66666, 0, 0.83333, 0, 1, 0, 1, 0.16666, 1, 0.33333, 1, 0.5, 1, 0.66666, 1, 0.83333, 1, 1, 0.83333, 1, 0.66666, 1, 0.5, 1, 0.33333, 1, 0.16666, 1, 0, 1, 0, 0.83333, 0, 0.66666, 0, 0.5, 0, 0.33333, 0, 0.16666, 0.16666, 0.16666, 0.16666, 0.33333, 0.16666, 0.5, 0.16666, 0.66666, 0.16666, 0.83333, 0.33333, 0.16666, 0.33333, 0.33333, 0.33333, 0.5, 0.33333, 0.66666, 0.33333, 0.83333, 0.5, 0.16666, 0.5, 0.33333, 0.5, 0.5, 0.5, 0.66666, 0.5, 0.83333, 0.66666, 0.16666, 0.66666, 0.33333, 0.66666, 0.5, 0.66666, 0.66666, 0.66666, 0.83333, 0.83333, 0.16666, 0.83333, 0.33333, 0.83333, 0.5, 0.83333, 0.66666, 0.83333, 0.83333 ],
"triangles": [ 13, 11, 12, 14, 48, 13, 13, 48, 11, 15, 43, 14, 14, 43, 48, 16, 38, 15, 15, 38, 43, 17, 33, 16, 16, 33, 38, 18, 28, 17, 17, 28, 33, 18, 19, 28, 48, 10, 11, 43, 47, 48, 48, 47, 10, 38, 42, 43, 43, 42, 47, 38, 32, 37, 38, 37, 42, 33, 27, 32, 38, 33, 32, 28, 20, 27, 33, 28, 27, 28, 19, 20, 32, 36, 37, 47, 9, 10, 42, 46, 47, 37, 41, 42, 27, 31, 32, 20, 26, 27, 27, 26, 31, 20, 21, 26, 47, 46, 9, 42, 41, 46, 37, 36, 41, 32, 31, 36, 46, 8, 9, 36, 40, 41, 46, 41, 40, 31, 35, 36, 26, 30, 31, 21, 25, 26, 26, 25, 30, 21, 22, 25, 46, 40, 45, 46, 45, 8, 36, 35, 40, 31, 30, 35, 45, 7, 8, 35, 39, 40, 45, 40, 39, 30, 34, 35, 25, 29, 30, 22, 24, 25, 45, 39, 44, 45, 44, 7, 35, 34, 39, 30, 29, 34, 25, 24, 29, 22, 23, 24, 44, 6, 7, 44, 4, 5, 44, 5, 6, 34, 4, 39, 44, 39, 4, 29, 3, 34, 34, 3, 4, 24, 2, 29, 29, 2, 3, 23, 1, 24, 24, 1, 2, 23, 0, 1 ],
"vertices": [ 4, 2, 0.8, -121.99, 0.78057, 9, -70.94999, -113.88, 0.21339, 10, -121.76, -117.11, 0.00593, 12, -242.67, -77.5, 8.0E-5, 4, 2, -6.06, -94.33, 0.83165, 9, -74.28, -85.57, 0.16525, 10, -125.75, -88.89, 0.00301, 12, -241.54, -49.03, 6.0E-5, 4, 2, -12.93, -66.67, 0.88435, 9, -77.61, -57.27, 0.11559, 11, -186.54, -50.17, 0, 12, -240.41, -20.54999, 5.0E-5, 3, 2, -19.79, -39.00999, 0.97208, 9, -80.94, -28.96, 0.02789, 12, -239.28, 7.92, 2.0E-5, 3, 2, -26.66, -11.35, 0.99999, 11, -191.42, 6.61, 0, 12, -238.14, 36.4, 0, 2, 2, -33.53, 16.29999, 0.99999, 11, -193.86, 35.00999, 0, 2, 2, -40.39, 43.96, 0.99999, 11, -196.3, 63.41, 0, 3, 2, 17.02, 58.21, 0.81863, 9, -32.16999, 62.86, 0.17521, 10, -87.13, 60.49, 0.00615, 4, 2, 74.44, 72.47, 0.18975, 9, 26.58, 69.76999, 0.54978, 10, -28.55, 68.78, 0.2381, 11, -78.4, 73.54, 0.02235, 5, 2, 131.87, 86.72, 1.1E-4, 9, 85.34, 76.69, 0.18465, 10, 30.03, 77.06, 0.49766, 11, -19.45, 78.6, 0.27379, 12, -58.52, 86.31, 0.04377, 4, 9, 144.1, 83.6, 0.00656, 10, 88.61, 85.35, 0.15138, 11, 39.49, 83.67, 0.38987, 12, 0.58999, 83.96, 0.45218, 5, 2, 246.71, 115.23, 0, 9, 202.86, 90.52, 3.0E-5, 10, 147.19, 93.64, 0.00624, 11, 98.44, 88.73, 0.0828, 12, 59.71, 81.61, 0.9109, 4, 2, 304.14, 129.49, 0, 9, 261.62, 97.44, 2.0E-5, 11, 157.39, 93.8, 3.9E-4, 12, 118.83, 79.26, 0.99957, 3, 2, 311, 101.83, 0, 9, 264.95, 69.12999, 2.0E-5, 12, 117.7, 50.79, 0.99998, 2, 9, 268.28, 40.83, 0, 12, 116.57, 22.31, 0.99999, 3, 2, 324.74, 46.51, 0, 9, 271.62, 12.52, 0, 12, 115.43, -6.16, 0.99999, 2, 2, 331.6, 18.85, 0, 12, 114.3, -34.64, 0.99999, 2, 2, 338.47, -8.8, 1.0E-5, 12, 113.17, -63.11, 0.99998, 2, 2, 345.34, -36.46, 1.0E-5, 12, 112.04, -91.59, 0.99998, 4, 2, 287.91, -50.72, 2.0E-5, 10, 171.15, -75.66, 0.0017, 11, 113.08, -81.62999, 0.0867, 12, 52.92, -89.24, 0.91156, 4, 9, 164.09, -86.21, 0.01008, 10, 112.57, -83.95, 0.10209, 11, 54.13, -86.7, 0.40732, 12, -6.19, -86.9, 0.48049, 5, 2, 173.07, -79.23, 0.01482, 9, 105.33, -93.13, 0.14692, 10, 53.98, -92.24, 0.39281, 11, -4.81, -91.76, 0.37663, 12, -65.31, -84.55, 0.0688, 4, 2, 115.64, -93.48, 0.18187, 9, 46.57, -100.04, 0.41313, 10, -4.59, -100.53, 0.31731, 11, -63.76, -96.83, 0.08767, 5, 2, 58.22, -107.74, 0.58051, 9, -12.19, -106.96, 0.33864, 10, -63.17, -108.82, 0.07535, 11, -122.71, -101.89, 0.00539, 12, -183.55, -79.85, 8.0E-5, 5, 2, 51.35, -80.08, 0.60709, 9, -15.52, -78.66, 0.32731, 10, -67.17, -80.6, 0.06189, 11, -125.15, -73.5, 0.00363, 12, -182.42, -51.37, 6.0E-5, 4, 2, 108.78, -65.82, 0.12088, 9, 43.23, -71.74, 0.41164, 10, -8.58, -72.31, 0.36995, 11, -66.19999, -68.43, 0.09751, 5, 2, 166.2, -51.57, 0.00909, 9, 102, -64.82, 0.11967, 10, 49.99, -64.01999, 0.3893, 11, -7.25, -63.37, 0.40432, 12, -64.18, -56.07, 0.07759, 4, 9, 160.76, -57.91, 0.01425, 10, 108.57, -55.73, 0.1208, 11, 51.69, -58.3, 0.44649, 12, -5.06, -58.42, 0.41843, 4, 2, 281.05, -23.06, 1.0E-5, 10, 167.16, -47.44, 0.00143, 11, 110.64, -53.24, 0.07772, 12, 54.05, -60.77, 0.92082, 5, 2, 44.49, -52.42, 0.68691, 9, -18.85, -50.35, 0.29372, 10, -71.16, -52.38, 0.0193, 11, -127.59, -45.1, 2.0E-5, 12, -181.29, -22.9, 2.0E-5, 4, 2, 101.91, -38.16, 0.09531, 9, 39.9, -43.44, 0.48445, 10, -12.58, -44.09, 0.36935, 11, -68.64, -40.04, 0.05087, 5, 2, 159.33, -23.91, 0.0021, 9, 98.66, -36.52, 0.0712, 10, 46, -35.8, 0.48877, 11, -9.68999, -34.97, 0.41588, 12, -63.05, -27.59, 0.02202, 5, 2, 216.76, -9.64999, 0, 9, 157.43, -29.6, 0, 10, 104.58, -27.51, 0.01201, 11, 49.25, -29.91, 0.39059, 12, -3.93, -29.94, 0.59739, 3, 2, 274.18, 4.59, 0, 11, 108.2, -24.84, 0.02179, 12, 55.18, -32.29, 0.97819, 4, 2, 37.62, -24.76, 0.79201, 9, -22.18, -22.05, 0.20541, 10, -75.15, -24.16, 0.00256, 12, -180.16, 5.57, 0, 2, 9, 36.57, -15.13, 0.90776, 10, -16.57, -15.87, 0.09224, 2, 10, 42.01, -7.58, 0.821, 11, -12.13, -6.58, 0.17899, 2, 11, 46.81, -1.51, 0.5, 12, -2.8, -1.46, 0.5, 2, 2, 267.31, 32.25, 0, 12, 56.31, -3.81, 0.99999, 1, 2, 30.75, 2.89, 1, 2, 9, 33.24, 13.16, 0.84522, 10, -20.56, 12.34, 0.15477, 2, 10, 38.00999, 20.62999, 0.80623, 11, -14.57, 21.81, 0.19376, 3, 10, 96.6, 28.92, 0.0497, 11, 44.37, 26.87, 0.62769, 12, -1.66, 27, 0.32259, 2, 11, 103.32, 31.94, 0.0064, 12, 57.45, 24.66, 0.99359, 3, 2, 23.89, 30.55, 0.81408, 9, -28.84, 34.55, 0.17941, 10, -83.14, 32.27, 0.0065, 4, 2, 81.31, 44.81, 0.09631, 9, 29.91, 41.47, 0.56967, 10, -24.55, 40.56, 0.30708, 11, -75.96, 45.14, 0.02692, 5, 2, 138.73, 59.06, 7.0E-4, 9, 88.67, 48.38, 0.18657, 10, 34.02, 48.85, 0.58509, 11, -17.01, 50.2, 0.21363, 12, -59.65, 57.83, 0.01399, 5, 2, 196.16, 73.32, 0, 9, 147.43, 55.3, 0.00442, 10, 92.6, 57.13, 0.13228, 11, 41.93, 55.27, 0.46085, 12, -0.52999, 55.48, 0.40243, 4, 2, 253.58, 87.57, 0, 10, 151.19, 65.42, 0.00592, 11, 100.88, 60.33, 0.07535, 12, 58.58, 53.13, 0.91872 ],
"hull": 24,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 0 ],
"width": 171,
"height": 355
}
},
"images/hand004": {
"images/hand004": { "x": 10.48, "y": 0.06, "rotation": 84.99, "width": 161, "height": 117 }
},
"images/head003": {
"images/head001": { "x": 125.43, "y": 29, "rotation": 63.07, "width": 183, "height": 208 },
"images/head002": { "x": 119.82, "y": 17.96, "rotation": 63.07, "width": 187, "height": 228 },
"images/head003": { "x": 144.51, "y": 66.56, "rotation": 63.07, "width": 284, "height": 235 }
},
"images/houbeitoufa003": {
"images/houbeitoufa003": { "x": 1.09, "y": 10.96, "rotation": -113.69, "width": 302, "height": 163 }
},
"images/jianjia004": {
"images/jianjia001": { "x": 60.33, "y": -3.95, "rotation": 167.8, "width": 182, "height": 244 },
"images/jianjia002": { "x": 60.33, "y": -3.95, "rotation": 167.8, "width": 210, "height": 250 },
"images/jianjia003": { "x": 60.33, "y": -3.95, "rotation": 167.8, "width": 224, "height": 254 },
"images/jianjia004": { "x": 60.33, "y": -3.95, "rotation": 167.8, "width": 238, "height": 254 }
},
"images/niujiao003": {
"images/niujiao003": { "x": -13.43, "y": -8.55, "rotation": -26.56, "width": 117, "height": 191 }
},
"images/skill0001": {
"images/skill0001": { "x": -9.97, "y": 106.58, "width": 404, "height": 222 },
"images/skill0002": { "x": -9.97, "y": 106.58, "width": 404, "height": 222 },
"images/skill0003": { "x": -9.97, "y": 106.58, "width": 404, "height": 222 },
"images/skill0004": { "x": -9.97, "y": 106.58, "width": 404, "height": 222 },
"images/skill0005": { "x": -9.97, "y": 106.58, "width": 404, "height": 222 },
"images/skill0006": { "x": -9.97, "y": 106.58, "width": 404, "height": 222 },
"images/skill0007": { "x": -9.97, "y": 106.58, "width": 404, "height": 222 }
},
"images/skillB0001": {
"images/skillB0001": { "x": -0.53, "y": 1.79, "width": 140, "height": 140 },
"images/skillB0002": { "x": -0.53, "y": 1.79, "width": 140, "height": 140 },
"images/skillB0003": { "x": -0.53, "y": 1.79, "width": 140, "height": 140 },
"images/skillB0004": { "x": -0.53, "y": 1.79, "width": 140, "height": 140 },
"images/skillB0005": { "x": -0.53, "y": 1.79, "width": 140, "height": 140 },
"images/skillB0006": { "x": -0.53, "y": 1.79, "width": 140, "height": 140 }
},
"images/touHair002": {
"images/touHair002": {
"type": "mesh",
"uvs": [ 0, 0, 0.14285, 0, 0.28571, 0, 0.42857, 0, 0.57142, 0, 0.71428, 0, 0.85714, 0, 1, 0, 1, 0.14285, 1, 0.28571, 1, 0.42857, 1, 0.57142, 1, 0.71428, 1, 0.85714, 1, 1, 0.85714, 1, 0.71428, 1, 0.57142, 1, 0.42857, 1, 0.28571, 1, 0.14285, 1, 0, 1, 0, 0.85714, 0, 0.71428, 0, 0.57142, 0, 0.42857, 0, 0.28571, 0, 0.14285, 0.14285, 0.14285, 0.14285, 0.28571, 0.14285, 0.42857, 0.14285, 0.57142, 0.14285, 0.71428, 0.14285, 0.85714, 0.28571, 0.14285, 0.28571, 0.28571, 0.28571, 0.42857, 0.28571, 0.57142, 0.28571, 0.71428, 0.28571, 0.85714, 0.42857, 0.14285, 0.42857, 0.28571, 0.42857, 0.42857, 0.42857, 0.57142, 0.42857, 0.71428, 0.42857, 0.85714, 0.57142, 0.14285, 0.57142, 0.28571, 0.57142, 0.42857, 0.57142, 0.57142, 0.57142, 0.71428, 0.57142, 0.85714, 0.71428, 0.14285, 0.71428, 0.28571, 0.71428, 0.42857, 0.71428, 0.57142, 0.71428, 0.71428, 0.71428, 0.85714, 0.85714, 0.14285, 0.85714, 0.28571, 0.85714, 0.42857, 0.85714, 0.57142, 0.85714, 0.71428, 0.85714, 0.85714 ],
"triangles": [ 59, 58, 8, 53, 52, 58, 47, 40, 46, 47, 46, 52, 35, 34, 40, 29, 28, 34, 26, 27, 28, 58, 7, 8, 52, 6, 58, 58, 6, 7, 46, 5, 52, 52, 5, 6, 46, 3, 4, 46, 4, 5, 34, 3, 40, 46, 40, 3, 28, 2, 34, 34, 2, 3, 27, 1, 28, 28, 1, 2, 27, 0, 1, 60, 9, 10, 54, 59, 60, 60, 59, 9, 48, 53, 54, 54, 53, 59, 42, 47, 48, 48, 47, 53, 36, 41, 42, 42, 41, 47, 30, 35, 36, 36, 35, 41, 25, 29, 30, 30, 29, 35, 25, 26, 29, 59, 8, 9, 53, 58, 59, 47, 52, 53, 35, 40, 41, 47, 41, 40, 29, 34, 35, 26, 28, 29, 62, 61, 11, 56, 55, 61, 50, 49, 55, 44, 43, 49, 38, 37, 43, 32, 31, 37, 23, 24, 31, 61, 10, 11, 55, 60, 61, 61, 60, 10, 49, 54, 55, 55, 54, 60, 43, 48, 49, 49, 48, 54, 37, 42, 43, 43, 42, 48, 37, 30, 36, 37, 36, 42, 31, 25, 30, 37, 31, 30, 31, 24, 25, 63, 62, 12, 57, 56, 62, 51, 50, 56, 45, 44, 50, 39, 38, 44, 33, 32, 38, 22, 23, 32, 62, 11, 12, 56, 61, 62, 50, 55, 56, 44, 49, 50, 38, 43, 44, 32, 37, 38, 23, 31, 32, 15, 13, 14, 16, 63, 15, 15, 63, 13, 17, 57, 16, 16, 57, 63, 18, 51, 17, 17, 51, 57, 19, 45, 18, 18, 45, 51, 20, 39, 19, 19, 39, 45, 21, 33, 20, 20, 33, 39, 21, 22, 33, 63, 12, 13, 57, 62, 63, 51, 56, 57, 45, 50, 51, 39, 44, 45, 33, 38, 39, 22, 32, 33 ],
"vertices": [ 2, 5, -56.46, -19.39, 0, 4, -13.7, -19.23, 1, 1, 4, -13.42, -12.23, 1, 2, 5, -55.9, -5.4, 0, 4, -13.15, -5.23999, 1, 2, 5, -55.62, 1.59, 0, 4, -12.87, 1.75, 1, 2, 5, -55.35, 8.58, 0, 4, -12.59, 8.74, 0.99999, 2, 5, -55.07, 15.58, 0, 4, -12.31, 15.74, 0.99999, 2, 5, -54.79, 22.57, 0, 4, -12.04, 22.73, 0.99999, 2, 5, -54.51, 29.56, 0, 4, -11.76, 29.73, 0.99999, 2, 5, -19.4, 28.17, 0.07041, 4, 23.35, 28.33, 0.92957, 3, 6, -35.5, 25.52, 4.7E-4, 5, 15.71, 26.78, 0.87148, 4, 58.46, 26.94, 0.12804, 3, 6, -0.36, 25.52, 0.50356, 5, 50.82, 25.38, 0.49634, 4, 93.58, 25.54, 9.0E-5, 3, 7, -14.69, 24.86, 0.14572, 6, 34.77, 25.52, 0.85425, 4, 128.69, 24.15, 1.0E-5, 4, 8, -15.71, 27.26, 0.10104, 7, 20.4, 26.51, 0.84002, 6, 69.91, 25.52, 0.05893, 4, 163.81, 22.75, 0, 2, 8, 19.42, 27.52, 0.91199, 7, 55.51, 28.16, 0.088, 2, 8, 54.56, 27.79, 0.99997, 7, 90.61, 29.81, 2.0E-5, 2, 8, 54.61, 20.79, 0.99999, 7, 90.94, 22.82, 0, 2, 8, 54.67, 13.79, 0.99999, 7, 91.27, 15.82, 0, 2, 8, 54.72, 6.79, 0.99999, 7, 91.6, 8.83, 0, 2, 8, 54.77, -0.2, 0.99999, 7, 91.93, 1.84, 0, 3, 8, 54.82, -7.2, 0.99997, 7, 92.26, -5.14, 2.0E-5, 6, 140.2, -9.47, 0, 3, 8, 54.88, -14.2, 0.99992, 7, 92.58, -12.13, 7.0E-5, 6, 140.2, -16.46999, 0, 3, 8, 54.93, -21.2, 0.9999, 7, 92.91, -19.12999, 9.0E-5, 6, 140.2, -23.47, 0, 3, 8, 19.79, -21.46, 0.97114, 7, 57.81, -20.78, 0.02883, 6, 105.06, -23.47, 2.0E-5, 3, 8, -15.34, -21.73, 0.11017, 7, 22.71, -22.43, 0.86657, 6, 69.91, -23.47, 0.02325, 2, 7, -12.39, -24.08, 0.14507, 6, 34.77, -23.47, 0.85492, 2, 6, -0.36, -23.47, 0.47354, 5, 48.88, -23.57, 0.52644, 2, 5, 13.76, -22.18, 0.8964, 4, 56.52, -22.02, 0.10359, 2, 5, -21.34, -20.78, 0.03495, 4, 21.4, -20.62, 0.96504, 2, 5, -21.06, -13.79, 0.01856, 4, 21.68, -13.63, 0.98143, 2, 5, 14.04, -15.18, 0.93287, 4, 56.8, -15.02, 0.06712, 2, 6, -0.36, -16.46999, 0.477, 5, 49.16, -16.58, 0.52299, 2, 7, -12.72, -17.09, 0.05514, 6, 34.77, -16.46999, 0.94485, 3, 8, -15.4, -14.73, 0.15464, 7, 22.38, -15.43, 0.83948, 6, 69.91, -16.46999, 0.00587, 3, 8, 19.73, -14.46, 0.99619, 7, 57.48, -13.78, 0.00378, 6, 105.06, -16.46999, 1.0E-5, 2, 5, -20.79, -6.79, 0.01856, 4, 21.96, -6.63, 0.98143, 2, 5, 14.32, -8.18999, 0.93287, 4, 57.07, -8.03, 0.06712, 2, 6, -0.36, -9.47, 0.42299, 5, 49.43, -9.58, 0.577, 2, 7, -13.05, -10.09, 0.04669, 6, 34.77, -9.47, 0.9533, 1, 7, 22.05, -8.43999, 1, 2, 8, 19.68, -7.46, 0.99999, 6, 105.06, -9.47, 0, 1, 4, 22.24, 0.35, 1, 1, 5, 14.6, -1.19, 1, 2, 6, -0.36, -2.47, 0.5, 5, 49.71, -2.58999, 0.5, 1, 6, 34.77, -2.47, 1, 1, 7, 21.72, -1.45, 1, 1, 8, 19.62999, -0.47, 1, 1, 4, 22.51, 7.35, 1, 2, 5, 14.87, 5.79, 0.90522, 4, 57.63, 5.95, 0.09477, 2, 6, -0.36, 4.52, 0.34302, 5, 49.99, 4.4, 0.65697, 3, 7, -13.7, 3.88, 0.05027, 6, 34.77, 4.52, 0.94971, 4, 127.86, 3.16, 0, 3, 8, -15.55, 6.26, 0.04791, 7, 21.39, 5.53, 0.95208, 4, 162.98, 1.77, 0, 1, 8, 19.58, 6.52, 1, 2, 5, -19.95, 14.18, 0.02984, 4, 22.79, 14.34, 0.97015, 2, 5, 15.15, 12.79, 0.88718, 4, 57.91, 12.95, 0.11281, 2, 6, -0.36, 11.52, 0.38283, 5, 50.27, 11.39, 0.61716, 3, 7, -14.03, 10.87, 0.05027, 6, 34.77, 11.52, 0.94971, 4, 128.14, 10.16, 0, 4, 8, -15.61, 13.26, 0.02625, 7, 21.06, 12.52, 0.94196, 6, 69.91, 11.52, 0.03176, 4, 163.25, 8.76, 0, 2, 8, 19.53, 13.52, 0.97884, 7, 56.17, 14.17, 0.02115, 2, 5, -19.68, 21.18, 0.02984, 4, 23.07, 21.34, 0.97015, 2, 5, 15.43, 19.78, 0.78723, 4, 58.19, 19.94, 0.21276, 3, 6, -0.36, 18.52, 0.64879, 5, 50.54, 18.39, 0.35114, 4, 93.3, 18.54999, 6.0E-5, 4, 7, -14.36, 17.87, 0.05036, 6, 34.77, 18.52, 0.94856, 5, 85.66, 16.99, 0.00105, 4, 128.42, 17.15, 2.0E-5, 4, 8, -15.66, 20.26, 0.1113, 7, 20.73, 19.52, 0.86282, 6, 69.91, 18.52, 0.02587, 4, 163.53, 15.76, 0, 2, 8, 19.46999, 20.52, 0.94572, 7, 55.84, 21.17, 0.05427 ],
"hull": 28,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 0 ],
"width": 49,
"height": 246
}
},
"images/youdatui001": {
"images/youdatui001": { "x": 27.21, "y": 4.68, "rotation": 100.7, "width": 79, "height": 123 }
},
"images/youfoot": {
"images/youfoot": { "x": -1.14, "y": 3.62, "width": 44, "height": 30 },
"images/zuofoot001": { "x": -1.14, "y": 3.62, "width": 61, "height": 28 }
},
"images/youshangbi001": {
"images/youshangbi001": { "x": 85.73, "y": -0.51, "rotation": 121.32, "width": 165, "height": 200 }
},
"images/youshoubi003": {
"images/youshoubi003": { "x": 29.7, "y": -20.73, "rotation": 93.5, "width": 179, "height": 266 }
},
"images/youxiaotui": {
"images/youxiaotui": { "x": 30.21, "y": -0.09, "rotation": 108.76, "width": 57, "height": 81 }
},
"images/zuodatui001": {
"images/zuodatui001": { "x": 40.69, "y": -8.49, "rotation": 63.97, "width": 95, "height": 111 }
},
"images/zuofoot001": {
"images/zuofoot001": { "x": -3.95, "y": 5.12, "width": 61, "height": 28 }
},
"images/zuoshangbi001": {
"images/zuoshangbi001": { "x": 110.56, "y": -6.11, "rotation": 78.2, "width": 143, "height": 210 }
},
"images/zuoshou001": {
"images/zuoshou001": { "x": -2.84, "y": 2.16, "rotation": 97.55, "width": 143, "height": 111 }
},
"images/zuoxiaobi001": {
"images/zuoxiaobi001": { "x": 58.37, "y": -1.33, "rotation": 98.9, "width": 149, "height": 166 }
},
"images/zuoxiaotui": {
"images/zuoxiaotui": { "x": 25.34, "y": 1.49, "rotation": 126.51, "width": 74, "height": 70 }
}
}
},
"events": {
"special": {}
},
"animations": {
"special": {
"slots": {
"images/body003": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff7d", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff7d" },
{ "time": 1.5, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.7333, "name": "images/body002" }
]
},
"images/dangbu002": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff81", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff81" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/eye": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff81", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff81" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/eyelight": {
"color": [
{ "time": 0.1, "color": "ffffff00" },
{ "time": 0.7333, "color": "ffffffff" },
{ "time": 1.2333, "color": "ffffff00", "curve": "stepped" },
{ "time": 1.4666, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.1, "name": "images/eyelight" }
]
},
"images/hair003": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff7b", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff7b" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/hand004": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff80", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff80" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/head003": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff83", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff83" },
{ "time": 1.5, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.7333, "name": "images/head002" },
{ "time": 1.0666, "name": "images/head002" }
]
},
"images/houbeitoufa003": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff7d", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff7d" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/jianjia004": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff80", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff80" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/niujiao003": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff7e", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff7e" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/skill0001": {
"attachment": [
{ "time": 0.7333, "name": "images/skill0001" },
{ "time": 0.7666, "name": "images/skill0002" },
{ "time": 0.8333, "name": "images/skill0003" },
{ "time": 0.9, "name": "images/skill0004" },
{ "time": 0.9666, "name": "images/skill0005" },
{ "time": 1.0333, "name": "images/skill0006" },
{ "time": 1.1, "name": "images/skill0007" },
{ "time": 1.1666, "name": null }
]
},
"images/skillB0001": {
"attachment": [
{ "time": 0.1, "name": "images/skillB0001" },
{ "time": 0.1666, "name": "images/skillB0002" },
{ "time": 0.2333, "name": "images/skillB0003" },
{ "time": 0.3, "name": "images/skillB0004" },
{ "time": 0.3666, "name": "images/skillB0005" },
{ "time": 0.4333, "name": "images/skillB0006" },
{ "time": 0.7, "name": null }
]
},
"images/touHair002": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff7e", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff7e" },
{ "time": 1.5, "color": "ffffff03" }
]
},
"images/youdatui001": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff7e", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff7e" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/youfoot": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff81", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff81" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/youshangbi001": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff80", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff80" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/youshoubi003": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff80", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff80" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/youxiaotui": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff7e", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff7e" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/zuodatui001": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff81", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff81" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/zuofoot001": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff7d", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff7d" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/zuoshangbi001": {
"color": [
{ "time": 0, "color": "ffffff00" }
]
},
"images/zuoshou001": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff81", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff81" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/zuoxiaobi001": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff80", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff80" },
{ "time": 1.5, "color": "ffffff00" }
]
},
"images/zuoxiaotui": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffff7b", "curve": "stepped" },
{ "time": 1.2666, "color": "ffffff7b" },
{ "time": 1.5, "color": "ffffff00" }
]
}
},
"bones": {
"root": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 0.7333, "angle": 0, "curve": "stepped" },
{ "time": 0.7666, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.8333, "angle": 0, "curve": "stepped" },
{ "time": 0.8666, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 0.9333, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1, "angle": 0, "curve": "stepped" },
{ "time": 1.0333, "angle": 0, "curve": "stepped" },
{ "time": 1.0666, "angle": 0, "curve": "stepped" },
{ "time": 1.1, "angle": 0, "curve": "stepped" },
{ "time": 1.1333, "angle": 0, "curve": "stepped" },
{ "time": 1.1666, "angle": 0, "curve": "stepped" },
{ "time": 1.2, "angle": 0, "curve": "stepped" },
{ "time": 1.2333, "angle": 0, "curve": "stepped" },
{ "time": 1.4666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"body": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -4.02, "curve": "stepped" },
{ "time": 0.6666, "angle": -4.02 },
{ "time": 0.7333, "angle": -22.58 },
{ "time": 0.7666, "angle": -21.15 },
{ "time": 0.8, "angle": -21.63 },
{ "time": 0.8333, "angle": -20.2 },
{ "time": 0.8666, "angle": -20.67 },
{ "time": 0.9, "angle": -19.24 },
{ "time": 0.9333, "angle": -19.72 },
{ "time": 0.9666, "angle": -18.29 },
{ "time": 1, "angle": -18.76 },
{ "time": 1.0333, "angle": -17.33 },
{ "time": 1.0666, "angle": -17.81 },
{ "time": 1.1, "angle": -16.38 },
{ "time": 1.1333, "angle": -16.86 },
{ "time": 1.1666, "angle": -15.42 },
{ "time": 1.2, "angle": -15.9 },
{ "time": 1.2333, "angle": -14.95 },
{ "time": 1.4666, "angle": -14.47 }
],
"translate": [
{ "time": 0, "x": 14.88, "y": -26.8 },
{ "time": 0.1, "x": 12.03, "y": -20.48 },
{ "time": 0.6666, "x": 12.03, "y": -96.88 },
{ "time": 0.7333, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 0.7666, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 0.8, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 0.8333, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 0.8666, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 0.9, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 0.9333, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 0.9666, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 1, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 1.0333, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 1.0666, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 1.1, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 1.1333, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 1.1666, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 1.2, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 1.2333, "x": 33.14, "y": 15.09, "curve": "stepped" },
{ "time": 1.4666, "x": 33.14, "y": 15.09 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1, "x": 1, "y": 1.025, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1.025 },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"kucha": {
"rotate": [
{ "time": 0, "angle": 1.79 },
{ "time": 0.1, "angle": 1.34 },
{ "time": 0.5, "angle": 1.6 },
{ "time": 0.6666, "angle": 1.34 },
{ "time": 0.7333, "angle": 1.68, "curve": "stepped" },
{ "time": 0.7666, "angle": 1.68, "curve": "stepped" },
{ "time": 0.8, "angle": 1.68, "curve": "stepped" },
{ "time": 0.8333, "angle": 1.68, "curve": "stepped" },
{ "time": 0.8666, "angle": 1.68, "curve": "stepped" },
{ "time": 0.9, "angle": 1.68, "curve": "stepped" },
{ "time": 0.9333, "angle": 1.68, "curve": "stepped" },
{ "time": 0.9666, "angle": 1.68, "curve": "stepped" },
{ "time": 1, "angle": 1.68, "curve": "stepped" },
{ "time": 1.0333, "angle": 1.68, "curve": "stepped" },
{ "time": 1.0666, "angle": 1.68, "curve": "stepped" },
{ "time": 1.1, "angle": 1.68, "curve": "stepped" },
{ "time": 1.1333, "angle": 1.68, "curve": "stepped" },
{ "time": 1.1666, "angle": 1.68, "curve": "stepped" },
{ "time": 1.2, "angle": 1.68, "curve": "stepped" },
{ "time": 1.2333, "angle": 1.68 },
{ "time": 1.2666, "angle": 1.6 },
{ "time": 1.4666, "angle": 1.68 }
],
"translate": [
{ "time": 0, "x": 11.91, "y": -20.84 },
{ "time": 0.1, "x": 9.79, "y": -16.54, "curve": "stepped" },
{ "time": 0.6666, "x": 9.79, "y": -16.54 },
{ "time": 0.7333, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 0.7666, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 0.8, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 0.8333, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 0.8666, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 0.9, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 0.9333, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 0.9666, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 1, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 1.0333, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 1.0666, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 1.1, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 1.1333, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 1.1666, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 1.2, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 1.2333, "x": 42.07, "y": 1.59, "curve": "stepped" },
{ "time": 1.4666, "x": 42.07, "y": 1.59 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"tou": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -7.28 },
{ "time": 0.6666, "angle": -12.32 },
{ "time": 0.7333, "angle": 68.73 },
{ "time": 1.0666, "angle": 65.86 },
{ "time": 1.4666, "angle": 54 }
],
"translate": [
{ "time": 0, "x": 2.97, "y": -20.84 },
{ "time": 0.1, "x": 34.37, "y": -37.79 },
{ "time": 0.6666, "x": 34.37, "y": -111.58 },
{ "time": 0.7333, "x": 56.89, "y": 23.13, "curve": "stepped" },
{ "time": 1.0666, "x": 56.89, "y": 23.13 },
{ "time": 1.4666, "x": 73.14, "y": 4.45 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"youdatui": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 23.77 },
{ "time": 0.6666, "angle": -15.65 },
{ "time": 0.7333, "angle": -15.5, "curve": "stepped" },
{ "time": 0.7666, "angle": -15.5, "curve": "stepped" },
{ "time": 0.8, "angle": -15.5, "curve": "stepped" },
{ "time": 0.8333, "angle": -15.5, "curve": "stepped" },
{ "time": 0.8666, "angle": -15.5, "curve": "stepped" },
{ "time": 0.9, "angle": -15.5, "curve": "stepped" },
{ "time": 0.9333, "angle": -15.5, "curve": "stepped" },
{ "time": 0.9666, "angle": -15.5, "curve": "stepped" },
{ "time": 1, "angle": -15.5, "curve": "stepped" },
{ "time": 1.0333, "angle": -15.5, "curve": "stepped" },
{ "time": 1.0666, "angle": -15.5, "curve": "stepped" },
{ "time": 1.1, "angle": -15.5, "curve": "stepped" },
{ "time": 1.1333, "angle": -15.5, "curve": "stepped" },
{ "time": 1.1666, "angle": -15.5, "curve": "stepped" },
{ "time": 1.2, "angle": -15.5, "curve": "stepped" },
{ "time": 1.2333, "angle": -15.5, "curve": "stepped" },
{ "time": 1.5, "angle": -15.5 }
],
"translate": [
{ "time": 0, "x": 5.95, "y": -11.91 },
{ "time": 0.1, "x": 4.46, "y": -7.93 },
{ "time": 0.6666, "x": 4.46, "y": -11.26 },
{ "time": 0.7333, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 0.7666, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 0.8, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 0.8333, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 0.8666, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 0.9, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 0.9333, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 0.9666, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 1, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 1.0333, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 1.0666, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 1.1, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 1.1333, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 1.1666, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 1.2, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 1.2333, "x": 28.47, "y": -22.09, "curve": "stepped" },
{ "time": 1.5, "x": 28.47, "y": -22.09 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.5, "x": 1, "y": 1 }
]
},
"youjiao": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 0.7333, "angle": 0, "curve": "stepped" },
{ "time": 0.7666, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.8333, "angle": 0, "curve": "stepped" },
{ "time": 0.8666, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 0.9333, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1, "angle": 0, "curve": "stepped" },
{ "time": 1.0333, "angle": 0, "curve": "stepped" },
{ "time": 1.0666, "angle": 0, "curve": "stepped" },
{ "time": 1.1, "angle": 0, "curve": "stepped" },
{ "time": 1.1333, "angle": 0, "curve": "stepped" },
{ "time": 1.1666, "angle": 0, "curve": "stepped" },
{ "time": 1.2, "angle": 0, "curve": "stepped" },
{ "time": 1.2333, "angle": 0, "curve": "stepped" },
{ "time": 1.5, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 46.95, "y": 0 },
{ "time": 0.6666, "x": -34.31, "y": 1.8 },
{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.5, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1 },
{ "time": 0.6666, "x": 1.085, "y": 1.085 },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.5, "x": 1, "y": 1 }
]
},
"zuodatui": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -0.36 },
{ "time": 0.6666, "angle": 10.81, "curve": "stepped" },
{ "time": 1.3333, "angle": 10.81, "curve": "stepped" },
{ "time": 1.4666, "angle": 10.81 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 0, "y": 0.39 },
{ "time": 0.6666, "x": 33.14, "y": 11.73, "curve": "stepped" },
{ "time": 1.3333, "x": 33.14, "y": 11.73, "curve": "stepped" },
{ "time": 1.4666, "x": 33.14, "y": 11.73 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"zuojiao": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0 },
{ "time": 0.6666, "angle": -0.31, "curve": "stepped" },
{ "time": 1.3333, "angle": -0.31, "curve": "stepped" },
{ "time": 1.4666, "angle": -0.31 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0 },
{ "time": 0.6666, "x": 41.87, "y": 1.31, "curve": "stepped" },
{ "time": 1.3333, "x": 41.87, "y": 1.31, "curve": "stepped" },
{ "time": 1.4666, "x": 41.87, "y": 1.31 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"backHair": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 0.7333, "angle": -13.35 },
{ "time": 0.9333, "angle": -22.45 },
{ "time": 1.3, "angle": 0, "curve": "stepped" },
{ "time": 1.4666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"bone": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 0.7333, "angle": 0 },
{ "time": 0.7666, "angle": 1.59 },
{ "time": 0.8, "angle": 1.06 },
{ "time": 0.8333, "angle": 2.65 },
{ "time": 0.8666, "angle": 2.12 },
{ "time": 0.9, "angle": 3.71 },
{ "time": 0.9333, "angle": 3.18 },
{ "time": 0.9666, "angle": 4.77 },
{ "time": 1, "angle": 4.24 },
{ "time": 1.0333, "angle": 5.83 },
{ "time": 1.0666, "angle": 5.3 },
{ "time": 1.1, "angle": 6.89 },
{ "time": 1.1333, "angle": 6.36 },
{ "time": 1.1666, "angle": 7.95 },
{ "time": 1.2, "angle": 7.42 },
{ "time": 1.2333, "angle": 8.48 },
{ "time": 1.4666, "angle": 9.01 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7333, "x": 0, "y": 0 },
{ "time": 0.7666, "x": 1.15, "y": 0.48 },
{ "time": 0.8, "x": 0.76, "y": 0.32 },
{ "time": 0.8333, "x": 1.91, "y": 0.81 },
{ "time": 0.8666, "x": 1.53, "y": 0.65 },
{ "time": 0.9, "x": 2.68, "y": 1.13 },
{ "time": 0.9333, "x": 2.3, "y": 0.97 },
{ "time": 0.9666, "x": 3.45, "y": 1.46 },
{ "time": 1, "x": 3.06, "y": 1.3 },
{ "time": 1.0333, "x": 4.22, "y": 1.78 },
{ "time": 1.0666, "x": 3.83, "y": 1.62 },
{ "time": 1.1, "x": 4.98, "y": 2.11 },
{ "time": 1.1333, "x": 4.6, "y": 1.95 },
{ "time": 1.1666, "x": 5.75, "y": 2.43 },
{ "time": 1.2, "x": 5.37, "y": 2.27 },
{ "time": 1.2333, "x": 6.13, "y": 2.6 },
{ "time": 1.4666, "x": 6.52, "y": 2.76 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"eye": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 0.7333, "angle": 0, "curve": "stepped" },
{ "time": 1.2, "angle": 0, "curve": "stepped" },
{ "time": 1.2333, "angle": 0, "curve": "stepped" },
{ "time": 1.4666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0 },
{ "time": 0.7333, "x": -3.87, "y": 20.46 },
{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"hair": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1666, "angle": 1.86 },
{ "time": 0.7666, "angle": 27.89 },
{ "time": 0.8333, "angle": 82.83 },
{ "time": 1, "angle": 121.45 },
{ "time": 1.4666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1666, "x": -0.33, "y": 2.95 },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"youdabi": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 17.15 },
{ "time": 0.6666, "angle": -30.41 },
{ "time": 0.7333, "angle": 19.02, "curve": "stepped" },
{ "time": 1.0666, "angle": 19.02 },
{ "time": 1.2333, "angle": 42.86 },
{ "time": 1.4666, "angle": -317.41 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 3.16, "y": -35.21 },
{ "time": 0.6666, "x": 5.42, "y": -45.13 },
{ "time": 0.7333, "x": -16.37, "y": -31.61, "curve": "stepped" },
{ "time": 1.0666, "x": -16.37, "y": -31.61, "curve": "stepped" },
{ "time": 1.2333, "x": -16.37, "y": -31.61, "curve": "stepped" },
{ "time": 1.4666, "x": -16.37, "y": -31.61 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"youjianjia": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -17.76, "curve": "stepped" },
{ "time": 0.6666, "angle": -17.76 },
{ "time": 0.7333, "angle": 0 },
{ "time": 0.7666, "angle": -0.62 },
{ "time": 0.8, "angle": -0.41 },
{ "time": 0.8333, "angle": -1.03 },
{ "time": 0.8666, "angle": -0.82 },
{ "time": 0.9, "angle": -1.44 },
{ "time": 0.9333, "angle": -1.24 },
{ "time": 0.9666, "angle": -1.86 },
{ "time": 1, "angle": -1.65 },
{ "time": 1.0333, "angle": -2.27 },
{ "time": 1.0666, "angle": -2.06 },
{ "time": 1.1, "angle": -2.68 },
{ "time": 1.1333, "angle": -2.48 },
{ "time": 1.1666, "angle": -3.1 },
{ "time": 1.2, "angle": -2.89 },
{ "time": 1.2333, "angle": -3.3 },
{ "time": 1.4666, "angle": -3.51 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 6.51, "y": -18.82 },
{ "time": 0.6666, "x": 8.77, "y": -28.74 },
{ "time": 0.7333, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 0.7666, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 0.8, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 0.8333, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 0.8666, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 0.9, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 0.9333, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 0.9666, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 1, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 1.0333, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 1.0666, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 1.1, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 1.1333, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 1.1666, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 1.2, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 1.2333, "x": -12.76, "y": -50.27, "curve": "stepped" },
{ "time": 1.4666, "x": -12.76, "y": -50.27 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"youxiaotui": {
"rotate": [
{ "time": 0, "angle": -15.4 },
{ "time": 0.1, "angle": -11.55 },
{ "time": 0.6666, "angle": -0.63 },
{ "time": 0.7333, "angle": 4.23, "curve": "stepped" },
{ "time": 0.7666, "angle": 4.23, "curve": "stepped" },
{ "time": 0.8, "angle": 4.23, "curve": "stepped" },
{ "time": 0.8333, "angle": 4.23, "curve": "stepped" },
{ "time": 0.8666, "angle": 4.23, "curve": "stepped" },
{ "time": 0.9, "angle": 4.23, "curve": "stepped" },
{ "time": 0.9333, "angle": 4.23, "curve": "stepped" },
{ "time": 0.9666, "angle": 4.23, "curve": "stepped" },
{ "time": 1, "angle": 4.23, "curve": "stepped" },
{ "time": 1.0333, "angle": 4.23, "curve": "stepped" },
{ "time": 1.0666, "angle": 4.23, "curve": "stepped" },
{ "time": 1.1, "angle": 4.23, "curve": "stepped" },
{ "time": 1.1333, "angle": 4.23, "curve": "stepped" },
{ "time": 1.1666, "angle": 4.23, "curve": "stepped" },
{ "time": 1.2, "angle": 4.23, "curve": "stepped" },
{ "time": 1.2333, "angle": 4.23, "curve": "stepped" },
{ "time": 1.5, "angle": 4.23 }
],
"translate": [
{ "time": 0, "x": -1.1, "y": 5.85 },
{ "time": 0.1, "x": 0.23, "y": 4.38, "curve": "stepped" },
{ "time": 0.6666, "x": 0.23, "y": 4.38 },
{ "time": 0.7333, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 0.7666, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 0.8, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 0.8333, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 0.8666, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 0.9, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 0.9333, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 0.9666, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 1, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 1.0333, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 1.0666, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 1.1, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 1.1333, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 1.1666, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 1.2, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 1.2333, "x": -1.1, "y": 5.85, "curve": "stepped" },
{ "time": 1.5, "x": -1.1, "y": 5.85 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.5, "x": 1, "y": 1 }
]
},
"zuodabi": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 326.69 },
{ "time": 0.6666, "angle": 293.18 },
{ "time": 0.7333, "angle": 334.15 },
{ "time": 0.7666, "angle": -26.46 },
{ "time": 0.8, "angle": -26.25 },
{ "time": 0.8333, "angle": -26.87 },
{ "time": 0.8666, "angle": -26.67 },
{ "time": 0.9, "angle": -27.29 },
{ "time": 0.9333, "angle": -27.08 },
{ "time": 0.9666, "angle": -27.7 },
{ "time": 1, "angle": -27.5 },
{ "time": 1.0333, "angle": -28.12 },
{ "time": 1.0666, "angle": -27.91 },
{ "time": 1.1, "angle": -28.53 },
{ "time": 1.1333, "angle": -28.33 },
{ "time": 1.1666, "angle": -28.95 },
{ "time": 1.2, "angle": -28.74 },
{ "time": 1.2333, "angle": -29.16 },
{ "time": 1.4666, "angle": 330.62 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": -2.13, "y": 51.59 },
{ "time": 0.6666, "x": -2.69, "y": 54.07 },
{ "time": 0.7333, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 0.7666, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 0.8, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 0.8333, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 0.8666, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 0.9, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 0.9333, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 0.9666, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 1, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 1.0333, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 1.0666, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 1.1, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 1.1333, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 1.1666, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 1.2, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 1.2333, "x": -16.37, "y": 181.6, "curve": "stepped" },
{ "time": 1.4666, "x": -16.37, "y": 181.6 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"zuoxiaotui": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 0.93 },
{ "time": 0.6666, "angle": -4.37, "curve": "stepped" },
{ "time": 1.3333, "angle": -4.37, "curve": "stepped" },
{ "time": 1.4666, "angle": -4.37 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 0.12, "y": -0.14, "curve": "stepped" },
{ "time": 0.6666, "x": 0.12, "y": -0.14, "curve": "stepped" },
{ "time": 1.3333, "x": 0.12, "y": -0.14, "curve": "stepped" },
{ "time": 1.4666, "x": 0.12, "y": -0.14 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"bone19": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -0.32 },
{ "time": 0.6666, "angle": -1.02 },
{ "time": 0.8333, "angle": 22.07 },
{ "time": 1, "angle": 49.64 },
{ "time": 1.4666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"bone25": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 0.9333, "angle": 0, "curve": "stepped" },
{ "time": 1.3, "angle": 0, "curve": "stepped" },
{ "time": 1.4666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"youxiaobi": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 10.38 },
{ "time": 0.6666, "angle": 18.68 },
{ "time": 0.7333, "angle": -20.56, "curve": "stepped" },
{ "time": 0.7666, "angle": -20.56, "curve": "stepped" },
{ "time": 0.8, "angle": -20.56, "curve": "stepped" },
{ "time": 0.8333, "angle": -20.56, "curve": "stepped" },
{ "time": 0.8666, "angle": -20.56, "curve": "stepped" },
{ "time": 0.9, "angle": -20.56, "curve": "stepped" },
{ "time": 0.9333, "angle": -20.56, "curve": "stepped" },
{ "time": 0.9666, "angle": -20.56, "curve": "stepped" },
{ "time": 1, "angle": -20.56, "curve": "stepped" },
{ "time": 1.0333, "angle": -20.56, "curve": "stepped" },
{ "time": 1.0666, "angle": -20.56, "curve": "stepped" },
{ "time": 1.1, "angle": -20.56, "curve": "stepped" },
{ "time": 1.1333, "angle": -20.56, "curve": "stepped" },
{ "time": 1.1666, "angle": -20.56, "curve": "stepped" },
{ "time": 1.2, "angle": -20.56, "curve": "stepped" },
{ "time": 1.2333, "angle": -20.56, "curve": "stepped" },
{ "time": 1.4666, "angle": -20.56 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"zuoxiaobi": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 71.16 },
{ "time": 0.6666, "angle": 74 },
{ "time": 0.7333, "angle": 50.74, "curve": "stepped" },
{ "time": 0.7666, "angle": 50.74, "curve": "stepped" },
{ "time": 0.8, "angle": 50.74, "curve": "stepped" },
{ "time": 0.8333, "angle": 50.74, "curve": "stepped" },
{ "time": 0.8666, "angle": 50.74, "curve": "stepped" },
{ "time": 0.9, "angle": 50.74, "curve": "stepped" },
{ "time": 0.9333, "angle": 50.74, "curve": "stepped" },
{ "time": 0.9666, "angle": 50.74, "curve": "stepped" },
{ "time": 1, "angle": 50.74, "curve": "stepped" },
{ "time": 1.0333, "angle": 50.74, "curve": "stepped" },
{ "time": 1.0666, "angle": 50.74, "curve": "stepped" },
{ "time": 1.1, "angle": 50.74, "curve": "stepped" },
{ "time": 1.1333, "angle": 50.74, "curve": "stepped" },
{ "time": 1.1666, "angle": 50.74, "curve": "stepped" },
{ "time": 1.2, "angle": 50.74, "curve": "stepped" },
{ "time": 1.2333, "angle": 50.74, "curve": "stepped" },
{ "time": 1.4666, "angle": 50.74 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"bone20": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 6.2 },
{ "time": 0.3333, "angle": 7.36, "curve": "stepped" },
{ "time": 0.6666, "angle": 7.36 },
{ "time": 1, "angle": 31.16 },
{ "time": 1.4666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"bone26": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 0.9333, "angle": 0, "curve": "stepped" },
{ "time": 1.3, "angle": 0, "curve": "stepped" },
{ "time": 1.4666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"youshou": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 1.61 },
{ "time": 0.6666, "angle": 15.59 },
{ "time": 0.7333, "angle": -15.41, "curve": "stepped" },
{ "time": 0.7666, "angle": -15.41, "curve": "stepped" },
{ "time": 0.8, "angle": -15.41, "curve": "stepped" },
{ "time": 0.8333, "angle": -15.41, "curve": "stepped" },
{ "time": 0.8666, "angle": -15.41, "curve": "stepped" },
{ "time": 0.9, "angle": -15.41, "curve": "stepped" },
{ "time": 0.9333, "angle": -15.41, "curve": "stepped" },
{ "time": 0.9666, "angle": -15.41, "curve": "stepped" },
{ "time": 1, "angle": -15.41, "curve": "stepped" },
{ "time": 1.0333, "angle": -15.41, "curve": "stepped" },
{ "time": 1.0666, "angle": -15.41, "curve": "stepped" },
{ "time": 1.1, "angle": -15.41, "curve": "stepped" },
{ "time": 1.1333, "angle": -15.41, "curve": "stepped" },
{ "time": 1.1666, "angle": -15.41, "curve": "stepped" },
{ "time": 1.2, "angle": -15.41, "curve": "stepped" },
{ "time": 1.2333, "angle": -15.41, "curve": "stepped" },
{ "time": 1.4666, "angle": -15.41 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 1.33, "y": 0.59, "curve": "stepped" },
{ "time": 0.6666, "x": 1.33, "y": 0.59 },
{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"zuoshou": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -0.52, "curve": "stepped" },
{ "time": 0.6666, "angle": -0.52 },
{ "time": 0.7333, "angle": 0, "curve": "stepped" },
{ "time": 0.7666, "angle": 0, "curve": "stepped" },
{ "time": 0.8, "angle": 0, "curve": "stepped" },
{ "time": 0.8333, "angle": 0, "curve": "stepped" },
{ "time": 0.8666, "angle": 0, "curve": "stepped" },
{ "time": 0.9, "angle": 0, "curve": "stepped" },
{ "time": 0.9333, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1, "angle": 0, "curve": "stepped" },
{ "time": 1.0333, "angle": 0, "curve": "stepped" },
{ "time": 1.0666, "angle": 0, "curve": "stepped" },
{ "time": 1.1, "angle": 0, "curve": "stepped" },
{ "time": 1.1333, "angle": 0, "curve": "stepped" },
{ "time": 1.1666, "angle": 0, "curve": "stepped" },
{ "time": 1.2, "angle": 0, "curve": "stepped" },
{ "time": 1.2333, "angle": 0, "curve": "stepped" },
{ "time": 1.4666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 1.69, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 1.69, "y": 0 },
{ "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"bone21": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -0.77 },
{ "time": 0.4666, "angle": 11.8 },
{ "time": 0.6666, "angle": 1.52 },
{ "time": 1, "angle": 21.41 },
{ "time": 1.4666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"bone27": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 0.9333, "angle": 0, "curve": "stepped" },
{ "time": 1.3, "angle": 0, "curve": "stepped" },
{ "time": 1.4666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"bone22": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -0.87 },
{ "time": 0.6666, "angle": 9.2 },
{ "time": 1, "angle": 28.47 },
{ "time": 1.4666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"bone28": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 },
{ "time": 0.9333, "angle": -22.18 },
{ "time": 1.3, "angle": 0, "curve": "stepped" },
{ "time": 1.4666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.4666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.4666, "x": 1, "y": 1 }
]
},
"skillB02": {
"rotate": [
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.4666, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0 }
],
"translate": [
{ "time": 0.1, "x": -86.3, "y": -587.97, "curve": "stepped" },
{ "time": 0.4666, "x": -86.3, "y": -587.97 },
{ "time": 0.6666, "x": -86.3, "y": -611.09 }
],
"scale": [
{ "time": 0.1, "x": 1.777, "y": 1.777, "curve": "stepped" },
{ "time": 0.4666, "x": 1.777, "y": 1.777 },
{ "time": 0.6666, "x": 3.002, "y": 3.002 }
]
},
"skillB01": {
"rotate": [
{ "time": 0.7333, "angle": 0 }
],
"translate": [
{ "time": 0.7333, "x": -489.78, "y": -756.93 }
],
"scale": [
{ "time": 0.7333, "x": 3.903, "y": 3.903 }
]
},
"eyelight": {
"rotate": [
{ "time": 0.1, "angle": -5.11 },
{ "time": 0.6666, "angle": -1.4 },
{ "time": 0.7333, "angle": -58.88 },
{ "time": 1, "angle": -155.77 },
{ "time": 1.2333, "angle": -161.85 },
{ "time": 1.4666, "angle": 7.04 }
],
"translate": [
{ "time": 0.1, "x": 246.44, "y": -401.89 },
{ "time": 0.6666, "x": 235.06, "y": -474 },
{ "time": 0.7333, "x": 366.25, "y": -215.96 },
{ "time": 1.0666, "x": 363.08, "y": -217.23 },
{ "time": 1.2333, "x": 365.92, "y": -237.46 },
{ "time": 1.4666, "x": 383, "y": -269.84 }
],
"scale": [
{ "time": 0.1, "x": 0.329, "y": 0.394 },
{ "time": 0.6666, "x": 2.615, "y": 2.615 },
{ "time": 0.7333, "x": 11.357, "y": 2.615 },
{ "time": 1.2333, "x": -0.232, "y": 1.084 },
{ "time": 1.4666, "x": 2.615, "y": 2.615 }
]
},
"images/niujiao003": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.7333, "angle": 15.45 },
{ "time": 1.5, "angle": 0 }
],
"translate": [
{ "time": 0.7333, "x": 1.56, "y": 15.79 },
{ "time": 1.5, "x": 0, "y": 0 }
]
}
},
"deform": {
"default": {
"images/hair003": {
"images/hair003": [
{
"time": 0.9333,
"offset": 130,
"vertices": [ 10.54242, -18.20196, 10.96881, -17.94799, 9.96444, -18.52462, 14.42104, -15.3124, 8.96594, -15.33541, 6.96374, -16.34249, 7.34677, -16.1737, 6.44575, -16.55392, 10.51182, -14.31979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.57107, -22.69671, 10.10377, -22.46444, 8.85215, -22.98669, 14.50205, -19.91027 ]
}
]
}
}
},
"drawOrder": [
{
"time": 0.7,
"offsets": [
{ "slot": "images/touHair002", "offset": 3 }
]
}
],
"events": [
{ "time": 0.7333, "name": "special" }
]
}
}
}
|