Blame view

res/spine/treasure.json 48.2 KB
88cf58a0   zhengshouren   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
  {
  "skeleton": { "hash": "zftVQ3R1OnrIPv/mL2t8s+IRQPY", "spine": "3.4.02", "width": 135.11, "height": 109.46 },
  "bones": [
  	{ "name": "root" },
  	{ "name": "images/BX_0009s_0002_baoxiangzhuzi03", "parent": "root", "length": 7.77, "rotation": -99.09, "x": -44.18, "y": 62.43 },
  	{ "name": "bone", "parent": "images/BX_0009s_0002_baoxiangzhuzi03", "length": 6.14, "rotation": 9.09, "x": 7.77 },
  	{ "name": "bone2", "parent": "bone", "length": 16.91, "rotation": -3.12, "x": 6.14 },
  	{ "name": "images/BX_0009s_0000_baoxiangzhuzi01", "parent": "root", "length": 6.89, "rotation": -57.72, "x": 2.78, "y": 63.04 },
  	{ "name": "bone3", "parent": "images/BX_0009s_0000_baoxiangzhuzi01", "length": 8.1, "rotation": -7.65, "x": 6.89 },
  	{ "name": "bone4", "parent": "bone3", "length": 7.06, "rotation": -24.62, "x": 8.1 },
  	{ "name": "images/BX_0009s_0001_baoxiangzhuzi02", "parent": "root", "length": 7.49, "rotation": -55, "x": 30.41, "y": 64.27 },
  	{ "name": "bone5", "parent": "images/BX_0009s_0001_baoxiangzhuzi02", "length": 7.73, "rotation": -28.14, "x": 7.49 },
  	{ "name": "bone6", "parent": "bone5", "length": 6.51, "rotation": 1.28, "x": 7.73 },
  	{ "name": "bone7", "parent": "bone6", "length": 7.76, "rotation": 10.3, "x": 6.51 },
  	{ "name": "images/BX_0009s_0003_baoxiang01", "parent": "root", "x": -2.84, "y": 1.08 },
  	{ "name": "images/BX_0009s_0004_baoxiang02", "parent": "root", "length": 24.98, "rotation": 63.74, "x": -12.25, "y": 56.29 },
  	{ "name": "images/BX_0009s_0005_baoxiang03", "parent": "root", "x": 33.48, "y": 67.34 },
  	{ "name": "images/BX_0009s_0006_baoxiang04", "parent": "root", "x": 51.76, "y": 62.43 },
  	{ "name": "images/BX_0009s_0007_baoxiang05", "parent": "root", "x": -51.55, "y": 63.66 },
  	{ "name": "images/BX_0009s_0008_baoxiang06", "parent": "root", "length": 17.21, "rotation": 86.93, "x": 11.99, "y": 58.13 },
  	{ "name": "images/BX_0009s_0009_baoxiang07", "parent": "root", "length": 51.28, "rotation": 58.21, "x": -28.94, "y": 61.69 },
  	{ "name": "images/star", "parent": "root", "x": 176.27, "y": 82.36 },
  	{ "name": "images/star2", "parent": "root", "x": 152.06, "y": 104.85 },
  	{ "name": "images/star3", "parent": "root", "x": 193.57, "y": 118.69 }
  ],
  "slots": [
  	{
  		"name": "images/BX_0009s_0009_baoxiang07",
  		"bone": "images/BX_0009s_0009_baoxiang07",
  		"attachment": "images/BX_0009s_0009_baoxiang07"
  	},
  	{
  		"name": "images/BX_0009s_0008_baoxiang06",
  		"bone": "images/BX_0009s_0008_baoxiang06",
  		"attachment": "images/BX_0009s_0008_baoxiang06"
  	},
  	{
  		"name": "images/BX_0009s_0007_baoxiang05",
  		"bone": "images/BX_0009s_0007_baoxiang05",
  		"attachment": "images/BX_0009s_0007_baoxiang05"
  	},
  	{
  		"name": "images/BX_0009s_0006_baoxiang04",
  		"bone": "images/BX_0009s_0006_baoxiang04",
  		"attachment": "images/BX_0009s_0006_baoxiang04"
  	},
  	{
  		"name": "images/BX_0009s_0005_baoxiang03",
  		"bone": "images/BX_0009s_0005_baoxiang03",
  		"attachment": "images/BX_0009s_0005_baoxiang03"
  	},
  	{
  		"name": "images/BX_0009s_0004_baoxiang02",
  		"bone": "images/BX_0009s_0004_baoxiang02",
  		"attachment": "images/BX_0009s_0004_baoxiang02"
  	},
  	{
  		"name": "images/BX_0009s_0003_baoxiang01",
  		"bone": "images/BX_0009s_0003_baoxiang01",
  		"attachment": "images/BX_0009s_0003_baoxiang01"
  	},
  	{
  		"name": "images/BX_0009s_0002_baoxiangzhuzi03",
  		"bone": "images/BX_0009s_0002_baoxiangzhuzi03",
  		"attachment": "images/BX_0009s_0002_baoxiangzhuzi03"
  	},
  	{
  		"name": "images/BX_0009s_0001_baoxiangzhuzi02",
  		"bone": "images/BX_0009s_0001_baoxiangzhuzi02",
  		"attachment": "images/BX_0009s_0001_baoxiangzhuzi02"
  	},
  	{
  		"name": "images/BX_0009s_0000_baoxiangzhuzi01",
  		"bone": "images/BX_0009s_0000_baoxiangzhuzi01",
  		"attachment": "images/BX_0009s_0000_baoxiangzhuzi01"
  	},
  	{ "name": "images/star", "bone": "images/star", "blend": "additive" },
  	{ "name": "images/star3", "bone": "images/star3", "blend": "additive" },
  	{ "name": "images/star2", "bone": "images/star2", "blend": "additive" }
  ],
  "skins": {
  	"default": {
  		"images/BX_0009s_0000_baoxiangzhuzi01": {
  			"images/BX_0009s_0000_baoxiangzhuzi01": {
  				"type": "mesh",
  				"uvs": [ 0, 0, 0, 0.24711, 0, 0.49272, 0, 0.70664, 0, 0.87303, 0, 1, 1, 1, 1, 0.82549, 1, 0.57987, 1, 0.40557, 1, 0.16787, 1, 0 ],
  				"triangles": [ 3, 2, 8, 2, 1, 9, 1, 10, 9, 1, 0, 10, 0, 11, 10, 2, 9, 8, 6, 4, 7, 6, 5, 4, 4, 3, 7, 3, 8, 7 ],
  				"vertices": [ 3, 6, -16.4, -21.97, 0.00248, 5, -15.96, -13.13, 0.03109, 4, -10.67, -10.89, 0.96641, 3, 6, -9.97999, -21.97, 0.03281, 5, -10.12, -15.81, 0.05272, 4, -5.23999, -14.32, 0.91446, 3, 6, -3.59, -21.97, 0.13552, 5, -4.32, -18.46999, 0.11096, 4, 0.15, -17.73, 0.75351, 3, 6, 1.96, -21.97, 0.27632, 5, 0.73, -20.79, 0.13974, 4, 4.85, -20.7, 0.58393, 3, 6, 6.28, -21.97, 0.36988, 5, 4.66, -22.59, 0.1375, 4, 8.51, -23.01, 0.4926, 3, 6, 9.59, -21.97, 0.39621, 5, 7.66, -23.97, 0.13493, 4, 11.3, -24.78, 0.46884, 2, 6, 9.59, 8.02, 0.99797, 5, 20.16, 3.29, 0.00202, 2, 6, 5.05, 8.02, 0.91204, 5, 16.04, 5.17999, 0.08795, 3, 6, -1.33, 8.02, 0.46531, 5, 10.22999, 7.85, 0.51867, 4, 18.09, 6.41, 0.016, 3, 6, -5.86, 8.02, 0.13675, 5, 6.11, 9.72999, 0.72016, 4, 14.25, 8.83, 0.14308, 3, 6, -12.04, 8.02, 0.00191, 5, 0.49, 12.31, 0.591, 4, 9.03, 12.13, 0.40707, 2, 5, -3.46, 14.13, 0.53105, 4, 5.34, 14.46, 0.46894 ],
  				"hull": 12
  			}
  		},
  		"images/BX_0009s_0001_baoxiangzhuzi02": {
  			"images/BX_0009s_0001_baoxiangzhuzi02": {
  				"type": "mesh",
  				"uvs": [ 0, 0, 0, 0.12208, 0, 0.2799, 0, 0.41517, 0, 0.5805, 0, 0.74583, 0, 0.87359, 0, 1, 1, 1, 1, 0.88111, 1, 0.73832, 1, 0.61056, 1, 0.49032, 1, 0.34002, 1, 0.17468, 1, 0 ],
  				"triangles": [ 1, 0, 15, 1, 15, 14, 2, 1, 14, 2, 14, 13, 3, 2, 13, 4, 3, 12, 3, 13, 12, 4, 12, 11, 5, 4, 11, 10, 5, 11, 6, 5, 10, 6, 10, 9, 7, 6, 9, 7, 9, 8 ],
  				"vertices": [ 3, 10, -31.74, -19.35, 6.8E-4, 9, -21.25, -24.71, 0.17218, 7, -15.82, -16.09, 0.82713, 4, 10, -27.92, -20.62, 0.00558, 9, -17.26, -25.28, 0.18722, 8, -8.96, -25.67, 0.00327, 7, -12.52, -18.4, 0.80391, 4, 10, -22.98, -22.27, 0.02826, 9, -12.11, -26.02, 0.24877, 8, -3.79, -26.29, 0.01651, 7, -8.25, -21.39, 0.70644, 4, 10, -18.74, -23.68, 0.06407, 9, -7.69, -26.65, 0.32446, 8, 0.63, -26.82, 0.02735, 7, -4.59, -23.95, 0.58409, 4, 10, -13.57, -25.41, 0.12579, 9, -2.29, -27.42, 0.41871, 8, 6.05, -27.47, 0.02832, 7, -0.12, -27.07, 0.42716, 4, 10, -8.39, -27.13, 0.19145, 9, 3.1, -28.19, 0.48662, 8, 11.47, -28.12, 0.01632, 7, 4.34, -30.2, 0.30559, 4, 10, -4.39, -28.46, 0.22865, 9, 7.28, -28.79, 0.51485, 8, 15.65, -28.62, 0.00701, 7, 7.79, -32.62, 0.24946, 4, 10, -0.43, -29.78, 0.24222, 9, 11.41, -29.38, 0.52375, 8, 19.79, -29.12, 0.00321, 7, 11.21, -35.00999, 0.23079, 4, 10, 13.16, 11, 0.96683, 9, 17.49, 13.18, 0.00518, 8, 24.92, 13.57, 0.02797, 7, 35.87, 0.2, 0, 3, 10, 9.43, 12.24, 0.91406, 9, 13.6, 13.73, 0.03019, 8, 21.02, 14.03, 0.05574, 4, 10, 4.96, 13.73, 0.71204, 9, 8.93999, 14.4, 0.11564, 8, 16.34, 14.6, 0.17132, 7, 28.79, 5.16, 9.8E-4, 4, 10, 0.96, 15.06, 0.46889, 9, 4.76, 14.99, 0.17641, 8, 12.16, 15.1, 0.33782, 7, 25.34, 7.57, 0.01686, 4, 10, -2.79, 16.32, 0.26469, 9, 0.84, 15.56, 0.17075, 8, 8.22, 15.57, 0.49927, 7, 22.09, 9.85, 0.06526, 4, 10, -7.5, 17.89, 0.09915, 9, -4.06, 16.26, 0.10123, 8, 3.29, 16.16, 0.61, 7, 18.02, 12.69, 0.1896, 4, 10, -12.67, 19.61, 0.0214, 9, -9.46, 17.03, 0.03328, 8, -2.10999, 16.81, 0.58569, 7, 13.55, 15.82, 0.35959, 4, 10, -18.14, 21.44, 0, 9, -15.17, 17.84, 0.00951, 8, -7.84, 17.5, 0.58545, 7, 8.83, 19.12999, 0.40503 ],
  				"hull": 16
  			}
  		},
  		"images/BX_0009s_0002_baoxiangzhuzi03": {
  			"images/BX_0009s_0002_baoxiangzhuzi03": {
  				"type": "mesh",
  				"uvs": [ 0, 0, 0, 0.19191, 0, 0.3178, 0, 0.46086, 0, 1, 1, 0.99875, 1, 0.47802, 1, 0.39219, 1, 0.27202, 1, 0.12897, 1, 0 ],
  				"triangles": [ 2, 1, 8, 1, 9, 8, 1, 0, 9, 0, 10, 9, 3, 2, 7, 2, 8, 7, 5, 4, 6, 4, 3, 6, 3, 7, 6 ],
  				"vertices": [ 2, 2, -9.5, -9.38, 0.07869, 1, -0.13, -10.76, 0.9213, 3, 3, -8.21, -9.84, 0.02697, 2, -2.59999, -9.38, 0.28595, 1, 6.68, -9.67, 0.68705, 3, 3, -3.69, -9.59, 0.1696, 2, 1.93, -9.38, 0.46438, 1, 11.16, -8.95, 0.36601, 3, 3, 1.45, -9.31, 0.56725, 2, 7.08, -9.38, 0.35094, 1, 16.24, -8.14, 0.08179, 1, 3, 20.83, -8.26, 1, 2, 3, 19.64, 12.7, 0.99972, 2, 26.44, 11.61, 2.6E-4, 3, 3, 0.92, 11.68, 0.58784, 2, 7.69, 11.61, 0.32368, 1, 13.54, 12.68, 0.08847, 3, 3, -2.16, 11.51, 0.37526, 2, 4.6, 11.61, 0.41533, 1, 10.47999, 12.19, 0.2094, 3, 3, -6.48, 11.28, 0.12989, 2, 0.28, 11.61, 0.37978, 1, 6.21, 11.51, 0.49031, 3, 3, -11.62, 11, 0.01686, 2, -4.86, 11.61, 0.16643, 1, 1.13, 10.7, 0.8167, 2, 2, -9.5, 11.61, 0.07938, 1, -3.45, 9.96, 0.9206 ],
  				"hull": 11
  			}
  		},
  		"images/BX_0009s_0003_baoxiang01": {
  			"images/BX_0009s_0003_baoxiang01": {
  				"type": "mesh",
  				"uvs": [ 0.39413, 0, 0, 0, 0, 0.26567, 0, 0.69055, 0, 1, 0.39177, 1, 1, 1, 1, 0.69586, 1, 0.22849, 1, 0, 0.39177, 0.24443, 0.39413, 0.68524 ],
  				"triangles": [ 0, 9, 8, 10, 1, 0, 10, 0, 8, 2, 1, 10, 7, 11, 10, 2, 10, 11, 3, 2, 11, 7, 10, 8, 5, 4, 3, 11, 5, 3, 5, 11, 7, 5, 7, 6 ],
  				"vertices": [ -16.74, 59.13, -69.94999, 59.13, -69.94999, 43.19, -69.94999, 17.69, -69.94999, -0.86, -17.06, -0.86, 65.04, -0.86, 65.04, 17.37999, 65.04, 45.42, 65.04, 59.13, -17.06, 44.46, -16.74, 18.01 ],
  				"hull": 10
  			}
  		},
  		"images/BX_0009s_0004_baoxiang02": {
  			"images/BX_0009s_0004_baoxiang02": { "x": 18.16, "y": 0.03, "rotation": -63.74, "width": 39, "height": 47 }
  		},
  		"images/BX_0009s_0005_baoxiang03": {
  			"images/BX_0009s_0005_baoxiang03": { "x": -1.86, "y": -2.14, "width": 22, "height": 38 }
  		},
  		"images/BX_0009s_0006_baoxiang04": {
  			"images/BX_0009s_0006_baoxiang04": { "x": -1.74, "y": -4.69, "width": 17, "height": 51 }
  		},
  		"images/BX_0009s_0007_baoxiang05": {
  			"images/BX_0009s_0007_baoxiang05": { "x": 4.91, "y": -6.46, "width": 25, "height": 34 }
  		},
  		"images/BX_0009s_0008_baoxiang06": {
  			"images/BX_0009s_0008_baoxiang06": { "x": 10.68, "y": 12.33, "rotation": -86.93, "width": 82, "height": 33 }
  		},
  		"images/BX_0009s_0009_baoxiang07": {
  			"images/BX_0009s_0009_baoxiang07": {
  				"type": "mesh",
  				"uvs": [ 0, 0, 0, 1, 0.36082, 1, 0.68775, 1, 1, 1, 1, 0, 0.68252, 0, 0.41313, 0.00434 ],
  				"triangles": [ 2, 1, 0, 7, 2, 0, 3, 6, 5, 7, 6, 3, 2, 7, 3, 3, 5, 4 ],
  				"vertices": [ 17.62, 62.64, -24.87, 36.31, -0.16, -3.56, 22.22, -39.68, 43.6, -74.18, 86.1, -47.85, 64.36, -12.76, 45.73, 16.87999 ],
  				"hull": 8
  			},
  			"images/BX_0009s_0009_baoxiang08": {
  				"type": "mesh",
  				"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  				"triangles": [ 1, 2, 3, 1, 3, 0 ],
  				"vertices": [ 47.13, -78.14, -25.03, 38.3, 3.86, 56.21, 76.03, -60.23 ],
  				"hull": 4
  			},
  			"images/BX_0009s_0009_baoxiang09": {
  				"type": "mesh",
  				"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  				"triangles": [ 1, 2, 3, 1, 3, 0 ],
  				"vertices": [ 48.06, -80.18, -25.68, 38.81, 14.26, 63.57, 88.01, -55.42 ],
  				"hull": 4
  			}
  		},
  		"images/star": {
  			"images/star": { "x": 1.56, "y": 2.35, "width": 65, "height": 63 }
  		},
  		"images/star2": {
  			"images/star": { "x": 1.56, "y": 2.35, "width": 65, "height": 63 }
  		},
  		"images/star3": {
  			"images/star": { "x": 1.56, "y": 2.35, "width": 65, "height": 63 }
  		}
  	}
  },
  "animations": {
  	"idle": {
  		"slots": {
  			"images/BX_0009s_0009_baoxiang07": {
  				"attachment": [
  					{ "time": 0, "name": "images/BX_0009s_0009_baoxiang08" }
  				]
  			},
  			"images/star": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" }
  				],
  				"attachment": [
  					{ "time": 0, "name": "images/star" }
  				]
  			},
  			"images/star2": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" }
  				],
  				"attachment": [
  					{ "time": 0, "name": "images/star" }
  				]
  			},
  			"images/star3": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" }
  				],
  				"attachment": [
  					{ "time": 0, "name": "images/star" }
  				]
  			}
  		},
  		"bones": {
  			"root": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0003_baoxiang01": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 1, "x": 1.044, "y": 0.954 },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0009_baoxiang07": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 1, "angle": 0.87 },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 1, "x": -1.92, "y": -3.07 },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 1, "x": 1, "y": 1.043 },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0002_baoxiangzhuzi03": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 1, "x": 0.35, "y": -5.26 },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"bone": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"bone2": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 1, "angle": -14.44 },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0000_baoxiangzhuzi01": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 1, "x": 0.35, "y": -3.15 },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"bone3": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"bone4": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 1, "angle": 30.94 },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0001_baoxiangzhuzi02": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 1, "x": 0.35, "y": -3.15 },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"bone5": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"bone6": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 1, "angle": -13.15 },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"bone7": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 1, "angle": -13.15 },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0005_baoxiang03": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 1, "angle": -13.51 },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 1, "x": 0.8, "y": -6.54 },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0006_baoxiang04": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 1, "angle": -3.38 },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 1, "x": 0.71, "y": -6.6 },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0004_baoxiang02": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 1, "angle": -5.15 },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 1, "x": -0.77, "y": -5.98 },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0008_baoxiang06": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1, "angle": 0, "curve": "stepped" },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 1, "x": 0, "y": -3.71 },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0007_baoxiang05": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 1, "angle": -5.55 },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 1, "x": -0.8, "y": -2.5 },
  					{ "time": 2, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"images/star": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 2, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": -120.87, "y": -13.88, "curve": "stepped" },
  					{ "time": 2, "x": -120.87, "y": -13.88 }
  				],
  				"scale": [
  					{ "time": 0, "x": 0.722, "y": 0.722, "curve": "stepped" },
  					{ "time": 2, "x": 0.722, "y": 0.722 }
  				]
  			},
  			"images/star2": {
  				"rotate": [
  					{ "time": 0, "angle": -44.21, "curve": "stepped" },
  					{ "time": 2, "angle": -44.21 }
  				],
  				"translate": [
  					{ "time": 0, "x": -168.27, "y": -38.14, "curve": "stepped" },
  					{ "time": 2, "x": -168.27, "y": -38.14 }
  				],
  				"scale": [
  					{ "time": 2, "x": 1, "y": 1 }
  				]
  			},
  			"images/star3": {
  				"rotate": [
  					{ "time": 0, "angle": -42.14, "curve": "stepped" },
  					{ "time": 2, "angle": -42.14 }
  				],
  				"translate": [
  					{ "time": 0, "x": -176.66, "y": -40.16, "curve": "stepped" },
  					{ "time": 2, "x": -176.66, "y": -40.16 }
  				],
  				"scale": [
  					{ "time": 0, "x": 0.703, "y": 0.703, "curve": "stepped" },
  					{ "time": 2, "x": 0.703, "y": 0.703 }
  				]
  			}
  		},
  		"drawOrder": [
  			{
  				"time": 0,
  				"offsets": [
  					{ "slot": "images/BX_0009s_0009_baoxiang07", "offset": 12 }
  				]
  			}
  		]
  	},
  	"keep": {
  		"slots": {
  			"images/star": {
  				"color": [
  					{ "time": 0.4, "color": "ffffff00" },
  					{ "time": 0.6666, "color": "ffffffff" },
  					{ "time": 1.1666, "color": "ffffff00" }
  				],
  				"attachment": [
  					{ "time": 0.4, "name": "images/star" },
  					{ "time": 0.6666, "name": "images/star" }
  				]
  			},
  			"images/star2": {
  				"color": [
  					{ "time": 0.2, "color": "ffffff00" },
  					{ "time": 0.8666, "color": "ffffffff" },
  					{ "time": 1.5, "color": "ffffff00" }
  				],
  				"attachment": [
  					{ "time": 0.2, "name": "images/star" }
  				]
  			},
  			"images/star3": {
  				"color": [
  					{ "time": 0.8333, "color": "ffffff00" },
  					{ "time": 1, "color": "ffffffff" },
  					{ "time": 1.3333, "color": "ffffff00" }
  				],
  				"attachment": [
  					{ "time": 0.8333, "name": "images/star" },
  					{ "time": 1, "name": "images/star" }
  				]
  			}
  		},
  		"bones": {
  			"root": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2, "angle": 0, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0003_baoxiang01": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2, "angle": 0, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.6, "x": 1.042, "y": 0.975 },
  					{ "time": 1.2, "x": 1.038, "y": 1.029 },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0009_baoxiang07": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6, "angle": -3.14 },
  					{ "time": 1.2, "angle": -0.32 },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6, "x": -4.84, "y": -6.24 },
  					{ "time": 1.2, "x": -4.48, "y": 1.01 },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.6, "x": 1, "y": 0.996 },
  					{ "time": 1.2, "x": 1, "y": 1.023 },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0002_baoxiangzhuzi03": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2, "angle": 0, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6, "x": 0.35, "y": -5.26 },
  					{ "time": 1.2, "x": 0.15, "y": -2.25 },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0 },
  					{ "time": 1.2, "angle": 4.22 },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone2": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6, "angle": -14.44 },
  					{ "time": 1.2, "angle": 4.22 },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0000_baoxiangzhuzi01": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2, "angle": 0, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6, "x": 0.35, "y": -3.15 },
  					{ "time": 1.2, "x": 0.15, "y": -1.35 },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone3": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0 },
  					{ "time": 1.2, "angle": 4.36 },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone4": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6, "angle": 30.94 },
  					{ "time": 1.2, "angle": 4.36 },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0001_baoxiangzhuzi02": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2, "angle": 0, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6, "x": 0.35, "y": -3.15 },
  					{ "time": 1.2, "x": 0.15, "y": -1.35 },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone5": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2, "angle": 0, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone6": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6, "angle": -13.15 },
  					{ "time": 1.2, "angle": 5.13 },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"bone7": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6, "angle": -13.15 },
  					{ "time": 1.2, "angle": 5.13 },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0005_baoxiang03": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6, "angle": -13.51 },
  					{ "time": 1.2, "angle": -10.4 },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6, "x": 0.8, "y": -6.54 },
  					{ "time": 1.2, "x": 0.34, "y": -2.8 },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0006_baoxiang04": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6, "angle": -3.38 },
  					{ "time": 1.2, "angle": -15.86 },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6, "x": 0.71, "y": -6.6 },
  					{ "time": 1.2, "x": 0.62, "y": -4.13 },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0004_baoxiang02": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.3333, "angle": -5.15 },
  					{ "time": 0.6666, "angle": -9.09 },
  					{ "time": 1.1666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.3333, "x": -0.77, "y": -5.98 },
  					{ "time": 0.6666, "x": 0, "y": -4.18 },
  					{ "time": 1.1666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.1666, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0008_baoxiang06": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.6, "angle": 0, "curve": "stepped" },
  					{ "time": 1.2, "angle": 0, "curve": "stepped" },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6, "x": 0, "y": -3.71 },
  					{ "time": 1.2, "x": 0, "y": -1.59 },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0007_baoxiang05": {
  				"rotate": [
  					{ "time": 0, "angle": 0 },
  					{ "time": 0.6, "angle": -5.55 },
  					{ "time": 1.2, "angle": -2.38 },
  					{ "time": 2.1333, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0 },
  					{ "time": 0.6, "x": -0.8, "y": -2.5 },
  					{ "time": 1.2, "x": -0.34, "y": -1.07 },
  					{ "time": 2.1333, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 2.1333, "x": 1, "y": 1 }
  				]
  			},
  			"images/star": {
  				"rotate": [
  					{ "time": 0.4, "angle": 0 },
  					{ "time": 0.6666, "angle": -13.15 },
  					{ "time": 1.1666, "angle": -68.47 }
  				],
  				"translate": [
  					{ "time": 0.4, "x": -120.87, "y": -13.88, "curve": "stepped" },
  					{ "time": 0.6666, "x": -120.87, "y": -13.88 }
  				],
  				"scale": [
  					{ "time": 0.4, "x": 0.722, "y": 0.722 },
  					{ "time": 0.6666, "x": 0.523, "y": 0.523 },
  					{ "time": 1.1666, "x": 0.474, "y": 0.474 }
  				]
  			},
  			"images/star2": {
  				"rotate": [
  					{ "time": 0.2, "angle": -44.21 }
  				],
  				"translate": [
  					{ "time": 0.2, "x": -168.27, "y": -38.14 }
  				]
  			},
  			"images/star3": {
  				"rotate": [
  					{ "time": 0.8333, "angle": -42.14 }
  				],
  				"translate": [
  					{ "time": 0.8333, "x": -176.66, "y": -40.16 }
  				],
  				"scale": [
  					{ "time": 0.8333, "x": 0.703, "y": 0.703 }
  				]
  			}
  		}
  	},
  	"open": {
  		"slots": {
  			"images/BX_0009s_0009_baoxiang07": {
  				"attachment": [
  					{ "time": 0, "name": "images/BX_0009s_0009_baoxiang08" },
  					{ "time": 0.5, "name": "images/BX_0009s_0009_baoxiang08" },
  					{ "time": 0.5333, "name": "images/BX_0009s_0009_baoxiang09" },
  					{ "time": 0.5666, "name": "images/BX_0009s_0009_baoxiang07" }
  				]
  			},
  			"images/star": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" }
  				],
  				"attachment": [
  					{ "time": 0, "name": "images/star" }
  				]
  			},
  			"images/star2": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" }
  				],
  				"attachment": [
  					{ "time": 0, "name": "images/star" }
  				]
  			},
  			"images/star3": {
  				"color": [
  					{ "time": 0, "color": "ffffff00" }
  				],
  				"attachment": [
  					{ "time": 0, "name": "images/star" }
  				]
  			}
  		},
  		"bones": {
  			"root": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1 },
  					{ "time": 0.2666, "x": 1.029, "y": 0.881 },
  					{ "time": 0.3666, "x": 1.039, "y": 0.881, "curve": "stepped" },
  					{ "time": 0.5, "x": 1.039, "y": 0.881 },
  					{ "time": 0.5333, "x": 1.012, "y": 0.907 },
  					{ "time": 0.6333, "x": 0.931, "y": 0.985 },
  					{ "time": 0.7666, "x": 0.996, "y": 0.854 }
  				]
  			},
  			"bone7": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0004_baoxiang02": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0 },
  					{ "time": 0.6, "angle": 4 },
  					{ "time": 0.6666, "angle": -2.96 },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0 },
  					{ "time": 0.6, "x": 2.93, "y": 5.95 },
  					{ "time": 0.6666, "x": -0.69, "y": -1.97 },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"bone6": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0005_baoxiang03": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0 },
  					{ "time": 0.6, "x": 0, "y": 7.71 },
  					{ "time": 0.6666, "x": 0, "y": 0.53 },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0007_baoxiang05": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0 },
  					{ "time": 0.6, "x": 0, "y": 4.38 },
  					{ "time": 0.6666, "x": 0, "y": -1.78 },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0008_baoxiang06": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0 },
  					{ "time": 0.6666, "x": 0.22, "y": 4.12 },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"images/star2": {
  				"rotate": [
  					{ "time": 0, "angle": -44.21, "curve": "stepped" },
  					{ "time": 0.5333, "angle": -44.21, "curve": "stepped" },
  					{ "time": 0.7666, "angle": -44.21 }
  				],
  				"translate": [
  					{ "time": 0, "x": -168.27, "y": -38.14, "curve": "stepped" },
  					{ "time": 0.5333, "x": -168.27, "y": -38.14, "curve": "stepped" },
  					{ "time": 0.7666, "x": -168.27, "y": -38.14 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"bone3": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0001_baoxiangzhuzi02": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0 },
  					{ "time": 0.6333, "angle": 10.9 },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"images/star3": {
  				"rotate": [
  					{ "time": 0, "angle": -42.14, "curve": "stepped" },
  					{ "time": 0.5333, "angle": -42.14, "curve": "stepped" },
  					{ "time": 0.7666, "angle": -42.14 }
  				],
  				"translate": [
  					{ "time": 0, "x": -176.66, "y": -40.16, "curve": "stepped" },
  					{ "time": 0.5333, "x": -176.66, "y": -40.16, "curve": "stepped" },
  					{ "time": 0.7666, "x": -176.66, "y": -40.16 }
  				],
  				"scale": [
  					{ "time": 0, "x": 0.703, "y": 0.703, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0.703, "y": 0.703, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0.703, "y": 0.703 }
  				]
  			},
  			"images/BX_0009s_0002_baoxiangzhuzi03": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0 },
  					{ "time": 0.6, "angle": -15.71 },
  					{ "time": 0.6666, "angle": 8.07 },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0006_baoxiang04": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0 },
  					{ "time": 0.6, "x": 0, "y": 7.71 },
  					{ "time": 0.7, "x": 0, "y": -4.96 },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0000_baoxiangzhuzi01": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0 },
  					{ "time": 0.6, "angle": 9.16 },
  					{ "time": 0.7, "angle": -0.96 },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"images/star": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": -120.87, "y": -13.88, "curve": "stepped" },
  					{ "time": 0.5333, "x": -120.87, "y": -13.88, "curve": "stepped" },
  					{ "time": 0.7666, "x": -120.87, "y": -13.88 }
  				],
  				"scale": [
  					{ "time": 0, "x": 0.722, "y": 0.722, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0.722, "y": 0.722, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0.722, "y": 0.722 }
  				]
  			},
  			"bone4": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"bone": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0003_baoxiang01": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"images/BX_0009s_0009_baoxiang07": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"bone5": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			},
  			"bone2": {
  				"rotate": [
  					{ "time": 0, "angle": 0, "curve": "stepped" },
  					{ "time": 0.5333, "angle": 0, "curve": "stepped" },
  					{ "time": 0.7666, "angle": 0 }
  				],
  				"translate": [
  					{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  					{ "time": 0.7666, "x": 0, "y": 0 }
  				],
  				"scale": [
  					{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  					{ "time": 0.7666, "x": 1, "y": 1 }
  				]
  			}
  		},
  		"drawOrder": [
  			{
  				"time": 0,
  				"offsets": [
  					{ "slot": "images/BX_0009s_0009_baoxiang07", "offset": 12 }
  				]
  			},
  			{ "time": 0.5333 },
  			{ "time": 0.7666 }
  		]
  	}
  }
  }