hunluo.json
88.7 KB
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
{
"skeleton": { "hash": "45klYIuVF2Wq+Pdw0RQDQtoLj/Q", "spine": "3.4.02", "width": 0, "height": 0 },
"bones": [
{ "name": "root", "scaleX": 0.55, "scaleY": 0.55 },
{ "name": "linghunqiu", "parent": "root", "x": -351.87, "y": 148, "scaleX": 2, "scaleY": 2 },
{ "name": "linghunqiu2", "parent": "linghunqiu", "length": 43, "rotation": -179.47, "x": -13.97, "y": -0.36, "scaleY": -1 },
{ "name": "bone159", "parent": "linghunqiu2", "length": 9.08, "rotation": 1.96, "x": 43 },
{ "name": "bone160", "parent": "bone159", "length": 9.46, "rotation": -2.48, "x": 9.08 },
{ "name": "bone161", "parent": "bone160", "length": 7, "rotation": 2.04, "x": 9.87, "y": 0.1 },
{ "name": "bone162", "parent": "bone161", "length": 8.24, "rotation": -2.04, "x": 7 },
{ "name": "bone163", "parent": "bone162", "length": 7, "x": 8.24 },
{ "name": "bone164", "parent": "bone163", "length": 6.5, "x": 6.99 },
{ "name": "bone165", "parent": "bone164", "length": 6.29, "rotation": 6.84, "x": 6.5 },
{ "name": "bone166", "parent": "bone165", "length": 6, "rotation": -4.45, "x": 6.29 },
{ "name": "bone167", "parent": "bone166", "length": 8.26, "rotation": 1.08, "x": 6 },
{ "name": "bone168", "parent": "bone167", "length": 7, "rotation": -3.46, "x": 8.26 },
{ "name": "bone169", "parent": "bone168", "length": 7.51, "rotation": 3.81, "x": 7 },
{ "name": "bone170", "parent": "bone169", "length": 6.55, "rotation": -5.45, "x": 8.06, "y": 0.04 },
{ "name": "bone171", "parent": "bone170", "length": 6.17, "rotation": 1.63, "x": 6.55 },
{ "name": "bone172", "parent": "bone171", "length": 6.92, "x": 6.17 },
{ "name": "bone173", "parent": "bone172", "length": 6.19, "rotation": 3.46, "x": 6.92 },
{ "name": "bone174", "parent": "bone173", "length": 5.81, "rotation": 0.22, "x": 6.19 },
{ "name": "bone175", "parent": "bone174", "length": 6, "rotation": -0.11, "x": 5.81 },
{ "name": "bone176", "parent": "bone175", "length": 6.2, "rotation": 1.61, "x": 6 },
{ "name": "bone177", "parent": "bone176", "length": 5.8, "rotation": -5.19, "x": 6.2 },
{ "name": "bone178", "parent": "bone177", "length": 5.63, "rotation": 3.81, "x": 5.8 },
{ "name": "bone179", "parent": "bone178", "length": 4.49, "rotation": -6.19, "x": 5.63 },
{
"name": "linghunqiu3",
"parent": "linghunqiu",
"length": 43,
"rotation": -179.47,
"x": -132.21,
"y": 57.26,
"scaleX": -1,
"scaleY": -1
},
{ "name": "bone180", "parent": "linghunqiu3", "length": 9.08, "rotation": 1.96, "x": 43 },
{ "name": "bone181", "parent": "bone180", "length": 9.46, "rotation": -2.48, "x": 9.08 },
{ "name": "bone182", "parent": "bone181", "length": 7, "rotation": 2.04, "x": 9.87, "y": 0.1 },
{ "name": "bone183", "parent": "bone182", "length": 8.24, "rotation": -2.04, "x": 7 },
{ "name": "bone184", "parent": "bone183", "length": 7, "x": 8.24 },
{ "name": "bone185", "parent": "bone184", "length": 6.5, "x": 6.99 },
{ "name": "bone186", "parent": "bone185", "length": 6.29, "rotation": 6.84, "x": 6.5 },
{ "name": "bone187", "parent": "bone186", "length": 6, "rotation": -4.45, "x": 6.29 },
{ "name": "bone188", "parent": "bone187", "length": 8.26, "rotation": 1.08, "x": 6 },
{ "name": "bone189", "parent": "bone188", "length": 7, "rotation": -3.46, "x": 8.26 },
{ "name": "bone190", "parent": "bone189", "length": 7.51, "rotation": 3.81, "x": 7 },
{ "name": "bone191", "parent": "bone190", "length": 6.55, "rotation": -5.45, "x": 8.06, "y": 0.04 },
{ "name": "bone192", "parent": "bone191", "length": 6.17, "rotation": 1.63, "x": 6.55 },
{ "name": "bone193", "parent": "bone192", "length": 6.92, "x": 6.17 },
{ "name": "bone194", "parent": "bone193", "length": 6.19, "rotation": 3.46, "x": 6.92 },
{ "name": "bone195", "parent": "bone194", "length": 5.81, "rotation": 0.22, "x": 6.19 },
{ "name": "bone196", "parent": "bone195", "length": 6, "rotation": -0.11, "x": 5.81 },
{ "name": "bone197", "parent": "bone196", "length": 6.2, "rotation": 1.61, "x": 6 },
{ "name": "bone198", "parent": "bone197", "length": 5.8, "rotation": -5.19, "x": 6.2 },
{ "name": "bone199", "parent": "bone198", "length": 5.63, "rotation": 3.81, "x": 5.8 },
{ "name": "bone200", "parent": "bone199", "length": 4.49, "rotation": -6.19, "x": 5.63 },
{
"name": "linghunqiu4",
"parent": "linghunqiu",
"length": 43,
"rotation": -179.47,
"x": -132.21,
"y": 57.26,
"scaleX": -1,
"scaleY": -1
},
{ "name": "bone201", "parent": "linghunqiu4", "length": 9.08, "rotation": 1.96, "x": 43 },
{ "name": "bone202", "parent": "bone201", "length": 9.46, "rotation": -2.48, "x": 9.08 },
{ "name": "bone203", "parent": "bone202", "length": 7, "rotation": 2.04, "x": 9.87, "y": 0.1 },
{ "name": "bone204", "parent": "bone203", "length": 8.24, "rotation": -2.04, "x": 7 },
{ "name": "bone205", "parent": "bone204", "length": 7, "x": 8.24 },
{ "name": "bone206", "parent": "bone205", "length": 6.5, "x": 6.99 },
{ "name": "bone207", "parent": "bone206", "length": 6.29, "rotation": 6.84, "x": 6.5 },
{ "name": "bone208", "parent": "bone207", "length": 6, "rotation": -4.45, "x": 6.29 },
{ "name": "bone209", "parent": "bone208", "length": 8.26, "rotation": 1.08, "x": 6 },
{ "name": "bone210", "parent": "bone209", "length": 7, "rotation": -3.46, "x": 8.26 },
{ "name": "bone211", "parent": "bone210", "length": 7.51, "rotation": 3.81, "x": 7 },
{ "name": "bone212", "parent": "bone211", "length": 6.55, "rotation": -5.45, "x": 8.06, "y": 0.04 },
{ "name": "bone213", "parent": "bone212", "length": 6.17, "rotation": 1.63, "x": 6.55 },
{ "name": "bone214", "parent": "bone213", "length": 6.92, "x": 6.17 },
{ "name": "bone215", "parent": "bone214", "length": 6.19, "rotation": 3.46, "x": 6.92 },
{ "name": "bone216", "parent": "bone215", "length": 5.81, "rotation": 0.22, "x": 6.19 },
{ "name": "bone217", "parent": "bone216", "length": 6, "rotation": -0.11, "x": 5.81 },
{ "name": "bone218", "parent": "bone217", "length": 6.2, "rotation": 1.61, "x": 6 },
{ "name": "bone219", "parent": "bone218", "length": 5.8, "rotation": -5.19, "x": 6.2 },
{ "name": "bone220", "parent": "bone219", "length": 5.63, "rotation": 3.81, "x": 5.8 },
{ "name": "bone221", "parent": "bone220", "length": 4.49, "rotation": -6.19, "x": 5.63 },
{ "name": "linghunqiu5", "parent": "linghunqiu", "length": 43, "rotation": -179.47, "x": -329.11, "y": 106.8, "scaleX": -1 },
{ "name": "bone222", "parent": "linghunqiu5", "length": 9.08, "rotation": 1.96, "x": 43 },
{ "name": "bone223", "parent": "bone222", "length": 9.46, "rotation": -2.48, "x": 9.08 },
{ "name": "bone224", "parent": "bone223", "length": 7, "rotation": 2.04, "x": 9.87, "y": 0.1 },
{ "name": "bone225", "parent": "bone224", "length": 8.24, "rotation": -2.04, "x": 7 },
{ "name": "bone226", "parent": "bone225", "length": 7, "x": 8.24 },
{ "name": "bone227", "parent": "bone226", "length": 6.5, "x": 6.99 },
{ "name": "bone228", "parent": "bone227", "length": 6.29, "rotation": 6.84, "x": 6.5 },
{ "name": "bone229", "parent": "bone228", "length": 6, "rotation": -4.45, "x": 6.29 },
{ "name": "bone230", "parent": "bone229", "length": 8.26, "rotation": 1.08, "x": 6 },
{ "name": "bone231", "parent": "bone230", "length": 7, "rotation": -3.46, "x": 8.26 },
{ "name": "bone232", "parent": "bone231", "length": 7.51, "rotation": 3.81, "x": 7 },
{ "name": "bone233", "parent": "bone232", "length": 6.55, "rotation": -5.45, "x": 8.06, "y": 0.04 },
{ "name": "bone234", "parent": "bone233", "length": 6.17, "rotation": 1.63, "x": 6.55 },
{ "name": "bone235", "parent": "bone234", "length": 6.92, "x": 6.17 },
{ "name": "bone236", "parent": "bone235", "length": 6.19, "rotation": 3.46, "x": 6.92 },
{ "name": "bone237", "parent": "bone236", "length": 5.81, "rotation": 0.22, "x": 6.19 },
{ "name": "bone238", "parent": "bone237", "length": 6, "rotation": -0.11, "x": 5.81 },
{ "name": "bone239", "parent": "bone238", "length": 6.2, "rotation": 1.61, "x": 6 },
{ "name": "bone240", "parent": "bone239", "length": 5.8, "rotation": -5.19, "x": 6.2 },
{ "name": "bone241", "parent": "bone240", "length": 5.63, "rotation": 3.81, "x": 5.8 },
{ "name": "bone242", "parent": "bone241", "length": 4.49, "rotation": -6.19, "x": 5.63 },
{ "name": "eff/Comp 2_00", "parent": "root", "y": 742.99, "scaleX": 9.855, "scaleY": 9.855 },
{ "name": "eff/Comp 2_0", "parent": "root", "y": 742.99, "scaleX": 9.855, "scaleY": 9.855 },
{ "name": "eff/hui01", "parent": "root", "y": 174.54, "scaleX": 5.005, "scaleY": 5.005 },
{ "name": "light1", "parent": "root", "x": -276.04, "y": 561.71 },
{ "name": "linghun2", "parent": "root", "x": 369.8, "y": 290.26 },
{ "name": "linghun3", "parent": "root", "x": 0.28, "y": 755.54 },
{ "name": "linghun4", "parent": "root", "x": 0.62, "y": 804.91 }
],
"slots": [
{ "name": "linghunqiu", "bone": "linghunqiu2", "blend": "screen" },
{ "name": "linghunqiu2", "bone": "linghunqiu3", "blend": "screen" },
{ "name": "linghunqiu4", "bone": "linghunqiu5", "blend": "screen" },
{ "name": "linghunqiu3", "bone": "linghunqiu4", "blend": "screen" },
{ "name": "linghun", "bone": "linghunqiu", "attachment": "linghun" },
{ "name": "linghun2", "bone": "linghun2", "attachment": "linghun2" },
{ "name": "linghun3", "bone": "linghun3", "attachment": "linghun3" },
{ "name": "light1", "bone": "light1", "blend": "screen" },
{ "name": "eff/hui01", "bone": "eff/hui01" },
{ "name": "eff/Comp 2_00", "bone": "eff/Comp 2_00" },
{ "name": "eff/Comp 2_0", "bone": "eff/Comp 2_0" },
{ "name": "linghun4", "bone": "linghun4", "attachment": "linghun4" }
],
"path": [
{
"name": "linghun2",
"bones": [
"linghunqiu3",
"bone180",
"bone181",
"bone182",
"bone183",
"bone184",
"bone185",
"bone186",
"bone187",
"bone188",
"bone189",
"bone190",
"bone191",
"bone192",
"bone193",
"bone194",
"bone195",
"bone196",
"bone197",
"bone198",
"bone199",
"bone200"
],
"target": "linghun2",
"position": 1
},
{
"name": "linghun3",
"bones": [
"linghunqiu4",
"bone201",
"bone202",
"bone203",
"bone204",
"bone205",
"bone206",
"bone207",
"bone208",
"bone209",
"bone210",
"bone211",
"bone212",
"bone213",
"bone214",
"bone215",
"bone216",
"bone217",
"bone218",
"bone219",
"bone220",
"bone221"
],
"target": "linghun3",
"position": 1,
"spacing": -4
},
{
"name": "linghun4",
"bones": [
"linghunqiu5",
"bone222",
"bone223",
"bone224",
"bone225",
"bone226",
"bone227",
"bone228",
"bone229",
"bone230",
"bone231",
"bone232",
"bone233",
"bone234",
"bone235",
"bone236",
"bone237",
"bone238",
"bone239",
"bone240",
"bone241",
"bone242"
],
"target": "linghun4",
"position": 1
},
{
"name": "lingun",
"bones": [
"linghunqiu2",
"bone159",
"bone160",
"bone161",
"bone162",
"bone163",
"bone164",
"bone165",
"bone166",
"bone167",
"bone168",
"bone169",
"bone170",
"bone171",
"bone172",
"bone173",
"bone174",
"bone175",
"bone176",
"bone177",
"bone178",
"bone179"
],
"target": "linghun",
"position": 1,
"spacing": -16.4
}
],
"skins": {
"default": {
"eff/Comp 2_0": {
"eff/Comp 2_00": { "width": 360, "height": 150 },
"eff/Comp 2_01": { "width": 360, "height": 150 },
"eff/Comp 2_02": { "width": 360, "height": 150 },
"eff/Comp 2_03": { "width": 360, "height": 150 },
"eff/Comp 2_04": { "width": 360, "height": 150 },
"eff/Comp 2_05": { "width": 360, "height": 150 },
"eff/Comp 2_06": { "width": 360, "height": 150 },
"eff/Comp 2_07": { "width": 360, "height": 150 },
"eff/Comp 2_08": { "width": 360, "height": 150 },
"eff/Comp 2_09": { "width": 360, "height": 150 }
},
"eff/Comp 2_00": {
"eff/Comp 2_00": { "width": 360, "height": 150 },
"eff/Comp 2_01": { "width": 360, "height": 150 },
"eff/Comp 2_02": { "width": 360, "height": 150 },
"eff/Comp 2_03": { "width": 360, "height": 150 },
"eff/Comp 2_04": { "width": 360, "height": 150 },
"eff/Comp 2_05": { "width": 360, "height": 150 },
"eff/Comp 2_06": { "width": 360, "height": 150 },
"eff/Comp 2_07": { "width": 360, "height": 150 },
"eff/Comp 2_08": { "width": 360, "height": 150 },
"eff/Comp 2_09": { "width": 360, "height": 150 }
},
"eff/hui01": {
"eff/hui01": { "width": 383, "height": 76 },
"eff/hui02": { "width": 383, "height": 76 },
"eff/hui03": { "width": 383, "height": 76 },
"eff/hui04": { "width": 383, "height": 76 },
"eff/hui05": { "width": 383, "height": 76 },
"eff/hui06": { "width": 383, "height": 76 },
"eff/hui07": { "width": 383, "height": 76 }
},
"light1": {
"light1": { "width": 256, "height": 256 }
},
"linghun": {
"linghun": {
"type": "path",
"lengths": [ 309.42, 439.8, 734.24, 972.84, 1105.58, 1229.5, 1314.76, 1392.81, 1542.85, 1669.67, 1767.01, 1945.9, 2117.43, 2265.05, 2377.14, 2515.32, 2631.35, 2698.41, 2786.41, 2930.06, 2998.63, 3044.84, 3197.2, 3540.67, 3931.88 ],
"vertexCount": 75,
"vertices": [ 309.46, 73.44, 292.54, 77.97, 243.98, 91.65, 10.42, 53.65, 29.28, 11.8, 46.04, -26.91, 109.76, -46.86, 125.89, -51.83, 197.68, -70.87, 342.26, -62.87, 392.43, -54.29, 461.15, -43.53, 562.98, -13.32, 575.31, 44.53, 581.33, 71.37, 537.09, 110.39, 496.22, 127.99, 467.1, 140.28, 429.14, 155.89, 390.15, 165.6, 351.89, 175.33, 341.22, 177.84, 314.32, 181.33, 288.48, 185.34, 258.2, 186.2, 243.59, 186.2, 228.97, 186.2, 139.54, 182.69, 107.39, 179.19, 75.24, 175.68, 26.76, 169.97, -6.59, 162.23, -40.68999, 154.93, -63.94, 148.98, -92.41, 140.77, -124.82, 131.61, -241.09, 92.77, -229.11, 63.49, -216.34, 32.93, -124.47, 10.07, -88.21, 3.88, -58.17, -1.34, 5.03, -5.77, 45.46, -7.22, 77.72, -8.39999, 121.96, -10.66, 147.3, -9.2, 183.5, -7.14, 240.87, -1.56, 271.64, 7.43, 309.11, 18.20999, 355.74, 44.5, 360.8, 60.39, 366.64, 76.56, 341.89, 93.35, 321.31, 100.88, 303.78, 106.74, 265.22, 118.9, 244.18, 121.82, 222.33, 125.37, 140.68, 127.59, 113.87, 121.55, 88.91, 115.31, 68.21, 107.47, 56.52, 98.12, 44.83, 88.77, 32.48, 77.76999, 48.84, 64.42, 64.12, 51.17, 159.62, 71.08, 180.95, 92.67, 205.48, 118.22, 178.57, 330.47, 177.36, 403.51, 177.43, 423.34 ]
}
},
"linghun2": {
"linghun2": {
"type": "path",
"lengths": [ 223.94, 414.58, 486.08, 538, 601.95, 713.76, 794.66, 870.44, 1064.97, 1154.45, 1194.66, 1277.92, 1377.13, 1504.37, 1597.5, 1728.38, 1992.63, 2183.32, 2248.55, 2398.28, 2559.23, 2764.37, 2863.11, 3166.54, 3386.01, 3536.09, 3858.7, 4086.37, 4245.23, 4455.62, 4626.69, 4971.38, 5345.24 ],
"vertexCount": 99,
"vertices": [ 111.09, 156.35, 26.07, 149.64, -199.86, 133.19, -303.94, 108.3, -376.72, 92.88, -426.88, 83.3, -702.23, 31.63, -718.83, 70.86, -731.84, 97.97, -681.1, 128.21, -620.74, 137.26, -560.37, 146.32, -583.01, 144.81, -527.18, 149.34, -471.34, 153.86, -468.32, 149.34, -410.98, 149.34, -365.62, 148.04, -270.63, 140.28, -208.76, 129.72, -146.88, 119.15, -113.69, 104.06, -69.92, 82.94, -26.16, 61.81, 4.01, 10.5, -86.52, 1.45, -177.07, -7.6, -356.65, -12.13, -439.65, 1.45, -522.65, 15.03, -546.39, 14.65, -595.45, 43.7, -628.1, 63.3, -622.25, 87.46, -605.65, 104.06, -589.76, 121.54, -522.72, 136.85, -460.7, 141.86, -402.31, 146.49, -318.33, 145.29, -280.39, 144.49, -242.54, 143.72, -95.55, 130.76, -50.27, 121.7, -5, 112.65, 93.99, 76.33999, 96.6, 46.08, 99.61, 18.92, 99.91, -20.89, -75.57, -99.67, -114.05, -117.04, -401.8, -159.41, -551.2, -162.07, -698.17, -165.61, -860.25, -119.71, -891.65, -105.48, -930.73, -88.78, -849.54, -55.52, -815.24, -38.8, -781.33, -21.99, -599.67, 33.84999, -554.85, 39.61, -504.43, 46.42, -322.92, 53.88, -262.56, 50.07, -188.59, 46.58, 58.02, 19.20999, 103.56, -13.24, 135.2, -36.49, 139.85, -98.4, 30.2, -141.64, -75.43, -185.4, -429.3, -210.66, -515.65, -212.73, -601.51, -214.81, -854.74, -205.51, -914.54, -203.44, -969.36, -201.51, -1182.43, -184.97, -1182.43, -162.34, -1182.43, -139.7, -641.19, -130.63, -597.42, -130.63, -540.6, -130.63, -258.88, -131.97, -183.55, -136.46, -121.39, -139.19, 122.69, -134.06, 88.59, -185.32, 65.5, -217.99, -261.11, -255.9, -286.59, -247.92, -429.06, -201.94, -426.11, -52.7, -421.88, 5.54, -416.95, 71.96, -373.51, 553.85, -374.17, 630.38, -376.42, 680.13 ]
}
},
"linghun3": {
"linghun3": {
"type": "path",
"lengths": [ 340.06, 562.72, 648.71, 778.84, 886.65, 1069.38, 1161.87, 1220.68, 1364.36, 1516.1, 1643.33, 1740.52, 1805.99, 1886.37, 2099.49, 2220.33, 2343.1, 2491.59, 2691.61, 2912, 3121.38, 3181.81, 3239.12, 3362.9, 3460.68, 3535.38, 3632.02, 3714.22, 3913.6, 4105.02, 4188.83, 4309.06, 4605.45, 5050.54 ],
"vertexCount": 102,
"vertices": [ 438.89, -491.99, 400.59, -503.19, 285.77, -538.11, -34.56, -592.42, -209.71, -595.58, -363.82, -599.56, -596.14, -526.27, -589.82, -485.89, -583.19, -451.04, -504.13, -409.52, -469.59, -390.1, -423.5, -364.88, -314.71, -336.86, -242.15, -328, -191.25, -322.64, -129.54, -317.76, -46.44, -320.21, 36.31, -323.87, 225.48, -362.29, 277.94, -387.64, 328.84, -410.41, 391.15, -459.63, 413.73, -485.44, 436.31, -511.24, 452.33, -551.67, 441.02, -584.52, 423.83, -636.78, 255.65, -683.14, 207.32, -688.44, 146.68, -696.18, 6.45, -699.92, -67.73, -683.79, -141.92, -667.66, -248.84, -637.52, -288.03, -614.83, -335.78, -585.67, -394.4, -547.35, -416.97, -497.35, -430.17, -470.08, -389.02, -437.27, -347.47, -409.46, -314.06, -386.7, -272.28, -367.06, -214.62, -349.88, -152.72, -332.76, 51.02, -310.87, 170.41, -339.61, 246, -354.48, 335.78, -381.87, 382.6, -396.3, 424.57, -408.73, 483.47, -427.16, 594.49, -466.4, 678.2, -495.32, 816.21, -563.11, 815.01, -610.23, 812.28, -660.83, 552.03, -719.75, 475.95, -721.9, 398.59, -725.51, 150.79, -709.98, 76.15, -698.76, -18.04999, -683.25, -246.16, -622.16, -277.15, -568.29, -294.63, -537.36, -298.66, -485.25, -278.49, -463.43, -261.69, -446.03, -240.67, -429.84, -187.24, -416.11, -129.01, -401.41, -20.61, -400.1, 36.9, -402.93, 107.81, -406.36, 179.53, -407.03, 214.39, -412.11, 260.27, -416.82, 313, -422.05, 348.9, -430.51, 402.12, -443.28, 487.91, -471.55, 515.08, -486.79, 569.6, -517.91, 584.75, -561.84, 554.88, -611.97, 517.08, -671.36, 277.18, -679.2, 204.23, -675.23, 126.22, -672.32, -79.01999, -646.56, -138.16, -618.42, -215.15, -582.73, -253.22, -549.07, -236.82, -518.75, -216.67, -484.11, -143.17, -409.48, -111.12, -340.32, -84.01, -283.42, 0.49, 120.14, -0.69, 186.39, 0.78, 238.84 ]
}
},
"linghun4": {
"linghun4": {
"type": "path",
"lengths": [ 371.5, 908.54, 1086.2, 1179.48, 1386.57, 1676.78, 2025.86, 2331.23, 2437.5, 2582.89, 3166.73, 3301.78, 3489.88, 3818.95, 3980.86, 4641.64, 4780.62, 4868.68, 5188.36, 5550.67, 5677.65, 5933.22, 6348.7, 6874 ],
"vertexCount": 72,
"vertices": [ -686.91, -509.77, -627.94, -573.15, -545.62, -657.32, -358.28, -694.77, 17.48, -744.59, 238.14, -773.99, 739.7, -811.8, 991.49, -770.68, 1093.57, -753.9, 1205.67, -712.16, 1278.6, -634.3, 1321.25, -589.83, 1288.35, -526.78, 1235.82, -491.26, 1173.1, -450.95, 1069.55, -402.05, 882.46, -367.55, 721.27, -340.61, 514.78, -325.89, 356.81, -329.18, 198.85, -332.46, -142.86, -361.74, -274.5, -389.71, -406.14, -417.68, -662.83, -509.84, -796.11, -577.3, -929.39, -644.76, -916.23, -684.25, -884.96, -710.58, -871.24, -721.41, -730.39, -762.88, -628.27, -769.81, -360.06, -787.91, 255.33, -766.52, 429.75, -715.51, 604.16, -664.5, 633.78, -646.4, 645.3, -611.85, 660.67, -563.54, 457.72, -527.94, 326.08, -527.93, 194.45, -527.93, -156.03, -570.72, -267.92, -595.39, -379.81, -620.07, -578.44, -667.22, -427.53, -705.64, -309.81, -736.05, 587.71, -705.65, 768.71, -638.18, 949.71, -570.71, 949.44, -560.91, 995.78, -529.58, 1043.09, -499.24, 1020.68, -461.87, 918.44, -444.01, 814.78, -424.26, 445.17, -436.42, 337.6, -435.78, 224.68, -436.77, -213.95, -467.71, -318.93, -486.79, -407.78, -503.24, -501.57, -526.29, -541.06, -547.68, -580.55, -569.06, -215.78, -667.31, -93.24, -584.16, 60.62, -478.77, 8.08, 46.51, 4.26, 148.37, 3.9, 188.41 ]
}
},
"linghunqiu": {
"linghunqiu": {
"type": "mesh",
"uvs": [ 0.0265, 0.59925, 0.09282, 0.57159, 0.151, 0.54787, 0.20685, 0.5202, 0.26736, 0.49649, 0.32321, 0.46487, 0.38022, 0.4372, 0.44305, 0.40954, 0.49774, 0.38187, 0.55359, 0.35421, 0.61526, 0.33049, 0.68042, 0.29097, 0.72696, 0.2554, 0.75139, 0.17635, 0.78281, 0.09335, 0.81888, 0.04987, 0.8596, 0.03801, 0.90615, 0.08544, 0.94222, 0.15659, 0.96432, 0.21982, 0.97945, 0.31863, 0.97712, 0.41349, 0.98294, 0.5044, 0.98178, 0.5953, 0.9748, 0.69016, 0.9748, 0.76525, 0.96083, 0.83639, 0.94803, 0.89963, 0.93174, 0.97078, 0.88753, 0.98659, 0.8503, 0.95892, 0.81073, 0.90754, 0.78746, 0.85616, 0.75139, 0.8443, 0.70485, 0.82849, 0.65598, 0.80873, 0.61293, 0.79687, 0.56406, 0.78501, 0.50705, 0.7613, 0.44887, 0.73363, 0.38255, 0.71387, 0.33368, 0.70597, 0.28132, 0.70201, 0.22547, 0.69411, 0.16962, 0.6783, 0.09632, 0.66249, 0.21552, 0.61046, 0.1557, 0.61616, 0.27733, 0.58829, 0.32559, 0.58252, 0.38132, 0.57213, 0.43944, 0.56174, 0.49823, 0.56405, 0.556, 0.51326, 0.55974, 0.61484, 0.61888, 0.46362, 0.61853, 0.63101, 0.68175, 0.43707, 0.67223, 0.63447, 0.72321, 0.42668, 0.71607, 0.65409, 0.77996, 0.64717, 0.77147, 0.40821, 0.83434, 0.35741, 0.81463, 0.44976, 0.8306, 0.54789, 0.85643, 0.62292, 0.89211, 0.57098, 0.9142, 0.47516, 0.87172, 0.41744, 0.77452, 0.52711, 0.78438, 0.24197, 0.8221, 0.1577, 0.86526, 0.1704, 0.90503, 0.22927, 0.93425, 0.31701, 0.94615, 0.42437, 0.80915, 0.74978, 0.83923, 0.68849, 0.87482, 0.76, 0.88534, 0.86216, 0.90189, 0.78554, 0.9455, 0.75319, 0.9455, 0.5097, 0.92795, 0.5744, 0.92344, 0.61357, 0.93447, 0.64932, 0.94499, 0.62038, 0.95402, 0.64762, 0.95903, 0.61357, 0.95703, 0.54375 ],
"triangles": [ 0, 1, 45, 45, 1, 47, 47, 2, 46, 1, 2, 47, 44, 47, 46, 45, 47, 44, 46, 3, 48, 2, 3, 46, 42, 43, 46, 44, 46, 43, 48, 4, 49, 3, 4, 48, 42, 48, 49, 42, 46, 48, 49, 4, 5, 50, 49, 5, 41, 49, 50, 42, 49, 41, 50, 5, 6, 40, 50, 51, 41, 50, 40, 51, 6, 7, 52, 51, 7, 51, 50, 6, 39, 51, 52, 40, 51, 39, 53, 52, 7, 39, 52, 54, 55, 8, 9, 53, 8, 55, 7, 8, 53, 56, 54, 53, 52, 53, 54, 38, 39, 54, 37, 54, 56, 38, 54, 37, 55, 56, 53, 36, 37, 56, 9, 10, 55, 56, 55, 58, 58, 36, 56, 57, 10, 11, 59, 57, 11, 55, 10, 57, 58, 57, 60, 55, 57, 58, 35, 36, 58, 60, 35, 58, 60, 57, 59, 34, 35, 60, 17, 72, 15, 17, 15, 16, 73, 72, 17, 14, 15, 72, 18, 73, 17, 13, 14, 72, 74, 73, 18, 74, 18, 19, 71, 13, 72, 12, 13, 71, 75, 74, 19, 75, 19, 20, 71, 73, 74, 73, 71, 72, 63, 74, 75, 63, 71, 74, 63, 62, 12, 63, 12, 71, 11, 12, 62, 21, 75, 20, 69, 63, 75, 76, 69, 75, 64, 62, 63, 21, 76, 75, 59, 11, 62, 69, 64, 63, 68, 69, 76, 76, 21, 22, 83, 68, 76, 22, 83, 76, 62, 70, 59, 64, 70, 62, 90, 83, 22, 68, 65, 64, 68, 64, 69, 70, 64, 65, 67, 65, 68, 67, 68, 83, 84, 67, 83, 90, 84, 83, 23, 90, 22, 89, 84, 90, 85, 67, 84, 84, 87, 85, 90, 23, 89, 89, 87, 84, 66, 65, 67, 66, 67, 85, 61, 70, 65, 61, 65, 66, 60, 59, 70, 88, 87, 89, 86, 85, 87, 86, 87, 88, 61, 60, 70, 78, 61, 66, 23, 88, 89, 24, 88, 23, 77, 61, 78, 24, 82, 86, 24, 86, 88, 66, 86, 78, 86, 66, 85, 79, 86, 82, 79, 78, 86, 77, 78, 79, 82, 24, 25, 81, 79, 82, 26, 82, 25, 81, 82, 26, 60, 77, 34, 77, 60, 61, 33, 34, 77, 32, 33, 77, 80, 79, 81, 80, 81, 26, 27, 80, 26, 32, 79, 80, 79, 32, 77, 31, 32, 80, 30, 31, 80, 30, 80, 27, 28, 30, 27, 29, 30, 28 ],
"vertices": [ 4, 17, 45.93, -1.69, 0, 20, 27.85, -2.56, 0.00104, 22, 15.91, -1.65, 0.11872, 23, 10.39999, -0.52999, 0.88022, 3, 20, 17.86, -2.4, 0.00229, 22, 5.92, -1.74, 0.55387, 23, 0.48, -1.69, 0.44381, 6, 15, 40.63, -0.4, 0, 17, 27.45, -2.06, 0, 18, 21.25, -2.15, 4.0E-5, 20, 9.35999, -2.38, 0.01393, 21, 3.36, -2.08999, 0.84518, 22, -2.57, -1.92, 0.14083, 6, 15, 24.44, -4.38, 4.0E-5, 17, 11.05, -5.06, 0.01548, 18, 4.84, -5.08, 0.64601, 19, -0.96, -5.08, 0.33812, 21, -12.81, -6.07, 1.8E-4, 22, -18.98, -4.82, 1.5E-4, 6, 15, 11.5, -5.88, 0.12332, 16, 5.32, -5.88, 0.62303, 17, -1.96, -5.77, 0.24964, 19, -13.98, -5.77, 0.00397, 21, -25.76, -7.56, 1.0E-5, 22, -32, -5.45, 0, 6, 13, 13.61, -8.39999, 0.06443, 14, 6.33, -7.88, 0.56983, 15, -0.45, -7.87, 0.24558, 16, -6.63, -7.87, 0.12014, 21, -37.71, -9.56, 0, 22, -44.06, -6.64, 0, 5, 11, 16.62999, -9.74, 0.03108, 12, 8.93999, -9.22, 0.34209, 13, 1.32, -9.32, 0.50313, 14, -5.81, -9.97, 0.12326, 16, -18.83, -9.60999, 4.0E-4, 5, 9, 14.75, -11.3, 0.03241, 10, 9.31, -10.61, 0.32695, 11, 3.11, -10.67, 0.4908, 12, -4.5, -10.96, 0.14719, 13, -12.2, -10.17, 0.00261, 7, 6, 26.04, -11.2, 3.3E-4, 7, 17.79, -11.2, 0.05787, 8, 10.79, -11.2, 0.22091, 9, 2.93, -11.63, 0.47004, 10, -2.44, -11.86, 0.21832, 11, -8.67, -11.7, 0.03142, 12, -16.2, -12.7, 0.00107, 6, 5, 20.62, -13.44, 0.05754, 6, 14.09, -12.94, 0.14407, 7, 5.84, -12.94, 0.29927, 8, -1.15, -12.94, 0.46296, 9, -9.14, -11.94, 0.03137, 10, -14.46, -13.1, 0.00476, 6, 3, 26.22, -14.84, 0.02835, 4, 17.76, -14.08, 0.13105, 5, 7.38, -14.46, 0.35837, 6, 0.89, -14.44, 0.29334, 7, -7.35, -14.44, 0.15175, 8, -14.35, -14.44, 0.03712, 7, 2, 55.75, -16.29, 0.05803, 3, 12.18, -16.71999, 0.33021, 4, 3.82, -16.57, 0.42049, 5, -6.63, -16.45, 0.1562, 6, -13.04, -16.93, 0.03282, 7, -21.29, -16.93, 0.00221, 9, -36.56, -12.66, 0, 5, 2, 45.77, -18.44, 0.43277, 3, 2.13, -18.53, 0.39469, 4, -6.13, -18.81, 0.15888, 5, -16.67, -18.34, 0.01363, 9, -46.72, -13.7, 0, 5, 2, 40.5, -23.38, 0.71994, 3, -3.3, -23.28, 0.2335, 4, -11.36, -23.79, 0.04638, 5, -22.07, -23.13, 1.5E-4, 9, -52.5, -18.02, 0, 4, 2, 33.73, -28.54, 0.86477, 3, -10.24, -28.21, 0.12554, 4, -18.08, -29.02, 0.00966, 9, -59.8, -22.41, 0, 3, 2, 25.98, -31.21, 0.93553, 3, -18.07, -30.61, 0.06369, 4, -25.8, -31.76, 7.6E-4, 3, 2, 17.26, -31.88, 0.97323, 3, -26.81, -30.98, 0.02676, 5, -45.52, -31.01, 0, 3, 2, 7.33, -28.8, 0.99455, 3, -36.63, -27.56, 0.00544, 5, -55.37, -27.67, 0, 3, 2, -0.34, -24.25, 0.99986, 3, -44.15, -22.75, 1.3E-4, 5, -62.92, -22.91, 0, 2, 2, -5.03, -20.21999, 1, 5, -67.51, -18.76, 0, 2, 2, -8.21, -13.96, 1, 5, -70.51999, -12.43, 0, 1, 2, -7.66, -7.99, 1, 3, 2, -8.85, -2.25, 0.99999, 4, -60.91, -3.13, 0, 5, -70.85, -0.7, 0, 4, 2, -8.55, 3.46, 0.99999, 4, -60.66, 2.58999, 0, 5, -70.4, 5, 0, 9, -98.31, 14.05, 0, 3, 2, -7, 9.42, 0.99999, 4, -59.17, 8.57, 0, 5, -68.69, 10.92, 0, 3, 2, -6.96, 14.15, 0.99998, 4, -59.17, 13.3, 0, 5, -68.51999, 15.65, 0, 3, 2, -3.93, 18.61, 0.99998, 4, -56.18, 17.78, 1.0E-5, 5, -65.37999, 20.02, 0, 4, 2, -1.15, 22.57, 0.99997, 4, -53.44, 21.76, 1.0E-5, 5, -62.5, 23.9, 1.0E-5, 9, -88.85, 32.22, 0, 4, 2, 2.35999, 27.02, 0.99997, 4, -49.95, 26.25, 1.0E-5, 5, -58.85, 28.26, 1.0E-5, 9, -84.86, 36.25999, 0, 5, 2, 11.83, 27.92, 0.99919, 3, -30.19, 28.98, 7.7E-4, 4, -40.49, 27.24, 1.0E-5, 5, -49.36, 28.92, 1.0E-5, 9, -75.35, 36.12, 0, 4, 2, 19.79, 26.11, 0.98606, 3, -22.3, 26.89, 0.01391, 5, -41.46, 26.89, 1.0E-5, 9, -67.64, 33.43999, 0, 4, 2, 28.22, 22.79, 0.93395, 3, -13.99, 23.29, 0.06572, 4, -24.06, 22.26, 3.2E-4, 9, -59.62, 29.22, 0, 5, 2, 33.16999, 19.51, 0.83752, 3, -9.14999, 19.84, 0.15539, 4, -19.08, 19.03, 0.00626, 5, -28.26, 19.94, 8.0E-4, 9, -55.06, 25.41, 0, 5, 2, 40.88, 18.69, 0.56436, 3, -1.47, 18.76, 0.35705, 4, -11.36, 18.28, 0.06184, 5, -20.57, 18.92, 0.01672, 9, -47.49, 23.75, 0, 6, 2, 50.83, 17.61, 0.19432, 3, 8.43, 17.33, 0.43474, 4, -1.4, 17.28, 0.2512, 5, -10.65, 17.57, 0.11049, 6, -18.27, 16.93, 0.00922, 9, -37.72, 21.57, 0, 7, 2, 61.28, 16.27, 0.02168, 3, 18.82, 15.63, 0.14806, 4, 9.05, 16.04, 0.34195, 5, -0.24, 15.95, 0.34658, 6, -7.81, 15.68, 0.12667, 7, -16.06, 15.68, 0.01445, 8, -23.06, 15.68, 5.6E-4, 7, 3, 27.99, 14.48, 0.01345, 4, 18.26, 15.29, 0.12084, 5, 8.93, 14.87, 0.28262, 6, 1.39, 14.93, 0.40269, 7, -6.85, 14.93, 0.12974, 8, -13.85, 14.93, 0.04724, 9, -18.42, 17.25, 0.00339, 7, 4, 28.72, 14.54, 0.00674, 5, 19.35, 13.75, 0.03006, 6, 11.85, 14.19, 0.28706, 7, 3.6, 14.19, 0.28549, 8, -3.39, 14.19, 0.28354, 9, -8.13, 15.26, 0.10678, 10, -15.57, 14.1, 2.8E-4, 6, 6, 24.05, 12.69, 0.02644, 7, 15.8, 12.69, 0.03932, 8, 8.8, 12.69, 0.22105, 9, 3.8, 12.33, 0.51261, 10, -3.44, 12.1, 0.15988, 11, -9.21, 12.27, 0.04066, 5, 9, 15.95, 9.10999, 0.02927, 10, 8.92, 9.84, 0.47413, 11, 3.1, 9.78, 0.37931, 12, -5.74, 9.45, 0.1146, 13, -12.08, 10.28, 0.00266, 4, 11, 17.19, 7.68, 0.01089, 12, 8.43999, 8.2, 0.38432, 13, 1.99, 8.09, 0.55728, 14, -6.81, 7.43, 0.04749, 4, 13, 12.39, 6.9, 0.13105, 14, 3.65, 7.23, 0.65638, 15, -2.69, 7.31, 0.20619, 16, -8.87, 7.31, 0.00636, 4, 14, 14.86, 7.3, 0.07413, 15, 8.51, 7.06, 0.12108, 16, 2.33, 7.06, 0.70012, 17, -4.16, 7.33, 0.10465, 5, 14, 26.82, 7.14, 0.00141, 16, 14.28, 6.56, 0.03235, 17, 7.73, 6.1, 0.24177, 18, 1.57, 6.1, 0.67532, 19, -4.25, 6.09, 0.04911, 3, 18, 13.43, 4.34, 0.00892, 19, 7.6, 4.35, 0.11137, 20, 1.72, 4.3, 0.87969, 2, 22, 5.21, 2.54, 0.74768, 23, -0.69, 2.48, 0.25231, 1, 18, 3.35, 0.7, 1, 2, 20, 5.38, 0.64, 0.5, 21, -0.87, 0.57, 0.5, 1, 16, 3.18, -0.09, 1, 2, 14, 5.61, -0.49, 0.5, 15, -0.96, -0.46, 0.5, 2, 12, 8.71, -0.72, 0.5, 13, 1.65, -0.83, 0.5, 1, 11, 4.46, -1.14, 1, 1, 9, 4.19, -0.23, 1, 5, 5, 20.45999, -3.41, 0.01399, 6, 13.57, -2.92, 0.05026, 7, 5.32, -2.92, 0.79595, 8, -1.67, -2.92, 0.13909, 10, -14.56, -3.07, 6.9E-4, 1, 7, 4.52, 3.47, 1, 6, 3, 25.81, -6.43, 0.01013, 4, 16.99, -5.69, 0.04436, 5, 6.91, -6.05, 0.42624, 6, 0.12, -6.05, 0.39269, 7, -8.12, -6.05, 0.10091, 8, -15.12, -6.05, 0.02565, 4, 4, 17.06, 4.84, 0.02808, 5, 7.36, 4.46999, 0.3809, 6, 0.19, 4.48, 0.57042, 7, -8.05, 4.48, 0.02057, 4, 3, 12.29, -7.51, 0.24413, 4, 3.53, -7.37, 0.69704, 5, -6.59, -7.24, 0.05255, 6, -13.33, -7.72, 0.00626, 4, 2, 57.7, 5.32, 0.00356, 3, 14.87, 4.81, 0.03469, 4, 5.57, 5.06, 0.62449, 5, -4.11, 5.1, 0.33723, 6, 2, 46.67, -7.66, 0.29038, 3, 3.4, -7.78, 0.49696, 4, -5.33, -8.02, 0.19532, 5, -15.48, -7.58, 0.01718, 6, -22.2, -8.38, 1.3E-4, 9, -44.63, -3.08, 0, 5, 2, 48.33, 6.64, 0.20569, 3, 5.55, 6.45, 0.55901, 4, -3.8, 6.3, 0.19217, 5, -13.44, 6.67, 0.04311, 9, -41.41, 10.95, 0, 4, 2, 34.66, 6.33, 0.84501, 3, -8.12, 6.61, 0.15431, 4, -17.46999, 5.86, 6.7E-4, 9, -55.04, 12.15, 0, 3, 2, 36.34, -8.72999, 0.7356, 3, -6.96, -8.5, 0.24263, 4, -15.66, -9.18999, 0.02176, 3, 2, 22.85, -11.81, 0.98367, 3, -20.54, -11.11, 0.01632, 5, -39.4, -11.09, 0, 3, 2, 27.12, -6.03, 0.96988, 3, -16.07, -5.48, 0.02998, 4, -24.89, -6.57, 1.3E-4, 2, 2, 23.76, 0.18, 1, 9, -66.54, 7.23, 0, 4, 2, 18.28, 4.94999, 0.99999, 4, -33.84, 4.33, 0, 5, -43.53, 5.78, 0, 9, -71.47, 12.58, 0, 1, 2, 10.61, 1.75, 1, 1, 2, 5.83, -4.23, 1, 2, 2, 14.89, -7.95, 0.99736, 3, -28.37, -6.98, 0.00263, 1, 2, 35.75, -1.23, 1, 4, 2, 33.48, -19.18, 0.84395, 3, -10.17, -18.84, 0.14088, 4, -18.42, -19.66, 0.01515, 9, -59.02, -13.08, 0, 3, 2, 25.36, -24.41, 0.90735, 3, -18.46999, -23.79, 0.08825, 4, -26.49, -24.97, 0.00439, 3, 2, 16.12999, -23.53, 0.98092, 3, -27.66, -22.59, 0.01907, 5, -46.44, -22.63, 0, 3, 2, 7.65, -19.74, 0.99656, 3, -36, -18.52, 0.00343, 5, -54.81, -18.62, 0, 2, 2, 1.45, -14.16, 1, 5, -60.86, -12.87, 0, 1, 2, -1.02, -7.37, 1, 3, 2, 28.47, 12.85, 0.94822, 3, -14.08, 13.34, 0.05177, 9, -60.47, 19.31, 0, 3, 2, 22, 9.05, 0.97805, 3, -20.68, 9.76, 0.02194, 9, -67.32, 16.24, 0, 5, 2, 14.42, 13.63, 0.99625, 3, -28.09, 14.6, 0.00374, 4, -37.77, 12.97, 0, 5, -47.15, 14.55, 0, 9, -74.35, 21.62, 0, 5, 2, 12.23, 20.08, 0.99617, 3, -30.06, 21.12, 0.0038, 4, -40.02, 19.4, 1.0E-5, 5, -49.17, 21.07, 1.0E-5, 9, -75.82, 28.28, 0, 5, 2, 8.64999, 15.29, 0.99959, 3, -33.81, 16.45999, 3.8E-4, 4, -43.57, 14.58, 0, 5, -52.88, 16.37, 0, 9, -79.9, 23.91, 0, 3, 2, -0.7, 13.33, 0.99998, 4, -52.9, 12.54, 0, 5, -62.28, 14.66, 0, 1, 2, -0.84, -1.99, 1, 1, 2, 2.95, 2.04, 1, 4, 2, 3.93, 4.5, 0.99999, 4, -48.18, 3.74, 0, 5, -57.88, 5.7, 0, 9, -85.78, 13.7, 0, 4, 2, 1.59, 6.77, 0.99999, 4, -50.54, 6, 0, 5, -60.16, 8.04, 0, 9, -87.85, 16.21999, 0, 3, 2, -0.66, 4.96999, 0.99999, 4, -52.79, 4.17, 0, 5, -62.48, 6.3, 0, 3, 2, -2.58, 6.7, 0.99999, 4, -54.72, 5.89, 0, 5, -64.33999, 8.08, 0, 3, 2, -3.67, 4.57, 0.99999, 4, -55.79, 3.74, 0, 5, -65.49, 5.98, 0, 4, 2, -3.28, 0.16, 0.99999, 4, -55.36, -0.64999, 0, 5, -65.22, 1.57, 0, 9, -93.44, 10.18999, 0 ],
"hull": 46
}
},
"linghunqiu2": {
"linghunqiu": {
"type": "mesh",
"uvs": [ 0.0265, 0.59925, 0.09282, 0.57159, 0.151, 0.54787, 0.20685, 0.5202, 0.26736, 0.49649, 0.32321, 0.46487, 0.38022, 0.4372, 0.44305, 0.40954, 0.49774, 0.38187, 0.55359, 0.35421, 0.61526, 0.33049, 0.68042, 0.29097, 0.72696, 0.2554, 0.75139, 0.17635, 0.78281, 0.09335, 0.81888, 0.04987, 0.8596, 0.03801, 0.90615, 0.08544, 0.94222, 0.15659, 0.96432, 0.21982, 0.97945, 0.31863, 0.97712, 0.41349, 0.98294, 0.5044, 0.98178, 0.5953, 0.9748, 0.69016, 0.9748, 0.76525, 0.96083, 0.83639, 0.94803, 0.89963, 0.93174, 0.97078, 0.88753, 0.98659, 0.8503, 0.95892, 0.81073, 0.90754, 0.78746, 0.85616, 0.75139, 0.8443, 0.70485, 0.82849, 0.65598, 0.80873, 0.61293, 0.79687, 0.56406, 0.78501, 0.50705, 0.7613, 0.44887, 0.73363, 0.38255, 0.71387, 0.33368, 0.70597, 0.28132, 0.70201, 0.22547, 0.69411, 0.16962, 0.6783, 0.09632, 0.66249, 0.21552, 0.61046, 0.1557, 0.61616, 0.27733, 0.58829, 0.32559, 0.58252, 0.38132, 0.57213, 0.43944, 0.56174, 0.49823, 0.56405, 0.556, 0.51326, 0.55974, 0.61484, 0.61888, 0.46362, 0.61853, 0.63101, 0.68175, 0.43707, 0.67223, 0.63447, 0.72321, 0.42668, 0.71607, 0.65409, 0.77996, 0.64717, 0.77147, 0.40821, 0.83434, 0.35741, 0.81463, 0.44976, 0.8306, 0.54789, 0.85643, 0.62292, 0.89211, 0.57098, 0.9142, 0.47516, 0.87172, 0.41744, 0.77452, 0.52711, 0.78438, 0.24197, 0.8221, 0.1577, 0.86526, 0.1704, 0.90503, 0.22927, 0.93425, 0.31701, 0.94615, 0.42437, 0.80915, 0.74978, 0.83923, 0.68849, 0.87482, 0.76, 0.88534, 0.86216, 0.90189, 0.78554, 0.9455, 0.75319, 0.9455, 0.5097, 0.92795, 0.5744, 0.92344, 0.61357, 0.93447, 0.64932, 0.94499, 0.62038, 0.95402, 0.64762, 0.95903, 0.61357, 0.95703, 0.54375 ],
"triangles": [ 0, 1, 45, 45, 1, 47, 47, 2, 46, 1, 2, 47, 44, 47, 46, 45, 47, 44, 46, 3, 48, 2, 3, 46, 42, 43, 46, 44, 46, 43, 48, 4, 49, 3, 4, 48, 42, 48, 49, 42, 46, 48, 49, 4, 5, 50, 49, 5, 41, 49, 50, 42, 49, 41, 50, 5, 6, 40, 50, 51, 41, 50, 40, 51, 6, 7, 52, 51, 7, 51, 50, 6, 39, 51, 52, 40, 51, 39, 53, 52, 7, 39, 52, 54, 55, 8, 9, 53, 8, 55, 7, 8, 53, 56, 54, 53, 52, 53, 54, 38, 39, 54, 37, 54, 56, 38, 54, 37, 55, 56, 53, 36, 37, 56, 9, 10, 55, 56, 55, 58, 58, 36, 56, 57, 10, 11, 59, 57, 11, 55, 10, 57, 58, 57, 60, 55, 57, 58, 35, 36, 58, 60, 35, 58, 60, 57, 59, 34, 35, 60, 17, 72, 15, 17, 15, 16, 73, 72, 17, 14, 15, 72, 18, 73, 17, 13, 14, 72, 74, 73, 18, 74, 18, 19, 71, 13, 72, 12, 13, 71, 75, 74, 19, 75, 19, 20, 71, 73, 74, 73, 71, 72, 63, 74, 75, 63, 71, 74, 63, 62, 12, 63, 12, 71, 11, 12, 62, 21, 75, 20, 69, 63, 75, 76, 69, 75, 64, 62, 63, 21, 76, 75, 59, 11, 62, 69, 64, 63, 68, 69, 76, 76, 21, 22, 83, 68, 76, 22, 83, 76, 62, 70, 59, 64, 70, 62, 90, 83, 22, 68, 65, 64, 68, 64, 69, 70, 64, 65, 67, 65, 68, 67, 68, 83, 84, 67, 83, 90, 84, 83, 23, 90, 22, 89, 84, 90, 85, 67, 84, 84, 87, 85, 90, 23, 89, 89, 87, 84, 66, 65, 67, 66, 67, 85, 61, 70, 65, 61, 65, 66, 60, 59, 70, 88, 87, 89, 86, 85, 87, 86, 87, 88, 61, 60, 70, 78, 61, 66, 23, 88, 89, 24, 88, 23, 77, 61, 78, 24, 82, 86, 24, 86, 88, 66, 86, 78, 86, 66, 85, 79, 86, 82, 79, 78, 86, 77, 78, 79, 82, 24, 25, 81, 79, 82, 26, 82, 25, 81, 82, 26, 60, 77, 34, 77, 60, 61, 33, 34, 77, 32, 33, 77, 80, 79, 81, 80, 81, 26, 27, 80, 26, 32, 79, 80, 79, 32, 77, 31, 32, 80, 30, 31, 80, 30, 80, 27, 28, 30, 27, 29, 30, 28 ],
"vertices": [ 4, 39, 45.93, -1.69, 0, 42, 27.85, -2.56, 0.00104, 44, 15.91, -1.65, 0.11872, 45, 10.39999, -0.52999, 0.88022, 3, 42, 17.86, -2.4, 0.00229, 44, 5.92, -1.74, 0.55387, 45, 0.48, -1.69, 0.44381, 6, 37, 40.63, -0.4, 0, 39, 27.45, -2.06, 0, 40, 21.25, -2.15, 4.0E-5, 42, 9.35999, -2.38, 0.01393, 43, 3.36, -2.08999, 0.84518, 44, -2.57, -1.92, 0.14083, 6, 37, 24.44, -4.38, 4.0E-5, 39, 11.05, -5.06, 0.01548, 40, 4.84, -5.08, 0.64601, 41, -0.96, -5.08, 0.33812, 43, -12.81, -6.07, 1.8E-4, 44, -18.98, -4.82, 1.5E-4, 6, 37, 11.5, -5.88, 0.12332, 38, 5.32, -5.88, 0.62303, 39, -1.96, -5.77, 0.24964, 41, -13.98, -5.77, 0.00397, 43, -25.76, -7.56, 1.0E-5, 44, -32, -5.45, 0, 6, 35, 13.61, -8.39999, 0.06443, 36, 6.33, -7.88, 0.56983, 37, -0.45, -7.87, 0.24558, 38, -6.63, -7.87, 0.12014, 43, -37.71, -9.56, 0, 44, -44.06, -6.64, 0, 5, 33, 16.62999, -9.74, 0.03108, 34, 8.93999, -9.22, 0.34209, 35, 1.32, -9.32, 0.50313, 36, -5.81, -9.97, 0.12326, 38, -18.83, -9.60999, 4.0E-4, 5, 31, 14.75, -11.3, 0.03241, 32, 9.31, -10.61, 0.32695, 33, 3.11, -10.67, 0.4908, 34, -4.5, -10.96, 0.14719, 35, -12.2, -10.17, 0.00261, 7, 28, 26.04, -11.2, 3.3E-4, 29, 17.79, -11.2, 0.05787, 30, 10.79, -11.2, 0.22091, 31, 2.93, -11.63, 0.47004, 32, -2.44, -11.86, 0.21832, 33, -8.67, -11.7, 0.03142, 34, -16.2, -12.7, 0.00107, 6, 27, 20.62, -13.44, 0.05754, 28, 14.09, -12.94, 0.14407, 29, 5.84, -12.94, 0.29927, 30, -1.15, -12.94, 0.46296, 31, -9.14, -11.94, 0.03137, 32, -14.46, -13.1, 0.00476, 6, 25, 26.22, -14.84, 0.02835, 26, 17.76, -14.08, 0.13105, 27, 7.38, -14.46, 0.35837, 28, 0.89, -14.44, 0.29334, 29, -7.35, -14.44, 0.15175, 30, -14.35, -14.44, 0.03712, 7, 24, 55.75, -16.29, 0.05803, 25, 12.18, -16.71999, 0.33021, 26, 3.82, -16.57, 0.42049, 27, -6.63, -16.45, 0.1562, 28, -13.04, -16.93, 0.03282, 29, -21.29, -16.93, 0.00221, 31, -36.56, -12.66, 0, 5, 24, 45.77, -18.44, 0.43277, 25, 2.13, -18.53, 0.39469, 26, -6.13, -18.81, 0.15888, 27, -16.67, -18.34, 0.01363, 31, -46.72, -13.7, 0, 5, 24, 40.5, -23.38, 0.71994, 25, -3.3, -23.28, 0.2335, 26, -11.36, -23.79, 0.04638, 27, -22.07, -23.13, 1.5E-4, 31, -52.5, -18.02, 0, 4, 24, 33.73, -28.54, 0.86477, 25, -10.24, -28.21, 0.12554, 26, -18.08, -29.02, 0.00966, 31, -59.8, -22.41, 0, 3, 24, 25.98, -31.21, 0.93553, 25, -18.07, -30.61, 0.06369, 26, -25.8, -31.76, 7.6E-4, 3, 24, 17.26, -31.88, 0.97323, 25, -26.81, -30.98, 0.02676, 27, -45.52, -31.01, 0, 3, 24, 7.33, -28.8, 0.99455, 25, -36.63, -27.56, 0.00544, 27, -55.37, -27.67, 0, 3, 24, -0.34, -24.25, 0.99986, 25, -44.15, -22.75, 1.3E-4, 27, -62.92, -22.91, 0, 2, 24, -5.03, -20.21999, 1, 27, -67.51, -18.76, 0, 2, 24, -8.21, -13.96, 1, 27, -70.51999, -12.43, 0, 1, 24, -7.66, -7.99, 1, 3, 24, -8.85, -2.25, 0.99999, 26, -60.91, -3.13, 0, 27, -70.85, -0.7, 0, 4, 24, -8.55, 3.46, 0.99999, 26, -60.66, 2.58999, 0, 27, -70.4, 5, 0, 31, -98.31, 14.05, 0, 3, 24, -7, 9.42, 0.99999, 26, -59.17, 8.57, 0, 27, -68.69, 10.92, 0, 3, 24, -6.96, 14.15, 0.99998, 26, -59.17, 13.3, 0, 27, -68.51999, 15.65, 0, 3, 24, -3.93, 18.61, 0.99998, 26, -56.18, 17.78, 1.0E-5, 27, -65.37999, 20.02, 0, 4, 24, -1.15, 22.57, 0.99997, 26, -53.44, 21.76, 1.0E-5, 27, -62.5, 23.9, 1.0E-5, 31, -88.85, 32.22, 0, 4, 24, 2.35999, 27.02, 0.99997, 26, -49.95, 26.25, 1.0E-5, 27, -58.85, 28.26, 1.0E-5, 31, -84.86, 36.25999, 0, 5, 24, 11.83, 27.92, 0.99919, 25, -30.19, 28.98, 7.7E-4, 26, -40.49, 27.24, 1.0E-5, 27, -49.36, 28.92, 1.0E-5, 31, -75.35, 36.12, 0, 4, 24, 19.79, 26.11, 0.98606, 25, -22.3, 26.89, 0.01391, 27, -41.46, 26.89, 1.0E-5, 31, -67.64, 33.43999, 0, 4, 24, 28.22, 22.79, 0.93395, 25, -13.99, 23.29, 0.06572, 26, -24.06, 22.26, 3.2E-4, 31, -59.62, 29.22, 0, 5, 24, 33.16999, 19.51, 0.83752, 25, -9.14999, 19.84, 0.15539, 26, -19.08, 19.03, 0.00626, 27, -28.26, 19.94, 8.0E-4, 31, -55.06, 25.41, 0, 5, 24, 40.88, 18.69, 0.56436, 25, -1.47, 18.76, 0.35705, 26, -11.36, 18.28, 0.06184, 27, -20.57, 18.92, 0.01672, 31, -47.49, 23.75, 0, 6, 24, 50.83, 17.61, 0.19432, 25, 8.43, 17.33, 0.43474, 26, -1.4, 17.28, 0.2512, 27, -10.65, 17.57, 0.11049, 28, -18.27, 16.93, 0.00922, 31, -37.72, 21.57, 0, 7, 24, 61.28, 16.27, 0.02168, 25, 18.82, 15.63, 0.14806, 26, 9.05, 16.04, 0.34195, 27, -0.24, 15.95, 0.34658, 28, -7.81, 15.68, 0.12667, 29, -16.06, 15.68, 0.01445, 30, -23.06, 15.68, 5.6E-4, 7, 25, 27.99, 14.48, 0.01345, 26, 18.26, 15.29, 0.12084, 27, 8.93, 14.87, 0.28262, 28, 1.39, 14.93, 0.40269, 29, -6.85, 14.93, 0.12974, 30, -13.85, 14.93, 0.04724, 31, -18.42, 17.25, 0.00339, 7, 26, 28.72, 14.54, 0.00674, 27, 19.35, 13.75, 0.03006, 28, 11.85, 14.19, 0.28706, 29, 3.6, 14.19, 0.28549, 30, -3.39, 14.19, 0.28354, 31, -8.13, 15.26, 0.10678, 32, -15.57, 14.1, 2.8E-4, 6, 28, 24.05, 12.69, 0.02644, 29, 15.8, 12.69, 0.03932, 30, 8.8, 12.69, 0.22105, 31, 3.8, 12.33, 0.51261, 32, -3.44, 12.1, 0.15988, 33, -9.21, 12.27, 0.04066, 5, 31, 15.95, 9.10999, 0.02927, 32, 8.92, 9.84, 0.47413, 33, 3.1, 9.78, 0.37931, 34, -5.74, 9.45, 0.1146, 35, -12.08, 10.28, 0.00266, 4, 33, 17.19, 7.68, 0.01089, 34, 8.43999, 8.2, 0.38432, 35, 1.99, 8.09, 0.55728, 36, -6.81, 7.43, 0.04749, 4, 35, 12.39, 6.9, 0.13105, 36, 3.65, 7.23, 0.65638, 37, -2.69, 7.31, 0.20619, 38, -8.87, 7.31, 0.00636, 4, 36, 14.86, 7.3, 0.07413, 37, 8.51, 7.06, 0.12108, 38, 2.33, 7.06, 0.70012, 39, -4.16, 7.33, 0.10465, 5, 36, 26.82, 7.14, 0.00141, 38, 14.28, 6.56, 0.03235, 39, 7.73, 6.1, 0.24177, 40, 1.57, 6.1, 0.67532, 41, -4.25, 6.09, 0.04911, 3, 40, 13.43, 4.34, 0.00892, 41, 7.6, 4.35, 0.11137, 42, 1.72, 4.3, 0.87969, 2, 44, 5.21, 2.54, 0.74768, 45, -0.69, 2.48, 0.25231, 1, 40, 3.35, 0.7, 1, 2, 42, 5.38, 0.64, 0.5, 43, -0.87, 0.57, 0.5, 1, 38, 3.18, -0.09, 1, 2, 36, 5.61, -0.49, 0.5, 37, -0.96, -0.46, 0.5, 2, 34, 8.71, -0.72, 0.5, 35, 1.65, -0.83, 0.5, 1, 33, 4.46, -1.14, 1, 1, 31, 4.19, -0.23, 1, 5, 27, 20.45999, -3.41, 0.01399, 28, 13.57, -2.92, 0.05026, 29, 5.32, -2.92, 0.79595, 30, -1.67, -2.92, 0.13909, 32, -14.56, -3.07, 6.9E-4, 1, 29, 4.52, 3.47, 1, 6, 25, 25.81, -6.43, 0.01013, 26, 16.99, -5.69, 0.04436, 27, 6.91, -6.05, 0.42624, 28, 0.12, -6.05, 0.39269, 29, -8.12, -6.05, 0.10091, 30, -15.12, -6.05, 0.02565, 4, 26, 17.06, 4.84, 0.02808, 27, 7.36, 4.46999, 0.3809, 28, 0.19, 4.48, 0.57042, 29, -8.05, 4.48, 0.02057, 4, 25, 12.29, -7.51, 0.24413, 26, 3.53, -7.37, 0.69704, 27, -6.59, -7.24, 0.05255, 28, -13.33, -7.72, 0.00626, 4, 24, 57.7, 5.32, 0.00356, 25, 14.87, 4.81, 0.03469, 26, 5.57, 5.06, 0.62449, 27, -4.11, 5.1, 0.33723, 6, 24, 46.67, -7.66, 0.29038, 25, 3.4, -7.78, 0.49696, 26, -5.33, -8.02, 0.19532, 27, -15.48, -7.58, 0.01718, 28, -22.2, -8.38, 1.3E-4, 31, -44.63, -3.08, 0, 5, 24, 48.33, 6.64, 0.20569, 25, 5.55, 6.45, 0.55901, 26, -3.8, 6.3, 0.19217, 27, -13.44, 6.67, 0.04311, 31, -41.41, 10.95, 0, 4, 24, 34.66, 6.33, 0.84501, 25, -8.12, 6.61, 0.15431, 26, -17.46999, 5.86, 6.7E-4, 31, -55.04, 12.15, 0, 3, 24, 36.34, -8.72999, 0.7356, 25, -6.96, -8.5, 0.24263, 26, -15.66, -9.18999, 0.02176, 3, 24, 22.85, -11.81, 0.98367, 25, -20.54, -11.11, 0.01632, 27, -39.4, -11.09, 0, 3, 24, 27.12, -6.03, 0.96988, 25, -16.07, -5.48, 0.02998, 26, -24.89, -6.57, 1.3E-4, 2, 24, 23.76, 0.18, 1, 31, -66.54, 7.23, 0, 4, 24, 18.28, 4.94999, 0.99999, 26, -33.84, 4.33, 0, 27, -43.53, 5.78, 0, 31, -71.47, 12.58, 0, 1, 24, 10.61, 1.75, 1, 1, 24, 5.83, -4.23, 1, 2, 24, 14.89, -7.95, 0.99736, 25, -28.37, -6.98, 0.00263, 1, 24, 35.75, -1.23, 1, 4, 24, 33.48, -19.18, 0.84395, 25, -10.17, -18.84, 0.14088, 26, -18.42, -19.66, 0.01515, 31, -59.02, -13.08, 0, 3, 24, 25.36, -24.41, 0.90735, 25, -18.46999, -23.79, 0.08825, 26, -26.49, -24.97, 0.00439, 3, 24, 16.12999, -23.53, 0.98092, 25, -27.66, -22.59, 0.01907, 27, -46.44, -22.63, 0, 3, 24, 7.65, -19.74, 0.99656, 25, -36, -18.52, 0.00343, 27, -54.81, -18.62, 0, 2, 24, 1.45, -14.16, 1, 27, -60.86, -12.87, 0, 1, 24, -1.02, -7.37, 1, 3, 24, 28.47, 12.85, 0.94822, 25, -14.08, 13.34, 0.05177, 31, -60.47, 19.31, 0, 3, 24, 22, 9.05, 0.97805, 25, -20.68, 9.76, 0.02194, 31, -67.32, 16.24, 0, 5, 24, 14.42, 13.63, 0.99625, 25, -28.09, 14.6, 0.00374, 26, -37.77, 12.97, 0, 27, -47.15, 14.55, 0, 31, -74.35, 21.62, 0, 5, 24, 12.23, 20.08, 0.99617, 25, -30.06, 21.12, 0.0038, 26, -40.02, 19.4, 1.0E-5, 27, -49.17, 21.07, 1.0E-5, 31, -75.82, 28.28, 0, 5, 24, 8.64999, 15.29, 0.99959, 25, -33.81, 16.45999, 3.8E-4, 26, -43.57, 14.58, 0, 27, -52.88, 16.37, 0, 31, -79.9, 23.91, 0, 3, 24, -0.7, 13.33, 0.99998, 26, -52.9, 12.54, 0, 27, -62.28, 14.66, 0, 1, 24, -0.84, -1.99, 1, 1, 24, 2.95, 2.04, 1, 4, 24, 3.93, 4.5, 0.99999, 26, -48.18, 3.74, 0, 27, -57.88, 5.7, 0, 31, -85.78, 13.7, 0, 4, 24, 1.59, 6.77, 0.99999, 26, -50.54, 6, 0, 27, -60.16, 8.04, 0, 31, -87.85, 16.21999, 0, 3, 24, -0.66, 4.96999, 0.99999, 26, -52.79, 4.17, 0, 27, -62.48, 6.3, 0, 3, 24, -2.58, 6.7, 0.99999, 26, -54.72, 5.89, 0, 27, -64.33999, 8.08, 0, 3, 24, -3.67, 4.57, 0.99999, 26, -55.79, 3.74, 0, 27, -65.49, 5.98, 0, 4, 24, -3.28, 0.16, 0.99999, 26, -55.36, -0.64999, 0, 27, -65.22, 1.57, 0, 31, -93.44, 10.18999, 0 ],
"hull": 46
}
},
"linghunqiu3": {
"linghunqiu": {
"type": "mesh",
"uvs": [ 0.0265, 0.59925, 0.09282, 0.57159, 0.151, 0.54787, 0.20685, 0.5202, 0.26736, 0.49649, 0.32321, 0.46487, 0.38022, 0.4372, 0.44305, 0.40954, 0.49774, 0.38187, 0.55359, 0.35421, 0.61526, 0.33049, 0.68042, 0.29097, 0.72696, 0.2554, 0.75139, 0.17635, 0.78281, 0.09335, 0.81888, 0.04987, 0.8596, 0.03801, 0.90615, 0.08544, 0.94222, 0.15659, 0.96432, 0.21982, 0.97945, 0.31863, 0.97712, 0.41349, 0.98294, 0.5044, 0.98178, 0.5953, 0.9748, 0.69016, 0.9748, 0.76525, 0.96083, 0.83639, 0.94803, 0.89963, 0.93174, 0.97078, 0.88753, 0.98659, 0.8503, 0.95892, 0.81073, 0.90754, 0.78746, 0.85616, 0.75139, 0.8443, 0.70485, 0.82849, 0.65598, 0.80873, 0.61293, 0.79687, 0.56406, 0.78501, 0.50705, 0.7613, 0.44887, 0.73363, 0.38255, 0.71387, 0.33368, 0.70597, 0.28132, 0.70201, 0.22547, 0.69411, 0.16962, 0.6783, 0.09632, 0.66249, 0.21552, 0.61046, 0.1557, 0.61616, 0.27733, 0.58829, 0.32559, 0.58252, 0.38132, 0.57213, 0.43944, 0.56174, 0.49823, 0.56405, 0.556, 0.51326, 0.55974, 0.61484, 0.61888, 0.46362, 0.61853, 0.63101, 0.68175, 0.43707, 0.67223, 0.63447, 0.72321, 0.42668, 0.71607, 0.65409, 0.77996, 0.64717, 0.77147, 0.40821, 0.83434, 0.35741, 0.81463, 0.44976, 0.8306, 0.54789, 0.85643, 0.62292, 0.89211, 0.57098, 0.9142, 0.47516, 0.87172, 0.41744, 0.77452, 0.52711, 0.78438, 0.24197, 0.8221, 0.1577, 0.86526, 0.1704, 0.90503, 0.22927, 0.93425, 0.31701, 0.94615, 0.42437, 0.80915, 0.74978, 0.83923, 0.68849, 0.87482, 0.76, 0.88534, 0.86216, 0.90189, 0.78554, 0.9455, 0.75319, 0.9455, 0.5097, 0.92795, 0.5744, 0.92344, 0.61357, 0.93447, 0.64932, 0.94499, 0.62038, 0.95402, 0.64762, 0.95903, 0.61357, 0.95703, 0.54375 ],
"triangles": [ 0, 1, 45, 45, 1, 47, 47, 2, 46, 1, 2, 47, 44, 47, 46, 45, 47, 44, 46, 3, 48, 2, 3, 46, 42, 43, 46, 44, 46, 43, 48, 4, 49, 3, 4, 48, 42, 48, 49, 42, 46, 48, 49, 4, 5, 50, 49, 5, 41, 49, 50, 42, 49, 41, 50, 5, 6, 40, 50, 51, 41, 50, 40, 51, 6, 7, 52, 51, 7, 51, 50, 6, 39, 51, 52, 40, 51, 39, 53, 52, 7, 39, 52, 54, 55, 8, 9, 53, 8, 55, 7, 8, 53, 56, 54, 53, 52, 53, 54, 38, 39, 54, 37, 54, 56, 38, 54, 37, 55, 56, 53, 36, 37, 56, 9, 10, 55, 56, 55, 58, 58, 36, 56, 57, 10, 11, 59, 57, 11, 55, 10, 57, 58, 57, 60, 55, 57, 58, 35, 36, 58, 60, 35, 58, 60, 57, 59, 34, 35, 60, 17, 72, 15, 17, 15, 16, 73, 72, 17, 14, 15, 72, 18, 73, 17, 13, 14, 72, 74, 73, 18, 74, 18, 19, 71, 13, 72, 12, 13, 71, 75, 74, 19, 75, 19, 20, 71, 73, 74, 73, 71, 72, 63, 74, 75, 63, 71, 74, 63, 62, 12, 63, 12, 71, 11, 12, 62, 21, 75, 20, 69, 63, 75, 76, 69, 75, 64, 62, 63, 21, 76, 75, 59, 11, 62, 69, 64, 63, 68, 69, 76, 76, 21, 22, 83, 68, 76, 22, 83, 76, 62, 70, 59, 64, 70, 62, 90, 83, 22, 68, 65, 64, 68, 64, 69, 70, 64, 65, 67, 65, 68, 67, 68, 83, 84, 67, 83, 90, 84, 83, 23, 90, 22, 89, 84, 90, 85, 67, 84, 84, 87, 85, 90, 23, 89, 89, 87, 84, 66, 65, 67, 66, 67, 85, 61, 70, 65, 61, 65, 66, 60, 59, 70, 88, 87, 89, 86, 85, 87, 86, 87, 88, 61, 60, 70, 78, 61, 66, 23, 88, 89, 24, 88, 23, 77, 61, 78, 24, 82, 86, 24, 86, 88, 66, 86, 78, 86, 66, 85, 79, 86, 82, 79, 78, 86, 77, 78, 79, 82, 24, 25, 81, 79, 82, 26, 82, 25, 81, 82, 26, 60, 77, 34, 77, 60, 61, 33, 34, 77, 32, 33, 77, 80, 79, 81, 80, 81, 26, 27, 80, 26, 32, 79, 80, 79, 32, 77, 31, 32, 80, 30, 31, 80, 30, 80, 27, 28, 30, 27, 29, 30, 28 ],
"vertices": [ 4, 61, 45.61, -7.86, 0, 64, 27.35, -8.72, 0.00104, 66, 15.55, -7.82, 0.11872, 67, 10.71, -6.71, 0.88022, 3, 64, 17.46999, -7.26, 0.00229, 66, 5.64, -6.6, 0.55387, 67, 0.72, -6.56, 0.44381, 6, 59, 40.66, -3.93, 0, 61, 27.26, -5.59, 0, 62, 21.05, -5.67, 4.0E-5, 64, 9.08, -5.9, 0.01393, 65, 3.39, -5.62, 0.84518, 66, -2.77, -5.44, 0.14083, 6, 59, 24.41, -0.24, 4.0E-5, 61, 11.26, -0.93, 0.01548, 62, 5.07, -0.95, 0.64601, 63, -0.74, -0.95, 0.33812, 65, -12.85, -1.93, 1.8E-4, 66, -18.74, -0.68, 1.5E-4, 6, 59, 11.43, 1, 0.12332, 60, 5.25, 1, 0.62303, 61, -1.6, 1.1, 0.24964, 63, -13.61, 1.1, 0.00397, 65, -25.82, -0.67, 1.0E-5, 66, -31.6, 1.42, 0, 6, 57, 14.22, 2.23, 0.06443, 58, 5.92, 2.76, 0.56983, 59, -0.54, 2.77, 0.24558, 60, -6.72, 2.77, 0.12014, 65, -37.81, 1.09, 0, 66, -43.45, 3.99, 0, 5, 55, 17.35, 4.15, 0.03108, 56, 8.81, 4.69, 0.34209, 57, 2.11999, 4.56, 0.50313, 58, -6.33, 3.93, 0.12326, 60, -18.95, 4.29, 4.0E-4, 5, 53, 16.64, 5.74, 0.03241, 54, 9.87, 6.53, 0.32695, 55, 3.99, 6.46, 0.4908, 56, -4.65, 6.19, 0.14719, 57, -11.21, 6.95, 0.00261, 7, 50, 25.85, 9.21, 3.3E-4, 51, 17.6, 9.21, 0.05787, 52, 10.6, 9.21, 0.22091, 53, 5.17, 8.66, 0.47004, 54, -1.78, 8.55, 0.21832, 55, -7.62, 8.68999, 0.03142, 56, -16.39, 7.71, 0.00107, 6, 49, 21.25, 10.22999, 0.05754, 50, 13.87, 10.74, 0.14407, 51, 5.62, 10.74, 0.29927, 52, -1.37, 10.74, 0.46296, 53, -6.53, 11.6, 0.03137, 54, -13.69, 10.57, 0.00476, 6, 47, 27.12, 11.57, 0.02835, 48, 17.52, 12.35, 0.13105, 49, 8.08, 11.96, 0.35837, 50, 0.64999, 11.99, 0.29334, 51, -7.59, 11.99, 0.15175, 52, -14.59, 11.99, 0.03712, 7, 46, 55.75, 14.86, 0.05803, 47, 13.25, 14.41, 0.33021, 48, 3.53, 14.58, 0.42049, 49, -5.81, 14.69, 0.1562, 50, -13.33, 14.22, 0.03282, 51, -21.58, 14.22, 0.00221, 53, -33.13, 18.29999, 0, 5, 46, 45.77, 17.01, 0.43277, 47, 3.35, 16.9, 0.39469, 48, -6.46, 16.64, 0.15888, 49, -15.73, 17.1, 0.01363, 53, -42.82, 21.54, 0, 5, 46, 40.5, 21.94, 0.71994, 47, -1.75, 22.01, 0.2335, 48, -11.78, 21.52, 0.04638, 49, -20.87, 22.17, 1.5E-4, 53, -47.51, 27.02, 0, 4, 46, 33.73, 27.11, 0.86477, 47, -8.34, 27.41, 0.12554, 48, -18.59, 26.63, 0.00966, 53, -53.68, 32.9, 0, 3, 46, 25.98, 29.77, 0.93553, 47, -15.98, 30.34, 0.06369, 48, -26.36, 29.22, 7.6E-4, 3, 46, 17.26, 30.44, 0.97323, 47, -24.68, 31.31, 0.02676, 49, -43.87, 31.29, 0, 3, 46, 7.33, 27.36, 0.99455, 47, -34.71, 28.57, 0.00544, 49, -53.88, 28.47, 0, 3, 46, -0.34, 22.81, 0.99986, 47, -42.54, 24.28, 1.3E-4, 49, -61.68, 24.13, 0, 2, 46, -5.03, 18.78, 1, 49, -66.48, 20.21999, 0, 2, 46, -8.21, 12.53, 1, 49, -69.82, 14.06, 0, 1, 46, -7.66, 6.56, 1, 3, 46, -8.85, 0.82, 0.99999, 48, -60.94, -0.04, 0, 49, -70.76999, 2.36999, 0, 4, 46, -8.55, -4.9, 0.99999, 48, -60.58, -5.76, 0, 49, -70.62, -3.35, 0, 53, -99.23, 5.73, 0, 3, 46, -7, -10.86, 0.99999, 48, -58.98, -11.71, 0, 49, -69.23, -9.35, 0, 3, 46, -6.96, -15.59, 0.99998, 48, -58.89, -16.44, 0, 49, -69.31, -14.08, 0, 3, 46, -3.93, -20.04, 0.99998, 48, -55.83, -20.87, 1.0E-5, 49, -66.4, -18.62, 0, 4, 46, -1.15, -24, 0.99997, 48, -53.01, -24.8, 1.0E-5, 49, -63.73, -22.65, 1.0E-5, 53, -93.98, -14.06, 0, 4, 46, 2.35999, -28.45, 0.99997, 48, -49.45, -29.22, 1.0E-5, 49, -60.32, -27.19, 1.0E-5, 53, -90.96, -18.87, 0, 5, 46, 11.83, -29.36, 0.99919, 47, -32.15, -28.28, 7.7E-4, 48, -39.97, -30.04, 1.0E-5, 49, -50.88, -28.35, 1.0E-5, 53, -81.65, -20.82, 0, 4, 46, 19.79, -27.54, 0.98606, 47, -24.14, -26.73, 0.01391, 49, -42.88, -26.74, 1.0E-5, 53, -73.55, -19.89, 0, 4, 46, 28.22, -24.23, 0.93395, 47, -15.6, -23.71, 0.06572, 48, -23.63, -24.76, 3.2E-4, 53, -64.8, -17.52, 0, 5, 46, 33.16999, -20.95, 0.83752, 47, -10.54, -20.6, 0.15539, 48, -18.70999, -21.43, 0.00626, 49, -29.33, -20.5, 8.0E-4, 53, -59.52, -14.8, 0, 5, 46, 40.88, -20.12999, 0.56436, 47, -2.8, -20.04999, 0.35705, 48, -11, -20.54, 0.06184, 49, -21.6, -19.89, 0.01672, 53, -51.76, -14.84, 0, 6, 46, 50.83, -19.04, 0.19432, 47, 7.17, -19.29999, 0.43474, 48, -1.05999, -19.36, 0.2512, 49, -11.62, -19.07, 0.11049, 50, -17.93, -19.71999, 0.00922, 53, -41.75, -14.85, 0, 7, 46, 61.28, -17.7, 0.02168, 47, 17.66, -18.32, 0.14806, 48, 9.35999, -17.93, 0.34195, 49, -1.14, -18.01, 0.34658, 50, -7.5, -18.29, 0.12667, 51, -15.75, -18.29, 0.01445, 52, -22.75, -18.29, 5.6E-4, 7, 47, 26.88, -17.79999, 0.01345, 48, 18.56, -17.01, 0.12084, 49, 8.07, -17.42, 0.28262, 50, 1.69, -17.37, 0.40269, 51, -6.55, -17.37, 0.12974, 52, -13.55, -17.37, 0.04724, 53, -21.98, -14.86, 0.00339, 7, 48, 29, -16.07, 0.00674, 49, 18.54, -16.85, 0.03006, 50, 12.13, -16.43, 0.28706, 51, 3.88, -16.43, 0.28549, 52, -3.11, -16.43, 0.28354, 53, -11.5, -15.17, 0.10678, 54, -16.56, -16.51, 2.8E-4, 6, 50, 24.3, -14.71, 0.02644, 51, 16.04999, -14.71, 0.03932, 52, 9.05, -14.71, 0.22105, 53, 0.78, -14.91, 0.51261, 54, -4.33, -15.3, 0.15988, 55, -10.62, -15.1, 0.04066, 5, 53, 13.34, -14.43, 0.02927, 54, 8.14999, -13.84, 0.47413, 55, 1.88, -13.88, 0.37931, 56, -5.52, -14.24, 0.1146, 57, -13.44, -13.38, 0.00266, 4, 55, 16.11, -13.24, 0.01089, 56, 8.64, -12.74, 0.38432, 57, 0.78, -12.82, 0.55728, 58, -6.01, -13.5, 0.04749, 4, 57, 11.25, -12.82, 0.13105, 58, 4.4, -12.51, 0.65638, 59, -2.51, -12.44, 0.20619, 60, -8.68999, -12.44, 0.00636, 4, 58, 15.58, -11.74, 0.07413, 59, 8.68, -11.99, 0.12108, 60, 2.5, -11.99, 0.70012, 61, -5.13, -11.7, 0.10465, 5, 58, 27.49, -10.68, 0.00141, 60, 14.44, -11.27, 0.03235, 61, 6.82, -11.71, 0.24177, 62, 0.58, -11.71, 0.67532, 63, -5.19999, -11.72, 0.04911, 3, 62, 12.57, -11.26, 0.00892, 63, 6.77, -11.25, 0.11137, 64, 0.45, -11.27, 0.87969, 2, 66, 4.44, -10.78, 0.74768, 67, -0.01, -10.84, 0.25231, 1, 62, 2.95, -6.54, 1, 2, 64, 4.65, -8.25, 0.5, 65, -0.79, -8.35, 0.5, 1, 60, 3.23, -4.81, 1, 2, 58, 5.76, -4.66, 0.5, 59, -0.92, -4.64, 0.5, 2, 56, 8.72999, -3.8, 0.5, 57, 1.48, -3.91, 0.5, 1, 55, 4.35, -3.15, 1, 1, 53, 3.91, -2.74, 1, 5, 49, 20.56, 0.23, 0.01399, 50, 13.54, 0.71, 0.05026, 51, 5.29, 0.71, 0.79595, 52, -1.7, 0.71, 0.13909, 54, -14.44, 0.56, 6.9E-4, 1, 51, 4.61, -5.69, 1, 6, 47, 26.14, 3.21, 0.01013, 48, 16.9, 3.95, 0.04436, 49, 7.16, 3.59, 0.42624, 50, 0.03, 3.59, 0.39269, 51, -8.21, 3.59, 0.10091, 52, -15.21, 3.59, 0.02565, 4, 48, 17.17, -6.59, 0.02808, 49, 7.05, -6.95, 0.3809, 50, 0.3, -6.94, 0.57042, 51, -7.94, -6.94, 0.02057, 4, 47, 12.73, 5.21999, 0.24413, 48, 3.42, 5.37, 0.69704, 49, -6.25, 5.49, 0.05255, 50, -13.44, 5.01, 0.00626, 4, 46, 57.7, -6.76, 0.00356, 47, 14.45, -7.26, 0.03469, 48, 5.68, -7.01, 0.62449, 49, -4.42999, -6.97, 0.33723, 6, 46, 46.67, 6.22, 0.29038, 47, 3.88, 6.1, 0.49696, 48, -5.46, 5.86, 0.19532, 49, -15.11, 6.3, 0.01718, 50, -22.33, 5.51, 1.3E-4, 53, -43.1, 10.72, 0, 5, 46, 48.33, -8.08, 0.20569, 47, 5.04, -8.26, 0.55901, 48, -3.67, -8.42, 0.19217, 49, -13.83, -8.04, 0.04311, 53, -43.03, -3.68, 0, 4, 46, 34.66, -7.77, 0.84501, 47, -8.6, -7.48, 0.15431, 48, -17.34, -8.24, 6.7E-4, 53, -56.59, -1.87, 0, 3, 46, 36.34, 7.29, 0.7356, 47, -6.41, 7.52, 0.24263, 48, -15.8, 6.84, 0.02176, 3, 46, 22.85, 10.37, 0.98367, 47, -19.78, 11.05, 0.01632, 49, -38.81, 11.08, 0, 3, 46, 27.12, 4.59, 0.96988, 47, -15.71, 5.13, 0.02998, 48, -24.99, 4.05, 1.3E-4, 2, 46, 23.76, -1.61, 1, 53, -66.74, 5.44, 0, 4, 46, 18.28, -6.39, 0.99999, 48, -33.73, -7.01, 0, 49, -43.83, -5.56, 0, 53, -72.72, 1.29999, 0, 1, 46, 10.61, -3.19, 1, 1, 46, 5.83, 2.8, 1, 2, 46, 14.89, 6.52, 0.99736, 47, -27.87, 7.47, 0.00263, 1, 46, 35.75, -0.19, 1, 4, 46, 33.48, 17.74, 0.84395, 47, -8.91, 18.06, 0.14088, 48, -18.76, 17.26, 0.01515, 53, -54.95, 23.62, 0, 3, 46, 25.36, 22.98, 0.90735, 47, -16.84, 23.57, 0.08825, 48, -26.93, 22.42, 0.00439, 3, 46, 16.12999, 22.09, 0.98092, 47, -26.1, 23, 0.01907, 49, -45.23, 22.97, 0, 3, 46, 7.65, 18.29999, 0.99656, 47, -34.7, 19.5, 0.00343, 49, -53.8, 19.41, 0, 2, 46, 1.45, 12.72, 1, 49, -60.15, 13.99, 0, 1, 46, -1.02, 5.93, 1, 3, 46, 28.47, -14.29, 0.94822, 47, -15.01, -13.78, 0.05177, 53, -63.46, -7.67, 0, 3, 46, 22, -10.49, 0.97805, 47, -21.35, -9.76, 0.02194, 53, -69.47, -3.18, 0, 5, 46, 14.42, -15.06, 0.99625, 47, -29.07, -14.07, 0.00374, 48, -37.50999, -15.72, 0, 49, -47.91, -14.12, 0, 53, -77.5, -6.89, 0, 5, 46, 12.23, -21.52, 0.99617, 47, -31.49, -20.45, 0.0038, 48, -39.64, -22.19, 1.0E-5, 49, -50.28, -20.52, 1.0E-5, 53, -80.39, -13.07, 0, 5, 46, 8.64999, -16.71999, 0.99959, 47, -34.9, -15.54, 3.8E-4, 48, -43.27, -17.43, 0, 49, -53.73, -15.63, 0, 53, -83.43, -7.91, 0, 3, 46, -0.7, -14.77, 0.99998, 48, -52.64, -15.57, 0, 49, -63.03, -13.43, 0, 1, 46, -0.84, 0.56, 1, 1, 46, 2.95, -3.47, 1, 4, 46, 3.93, -5.93, 0.99999, 48, -48.08, -6.68, 0, 49, -58.16, -4.71999, 0, 53, -86.92, 3.33, 0, 4, 46, 1.59, -8.21, 0.99999, 48, -50.4, -8.97999, 0, 49, -60.56, -6.93, 0, 53, -89.5, 1.33, 0, 3, 46, -0.66, -6.4, 0.99999, 48, -52.69, -7.2, 0, 49, -62.78, -5.07, 0, 3, 46, -2.58, -8.14, 0.99999, 48, -54.58, -8.95, 0, 49, -64.74, -6.75, 0, 3, 46, -3.67, -6, 0.99999, 48, -55.7, -6.82, 0, 49, -65.76999, -4.59, 0, 4, 46, -3.28, -1.6, 0.99999, 48, -55.35, -2.42, 0, 49, -65.26999, -0.2, 0, 53, -93.63, 8.43, 0 ],
"hull": 46
}
},
"linghunqiu4": {
"linghunqiu": {
"type": "mesh",
"uvs": [ 0.0265, 0.59925, 0.09282, 0.57159, 0.151, 0.54787, 0.20685, 0.5202, 0.26736, 0.49649, 0.32321, 0.46487, 0.38022, 0.4372, 0.44305, 0.40954, 0.49774, 0.38187, 0.55359, 0.35421, 0.61526, 0.33049, 0.68042, 0.29097, 0.72696, 0.2554, 0.75139, 0.17635, 0.78281, 0.09335, 0.81888, 0.04987, 0.8596, 0.03801, 0.90615, 0.08544, 0.94222, 0.15659, 0.96432, 0.21982, 0.97945, 0.31863, 0.97712, 0.41349, 0.98294, 0.5044, 0.98178, 0.5953, 0.9748, 0.69016, 0.9748, 0.76525, 0.96083, 0.83639, 0.94803, 0.89963, 0.93174, 0.97078, 0.88753, 0.98659, 0.8503, 0.95892, 0.81073, 0.90754, 0.78746, 0.85616, 0.75139, 0.8443, 0.70485, 0.82849, 0.65598, 0.80873, 0.61293, 0.79687, 0.56406, 0.78501, 0.50705, 0.7613, 0.44887, 0.73363, 0.38255, 0.71387, 0.33368, 0.70597, 0.28132, 0.70201, 0.22547, 0.69411, 0.16962, 0.6783, 0.09632, 0.66249, 0.21552, 0.61046, 0.1557, 0.61616, 0.27733, 0.58829, 0.32559, 0.58252, 0.38132, 0.57213, 0.43944, 0.56174, 0.49823, 0.56405, 0.556, 0.51326, 0.55974, 0.61484, 0.61888, 0.46362, 0.61853, 0.63101, 0.68175, 0.43707, 0.67223, 0.63447, 0.72321, 0.42668, 0.71607, 0.65409, 0.77996, 0.64717, 0.77147, 0.40821, 0.83434, 0.35741, 0.81463, 0.44976, 0.8306, 0.54789, 0.85643, 0.62292, 0.89211, 0.57098, 0.9142, 0.47516, 0.87172, 0.41744, 0.77452, 0.52711, 0.78438, 0.24197, 0.8221, 0.1577, 0.86526, 0.1704, 0.90503, 0.22927, 0.93425, 0.31701, 0.94615, 0.42437, 0.80915, 0.74978, 0.83923, 0.68849, 0.87482, 0.76, 0.88534, 0.86216, 0.90189, 0.78554, 0.9455, 0.75319, 0.9455, 0.5097, 0.92795, 0.5744, 0.92344, 0.61357, 0.93447, 0.64932, 0.94499, 0.62038, 0.95402, 0.64762, 0.95903, 0.61357, 0.95703, 0.54375 ],
"triangles": [ 0, 1, 45, 45, 1, 47, 47, 2, 46, 1, 2, 47, 44, 47, 46, 45, 47, 44, 46, 3, 48, 2, 3, 46, 42, 43, 46, 44, 46, 43, 48, 4, 49, 3, 4, 48, 42, 48, 49, 42, 46, 48, 49, 4, 5, 50, 49, 5, 41, 49, 50, 42, 49, 41, 50, 5, 6, 40, 50, 51, 41, 50, 40, 51, 6, 7, 52, 51, 7, 51, 50, 6, 39, 51, 52, 40, 51, 39, 53, 52, 7, 39, 52, 54, 55, 8, 9, 53, 8, 55, 7, 8, 53, 56, 54, 53, 52, 53, 54, 38, 39, 54, 37, 54, 56, 38, 54, 37, 55, 56, 53, 36, 37, 56, 9, 10, 55, 56, 55, 58, 58, 36, 56, 57, 10, 11, 59, 57, 11, 55, 10, 57, 58, 57, 60, 55, 57, 58, 35, 36, 58, 60, 35, 58, 60, 57, 59, 34, 35, 60, 17, 72, 15, 17, 15, 16, 73, 72, 17, 14, 15, 72, 18, 73, 17, 13, 14, 72, 74, 73, 18, 74, 18, 19, 71, 13, 72, 12, 13, 71, 75, 74, 19, 75, 19, 20, 71, 73, 74, 73, 71, 72, 63, 74, 75, 63, 71, 74, 63, 62, 12, 63, 12, 71, 11, 12, 62, 21, 75, 20, 69, 63, 75, 76, 69, 75, 64, 62, 63, 21, 76, 75, 59, 11, 62, 69, 64, 63, 68, 69, 76, 76, 21, 22, 83, 68, 76, 22, 83, 76, 62, 70, 59, 64, 70, 62, 90, 83, 22, 68, 65, 64, 68, 64, 69, 70, 64, 65, 67, 65, 68, 67, 68, 83, 84, 67, 83, 90, 84, 83, 23, 90, 22, 89, 84, 90, 85, 67, 84, 84, 87, 85, 90, 23, 89, 89, 87, 84, 66, 65, 67, 66, 67, 85, 61, 70, 65, 61, 65, 66, 60, 59, 70, 88, 87, 89, 86, 85, 87, 86, 87, 88, 61, 60, 70, 78, 61, 66, 23, 88, 89, 24, 88, 23, 77, 61, 78, 24, 82, 86, 24, 86, 88, 66, 86, 78, 86, 66, 85, 79, 86, 82, 79, 78, 86, 77, 78, 79, 82, 24, 25, 81, 79, 82, 26, 82, 25, 81, 82, 26, 60, 77, 34, 77, 60, 61, 33, 34, 77, 32, 33, 77, 80, 79, 81, 80, 81, 26, 27, 80, 26, 32, 79, 80, 79, 32, 77, 31, 32, 80, 30, 31, 80, 30, 80, 27, 28, 30, 27, 29, 30, 28 ],
"vertices": [ 4, 83, 45.93, -1.69, 0, 86, 27.85, -2.56, 0.00104, 88, 15.91, -1.65, 0.11872, 89, 10.39999, -0.52999, 0.88022, 3, 86, 17.86, -2.4, 0.00229, 88, 5.92, -1.74, 0.55387, 89, 0.48, -1.69, 0.44381, 6, 81, 40.63, -0.4, 0, 83, 27.45, -2.06, 0, 84, 21.25, -2.15, 4.0E-5, 86, 9.35999, -2.38, 0.01393, 87, 3.36, -2.08999, 0.84518, 88, -2.57, -1.92, 0.14083, 6, 81, 24.44, -4.38, 4.0E-5, 83, 11.05, -5.06, 0.01548, 84, 4.84, -5.08, 0.64601, 85, -0.96, -5.08, 0.33812, 87, -12.81, -6.07, 1.8E-4, 88, -18.98, -4.82, 1.5E-4, 6, 81, 11.5, -5.88, 0.12332, 82, 5.32, -5.88, 0.62303, 83, -1.96, -5.77, 0.24964, 85, -13.98, -5.77, 0.00397, 87, -25.76, -7.56, 1.0E-5, 88, -32, -5.45, 0, 6, 79, 13.61, -8.39999, 0.06443, 80, 6.33, -7.88, 0.56983, 81, -0.45, -7.87, 0.24558, 82, -6.63, -7.87, 0.12014, 87, -37.71, -9.56, 0, 88, -44.06, -6.64, 0, 5, 77, 16.62999, -9.74, 0.03108, 78, 8.93999, -9.22, 0.34209, 79, 1.32, -9.32, 0.50313, 80, -5.81, -9.97, 0.12326, 82, -18.83, -9.60999, 4.0E-4, 5, 75, 14.75, -11.3, 0.03241, 76, 9.31, -10.61, 0.32695, 77, 3.11, -10.67, 0.4908, 78, -4.5, -10.96, 0.14719, 79, -12.2, -10.17, 0.00261, 7, 72, 26.04, -11.2, 3.3E-4, 73, 17.79, -11.2, 0.05787, 74, 10.79, -11.2, 0.22091, 75, 2.93, -11.63, 0.47004, 76, -2.44, -11.86, 0.21832, 77, -8.67, -11.7, 0.03142, 78, -16.2, -12.7, 0.00107, 6, 71, 20.62, -13.44, 0.05754, 72, 14.09, -12.94, 0.14407, 73, 5.84, -12.94, 0.29927, 74, -1.15, -12.94, 0.46296, 75, -9.14, -11.94, 0.03137, 76, -14.46, -13.1, 0.00476, 6, 69, 26.22, -14.84, 0.02835, 70, 17.76, -14.08, 0.13105, 71, 7.38, -14.46, 0.35837, 72, 0.89, -14.44, 0.29334, 73, -7.35, -14.44, 0.15175, 74, -14.35, -14.44, 0.03712, 7, 68, 55.75, -16.29, 0.05803, 69, 12.18, -16.71999, 0.33021, 70, 3.82, -16.57, 0.42049, 71, -6.63, -16.45, 0.1562, 72, -13.04, -16.93, 0.03282, 73, -21.29, -16.93, 0.00221, 75, -36.56, -12.66, 0, 5, 68, 45.77, -18.44, 0.43277, 69, 2.13, -18.53, 0.39469, 70, -6.13, -18.81, 0.15888, 71, -16.67, -18.34, 0.01363, 75, -46.72, -13.7, 0, 5, 68, 40.5, -23.38, 0.71994, 69, -3.3, -23.28, 0.2335, 70, -11.36, -23.79, 0.04638, 71, -22.07, -23.13, 1.5E-4, 75, -52.5, -18.02, 0, 4, 68, 33.73, -28.54, 0.86477, 69, -10.24, -28.21, 0.12554, 70, -18.08, -29.02, 0.00966, 75, -59.8, -22.41, 0, 3, 68, 25.98, -31.21, 0.93553, 69, -18.07, -30.61, 0.06369, 70, -25.8, -31.76, 7.6E-4, 3, 68, 17.26, -31.88, 0.97323, 69, -26.81, -30.98, 0.02676, 71, -45.52, -31.01, 0, 3, 68, 7.33, -28.8, 0.99455, 69, -36.63, -27.56, 0.00544, 71, -55.37, -27.67, 0, 3, 68, -0.34, -24.25, 0.99986, 69, -44.15, -22.75, 1.3E-4, 71, -62.92, -22.91, 0, 2, 68, -5.03, -20.21999, 1, 71, -67.51, -18.76, 0, 2, 68, -8.21, -13.96, 1, 71, -70.51999, -12.43, 0, 1, 68, -7.66, -7.99, 1, 3, 68, -8.85, -2.25, 0.99999, 70, -60.91, -3.13, 0, 71, -70.85, -0.7, 0, 4, 68, -8.55, 3.46, 0.99999, 70, -60.66, 2.58999, 0, 71, -70.4, 5, 0, 75, -98.31, 14.05, 0, 3, 68, -7, 9.42, 0.99999, 70, -59.17, 8.57, 0, 71, -68.69, 10.92, 0, 3, 68, -6.96, 14.15, 0.99998, 70, -59.17, 13.3, 0, 71, -68.51999, 15.65, 0, 3, 68, -3.93, 18.61, 0.99998, 70, -56.18, 17.78, 1.0E-5, 71, -65.37999, 20.02, 0, 4, 68, -1.15, 22.57, 0.99997, 70, -53.44, 21.76, 1.0E-5, 71, -62.5, 23.9, 1.0E-5, 75, -88.85, 32.22, 0, 4, 68, 2.35999, 27.02, 0.99997, 70, -49.95, 26.25, 1.0E-5, 71, -58.85, 28.26, 1.0E-5, 75, -84.86, 36.25999, 0, 5, 68, 11.83, 27.92, 0.99919, 69, -30.19, 28.98, 7.7E-4, 70, -40.49, 27.24, 1.0E-5, 71, -49.36, 28.92, 1.0E-5, 75, -75.35, 36.12, 0, 4, 68, 19.79, 26.11, 0.98606, 69, -22.3, 26.89, 0.01391, 71, -41.46, 26.89, 1.0E-5, 75, -67.64, 33.43999, 0, 4, 68, 28.22, 22.79, 0.93395, 69, -13.99, 23.29, 0.06572, 70, -24.06, 22.26, 3.2E-4, 75, -59.62, 29.22, 0, 5, 68, 33.16999, 19.51, 0.83752, 69, -9.14999, 19.84, 0.15539, 70, -19.08, 19.03, 0.00626, 71, -28.26, 19.94, 8.0E-4, 75, -55.06, 25.41, 0, 5, 68, 40.88, 18.69, 0.56436, 69, -1.47, 18.76, 0.35705, 70, -11.36, 18.28, 0.06184, 71, -20.57, 18.92, 0.01672, 75, -47.49, 23.75, 0, 6, 68, 50.83, 17.61, 0.19432, 69, 8.43, 17.33, 0.43474, 70, -1.4, 17.28, 0.2512, 71, -10.65, 17.57, 0.11049, 72, -18.27, 16.93, 0.00922, 75, -37.72, 21.57, 0, 7, 68, 61.28, 16.27, 0.02168, 69, 18.82, 15.63, 0.14806, 70, 9.05, 16.04, 0.34195, 71, -0.24, 15.95, 0.34658, 72, -7.81, 15.68, 0.12667, 73, -16.06, 15.68, 0.01445, 74, -23.06, 15.68, 5.6E-4, 7, 69, 27.99, 14.48, 0.01345, 70, 18.26, 15.29, 0.12084, 71, 8.93, 14.87, 0.28262, 72, 1.39, 14.93, 0.40269, 73, -6.85, 14.93, 0.12974, 74, -13.85, 14.93, 0.04724, 75, -18.42, 17.25, 0.00339, 7, 70, 28.72, 14.54, 0.00674, 71, 19.35, 13.75, 0.03006, 72, 11.85, 14.19, 0.28706, 73, 3.6, 14.19, 0.28549, 74, -3.39, 14.19, 0.28354, 75, -8.13, 15.26, 0.10678, 76, -15.57, 14.1, 2.8E-4, 6, 72, 24.05, 12.69, 0.02644, 73, 15.8, 12.69, 0.03932, 74, 8.8, 12.69, 0.22105, 75, 3.8, 12.33, 0.51261, 76, -3.44, 12.1, 0.15988, 77, -9.21, 12.27, 0.04066, 5, 75, 15.95, 9.10999, 0.02927, 76, 8.92, 9.84, 0.47413, 77, 3.1, 9.78, 0.37931, 78, -5.74, 9.45, 0.1146, 79, -12.08, 10.28, 0.00266, 4, 77, 17.19, 7.68, 0.01089, 78, 8.43999, 8.2, 0.38432, 79, 1.99, 8.09, 0.55728, 80, -6.81, 7.43, 0.04749, 4, 79, 12.39, 6.9, 0.13105, 80, 3.65, 7.23, 0.65638, 81, -2.69, 7.31, 0.20619, 82, -8.87, 7.31, 0.00636, 4, 80, 14.86, 7.3, 0.07413, 81, 8.51, 7.06, 0.12108, 82, 2.33, 7.06, 0.70012, 83, -4.16, 7.33, 0.10465, 5, 80, 26.82, 7.14, 0.00141, 82, 14.28, 6.56, 0.03235, 83, 7.73, 6.1, 0.24177, 84, 1.57, 6.1, 0.67532, 85, -4.25, 6.09, 0.04911, 3, 84, 13.43, 4.34, 0.00892, 85, 7.6, 4.35, 0.11137, 86, 1.72, 4.3, 0.87969, 2, 88, 5.21, 2.54, 0.74768, 89, -0.69, 2.48, 0.25231, 1, 84, 3.35, 0.7, 1, 2, 86, 5.38, 0.64, 0.5, 87, -0.87, 0.57, 0.5, 1, 82, 3.18, -0.09, 1, 2, 80, 5.61, -0.49, 0.5, 81, -0.96, -0.46, 0.5, 2, 78, 8.71, -0.72, 0.5, 79, 1.65, -0.83, 0.5, 1, 77, 4.46, -1.14, 1, 1, 75, 4.19, -0.23, 1, 5, 71, 20.45999, -3.41, 0.01399, 72, 13.57, -2.92, 0.05026, 73, 5.32, -2.92, 0.79595, 74, -1.67, -2.92, 0.13909, 76, -14.56, -3.07, 6.9E-4, 1, 73, 4.52, 3.47, 1, 6, 69, 25.81, -6.43, 0.01013, 70, 16.99, -5.69, 0.04436, 71, 6.91, -6.05, 0.42624, 72, 0.12, -6.05, 0.39269, 73, -8.12, -6.05, 0.10091, 74, -15.12, -6.05, 0.02565, 4, 70, 17.06, 4.84, 0.02808, 71, 7.36, 4.46999, 0.3809, 72, 0.19, 4.48, 0.57042, 73, -8.05, 4.48, 0.02057, 4, 69, 12.29, -7.51, 0.24413, 70, 3.53, -7.37, 0.69704, 71, -6.59, -7.24, 0.05255, 72, -13.33, -7.72, 0.00626, 4, 68, 57.7, 5.32, 0.00356, 69, 14.87, 4.81, 0.03469, 70, 5.57, 5.06, 0.62449, 71, -4.11, 5.1, 0.33723, 6, 68, 46.67, -7.66, 0.29038, 69, 3.4, -7.78, 0.49696, 70, -5.33, -8.02, 0.19532, 71, -15.48, -7.58, 0.01718, 72, -22.2, -8.38, 1.3E-4, 75, -44.63, -3.08, 0, 5, 68, 48.33, 6.64, 0.20569, 69, 5.55, 6.45, 0.55901, 70, -3.8, 6.3, 0.19217, 71, -13.44, 6.67, 0.04311, 75, -41.41, 10.95, 0, 4, 68, 34.66, 6.33, 0.84501, 69, -8.12, 6.61, 0.15431, 70, -17.46999, 5.86, 6.7E-4, 75, -55.04, 12.15, 0, 3, 68, 36.34, -8.72999, 0.7356, 69, -6.96, -8.5, 0.24263, 70, -15.66, -9.18999, 0.02176, 3, 68, 22.85, -11.81, 0.98367, 69, -20.54, -11.11, 0.01632, 71, -39.4, -11.09, 0, 3, 68, 27.12, -6.03, 0.96988, 69, -16.07, -5.48, 0.02998, 70, -24.89, -6.57, 1.3E-4, 2, 68, 23.76, 0.18, 1, 75, -66.54, 7.23, 0, 4, 68, 18.28, 4.94999, 0.99999, 70, -33.84, 4.33, 0, 71, -43.53, 5.78, 0, 75, -71.47, 12.58, 0, 1, 68, 10.61, 1.75, 1, 1, 68, 5.83, -4.23, 1, 2, 68, 14.89, -7.95, 0.99736, 69, -28.37, -6.98, 0.00263, 1, 68, 35.75, -1.23, 1, 4, 68, 33.48, -19.18, 0.84395, 69, -10.17, -18.84, 0.14088, 70, -18.42, -19.66, 0.01515, 75, -59.02, -13.08, 0, 3, 68, 25.36, -24.41, 0.90735, 69, -18.46999, -23.79, 0.08825, 70, -26.49, -24.97, 0.00439, 3, 68, 16.12999, -23.53, 0.98092, 69, -27.66, -22.59, 0.01907, 71, -46.44, -22.63, 0, 3, 68, 7.65, -19.74, 0.99656, 69, -36, -18.52, 0.00343, 71, -54.81, -18.62, 0, 2, 68, 1.45, -14.16, 1, 71, -60.86, -12.87, 0, 1, 68, -1.02, -7.37, 1, 3, 68, 28.47, 12.85, 0.94822, 69, -14.08, 13.34, 0.05177, 75, -60.47, 19.31, 0, 3, 68, 22, 9.05, 0.97805, 69, -20.68, 9.76, 0.02194, 75, -67.32, 16.24, 0, 5, 68, 14.42, 13.63, 0.99625, 69, -28.09, 14.6, 0.00374, 70, -37.77, 12.97, 0, 71, -47.15, 14.55, 0, 75, -74.35, 21.62, 0, 5, 68, 12.23, 20.08, 0.99617, 69, -30.06, 21.12, 0.0038, 70, -40.02, 19.4, 1.0E-5, 71, -49.17, 21.07, 1.0E-5, 75, -75.82, 28.28, 0, 5, 68, 8.64999, 15.29, 0.99959, 69, -33.81, 16.45999, 3.8E-4, 70, -43.57, 14.58, 0, 71, -52.88, 16.37, 0, 75, -79.9, 23.91, 0, 3, 68, -0.7, 13.33, 0.99998, 70, -52.9, 12.54, 0, 71, -62.28, 14.66, 0, 1, 68, -0.84, -1.99, 1, 1, 68, 2.95, 2.04, 1, 4, 68, 3.93, 4.5, 0.99999, 70, -48.18, 3.74, 0, 71, -57.88, 5.7, 0, 75, -85.78, 13.7, 0, 4, 68, 1.59, 6.77, 0.99999, 70, -50.54, 6, 0, 71, -60.16, 8.04, 0, 75, -87.85, 16.21999, 0, 3, 68, -0.66, 4.96999, 0.99999, 70, -52.79, 4.17, 0, 71, -62.48, 6.3, 0, 3, 68, -2.58, 6.7, 0.99999, 70, -54.72, 5.89, 0, 71, -64.33999, 8.08, 0, 3, 68, -3.67, 4.57, 0.99999, 70, -55.79, 3.74, 0, 71, -65.49, 5.98, 0, 4, 68, -3.28, 0.16, 0.99999, 70, -55.36, -0.64999, 0, 71, -65.22, 1.57, 0, 75, -93.44, 10.18999, 0 ],
"hull": 46
}
}
}
},
"events": {
"special": {}
},
"animations": {
"special": {
"slots": {
"light1": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffffff" },
{ "time": 5, "color": "ffffff00" }
],
"attachment": [
{ "time": 0, "name": "light1" }
]
},
"linghun3": {
"color": [
{ "time": 5, "color": "ffffffff" },
{ "time": 5.3333, "color": "ffffff00" }
]
},
"linghunqiu": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3333, "color": "ffffffff", "curve": "stepped" },
{ "time": 5, "color": "ffffffff" },
{ "time": 5.3333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0, "name": "linghunqiu" }
]
},
"linghunqiu2": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffffff", "curve": "stepped" },
{ "time": 4.5, "color": "ffffffff" },
{ "time": 4.8333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0, "name": "linghunqiu" }
]
},
"linghunqiu3": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.5, "color": "ffffffff", "curve": "stepped" },
{ "time": 5, "color": "ffffffff" },
{ "time": 5.3333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0, "name": "linghunqiu" }
]
},
"linghunqiu4": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.3333, "color": "ffffffff", "curve": "stepped" },
{ "time": 4.6666, "color": "ffffffff" },
{ "time": 5, "color": "ffffff00" }
],
"attachment": [
{ "time": 0, "name": "linghunqiu" }
]
}
},
"bones": {
"root": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"linghunqiu": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"linghunqiu2": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone159": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone160": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone161": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone162": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone163": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone164": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone165": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone166": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone167": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone168": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone169": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone170": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone171": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone172": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone173": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone174": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone175": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone176": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone177": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone178": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone179": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"linghun2": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"linghunqiu3": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone180": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone181": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone182": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone183": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone184": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone185": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone186": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone187": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone188": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone189": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone190": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone191": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone192": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone193": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone194": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone195": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone196": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone197": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone198": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone199": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone200": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"linghun3": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"linghunqiu4": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone201": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone202": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone203": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone204": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone205": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone206": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone207": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone208": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone209": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone210": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone211": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone212": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone213": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone214": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone215": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone216": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone217": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone218": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone219": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone220": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone221": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"light1": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 273.23, "y": -252.21 }
],
"scale": [
{ "time": 0, "x": 2.087, "y": 2.087 },
{ "time": 0.3333, "x": 5.959, "y": 5.959 }
]
},
"eff/hui01": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"eff/Comp 2_00": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"eff/Comp 2_0": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"linghunqiu5": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone222": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone223": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone224": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone225": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone226": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone227": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone228": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone229": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone230": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone231": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone232": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone233": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone234": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone235": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone236": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone237": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone238": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone239": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone240": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone241": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"bone242": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"linghun4": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
}
},
"paths": {
"linghun2": {
"position": [
{ "time": 0, "position": 1 },
{ "time": 0.5, "position": 0.832 },
{ "time": 1.5, "position": 0.584 },
{ "time": 4.8333 }
],
"spacing": [
{ "time": 1.3333, "spacing": 6.8 },
{ "time": 2 }
]
},
"linghun3": {
"position": [
{ "time": 0, "position": 1 },
{ "time": 0.5, "position": 0.851 },
{ "time": 1.5, "position": 0.602 },
{ "time": 5.3333 }
],
"spacing": [
{ "time": 0, "spacing": -4 },
{ "time": 3, "spacing": 15.5 },
{ "time": 5.3333, "spacing": 4.3 }
]
},
"linghun4": {
"position": [
{ "time": 0, "position": 1 },
{ "time": 0.5, "position": 0.87 },
{ "time": 1.5, "position": 0.5899 },
{ "time": 5 }
],
"spacing": [
{ "time": 2.6666, "spacing": 5.6 },
{ "time": 5 }
]
},
"lingun": {
"position": [
{ "time": 0, "position": 1 },
{ "time": 0.5, "position": 0.832 },
{ "time": 1.5, "position": 0.5899 },
{ "time": 5.3333 }
],
"spacing": [
{ "time": 0, "spacing": -16.4 },
{ "time": 0.5, "spacing": 6.8 },
{ "time": 4.8333 }
]
}
},
"events": [
{ "time": 0.3333, "name": "special" },
{ "time": 0.8333, "name": "special" },
{ "time": 1.3333, "name": "special" },
{ "time": 1.8333, "name": "special" },
{ "time": 2.3333, "name": "special" },
{ "time": 2.8333, "name": "special" },
{ "time": 3.3333, "name": "special" },
{ "time": 3.8333, "name": "special" },
{ "time": 4.3333, "name": "special" },
{ "time": 4.8333, "name": "special" }
]
}
}
}