duanwei.json 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064
  1. {
  2. "skeleton": {
  3. "hash": "SntfxXm6IslwemXE+wrFMiue1Og",
  4. "spine": "3.8.99",
  5. "x": -738.93,
  6. "y": -137.24,
  7. "width": 1444,
  8. "height": 1306,
  9. "images": "./images/",
  10. "audio": "C:/Users/QianHu002/Desktop/动画/火线枪战躲猫猫/段位结算/images"
  11. },
  12. "bones": [
  13. { "name": "root" },
  14. { "name": "a_star1", "parent": "root" },
  15. { "name": "js_qz", "parent": "a_star1", "x": -1.96, "y": 708.18, "color": "ff0000ff" },
  16. { "name": "js_h", "parent": "js_qz", "x": 6.58, "y": -311.06 },
  17. { "name": "js_y", "parent": "js_qz", "x": -6.45, "y": -205.85 },
  18. { "name": "js_hg", "parent": "js_qz", "x": -13.46, "y": -226.89 },
  19. { "name": "js_qz3a", "parent": "js_qz", "length": 99.85, "rotation": -90, "x": 0.57, "y": -11.31 },
  20. { "name": "js_qz3b", "parent": "js_qz3a", "length": 99.85, "x": 99.85 },
  21. { "name": "js_qz3c", "parent": "js_qz3b", "length": 99.85, "x": 99.85 },
  22. { "name": "js_qz3d", "parent": "js_qz3c", "length": 99.85, "x": 99.85 },
  23. { "name": "js_zhang", "parent": "js_qz", "x": -3.06, "y": -41.83, "color": "ffb200ff" },
  24. {
  25. "name": "js_zcb",
  26. "parent": "js_zhang",
  27. "length": 77.23,
  28. "rotation": 152.42,
  29. "x": -20.4,
  30. "y": -74.61,
  31. "color": "ffb200ff"
  32. },
  33. {
  34. "name": "js_zcb3",
  35. "parent": "js_zcb",
  36. "length": 82.04,
  37. "rotation": -15.7,
  38. "x": 80.74,
  39. "y": -0.13,
  40. "color": "ffb200ff"
  41. },
  42. {
  43. "name": "js_zcb2",
  44. "parent": "js_zcb3",
  45. "length": 106.42,
  46. "rotation": -13.42,
  47. "x": 86.92,
  48. "y": -2,
  49. "color": "ffb200ff"
  50. },
  51. {
  52. "name": "js_ycb",
  53. "parent": "js_zhang",
  54. "length": 84.23,
  55. "rotation": 26.43,
  56. "x": 20.74,
  57. "y": -74.71,
  58. "color": "ffb200ff"
  59. },
  60. {
  61. "name": "js_ycb3",
  62. "parent": "js_ycb",
  63. "length": 94.12,
  64. "rotation": 13.31,
  65. "x": 84.81,
  66. "y": 2.15,
  67. "color": "ffb200ff"
  68. },
  69. {
  70. "name": "js_ycb2",
  71. "parent": "js_ycb3",
  72. "length": 100.76,
  73. "rotation": 15.13,
  74. "x": 96.41,
  75. "y": 2.07,
  76. "color": "ffb200ff"
  77. },
  78. { "name": "l_star1", "parent": "js_qz", "x": -102.41, "y": -275.17, "color": "fff763ff" },
  79. { "name": "l_star2", "parent": "js_qz", "x": 3.85, "y": -309.81, "color": "fff763ff" },
  80. { "name": "l_star3", "parent": "js_qz", "x": 106.71, "y": -274.83, "color": "fff763ff" },
  81. { "name": "js_qz2", "parent": "js_zhang", "x": 4.53, "y": -85.09, "color": "0033ffff" },
  82. { "name": "l_star2_1", "parent": "js_qz", "x": 3.85, "y": -309.81, "color": "fff763ff" },
  83. { "name": "l_star3_1", "parent": "js_qz", "x": 106.71, "y": -274.83, "color": "fff763ff" },
  84. { "name": "l_star1_1", "parent": "js_qz", "x": -102.41, "y": -275.17, "color": "fff763ff" }
  85. ],
  86. "slots": [
  87. { "name": "js_y", "bone": "js_y", "attachment": "js_y" },
  88. { "name": "js_h", "bone": "js_h", "attachment": "js_h" },
  89. { "name": "js_qz", "bone": "js_qz3a", "attachment": "js_qz" },
  90. { "name": "js_zcb", "bone": "js_zcb2", "attachment": "js_zcb" },
  91. { "name": "js_ycb", "bone": "js_ycb2", "attachment": "js_ycb" },
  92. { "name": "js_zhang", "bone": "js_zhang", "attachment": "js_zhang" },
  93. { "name": "bqht", "bone": "js_qz2", "attachment": "bqht" },
  94. { "name": "ryhj", "bone": "js_qz2", "attachment": "ryhj" },
  95. { "name": "sybj", "bone": "js_qz2", "attachment": "sybj" },
  96. { "name": "yhzs", "bone": "js_qz2", "attachment": "yhzs" },
  97. { "name": "yyby", "bone": "js_qz2", "attachment": "yyby" },
  98. { "name": "qqqt", "bone": "js_qz2", "attachment": "qqqt" },
  99. { "name": "txwd", "bone": "js_qz2", "attachment": "txwd" },
  100. { "name": "ygbz", "bone": "js_qz2", "attachment": "ygbz" },
  101. { "name": "zzwz", "bone": "js_qz2", "attachment": "zzwz" },
  102. { "name": "djds", "bone": "js_qz2", "attachment": "djds" },
  103. { "name": "zqwz", "bone": "js_qz2", "attachment": "zqwz" },
  104. { "name": "zzxy", "bone": "js_qz2", "attachment": "zzxy" },
  105. { "name": "bqht_en", "bone": "js_qz2", "attachment": "bqht_en" },
  106. { "name": "ryhj_en", "bone": "js_qz2", "attachment": "ryhj_en" },
  107. { "name": "sybj_en", "bone": "js_qz2", "attachment": "sybj_en" },
  108. { "name": "yhzs_en", "bone": "js_qz2", "attachment": "yhzs_en" },
  109. { "name": "yyby_en", "bone": "js_qz2", "attachment": "yyby_en" },
  110. { "name": "qqqt_en", "bone": "js_qz2", "attachment": "qqqt_en" },
  111. { "name": "txwd_en", "bone": "js_qz2", "attachment": "txwd_en" },
  112. { "name": "ygbz_en", "bone": "js_qz2", "attachment": "ygbz_en" },
  113. { "name": "zzwz_en", "bone": "js_qz2", "attachment": "zzwz_en" },
  114. { "name": "djds_en", "bone": "js_qz2", "attachment": "djds_en" },
  115. { "name": "zqwz_en", "bone": "js_qz2", "attachment": "zqwz_en" },
  116. { "name": "zzxy_en", "bone": "js_qz2", "attachment": "zzxy_en" },
  117. { "name": "l_star3", "bone": "l_star3", "attachment": "a_star3" },
  118. { "name": "l_star3_1", "bone": "l_star3_1", "attachment": "a_star3" },
  119. { "name": "l_star2", "bone": "l_star2", "attachment": "a_star2" },
  120. { "name": "l_star2_1", "bone": "l_star2_1", "attachment": "a_star2" },
  121. { "name": "l_star1", "bone": "l_star1", "attachment": "a_star1" },
  122. { "name": "l_star1_1", "bone": "l_star1_1" },
  123. { "name": "a_star3", "bone": "a_star1" },
  124. { "name": "a_star2", "bone": "a_star1" },
  125. { "name": "a_star1", "bone": "a_star1" },
  126. { "name": "js_hg", "bone": "js_hg", "attachment": "js_hg" },
  127. { "name": "js_bg", "bone": "js_hg", "attachment": "js_bg" },
  128. { "name": "di", "bone": "root" }
  129. ],
  130. "skins": [
  131. {
  132. "name": "default",
  133. "attachments": {
  134. "js_bg": {
  135. "js_bg": { "x": 7, "y": -4.53, "width": 1427, "height": 1080 }
  136. },
  137. "js_h": {
  138. "js_h": { "x": 5.96, "y": 78.64, "width": 1183, "height": 1078 }
  139. },
  140. "js_hg": {
  141. "js_hg": { "x": -10, "y": 34.47, "width": 1427, "height": 1306 }
  142. },
  143. "js_qz": {
  144. "js_qz": {
  145. "type": "mesh",
  146. "uvs": [ 0.08975, 0.02379, 0.10541, 0.03318, 0.12125, 0.03117, 0.18889, 0.05002, 0.2447, 0.08094, 0.28571, 0.08883, 0.39142, 0.08883, 0.49713, 0.08883, 0.60284, 0.08883, 0.70854, 0.08884, 0.72008, 0.08453, 0.81538, 0.06563, 0.88315, 0.02873, 0.8902, 0.04157, 0.89565, 0.04109, 0.92291, 0.01482, 0.94416, 0.00558, 0.94719, 0.015, 0.97176, 0.00261, 0.99897, 0.03198, 1, 0.09949, 1, 0.11473, 0.99781, 0.13284, 0.96761, 0.14873, 0.96652, 0.16438, 0.92216, 0.17238, 0.89745, 0.16284, 0.88887, 0.16885, 0.8912, 0.20663, 0.89136, 0.37959, 0.89003, 0.50019, 0.88615, 0.57587, 0.88455, 0.63129, 0.89665, 0.77412, 0.89611, 0.82872, 0.86307, 0.82876, 0.81945, 0.84393, 0.71931, 0.91082, 0.65508, 0.94822, 0.50332, 1, 0.48909, 1, 0.48571, 0.99816, 0.42021, 0.9756, 0.33813, 0.9443, 0.32964, 0.94725, 0.20121, 0.85714, 0.18643, 0.84418, 0.17496, 0.83867, 0.17052, 0.83742, 0.11276, 0.83733, 0.10856, 0.82773, 0.10388, 0.68927, 0.1035, 0.56319, 0.11006, 0.37003, 0.11339, 0.31437, 0.11811, 0.25602, 0.11841, 0.17415, 0.11107, 0.1632, 0.08876, 0.16275, 0.08042, 0.17193, 0.03282, 0.17098, 0.02833, 0.14748, 0.02089, 0.14185, 2.0E-5, 0.14068, 0, 0.13534, 0, 0.03118, 0.00491, 0.02305, 0.03084, 0.00627, 0.04857, 0.01436, 0.05464, 0.01143, 0.06375, 0.00266, 0.08525, 0.02111, 0.7157, 0.52523, 0.24338, 0.68587, 0.47533, 0.81416, 0.44311, 0.4399, 0.59027, 0.32967, 0.24, 0.35838, 0.57395, 0.74605, 0.34512, 0.69803 ],
  147. "triangles": [ 74, 79, 75, 78, 74, 75, 43, 79, 74, 79, 43, 44, 38, 78, 37, 42, 43, 74, 40, 41, 74, 78, 40, 74, 42, 74, 41, 78, 39, 40, 38, 39, 78, 30, 72, 29, 31, 72, 30, 32, 72, 31, 73, 77, 79, 73, 52, 77, 51, 52, 73, 78, 76, 72, 48, 49, 50, 33, 35, 32, 32, 36, 72, 34, 35, 33, 50, 51, 48, 73, 48, 51, 47, 48, 73, 35, 36, 32, 37, 78, 72, 46, 47, 73, 45, 46, 73, 36, 37, 72, 79, 44, 73, 44, 45, 73, 75, 77, 6, 75, 7, 76, 75, 79, 77, 78, 75, 76, 54, 55, 77, 53, 54, 77, 52, 53, 77, 58, 1, 57, 58, 59, 61, 60, 61, 59, 76, 9, 72, 77, 55, 4, 20, 18, 19, 17, 18, 20, 69, 70, 71, 13, 14, 26, 14, 15, 25, 23, 15, 17, 57, 1, 2, 27, 11, 13, 68, 69, 71, 3, 56, 2, 4, 56, 3, 28, 10, 11, 75, 6, 7, 15, 16, 17, 13, 11, 12, 62, 66, 67, 66, 62, 65, 68, 62, 67, 20, 23, 17, 58, 71, 0, 58, 0, 1, 14, 25, 26, 25, 15, 23, 27, 13, 26, 71, 61, 68, 29, 10, 28, 27, 28, 11, 72, 9, 10, 29, 72, 10, 77, 4, 5, 6, 77, 5, 76, 7, 8, 76, 8, 9, 21, 22, 20, 22, 23, 20, 24, 25, 23, 65, 62, 64, 62, 63, 64, 61, 62, 68, 58, 61, 71, 56, 57, 2, 4, 55, 56 ],
  148. "vertices": [ 1, 2, -341.93, 35.62, 1, 1, 2, -328.84, 31.29, 1, 1, 2, -315.6, 32.22, 1, 1, 2, -259.05, 23.53, 1, 1, 2, -212.39, 9.27, 1, 1, 2, -178.11, 5.64, 1, 1, 2, -89.74, 5.64, 1, 2, 2, -1.37, 5.63, 0.99996, 7, -116.79, -1.94, 4.0E-5, 1, 2, 87.01, 5.63, 1, 1, 2, 175.38, 5.63, 1, 1, 2, 185.02, 7.62, 1, 1, 2, 264.7, 16.33, 1, 1, 2, 321.35, 33.34, 1, 1, 2, 327.24, 27.42, 1, 1, 2, 331.8, 27.64, 1, 1, 2, 354.59, 39.75, 1, 1, 2, 372.35, 44.01, 1, 1, 2, 374.89, 39.67, 1, 1, 2, 395.43, 45.38, 1, 1, 2, 418.17, 31.84, 1, 1, 2, 419.04, 0.72, 1, 1, 2, 419.04, -6.31, 1, 1, 2, 417.2, -14.65, 1, 1, 2, 391.96, -21.98, 1, 1, 2, 391.05, -29.2, 1, 1, 2, 353.96, -32.88, 1, 1, 2, 333.3, -28.48, 1, 1, 2, 326.13, -31.25, 1, 5, 2, 328.08, -48.67, 0.09593, 6, 37.36, 327.51, 0.50509, 7, -62.49, 327.51, 0.24245, 8, -162.34, 327.51, 0.13827, 9, -262.19, 327.51, 0.01826, 5, 2, 328.22, -128.41, 0.06839, 6, 117.1, 327.64, 0.37302, 7, 17.25, 327.64, 0.26462, 8, -82.6, 327.64, 0.22821, 9, -182.45, 327.64, 0.06575, 5, 2, 327.1, -184, 0.04984, 6, 172.69, 326.52, 0.27236, 7, 72.84, 326.52, 0.26082, 8, -27.01, 326.52, 0.29903, 9, -126.86, 326.52, 0.11795, 5, 2, 323.86, -218.89, 0.03956, 6, 207.58, 323.28, 0.21292, 7, 107.73, 323.28, 0.24773, 8, 7.88, 323.28, 0.34087, 9, -91.97, 323.28, 0.15892, 5, 2, 322.52, -244.44, 0.03278, 6, 233.13, 321.95, 0.17235, 7, 133.28, 321.95, 0.23359, 8, 33.43, 321.95, 0.3687, 9, -66.42, 321.95, 0.19258, 5, 2, 332.63, -310.28, 0.0235, 6, 298.97, 332.06, 0.11506, 7, 199.12, 332.06, 0.20515, 8, 99.27, 332.06, 0.40542, 9, -0.57, 332.06, 0.25086, 5, 2, 332.19, -335.45, 0.02281, 6, 324.15, 331.61, 0.11076, 7, 224.3, 331.61, 0.20252, 8, 124.45, 331.61, 0.4079, 9, 24.6, 331.61, 0.25601, 5, 2, 304.56, -335.47, 0.02211, 6, 324.16, 303.99, 0.10702, 7, 224.31, 303.99, 0.19923, 8, 124.46, 303.99, 0.40874, 9, 24.61, 303.99, 0.2629, 5, 2, 268.09, -342.47, 0.01904, 6, 331.16, 267.52, 0.09034, 7, 231.31, 267.52, 0.18353, 8, 131.46, 267.52, 0.41155, 9, 31.61, 267.52, 0.29554, 5, 2, 184.38, -373.3, 0.00849, 6, 362, 183.8, 0.03338, 7, 262.15, 183.8, 0.10441, 8, 162.3, 183.8, 0.37807, 9, 62.45, 183.8, 0.47565, 5, 2, 130.68, -390.54, 0.00357, 6, 379.23, 130.11, 0.00971, 7, 279.38, 130.11, 0.0474, 8, 179.53, 130.11, 0.27952, 9, 79.68, 130.11, 0.6598, 2, 2, 3.81, -414.41, 0, 9, 103.56, 3.23, 1, 2, 8, 203.41, -8.66, 3.0E-4, 9, 103.56, -8.66, 0.9997, 3, 2, -10.91, -413.56, 0, 8, 202.56, -11.49, 4.9E-4, 9, 102.71, -11.49, 0.99951, 5, 2, -65.67, -403.17, 0, 6, 391.86, -66.24, 0.0026, 7, 292.01, -66.24, 0.00615, 8, 192.16, -66.24, 0.08751, 9, 92.31, -66.24, 0.90375, 5, 2, -134.29, -388.74, 0, 6, 377.43, -134.86, 0.02572, 7, 277.58, -134.86, 0.05474, 8, 177.73, -134.86, 0.30754, 9, 77.88, -134.86, 0.61201, 5, 2, -141.39, -390.1, 0, 6, 378.79, -141.96, 0.02895, 7, 278.94, -141.96, 0.06063, 8, 179.09, -141.96, 0.32104, 9, 79.24, -141.96, 0.58938, 5, 2, -248.75, -348.56, 1.0E-4, 6, 337.25, -249.33, 0.11815, 7, 237.4, -249.33, 0.17403, 8, 137.55, -249.33, 0.41562, 9, 37.7, -249.33, 0.29209, 5, 2, -261.11, -342.58, 1.8E-4, 6, 331.27, -261.68, 0.1305, 7, 231.42, -261.68, 0.18467, 8, 131.57, -261.68, 0.41447, 9, 31.72, -261.68, 0.27019, 5, 2, -270.7, -340.04, 2.4E-4, 6, 328.73, -271.27, 0.13929, 7, 228.88, -271.27, 0.1917, 8, 129.03, -271.27, 0.41295, 9, 29.18, -271.27, 0.25582, 5, 2, -274.41, -339.46, 2.6E-4, 6, 328.16, -274.99, 0.14236, 7, 228.31, -274.99, 0.19408, 8, 128.46, -274.99, 0.41235, 9, 28.61, -274.99, 0.25095, 5, 2, -322.7, -339.42, 3.8E-4, 6, 328.11, -323.27, 0.16004, 7, 228.27, -323.27, 0.20692, 8, 128.42, -323.27, 0.40803, 9, 28.57, -323.27, 0.22462, 5, 2, -326.21, -335, 3.9E-4, 6, 323.69, -326.79, 0.16025, 7, 223.84, -326.79, 0.20704, 8, 123.99, -326.79, 0.40793, 9, 24.14, -326.79, 0.22439, 5, 2, -330.12, -271.17, 0.00163, 6, 259.86, -330.7, 0.19865, 7, 160.01, -330.7, 0.22591, 8, 60.16, -330.7, 0.38538, 9, -39.69, -330.7, 0.18843, 5, 2, -330.44, -213.05, 0.00474, 6, 201.74, -331.01, 0.27639, 7, 101.89, -331.01, 0.25191, 8, 2.04, -331.01, 0.33439, 9, -97.81, -331.01, 0.13258, 5, 2, -324.95, -124, 0.01362, 6, 112.69, -325.53, 0.44459, 7, 12.84, -325.53, 0.26635, 8, -87.01, -325.53, 0.22038, 9, -186.86, -325.53, 0.05506, 5, 2, -322.17, -98.34, 0.01684, 6, 87.03, -322.74, 0.49581, 7, -12.82, -322.74, 0.26162, 8, -112.67, -322.74, 0.1868, 9, -212.52, -322.74, 0.03894, 5, 2, -318.22, -71.44, 0.02044, 6, 60.13, -318.8, 0.55112, 7, -39.72, -318.8, 0.25269, 8, -139.57, -318.8, 0.15142, 9, -239.42, -318.8, 0.02433, 1, 2, -317.97, -33.7, 1, 1, 2, -324.11, -28.65, 1, 1, 2, -342.76, -28.44, 1, 1, 2, -349.73, -32.67, 1, 1, 2, -389.53, -32.24, 1, 1, 2, -393.28, -21.4, 1, 1, 2, -399.5, -18.81, 1, 1, 2, -416.95, -18.27, 1, 1, 2, -416.96, -15.81, 1, 1, 2, -416.96, 32.21, 1, 1, 2, -412.86, 35.96, 1, 1, 2, -391.19, 43.7, 1, 1, 2, -376.36, 39.97, 1, 1, 2, -371.29, 41.32, 1, 1, 2, -363.67, 45.36, 1, 1, 2, -345.69, 36.85, 1, 5, 2, 181.36, -195.55, 0.03128, 6, 184.24, 180.79, 0.19919, 7, 84.39, 180.79, 0.3167, 8, -15.46, 180.79, 0.34042, 9, -115.31, 180.79, 0.11241, 5, 2, -213.5, -269.6, 9.9E-4, 6, 258.29, -214.07, 0.14987, 7, 158.44, -214.07, 0.21342, 8, 58.59, -214.07, 0.41245, 9, -41.26, -214.07, 0.22327, 5, 2, -19.59, -328.74, 0, 6, 317.43, -20.16, 3.3E-4, 7, 217.59, -20.16, 3.9E-4, 8, 117.74, -20.16, 0.10725, 9, 17.89, -20.16, 0.89204, 5, 2, -46.52, -156.21, 1.3E-4, 6, 144.9, -47.1, 0.11387, 7, 45.05, -47.1, 0.80973, 8, -54.8, -47.1, 0.07495, 9, -154.65, -47.1, 0.00131, 5, 2, 76.5, -105.39, 0.03201, 6, 94.08, 75.93, 0.51327, 7, -5.77, 75.93, 0.3978, 8, -105.62, 75.93, 0.05422, 9, -205.47, 75.93, 0.0027, 5, 2, -216.32, -118.63, 0.01571, 6, 107.32, -216.9, 0.46265, 7, 7.47, -216.9, 0.29161, 8, -92.38, -216.9, 0.1926, 9, -192.23, -216.9, 0.03743, 5, 2, 62.86, -297.34, 0.00153, 6, 286.03, 62.29, 0.00374, 7, 186.18, 62.29, 0.04045, 8, 86.33, 62.29, 0.59851, 9, -13.51, 62.29, 0.35577, 5, 2, -128.44, -275.21, 1.1E-4, 6, 263.9, -129.02, 0.06617, 7, 164.05, -129.02, 0.1666, 8, 64.2, -129.02, 0.50893, 9, -35.65, -129.02, 0.25819 ],
  149. "hull": 72,
  150. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 112, 114, 114, 116, 116, 118, 118, 120, 120, 122, 122, 124, 124, 126, 126, 128, 128, 130, 130, 132, 132, 134, 134, 136, 136, 138, 138, 140, 140, 142, 142, 0 ],
  151. "width": 836,
  152. "height": 461
  153. }
  154. },
  155. "js_y": {
  156. "js_y": { "x": 1.98, "y": 24.93, "width": 1183, "height": 1159 }
  157. },
  158. "js_ycb": {
  159. "js_ycb": {
  160. "type": "mesh",
  161. "uvs": [ 0.95274, 0, 0.96315, 0, 0.97342, 0.01436, 0.98538, 0.1099, 0.99623, 0.14795, 0.99642, 0.21474, 0.94554, 0.40738, 0.94138, 0.47811, 0.89382, 0.56503, 0.81722, 0.64755, 0.72782, 0.65546, 0.74302, 0.67013, 0.77034, 0.67001, 0.78625, 0.67749, 0.78618, 0.73466, 0.75278, 0.7858, 0.67314, 0.84599, 0.43771, 0.84595, 0.50607, 0.91948, 0.50612, 0.98485, 0.42503, 1, 0.36438, 1, 0.28855, 0.97407, 0.22394, 0.93094, 0.1513, 0.91602, 0.11624, 0.91035, 0.08145, 0.86952, 0.0783, 0.86745, 0.11782, 0.64099, 0.13863, 0.58232, 0.19187, 0.43873, 0.33621, 0.34672, 0.34484, 0.32517, 0.48879, 0.29734, 0.59179, 0.26136, 0.733, 0.19187, 0.93696, 0.00415, 0.32415, 0.74207, 0.49398, 0.61377, 0.64426, 0.45621, 0.19219, 0.80847, 0.80431, 0.26713 ],
  162. "triangles": [ 3, 41, 35, 0, 1, 2, 36, 0, 2, 36, 3, 35, 3, 36, 2, 41, 5, 6, 4, 41, 3, 5, 41, 4, 41, 39, 34, 41, 34, 35, 39, 41, 6, 33, 34, 39, 7, 39, 6, 8, 39, 7, 38, 33, 39, 31, 32, 33, 8, 10, 39, 38, 31, 33, 30, 31, 38, 29, 30, 38, 10, 38, 39, 8, 9, 10, 14, 12, 13, 37, 29, 38, 14, 15, 11, 14, 11, 12, 16, 38, 10, 15, 16, 10, 15, 10, 11, 17, 38, 16, 28, 29, 37, 40, 28, 37, 17, 37, 38, 27, 28, 40, 26, 27, 40, 24, 25, 26, 40, 24, 26, 23, 40, 37, 23, 37, 17, 24, 40, 23, 22, 23, 17, 21, 22, 17, 18, 21, 17, 18, 20, 21, 19, 20, 18 ],
  163. "vertices": [ 1, 16, 162.15, 11.51, 1, 1, 16, 163.69, 9.32, 1, 1, 16, 161.93, 4.86, 1, 1, 16, 141.9, -13, 1, 1, 16, 134.82, -21.38, 1, 2, 15, 220.26, 2.25, 2.5E-4, 16, 119.61, -32.15, 0.99975, 2, 15, 175.85, -30.72, 0.12198, 16, 68.13, -52.39, 0.87802, 2, 15, 162.41, -45.21, 0.2615, 16, 51.38, -62.87, 0.7385, 3, 14, 231.53, -20.75, 8.0E-5, 15, 137.51, -56.05, 0.51642, 16, 24.51, -66.83, 0.4835, 3, 14, 203.65, -32.61, 0.00573, 15, 107.65, -61.17, 0.79603, 16, -5.65, -63.98, 0.19825, 3, 14, 182.1, -24.35, 0.04049, 15, 88.57, -48.18, 0.92851, 16, -20.67, -46.46, 0.03101, 3, 14, 183.77, -29.76, 0.06151, 15, 88.96, -53.82, 0.93033, 16, -21.77, -52.01, 0.00816, 3, 14, 190.08, -32.85, 0.07054, 15, 94.38, -58.28, 0.92836, 16, -17.7, -57.73, 0.0011, 3, 14, 192.81, -36.54, 0.07212, 15, 96.19, -62.5, 0.92761, 16, -17.06, -62.28, 2.7E-4, 2, 14, 185.69, -50.82, 0.08569, 15, 85.98, -74.76, 0.91431, 2, 14, 171.65, -59.77, 0.11138, 15, 70.26, -80.24, 0.88862, 2, 14, 145.85, -65.7, 0.17902, 15, 43.78, -80.07, 0.82098, 2, 14, 91.68, -38.75, 0.86693, 15, -2.74, -41.38, 0.13307, 2, 14, 98.27, -64.95, 0.99936, 15, -2.34, -68.39, 6.4E-4, 1, 14, 90.17, -81.28, 1, 1, 14, 69.62, -75.79, 1, 1, 14, 55.67, -68.85, 1, 1, 14, 41.44, -53.7, 1, 1, 14, 31.92, -35.53, 1, 1, 14, 17.06, -23.5, 1, 1, 14, 9.7, -18.07, 1, 1, 14, 6.76, -3.89, 1, 2, 14, 6.29, -3.01, 1, 15, -77.6, 13.05, 0, 3, 14, 43.51, 49.05, 0.43853, 15, -29.4, 55.15, 0.54727, 16, -107.59, 84.07, 0.0142, 3, 14, 55.59, 61.32, 0.21552, 15, -14.82, 64.31, 0.74761, 16, -91.13, 89.12, 0.03687, 3, 14, 85.67, 91.11, 0.00891, 15, 21.31, 86.38, 0.84663, 16, -50.49, 100.98, 0.14446, 2, 15, 66.25, 82.4, 0.5946, 16, -8.15, 85.42, 0.4054, 2, 15, 71.8, 85.61, 0.55707, 16, -1.96, 87.06, 0.44293, 2, 15, 105.21, 67.93, 0.2291, 16, 25.68, 61.28, 0.7709, 2, 15, 131.98, 58.72, 0.02846, 16, 49.13, 45.41, 0.97154, 1, 16, 85.87, 26.89, 1, 1, 16, 158.87, 14.16, 1, 3, 14, 78.44, 0.19, 0.99929, 15, -6.65, -0.44, 7.1E-4, 16, -100.14, 24.48, 0, 2, 14, 133.46, 12.81, 7.4E-4, 15, 49.79, -0.81, 0.99926, 1, 16, 12.43, 3.1, 1, 1, 14, 39.83, -1.31, 1, 2, 15, 172.95, 22.57, 8.0E-5, 16, 79.24, -0.19, 0.99992 ],
  164. "hull": 37,
  165. "edges": [ 0, 72, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 52, 54, 34, 74, 20, 76, 12, 78 ],
  166. "width": 257,
  167. "height": 279
  168. }
  169. },
  170. "js_zcb": {
  171. "js_zcb": {
  172. "type": "mesh",
  173. "uvs": [ 0.02857, 0, 0.04724, 0, 0.0621, 0.00302, 0.266, 0.19112, 0.46749, 0.2887, 0.65844, 0.32686, 0.65753, 0.3787, 0.65306, 0.39655, 0.62778, 0.43259, 0.61872, 0.49777, 0.61905, 0.55977, 0.88051, 0.85003, 0.87968, 0.89938, 1, 0.90306, 1, 0.90935, 0.99005, 0.90316, 0.8838, 0.89975, 0.88351, 0.91042, 0.83808, 0.9182, 0.77681, 0.93063, 0.71068, 0.97447, 0.63574, 1, 0.57226, 1, 0.494, 0.98362, 0.49409, 0.91947, 0.56351, 0.84602, 0.32751, 0.8461, 0.24672, 0.78565, 0.21388, 0.73326, 0.21388, 0.67652, 0.22982, 0.66992, 0.25688, 0.6701, 0.27209, 0.65561, 0.18122, 0.64736, 0.08405, 0.53275, 0.05754, 0.47232, 0.05774, 0.41987, 0.0035, 0.21456, 0.00374, 0.15032, 0.01532, 0.10341, 0.3492, 0.50865, 0.59879, 0.72192, 0.46661, 0.62134, 0.29748, 0.42092, 0.71784, 0.78166 ],
  174. "triangles": [ 39, 0, 1, 2, 39, 1, 39, 2, 3, 38, 39, 3, 37, 38, 3, 6, 4, 5, 6, 8, 4, 36, 37, 3, 43, 3, 4, 36, 3, 43, 7, 8, 6, 35, 36, 43, 4, 40, 43, 4, 8, 40, 9, 40, 8, 34, 35, 43, 34, 43, 40, 33, 34, 40, 32, 33, 40, 42, 40, 9, 10, 42, 9, 32, 40, 42, 41, 42, 10, 28, 29, 30, 31, 28, 30, 27, 28, 31, 25, 42, 41, 26, 32, 42, 26, 42, 25, 27, 31, 32, 26, 27, 32, 11, 44, 10, 41, 10, 44, 25, 41, 44, 44, 11, 19, 15, 16, 12, 13, 15, 12, 15, 13, 14, 17, 12, 16, 12, 18, 11, 18, 12, 17, 18, 19, 11, 20, 25, 44, 19, 20, 44, 22, 24, 25, 22, 23, 24, 22, 25, 21, 20, 21, 25 ],
  175. "vertices": [ 1, 13, 162.86, -7.97, 1, 1, 13, 160.22, -11.98, 1, 1, 13, 157.42, -14.71, 1, 1, 13, 84.79, -29.7, 1, 2, 12, 106.13, -66.24, 0.06404, 13, 33.6, -58.03, 0.93596, 2, 12, 63.11, -92.13, 0.26473, 13, -2.24, -93.2, 0.73527, 2, 12, 53.36, -81.44, 0.29307, 13, -14.2, -85.07, 0.70693, 3, 11, 108.78, -88.03, 4.0E-5, 12, 50.78, -77.03, 0.30967, 13, -17.73, -81.37, 0.6903, 3, 11, 109.89, -76.11, 0.00189, 12, 48.62, -65.26, 0.39168, 13, -22.57, -70.42, 0.60643, 3, 11, 103.53, -58.91, 0.02401, 12, 37.85, -50.42, 0.60887, 13, -36.49, -58.49, 0.36713, 3, 11, 95.45, -43.62, 0.13124, 12, 25.93, -37.89, 0.73749, 13, -50.99, -49.07, 0.13127, 1, 11, -1.6, -2.95, 1, 1, 11, -7.79, 9.36, 1, 1, 11, -35.67, -4.05, 1, 1, 11, -36.48, -2.49, 1, 1, 11, -33.42, -2.84, 1, 1, 11, -8.77, 8.96, 1, 1, 11, -10.09, 11.63, 1, 1, 11, -0.74, 18.96, 1, 1, 11, 11.61, 29.32, 1, 1, 11, 21.01, 48.03, 1, 1, 11, 34.79, 63.26, 1, 1, 11, 49.25, 70.82, 1, 1, 11, 69.19, 76.08, 1, 2, 11, 77.45, 60.2, 0.99692, 12, -19.49, 57.19, 0.00308, 2, 11, 71.13, 33.78, 0.80766, 12, -18.43, 30.04, 0.19234, 2, 11, 124.88, 61.87, 0.00488, 12, 25.71, 71.64, 0.99512, 1, 12, 52.39, 73.6, 1, 2, 12, 68.56, 68.74, 0.99696, 13, -34.28, 64.54, 0.00304, 2, 12, 79.41, 57.21, 0.98483, 13, -21.05, 55.85, 0.01517, 2, 12, 77.69, 53.06, 0.98101, 13, -21.76, 51.41, 0.01899, 2, 12, 72.59, 48.33, 0.9535, 13, -25.62, 45.63, 0.0465, 2, 12, 72.52, 42.71, 0.87263, 13, -24.39, 40.14, 0.12737, 2, 12, 91.1, 57.04, 0.53259, 13, -9.64, 58.4, 0.46741, 2, 12, 131.2, 50.88, 0.15066, 13, 30.79, 61.72, 0.84934, 2, 12, 147.72, 43.28, 0.0654, 13, 48.63, 58.15, 0.9346, 2, 12, 157.71, 32.59, 0.02435, 13, 60.83, 50.08, 0.97565, 1, 13, 116.36, 30.28, 1, 1, 13, 131.3, 20.39, 1, 1, 13, 140.61, 10.71, 1, 2, 12, 86.2, -0.73, 0.09362, 13, -1, 1.07, 0.90638, 3, 11, 79.12, -1.11, 0.43491, 12, -1.29, -1.38, 0.56507, 13, -85.95, -19.88, 2.0E-5, 1, 12, 42.68, 1.48, 1, 1, 13, 26.76, -1.26, 1, 1, 11, 44.28, -0.5, 1 ],
  176. "hull": 40,
  177. "edges": [ 0, 78, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 64, 84, 72, 86, 50, 88 ],
  178. "width": 257,
  179. "height": 279
  180. }
  181. },
  182. "js_zhang": {
  183. "js_zhang": { "x": 6.6, "y": 42.92, "width": 197, "height": 303 }
  184. },
  185. "l_star1": {
  186. "a_star1": { "x": 0.44, "y": 1.76, "width": 70, "height": 66 },
  187. "l_star1": { "x": 1.44, "y": 1.76, "width": 68, "height": 66 }
  188. },
  189. "l_star1_1": {
  190. "a_star1": { "x": 0.44, "y": 1.76, "width": 70, "height": 66 },
  191. "l_star1": { "x": 1.44, "y": 1.76, "width": 68, "height": 66 }
  192. },
  193. "l_star2": {
  194. "a_star2": { "x": 0.18, "y": 0.4, "width": 70, "height": 66 },
  195. "l_star2": { "x": 0.68, "y": 0.4, "width": 69, "height": 66 }
  196. },
  197. "l_star2_1": {
  198. "a_star2": { "x": 0.18, "y": 0.4, "width": 70, "height": 66 },
  199. "l_star2": { "x": 0.68, "y": 0.4, "width": 69, "height": 66 }
  200. },
  201. "l_star3": {
  202. "a_star3": { "x": 0.33, "y": 1.42, "width": 70, "height": 66 },
  203. "l_star3": { "x": 0.83, "y": 1.42, "width": 69, "height": 66 }
  204. },
  205. "l_star3_1": {
  206. "a_star3": { "x": 0.33, "y": 1.42, "width": 70, "height": 66 },
  207. "l_star3": { "x": 0.83, "y": 1.42, "width": 69, "height": 66 }
  208. }
  209. }
  210. },
  211. {
  212. "name": "bqht_en",
  213. "attachments": {
  214. "bqht_en": {
  215. "bqht_en": { "x": 1.16, "y": 36.66, "width": 297, "height": 274 }
  216. }
  217. }
  218. },
  219. {
  220. "name": "bqht_zh",
  221. "attachments": {
  222. "bqht": {
  223. "bqht": { "x": -2.93, "y": 36.01, "width": 313, "height": 273 }
  224. }
  225. }
  226. },
  227. {
  228. "name": "djds_en",
  229. "attachments": {
  230. "djds_en": {
  231. "djds_en": { "x": -6.3, "y": 41.62, "width": 349, "height": 264 }
  232. }
  233. }
  234. },
  235. {
  236. "name": "djds_zh",
  237. "attachments": {
  238. "djds": {
  239. "djds": { "x": -6.43, "y": 37.51, "width": 310, "height": 272 }
  240. }
  241. }
  242. },
  243. {
  244. "name": "qqqt_en",
  245. "attachments": {
  246. "qqqt_en": {
  247. "qqqt_en": { "x": 0.05, "y": 35.47, "width": 265, "height": 275 }
  248. }
  249. }
  250. },
  251. {
  252. "name": "qqqt_zh",
  253. "attachments": {
  254. "qqqt": {
  255. "qqqt": { "x": -6.43, "y": 37.01, "width": 304, "height": 271 }
  256. }
  257. }
  258. },
  259. {
  260. "name": "ryhj_en",
  261. "attachments": {
  262. "ryhj_en": {
  263. "ryhj_en": { "x": -2.87, "y": 33.67, "width": 351, "height": 258 }
  264. }
  265. }
  266. },
  267. {
  268. "name": "ryhj_zh",
  269. "attachments": {
  270. "ryhj": {
  271. "ryhj": { "x": -6.43, "y": 32.01, "width": 310, "height": 261 }
  272. }
  273. }
  274. },
  275. {
  276. "name": "sybj_en",
  277. "attachments": {
  278. "sybj_en": {
  279. "sybj_en": { "x": -4.09, "y": 35.5, "width": 358, "height": 255 }
  280. }
  281. }
  282. },
  283. {
  284. "name": "sybj_zh",
  285. "attachments": {
  286. "sybj": {
  287. "sybj": { "x": -5.93, "y": 32.01, "width": 309, "height": 261 }
  288. }
  289. }
  290. },
  291. {
  292. "name": "txwd_en",
  293. "attachments": {
  294. "txwd_en": {
  295. "txwd_en": { "x": -0.47, "y": 47.69, "width": 357, "height": 263 }
  296. }
  297. }
  298. },
  299. {
  300. "name": "txwd_zh",
  301. "attachments": {
  302. "txwd": {
  303. "txwd": { "x": -5.93, "y": 40.01, "width": 309, "height": 277 }
  304. }
  305. }
  306. },
  307. {
  308. "name": "ygbz_en",
  309. "attachments": {
  310. "ygbz_en": {
  311. "ygbz_en": { "x": -0.26, "y": 40.81, "width": 356, "height": 263 }
  312. }
  313. }
  314. },
  315. {
  316. "name": "ygbz_zh",
  317. "attachments": {
  318. "ygbz": {
  319. "ygbz": { "x": -5.43, "y": 37.01, "width": 306, "height": 271 }
  320. }
  321. }
  322. },
  323. {
  324. "name": "yhzs_en",
  325. "attachments": {
  326. "yhzs_en": {
  327. "yhzs_en": { "x": -4.29, "y": 41.31, "width": 357, "height": 242 }
  328. }
  329. }
  330. },
  331. {
  332. "name": "yhzs_zh",
  333. "attachments": {
  334. "yhzs": {
  335. "yhzs": { "x": -5.93, "y": 32.01, "width": 309, "height": 261 }
  336. }
  337. }
  338. },
  339. {
  340. "name": "yyby_en",
  341. "attachments": {
  342. "yyby_en": {
  343. "yyby_en": { "x": -1.94, "y": 48.19, "width": 351, "height": 252 }
  344. }
  345. }
  346. },
  347. {
  348. "name": "yyby_zh",
  349. "attachments": {
  350. "yyby": {
  351. "yyby": { "x": -5.93, "y": 37.51, "width": 307, "height": 272 }
  352. }
  353. }
  354. },
  355. {
  356. "name": "zqwz_en",
  357. "attachments": {
  358. "zqwz_en": {
  359. "zqwz_en": { "x": 2.35, "y": 33.16, "width": 348, "height": 274 }
  360. }
  361. }
  362. },
  363. {
  364. "name": "zqwz_zh",
  365. "attachments": {
  366. "zqwz": {
  367. "zqwz": { "x": -5.93, "y": 35.51, "width": 307, "height": 268 }
  368. }
  369. }
  370. },
  371. {
  372. "name": "zzwz_en",
  373. "attachments": {
  374. "zzwz_en": {
  375. "zzwz_en": { "x": -0.81, "y": 43.53, "width": 353, "height": 261 }
  376. }
  377. }
  378. },
  379. {
  380. "name": "zzwz_zh",
  381. "attachments": {
  382. "zzwz": {
  383. "zzwz": { "x": -5.93, "y": 37.51, "width": 307, "height": 272 }
  384. }
  385. }
  386. },
  387. {
  388. "name": "zzxy_en",
  389. "attachments": {
  390. "zzxy_en": {
  391. "zzxy_en": { "x": -6.47, "y": 41.35, "width": 283, "height": 280 }
  392. }
  393. }
  394. },
  395. {
  396. "name": "zzxy_zh",
  397. "attachments": {
  398. "zzxy": {
  399. "zzxy": { "x": -6.43, "y": 41.51, "width": 310, "height": 280 }
  400. }
  401. }
  402. }
  403. ],
  404. "animations": {
  405. "daiji0": {
  406. "slots": {
  407. "l_star1_1": {
  408. "attachment": [
  409. { "name": "a_star1" }
  410. ]
  411. },
  412. "l_star2_1": {
  413. "attachment": [
  414. { "name": null }
  415. ]
  416. },
  417. "l_star3_1": {
  418. "attachment": [
  419. { "name": null }
  420. ]
  421. }
  422. },
  423. "bones": {
  424. "js_hg": {
  425. "scale": [
  426. { "curve": 0.25, "c3": 0.75 },
  427. { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
  428. { "time": 0.9667 }
  429. ]
  430. },
  431. "js_y": {
  432. "scale": [
  433. { "curve": 0.25, "c3": 0.75 },
  434. { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
  435. { "time": 0.9667 }
  436. ]
  437. },
  438. "js_qz3b": {
  439. "rotate": [
  440. { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  441. { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  442. { "time": 0.9667, "angle": -2.07 }
  443. ]
  444. },
  445. "js_qz3c": {
  446. "rotate": [
  447. { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
  448. { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  449. { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  450. { "time": 0.9667, "angle": -1.61 }
  451. ]
  452. },
  453. "js_qz3d": {
  454. "rotate": [
  455. { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
  456. { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  457. { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  458. { "time": 0.9667, "angle": -0.75 }
  459. ]
  460. }
  461. }
  462. },
  463. "daiji1": {
  464. "slots": {
  465. "l_star1": {
  466. "attachment": [
  467. { "name": "l_star1" }
  468. ]
  469. }
  470. },
  471. "bones": {
  472. "l_star1": {
  473. "scale": [
  474. { "curve": 0.25, "c3": 0.75 },
  475. { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
  476. { "time": 0.9667 }
  477. ]
  478. },
  479. "js_h": {
  480. "scale": [
  481. { "curve": 0.25, "c3": 0.75 },
  482. { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
  483. { "time": 0.9667 }
  484. ]
  485. },
  486. "js_hg": {
  487. "scale": [
  488. { "curve": 0.25, "c3": 0.75 },
  489. { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
  490. { "time": 0.9667 }
  491. ]
  492. },
  493. "js_y": {
  494. "scale": [
  495. { "curve": 0.25, "c3": 0.75 },
  496. { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
  497. { "time": 0.9667 }
  498. ]
  499. },
  500. "js_qz3b": {
  501. "rotate": [
  502. { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  503. { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  504. { "time": 0.9667, "angle": -2.07 }
  505. ]
  506. },
  507. "js_qz3c": {
  508. "rotate": [
  509. { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
  510. { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  511. { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  512. { "time": 0.9667, "angle": -1.61 }
  513. ]
  514. },
  515. "js_qz3d": {
  516. "rotate": [
  517. { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
  518. { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  519. { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  520. { "time": 0.9667, "angle": -0.75 }
  521. ]
  522. }
  523. }
  524. },
  525. "daiji2": {
  526. "slots": {
  527. "l_star1": {
  528. "attachment": [
  529. { "name": "l_star1" }
  530. ]
  531. },
  532. "l_star2": {
  533. "attachment": [
  534. { "name": "l_star2" }
  535. ]
  536. },
  537. "l_star2_1": {
  538. "attachment": [
  539. { "name": null }
  540. ]
  541. },
  542. "l_star3": {
  543. "attachment": [
  544. { "name": null }
  545. ]
  546. }
  547. },
  548. "bones": {
  549. "l_star2": {
  550. "scale": [
  551. { "curve": 0.25, "c3": 0.75 },
  552. { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
  553. { "time": 0.9667 }
  554. ]
  555. },
  556. "l_star1": {
  557. "scale": [
  558. { "curve": 0.25, "c3": 0.75 },
  559. { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
  560. { "time": 0.9667 }
  561. ]
  562. },
  563. "js_h": {
  564. "scale": [
  565. { "curve": 0.25, "c3": 0.75 },
  566. { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
  567. { "time": 0.9667 }
  568. ]
  569. },
  570. "js_hg": {
  571. "scale": [
  572. { "curve": 0.25, "c3": 0.75 },
  573. { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
  574. { "time": 0.9667 }
  575. ]
  576. },
  577. "js_y": {
  578. "scale": [
  579. { "curve": 0.25, "c3": 0.75 },
  580. { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
  581. { "time": 0.9667 }
  582. ]
  583. },
  584. "js_qz3b": {
  585. "rotate": [
  586. { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  587. { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  588. { "time": 0.9667, "angle": -2.07 }
  589. ]
  590. },
  591. "js_qz3c": {
  592. "rotate": [
  593. { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
  594. { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  595. { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  596. { "time": 0.9667, "angle": -1.61 }
  597. ]
  598. },
  599. "js_qz3d": {
  600. "rotate": [
  601. { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
  602. { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  603. { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  604. { "time": 0.9667, "angle": -0.75 }
  605. ]
  606. }
  607. }
  608. },
  609. "daiji3": {
  610. "slots": {
  611. "l_star1": {
  612. "attachment": [
  613. { "name": "l_star1" }
  614. ]
  615. },
  616. "l_star2": {
  617. "attachment": [
  618. { "name": "l_star2" }
  619. ]
  620. },
  621. "l_star2_1": {
  622. "attachment": [
  623. { "name": null }
  624. ]
  625. },
  626. "l_star3": {
  627. "attachment": [
  628. { "name": "l_star3" }
  629. ]
  630. },
  631. "l_star3_1": {
  632. "attachment": [
  633. { "name": null }
  634. ]
  635. }
  636. },
  637. "bones": {
  638. "l_star3": {
  639. "scale": [
  640. { "curve": 0.25, "c3": 0.75 },
  641. { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
  642. { "time": 0.9667 }
  643. ]
  644. },
  645. "l_star2": {
  646. "scale": [
  647. { "curve": 0.25, "c3": 0.75 },
  648. { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
  649. { "time": 0.9667 }
  650. ]
  651. },
  652. "l_star1": {
  653. "scale": [
  654. { "curve": 0.25, "c3": 0.75 },
  655. { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
  656. { "time": 0.9667 }
  657. ]
  658. },
  659. "js_h": {
  660. "scale": [
  661. { "curve": 0.25, "c3": 0.75 },
  662. { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
  663. { "time": 0.9667 }
  664. ]
  665. },
  666. "js_hg": {
  667. "scale": [
  668. { "curve": 0.25, "c3": 0.75 },
  669. { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
  670. { "time": 0.9667 }
  671. ]
  672. },
  673. "js_y": {
  674. "scale": [
  675. { "curve": 0.25, "c3": 0.75 },
  676. { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
  677. { "time": 0.9667 }
  678. ]
  679. },
  680. "js_qz3b": {
  681. "rotate": [
  682. { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  683. { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  684. { "time": 0.9667, "angle": -2.07 }
  685. ]
  686. },
  687. "js_qz3c": {
  688. "rotate": [
  689. { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
  690. { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  691. { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  692. { "time": 0.9667, "angle": -1.61 }
  693. ]
  694. },
  695. "js_qz3d": {
  696. "rotate": [
  697. { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
  698. { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  699. { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  700. { "time": 0.9667, "angle": -0.75 }
  701. ]
  702. }
  703. }
  704. },
  705. "dstar1": {
  706. "slots": {
  707. "l_star1": {
  708. "attachment": [
  709. { "name": "l_star1" }
  710. ]
  711. },
  712. "l_star2": {
  713. "attachment": [
  714. { "name": "l_star2" }
  715. ]
  716. },
  717. "l_star2_1": {
  718. "attachment": [
  719. { "name": null }
  720. ]
  721. },
  722. "l_star3_1": {
  723. "color": [
  724. { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  725. { "time": 0.7333, "color": "ffffff00" }
  726. ],
  727. "attachment": [
  728. { "name": "l_star3" }
  729. ]
  730. }
  731. },
  732. "bones": {
  733. "l_star2": {
  734. "scale": [
  735. { "curve": 0.25, "c3": 0.75 },
  736. { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
  737. { "time": 0.9667 }
  738. ]
  739. },
  740. "l_star1": {
  741. "scale": [
  742. { "curve": 0.25, "c3": 0.75 },
  743. { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
  744. { "time": 0.9667 }
  745. ]
  746. },
  747. "js_h": {
  748. "scale": [
  749. { "curve": 0.25, "c3": 0.75 },
  750. { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
  751. { "time": 0.9667 }
  752. ]
  753. },
  754. "js_hg": {
  755. "scale": [
  756. { "curve": 0.25, "c3": 0.75 },
  757. { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
  758. { "time": 0.9667 }
  759. ]
  760. },
  761. "js_y": {
  762. "scale": [
  763. { "curve": 0.25, "c3": 0.75 },
  764. { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
  765. { "time": 0.9667 }
  766. ]
  767. },
  768. "js_qz3b": {
  769. "rotate": [
  770. { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  771. { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  772. { "time": 0.9667, "angle": -2.07 }
  773. ]
  774. },
  775. "js_qz3c": {
  776. "rotate": [
  777. { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
  778. { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  779. { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  780. { "time": 0.9667, "angle": -1.61 }
  781. ]
  782. },
  783. "js_qz3d": {
  784. "rotate": [
  785. { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
  786. { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  787. { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  788. { "time": 0.9667, "angle": -0.75 }
  789. ]
  790. },
  791. "l_star3_1": {
  792. "scale": [
  793. { "time": 0.5, "curve": 0.25, "c3": 0.75 },
  794. { "time": 0.7333, "x": 0.127, "y": 0.127 }
  795. ]
  796. }
  797. }
  798. },
  799. "dstar2": {
  800. "slots": {
  801. "l_star1": {
  802. "attachment": [
  803. { "name": "l_star1" }
  804. ]
  805. },
  806. "l_star2_1": {
  807. "color": [
  808. { "time": 0.2667, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  809. { "time": 0.5, "color": "ffffff00" }
  810. ],
  811. "attachment": [
  812. { "name": "l_star2" }
  813. ]
  814. },
  815. "l_star3_1": {
  816. "color": [
  817. { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  818. { "time": 0.7333, "color": "ffffff00" }
  819. ],
  820. "attachment": [
  821. { "name": null }
  822. ]
  823. }
  824. },
  825. "bones": {
  826. "l_star1": {
  827. "scale": [
  828. { "curve": 0.25, "c3": 0.75 },
  829. { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
  830. { "time": 0.9667 }
  831. ]
  832. },
  833. "js_h": {
  834. "scale": [
  835. { "curve": 0.25, "c3": 0.75 },
  836. { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
  837. { "time": 0.9667 }
  838. ]
  839. },
  840. "js_hg": {
  841. "scale": [
  842. { "curve": 0.25, "c3": 0.75 },
  843. { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
  844. { "time": 0.9667 }
  845. ]
  846. },
  847. "js_y": {
  848. "scale": [
  849. { "curve": 0.25, "c3": 0.75 },
  850. { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
  851. { "time": 0.9667 }
  852. ]
  853. },
  854. "js_qz3b": {
  855. "rotate": [
  856. { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  857. { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  858. { "time": 0.9667, "angle": -2.07 }
  859. ]
  860. },
  861. "js_qz3c": {
  862. "rotate": [
  863. { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
  864. { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  865. { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  866. { "time": 0.9667, "angle": -1.61 }
  867. ]
  868. },
  869. "js_qz3d": {
  870. "rotate": [
  871. { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
  872. { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  873. { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  874. { "time": 0.9667, "angle": -0.75 }
  875. ]
  876. },
  877. "l_star2_1": {
  878. "scale": [
  879. { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
  880. { "time": 0.5, "x": 0.127, "y": 0.127 }
  881. ]
  882. },
  883. "l_star3_1": {
  884. "scale": [
  885. { "time": 0.5, "curve": 0.25, "c3": 0.75 },
  886. { "time": 0.7333, "x": 0.127, "y": 0.127 }
  887. ]
  888. }
  889. }
  890. },
  891. "dstar3": {
  892. "slots": {
  893. "l_star1": {
  894. "color": [
  895. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  896. { "time": 0.2667, "color": "ffffff00" }
  897. ],
  898. "attachment": [
  899. { "name": "l_star1" }
  900. ]
  901. },
  902. "l_star1_1": {
  903. "attachment": [
  904. { "name": "a_star1" }
  905. ]
  906. },
  907. "l_star2_1": {
  908. "attachment": [
  909. { "name": null }
  910. ]
  911. },
  912. "l_star3_1": {
  913. "color": [
  914. { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  915. { "time": 0.7333, "color": "ffffff00" }
  916. ],
  917. "attachment": [
  918. { "name": null }
  919. ]
  920. }
  921. },
  922. "bones": {
  923. "l_star1": {
  924. "scale": [
  925. { "curve": 0.25, "c3": 0.75 },
  926. { "time": 0.2667, "x": 0.127, "y": 0.127 }
  927. ]
  928. },
  929. "js_h": {
  930. "scale": [
  931. { "curve": 0.25, "c3": 0.75 },
  932. { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
  933. { "time": 0.9667 }
  934. ]
  935. },
  936. "js_hg": {
  937. "scale": [
  938. { "curve": 0.25, "c3": 0.75 },
  939. { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
  940. { "time": 0.9667 }
  941. ]
  942. },
  943. "js_y": {
  944. "scale": [
  945. { "curve": 0.25, "c3": 0.75 },
  946. { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
  947. { "time": 0.9667 }
  948. ]
  949. },
  950. "js_qz3b": {
  951. "rotate": [
  952. { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  953. { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  954. { "time": 0.9667, "angle": -2.07 }
  955. ]
  956. },
  957. "js_qz3c": {
  958. "rotate": [
  959. { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
  960. { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  961. { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  962. { "time": 0.9667, "angle": -1.61 }
  963. ]
  964. },
  965. "js_qz3d": {
  966. "rotate": [
  967. { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
  968. { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  969. { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  970. { "time": 0.9667, "angle": -0.75 }
  971. ]
  972. },
  973. "l_star3_1": {
  974. "scale": [
  975. { "time": 0.5, "curve": 0.25, "c3": 0.75 },
  976. { "time": 0.7333, "x": 0.127, "y": 0.127 }
  977. ]
  978. }
  979. },
  980. "drawOrder": [
  981. {
  982. "offsets": [
  983. { "slot": "l_star1", "offset": 1 }
  984. ]
  985. }
  986. ]
  987. },
  988. "fangda": {
  989. "bones": {
  990. "js_zhang": {
  991. "scale": [
  992. { "x": 0.006, "y": 0.006, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
  993. { "time": 0.5, "x": 1.151, "y": 1.151, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  994. { "time": 0.6667 }
  995. ]
  996. }
  997. }
  998. },
  999. "jiemian": {
  1000. "slots": {
  1001. "js_bg": {
  1002. "color": [
  1003. { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1004. { "time": 0.8333, "color": "ffffff00" }
  1005. ]
  1006. },
  1007. "js_h": {
  1008. "color": [
  1009. { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1010. { "time": 0.8333, "color": "ffffff00" }
  1011. ]
  1012. },
  1013. "js_hg": {
  1014. "color": [
  1015. { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1016. { "time": 0.8333, "color": "ffffff00" }
  1017. ]
  1018. },
  1019. "js_qz": {
  1020. "color": [
  1021. { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1022. { "time": 0.8333, "color": "ffffff00" }
  1023. ]
  1024. },
  1025. "js_y": {
  1026. "color": [
  1027. { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1028. { "time": 0.8333, "color": "ffffff00" }
  1029. ]
  1030. }
  1031. },
  1032. "bones": {
  1033. "js_qz": {
  1034. "scale": [
  1035. { "curve": 0.25, "c3": 0.75 },
  1036. { "time": 0.5, "x": 0.355, "y": 0.355 }
  1037. ]
  1038. }
  1039. }
  1040. },
  1041. "star1": {
  1042. "slots": {
  1043. "l_star1": {
  1044. "attachment": [
  1045. { "time": 0.0667, "name": null },
  1046. { "time": 0.1, "name": "l_star1" }
  1047. ]
  1048. },
  1049. "l_star1_1": {
  1050. "attachment": [
  1051. { "name": "a_star1" }
  1052. ]
  1053. },
  1054. "l_star2_1": {
  1055. "attachment": [
  1056. { "name": null }
  1057. ]
  1058. },
  1059. "l_star3_1": {
  1060. "attachment": [
  1061. { "name": null }
  1062. ]
  1063. }
  1064. },
  1065. "bones": {
  1066. "l_star1": {
  1067. "scale": [
  1068. { "x": -0.083, "y": -0.083, "curve": "stepped" },
  1069. { "time": 0.0667, "x": -0.083, "y": -0.083, "curve": 0.25, "c3": 0.75 },
  1070. { "time": 0.3333, "x": 1.53, "y": 1.53, "curve": 0.25, "c3": 0.75 },
  1071. { "time": 0.5667 }
  1072. ]
  1073. },
  1074. "js_hg": {
  1075. "scale": [
  1076. { "curve": 0.25, "c3": 0.75 },
  1077. { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
  1078. { "time": 0.9667 }
  1079. ]
  1080. },
  1081. "js_y": {
  1082. "scale": [
  1083. { "curve": 0.25, "c3": 0.75 },
  1084. { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
  1085. { "time": 0.9667 }
  1086. ]
  1087. },
  1088. "js_qz3b": {
  1089. "rotate": [
  1090. { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  1091. { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  1092. { "time": 0.9667, "angle": -2.07 }
  1093. ]
  1094. },
  1095. "js_qz3c": {
  1096. "rotate": [
  1097. { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
  1098. { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  1099. { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  1100. { "time": 0.9667, "angle": -1.61 }
  1101. ]
  1102. },
  1103. "js_qz3d": {
  1104. "rotate": [
  1105. { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
  1106. { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  1107. { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  1108. { "time": 0.9667, "angle": -0.75 }
  1109. ]
  1110. }
  1111. },
  1112. "drawOrder": [
  1113. {
  1114. "offsets": [
  1115. { "slot": "l_star1", "offset": 1 }
  1116. ]
  1117. }
  1118. ]
  1119. },
  1120. "star1_1": {
  1121. "slots": {
  1122. "js_bg": {
  1123. "color": [
  1124. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1125. { "time": 0.8333, "color": "ffffff00" }
  1126. ]
  1127. },
  1128. "js_h": {
  1129. "color": [
  1130. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1131. { "time": 0.8333, "color": "ffffff00" }
  1132. ]
  1133. },
  1134. "js_hg": {
  1135. "color": [
  1136. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1137. { "time": 0.8333, "color": "ffffff00" }
  1138. ]
  1139. },
  1140. "js_qz": {
  1141. "color": [
  1142. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1143. { "time": 0.8333, "color": "ffffff00" }
  1144. ]
  1145. },
  1146. "js_y": {
  1147. "color": [
  1148. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1149. { "time": 0.8333, "color": "ffffff00" }
  1150. ]
  1151. },
  1152. "l_star1": {
  1153. "attachment": [
  1154. { "name": null }
  1155. ]
  1156. },
  1157. "l_star1_1": {
  1158. "attachment": [
  1159. { "name": "l_star1" }
  1160. ]
  1161. },
  1162. "l_star2_1": {
  1163. "attachment": [
  1164. { "name": null }
  1165. ]
  1166. },
  1167. "l_star3_1": {
  1168. "attachment": [
  1169. { "name": null }
  1170. ]
  1171. }
  1172. },
  1173. "bones": {
  1174. "l_star1": {
  1175. "scale": [
  1176. { "x": -0.083, "y": -0.083 }
  1177. ]
  1178. },
  1179. "js_qz3b": {
  1180. "rotate": [
  1181. { "angle": -2.07 }
  1182. ]
  1183. },
  1184. "js_qz3c": {
  1185. "rotate": [
  1186. { "angle": -1.61 }
  1187. ]
  1188. },
  1189. "js_qz3d": {
  1190. "rotate": [
  1191. { "angle": -0.75 }
  1192. ]
  1193. },
  1194. "js_qz": {
  1195. "scale": [
  1196. { "time": 0.8333, "curve": 0.25, "c3": 0.75 },
  1197. { "time": 1.3333, "x": 0.355, "y": 0.355 }
  1198. ]
  1199. }
  1200. },
  1201. "drawOrder": [
  1202. {
  1203. "offsets": [
  1204. { "slot": "l_star1", "offset": 1 }
  1205. ]
  1206. }
  1207. ]
  1208. },
  1209. "star1_2": {
  1210. "slots": {
  1211. "js_bg": {
  1212. "color": [
  1213. { "color": "ffffff00" }
  1214. ]
  1215. },
  1216. "js_h": {
  1217. "color": [
  1218. { "color": "ffffff00" }
  1219. ]
  1220. },
  1221. "js_hg": {
  1222. "color": [
  1223. { "color": "ffffff00" }
  1224. ]
  1225. },
  1226. "js_qz": {
  1227. "color": [
  1228. { "color": "ffffff00" }
  1229. ]
  1230. },
  1231. "js_y": {
  1232. "color": [
  1233. { "color": "ffffff00" }
  1234. ]
  1235. },
  1236. "l_star1": {
  1237. "attachment": [
  1238. { "name": null }
  1239. ]
  1240. },
  1241. "l_star1_1": {
  1242. "attachment": [
  1243. { "name": "l_star1" }
  1244. ]
  1245. },
  1246. "l_star2_1": {
  1247. "attachment": [
  1248. { "name": null }
  1249. ]
  1250. },
  1251. "l_star3_1": {
  1252. "attachment": [
  1253. { "name": null }
  1254. ]
  1255. }
  1256. },
  1257. "bones": {
  1258. "js_qz": {
  1259. "scale": [
  1260. { "x": 0.355, "y": 0.355 }
  1261. ]
  1262. },
  1263. "l_star1": {
  1264. "scale": [
  1265. { "x": -0.083, "y": -0.083 }
  1266. ]
  1267. },
  1268. "js_qz3b": {
  1269. "rotate": [
  1270. { "angle": -2.07 }
  1271. ]
  1272. },
  1273. "js_qz3c": {
  1274. "rotate": [
  1275. { "angle": -1.61 }
  1276. ]
  1277. },
  1278. "js_qz3d": {
  1279. "rotate": [
  1280. { "angle": -0.75 }
  1281. ]
  1282. }
  1283. },
  1284. "drawOrder": [
  1285. {
  1286. "offsets": [
  1287. { "slot": "l_star1", "offset": 1 }
  1288. ]
  1289. }
  1290. ]
  1291. },
  1292. "star2": {
  1293. "slots": {
  1294. "l_star1": {
  1295. "attachment": [
  1296. { "name": "l_star1" }
  1297. ]
  1298. },
  1299. "l_star2": {
  1300. "attachment": [
  1301. { "name": null },
  1302. { "time": 0.2667, "name": "l_star2" }
  1303. ]
  1304. },
  1305. "l_star3_1": {
  1306. "attachment": [
  1307. { "name": null }
  1308. ]
  1309. }
  1310. },
  1311. "bones": {
  1312. "l_star2": {
  1313. "scale": [
  1314. { "x": -0.083, "y": -0.083, "curve": "stepped" },
  1315. { "time": 0.2667, "x": -0.083, "y": -0.083, "curve": 0.25, "c3": 0.75 },
  1316. { "time": 0.5, "x": 1.53, "y": 1.53, "curve": 0.25, "c3": 0.75 },
  1317. { "time": 0.7333 }
  1318. ]
  1319. },
  1320. "js_h": {
  1321. "scale": [
  1322. { "curve": 0.25, "c3": 0.75 },
  1323. { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
  1324. { "time": 0.9667 }
  1325. ]
  1326. },
  1327. "js_hg": {
  1328. "scale": [
  1329. { "curve": 0.25, "c3": 0.75 },
  1330. { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
  1331. { "time": 0.9667 }
  1332. ]
  1333. },
  1334. "js_y": {
  1335. "scale": [
  1336. { "curve": 0.25, "c3": 0.75 },
  1337. { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
  1338. { "time": 0.9667 }
  1339. ]
  1340. },
  1341. "js_qz3b": {
  1342. "rotate": [
  1343. { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  1344. { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  1345. { "time": 0.9667, "angle": -2.07 }
  1346. ]
  1347. },
  1348. "js_qz3c": {
  1349. "rotate": [
  1350. { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
  1351. { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  1352. { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  1353. { "time": 0.9667, "angle": -1.61 }
  1354. ]
  1355. },
  1356. "js_qz3d": {
  1357. "rotate": [
  1358. { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
  1359. { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  1360. { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  1361. { "time": 0.9667, "angle": -0.75 }
  1362. ]
  1363. }
  1364. },
  1365. "drawOrder": [
  1366. {
  1367. "offsets": [
  1368. { "slot": "l_star2", "offset": 1 },
  1369. { "slot": "l_star1", "offset": 1 }
  1370. ]
  1371. }
  1372. ]
  1373. },
  1374. "star2_1": {
  1375. "slots": {
  1376. "js_bg": {
  1377. "color": [
  1378. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1379. { "time": 0.8333, "color": "ffffff00" }
  1380. ]
  1381. },
  1382. "js_h": {
  1383. "color": [
  1384. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1385. { "time": 0.8333, "color": "ffffff00" }
  1386. ]
  1387. },
  1388. "js_hg": {
  1389. "color": [
  1390. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1391. { "time": 0.8333, "color": "ffffff00" }
  1392. ]
  1393. },
  1394. "js_qz": {
  1395. "color": [
  1396. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1397. { "time": 0.8333, "color": "ffffff00" }
  1398. ]
  1399. },
  1400. "js_y": {
  1401. "color": [
  1402. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1403. { "time": 0.8333, "color": "ffffff00" }
  1404. ]
  1405. },
  1406. "l_star1": {
  1407. "attachment": [
  1408. { "name": null }
  1409. ]
  1410. },
  1411. "l_star1_1": {
  1412. "attachment": [
  1413. { "name": "l_star1" }
  1414. ]
  1415. },
  1416. "l_star2": {
  1417. "attachment": [
  1418. { "name": "l_star2" }
  1419. ]
  1420. },
  1421. "l_star2_1": {
  1422. "attachment": [
  1423. { "name": null }
  1424. ]
  1425. },
  1426. "l_star3_1": {
  1427. "attachment": [
  1428. { "name": null }
  1429. ]
  1430. }
  1431. },
  1432. "bones": {
  1433. "l_star1": {
  1434. "scale": [
  1435. { "x": -0.083, "y": -0.083 }
  1436. ]
  1437. },
  1438. "js_qz3b": {
  1439. "rotate": [
  1440. { "angle": -2.07 }
  1441. ]
  1442. },
  1443. "js_qz3c": {
  1444. "rotate": [
  1445. { "angle": -1.61 }
  1446. ]
  1447. },
  1448. "js_qz3d": {
  1449. "rotate": [
  1450. { "angle": -0.75 }
  1451. ]
  1452. },
  1453. "js_qz": {
  1454. "scale": [
  1455. { "time": 0.8333, "curve": 0.25, "c3": 0.75 },
  1456. { "time": 1.3333, "x": 0.355, "y": 0.355 }
  1457. ]
  1458. }
  1459. },
  1460. "drawOrder": [
  1461. {
  1462. "offsets": [
  1463. { "slot": "l_star1", "offset": 1 }
  1464. ]
  1465. }
  1466. ]
  1467. },
  1468. "star2_2": {
  1469. "slots": {
  1470. "js_bg": {
  1471. "color": [
  1472. { "color": "ffffff00" }
  1473. ]
  1474. },
  1475. "js_h": {
  1476. "color": [
  1477. { "color": "ffffff00" }
  1478. ]
  1479. },
  1480. "js_hg": {
  1481. "color": [
  1482. { "color": "ffffff00" }
  1483. ]
  1484. },
  1485. "js_qz": {
  1486. "color": [
  1487. { "color": "ffffff00" }
  1488. ]
  1489. },
  1490. "js_y": {
  1491. "color": [
  1492. { "color": "ffffff00" }
  1493. ]
  1494. },
  1495. "l_star1": {
  1496. "attachment": [
  1497. { "name": null }
  1498. ]
  1499. },
  1500. "l_star1_1": {
  1501. "attachment": [
  1502. { "name": "l_star1" }
  1503. ]
  1504. },
  1505. "l_star2": {
  1506. "attachment": [
  1507. { "name": "l_star2" }
  1508. ]
  1509. },
  1510. "l_star2_1": {
  1511. "attachment": [
  1512. { "name": null }
  1513. ]
  1514. },
  1515. "l_star3_1": {
  1516. "attachment": [
  1517. { "name": null }
  1518. ]
  1519. }
  1520. },
  1521. "bones": {
  1522. "js_qz": {
  1523. "scale": [
  1524. { "x": 0.355, "y": 0.355 }
  1525. ]
  1526. },
  1527. "l_star1": {
  1528. "scale": [
  1529. { "x": -0.083, "y": -0.083 }
  1530. ]
  1531. },
  1532. "js_qz3b": {
  1533. "rotate": [
  1534. { "angle": -2.07 }
  1535. ]
  1536. },
  1537. "js_qz3c": {
  1538. "rotate": [
  1539. { "angle": -1.61 }
  1540. ]
  1541. },
  1542. "js_qz3d": {
  1543. "rotate": [
  1544. { "angle": -0.75 }
  1545. ]
  1546. }
  1547. },
  1548. "drawOrder": [
  1549. {
  1550. "offsets": [
  1551. { "slot": "l_star1", "offset": 1 }
  1552. ]
  1553. }
  1554. ]
  1555. },
  1556. "star3": {
  1557. "slots": {
  1558. "l_star1": {
  1559. "attachment": [
  1560. { "name": "l_star1" }
  1561. ]
  1562. },
  1563. "l_star2": {
  1564. "attachment": [
  1565. { "name": "l_star2" }
  1566. ]
  1567. },
  1568. "l_star3": {
  1569. "attachment": [
  1570. { "name": null },
  1571. { "time": 0.5, "name": "l_star3" }
  1572. ]
  1573. }
  1574. },
  1575. "bones": {
  1576. "l_star3": {
  1577. "scale": [
  1578. { "x": -0.083, "y": -0.083, "curve": "stepped" },
  1579. { "time": 0.5, "x": -0.083, "y": -0.083, "curve": 0, "c2": 0.25, "c4": 0.75 },
  1580. { "time": 0.7333, "x": 1.53, "y": 1.53, "curve": 0.25, "c3": 0.75 },
  1581. { "time": 0.9667 }
  1582. ]
  1583. },
  1584. "js_h": {
  1585. "scale": [
  1586. { "curve": 0.25, "c3": 0.75 },
  1587. { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
  1588. { "time": 0.9667 }
  1589. ]
  1590. },
  1591. "js_hg": {
  1592. "scale": [
  1593. { "curve": 0.25, "c3": 0.75 },
  1594. { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
  1595. { "time": 0.9667 }
  1596. ]
  1597. },
  1598. "js_y": {
  1599. "scale": [
  1600. { "curve": 0.25, "c3": 0.75 },
  1601. { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
  1602. { "time": 0.9667 }
  1603. ]
  1604. },
  1605. "js_qz3b": {
  1606. "rotate": [
  1607. { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  1608. { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  1609. { "time": 0.9667, "angle": -2.07 }
  1610. ]
  1611. },
  1612. "js_qz3c": {
  1613. "rotate": [
  1614. { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
  1615. { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  1616. { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  1617. { "time": 0.9667, "angle": -1.61 }
  1618. ]
  1619. },
  1620. "js_qz3d": {
  1621. "rotate": [
  1622. { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
  1623. { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
  1624. { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
  1625. { "time": 0.9667, "angle": -0.75 }
  1626. ]
  1627. }
  1628. },
  1629. "drawOrder": [
  1630. {
  1631. "offsets": [
  1632. { "slot": "l_star3", "offset": 1 },
  1633. { "slot": "l_star2", "offset": 1 },
  1634. { "slot": "l_star1", "offset": 1 }
  1635. ]
  1636. }
  1637. ]
  1638. },
  1639. "star3_1": {
  1640. "slots": {
  1641. "js_bg": {
  1642. "color": [
  1643. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1644. { "time": 0.8333, "color": "ffffff00" }
  1645. ]
  1646. },
  1647. "js_h": {
  1648. "color": [
  1649. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1650. { "time": 0.8333, "color": "ffffff00" }
  1651. ]
  1652. },
  1653. "js_hg": {
  1654. "color": [
  1655. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1656. { "time": 0.8333, "color": "ffffff00" }
  1657. ]
  1658. },
  1659. "js_qz": {
  1660. "color": [
  1661. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1662. { "time": 0.8333, "color": "ffffff00" }
  1663. ]
  1664. },
  1665. "js_y": {
  1666. "color": [
  1667. { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
  1668. { "time": 0.8333, "color": "ffffff00" }
  1669. ]
  1670. },
  1671. "l_star1": {
  1672. "attachment": [
  1673. { "name": null }
  1674. ]
  1675. },
  1676. "l_star1_1": {
  1677. "attachment": [
  1678. { "name": "l_star1" }
  1679. ]
  1680. },
  1681. "l_star2": {
  1682. "attachment": [
  1683. { "name": "l_star2" }
  1684. ]
  1685. },
  1686. "l_star2_1": {
  1687. "attachment": [
  1688. { "name": null }
  1689. ]
  1690. },
  1691. "l_star3_1": {
  1692. "attachment": [
  1693. { "name": "l_star3" }
  1694. ]
  1695. }
  1696. },
  1697. "bones": {
  1698. "l_star1": {
  1699. "scale": [
  1700. { "x": -0.083, "y": -0.083 }
  1701. ]
  1702. },
  1703. "js_qz3b": {
  1704. "rotate": [
  1705. { "angle": -2.07 }
  1706. ]
  1707. },
  1708. "js_qz3c": {
  1709. "rotate": [
  1710. { "angle": -1.61 }
  1711. ]
  1712. },
  1713. "js_qz3d": {
  1714. "rotate": [
  1715. { "angle": -0.75 }
  1716. ]
  1717. },
  1718. "js_qz": {
  1719. "scale": [
  1720. { "time": 0.8333, "curve": 0.25, "c3": 0.75 },
  1721. { "time": 1.3333, "x": 0.355, "y": 0.355 }
  1722. ]
  1723. }
  1724. },
  1725. "drawOrder": [
  1726. {
  1727. "offsets": [
  1728. { "slot": "l_star1", "offset": 1 }
  1729. ]
  1730. }
  1731. ]
  1732. },
  1733. "star3_2": {
  1734. "slots": {
  1735. "js_bg": {
  1736. "color": [
  1737. { "color": "ffffff00" }
  1738. ]
  1739. },
  1740. "js_h": {
  1741. "color": [
  1742. { "color": "ffffff00" }
  1743. ]
  1744. },
  1745. "js_hg": {
  1746. "color": [
  1747. { "color": "ffffff00" }
  1748. ]
  1749. },
  1750. "js_qz": {
  1751. "color": [
  1752. { "color": "ffffff00" }
  1753. ]
  1754. },
  1755. "js_y": {
  1756. "color": [
  1757. { "color": "ffffff00" }
  1758. ]
  1759. },
  1760. "l_star1": {
  1761. "attachment": [
  1762. { "name": null }
  1763. ]
  1764. },
  1765. "l_star1_1": {
  1766. "attachment": [
  1767. { "name": "l_star1" }
  1768. ]
  1769. },
  1770. "l_star2": {
  1771. "attachment": [
  1772. { "name": "l_star2" }
  1773. ]
  1774. },
  1775. "l_star2_1": {
  1776. "attachment": [
  1777. { "name": null }
  1778. ]
  1779. },
  1780. "l_star3_1": {
  1781. "attachment": [
  1782. { "name": "l_star3" }
  1783. ]
  1784. }
  1785. },
  1786. "bones": {
  1787. "js_qz": {
  1788. "scale": [
  1789. { "x": 0.355, "y": 0.355 }
  1790. ]
  1791. },
  1792. "l_star1": {
  1793. "scale": [
  1794. { "x": -0.083, "y": -0.083 }
  1795. ]
  1796. },
  1797. "js_qz3b": {
  1798. "rotate": [
  1799. { "angle": -2.07 }
  1800. ]
  1801. },
  1802. "js_qz3c": {
  1803. "rotate": [
  1804. { "angle": -1.61 }
  1805. ]
  1806. },
  1807. "js_qz3d": {
  1808. "rotate": [
  1809. { "angle": -0.75 }
  1810. ]
  1811. }
  1812. },
  1813. "drawOrder": [
  1814. {
  1815. "offsets": [
  1816. { "slot": "l_star1", "offset": 1 }
  1817. ]
  1818. }
  1819. ]
  1820. },
  1821. "suoxiao": {
  1822. "bones": {
  1823. "js_zhang": {
  1824. "scale": [
  1825. { "curve": 0.25, "c3": 0.75 },
  1826. { "time": 0.5, "x": 0.006, "y": 0.006 }
  1827. ]
  1828. }
  1829. }
  1830. },
  1831. "tanchu": {
  1832. "slots": {
  1833. "l_star1": {
  1834. "attachment": [
  1835. { "name": null }
  1836. ]
  1837. },
  1838. "l_star2": {
  1839. "attachment": [
  1840. { "name": null }
  1841. ]
  1842. },
  1843. "l_star2_1": {
  1844. "attachment": [
  1845. { "name": null }
  1846. ]
  1847. },
  1848. "l_star3": {
  1849. "attachment": [
  1850. { "name": null }
  1851. ]
  1852. },
  1853. "l_star3_1": {
  1854. "attachment": [
  1855. { "name": null }
  1856. ]
  1857. }
  1858. },
  1859. "bones": {
  1860. "js_qz": {
  1861. "scale": [
  1862. { "x": -0.01, "y": -0.01, "curve": 0.25, "c3": 0.75 },
  1863. { "time": 0.1667, "x": 1.13, "y": 0.901, "curve": 0.25, "c3": 0.75 },
  1864. { "time": 0.3667, "x": 0.558, "y": 0.68, "curve": 0.25, "c3": 0.75 },
  1865. { "time": 0.5667 }
  1866. ]
  1867. },
  1868. "a_star1": {
  1869. "translate": [
  1870. { "curve": 0.25, "c3": 0.75 },
  1871. { "time": 0.1667, "y": -408.5, "curve": 0.25, "c3": 0.75 },
  1872. { "time": 0.3667, "y": 136.73, "curve": 0.25, "c3": 0.75 },
  1873. { "time": 0.5667 }
  1874. ]
  1875. },
  1876. "js_zcb": {
  1877. "rotate": [
  1878. { "angle": -8.01, "curve": "stepped" },
  1879. { "time": 0.3667, "angle": -8.01, "curve": 0.25, "c3": 0.75 },
  1880. { "time": 0.7667 }
  1881. ]
  1882. },
  1883. "js_zcb3": {
  1884. "rotate": [
  1885. { "angle": -8.01, "curve": "stepped" },
  1886. { "time": 0.3667, "angle": -8.01, "curve": 0.25, "c3": 0.75 },
  1887. { "time": 0.7667 }
  1888. ]
  1889. },
  1890. "js_zcb2": {
  1891. "rotate": [
  1892. { "angle": -8.01, "curve": "stepped" },
  1893. { "time": 0.3667, "angle": -8.01, "curve": 0.25, "c3": 0.75 },
  1894. { "time": 0.7667 }
  1895. ]
  1896. },
  1897. "js_ycb": {
  1898. "rotate": [
  1899. { "angle": 7.73, "curve": "stepped" },
  1900. { "time": 0.3667, "angle": 7.73, "curve": 0.25, "c3": 0.75 },
  1901. { "time": 0.7667 }
  1902. ]
  1903. },
  1904. "js_ycb3": {
  1905. "rotate": [
  1906. { "angle": 7.73, "curve": "stepped" },
  1907. { "time": 0.3667, "angle": 7.73, "curve": 0.25, "c3": 0.75 },
  1908. { "time": 0.7667 }
  1909. ]
  1910. },
  1911. "js_ycb2": {
  1912. "rotate": [
  1913. { "angle": 7.73, "curve": "stepped" },
  1914. { "time": 0.3667, "angle": 7.73, "curve": 0.25, "c3": 0.75 },
  1915. { "time": 0.7667 }
  1916. ]
  1917. },
  1918. "js_zhang": {
  1919. "scale": [
  1920. { "x": 1.325, "y": 1.325, "curve": "stepped" },
  1921. { "time": 0.5667, "x": 1.325, "y": 1.325, "curve": 0.25, "c3": 0.75 },
  1922. { "time": 0.7667 }
  1923. ]
  1924. },
  1925. "js_h": {
  1926. "scale": [
  1927. { "x": 0.015, "y": 0.015, "curve": "stepped" },
  1928. { "time": 0.5667, "x": 0.015, "y": 0.015, "curve": 0.25, "c3": 0.75 },
  1929. { "time": 0.7667 }
  1930. ]
  1931. },
  1932. "js_hg": {
  1933. "scale": [
  1934. { "x": -0.004, "y": -0.004, "curve": "stepped" },
  1935. { "time": 0.5667, "x": -0.004, "y": -0.004, "curve": 0.25, "c3": 0.75 },
  1936. { "time": 0.7667 }
  1937. ]
  1938. },
  1939. "js_y": {
  1940. "scale": [
  1941. { "x": 0.592, "y": 0.592, "curve": "stepped" },
  1942. { "time": 0.5667, "x": 0.592, "y": 0.592, "curve": 0.25, "c3": 0.75 },
  1943. { "time": 0.7667 }
  1944. ]
  1945. },
  1946. "js_qz2": {
  1947. "scale": [
  1948. { "x": 1.333, "y": 1.333, "curve": "stepped" },
  1949. { "time": 0.5667, "x": 1.333, "y": 1.333, "curve": 0.25, "c3": 0.75 },
  1950. { "time": 0.7667 }
  1951. ]
  1952. }
  1953. }
  1954. },
  1955. "tanchu2": {
  1956. "slots": {
  1957. "l_star1": {
  1958. "attachment": [
  1959. { "name": null }
  1960. ]
  1961. },
  1962. "l_star2": {
  1963. "attachment": [
  1964. { "name": null }
  1965. ]
  1966. },
  1967. "l_star2_1": {
  1968. "attachment": [
  1969. { "name": null }
  1970. ]
  1971. },
  1972. "l_star3": {
  1973. "attachment": [
  1974. { "name": null }
  1975. ]
  1976. },
  1977. "l_star3_1": {
  1978. "attachment": [
  1979. { "name": null }
  1980. ]
  1981. }
  1982. },
  1983. "bones": {
  1984. "js_qz": {
  1985. "scale": [
  1986. { "x": -0.01, "y": -0.01 }
  1987. ]
  1988. },
  1989. "a_star1": {
  1990. "scale": [
  1991. { "x": 1.054, "y": 1.054 }
  1992. ]
  1993. },
  1994. "js_zcb": {
  1995. "rotate": [
  1996. { "angle": -8.01 }
  1997. ]
  1998. },
  1999. "js_zcb3": {
  2000. "rotate": [
  2001. { "angle": -8.01 }
  2002. ]
  2003. },
  2004. "js_zcb2": {
  2005. "rotate": [
  2006. { "angle": -8.01 }
  2007. ]
  2008. },
  2009. "js_ycb": {
  2010. "rotate": [
  2011. { "angle": 7.73 }
  2012. ]
  2013. },
  2014. "js_ycb3": {
  2015. "rotate": [
  2016. { "angle": 7.73 }
  2017. ]
  2018. },
  2019. "js_ycb2": {
  2020. "rotate": [
  2021. { "angle": 7.73 }
  2022. ]
  2023. },
  2024. "js_zhang": {
  2025. "scale": [
  2026. { "x": 1.325, "y": 1.325 }
  2027. ]
  2028. },
  2029. "js_h": {
  2030. "scale": [
  2031. { "x": 0.015, "y": 0.015 }
  2032. ]
  2033. },
  2034. "js_hg": {
  2035. "scale": [
  2036. { "x": -0.004, "y": -0.004 }
  2037. ]
  2038. },
  2039. "js_y": {
  2040. "scale": [
  2041. { "x": 0.592, "y": 0.592 }
  2042. ]
  2043. },
  2044. "js_qz2": {
  2045. "scale": [
  2046. { "x": 1.333, "y": 1.333 }
  2047. ]
  2048. }
  2049. }
  2050. },
  2051. "zhengti": {
  2052. "bones": {
  2053. "js_zhang": {
  2054. "scale": [
  2055. { "curve": 0.25, "c3": 0.75 },
  2056. { "time": 0.5, "x": 0.006, "y": 0.006, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
  2057. { "time": 0.8333, "x": 1.151, "y": 1.151, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  2058. { "time": 1.1667 }
  2059. ]
  2060. }
  2061. }
  2062. }
  2063. }
  2064. }