60053.json 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955
  1. {
  2. "skeleton": { "hash": "/SM7ixsPLVF10nhLxeHhjQy5t9k", "spine": "3.6.53", "width": 126, "height": 210.29, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": 2.17, "y": 66.49 },
  6. { "name": "bone2", "parent": "bone", "length": 14.49, "rotation": 90.84, "x": 0.64, "y": 0.28 },
  7. { "name": "bone3", "parent": "bone2", "length": 26.42, "rotation": -1.77, "x": 14.7 },
  8. { "name": "bone4", "parent": "bone3", "length": 11.3, "rotation": -1.24, "x": 26.42 },
  9. { "name": "bone5", "parent": "bone3", "length": 22.32, "rotation": -154.38, "x": 24.63, "y": -17.32, "color": "1c1af4ff" },
  10. { "name": "bone6", "parent": "bone5", "length": 18.73, "rotation": 1.06, "x": 22.32, "color": "1c1af4ff" },
  11. { "name": "bone7", "parent": "bone6", "length": 11.65, "rotation": 1.46, "x": 18.73, "color": "1c1af4ff" },
  12. { "name": "bone8", "parent": "bone3", "length": 24.57, "rotation": 156.37, "x": 26.13, "y": 8.75, "color": "f9d41cff" },
  13. { "name": "bone9", "parent": "bone8", "length": 16.22, "rotation": -2.01, "x": 24.57, "color": "f9d41cff" },
  14. { "name": "bone10", "parent": "bone9", "length": 16.89, "rotation": -2.25, "x": 16.22, "color": "f9d41cff" },
  15. { "name": "bone11", "parent": "bone", "length": 11.4, "rotation": -89.26, "x": 0.83, "y": -0.45 },
  16. { "name": "bone12", "parent": "bone", "length": 22, "rotation": -95.14, "x": -9.68, "y": -12.73, "color": "0ed316ff" },
  17. { "name": "bone13", "parent": "bone12", "length": 19.14, "rotation": 1.15, "x": 24.1, "y": -0.05, "color": "0ed316ff" },
  18. { "name": "bone14", "parent": "bone13", "length": 14.9, "rotation": -72.8, "x": 21.81, "y": 0.04, "color": "0ed316ff" },
  19. { "name": "bone15", "parent": "bone", "length": 23.07, "rotation": -81.14, "x": 12.22, "y": -13.07, "color": "f619faff" },
  20. { "name": "bone16", "parent": "bone15", "length": 22.94, "rotation": 0.42, "x": 23.07, "color": "f619faff" },
  21. { "name": "bone17", "parent": "bone16", "length": 12.97, "rotation": -78.57, "x": 22.94, "color": "f619faff" },
  22. { "name": "bone18", "parent": "bone3", "length": 21.71, "rotation": -118.92, "x": 26.54, "y": -13.87, "color": "24c5e2ff" },
  23. { "name": "bone19", "parent": "bone18", "length": 20.49, "rotation": 78.88, "x": 21.71, "color": "24c5e2ff" },
  24. { "name": "bone20", "parent": "bone19", "length": 17.13, "rotation": 11.33, "x": 20.49, "color": "24c5e2ff" },
  25. { "name": "bone21", "parent": "bone3", "length": 24.99, "rotation": 134.5, "x": 26.35, "y": 7.01, "color": "edc863ff" },
  26. { "name": "bone22", "parent": "bone21", "length": 19.98, "rotation": -37.29, "x": 24.99, "color": "edc863ff" },
  27. { "name": "bone23", "parent": "bone22", "length": 16.21, "rotation": -6.29, "x": 19.98, "color": "edc863ff" },
  28. { "name": "bone24", "parent": "bone4", "length": 58.59, "rotation": 6.74, "x": 4.72, "y": -0.26 },
  29. { "name": "bone25", "parent": "bone24", "length": 9.93, "rotation": -3.73, "x": 27.66, "y": 17.15 },
  30. { "name": "bone26", "parent": "bone24", "length": 10.08, "rotation": -6.23, "x": 26.8, "y": -10.02 },
  31. { "name": "bone27", "parent": "bone24", "x": 31.07, "y": 4.87 },
  32. { "name": "bone28", "parent": "bone24", "x": 38.56, "y": 5.15 },
  33. { "name": "bone29", "parent": "bone24", "x": 9.05, "y": 4.29 },
  34. { "name": "bone30", "parent": "bone24", "length": 6.07, "rotation": 105.56, "x": 64.95, "y": -14.29 },
  35. { "name": "bone31", "parent": "bone30", "length": 7.57, "rotation": 52.34, "x": 6.07 },
  36. { "name": "bone32", "parent": "bone31", "length": 8.55, "rotation": 18.8, "x": 7.57 },
  37. { "name": "bone33", "parent": "bone32", "length": 6.92, "rotation": -22.2, "x": 8.55 },
  38. { "name": "bone34", "parent": "bone", "length": 26.59, "rotation": -82.41, "x": 13.48, "y": -12.15, "color": "4b0bb4ff" },
  39. { "name": "bone35", "parent": "bone34", "length": 22.95, "rotation": -1.95, "x": 26.59, "color": "4b0bb4ff" },
  40. { "name": "bone36", "parent": "bone35", "length": 17.46, "rotation": 65.92, "x": 22.95, "color": "4b0bb4ff" }
  41. ],
  42. "slots": [
  43. { "name": "youtui2", "bone": "bone34", "attachment": "youtui2" },
  44. { "name": "zuoshou", "bone": "bone8", "attachment": "zuoshou" },
  45. { "name": "teshuzuoshou1", "bone": "bone21", "attachment": "teshuzuoshou1" },
  46. { "name": "shou2", "bone": "bone23", "attachment": "shou2" },
  47. { "name": "teshuzuoshou2", "bone": "bone22", "attachment": "teshuzuoshou2" },
  48. { "name": "zuotui", "bone": "bone12", "attachment": "zuotui" },
  49. { "name": "youtui", "bone": "bone15", "attachment": "youtui" },
  50. { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
  51. { "name": "youshou", "bone": "bone5", "attachment": "youshou" },
  52. { "name": "teshuyoushou1", "bone": "bone18", "attachment": "teshuyoushou1" },
  53. { "name": "toufa3", "bone": "bone24", "attachment": "toufa3" },
  54. { "name": "lian", "bone": "bone24", "attachment": "lian" },
  55. { "name": "zuiba", "bone": "bone29", "attachment": "zuiba" },
  56. { "name": "zhangzui", "bone": "bone29" },
  57. { "name": "zuoyan", "bone": "bone25", "attachment": "zuoyan" },
  58. { "name": "teshuzuoyan", "bone": "bone25" },
  59. { "name": "youyan", "bone": "bone26", "attachment": "youyan" },
  60. { "name": "teshuyouyan", "bone": "bone26" },
  61. { "name": "biyan", "bone": "bone27" },
  62. { "name": "meimao", "bone": "bone28", "attachment": "meimao" },
  63. { "name": "toufa2", "bone": "bone24", "attachment": "toufa2" },
  64. { "name": "toufa1", "bone": "bone24", "attachment": "toufa1" },
  65. { "name": "erduo", "bone": "bone24", "attachment": "erduo" },
  66. { "name": "teshuyoushou2", "bone": "bone19", "attachment": "teshuyoushou2" }
  67. ],
  68. "skins": {
  69. "default": {
  70. "biyan": {
  71. "biyan": { "x": -0.3, "y": -1.61, "rotation": -94.57, "width": 39, "height": 6 }
  72. },
  73. "erduo": {
  74. "erduo": { "x": 21.98, "y": -37.67, "rotation": -94.57, "width": 20, "height": 25 }
  75. },
  76. "lian": {
  77. "lian": { "x": 37.73, "y": -3.82, "rotation": -94.57, "width": 78, "height": 81 }
  78. },
  79. "meimao": {
  80. "meimao": { "x": 2.25, "y": -1.7, "rotation": -94.57, "width": 49, "height": 12 }
  81. },
  82. "shenti": {
  83. "shenti": {
  84. "type": "mesh",
  85. "uvs": [ 0.04586, 0.63091, 0.05085, 0.59449, 0.05483, 0.56547, 0.10486, 0.20083, 0.30881, 0.17127, 0.30988, 0.16218, 0.31063, 0.15573, 0.32208, 0.05798, 0.48444, 0.05526, 0.69217, 0.05177, 0.71581, 0.15628, 0.71766, 0.16444, 0.71872, 0.16914, 0.93354, 0.17909, 0.93354, 0.57352, 0.93354, 0.59985, 0.99591, 0.63222, 1, 0.66668, 1, 0.91197, 1, 1, 0.46316, 1, 0, 1, 0, 0.92256, 0, 0.67283, 0.48182, 0.17144, 0.48199, 0.1638, 0.48212, 0.15825, 0.47269, 0.57674, 0.47221, 0.59795, 0.47145, 0.632, 0.47054, 0.67228, 0.46447, 0.94182, 0.46781, 0.79336, 0.25156, 0.8006, 0.74505, 0.8006 ],
  86. "triangles": [ 34, 17, 18, 31, 33, 32, 31, 32, 34, 22, 33, 31, 31, 34, 18, 21, 22, 31, 20, 21, 31, 31, 18, 19, 20, 31, 19, 1, 2, 28, 29, 1, 28, 0, 1, 29, 29, 28, 15, 16, 29, 15, 30, 0, 29, 30, 29, 16, 30, 16, 17, 23, 0, 30, 30, 33, 23, 34, 30, 17, 32, 30, 34, 32, 33, 30, 22, 23, 33, 14, 12, 13, 2, 3, 4, 27, 2, 4, 27, 12, 14, 28, 2, 27, 27, 14, 15, 28, 27, 15, 26, 7, 8, 6, 7, 26, 26, 8, 9, 26, 9, 10, 25, 6, 26, 5, 6, 25, 25, 26, 10, 11, 25, 10, 24, 5, 25, 4, 5, 24, 24, 25, 11, 24, 11, 12, 27, 4, 24, 27, 24, 12 ],
  87. "vertices": [ 3, 3, -3.71, 18.26, 0.24927, 2, 11.55, 18.36, 0.68952, 11, -12.25, -18.56, 0.06121, 3, 3, -0.94, 18.08, 0.39064, 2, 14.32, 18.1, 0.58373, 11, -15.02, -18.3, 0.02562, 3, 3, 1.27, 17.94, 0.50288, 2, 16.52, 17.89, 0.48611, 11, -17.22, -18.1, 0.01101, 2, 4, 2.25, 16.24, 0.20898, 3, 29.01, 16.19, 0.79102, 2, 4, 4.83, 7.36, 0.68972, 3, 31.4, 7.25, 0.31028, 2, 4, 5.52, 7.34, 0.77004, 3, 32.09, 7.22, 0.22996, 2, 4, 6.01, 7.32, 0.81472, 3, 32.59, 7.19, 0.18528, 2, 4, 13.46, 7.1, 0.99975, 3, 40.02, 6.81, 2.5E-4, 1, 4, 13.93, -0.03, 1, 2, 4, 14.54, -9.15, 0.99076, 3, 40.76, -9.47, 0.00924, 2, 4, 6.64, -10.49, 0.75055, 3, 32.83, -10.63, 0.24945, 2, 4, 6.03, -10.6, 0.69228, 3, 32.21, -10.73, 0.30772, 2, 4, 5.67, -10.66, 0.65078, 3, 31.86, -10.78, 0.34922, 3, 4, 5.27, -20.13, 0.32085, 3, 31.25, -20.24, 0.67911, 2, 45.31, -21.2, 3.0E-5, 3, 3, 1.28, -20.72, 0.51496, 2, 15.34, -20.76, 0.34174, 11, -16.11, 20.55, 0.1433, 3, 3, -0.72, -20.76, 0.40846, 2, 13.34, -20.73, 0.38443, 11, -14.11, 20.53, 0.20711, 3, 3, -3.14, -23.54, 0.29313, 2, 10.84, -23.44, 0.40314, 11, -11.61, 23.24, 0.30372, 3, 3, -5.75, -23.76, 0.24436, 2, 8.22, -23.58, 0.39687, 11, -8.99, 23.38, 0.35877, 3, 3, -24.39, -24.06, 0.06454, 2, -10.42, -23.3, 0.11743, 11, 9.65, 23.14, 0.81803, 2, 2, -17.11, -23.2, 0.01714, 11, 16.34, 23.06, 0.98286, 2, 2, -16.77, 0.41, 0.00185, 11, 16.03, -0.56, 0.99815, 2, 2, -16.47, 20.79, 0.20721, 11, 15.77, -20.94, 0.79279, 3, 3, -25.91, 19.92, 0.03172, 2, -10.58, 20.7, 0.33363, 11, 9.89, -20.86, 0.63465, 3, 3, -6.93, 20.22, 0.13402, 2, 8.4, 20.42, 0.74131, 11, -9.09, -20.62, 0.12467, 1, 4, 5.1, -0.25, 1, 1, 4, 5.69, -0.23, 1, 1, 4, 6.11, -0.22, 1, 2, 3, 0.71, -0.45, 0.99965, 11, -16.12, 0.27, 3.5E-4, 2, 2, 13.78, -0.43, 0.99957, 11, -14.51, 0.23, 4.3E-4, 3, 3, -3.49, -0.47, 0.00572, 2, 11.19, -0.36, 0.99367, 11, -11.93, 0.16, 6.1E-4, 3, 3, -6.55, -0.48, 0.00114, 2, 8.13, -0.28, 0.99796, 11, -8.87, 0.08, 9.0E-4, 3, 3, -27.04, -0.54, 2.0E-4, 2, -12.35, 0.29, 0.17868, 11, 11.61, -0.45, 0.82111, 3, 3, -15.76, -0.5, 7.2E-4, 2, -1.07, -0.02, 0.62992, 11, 0.33, -0.16, 0.36936, 3, 3, -16.46, 9, 0.03655, 2, -1.48, 9.5, 0.57865, 11, 0.76, -9.68, 0.3848, 3, 3, -16.11, -12.71, 0.07396, 2, -1.8, -12.21, 0.42509, 11, 1.04, 12.04, 0.50095 ],
  88. "hull": 24,
  89. "edges": [ 32, 30, 26, 24, 8, 6, 0, 46, 14, 16, 16, 18, 38, 40, 40, 42, 8, 48, 48, 24, 8, 10, 50, 48, 10, 50, 22, 24, 50, 22, 10, 12, 12, 14, 16, 52, 52, 50, 12, 52, 18, 20, 20, 22, 52, 20, 4, 6, 54, 48, 4, 54, 26, 28, 28, 30, 54, 28, 56, 54, 30, 56, 0, 2, 2, 4, 56, 2, 58, 56, 0, 58, 58, 32, 60, 58, 46, 60, 32, 34, 60, 34, 42, 44, 44, 46, 40, 62, 44, 62, 34, 36, 36, 38, 62, 36, 60, 64, 64, 62 ],
  90. "width": 44,
  91. "height": 76
  92. }
  93. },
  94. "shou2": {
  95. "shou2": { "x": 8.79, "y": 0.01, "rotation": -180, "width": 18, "height": 17 }
  96. },
  97. "teshuyoushou1": {
  98. "teshuyoushou1": {
  99. "type": "mesh",
  100. "uvs": [ 1, 0.39246, 1, 1, 0.58285, 1, 0, 0.57832, 0, 0, 0.23164, 0 ],
  101. "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 2, 0, 1 ],
  102. "vertices": [ 27.87, 10.45, 34.82, -1.68, 22.88, -8.53, 1.37, -9.68, -5.25, 1.85, 1.38, 5.66 ],
  103. "hull": 6,
  104. "edges": [ 8, 10, 2, 0, 10, 0, 6, 8, 2, 4, 6, 4 ],
  105. "width": 33,
  106. "height": 23
  107. }
  108. },
  109. "teshuyoushou2": {
  110. "teshuyoushou2": {
  111. "type": "mesh",
  112. "uvs": [ 1, 0.56915, 0.8803, 0.6226, 0.78946, 0.66317, 0.67854, 0.7127, 0.37997, 1, 0, 1, 0, 0.7317, 0.17786, 0.46185, 0.21756, 0.40162, 0.27412, 0.31581, 0.3284, 0, 1, 0, 0.41372, 0.58628, 0.53152, 0.46848, 0.4887, 0.5113 ],
  113. "triangles": [ 13, 10, 11, 9, 10, 13, 14, 9, 13, 13, 11, 0, 1, 13, 0, 2, 13, 1, 14, 13, 2, 8, 9, 14, 12, 8, 14, 7, 8, 12, 3, 14, 2, 12, 14, 3, 12, 5, 6, 12, 6, 7, 4, 5, 12, 4, 12, 3 ],
  114. "vertices": [ 2, 19, 28.63, -15.58, 0.12683, 20, 4.92, -16.88, 0.87317, 2, 19, 24.07, -13.99, 0.25824, 20, 0.76, -14.42, 0.74176, 2, 19, 20.61, -12.79, 0.47132, 20, -2.4, -12.56, 0.52868, 2, 19, 16.38, -11.32, 0.79624, 20, -6.25, -10.29, 0.20376, 1, 19, -0.23, -11.9, 1, 1, 19, -8.95, -1.86, 1, 1, 19, 0.17, 6.06, 1, 2, 19, 13.42, 9.32, 0.87824, 20, -5.1, 10.52, 0.12176, 2, 19, 16.38, 10.04, 0.70366, 20, -2.06, 10.66, 0.29634, 2, 19, 20.59, 11.08, 0.34295, 20, 2.27, 10.84, 0.65705, 2, 19, 32.57, 18.96, 2.5E-4, 20, 15.57, 16.22, 0.99975, 1, 20, 27.19, -4.22, 1, 1, 19, 14.6, -0.59, 1, 2, 19, 21.31, -0.23, 0.02265, 20, 0.76, -0.38, 0.97735, 1, 19, 18.87, -0.36, 1 ],
  115. "hull": 12,
  116. "edges": [ 10, 12, 20, 22, 18, 20, 8, 10, 8, 6, 0, 22, 10, 24, 6, 24, 12, 14, 24, 14, 22, 26, 18, 26, 0, 2, 26, 2, 2, 4, 4, 6, 24, 28, 28, 26, 4, 28, 14, 16, 16, 18, 28, 16 ],
  117. "width": 35,
  118. "height": 45
  119. }
  120. },
  121. "teshuyouyan": {
  122. "teshuyouyan": { "x": 5.39, "y": 0.21, "rotation": -88.34, "width": 16, "height": 15 }
  123. },
  124. "teshuzuoshou1": {
  125. "teshuzuoshou1": {
  126. "type": "mesh",
  127. "uvs": [ 1, 0.38485, 0.49993, 1, 0, 1, 0, 0.47335, 0.58843, 0, 1, 0 ],
  128. "triangles": [ 4, 5, 0, 3, 1, 2, 4, 1, 3, 4, 0, 1 ],
  129. "vertices": [ 3.84, 7.3, 25.01, 9.23, 35.15, -0.42, 25.71, -10.34, 5.29, -7.9, -3.06, 0.05 ],
  130. "hull": 6,
  131. "edges": [ 0, 10, 2, 4, 0, 2, 8, 10, 4, 6, 8, 6 ],
  132. "width": 28,
  133. "height": 26
  134. }
  135. },
  136. "teshuzuoshou2": {
  137. "teshuzuoshou2": { "x": 11.38, "y": 1.46, "rotation": 173.71, "width": 29, "height": 20 }
  138. },
  139. "teshuzuoyan": {
  140. "teshuzuoyan": { "x": 4.72, "y": 0.82, "rotation": -90.84, "width": 14, "height": 15 }
  141. },
  142. "toufa1": {
  143. "toufa1": {
  144. "type": "mesh",
  145. "uvs": [ 1, 0.07099, 1, 0.17413, 0.79729, 0.2053, 0.75607, 0.25472, 0.71188, 0.30769, 0.66729, 0.36113, 0.66173, 0.43141, 0.65981, 0.51717, 0.65861, 0.57098, 0.65729, 0.6303, 0.62005, 0.7277, 0.59229, 0.8003, 0.42641, 0.9126, 0.29729, 1, 0.07466, 1, 0, 1, 0, 0.8683, 0.0592, 0.82053, 0.11183, 0.77807, 0.18728, 0.71719, 0.24229, 0.6728, 0.23948, 0.56592, 0.23729, 0.48297, 0.23729, 0.36388, 0.23729, 0.26197, 0.25457, 0.17874, 0.27729, 0.0693, 0.51229, 0, 1, 0, 0.52848, 0.16616, 0.41819, 0.39849, 0.42642, 0.65599, 0.27348, 0.87698, 0.65603, 0.10084, 0.46003, 0.30073, 0.49058, 0.24068, 0.42153, 0.50307, 0.32052, 0.80902, 0.17639, 0.93705, 0.36198, 0.74911, 0.42409, 0.58292 ],
  146. "triangles": [ 14, 38, 13, 38, 32, 13, 13, 32, 12, 38, 14, 16, 14, 15, 16, 16, 17, 38, 38, 17, 32, 32, 37, 12, 12, 37, 11, 17, 18, 32, 32, 18, 37, 37, 39, 11, 18, 19, 37, 37, 19, 39, 11, 39, 10, 39, 31, 10, 19, 20, 39, 39, 20, 31, 10, 31, 9, 20, 40, 31, 20, 21, 40, 31, 40, 9, 9, 40, 8, 21, 36, 40, 8, 40, 7, 7, 40, 36, 21, 22, 36, 7, 36, 6, 22, 30, 36, 36, 30, 6, 22, 23, 30, 30, 34, 6, 30, 23, 24, 6, 34, 5, 34, 30, 24, 34, 35, 5, 5, 35, 4, 35, 29, 4, 4, 29, 3, 35, 34, 25, 34, 24, 25, 29, 33, 3, 29, 35, 26, 35, 25, 26, 26, 27, 29, 3, 33, 2, 1, 2, 0, 2, 33, 0, 29, 27, 33, 0, 33, 28, 33, 27, 28 ],
  147. "vertices": [ 1, 30, -1.43, 1.17, 1, 2, 30, -0.36, 4.07, 0.99114, 31, -0.71, 7.58, 0.00886, 3, 30, 3.2, 3.76, 0.6971, 31, 1.22, 4.57, 0.30271, 32, -4.54, 6.38, 1.9E-4, 3, 30, 4.36, 4.91, 0.33428, 31, 2.85, 4.35, 0.65244, 32, -3.07, 5.64, 0.01328, 3, 30, 5.62, 6.15, 0.11236, 31, 4.59, 4.12, 0.79226, 32, -1.5, 4.86, 0.09538, 3, 30, 6.88, 7.39, 0.02018, 31, 6.35, 3.88, 0.60802, 32, 0.09, 4.06, 0.3718, 3, 30, 7.69, 9.34, 2.6E-4, 31, 8.38, 4.42, 0.18934, 32, 2.19, 3.92, 0.8104, 3, 31, 10.85, 5.16, 0.01166, 32, 4.76, 3.83, 0.98668, 33, -4.95, 2.12, 0.00166, 3, 31, 12.39, 5.63, 2.0E-5, 32, 6.38, 3.78, 0.94612, 33, -3.44, 2.68, 0.05387, 2, 32, 8.16, 3.71, 0.71422, 33, -1.77, 3.29, 0.28578, 2, 32, 11.06, 3.02, 0.10903, 33, 1.19, 3.74, 0.89097, 2, 32, 13.23, 2.5, 0.00111, 33, 3.39, 4.08, 0.99889, 1, 33, 7.54, 2.65, 1, 1, 33, 10.78, 1.53, 1, 1, 33, 12.13, -2, 1, 1, 33, 12.58, -3.19, 1, 1, 33, 8.89, -4.6, 1, 1, 33, 7.19, -4.17, 1, 1, 33, 5.68, -3.79, 1, 2, 32, 10.59, -4.33, 0.0309, 33, 3.52, -3.24, 0.9691, 2, 32, 9.27, -3.37, 0.22645, 33, 1.94, -2.84, 0.77355, 2, 32, 6.07, -3.34, 0.91682, 33, -1.04, -4.03, 0.08318, 3, 31, 12.03, -1.99, 0.00108, 32, 3.58, -3.33, 0.99855, 33, -3.35, -4.96, 3.7E-4, 2, 31, 8.62, -3.07, 0.43, 32, 0.01, -3.25, 0.57, 2, 31, 5.71, -3.99, 0.96804, 32, -3.05, -3.18, 0.03196, 1, 31, 3.24, -4.46, 1, 2, 30, 10.09, -3.11, 0.06816, 31, -0.01, -5.08, 0.93184, 2, 30, 5.62, -3.69, 0.74647, 31, -3.19, -1.9, 0.25353, 1, 30, -2.16, -0.83, 1, 1, 31, 1.48, -0.14, 1, 1, 32, 1.11, -0.19, 1, 2, 32, 8.84, -0.23, 0.04477, 33, 0.35, -0.1, 0.95523, 1, 33, 7.47, -0.16, 1, 1, 30, 4.37, -0.01, 1, 1, 31, 5.68, -0.03, 1, 1, 31, 3.8, -0.08, 1, 1, 32, 4.25, -0.21, 1, 1, 33, 5.28, -0.14, 1, 1, 33, 9.75, -1.06, 1, 2, 32, 11.61, -1.38, 5.4E-4, 33, 3.35, -0.13, 0.99946, 2, 32, 6.65, -0.22, 0.99632, 33, -1.68, -0.92, 0.00368 ],
  148. "hull": 29,
  149. "edges": [ 2, 4, 54, 56, 54, 52, 30, 32, 2, 0, 0, 56, 26, 28, 28, 30, 0, 66, 66, 58, 54, 66, 66, 4, 52, 58, 4, 6, 58, 6, 68, 60, 48, 68, 68, 10, 48, 50, 50, 52, 58, 70, 70, 68, 50, 70, 44, 46, 46, 48, 46, 60, 10, 12, 60, 12, 6, 8, 8, 10, 70, 8, 60, 72, 44, 72, 12, 14, 72, 14, 40, 62, 62, 18, 74, 64, 36, 74, 74, 22, 28, 76, 76, 64, 32, 76, 76, 26, 32, 34, 34, 36, 34, 64, 22, 24, 24, 26, 64, 24, 36, 38, 38, 40, 62, 78, 78, 74, 38, 78, 18, 20, 20, 22, 78, 20, 40, 42, 42, 44, 62, 80, 80, 72, 42, 80, 14, 16, 16, 18, 80, 16 ],
  150. "width": 17,
  151. "height": 30
  152. }
  153. },
  154. "toufa2": {
  155. "toufa2": {
  156. "type": "mesh",
  157. "uvs": [ 0.92445, 0.33647, 1, 0.48577, 1, 0.67062, 0.94387, 0.90998, 0.87502, 0.91945, 0.88738, 1, 0.76381, 1, 0.72674, 0.81018, 0.69143, 0.78648, 0.64553, 0.67273, 0.60317, 0.49499, 0.5555, 0.48314, 0.49901, 0.45944, 0.47077, 0.50684, 0.41251, 0.63718, 0.33484, 0.73909, 0.24128, 0.81966, 0.13007, 0.86232, 0.13007, 0.9192, 0.07004, 0.93578, 0, 0.89313, 0, 0.4326, 0.06322, 0.25931, 0.16536, 0.12068, 0.31801, 0.0378, 0.54924, 0.0378, 0.55021, 0, 0.80088, 0 ],
  158. "triangles": [ 12, 24, 25, 23, 24, 12, 22, 23, 12, 13, 21, 22, 25, 27, 0, 27, 25, 26, 10, 11, 25, 12, 25, 11, 0, 10, 25, 12, 13, 22, 14, 21, 13, 10, 0, 1, 1, 9, 10, 2, 9, 1, 15, 21, 14, 7, 8, 9, 2, 7, 9, 16, 21, 15, 17, 21, 16, 20, 21, 17, 2, 4, 7, 19, 20, 17, 3, 4, 2, 18, 19, 17, 6, 7, 4, 6, 4, 5 ],
  159. "vertices": [ 66.16, -48.83, 54.71, -55.34, 41.26, -54.26, 24.28, -47.39, 24.13, -40.61, 18.17, -41.35, 19.14, -29.27, 33.24, -26.76, 35.24, -23.45, 43.88, -19.63, 57.14, -16.52, 58.38, -11.93, 60.54, -6.55, 57.31, -3.52, 48.28, 2.93, 41.48, 11.11, 36.34, 20.72, 34.11, 31.83, 29.97, 32.16, 29.23, 38.12, 32.88, 44.72, 66.39, 42.04, 78.51, 34.85, 87.8, 24.07, 92.64, 8.67, 90.83, -13.91, 93.57, -14.23, 91.61, -38.72 ],
  160. "hull": 28,
  161. "edges": [ 40, 38, 38, 36, 36, 34, 34, 32, 32, 30, 30, 28, 28, 26, 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 10, 12, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 54, 52, 54, 52, 50, 50, 48, 48, 46, 46, 44, 40, 42, 44, 42 ],
  162. "width": 98,
  163. "height": 73
  164. }
  165. },
  166. "toufa3": {
  167. "toufa3": { "x": 38.36, "y": 29.23, "rotation": -94.57, "width": 20, "height": 37 }
  168. },
  169. "youshou": {
  170. "youshou": {
  171. "type": "mesh",
  172. "uvs": [ 0.706, 0.32139, 0.72379, 0.33487, 0.7504, 0.35506, 1, 0.54433, 1, 0.60478, 1, 0.62311, 1, 0.65886, 1, 1, 0.52636, 1, 0.40217, 0.82725, 0.39238, 0.81363, 0.37771, 0.79322, 0.20109, 0.54754, 0.18672, 0.52756, 0.16246, 0.49381, 0, 0.26783, 0, 0, 0.28218, 0, 0.44351, 0.44351, 0.41724, 0.41724, 0.46281, 0.46281, 0.73433, 0.73433, 0.71747, 0.71747, 0.70093, 0.70093 ],
  173. "triangles": [ 13, 19, 18, 13, 14, 19, 14, 15, 19, 18, 19, 0, 19, 16, 17, 19, 17, 0, 19, 15, 16, 10, 23, 22, 10, 11, 23, 11, 20, 23, 11, 12, 20, 5, 22, 23, 23, 20, 2, 5, 23, 4, 4, 23, 3, 23, 2, 3, 12, 18, 20, 12, 13, 18, 20, 1, 2, 20, 18, 1, 18, 0, 1, 8, 21, 7, 21, 6, 7, 8, 9, 21, 9, 22, 21, 9, 10, 22, 6, 21, 5, 5, 21, 22 ],
  174. "vertices": [ 2, 6, -2.59, 11.16, 0.39352, 5, 19.52, 11.11, 0.60648, 2, 6, -1.6, 11.33, 0.46531, 5, 20.5, 11.3, 0.53469, 2, 6, -0.13, 11.6, 0.5724, 5, 21.97, 11.59, 0.4276, 2, 6, 13.68, 14.08, 0.99843, 5, 35.73, 14.33, 0.00157, 1, 6, 16.94, 12.51, 1, 2, 7, -0.49, 12.04, 0.04436, 6, 17.93, 12.03, 0.95564, 2, 7, 1.41, 11.06, 0.98581, 6, 19.86, 11.1, 0.01419, 1, 7, 19.62, 1.7, 1, 2, 7, 12.47, -12.2, 0.99208, 6, 31.51, -11.88, 0.00792, 2, 7, 1.38, -11.1, 0.62699, 6, 20.39, -11.06, 0.37301, 2, 7, 0.5, -11.02, 0.56358, 6, 19.52, -11, 0.43642, 2, 7, -0.81, -10.89, 0.46517, 6, 18.2, -10.9, 0.53483, 2, 6, 2.39, -9.75, 0.75271, 5, 24.89, -9.7, 0.24729, 2, 6, 1.11, -9.65, 0.65544, 5, 23.6, -9.63, 0.34456, 2, 6, -1.06, -9.49, 0.46842, 5, 21.43, -9.51, 0.53158, 1, 5, 6.87, -8.72, 1, 1, 5, -7.73, -2, 1, 1, 5, -3.84, 6.46, 1, 2, 6, 0.25, 0.17, 0.68286, 5, 22.56, 0.18, 0.31714, 2, 6, -1.55, 0.07, 0.00276, 5, 20.77, 0.05, 0.99724, 2, 6, 1.57, 0.24, 0.99513, 5, 23.88, 0.27, 0.00487, 2, 7, 1.43, 1.2, 0.92732, 6, 20.13, 1.23, 0.07268, 2, 7, 0.28, 1.16, 0.64357, 6, 18.98, 1.17, 0.35643, 2, 7, -0.85, 1.13, 0.12701, 6, 17.85, 1.11, 0.87299 ],
  175. "hull": 18,
  176. "edges": [ 32, 34, 30, 32, 14, 16, 26, 36, 36, 2, 26, 28, 28, 30, 32, 38, 38, 36, 28, 38, 2, 0, 0, 34, 38, 0, 24, 26, 40, 36, 24, 40, 2, 4, 4, 6, 40, 4, 16, 18, 14, 42, 18, 42, 12, 14, 42, 12, 10, 12, 44, 42, 10, 44, 18, 20, 44, 20, 20, 22, 22, 24, 40, 46, 46, 44, 22, 46, 6, 8, 8, 10, 46, 8 ],
  177. "width": 33,
  178. "height": 60
  179. }
  180. },
  181. "youtui": {
  182. "youtui": {
  183. "type": "mesh",
  184. "uvs": [ 0.9831, 0.43188, 0.99774, 0.46274, 0.99999, 0.49245, 0.99999, 0.79615, 1, 0.81649, 1, 0.83575, 1, 1, 0, 1, 0, 0.95308, 0, 0.88968, 0.23579, 0.8181, 0.23017, 0.79829, 0.22376, 0.77571, 0.15178, 0.52198, 0.1422, 0.49337, 0.13496, 0.46826, 0, 0, 0.40296, 0, 0.78734, 0, 0.69956, 0.88283, 0.56299, 0.47632, 0.5703, 0.50221, 0.55342, 0.44784, 0.68311, 0.83442, 0.67492, 0.81029, 0.66731, 0.78788 ],
  185. "triangles": [ 7, 19, 6, 7, 8, 19, 19, 8, 10, 8, 9, 10, 19, 5, 6, 19, 10, 23, 19, 23, 5, 23, 4, 5, 10, 24, 23, 23, 24, 4, 10, 11, 24, 24, 3, 4, 11, 25, 24, 24, 25, 3, 11, 12, 25, 25, 2, 3, 12, 21, 25, 25, 21, 2, 12, 13, 21, 13, 20, 21, 21, 1, 2, 21, 20, 1, 13, 14, 20, 14, 22, 20, 14, 15, 22, 20, 0, 1, 20, 22, 0, 15, 17, 22, 15, 16, 17, 22, 18, 0, 22, 17, 18 ],
  186. "vertices": [ 2, 15, 22.17, 12.15, 0.60269, 16, -0.81, 12.15, 0.39731, 2, 15, 23.96, 12.27, 0.48879, 16, 0.99, 12.26, 0.51121, 2, 15, 25.65, 12.07, 0.38358, 16, 2.67, 12.05, 0.61642, 2, 16, 19.75, 9.26, 0.99084, 17, -9.7, -1.29, 0.00916, 2, 16, 20.9, 9.07, 0.97283, 17, -9.29, -0.21, 0.02717, 2, 16, 21.98, 8.89, 0.94368, 17, -8.91, 0.82, 0.05632, 2, 16, 31.22, 7.38, 0.5559, 17, -5.6, 9.58, 0.4441, 1, 17, 19.66, 0.03, 1, 2, 16, 24.23, -18.83, 3.4E-4, 17, 18.71, -2.47, 0.99966, 2, 16, 20.66, -18.25, 0.00937, 17, 17.44, -5.85, 0.99063, 2, 16, 17.66, -11.31, 0.31522, 17, 10.04, -7.42, 0.68478, 2, 16, 16.52, -11.28, 0.45958, 17, 9.78, -8.53, 0.54042, 2, 16, 15.22, -11.24, 0.58123, 17, 9.49, -9.79, 0.41877, 3, 15, 23.78, -10.82, 0.39157, 16, 0.64, -10.83, 0.6053, 17, 6.19, -24.01, 0.00313, 3, 15, 22.13, -10.83, 0.5237, 16, -1.01, -10.82, 0.47555, 17, 5.86, -25.63, 7.6E-4, 3, 15, 20.69, -10.8, 0.6371, 16, -2.46, -10.78, 0.36281, 17, 5.53, -27.03, 1.0E-4, 1, 15, -6.24, -10.29, 1, 1, 15, -4.57, 0.46, 1, 1, 15, -2.97, 10.72, 1, 2, 16, 23.32, 0.45, 0.4765, 17, -0.37, 0.46, 0.5235, 2, 15, 22.92, 0.55, 0.64157, 16, -0.14, 0.55, 0.35843, 1, 16, 1.35, 0.51, 1, 1, 15, 21.28, 0.54, 1, 1, 16, 20.53, 0.46, 1, 1, 16, 19.13, 0.46, 1, 1, 16, 17.84, 0.47, 1 ],
  187. "hull": 19,
  188. "edges": [ 12, 14, 20, 18, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 28, 40, 40, 2, 26, 28, 42, 40, 26, 42, 2, 4, 42, 4, 28, 30, 30, 32, 34, 44, 44, 40, 30, 44, 2, 0, 0, 36, 44, 0, 38, 46, 20, 46, 10, 12, 46, 10, 20, 22, 48, 46, 22, 48, 8, 10, 48, 8, 22, 24, 24, 26, 42, 50, 50, 48, 24, 50, 4, 6, 6, 8, 50, 6 ],
  189. "width": 27,
  190. "height": 57
  191. }
  192. },
  193. "youtui2": {
  194. "youtui2": {
  195. "type": "mesh",
  196. "uvs": [ 0.68433, 0.40542, 0.69137, 0.4343, 0.69814, 0.46207, 0.76254, 0.72637, 0.76849, 0.75075, 0.77472, 0.77633, 1, 0.85633, 1, 0.94464, 1, 1, 0.16391, 1, 0.14656, 0.89412, 0.14081, 0.85903, 0.13559, 0.82722, 0.08729, 0.53254, 0.08223, 0.50165, 0.07799, 0.47579, 0, 0, 0.29197, 0, 0.58553, 0, 0.44602, 0.86131, 0.43884, 0.82118, 0.43361, 0.79191, 0.37641, 0.47213, 0.37079, 0.44067, 0.38186, 0.50258 ],
  197. "triangles": [ 9, 19, 8, 19, 7, 8, 19, 5, 7, 5, 6, 7, 9, 10, 19, 10, 20, 19, 10, 11, 20, 5, 20, 4, 5, 19, 20, 11, 21, 20, 11, 12, 21, 12, 24, 21, 12, 13, 24, 20, 3, 4, 20, 21, 3, 21, 2, 3, 21, 24, 2, 13, 22, 24, 24, 1, 2, 24, 22, 1, 13, 14, 22, 14, 23, 22, 14, 15, 23, 15, 17, 23, 15, 16, 17, 22, 0, 1, 22, 23, 0, 23, 18, 0, 23, 17, 18 ],
  198. "vertices": [ 3, 34, 23.66, 11.38, 0.6344, 35, -3.31, 11.27, 0.36559, 36, -0.42, 28.58, 1.0E-5, 3, 34, 25.41, 11.41, 0.5046, 35, -1.56, 11.36, 0.49488, 36, 0.37, 27.02, 5.2E-4, 3, 34, 27.1, 11.44, 0.3775, 35, 0.12, 11.45, 0.62011, 36, 1.14, 25.51, 0.00239, 2, 35, 16.14, 12.26, 0.58935, 36, 8.41, 11.22, 0.41065, 2, 35, 17.62, 12.33, 0.47063, 36, 9.08, 9.91, 0.52937, 2, 35, 19.16, 12.41, 0.3115, 36, 9.79, 8.52, 0.6885, 2, 35, 24.76, 20.23, 0.00312, 36, 19.21, 6.6, 0.99688, 1, 36, 20.89, 1.58, 1, 1, 36, 21.94, -1.57, 1, 2, 35, 30.3, -11.4, 0.54746, 36, -7.41, -11.36, 0.45254, 2, 35, 23.91, -11.41, 0.76514, 36, -10.03, -5.53, 0.23486, 2, 35, 21.79, -11.42, 0.86254, 36, -10.9, -3.6, 0.13746, 3, 34, 46.07, -12.09, 1.5E-4, 35, 19.88, -11.42, 0.92906, 36, -11.68, -1.85, 0.07078, 2, 34, 28.3, -11.52, 0.49615, 35, 2.11, -11.46, 0.50385, 2, 34, 26.44, -11.47, 0.63514, 35, 0.24, -11.46, 0.36486, 2, 34, 24.88, -11.42, 0.7432, 35, -1.32, -11.47, 0.2568, 1, 34, -3.8, -10.5, 1, 1, 34, -2.37, 0.21, 1, 1, 34, -0.93, 10.97, 1, 2, 35, 23.04, -0.19, 0.51772, 36, -0.14, -0.16, 0.48228, 1, 35, 20.62, -0.22, 1, 1, 35, 18.85, -0.24, 1, 2, 34, 26.12, -0.44, 0.86293, 35, -0.45, -0.46, 0.13707, 1, 34, 24.23, -0.4, 1, 1, 35, 1.39, -0.44, 1 ],
  199. "hull": 19,
  200. "edges": [ 10, 12, 16, 18, 32, 34, 34, 36, 12, 14, 14, 16, 38, 14, 18, 20, 20, 38, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 42, 6, 28, 44, 44, 2, 28, 30, 30, 32, 34, 46, 46, 44, 30, 46, 2, 0, 46, 0, 24, 26, 26, 28, 42, 48, 48, 44, 26, 48, 2, 4, 4, 6, 48, 4, 36, 0 ],
  201. "width": 37,
  202. "height": 60
  203. }
  204. },
  205. "youyan": {
  206. "youyan": { "x": 3.89, "y": 0.16, "rotation": -88.34, "width": 16, "height": 14 }
  207. },
  208. "zhangzui": {
  209. "zhangzui": { "x": -2.49, "y": -2.61, "rotation": -94.57, "width": 18, "height": 14 }
  210. },
  211. "zuiba": {
  212. "zuiba": { "x": 2.54, "y": -2.51, "rotation": -94.57, "width": 29, "height": 10 }
  213. },
  214. "zuoshou": {
  215. "zuoshou": {
  216. "type": "mesh",
  217. "uvs": [ 1, 0.17995, 0.81146, 0.47229, 0.79659, 0.49535, 0.7758, 0.5276, 0.6202, 0.76887, 0.61245, 0.78088, 0.60158, 0.79774, 0.47114, 1, 0.08103, 1, 0, 1, 0, 0.67142, 0.06495, 0.61003, 0.08656, 0.5896, 0.09863, 0.57819, 0.32921, 0.36025, 0.34959, 0.34098, 0.38169, 0.31064, 0.71034, 0, 1, 0, 0.57145, 0.42747, 0.59553, 0.39741, 0.55675, 0.4501, 0.34805, 0.69135, 0.32792, 0.71461, 0.36136, 0.67595 ],
  218. "triangles": [ 8, 23, 7, 7, 23, 6, 23, 8, 10, 23, 10, 11, 10, 8, 9, 23, 22, 6, 6, 22, 5, 11, 12, 23, 23, 12, 22, 12, 13, 22, 22, 24, 5, 5, 24, 4, 24, 21, 4, 4, 21, 3, 22, 13, 24, 13, 14, 24, 24, 14, 21, 21, 19, 3, 14, 15, 21, 21, 15, 19, 3, 19, 2, 19, 20, 2, 2, 20, 1, 1, 20, 0, 15, 16, 19, 19, 16, 20, 0, 20, 18, 20, 16, 17, 20, 17, 18 ],
  219. "vertices": [ 1, 8, 5.19, 7.87, 1, 2, 8, 23.09, 8.79, 0.70914, 9, -1.78, 8.74, 0.29086, 2, 8, 24.51, 8.87, 0.5759, 9, -0.38, 8.86, 0.4241, 2, 8, 26.48, 8.97, 0.38409, 9, 1.59, 9.03, 0.61591, 2, 9, 16.33, 10.31, 0.50217, 10, -0.29, 10.3, 0.49783, 2, 9, 17.06, 10.37, 0.43769, 10, 0.44, 10.4, 0.56231, 2, 9, 18.09, 10.46, 0.35092, 10, 1.47, 10.53, 0.64908, 2, 9, 30.45, 11.53, 4.0E-5, 10, 13.77, 12.08, 0.99996, 1, 10, 20.35, 0.12, 1, 1, 10, 21.71, -2.37, 1, 2, 9, 21.07, -11.59, 0.19922, 10, 5.3, -11.39, 0.80078, 2, 9, 16.92, -11.12, 0.42907, 10, 1.14, -11.09, 0.57093, 2, 9, 15.54, -10.97, 0.53249, 10, -0.24, -10.99, 0.46751, 2, 9, 14.77, -10.88, 0.59076, 10, -1.02, -10.93, 0.40924, 2, 8, 24.3, -9.21, 0.5423, 9, 0.05, -9.22, 0.4577, 2, 8, 23, -9.02, 0.66649, 9, -1.25, -9.07, 0.33351, 2, 8, 20.96, -8.72, 0.83016, 9, -3.3, -8.84, 0.16984, 1, 8, 0.08, -5.62, 1, 1, 8, -4.13, 3.61, 1, 2, 8, 24.26, 0.09, 0.75855, 9, -0.31, 0.08, 0.24145, 1, 8, 22.35, 0.14, 1, 1, 9, 1.07, 0.2, 1, 2, 9, 16.64, -0.19, 0.16867, 10, 0.43, -0.17, 0.83133, 2, 9, 18.14, -0.23, 0.00122, 10, 1.93, -0.15, 0.99878, 2, 9, 15.64, -0.16, 0.95181, 10, -0.56, -0.19, 0.04819 ],
  220. "hull": 19,
  221. "edges": [ 0, 36, 34, 36, 18, 20, 14, 16, 16, 18, 30, 38, 38, 4, 30, 32, 32, 34, 36, 40, 40, 38, 32, 40, 0, 2, 2, 4, 40, 2, 28, 30, 42, 38, 28, 42, 4, 6, 42, 6, 24, 44, 44, 10, 20, 22, 22, 24, 16, 46, 46, 44, 22, 46, 10, 12, 12, 14, 46, 12, 24, 26, 26, 28, 42, 48, 48, 44, 26, 48, 6, 8, 8, 10, 48, 8 ],
  222. "width": 35,
  223. "height": 57
  224. }
  225. },
  226. "zuotui": {
  227. "zuotui": {
  228. "type": "mesh",
  229. "uvs": [ 1, 0.44453, 1, 0.49379, 1, 0.53211, 0.99999, 0.79822, 0.99999, 0.82516, 0.99999, 0.84747, 1, 1, 0, 1, 0, 0.95358, 0, 0.84593, 0.25094, 0.81435, 0.25416, 0.78468, 0.25674, 0.76092, 0.28132, 0.53435, 0.28588, 0.48838, 0.2905, 0.44176, 0.33429, 0, 0.68319, 0, 1, 0, 0.57816, 0.85154, 0.61716, 0.4921, 0.62293, 0.44912, 0.61119, 0.53663, 0.58078, 0.82662, 0.58331, 0.80242 ],
  230. "triangles": [ 7, 19, 6, 19, 5, 6, 7, 8, 19, 8, 10, 19, 8, 9, 10, 19, 23, 5, 19, 10, 23, 5, 23, 4, 23, 24, 4, 10, 11, 23, 23, 11, 24, 4, 24, 3, 11, 12, 24, 12, 13, 24, 24, 22, 3, 24, 13, 22, 3, 22, 2, 22, 20, 2, 13, 14, 22, 22, 14, 20, 20, 1, 2, 14, 15, 20, 20, 21, 1, 21, 0, 1, 20, 15, 21, 15, 16, 21, 21, 17, 0, 21, 16, 17, 17, 18, 0 ],
  231. "vertices": [ 2, 12, 20.14, 11.62, 0.69721, 13, -3.73, 11.75, 0.30279, 2, 12, 22.93, 11.87, 0.50987, 13, -0.93, 11.94, 0.49013, 2, 12, 25.11, 12.07, 0.36372, 13, 1.25, 12.09, 0.63628, 3, 12, 40.21, 13.43, 5.9E-4, 13, 16.38, 13.15, 0.71936, 14, -14.13, -1.31, 0.28005, 3, 12, 41.74, 13.56, 3.0E-5, 13, 17.91, 13.26, 0.63002, 14, -13.78, 0.19, 0.36995, 2, 13, 19.18, 13.34, 0.55054, 14, -13.49, 1.43, 0.44946, 2, 13, 27.85, 13.95, 0.19613, 14, -11.5, 9.89, 0.80387, 1, 14, 18.68, 2.81, 1, 1, 14, 18.07, 0.23, 1, 2, 13, 21.25, -17.59, 9.3E-4, 14, 16.67, -5.74, 0.99907, 2, 13, 18.91, -9.95, 0.28969, 14, 8.69, -5.72, 0.71031, 2, 13, 17.22, -9.97, 0.5239, 14, 8.2, -7.34, 0.4761, 2, 13, 15.86, -9.98, 0.66254, 14, 7.82, -8.64, 0.33746, 3, 12, 27.23, -10.11, 0.16788, 13, 2.92, -10.12, 0.83208, 14, 4.12, -21.04, 4.0E-5, 2, 12, 24.61, -10.2, 0.34557, 13, 0.3, -10.16, 0.65443, 2, 12, 21.95, -10.3, 0.56289, 13, -2.36, -10.21, 0.43711, 1, 12, -3.25, -11.2, 1, 1, 12, -4.22, -0.43, 1, 1, 12, -5.1, 9.35, 1, 2, 13, 20.32, 0.32, 0.59216, 14, -0.7, -1.34, 0.40784, 2, 12, 23.9, 0.05, 0.04329, 13, -0.2, 0.1, 0.95671, 1, 12, 21.44, 0, 1, 2, 12, 26.44, 0.09, 0.00113, 13, 2.34, 0.09, 0.99887, 1, 13, 18.9, 0.3, 1, 1, 13, 17.52, 0.28, 1 ],
  232. "hull": 19,
  233. "edges": [ 12, 14, 20, 18, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 28, 40, 40, 2, 28, 30, 30, 32, 34, 42, 42, 40, 30, 42, 2, 0, 0, 36, 42, 0, 26, 28, 44, 40, 26, 44, 2, 4, 44, 4, 20, 38, 10, 12, 38, 10, 20, 22, 38, 46, 22, 46, 8, 10, 46, 8, 22, 24, 24, 26, 44, 48, 48, 46, 24, 48, 4, 6, 6, 8, 48, 6 ],
  234. "width": 31,
  235. "height": 57
  236. }
  237. },
  238. "zuoyan": {
  239. "zuoyan": { "x": 4.22, "y": 0.83, "rotation": -90.84, "width": 14, "height": 14 }
  240. }
  241. }
  242. },
  243. "animations": {
  244. "stand1": {
  245. "slots": {
  246. "biyan": {
  247. "attachment": [
  248. { "time": 0.1333, "name": "biyan" },
  249. { "time": 0.3333, "name": null },
  250. { "time": 0.9333, "name": "biyan" },
  251. { "time": 1, "name": null },
  252. { "time": 1.3667, "name": "biyan" },
  253. { "time": 1.4333, "name": null }
  254. ]
  255. },
  256. "shou2": {
  257. "attachment": [
  258. { "time": 0, "name": null },
  259. { "time": 0.2, "name": null },
  260. { "time": 0.2667, "name": "shou2" },
  261. { "time": 1.8667, "name": null },
  262. { "time": 2.1667, "name": null }
  263. ]
  264. },
  265. "teshuyoushou1": {
  266. "attachment": [
  267. { "time": 0, "name": null },
  268. { "time": 0.2, "name": null },
  269. { "time": 0.2667, "name": "teshuyoushou1" },
  270. { "time": 0.3667, "name": "teshuyoushou1" },
  271. { "time": 1.8667, "name": null },
  272. { "time": 2.1667, "name": null }
  273. ]
  274. },
  275. "teshuyoushou2": {
  276. "attachment": [
  277. { "time": 0, "name": null },
  278. { "time": 0.2, "name": null },
  279. { "time": 0.2667, "name": "teshuyoushou2" },
  280. { "time": 0.3667, "name": "teshuyoushou2" },
  281. { "time": 1.8667, "name": null },
  282. { "time": 2.1667, "name": null }
  283. ]
  284. },
  285. "teshuyouyan": {
  286. "attachment": [
  287. { "time": 0.3333, "name": "teshuyouyan" },
  288. { "time": 0.9333, "name": null },
  289. { "time": 1, "name": "teshuyouyan" },
  290. { "time": 1.3667, "name": null },
  291. { "time": 1.4333, "name": "teshuyouyan" },
  292. { "time": 1.9, "name": null }
  293. ]
  294. },
  295. "teshuzuoshou1": {
  296. "attachment": [
  297. { "time": 0, "name": null },
  298. { "time": 0.2, "name": null },
  299. { "time": 0.2667, "name": "teshuzuoshou1" },
  300. { "time": 1.8667, "name": null },
  301. { "time": 2.1667, "name": null }
  302. ]
  303. },
  304. "teshuzuoshou2": {
  305. "attachment": [
  306. { "time": 0, "name": null },
  307. { "time": 0.2, "name": null },
  308. { "time": 0.2667, "name": "teshuzuoshou2" },
  309. { "time": 1.8667, "name": null },
  310. { "time": 2.1667, "name": null }
  311. ]
  312. },
  313. "teshuzuoyan": {
  314. "attachment": [
  315. { "time": 0.3333, "name": "teshuzuoyan" },
  316. { "time": 0.9333, "name": null },
  317. { "time": 1, "name": "teshuzuoyan" },
  318. { "time": 1.3667, "name": null },
  319. { "time": 1.4333, "name": "teshuzuoyan" },
  320. { "time": 1.9, "name": null }
  321. ]
  322. },
  323. "youshou": {
  324. "attachment": [
  325. { "time": 0.2667, "name": null },
  326. { "time": 1.8667, "name": "youshou" },
  327. { "time": 2.1667, "name": "youshou" }
  328. ]
  329. },
  330. "youtui": {
  331. "attachment": [
  332. { "time": 0, "name": null }
  333. ]
  334. },
  335. "youyan": {
  336. "attachment": [
  337. { "time": 0, "name": "youyan" },
  338. { "time": 0.1333, "name": null },
  339. { "time": 0.3333, "name": null },
  340. { "time": 0.8667, "name": null },
  341. { "time": 0.9333, "name": null },
  342. { "time": 1, "name": null },
  343. { "time": 1.3, "name": null },
  344. { "time": 1.3667, "name": null },
  345. { "time": 1.4333, "name": null },
  346. { "time": 1.9, "name": "youyan" }
  347. ]
  348. },
  349. "zhangzui": {
  350. "attachment": [
  351. { "time": 0.8333, "name": null },
  352. { "time": 0.9, "name": "zhangzui" },
  353. { "time": 0.9667, "name": "zhangzui" },
  354. { "time": 1.2333, "name": null },
  355. { "time": 1.3333, "name": "zhangzui" },
  356. { "time": 1.4333, "name": "zhangzui" },
  357. { "time": 1.8667, "name": null }
  358. ]
  359. },
  360. "zuiba": {
  361. "attachment": [
  362. { "time": 0.8333, "name": "zuiba" },
  363. { "time": 0.9, "name": null },
  364. { "time": 0.9667, "name": null },
  365. { "time": 1.2333, "name": "zuiba" },
  366. { "time": 1.3333, "name": null },
  367. { "time": 1.4333, "name": null },
  368. { "time": 1.8667, "name": "zuiba" }
  369. ]
  370. },
  371. "zuoshou": {
  372. "attachment": [
  373. { "time": 0.2667, "name": null },
  374. { "time": 1.8667, "name": "zuoshou" },
  375. { "time": 2.1667, "name": "zuoshou" }
  376. ]
  377. },
  378. "zuoyan": {
  379. "attachment": [
  380. { "time": 0, "name": "zuoyan" },
  381. { "time": 0.1333, "name": null },
  382. { "time": 0.3333, "name": null },
  383. { "time": 0.8667, "name": null },
  384. { "time": 0.9333, "name": null },
  385. { "time": 1, "name": null },
  386. { "time": 1.3, "name": null },
  387. { "time": 1.3667, "name": null },
  388. { "time": 1.4333, "name": null },
  389. { "time": 1.9, "name": "zuoyan" }
  390. ]
  391. }
  392. },
  393. "bones": {
  394. "bone21": {
  395. "rotate": [
  396. { "time": 0, "angle": 0, "curve": "stepped" },
  397. { "time": 0.2, "angle": 0 },
  398. { "time": 0.2667, "angle": -16.25 },
  399. { "time": 0.3667, "angle": -19.2 },
  400. { "time": 0.5667, "angle": -7.93, "curve": "stepped" },
  401. { "time": 0.7667, "angle": -7.93, "curve": "stepped" },
  402. { "time": 0.8667, "angle": -7.93 },
  403. { "time": 0.9333, "angle": -12.52 },
  404. { "time": 1.1333, "angle": -15.49, "curve": "stepped" },
  405. { "time": 1.3, "angle": -15.49 },
  406. { "time": 1.3667, "angle": -12.52 },
  407. { "time": 1.5667, "angle": -15.49, "curve": "stepped" },
  408. { "time": 1.7667, "angle": -15.49 },
  409. { "time": 1.8667, "angle": 10.67 },
  410. { "time": 2.1667, "angle": 0 }
  411. ],
  412. "translate": [
  413. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  414. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  415. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  416. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  417. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  418. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  419. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  420. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  421. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  422. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  423. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  424. { "time": 2.1667, "x": 0, "y": 0 }
  425. ],
  426. "scale": [
  427. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  428. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  429. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  430. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  431. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  432. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  433. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  434. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  435. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  436. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  437. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  438. { "time": 2.1667, "x": 1, "y": 1 }
  439. ]
  440. },
  441. "bone22": {
  442. "rotate": [
  443. { "time": 0, "angle": 0, "curve": "stepped" },
  444. { "time": 0.2, "angle": 0 },
  445. { "time": 0.2667, "angle": 11.11 },
  446. { "time": 0.3667, "angle": 0 },
  447. { "time": 0.5667, "angle": -8.09, "curve": "stepped" },
  448. { "time": 0.7667, "angle": -8.09, "curve": "stepped" },
  449. { "time": 0.8667, "angle": -8.09 },
  450. { "time": 0.9333, "angle": -11.08 },
  451. { "time": 1, "angle": -14.08, "curve": "stepped" },
  452. { "time": 1.1333, "angle": -14.08, "curve": "stepped" },
  453. { "time": 1.3, "angle": -14.08 },
  454. { "time": 1.5667, "angle": -8.09, "curve": "stepped" },
  455. { "time": 1.7667, "angle": -8.09 },
  456. { "time": 2.1667, "angle": 0 }
  457. ],
  458. "translate": [
  459. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  460. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  461. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  462. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  463. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  464. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  465. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  466. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  467. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  468. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  469. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  470. { "time": 2.1667, "x": 0, "y": 0 }
  471. ],
  472. "scale": [
  473. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  474. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  475. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  476. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  477. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  478. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  479. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  480. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  481. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  482. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  483. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  484. { "time": 2.1667, "x": 1, "y": 1 }
  485. ]
  486. },
  487. "bone19": {
  488. "rotate": [
  489. { "time": 0, "angle": 0, "curve": "stepped" },
  490. { "time": 0.2, "angle": 0, "curve": "stepped" },
  491. { "time": 0.2667, "angle": 0 },
  492. { "time": 0.3667, "angle": 2.93 },
  493. { "time": 0.5667, "angle": 14.68, "curve": "stepped" },
  494. { "time": 0.7667, "angle": 14.68, "curve": "stepped" },
  495. { "time": 0.8667, "angle": 14.68 },
  496. { "time": 0.9333, "angle": 18.72 },
  497. { "time": 1.1333, "angle": 11.48, "curve": "stepped" },
  498. { "time": 1.3, "angle": 11.48 },
  499. { "time": 1.3667, "angle": 18.72 },
  500. { "time": 1.5667, "angle": 11.48 },
  501. { "time": 1.7333, "angle": 14.68 },
  502. { "time": 1.7667, "angle": 11.48 },
  503. { "time": 1.8667, "angle": -28.13 },
  504. { "time": 2.1667, "angle": 0 }
  505. ],
  506. "translate": [
  507. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  508. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  509. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  510. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  511. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  512. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  513. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  514. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  515. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  516. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  517. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  518. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  519. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  520. { "time": 2.1667, "x": 0, "y": 0 }
  521. ],
  522. "scale": [
  523. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  524. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  525. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  526. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  527. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  528. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  529. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  530. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  531. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  532. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  533. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  534. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  535. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  536. { "time": 2.1667, "x": 1, "y": 1 }
  537. ]
  538. },
  539. "bone18": {
  540. "rotate": [
  541. { "time": 0, "angle": 0, "curve": "stepped" },
  542. { "time": 0.2, "angle": 0 },
  543. { "time": 0.2667, "angle": 19.53 },
  544. { "time": 0.3667, "angle": 58.06 },
  545. { "time": 0.5667, "angle": 32.26, "curve": "stepped" },
  546. { "time": 0.7667, "angle": 32.26, "curve": "stepped" },
  547. { "time": 0.8667, "angle": 32.26 },
  548. { "time": 0.9333, "angle": 23.56 },
  549. { "time": 1.1333, "angle": 33.75, "curve": "stepped" },
  550. { "time": 1.3, "angle": 33.75 },
  551. { "time": 1.3667, "angle": 23.56 },
  552. { "time": 1.5667, "angle": 33.75 },
  553. { "time": 1.7333, "angle": 32.26 },
  554. { "time": 1.7667, "angle": 33.75 },
  555. { "time": 1.8667, "angle": -2.87 },
  556. { "time": 2.1667, "angle": 0 }
  557. ],
  558. "translate": [
  559. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  560. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  561. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  562. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  563. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  564. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  565. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  566. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  567. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  568. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  569. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  570. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  571. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  572. { "time": 2.1667, "x": 0, "y": 0 }
  573. ],
  574. "scale": [
  575. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  576. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  577. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  578. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  579. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  580. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  581. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  582. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  583. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  584. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  585. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  586. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  587. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  588. { "time": 2.1667, "x": 1, "y": 1 }
  589. ]
  590. },
  591. "bone23": {
  592. "rotate": [
  593. { "time": 0, "angle": 0, "curve": "stepped" },
  594. { "time": 0.2, "angle": 0, "curve": "stepped" },
  595. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  596. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  597. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  598. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  599. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  600. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  601. { "time": 1.3, "angle": 0, "curve": "stepped" },
  602. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  603. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  604. { "time": 2.1667, "angle": 0 }
  605. ],
  606. "translate": [
  607. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  608. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  609. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  610. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  611. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  612. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  613. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  614. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  615. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  616. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  617. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  618. { "time": 2.1667, "x": 0, "y": 0 }
  619. ],
  620. "scale": [
  621. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  622. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  623. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  624. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  625. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  626. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  627. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  628. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  629. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  630. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  631. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  632. { "time": 2.1667, "x": 1, "y": 1 }
  633. ]
  634. },
  635. "root": {
  636. "rotate": [
  637. { "time": 0, "angle": 0 }
  638. ],
  639. "translate": [
  640. { "time": 0, "x": 0, "y": 0 }
  641. ],
  642. "scale": [
  643. { "time": 0, "x": 0.65, "y": 0.65 }
  644. ]
  645. },
  646. "bone": {
  647. "rotate": [
  648. { "time": 0, "angle": 0, "curve": "stepped" },
  649. { "time": 0.2, "angle": 0, "curve": "stepped" },
  650. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  651. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  652. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  653. { "time": 2.1667, "angle": 0 }
  654. ],
  655. "translate": [
  656. { "time": 0, "x": 0, "y": 0 },
  657. { "time": 0.2, "x": 0, "y": -5.45 },
  658. { "time": 0.3, "x": 0, "y": 5.03 },
  659. { "time": 0.3667, "x": 0.35, "y": -11.76 },
  660. { "time": 0.5667, "x": 0.35, "y": -14.92, "curve": "stepped" },
  661. { "time": 1.7333, "x": 0.35, "y": -14.92 },
  662. { "time": 1.8333, "x": 0, "y": 8.24 },
  663. { "time": 1.9333, "x": 0, "y": -6.31 },
  664. { "time": 2.1667, "x": 0, "y": 0 }
  665. ],
  666. "scale": [
  667. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  668. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  669. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  670. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  671. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  672. { "time": 2.1667, "x": 1, "y": 1 }
  673. ]
  674. },
  675. "bone2": {
  676. "rotate": [
  677. { "time": 0, "angle": 0, "curve": "stepped" },
  678. { "time": 0.2, "angle": 0 },
  679. { "time": 0.3667, "angle": -6.25, "curve": "stepped" },
  680. { "time": 0.5667, "angle": -6.25, "curve": "stepped" },
  681. { "time": 0.7667, "angle": -6.25, "curve": "stepped" },
  682. { "time": 0.8667, "angle": -6.25, "curve": "stepped" },
  683. { "time": 0.9333, "angle": -6.25, "curve": "stepped" },
  684. { "time": 1.1333, "angle": -6.25, "curve": "stepped" },
  685. { "time": 1.7333, "angle": -6.25, "curve": "stepped" },
  686. { "time": 1.7667, "angle": -6.25 },
  687. { "time": 2.1667, "angle": 0 }
  688. ],
  689. "translate": [
  690. { "time": 0, "x": 0, "y": 0 },
  691. { "time": 0.2, "x": 0.02, "y": -1.39 },
  692. { "time": 0.3667, "x": 0, "y": 0 },
  693. { "time": 0.5667, "x": -0.19, "y": -1.97, "curve": "stepped" },
  694. { "time": 0.7667, "x": -0.19, "y": -1.97, "curve": "stepped" },
  695. { "time": 0.8667, "x": -0.19, "y": -1.97, "curve": "stepped" },
  696. { "time": 0.9333, "x": -0.19, "y": -1.97, "curve": "stepped" },
  697. { "time": 1.1333, "x": -0.19, "y": -1.97, "curve": "stepped" },
  698. { "time": 1.7333, "x": -0.19, "y": -1.97, "curve": "stepped" },
  699. { "time": 1.7667, "x": -0.19, "y": -1.97 },
  700. { "time": 2.1667, "x": 0, "y": 0 }
  701. ],
  702. "scale": [
  703. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  704. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  705. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  706. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  707. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  708. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  709. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  710. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  711. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  712. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  713. { "time": 2.1667, "x": 1, "y": 1 }
  714. ]
  715. },
  716. "bone3": {
  717. "rotate": [
  718. { "time": 0, "angle": 0, "curve": "stepped" },
  719. { "time": 0.2, "angle": 0 },
  720. { "time": 0.3667, "angle": 7.94, "curve": "stepped" },
  721. { "time": 0.5667, "angle": 7.94, "curve": "stepped" },
  722. { "time": 0.7667, "angle": 7.94, "curve": "stepped" },
  723. { "time": 0.8667, "angle": 7.94, "curve": "stepped" },
  724. { "time": 1.0333, "angle": 7.94, "curve": "stepped" },
  725. { "time": 1.3, "angle": 7.94, "curve": "stepped" },
  726. { "time": 1.4, "angle": 7.94, "curve": "stepped" },
  727. { "time": 1.5667, "angle": 7.94, "curve": "stepped" },
  728. { "time": 1.7333, "angle": 7.94, "curve": "stepped" },
  729. { "time": 1.7667, "angle": 7.94 },
  730. { "time": 2.1667, "angle": 0 }
  731. ],
  732. "translate": [
  733. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  734. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  735. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  736. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  737. { "time": 0.7667, "x": 0, "y": 0 },
  738. { "time": 0.8667, "x": -0.99, "y": -0.11 },
  739. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  740. { "time": 1.3, "x": 0, "y": 0 },
  741. { "time": 1.4, "x": -0.99, "y": -0.11 },
  742. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  743. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  744. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  745. { "time": 2.1667, "x": 0, "y": 0 }
  746. ],
  747. "scale": [
  748. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  749. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  750. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  751. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  752. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  753. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  754. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  755. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  756. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  757. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  758. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  759. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  760. { "time": 2.1667, "x": 1, "y": 1 }
  761. ]
  762. },
  763. "bone4": {
  764. "rotate": [
  765. { "time": 0, "angle": 0, "curve": "stepped" },
  766. { "time": 0.2, "angle": 0, "curve": "stepped" },
  767. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  768. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  769. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  770. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  771. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  772. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  773. { "time": 1.3, "angle": 0, "curve": "stepped" },
  774. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  775. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  776. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  777. { "time": 2.1667, "angle": 0 }
  778. ],
  779. "translate": [
  780. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  781. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  782. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  783. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  784. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  785. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  786. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  787. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  788. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  789. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  790. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  791. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  792. { "time": 2.1667, "x": 0, "y": 0 }
  793. ],
  794. "scale": [
  795. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  796. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  797. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  798. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  799. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  800. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  801. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  802. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  803. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  804. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  805. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  806. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  807. { "time": 2.1667, "x": 1, "y": 1 }
  808. ]
  809. },
  810. "bone5": {
  811. "rotate": [
  812. { "time": 0, "angle": 0 },
  813. { "time": 0.2, "angle": 1.6 },
  814. { "time": 0.3, "angle": 26.66 },
  815. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  816. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  817. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  818. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  819. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  820. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  821. { "time": 1.3, "angle": 0, "curve": "stepped" },
  822. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  823. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  824. { "time": 1.7667, "angle": 0 },
  825. { "time": 1.8667, "angle": 2.68 },
  826. { "time": 2.1667, "angle": 0 }
  827. ],
  828. "translate": [
  829. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  830. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  831. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  832. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  833. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  834. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  835. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  836. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  837. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  838. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  839. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  840. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  841. { "time": 2.1667, "x": 0, "y": 0 }
  842. ],
  843. "scale": [
  844. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  845. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  846. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  847. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  848. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  849. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  850. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  851. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  852. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  853. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  854. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  855. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  856. { "time": 2.1667, "x": 1, "y": 1 }
  857. ]
  858. },
  859. "bone6": {
  860. "rotate": [
  861. { "time": 0, "angle": 0 },
  862. { "time": 0.2, "angle": -27.06 },
  863. { "time": 0.3, "angle": 39.5 },
  864. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  865. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  866. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  867. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  868. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  869. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  870. { "time": 1.3, "angle": 0, "curve": "stepped" },
  871. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  872. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  873. { "time": 1.7667, "angle": 0 },
  874. { "time": 1.8667, "angle": 30.57 },
  875. { "time": 2.1667, "angle": 0 }
  876. ],
  877. "translate": [
  878. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  879. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  880. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  881. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  882. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  883. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  884. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  885. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  886. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  887. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  888. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  889. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  890. { "time": 2.1667, "x": 0, "y": 0 }
  891. ],
  892. "scale": [
  893. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  894. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  895. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  896. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  897. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  898. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  899. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  900. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  901. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  902. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  903. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  904. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  905. { "time": 2.1667, "x": 1, "y": 1 }
  906. ]
  907. },
  908. "bone7": {
  909. "rotate": [
  910. { "time": 0, "angle": 0, "curve": "stepped" },
  911. { "time": 0.2, "angle": 0, "curve": "stepped" },
  912. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  913. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  914. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  915. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  916. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  917. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  918. { "time": 1.3, "angle": 0, "curve": "stepped" },
  919. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  920. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  921. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  922. { "time": 2.1667, "angle": 0 }
  923. ],
  924. "translate": [
  925. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  926. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  927. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  928. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  929. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  930. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  931. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  932. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  933. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  934. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  935. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  936. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  937. { "time": 2.1667, "x": 0, "y": 0 }
  938. ],
  939. "scale": [
  940. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  941. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  942. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  943. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  944. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  945. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  946. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  947. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  948. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  949. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  950. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  951. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  952. { "time": 2.1667, "x": 1, "y": 1 }
  953. ]
  954. },
  955. "bone8": {
  956. "rotate": [
  957. { "time": 0, "angle": 0 },
  958. { "time": 0.2, "angle": 5.57 },
  959. { "time": 0.3, "angle": -10.2 },
  960. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  961. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  962. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  963. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  964. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  965. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  966. { "time": 1.3, "angle": 0, "curve": "stepped" },
  967. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  968. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  969. { "time": 1.7667, "angle": 0 },
  970. { "time": 1.8667, "angle": -4.09 },
  971. { "time": 2.1667, "angle": 0 }
  972. ],
  973. "translate": [
  974. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  975. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  976. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  977. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  978. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  979. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  980. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  981. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  982. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  983. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  984. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  985. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  986. { "time": 2.1667, "x": 0, "y": 0 }
  987. ],
  988. "scale": [
  989. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  990. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  991. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  992. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  993. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  994. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  995. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  996. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  997. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  998. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  999. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1000. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1001. { "time": 2.1667, "x": 1, "y": 1 }
  1002. ]
  1003. },
  1004. "bone9": {
  1005. "rotate": [
  1006. { "time": 0, "angle": 0 },
  1007. { "time": 0.2, "angle": -19.41 },
  1008. { "time": 0.3, "angle": -46.03 },
  1009. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  1010. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1011. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1012. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1013. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1014. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1015. { "time": 1.3, "angle": 0, "curve": "stepped" },
  1016. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1017. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1018. { "time": 1.7667, "angle": 0 },
  1019. { "time": 1.8667, "angle": -24.87 },
  1020. { "time": 2.1667, "angle": 0 }
  1021. ],
  1022. "translate": [
  1023. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1024. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1025. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1026. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1027. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1028. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1029. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1030. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1031. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1032. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1033. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1034. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1035. { "time": 2.1667, "x": 0, "y": 0 }
  1036. ],
  1037. "scale": [
  1038. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1039. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1040. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1041. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1042. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1043. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1044. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  1045. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1046. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1047. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1048. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1049. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1050. { "time": 2.1667, "x": 1, "y": 1 }
  1051. ]
  1052. },
  1053. "bone10": {
  1054. "rotate": [
  1055. { "time": 0, "angle": 0, "curve": "stepped" },
  1056. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1057. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  1058. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1059. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1060. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1061. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1062. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1063. { "time": 1.3, "angle": 0, "curve": "stepped" },
  1064. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1065. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1066. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1067. { "time": 2.1667, "angle": 0 }
  1068. ],
  1069. "translate": [
  1070. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1071. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1072. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1073. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1074. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1075. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1076. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1077. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1078. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1079. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1080. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1081. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1082. { "time": 2.1667, "x": 0, "y": 0 }
  1083. ],
  1084. "scale": [
  1085. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1086. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1087. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1088. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1089. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1090. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1091. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  1092. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1093. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1094. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1095. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1096. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1097. { "time": 2.1667, "x": 1, "y": 1 }
  1098. ]
  1099. },
  1100. "bone11": {
  1101. "rotate": [
  1102. { "time": 0, "angle": 0, "curve": "stepped" },
  1103. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1104. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  1105. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1106. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1107. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1108. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1109. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1110. { "time": 1.3, "angle": 0, "curve": "stepped" },
  1111. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1112. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1113. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1114. { "time": 2.1667, "angle": 0 }
  1115. ],
  1116. "translate": [
  1117. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1118. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1119. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1120. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1121. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1122. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1123. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1124. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1125. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1126. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1127. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1128. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1129. { "time": 2.1667, "x": 0, "y": 0 }
  1130. ],
  1131. "scale": [
  1132. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1133. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1134. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1135. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1136. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1137. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1138. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  1139. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1140. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1141. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1142. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1143. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1144. { "time": 2.1667, "x": 1, "y": 1 }
  1145. ]
  1146. },
  1147. "bone12": {
  1148. "rotate": [
  1149. { "time": 0, "angle": 0 },
  1150. { "time": 0.2, "angle": -15.5 },
  1151. { "time": 0.3, "angle": -29.69 },
  1152. { "time": 0.3667, "angle": -39.54 },
  1153. { "time": 0.5667, "angle": -31.8, "curve": "stepped" },
  1154. { "time": 1.7667, "angle": -31.8 },
  1155. { "time": 1.8333, "angle": -39.34 },
  1156. { "time": 1.9333, "angle": -21.61 },
  1157. { "time": 2.1667, "angle": 0 }
  1158. ],
  1159. "translate": [
  1160. { "time": 0, "x": 0, "y": 0 },
  1161. { "time": 0.2, "x": 0.09, "y": 0.56 },
  1162. { "time": 0.3667, "x": 1.44, "y": 1.44 },
  1163. { "time": 0.5667, "x": 0.2, "y": 4.29, "curve": "stepped" },
  1164. { "time": 1.7667, "x": 0.2, "y": 4.29 },
  1165. { "time": 1.9333, "x": 1.43, "y": 2.7 },
  1166. { "time": 2.1667, "x": 0, "y": 0 }
  1167. ],
  1168. "scale": [
  1169. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1170. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1171. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1172. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1173. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1174. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1175. { "time": 2.1667, "x": 1, "y": 1 }
  1176. ]
  1177. },
  1178. "bone13": {
  1179. "rotate": [
  1180. { "time": 0, "angle": 0 },
  1181. { "time": 0.2, "angle": 25.83 },
  1182. { "time": 0.3, "angle": 45.84 },
  1183. { "time": 0.3667, "angle": 31.15 },
  1184. { "time": 0.5667, "angle": 8.35, "curve": "stepped" },
  1185. { "time": 1.7667, "angle": 8.35 },
  1186. { "time": 1.8333, "angle": 65.36 },
  1187. { "time": 1.9333, "angle": 25.05 },
  1188. { "time": 2.1667, "angle": 0 }
  1189. ],
  1190. "translate": [
  1191. { "time": 0, "x": 0, "y": 0 },
  1192. { "time": 0.2, "x": -0.9, "y": -0.46 },
  1193. { "time": 0.3667, "x": 0, "y": 0 },
  1194. { "time": 0.5667, "x": -1.93, "y": -0.32, "curve": "stepped" },
  1195. { "time": 1.7667, "x": -1.93, "y": -0.32 },
  1196. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1197. { "time": 2.1667, "x": 0, "y": 0 }
  1198. ],
  1199. "scale": [
  1200. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1201. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1202. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1203. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1204. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1205. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1206. { "time": 2.1667, "x": 1, "y": 1 }
  1207. ]
  1208. },
  1209. "bone14": {
  1210. "rotate": [
  1211. { "time": 0, "angle": 0 },
  1212. { "time": 0.2, "angle": -11.48 },
  1213. { "time": 0.3667, "angle": 5.55 },
  1214. { "time": 0.5667, "angle": 26.94, "curve": "stepped" },
  1215. { "time": 1.7667, "angle": 26.94 },
  1216. { "time": 1.9333, "angle": 6.33 },
  1217. { "time": 2.1667, "angle": 0 }
  1218. ],
  1219. "translate": [
  1220. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1221. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1222. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1223. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1224. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1225. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1226. { "time": 2.1667, "x": 0, "y": 0 }
  1227. ],
  1228. "scale": [
  1229. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1230. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1231. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1232. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1233. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1234. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1235. { "time": 2.1667, "x": 1, "y": 1 }
  1236. ]
  1237. },
  1238. "bone15": {
  1239. "rotate": [
  1240. { "time": 0, "angle": 0 }
  1241. ],
  1242. "translate": [
  1243. { "time": 0, "x": 94.97, "y": -0.01 }
  1244. ],
  1245. "scale": [
  1246. { "time": 0, "x": 1, "y": 1 }
  1247. ]
  1248. },
  1249. "bone16": {
  1250. "rotate": [
  1251. { "time": 0, "angle": 0 }
  1252. ],
  1253. "translate": [
  1254. { "time": 0, "x": 0, "y": 0 }
  1255. ],
  1256. "scale": [
  1257. { "time": 0, "x": 1, "y": 1 }
  1258. ]
  1259. },
  1260. "bone17": {
  1261. "rotate": [
  1262. { "time": 0, "angle": 0 }
  1263. ],
  1264. "translate": [
  1265. { "time": 0, "x": 0, "y": 0 }
  1266. ],
  1267. "scale": [
  1268. { "time": 0, "x": 1, "y": 1 }
  1269. ]
  1270. },
  1271. "bone20": {
  1272. "rotate": [
  1273. { "time": 0, "angle": 0, "curve": "stepped" },
  1274. { "time": 0.3667, "angle": 0 },
  1275. { "time": 0.5667, "angle": 19.09, "curve": "stepped" },
  1276. { "time": 1, "angle": 19.09 },
  1277. { "time": 1.1667, "angle": 14.4, "curve": "stepped" },
  1278. { "time": 1.5667, "angle": 14.4 },
  1279. { "time": 1.7333, "angle": 19.09 },
  1280. { "time": 2.1667, "angle": 0 }
  1281. ],
  1282. "translate": [
  1283. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1284. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1285. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1286. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1287. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1288. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1289. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1290. { "time": 2.1667, "x": 0, "y": 0 }
  1291. ],
  1292. "scale": [
  1293. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1294. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1295. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1296. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1297. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1298. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1299. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1300. { "time": 2.1667, "x": 1, "y": 1 }
  1301. ]
  1302. },
  1303. "bone24": {
  1304. "rotate": [
  1305. { "time": 0, "angle": 0, "curve": "stepped" },
  1306. { "time": 0.2, "angle": 0 },
  1307. { "time": 0.3667, "angle": -2.82, "curve": "stepped" },
  1308. { "time": 0.5667, "angle": -2.82, "curve": "stepped" },
  1309. { "time": 0.7667, "angle": -2.82, "curve": "stepped" },
  1310. { "time": 0.8667, "angle": -2.82, "curve": "stepped" },
  1311. { "time": 0.9333, "angle": -2.82, "curve": "stepped" },
  1312. { "time": 1.1333, "angle": -2.82, "curve": "stepped" },
  1313. { "time": 1.3, "angle": -2.82, "curve": "stepped" },
  1314. { "time": 1.5667, "angle": -2.82, "curve": "stepped" },
  1315. { "time": 1.7333, "angle": -2.82, "curve": "stepped" },
  1316. { "time": 1.7667, "angle": -2.82 },
  1317. { "time": 2.1667, "angle": 0 }
  1318. ],
  1319. "translate": [
  1320. { "time": 0, "x": 0, "y": 0 },
  1321. { "time": 0.2, "x": -0.49, "y": -0.06 },
  1322. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1323. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1324. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1325. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1326. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1327. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1328. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1329. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1330. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1331. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1332. { "time": 2.1667, "x": 0, "y": 0 }
  1333. ],
  1334. "scale": [
  1335. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1336. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1337. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1338. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1339. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1340. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1341. { "time": 0.9333, "x": 1, "y": -1, "curve": "stepped" },
  1342. { "time": 1.1333, "x": 1, "y": -1, "curve": "stepped" },
  1343. { "time": 1.3, "x": 1, "y": -1, "curve": "stepped" },
  1344. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1345. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1346. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1347. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1348. { "time": 2.1667, "x": 1, "y": 1 }
  1349. ]
  1350. },
  1351. "bone25": {
  1352. "rotate": [
  1353. { "time": 0, "angle": 0, "curve": "stepped" },
  1354. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1355. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1356. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  1357. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1358. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1359. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1360. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1361. { "time": 1, "angle": 0, "curve": "stepped" },
  1362. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1363. { "time": 1.3, "angle": 0, "curve": "stepped" },
  1364. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1365. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1366. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1367. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1368. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1369. { "time": 2.1667, "angle": 0 }
  1370. ],
  1371. "translate": [
  1372. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1373. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1374. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1375. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1376. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1377. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1378. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1379. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1380. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1381. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1382. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1383. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1384. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1385. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1386. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1387. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1388. { "time": 2.1667, "x": 0, "y": 0 }
  1389. ],
  1390. "scale": [
  1391. { "time": 0, "x": 0.602, "y": 1, "curve": "stepped" },
  1392. { "time": 0.1333, "x": 0.602, "y": 1, "curve": "stepped" },
  1393. { "time": 0.3333, "x": 0.602, "y": 1 },
  1394. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1395. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1396. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1397. { "time": 0.8667, "x": 1, "y": 1 },
  1398. { "time": 0.9333, "x": 0.602, "y": 1, "curve": "stepped" },
  1399. { "time": 1, "x": 0.602, "y": 1 },
  1400. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1401. { "time": 1.3, "x": 1, "y": 1 },
  1402. { "time": 1.3667, "x": 0.602, "y": 1, "curve": "stepped" },
  1403. { "time": 1.4333, "x": 0.602, "y": 1 },
  1404. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1405. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1406. { "time": 1.7667, "x": 1, "y": 1 },
  1407. { "time": 2.1667, "x": 0.602, "y": 1 }
  1408. ]
  1409. },
  1410. "bone26": {
  1411. "rotate": [
  1412. { "time": 0, "angle": 0, "curve": "stepped" },
  1413. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1414. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1415. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  1416. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1417. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1418. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1419. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1420. { "time": 1, "angle": 0, "curve": "stepped" },
  1421. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1422. { "time": 1.3, "angle": 0, "curve": "stepped" },
  1423. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1424. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1425. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1426. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1427. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1428. { "time": 2.1667, "angle": 0 }
  1429. ],
  1430. "translate": [
  1431. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1432. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1433. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1434. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1435. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1436. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1437. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1438. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1439. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1440. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1441. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1442. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1443. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1444. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1445. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1446. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1447. { "time": 2.1667, "x": 0, "y": 0 }
  1448. ],
  1449. "scale": [
  1450. { "time": 0, "x": 0.514, "y": 1, "curve": "stepped" },
  1451. { "time": 0.1333, "x": 0.514, "y": 1, "curve": "stepped" },
  1452. { "time": 0.3333, "x": 0.514, "y": 1 },
  1453. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1454. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1455. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1456. { "time": 0.8667, "x": 1, "y": 1 },
  1457. { "time": 0.9333, "x": 0.514, "y": 1, "curve": "stepped" },
  1458. { "time": 1, "x": 0.514, "y": 1 },
  1459. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1460. { "time": 1.3, "x": 1, "y": 1 },
  1461. { "time": 1.3667, "x": 0.514, "y": 1, "curve": "stepped" },
  1462. { "time": 1.4333, "x": 0.514, "y": 1 },
  1463. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1464. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1465. { "time": 1.7667, "x": 1, "y": 1 },
  1466. { "time": 2.1667, "x": 0.514, "y": 1 }
  1467. ]
  1468. },
  1469. "bone27": {
  1470. "rotate": [
  1471. { "time": 0, "angle": 0, "curve": "stepped" },
  1472. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1473. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1474. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  1475. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1476. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1477. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1478. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1479. { "time": 1, "angle": 0, "curve": "stepped" },
  1480. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1481. { "time": 1.3, "angle": 0, "curve": "stepped" },
  1482. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1483. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1484. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1485. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1486. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1487. { "time": 2.1667, "angle": 0 }
  1488. ],
  1489. "translate": [
  1490. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1491. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1492. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1493. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1494. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1495. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1496. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1497. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1498. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1499. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1500. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1501. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1502. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1503. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1504. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1505. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1506. { "time": 2.1667, "x": 0, "y": 0 }
  1507. ],
  1508. "scale": [
  1509. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1510. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1511. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1512. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1513. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1514. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1515. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1516. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  1517. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1518. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1519. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1520. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1521. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1522. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1523. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1524. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1525. { "time": 2.1667, "x": 1, "y": 1 }
  1526. ]
  1527. },
  1528. "bone28": {
  1529. "rotate": [
  1530. { "time": 0, "angle": 0, "curve": "stepped" },
  1531. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1532. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1533. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  1534. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1535. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1536. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1537. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1538. { "time": 1, "angle": 0, "curve": "stepped" },
  1539. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1540. { "time": 1.3, "angle": 0, "curve": "stepped" },
  1541. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1542. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1543. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1544. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1545. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1546. { "time": 2.1667, "angle": 0 }
  1547. ],
  1548. "translate": [
  1549. { "time": 0, "x": -1.88, "y": 0, "curve": "stepped" },
  1550. { "time": 0.1333, "x": -1.88, "y": 0, "curve": "stepped" },
  1551. { "time": 0.3333, "x": -1.88, "y": 0 },
  1552. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1553. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1554. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1555. { "time": 0.8667, "x": 0, "y": 0 },
  1556. { "time": 0.9333, "x": -1.88, "y": 0, "curve": "stepped" },
  1557. { "time": 1, "x": -1.88, "y": 0 },
  1558. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1559. { "time": 1.3, "x": 0, "y": 0 },
  1560. { "time": 1.3667, "x": -1.88, "y": 0, "curve": "stepped" },
  1561. { "time": 1.4333, "x": -1.88, "y": 0 },
  1562. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1563. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1564. { "time": 1.7667, "x": 0, "y": 0 },
  1565. { "time": 2.1667, "x": -1.88, "y": 0 }
  1566. ],
  1567. "scale": [
  1568. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1569. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1570. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1571. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1572. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1573. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1574. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1575. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  1576. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1577. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1578. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1579. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1580. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1581. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1582. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1583. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1584. { "time": 2.1667, "x": 1, "y": 1 }
  1585. ]
  1586. },
  1587. "bone29": {
  1588. "rotate": [
  1589. { "time": 0, "angle": 0, "curve": "stepped" },
  1590. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1591. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  1592. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1593. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1594. { "time": 0.8, "angle": 0, "curve": "stepped" },
  1595. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1596. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1597. { "time": 0.9, "angle": 0, "curve": "stepped" },
  1598. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1599. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  1600. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1601. { "time": 1.2, "angle": 0, "curve": "stepped" },
  1602. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  1603. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1604. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1605. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1606. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1607. { "time": 2.1667, "angle": 0 }
  1608. ],
  1609. "translate": [
  1610. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1611. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1612. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1613. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1614. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1615. { "time": 0.8, "x": 0, "y": 0 },
  1616. { "time": 0.8333, "x": -0.76, "y": 0, "curve": "stepped" },
  1617. { "time": 0.8667, "x": -0.76, "y": 0, "curve": "stepped" },
  1618. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  1619. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1620. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  1621. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1622. { "time": 1.2, "x": 0, "y": 0 },
  1623. { "time": 1.2333, "x": -0.76, "y": 0, "curve": "stepped" },
  1624. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1625. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1626. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1627. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1628. { "time": 1.8667, "x": -0.76, "y": 0 },
  1629. { "time": 2.1667, "x": 0, "y": 0 }
  1630. ],
  1631. "scale": [
  1632. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1633. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1634. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1635. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1636. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1637. { "time": 0.8, "x": 1, "y": 1 },
  1638. { "time": 0.8333, "x": 1, "y": 0.7, "curve": "stepped" },
  1639. { "time": 0.8667, "x": 1, "y": 0.7, "curve": "stepped" },
  1640. { "time": 0.9, "x": 0.5, "y": 1 },
  1641. { "time": 0.9333, "x": 0.75, "y": 1 },
  1642. { "time": 0.9667, "x": 1, "y": 1 },
  1643. { "time": 1.1333, "x": 0.786, "y": 1 },
  1644. { "time": 1.2, "x": 0.7, "y": 1 },
  1645. { "time": 1.2333, "x": 1, "y": 0.7, "curve": "stepped" },
  1646. { "time": 1.3333, "x": 0.5, "y": 1 },
  1647. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1648. { "time": 1.7333, "x": 1, "y": 1 },
  1649. { "time": 1.7667, "x": 0.7, "y": 1, "curve": "stepped" },
  1650. { "time": 1.8667, "x": 1, "y": 0.7 },
  1651. { "time": 2.1667, "x": 1, "y": 1 }
  1652. ]
  1653. },
  1654. "bone30": {
  1655. "rotate": [
  1656. { "time": 0, "angle": 0, "curve": "stepped" },
  1657. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1658. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  1659. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1660. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1661. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1662. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1663. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1664. { "time": 1.3, "angle": 0, "curve": "stepped" },
  1665. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1666. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1667. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1668. { "time": 2.1667, "angle": 0 }
  1669. ],
  1670. "translate": [
  1671. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1672. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1673. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1674. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1675. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1676. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1677. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1678. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1679. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1680. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1681. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1682. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1683. { "time": 2.1667, "x": 0, "y": 0 }
  1684. ],
  1685. "scale": [
  1686. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1687. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1688. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1689. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1690. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1691. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1692. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  1693. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1694. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1695. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1696. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1697. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1698. { "time": 2.1667, "x": 1, "y": 1 }
  1699. ]
  1700. },
  1701. "bone31": {
  1702. "rotate": [
  1703. { "time": 0, "angle": 0, "curve": "stepped" },
  1704. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  1705. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1706. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1707. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1708. { "time": 0.9333, "angle": 0 },
  1709. { "time": 1, "angle": -7.68 },
  1710. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1711. { "time": 1.3, "angle": 0 },
  1712. { "time": 1.4333, "angle": -4.94 },
  1713. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1714. { "time": 1.7333, "angle": 0 },
  1715. { "time": 1.7667, "angle": -5.45 },
  1716. { "time": 2.1667, "angle": 0 }
  1717. ],
  1718. "translate": [
  1719. { "time": 0, "x": 0, "y": 0 },
  1720. { "time": 0.1333, "x": 0.27, "y": 0.35 },
  1721. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1722. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1723. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1724. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1725. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1726. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1727. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1728. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1729. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1730. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1731. { "time": 2.1667, "x": 0, "y": 0 }
  1732. ],
  1733. "scale": [
  1734. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1735. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1736. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1737. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1738. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1739. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  1740. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1741. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1742. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1743. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1744. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1745. { "time": 2.1667, "x": 1, "y": 1 }
  1746. ]
  1747. },
  1748. "bone32": {
  1749. "rotate": [
  1750. { "time": 0, "angle": 0, "curve": "stepped" },
  1751. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  1752. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1753. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1754. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1755. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1756. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1757. { "time": 1.3, "angle": 0, "curve": "stepped" },
  1758. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1759. { "time": 1.7333, "angle": 0 },
  1760. { "time": 1.7667, "angle": -5.45 },
  1761. { "time": 2.1667, "angle": 0 }
  1762. ],
  1763. "translate": [
  1764. { "time": 0, "x": 0, "y": 0 },
  1765. { "time": 0.1333, "x": 0.44, "y": 0.15 },
  1766. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1767. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1768. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1769. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1770. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1771. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1772. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1773. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1774. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1775. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1776. { "time": 2.1667, "x": 0, "y": 0 }
  1777. ],
  1778. "scale": [
  1779. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1780. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1781. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1782. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1783. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1784. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  1785. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1786. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1787. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1788. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1789. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1790. { "time": 2.1667, "x": 1, "y": 1 }
  1791. ]
  1792. },
  1793. "bone33": {
  1794. "rotate": [
  1795. { "time": 0, "angle": 0, "curve": "stepped" },
  1796. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  1797. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1798. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1799. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1800. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1801. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1802. { "time": 1.3, "angle": 0, "curve": "stepped" },
  1803. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1804. { "time": 1.7333, "angle": 0 },
  1805. { "time": 1.7667, "angle": -5.45 },
  1806. { "time": 2.1667, "angle": 0 }
  1807. ],
  1808. "translate": [
  1809. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1810. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1811. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1812. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1813. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1814. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1815. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1816. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1817. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1818. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1819. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1820. { "time": 2.1667, "x": 0, "y": 0 }
  1821. ],
  1822. "scale": [
  1823. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1824. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1825. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1826. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1827. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1828. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  1829. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1830. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1831. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1832. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1833. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1834. { "time": 2.1667, "x": 1, "y": 1 }
  1835. ]
  1836. },
  1837. "bone34": {
  1838. "rotate": [
  1839. { "time": 0, "angle": 0 },
  1840. { "time": 0.2, "angle": 15.54 },
  1841. { "time": 0.3667, "angle": 26.43, "curve": "stepped" },
  1842. { "time": 0.5667, "angle": 26.43, "curve": "stepped" },
  1843. { "time": 1.7333, "angle": 26.43 },
  1844. { "time": 1.8333, "angle": 17.51 },
  1845. { "time": 1.9333, "angle": 17.6 },
  1846. { "time": 2.1667, "angle": 0 }
  1847. ],
  1848. "translate": [
  1849. { "time": 0, "x": 0, "y": 0 },
  1850. { "time": 0.2, "x": 0.31, "y": 0.22 },
  1851. { "time": 0.3667, "x": -1.32, "y": 5.4 },
  1852. { "time": 0.5667, "x": 1.23, "y": 5.51, "curve": "stepped" },
  1853. { "time": 1.7333, "x": 1.23, "y": 5.51 },
  1854. { "time": 1.8333, "x": 0, "y": 0 },
  1855. { "time": 1.9333, "x": -1.24, "y": 2.63 },
  1856. { "time": 2.1667, "x": 0, "y": 0 }
  1857. ],
  1858. "scale": [
  1859. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1860. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1861. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1862. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1863. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1864. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1865. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1866. { "time": 2.1667, "x": 1, "y": 1 }
  1867. ]
  1868. },
  1869. "bone35": {
  1870. "rotate": [
  1871. { "time": 0, "angle": 0 },
  1872. { "time": 0.2, "angle": -30.75 },
  1873. { "time": 0.3667, "angle": -48.94 },
  1874. { "time": 0.5667, "angle": -49.59, "curve": "stepped" },
  1875. { "time": 1.7333, "angle": -49.59 },
  1876. { "time": 1.8333, "angle": -27.43 },
  1877. { "time": 1.9333, "angle": -36.3 },
  1878. { "time": 2.1667, "angle": 0 }
  1879. ],
  1880. "translate": [
  1881. { "time": 0, "x": 0, "y": 0 },
  1882. { "time": 0.2, "x": -2.07, "y": 1.33 },
  1883. { "time": 0.3667, "x": 0, "y": 0 },
  1884. { "time": 0.5667, "x": -1.81, "y": 2.27, "curve": "stepped" },
  1885. { "time": 1.7333, "x": -1.81, "y": 2.27 },
  1886. { "time": 2.1667, "x": 0, "y": 0 }
  1887. ],
  1888. "scale": [
  1889. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1890. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1891. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1892. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1893. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1894. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1895. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1896. { "time": 2.1667, "x": 1, "y": 1 }
  1897. ]
  1898. },
  1899. "bone36": {
  1900. "rotate": [
  1901. { "time": 0, "angle": 0 },
  1902. { "time": 0.2, "angle": 21.78 },
  1903. { "time": 0.3667, "angle": 29.73, "curve": "stepped" },
  1904. { "time": 0.5667, "angle": 29.73, "curve": "stepped" },
  1905. { "time": 1.7333, "angle": 29.73 },
  1906. { "time": 1.8333, "angle": 7.96 },
  1907. { "time": 1.9333, "angle": 23.43 },
  1908. { "time": 2.1667, "angle": 0 }
  1909. ],
  1910. "translate": [
  1911. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1912. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1913. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1914. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1915. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1916. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1917. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1918. { "time": 2.1667, "x": 0, "y": 0 }
  1919. ],
  1920. "scale": [
  1921. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1922. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1923. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1924. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1925. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1926. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1927. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1928. { "time": 2.1667, "x": 1, "y": 1 }
  1929. ]
  1930. }
  1931. },
  1932. "deform": {
  1933. "default": {
  1934. "shenti": {
  1935. "shenti": [
  1936. { "time": 0, "curve": "stepped" },
  1937. { "time": 0.2 },
  1938. {
  1939. "time": 0.3,
  1940. "offset": 6,
  1941. "vertices": [ 7.87739, -0.11489, 7.84719, 0.48654, -7.87363, 0.1645, 8.09422, -1.03386, 8.1616, -0.40378, -8.09072, 1.0834, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10.17027, 0.08356, 10.10541, 0.93051, -10.16642, -0.03473, 6.95844, -0.33167, 6.95689, 0.17216, -6.95473, 0.38159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14.8166, -0.44272, -14.81143, 0.51017, 11.40609, 0.03188, -11.37079, 0.92352, 3.38898, -0.41721, 3.41419, -0.05021, -3.3891, 0.41606, 3.38898, -0.41721, 3.41419, -0.05021, -3.3891, 0.41606 ]
  1942. },
  1943. {
  1944. "time": 0.3667,
  1945. "vertices": [ -1.63954, 0.20186, -1.65176, 0.0243, 1.63964, -0.2013, 1.31448, 0.15877, 1.29093, 0.20676, -1.31297, -0.13961, 3.03533, -0.3877, 3.0606, -0.15142, -3.03402, 0.40628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.81385, 0.03134, 3.78953, 0.34894, -3.81241, -0.01302, 0.96987, 0.07748, 0.95707, 0.08887, -0.96839, -0.05821, -1.63954, 0.20186, -1.65176, 0.0243, 1.63964, -0.2013, -1.63954, 0.20186, -1.65176, 0.0243, 1.63964, -0.2013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.63954, 0.20186, -1.65176, 0.0243, 1.63964, -0.2013, 0, 0, 0, 0, 0, 0, 5.55622, -0.16602, -5.55429, 0.19131, 3.32322, 0.02598, -3.317, 0.23006, 0.32387, -0.03987, 0.32626, -0.0048, -0.32387, 0.03976, 0.32387, -0.03987, 0.32626, -0.0048, -0.32387, 0.03976, 0, 0, 0, 0, 0, 0, 0.26368, -0.42577, 0.30794, -0.39493, -0.26386, 0.42568, 1.61433, -0.19874, 1.62632, -0.02392, -1.61439, 0.19819, 1.61433, -0.19874, 1.62632, -0.02392, -1.61439, 0.19819 ]
  1946. },
  1947. {
  1948. "time": 0.5667,
  1949. "vertices": [ -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 3.81807, -3.92119, 4.21777, -3.48769, -3.81936, 3.9199, 0.69489, -4.59892, -0.19765, 4.64692, 0, 0, 0, 0, 0, 0, 0, 0, 1.84701, 3.07166, 1.50591, 3.25254, -1.84599, -3.07228, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.5265, 0.02244, 1.51527, -0.18602, -1.51519, 0.18653, -1.5265, 0.02244, 1.51527, -0.18602, -1.51519, 0.18653, -1.5265, 0.02244, 1.51527, -0.18602, 0, 0, 0, 0, 0, 0, 0.42189, -0.68123, 0.49271, -0.63188, -0.42217, 0.68108, 2.58292, -0.31798, 2.60211, -0.03827, -2.58303, 0.3171, 2.58292, -0.31798, 2.60211, -0.03827, -2.58303, 0.3171 ],
  1950. "curve": "stepped"
  1951. },
  1952. {
  1953. "time": 0.8667,
  1954. "vertices": [ -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 3.81807, -3.92119, 4.21777, -3.48769, -3.81936, 3.9199, 0.69489, -4.59892, -0.19765, 4.64692, 0, 0, 0, 0, 0, 0, 0, 0, 1.84701, 3.07166, 1.50591, 3.25254, -1.84599, -3.07228, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.5265, 0.02244, 1.51527, -0.18602, -1.51519, 0.18653, -1.5265, 0.02244, 1.51527, -0.18602, -1.51519, 0.18653, -1.5265, 0.02244, 1.51527, -0.18602, 0, 0, 0, 0, 0, 0, 0.42189, -0.68123, 0.49271, -0.63188, -0.42217, 0.68108, 2.58292, -0.31798, 2.60211, -0.03827, -2.58303, 0.3171, 2.58292, -0.31798, 2.60211, -0.03827, -2.58303, 0.3171 ]
  1955. },
  1956. {
  1957. "time": 1.0333,
  1958. "vertices": [ -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 3.81807, -3.92119, 4.21777, -3.48769, -3.81936, 3.9199, 0.69489, -4.59892, -0.19765, 4.64692, 0, 0, 0, 0, 0, 0, 0, 0, 1.84701, 3.07166, 1.50591, 3.25254, -1.84599, -3.07228, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 0, 0, 0, 0, 0, 0, -0.40055, -3.25324, 0.3994, 3.25338, -1.56838, -2.82645, 1.86245, 2.64195, -1.8634, -2.64132, -1.56838, -2.82645, 1.86245, 2.64195, -1.8634, -2.64132, -1.56838, -2.82645, 1.86245, 2.64195, 0, 0, 0, 0, 0, 0, 0.42189, -0.68123, 0.49271, -0.63188, -0.42217, 0.68108, 2.58292, -0.31798, 2.60211, -0.03827, -2.58303, 0.3171, 2.58292, -0.31798, 2.60211, -0.03827, -2.58303, 0.3171 ],
  1959. "curve": "stepped"
  1960. },
  1961. {
  1962. "time": 1.3667,
  1963. "vertices": [ -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 3.81807, -3.92119, 4.21777, -3.48769, -3.81936, 3.9199, 0.69489, -4.59892, -0.19765, 4.64692, 0, 0, 0, 0, 0, 0, 0, 0, 1.84701, 3.07166, 1.50591, 3.25254, -1.84599, -3.07228, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 0, 0, 0, 0, 0, 0, -0.40055, -3.25324, 0.3994, 3.25338, -1.56838, -2.82645, 1.86245, 2.64195, -1.8634, -2.64132, -1.56838, -2.82645, 1.86245, 2.64195, -1.8634, -2.64132, -1.56838, -2.82645, 1.86245, 2.64195, 0, 0, 0, 0, 0, 0, 0.42189, -0.68123, 0.49271, -0.63188, -0.42217, 0.68108, 2.58292, -0.31798, 2.60211, -0.03827, -2.58303, 0.3171, 2.58292, -0.31798, 2.60211, -0.03827, -2.58303, 0.3171 ]
  1964. },
  1965. {
  1966. "time": 1.5667,
  1967. "vertices": [ -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 3.81807, -3.92119, 4.21777, -3.48769, -3.81936, 3.9199, 0.69489, -4.59892, -0.19765, 4.64692, 0, 0, 0, 0, 0, 0, 0, 0, 1.84701, 3.07166, 1.50591, 3.25254, -1.84599, -3.07228, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.5265, 0.02244, 1.51527, -0.18602, -1.51519, 0.18653, -1.5265, 0.02244, 1.51527, -0.18602, -1.51519, 0.18653, -1.5265, 0.02244, 1.51527, -0.18602, 0, 0, 0, 0, 0, 0, 0.42189, -0.68123, 0.49271, -0.63188, -0.42217, 0.68108, 2.58292, -0.31798, 2.60211, -0.03827, -2.58303, 0.3171, 2.58292, -0.31798, 2.60211, -0.03827, -2.58303, 0.3171 ],
  1968. "curve": "stepped"
  1969. },
  1970. {
  1971. "time": 1.7667,
  1972. "vertices": [ -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 3.81807, -3.92119, 4.21777, -3.48769, -3.81936, 3.9199, 0.69489, -4.59892, -0.19765, 4.64692, 0, 0, 0, 0, 0, 0, 0, 0, 1.84701, 3.07166, 1.50591, 3.25254, -1.84599, -3.07228, -2.62327, 0.32297, -2.64282, 0.03889, 2.62342, -0.32208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.5265, 0.02244, 1.51527, -0.18602, -1.51519, 0.18653, -1.5265, 0.02244, 1.51527, -0.18602, -1.51519, 0.18653, -1.5265, 0.02244, 1.51527, -0.18602, 0, 0, 0, 0, 0, 0, 0.42189, -0.68123, 0.49271, -0.63188, -0.42217, 0.68108, 2.58292, -0.31798, 2.60211, -0.03827, -2.58303, 0.3171, 2.58292, -0.31798, 2.60211, -0.03827, -2.58303, 0.3171 ]
  1973. },
  1974. { "time": 2.1667 }
  1975. ]
  1976. },
  1977. "toufa2": {
  1978. "toufa2": [
  1979. { "time": 0 },
  1980. {
  1981. "time": 0.2,
  1982. "vertices": [ -3.20377, -2.7292, 0, 0, 0.19485, 0.00733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.5579, -1.32729, -3.5579, -1.32729, -3.5579, -1.32729, -1.51023, 3.18633, 0, 0, 0, 0, -3.82679, -1.18658 ]
  1983. },
  1984. { "time": 0.5667, "curve": "stepped" },
  1985. { "time": 0.8667 },
  1986. {
  1987. "time": 1.0667,
  1988. "vertices": [ 2.08459, -0.78038, 2.26945, -0.0902, 0.25264, -0.43752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.51624, -2.62573, 0.09486, -1.57914, -0.34752, 2.01676, 0.95529, 2.50824, -0.60024, 2.4543 ]
  1989. },
  1990. { "time": 1.3 },
  1991. {
  1992. "time": 1.5,
  1993. "vertices": [ 2.08459, -0.78038, 2.26945, -0.0902, 0.25264, -0.43752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.51624, -2.62573, 0.09486, -1.57914, -0.34752, 2.01676, 0.95529, 2.50824, -0.60024, 2.4543 ]
  1994. },
  1995. { "time": 1.7333, "curve": "stepped" },
  1996. { "time": 2.1667 }
  1997. ]
  1998. },
  1999. "youtui2": {
  2000. "youtui2": [
  2001. {
  2002. "time": 0,
  2003. "offset": 70,
  2004. "vertices": [ -4.27383, -0.08591, -3.99466, -0.45101 ],
  2005. "curve": "stepped"
  2006. },
  2007. {
  2008. "time": 0.3667,
  2009. "offset": 70,
  2010. "vertices": [ -4.27383, -0.08591, -3.99466, -0.45101 ]
  2011. },
  2012. {
  2013. "time": 0.5667,
  2014. "offset": 6,
  2015. "vertices": [ -0.04993, -0.38136, 0.26753, -0.27631, -0.30131, -0.23903, 0.47037, -1.14766, 1.19118, -0.3456, -0.46119, -1.15138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4.27383, -0.08591, -3.99466, -0.45101, 0, 0, 0, 0, 0, 0, 0, 0, -0.15277, -1.14545, 0.80184, -0.83213, -0.15277, -1.14545, 1.93324, -1.55432 ],
  2016. "curve": "stepped"
  2017. },
  2018. {
  2019. "time": 1.7333,
  2020. "offset": 6,
  2021. "vertices": [ -0.04993, -0.38136, 0.26753, -0.27631, -0.30131, -0.23903, 0.47037, -1.14766, 1.19118, -0.3456, -0.46119, -1.15138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4.27383, -0.08591, -3.99466, -0.45101, 0, 0, 0, 0, 0, 0, 0, 0, -0.15277, -1.14545, 0.80184, -0.83213, -0.15277, -1.14545, 1.93324, -1.55432 ]
  2022. },
  2023. {
  2024. "time": 1.9333,
  2025. "offset": 70,
  2026. "vertices": [ -4.27383, -0.08591, -3.99466, -0.45101 ]
  2027. }
  2028. ]
  2029. },
  2030. "zuoshou": {
  2031. "zuoshou": [
  2032. { "time": 0.3667 }
  2033. ]
  2034. }
  2035. }
  2036. }
  2037. },
  2038. "walk1": {
  2039. "slots": {
  2040. "biyan": {
  2041. "attachment": [
  2042. { "time": 1.1, "name": "biyan" },
  2043. { "time": 1.1667, "name": null }
  2044. ]
  2045. },
  2046. "shou2": {
  2047. "attachment": [
  2048. { "time": 0, "name": null }
  2049. ]
  2050. },
  2051. "teshuyoushou1": {
  2052. "attachment": [
  2053. { "time": 0, "name": null }
  2054. ]
  2055. },
  2056. "teshuyoushou2": {
  2057. "attachment": [
  2058. { "time": 0, "name": null }
  2059. ]
  2060. },
  2061. "teshuzuoshou1": {
  2062. "attachment": [
  2063. { "time": 0, "name": null }
  2064. ]
  2065. },
  2066. "teshuzuoshou2": {
  2067. "attachment": [
  2068. { "time": 0, "name": null }
  2069. ]
  2070. },
  2071. "youtui2": {
  2072. "attachment": [
  2073. { "time": 0, "name": null }
  2074. ]
  2075. },
  2076. "youyan": {
  2077. "attachment": [
  2078. { "time": 1.1, "name": null },
  2079. { "time": 1.1667, "name": "youyan" }
  2080. ]
  2081. },
  2082. "zuoyan": {
  2083. "attachment": [
  2084. { "time": 1.1, "name": null },
  2085. { "time": 1.1667, "name": "zuoyan" }
  2086. ]
  2087. }
  2088. },
  2089. "bones": {
  2090. "root": {
  2091. "rotate": [
  2092. { "time": 0, "angle": 0 }
  2093. ],
  2094. "translate": [
  2095. { "time": 0, "x": 0, "y": 0 }
  2096. ],
  2097. "scale": [
  2098. { "time": 0, "x": 0.65, "y": 0.65 }
  2099. ]
  2100. },
  2101. "bone": {
  2102. "rotate": [
  2103. { "time": 0, "angle": 0, "curve": "stepped" },
  2104. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2105. { "time": 1, "angle": 0, "curve": "stepped" },
  2106. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2107. { "time": 2, "angle": 0 }
  2108. ],
  2109. "translate": [
  2110. { "time": 0, "x": 0, "y": -2.29 },
  2111. { "time": 0.1667, "x": 0, "y": -1.49 },
  2112. { "time": 0.5, "x": 0, "y": -2.29 },
  2113. { "time": 0.6667, "x": 0, "y": -1.49 },
  2114. { "time": 1, "x": 0, "y": -2.29 },
  2115. { "time": 1.1667, "x": 0, "y": -1.49 },
  2116. { "time": 1.5, "x": 0, "y": -2.29 },
  2117. { "time": 1.6667, "x": 0, "y": -1.49 },
  2118. { "time": 2, "x": 0, "y": -2.29 }
  2119. ],
  2120. "scale": [
  2121. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2122. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2123. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2124. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2125. { "time": 2, "x": 1, "y": 1 }
  2126. ]
  2127. },
  2128. "bone2": {
  2129. "rotate": [
  2130. { "time": 0, "angle": 0, "curve": "stepped" },
  2131. { "time": 1, "angle": 0, "curve": "stepped" },
  2132. { "time": 2, "angle": 0 }
  2133. ],
  2134. "translate": [
  2135. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2136. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2137. { "time": 2, "x": 0, "y": 0 }
  2138. ],
  2139. "scale": [
  2140. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2141. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2142. { "time": 2, "x": 1, "y": 1 }
  2143. ]
  2144. },
  2145. "bone3": {
  2146. "rotate": [
  2147. { "time": 0, "angle": 0, "curve": "stepped" },
  2148. { "time": 1, "angle": 0, "curve": "stepped" },
  2149. { "time": 2, "angle": 0 }
  2150. ],
  2151. "translate": [
  2152. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2153. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2154. { "time": 2, "x": 0, "y": 0 }
  2155. ],
  2156. "scale": [
  2157. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2158. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2159. { "time": 2, "x": 1, "y": 1 }
  2160. ]
  2161. },
  2162. "bone4": {
  2163. "rotate": [
  2164. { "time": 0, "angle": 0, "curve": "stepped" },
  2165. { "time": 1, "angle": 0, "curve": "stepped" },
  2166. { "time": 2, "angle": 0 }
  2167. ],
  2168. "translate": [
  2169. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2170. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2171. { "time": 2, "x": 0, "y": 0 }
  2172. ],
  2173. "scale": [
  2174. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2175. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2176. { "time": 2, "x": 1, "y": 1 }
  2177. ]
  2178. },
  2179. "bone5": {
  2180. "rotate": [
  2181. {
  2182. "time": 0,
  2183. "angle": 317.29,
  2184. "curve": [ 0.25, 0, 0.75, 1 ]
  2185. },
  2186. {
  2187. "time": 0.5,
  2188. "angle": 0.01,
  2189. "curve": [ 0.25, 0, 0.75, 1 ]
  2190. },
  2191. {
  2192. "time": 1,
  2193. "angle": 317.29,
  2194. "curve": [ 0.25, 0, 0.75, 1 ]
  2195. },
  2196. {
  2197. "time": 1.5,
  2198. "angle": 0.01,
  2199. "curve": [ 0.25, 0, 0.75, 1 ]
  2200. },
  2201. { "time": 2, "angle": 317.29 }
  2202. ],
  2203. "translate": [
  2204. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2205. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2206. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2207. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2208. { "time": 2, "x": 0, "y": 0 }
  2209. ],
  2210. "scale": [
  2211. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2212. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2213. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2214. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2215. { "time": 2, "x": 1, "y": 1 }
  2216. ]
  2217. },
  2218. "bone6": {
  2219. "rotate": [
  2220. {
  2221. "time": 0,
  2222. "angle": -26.19,
  2223. "curve": [ 0.25, 0, 0.75, 1 ]
  2224. },
  2225. {
  2226. "time": 0.5,
  2227. "angle": -14.55,
  2228. "curve": [ 0.25, 0, 0.75, 1 ]
  2229. },
  2230. {
  2231. "time": 1,
  2232. "angle": -26.19,
  2233. "curve": [ 0.25, 0, 0.75, 1 ]
  2234. },
  2235. {
  2236. "time": 1.5,
  2237. "angle": -14.55,
  2238. "curve": [ 0.25, 0, 0.75, 1 ]
  2239. },
  2240. { "time": 2, "angle": -26.19 }
  2241. ],
  2242. "translate": [
  2243. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2244. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2245. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2246. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2247. { "time": 2, "x": 0, "y": 0 }
  2248. ],
  2249. "scale": [
  2250. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2251. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2252. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2253. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2254. { "time": 2, "x": 1, "y": 1 }
  2255. ]
  2256. },
  2257. "bone7": {
  2258. "rotate": [
  2259. { "time": 0, "angle": 0, "curve": "stepped" },
  2260. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2261. { "time": 1, "angle": 0, "curve": "stepped" },
  2262. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2263. { "time": 2, "angle": 0 }
  2264. ],
  2265. "translate": [
  2266. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2267. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2268. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2269. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2270. { "time": 2, "x": 0, "y": 0 }
  2271. ],
  2272. "scale": [
  2273. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2274. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2275. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2276. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2277. { "time": 2, "x": 1, "y": 1 }
  2278. ]
  2279. },
  2280. "bone8": {
  2281. "rotate": [
  2282. {
  2283. "time": 0,
  2284. "angle": -318.23,
  2285. "curve": [ 0.25, 0, 0.75, 1 ]
  2286. },
  2287. {
  2288. "time": 0.5,
  2289. "angle": -1.4,
  2290. "curve": [ 0.25, 0, 0.75, 1 ]
  2291. },
  2292. {
  2293. "time": 1,
  2294. "angle": -318.23,
  2295. "curve": [ 0.25, 0, 0.75, 1 ]
  2296. },
  2297. {
  2298. "time": 1.5,
  2299. "angle": -1.4,
  2300. "curve": [ 0.25, 0, 0.75, 1 ]
  2301. },
  2302. { "time": 2, "angle": 41.77 }
  2303. ],
  2304. "translate": [
  2305. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2306. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2307. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2308. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2309. { "time": 2, "x": 0, "y": 0 }
  2310. ],
  2311. "scale": [
  2312. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2313. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2314. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2315. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2316. { "time": 2, "x": 1, "y": 1 }
  2317. ]
  2318. },
  2319. "bone9": {
  2320. "rotate": [
  2321. {
  2322. "time": 0,
  2323. "angle": -30.77,
  2324. "curve": [ 0.25, 0, 0.75, 1 ]
  2325. },
  2326. {
  2327. "time": 0.5,
  2328. "angle": -19.08,
  2329. "curve": [ 0.25, 0, 0.75, 1 ]
  2330. },
  2331. {
  2332. "time": 1,
  2333. "angle": -30.77,
  2334. "curve": [ 0.25, 0, 0.75, 1 ]
  2335. },
  2336. {
  2337. "time": 1.5,
  2338. "angle": -19.08,
  2339. "curve": [ 0.25, 0, 0.75, 1 ]
  2340. },
  2341. { "time": 2, "angle": -30.77 }
  2342. ],
  2343. "translate": [
  2344. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2345. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2346. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2347. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2348. { "time": 2, "x": 0, "y": 0 }
  2349. ],
  2350. "scale": [
  2351. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2352. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2353. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2354. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2355. { "time": 2, "x": 1, "y": 1 }
  2356. ]
  2357. },
  2358. "bone10": {
  2359. "rotate": [
  2360. { "time": 0, "angle": 0, "curve": "stepped" },
  2361. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2362. { "time": 1, "angle": 0, "curve": "stepped" },
  2363. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2364. { "time": 2, "angle": 0 }
  2365. ],
  2366. "translate": [
  2367. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2368. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2369. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2370. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2371. { "time": 2, "x": 0, "y": 0 }
  2372. ],
  2373. "scale": [
  2374. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2375. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2376. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2377. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2378. { "time": 2, "x": 1, "y": 1 }
  2379. ]
  2380. },
  2381. "bone11": {
  2382. "rotate": [
  2383. { "time": 0, "angle": 0, "curve": "stepped" },
  2384. { "time": 1, "angle": 0, "curve": "stepped" },
  2385. { "time": 2, "angle": 0 }
  2386. ],
  2387. "translate": [
  2388. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2389. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2390. { "time": 2, "x": 0, "y": 0 }
  2391. ],
  2392. "scale": [
  2393. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2394. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2395. { "time": 2, "x": 1, "y": 1 }
  2396. ]
  2397. },
  2398. "bone12": {
  2399. "rotate": [
  2400. { "time": 0, "angle": -12.07 },
  2401. { "time": 0.1667, "angle": -0.08 },
  2402. { "time": 0.3333, "angle": 19.8 },
  2403. { "time": 0.5, "angle": 39.41 },
  2404. { "time": 0.6667, "angle": 11.74 },
  2405. { "time": 0.8333, "angle": -8.47 },
  2406. { "time": 1, "angle": -12.07 },
  2407. { "time": 1.1667, "angle": -0.08 },
  2408. { "time": 1.3333, "angle": 19.8 },
  2409. { "time": 1.5, "angle": 39.41 },
  2410. { "time": 1.6667, "angle": 11.74 },
  2411. { "time": 1.8333, "angle": -8.47 },
  2412. { "time": 2, "angle": -12.07 }
  2413. ],
  2414. "translate": [
  2415. { "time": 0, "x": 0.96, "y": 3.09 },
  2416. { "time": 0.1667, "x": 0.93, "y": 2.1 },
  2417. { "time": 0.3333, "x": 1.22, "y": 2.1 },
  2418. { "time": 0.5, "x": 1.5, "y": 2.1 },
  2419. { "time": 0.6667, "x": 1.22, "y": 2.1 },
  2420. { "time": 0.8333, "x": 0.93, "y": 2.1 },
  2421. { "time": 1, "x": 0.96, "y": 3.09 },
  2422. { "time": 1.1667, "x": 0.93, "y": 2.1 },
  2423. { "time": 1.3333, "x": 1.22, "y": 2.1 },
  2424. { "time": 1.5, "x": 1.5, "y": 2.1 },
  2425. { "time": 1.6667, "x": 1.22, "y": 2.1 },
  2426. { "time": 1.8333, "x": 0.93, "y": 2.1 },
  2427. { "time": 2, "x": 0.96, "y": 3.09 }
  2428. ],
  2429. "scale": [
  2430. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2431. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2432. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2433. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2434. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2435. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2436. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2437. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2438. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2439. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2440. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2441. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2442. { "time": 2, "x": 1, "y": 1 }
  2443. ]
  2444. },
  2445. "bone13": {
  2446. "rotate": [
  2447. { "time": 0, "angle": 0 },
  2448. { "time": 0.1667, "angle": 8.41 },
  2449. { "time": 0.3333, "angle": 7.79 },
  2450. { "time": 0.5, "angle": 20.24 },
  2451. { "time": 0.6667, "angle": 67.05 },
  2452. { "time": 0.8333, "angle": 50.23 },
  2453. { "time": 1, "angle": 0 },
  2454. { "time": 1.1667, "angle": 8.41 },
  2455. { "time": 1.3333, "angle": 7.79 },
  2456. { "time": 1.5, "angle": 20.24 },
  2457. { "time": 1.6667, "angle": 67.05 },
  2458. { "time": 1.8333, "angle": 50.23 },
  2459. { "time": 2, "angle": 0 }
  2460. ],
  2461. "translate": [
  2462. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2463. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2464. { "time": 2, "x": 0, "y": 0 }
  2465. ],
  2466. "scale": [
  2467. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2468. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2469. { "time": 2, "x": 1, "y": 1 }
  2470. ]
  2471. },
  2472. "bone14": {
  2473. "rotate": [
  2474. { "time": 0, "angle": -7.21 },
  2475. { "time": 0.1667, "angle": -10.06 },
  2476. { "time": 0.3333, "angle": -20.29 },
  2477. { "time": 0.5, "angle": 0 },
  2478. { "time": 0.6667, "angle": -23.46 },
  2479. { "time": 0.8333, "angle": 0 },
  2480. { "time": 1, "angle": -7.21 },
  2481. { "time": 1.1667, "angle": -10.06 },
  2482. { "time": 1.3333, "angle": -20.29 },
  2483. { "time": 1.5, "angle": 0 },
  2484. { "time": 1.6667, "angle": -23.46 },
  2485. { "time": 1.8333, "angle": 0 },
  2486. { "time": 2, "angle": -7.21 }
  2487. ],
  2488. "translate": [
  2489. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2490. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2491. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2492. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2493. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2494. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2495. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2496. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2497. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2498. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2499. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2500. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2501. { "time": 2, "x": 0, "y": 0 }
  2502. ],
  2503. "scale": [
  2504. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2505. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2506. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2507. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2508. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2509. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2510. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2511. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2512. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2513. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2514. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2515. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2516. { "time": 2, "x": 1, "y": 1 }
  2517. ]
  2518. },
  2519. "bone15": {
  2520. "rotate": [
  2521. { "time": 0, "angle": 17.32 },
  2522. { "time": 0.1667, "angle": -12.19 },
  2523. { "time": 0.3333, "angle": -31.06 },
  2524. { "time": 0.5, "angle": -36.21 },
  2525. { "time": 0.6667, "angle": -22.83 },
  2526. { "time": 0.8333, "angle": -0.52 },
  2527. { "time": 1, "angle": 17.32 },
  2528. { "time": 1.1667, "angle": -12.19 },
  2529. { "time": 1.3333, "angle": -31.06 },
  2530. { "time": 1.5, "angle": -36.21 },
  2531. { "time": 1.6667, "angle": -22.83 },
  2532. { "time": 1.8333, "angle": -0.52 },
  2533. { "time": 2, "angle": 17.32 }
  2534. ],
  2535. "translate": [
  2536. { "time": 0, "x": -1.72, "y": 1.43 },
  2537. { "time": 0.1667, "x": -2.69, "y": 1.33 },
  2538. { "time": 0.3333, "x": -3.67, "y": 1.23 },
  2539. { "time": 0.5, "x": -4.64, "y": 1.13 },
  2540. { "time": 0.6667, "x": -3.67, "y": 1.23 },
  2541. { "time": 0.8333, "x": -2.69, "y": 1.33 },
  2542. { "time": 1, "x": -1.72, "y": 1.43 },
  2543. { "time": 1.1667, "x": -2.69, "y": 1.33 },
  2544. { "time": 1.3333, "x": -3.67, "y": 1.23 },
  2545. { "time": 1.5, "x": -4.64, "y": 1.13 },
  2546. { "time": 1.6667, "x": -3.67, "y": 1.23 },
  2547. { "time": 1.8333, "x": -2.69, "y": 1.33 },
  2548. { "time": 2, "x": -1.72, "y": 1.43 }
  2549. ],
  2550. "scale": [
  2551. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2552. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2553. { "time": 2, "x": 1, "y": 1 }
  2554. ]
  2555. },
  2556. "bone16": {
  2557. "rotate": [
  2558. { "time": 0, "angle": 17.68 },
  2559. { "time": 0.1667, "angle": 54.44 },
  2560. { "time": 0.3333, "angle": 26.12 },
  2561. { "time": 0.5, "angle": 4.37 },
  2562. { "time": 0.6667, "angle": 8.81 },
  2563. { "time": 0.8333, "angle": 13.24 },
  2564. { "time": 1, "angle": 17.68 },
  2565. { "time": 1.1667, "angle": 54.44 },
  2566. { "time": 1.3333, "angle": 26.12 },
  2567. { "time": 1.5, "angle": 4.37 },
  2568. { "time": 1.6667, "angle": 8.81 },
  2569. { "time": 1.8333, "angle": 13.24 },
  2570. { "time": 2, "angle": 17.68 }
  2571. ],
  2572. "translate": [
  2573. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2574. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2575. { "time": 2, "x": 0, "y": 0 }
  2576. ],
  2577. "scale": [
  2578. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2579. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2580. { "time": 2, "x": 1, "y": 1 }
  2581. ]
  2582. },
  2583. "bone17": {
  2584. "rotate": [
  2585. { "time": 0, "angle": 0, "curve": "stepped" },
  2586. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2587. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2588. { "time": 0.5, "angle": 0 },
  2589. { "time": 0.6667, "angle": 14.23 },
  2590. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2591. { "time": 1, "angle": 0, "curve": "stepped" },
  2592. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2593. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2594. { "time": 1.5, "angle": 0 },
  2595. { "time": 1.6667, "angle": 14.23 },
  2596. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2597. { "time": 2, "angle": 0 }
  2598. ],
  2599. "translate": [
  2600. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2601. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2602. { "time": 2, "x": 0, "y": 0 }
  2603. ],
  2604. "scale": [
  2605. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2606. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2607. { "time": 2, "x": 1, "y": 1 }
  2608. ]
  2609. },
  2610. "bone18": {
  2611. "rotate": [
  2612. { "time": 0, "angle": 0, "curve": "stepped" },
  2613. { "time": 1, "angle": 0 }
  2614. ],
  2615. "translate": [
  2616. { "time": 0, "x": -6.59, "y": -78.16, "curve": "stepped" },
  2617. { "time": 1, "x": -6.59, "y": -78.16 }
  2618. ],
  2619. "scale": [
  2620. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2621. { "time": 1, "x": 1, "y": 1 }
  2622. ]
  2623. },
  2624. "bone19": {
  2625. "rotate": [
  2626. { "time": 0, "angle": 0, "curve": "stepped" },
  2627. { "time": 1, "angle": 0 }
  2628. ],
  2629. "translate": [
  2630. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2631. { "time": 1, "x": 0, "y": 0 }
  2632. ],
  2633. "scale": [
  2634. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2635. { "time": 1, "x": 1, "y": 1 }
  2636. ]
  2637. },
  2638. "bone20": {
  2639. "rotate": [
  2640. { "time": 0, "angle": 0, "curve": "stepped" },
  2641. { "time": 1, "angle": 0 }
  2642. ],
  2643. "translate": [
  2644. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2645. { "time": 1, "x": 0, "y": 0 }
  2646. ],
  2647. "scale": [
  2648. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2649. { "time": 1, "x": 1, "y": 1 }
  2650. ]
  2651. },
  2652. "bone21": {
  2653. "rotate": [
  2654. { "time": 0, "angle": 0 }
  2655. ],
  2656. "translate": [
  2657. { "time": 0, "x": -1.22, "y": 102.89 }
  2658. ],
  2659. "scale": [
  2660. { "time": 0, "x": 1, "y": 1 }
  2661. ]
  2662. },
  2663. "bone22": {
  2664. "rotate": [
  2665. { "time": 0, "angle": 0 }
  2666. ],
  2667. "translate": [
  2668. { "time": 0, "x": 0, "y": 0 }
  2669. ],
  2670. "scale": [
  2671. { "time": 0, "x": 1, "y": 1 }
  2672. ]
  2673. },
  2674. "bone23": {
  2675. "rotate": [
  2676. { "time": 0, "angle": 0 }
  2677. ],
  2678. "translate": [
  2679. { "time": 0, "x": 0, "y": 0 }
  2680. ],
  2681. "scale": [
  2682. { "time": 0, "x": 1, "y": 1 }
  2683. ]
  2684. },
  2685. "bone24": {
  2686. "rotate": [
  2687. { "time": 0, "angle": 0, "curve": "stepped" },
  2688. { "time": 1, "angle": 0, "curve": "stepped" },
  2689. { "time": 2, "angle": 0 }
  2690. ],
  2691. "translate": [
  2692. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2693. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2694. { "time": 2, "x": 0, "y": 0 }
  2695. ],
  2696. "scale": [
  2697. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2698. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2699. { "time": 2, "x": 1, "y": 1 }
  2700. ]
  2701. },
  2702. "bone25": {
  2703. "rotate": [
  2704. { "time": 0, "angle": 0, "curve": "stepped" },
  2705. { "time": 1, "angle": 0, "curve": "stepped" },
  2706. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2707. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2708. { "time": 1.3333, "angle": 0 }
  2709. ],
  2710. "translate": [
  2711. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2712. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2713. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2714. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2715. { "time": 1.3333, "x": 0, "y": 0 }
  2716. ],
  2717. "scale": [
  2718. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2719. { "time": 1, "x": 1, "y": 1 },
  2720. { "time": 1.1, "x": 0.516, "y": 1, "curve": "stepped" },
  2721. { "time": 1.1667, "x": 0.516, "y": 1 },
  2722. { "time": 1.3333, "x": 1, "y": 1 }
  2723. ]
  2724. },
  2725. "bone26": {
  2726. "rotate": [
  2727. { "time": 0, "angle": 0, "curve": "stepped" },
  2728. { "time": 1, "angle": 0, "curve": "stepped" },
  2729. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2730. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2731. { "time": 1.3333, "angle": 0 }
  2732. ],
  2733. "translate": [
  2734. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2735. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2736. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2737. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2738. { "time": 1.3333, "x": 0, "y": 0 }
  2739. ],
  2740. "scale": [
  2741. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2742. { "time": 1, "x": 1, "y": 1 },
  2743. { "time": 1.1, "x": 0.485, "y": 1, "curve": "stepped" },
  2744. { "time": 1.1667, "x": 0.485, "y": 1 },
  2745. { "time": 1.3333, "x": 1, "y": 1 }
  2746. ]
  2747. },
  2748. "bone27": {
  2749. "rotate": [
  2750. { "time": 0, "angle": 0 }
  2751. ],
  2752. "translate": [
  2753. { "time": 0, "x": 0, "y": 0 }
  2754. ],
  2755. "scale": [
  2756. { "time": 0, "x": 1, "y": 1 }
  2757. ]
  2758. },
  2759. "bone28": {
  2760. "rotate": [
  2761. { "time": 0, "angle": 0, "curve": "stepped" },
  2762. { "time": 1, "angle": 0, "curve": "stepped" },
  2763. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2764. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2765. { "time": 1.3333, "angle": 0 }
  2766. ],
  2767. "translate": [
  2768. { "time": 0, "x": 0, "y": 0 },
  2769. { "time": 1, "x": -1.14, "y": 0, "curve": "stepped" },
  2770. { "time": 1.1, "x": -1.14, "y": 0, "curve": "stepped" },
  2771. { "time": 1.1667, "x": -1.14, "y": 0 },
  2772. { "time": 1.3333, "x": 0, "y": 0 }
  2773. ],
  2774. "scale": [
  2775. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2776. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2777. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2778. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2779. { "time": 1.3333, "x": 1, "y": 1 }
  2780. ]
  2781. },
  2782. "bone29": {
  2783. "rotate": [
  2784. { "time": 0, "angle": 0, "curve": "stepped" },
  2785. { "time": 1, "angle": 0, "curve": "stepped" },
  2786. { "time": 2, "angle": 0 }
  2787. ],
  2788. "translate": [
  2789. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2790. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2791. { "time": 2, "x": 0, "y": 0 }
  2792. ],
  2793. "scale": [
  2794. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2795. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2796. { "time": 2, "x": 1, "y": 1 }
  2797. ]
  2798. },
  2799. "bone30": {
  2800. "rotate": [
  2801. { "time": 0, "angle": 0, "curve": "stepped" },
  2802. { "time": 1, "angle": 0, "curve": "stepped" },
  2803. { "time": 2, "angle": 0 }
  2804. ],
  2805. "translate": [
  2806. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2807. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2808. { "time": 2, "x": 0, "y": 0 }
  2809. ],
  2810. "scale": [
  2811. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2812. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2813. { "time": 2, "x": 1, "y": 1 }
  2814. ]
  2815. },
  2816. "bone31": {
  2817. "rotate": [
  2818. { "time": 0, "angle": 0 },
  2819. { "time": 0.5, "angle": -4.99 },
  2820. { "time": 1, "angle": 0 },
  2821. { "time": 1.5, "angle": -4.99 },
  2822. { "time": 2, "angle": 0 }
  2823. ],
  2824. "translate": [
  2825. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2826. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2827. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2828. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2829. { "time": 2, "x": 0, "y": 0 }
  2830. ],
  2831. "scale": [
  2832. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2833. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2834. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2835. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2836. { "time": 2, "x": 1, "y": 1 }
  2837. ]
  2838. },
  2839. "bone32": {
  2840. "rotate": [
  2841. { "time": 0, "angle": 0 },
  2842. { "time": 0.5, "angle": -7.96 },
  2843. { "time": 1, "angle": 0 },
  2844. { "time": 1.5, "angle": -7.96 },
  2845. { "time": 2, "angle": 0 }
  2846. ],
  2847. "translate": [
  2848. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2849. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2850. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2851. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2852. { "time": 2, "x": 0, "y": 0 }
  2853. ],
  2854. "scale": [
  2855. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2856. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2857. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2858. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2859. { "time": 2, "x": 1, "y": 1 }
  2860. ]
  2861. },
  2862. "bone33": {
  2863. "rotate": [
  2864. { "time": 0, "angle": 0 },
  2865. { "time": 0.5, "angle": -7.96 },
  2866. { "time": 1, "angle": 0 },
  2867. { "time": 1.5, "angle": -7.96 },
  2868. { "time": 2, "angle": 0 }
  2869. ],
  2870. "translate": [
  2871. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2872. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2873. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2874. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2875. { "time": 2, "x": 0, "y": 0 }
  2876. ],
  2877. "scale": [
  2878. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2879. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2880. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2881. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2882. { "time": 2, "x": 1, "y": 1 }
  2883. ]
  2884. }
  2885. },
  2886. "deform": {
  2887. "default": {
  2888. "shenti": {
  2889. "shenti": [
  2890. {
  2891. "time": 0,
  2892. "offset": 96,
  2893. "vertices": [ 0.07585, 5.15943, -0.06706, -5.15955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.08317, 5.15932, -0.06706, -5.15955, 0.07585, 5.15943, -0.06706, -5.15955, -0.08317, 5.15932, 0.07585, 5.15943, -0.06706, -5.15955, -0.08317, 5.15932, 0.07585, 5.15943, -0.06706, -5.15955 ]
  2894. },
  2895. {
  2896. "time": 0.5,
  2897. "offset": 96,
  2898. "vertices": [ 0.52555, 2.89058, -0.52061, -2.89148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.74976, -0.39016, -0.76147, -0.36686, 0.76083, 0.36817, 0, 0, 0, 0, 0, 0, -0.02232, 1.38581, -0.01803, -1.38587, 0.02038, 1.38584, -0.01803, -1.38587, 0.21138, 2.5237, 0.289, 2.516, -0.28474, -2.51648, -0.20551, 2.76205, -0.12036, 2.76708, 0.12505, -2.76686, 0.10131, 3.7051, 0.21542, 3.70022, -0.2091, -3.70058, 0.41248, 4.3822, 0.54726, 4.36741, -0.53981, -4.36833 ]
  2899. },
  2900. {
  2901. "time": 1,
  2902. "offset": 96,
  2903. "vertices": [ 0.07585, 5.15943, -0.06706, -5.15955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.08317, 5.15932, -0.06706, -5.15955, 0.07585, 5.15943, -0.06706, -5.15955, -0.08317, 5.15932, 0.07585, 5.15943, -0.06706, -5.15955, -0.08317, 5.15932, 0.07585, 5.15943, -0.06706, -5.15955 ]
  2904. },
  2905. {
  2906. "time": 1.5,
  2907. "offset": 96,
  2908. "vertices": [ 0.52555, 2.89058, -0.52061, -2.89148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.74976, -0.39016, -0.76147, -0.36686, 0.76083, 0.36817, 0, 0, 0, 0, 0, 0, -0.02232, 1.38581, -0.01803, -1.38587, 0.02038, 1.38584, -0.01803, -1.38587, 0.21138, 2.5237, 0.289, 2.516, -0.28474, -2.51648, -0.20551, 2.76205, -0.12036, 2.76708, 0.12505, -2.76686, 0.10131, 3.7051, 0.21542, 3.70022, -0.2091, -3.70058, 0.41248, 4.3822, 0.54726, 4.36741, -0.53981, -4.36833 ]
  2909. },
  2910. {
  2911. "time": 2,
  2912. "offset": 96,
  2913. "vertices": [ 0.07585, 5.15943, -0.06706, -5.15955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.08317, 5.15932, -0.06706, -5.15955, 0.07585, 5.15943, -0.06706, -5.15955, -0.08317, 5.15932, 0.07585, 5.15943, -0.06706, -5.15955, -0.08317, 5.15932, 0.07585, 5.15943, -0.06706, -5.15955 ]
  2914. }
  2915. ]
  2916. },
  2917. "toufa2": {
  2918. "toufa2": [
  2919. { "time": 0 },
  2920. {
  2921. "time": 0.5,
  2922. "offset": 42,
  2923. "vertices": [ -1.51023, 3.18633, -1.51023, 3.18633, -1.51023, 3.18633, -1.51023, 3.18633 ]
  2924. },
  2925. { "time": 1 },
  2926. {
  2927. "time": 1.5,
  2928. "offset": 42,
  2929. "vertices": [ -1.51023, 3.18633, -1.51023, 3.18633, -1.51023, 3.18633, -1.51023, 3.18633 ]
  2930. },
  2931. { "time": 2 }
  2932. ]
  2933. },
  2934. "youtui": {
  2935. "youtui": [
  2936. { "time": 0 },
  2937. {
  2938. "time": 0.5,
  2939. "offset": 68,
  2940. "vertices": [ 7.87944, 1.72225, 2.8806, 0.63419, -8.08885, 1.1641 ]
  2941. },
  2942. { "time": 1 },
  2943. {
  2944. "time": 1.5,
  2945. "offset": 68,
  2946. "vertices": [ 7.87944, 1.72225, 2.8806, 0.63419, -8.08885, 1.1641 ]
  2947. },
  2948. { "time": 2 }
  2949. ]
  2950. }
  2951. }
  2952. }
  2953. }
  2954. }
  2955. }