60049.json 148 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771
  1. {
  2. "skeleton": { "hash": "xkclE4Famye4RQ9qt2tcURsAVSc", "spine": "3.6.53", "width": 168.72, "height": 173, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -3.3, "y": 47.35 },
  6. { "name": "bone2", "parent": "bone", "length": 12.92, "rotation": 89.16 },
  7. { "name": "bone3", "parent": "bone2", "length": 24.33, "rotation": -0.95, "x": 12.92 },
  8. { "name": "bone4", "parent": "bone3", "length": 6.46, "rotation": 0.11, "x": 24.33 },
  9. { "name": "bone5", "parent": "bone4", "length": 53.21, "rotation": 0.66, "x": 6.46 },
  10. { "name": "bone6", "parent": "bone5", "length": 8.17, "rotation": 1.02, "x": 19.13, "y": 18.96 },
  11. { "name": "bone7", "parent": "bone5", "length": 7.03, "rotation": 2.57, "x": 19.61, "y": -8.01 },
  12. { "name": "bone8", "parent": "bone5", "rotation": 2.57, "x": 27.92, "y": 5.44 },
  13. { "name": "bone9", "parent": "bone5", "x": 6.96, "y": 5.02 },
  14. { "name": "bone10", "parent": "bone5", "length": 6.2, "rotation": -138.95, "x": 55.67, "y": -12.31, "color": "2a63c1ff" },
  15. { "name": "bone11", "parent": "bone10", "length": 14.19, "rotation": -12.09, "x": 6.2, "color": "2a63c1ff" },
  16. { "name": "bone12", "parent": "bone11", "length": 8.76, "rotation": -3.6, "x": 14.19, "color": "2a63c1ff" },
  17. { "name": "bone13", "parent": "bone12", "length": 7.3, "rotation": 14.32, "x": 9.18, "y": 0.02, "color": "2a63c1ff" },
  18. { "name": "bone14", "parent": "bone13", "length": 9.44, "rotation": 26.32, "x": 7.3, "color": "2a63c1ff" },
  19. { "name": "bone15", "parent": "bone14", "length": 7.43, "rotation": 29.42, "x": 9.44, "color": "2a63c1ff" },
  20. { "name": "bone16", "parent": "bone5", "length": 4.93, "rotation": 153.47, "x": 56.86, "y": -4.69, "color": "adcb45ff" },
  21. { "name": "bone17", "parent": "bone16", "length": 5.65, "rotation": 7.9, "x": 5.1, "y": 0.09, "color": "adcb45ff" },
  22. { "name": "bone18", "parent": "bone17", "length": 7.27, "rotation": -13.62, "x": 5.65, "color": "adcb45ff" },
  23. { "name": "bone19", "parent": "bone18", "length": 5.28, "rotation": -19.03, "x": 7.27, "color": "adcb45ff" },
  24. { "name": "bone20", "parent": "bone19", "length": 7.31, "rotation": -9.8, "x": 5.7, "y": -0.08, "color": "adcb45ff" },
  25. { "name": "bone21", "parent": "bone5", "length": 6.2, "rotation": 131.05, "x": 59.27, "y": -1.22, "color": "e16b1eff" },
  26. { "name": "bone22", "parent": "bone21", "length": 8.62, "rotation": 8.55, "x": 7.15, "y": -0.05, "color": "e16b1eff" },
  27. { "name": "bone23", "parent": "bone22", "length": 7.27, "rotation": 0.66, "x": 8.62, "color": "e16b1eff" },
  28. { "name": "bone24", "parent": "bone23", "length": 7.75, "rotation": -13.21, "x": 7.4, "y": -0.14, "color": "e16b1eff" },
  29. { "name": "bone25", "parent": "bone24", "length": 8.65, "rotation": -16.8, "x": 7.75, "color": "e16b1eff" },
  30. { "name": "bone26", "parent": "bone3", "length": 20.4, "rotation": -150.45, "x": 23.23, "y": -15.43, "color": "3ea8ccff" },
  31. { "name": "bone27", "parent": "bone26", "length": 14.5, "rotation": 3.85, "x": 20.4, "color": "3ea8ccff" },
  32. { "name": "bone28", "parent": "bone27", "length": 10.41, "rotation": -10.19, "x": 14.18, "y": 0.2, "color": "3ea8ccff" },
  33. { "name": "bone29", "parent": "bone3", "length": 19.89, "rotation": 153.27, "x": 21.24, "y": 11.5, "color": "ec842bff" },
  34. { "name": "bone30", "parent": "bone29", "length": 14.57, "rotation": -2.06, "x": 19.99, "y": -0.17, "color": "ec842bff" },
  35. { "name": "bone31", "parent": "bone30", "length": 10.46, "rotation": 1.22, "x": 14.57, "color": "ec842bff" },
  36. { "name": "bone32", "parent": "bone", "length": 7.81, "rotation": -71.57, "x": 5.32, "y": -2.43, "color": "7ec91eff" },
  37. { "name": "bone33", "parent": "bone32", "length": 6.46, "rotation": 9.64, "x": 7.81, "color": "7ec91eff" },
  38. { "name": "bone34", "parent": "bone33", "length": 7.82, "rotation": 0.98, "x": 6.46, "color": "7ec91eff" },
  39. { "name": "bone35", "parent": "bone", "length": 7.31, "rotation": -98.97, "x": -8.36, "y": -2.81, "color": "dfe177ff" },
  40. { "name": "bone36", "parent": "bone35", "length": 7.66, "rotation": 1.85, "x": 7.31, "color": "dfe177ff" },
  41. { "name": "bone37", "parent": "bone36", "length": 5.63, "rotation": -4.56, "x": 7.66, "color": "dfe177ff" },
  42. { "name": "bone38", "parent": "bone", "length": 18.15, "rotation": -79.75, "x": 10.45, "y": -5.66, "color": "173db4ff" },
  43. { "name": "bone39", "parent": "bone38", "length": 20.44, "rotation": -4.38, "x": 18.15, "color": "173db4ff" },
  44. { "name": "bone40", "parent": "bone39", "length": 10.1, "rotation": -83.93, "x": 20.44, "color": "173db4ff" },
  45. { "name": "bone41", "parent": "bone", "length": 22.72, "rotation": -95.76, "x": -5.46, "y": -1.84, "color": "aa14afff" },
  46. { "name": "bone42", "parent": "bone41", "length": 20, "rotation": 3.61, "x": 22.09, "y": -0.12, "color": "aa14afff" },
  47. { "name": "bone43", "parent": "bone42", "length": 10.83, "rotation": -72.6, "x": 19.9, "y": 0.04, "color": "aa14afff" },
  48. { "name": "bone44", "parent": "bone5", "x": 20.29, "y": 6.63 },
  49. { "name": "bone45", "parent": "bone", "length": 6.1, "rotation": -82.87, "x": 12.48, "y": 4.56, "color": "1f7426ff" },
  50. { "name": "bone46", "parent": "bone45", "length": 4.72, "rotation": 2.09, "x": 6.1, "color": "1f7426ff" },
  51. { "name": "bone47", "parent": "bone46", "length": 4.77, "rotation": 2.99, "x": 4.85, "y": -0.02, "color": "1f7426ff" },
  52. { "name": "bone48", "parent": "bone47", "length": 4.78, "rotation": 6.23, "x": 4.77, "color": "1f7426ff" },
  53. { "name": "bone49", "parent": "bone5", "length": 8, "rotation": -179.34, "x": 23.19, "y": 5.61 },
  54. { "name": "bone50", "parent": "bone3", "length": 21, "rotation": 153.74, "x": 18.77, "y": 83.22, "color": "2d46c8ff" },
  55. { "name": "bone51", "parent": "bone50", "length": 13.69, "rotation": -66.13, "x": 21.36, "y": -0.19, "color": "2d46c8ff" },
  56. { "name": "bone52", "parent": "bone51", "length": 7.47, "rotation": -0.93, "x": 13.69, "color": "2d46c8ff" },
  57. { "name": "bone53", "parent": "bone52", "length": 8.03, "rotation": -79.33, "x": 5.08, "y": 0.57 }
  58. ],
  59. "slots": [
  60. { "name": "teshuzuoshou1", "bone": "bone51", "attachment": "teshuzuoshou1" },
  61. { "name": "teshuzuoshou2", "bone": "bone50", "attachment": "teshuzuoshou2" },
  62. { "name": "teshuzuoshoushouzhi", "bone": "bone52", "attachment": "teshuzuoshoushouzhi" },
  63. { "name": "zuoshou", "bone": "bone29", "attachment": "zuoshou" },
  64. { "name": "zuotui", "bone": "bone41", "attachment": "zuotui" },
  65. { "name": "youtui", "bone": "bone38", "attachment": "youtui" },
  66. { "name": "xiaba1", "bone": "bone32", "attachment": "xiaba1" },
  67. { "name": "xiaba2", "bone": "bone35", "attachment": "xiaba2" },
  68. { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
  69. { "name": "yaodaichuixian", "bone": "bone45", "attachment": "yaodaichuixian" },
  70. { "name": "youshou", "bone": "bone26", "attachment": "youshou" },
  71. { "name": "toufa6", "bone": "bone5", "attachment": "toufa6" },
  72. { "name": "toufa5", "bone": "bone5", "attachment": "toufa5" },
  73. { "name": "lian", "bone": "bone5", "attachment": "lian" },
  74. { "name": "yanjingzhouwen", "bone": "bone8", "attachment": "yanjingzhouwen" },
  75. { "name": "zuiba", "bone": "bone9", "attachment": "zuiba" },
  76. { "name": "bizi", "bone": "bone49", "attachment": "bizi" },
  77. { "name": "zuoyan", "bone": "bone6", "attachment": "zuoyan" },
  78. { "name": "youyan", "bone": "bone7", "attachment": "youyan" },
  79. { "name": "biyan", "bone": "bone44" },
  80. { "name": "meimao", "bone": "bone8", "attachment": "meimao" },
  81. { "name": "erduo", "bone": "bone5", "attachment": "erduo" },
  82. { "name": "toufa4", "bone": "bone5", "attachment": "toufa4" },
  83. { "name": "toufa3", "bone": "bone10", "attachment": "toufa3" },
  84. { "name": "toufa2", "bone": "bone21", "attachment": "toufa2" },
  85. { "name": "toufa1", "bone": "bone16", "attachment": "toufa1" },
  86. { "name": "hongjiu", "bone": "bone53", "attachment": "hongjiu" },
  87. { "name": "beizi", "bone": "bone53", "attachment": "beizi" },
  88. { "name": "zuiba2", "bone": "bone9", "attachment": "zuiba2" },
  89. { "name": "teshuzuoshou3", "bone": "bone51", "attachment": "teshuzuoshou3" }
  90. ],
  91. "skins": {
  92. "default": {
  93. "beizi": {
  94. "beizi": { "x": 5.59, "y": -0.07, "rotation": -95.55, "width": 11, "height": 24 }
  95. },
  96. "biyan": {
  97. "biyan": { "x": 0.96, "y": -1.48, "rotation": -88.98, "width": 44, "height": 5 }
  98. },
  99. "bizi": {
  100. "bizi": { "x": 4.94, "y": 0.45, "rotation": 90.36, "width": 18, "height": 23 }
  101. },
  102. "erduo": {
  103. "erduo": { "x": 23.89, "y": -30.81, "rotation": -88.98, "width": 14, "height": 19 }
  104. },
  105. "hongjiu": {
  106. "hongjiu": {
  107. "type": "mesh",
  108. "uvs": [ 1, 0.29213, 0.59569, 1, 0.39933, 1, 0, 0.23813, 0, 0, 1, 0 ],
  109. "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 1, 2, 0 ],
  110. "vertices": [ 13.5, -6.6, 6.88, -1.49, 7.09, 0.66, 15.1, 4.3, 17.47, 4.07, 16.41, -6.88 ],
  111. "hull": 6,
  112. "edges": [ 8, 10, 6, 8, 4, 6, 2, 4, 0, 10, 2, 0 ],
  113. "width": 11,
  114. "height": 10
  115. }
  116. },
  117. "lian": {
  118. "lian": { "x": 34.88, "y": -1.61, "rotation": -88.98, "width": 70, "height": 80 }
  119. },
  120. "meimao": {
  121. "meimao": { "x": 1.27, "y": -2.21, "rotation": -91.55, "width": 48, "height": 9 }
  122. },
  123. "shenti": {
  124. "shenti": {
  125. "type": "mesh",
  126. "uvs": [ 0.71425, 0.03825, 0.726, 0.08624, 0.89489, 0.10487, 0.92246, 0.59002, 0.92444, 0.68791, 0.96473, 0.77443, 1, 0.8481, 1, 0.92298, 0.612, 1, 0.45604, 1, 0.29111, 1, 0.06616, 0.93216, 0.07781, 0.87028, 0.08641, 0.78567, 0.09689, 0.7084, 0.10147, 0.62603, 0.13489, 0.13095, 0.25945, 0.11232, 0.26924, 0.06494, 0.28267, 0, 0.48559, 0, 0.70489, 0, 0.4702, 0.72213, 0.46635, 0.8989, 0.46696, 0.63054, 0.48222, 0.11397, 0.48375, 0.06229, 0.46838, 0.81351, 0.70583, 0.70437, 0.71349, 0.79421 ],
  127. "triangles": [ 26, 19, 20, 26, 20, 21, 26, 21, 0, 18, 19, 26, 25, 18, 26, 17, 18, 25, 1, 25, 26, 1, 26, 0, 25, 24, 17, 1, 24, 25, 17, 24, 15, 3, 24, 1, 28, 24, 3, 4, 28, 3, 22, 24, 28, 14, 15, 24, 22, 14, 24, 29, 28, 4, 29, 4, 5, 27, 14, 22, 13, 14, 27, 29, 27, 22, 29, 22, 28, 27, 12, 13, 23, 12, 27, 23, 27, 29, 6, 23, 29, 6, 29, 5, 8, 23, 6, 10, 12, 23, 11, 12, 10, 9, 10, 23, 7, 8, 6, 9, 23, 8, 15, 16, 17, 3, 1, 2 ],
  128. "vertices": [ 2, 3, 29.01, -10.42, 0.45259, 4, 4.66, -10.43, 0.54741, 2, 3, 26.58, -11.03, 0.63153, 4, 2.23, -11.03, 0.36847, 2, 3, 25.87, -18.65, 0.85347, 4, 1.5, -18.65, 0.14653, 2, 3, 1.18, -20.67, 0.58789, 2, 13.76, -20.68, 0.41211, 2, 3, -3.81, -20.91, 0.36299, 2, 8.77, -20.84, 0.63701, 2, 3, -8.17, -22.86, 0.205, 2, 4.38, -22.72, 0.795, 2, 3, -11.87, -24.56, 0.14534, 2, 0.65, -24.36, 0.85466, 2, 3, -15.69, -24.68, 0.12652, 2, -3.17, -24.42, 0.87348, 2, 3, -20.16, -7.35, 0.00872, 2, -7.36, -7.02, 0.99128, 1, 2, -7.46, 0, 1, 1, 2, -7.57, 7.42, 1, 2, 3, -17.47, 17.3, 0.00524, 2, -4.26, 17.59, 0.99476, 2, 3, -14.3, 16.88, 0.01871, 2, -1.1, 17.11, 0.98129, 2, 3, -9.97, 16.63, 0.08326, 2, 3.23, 16.79, 0.91674, 2, 3, -6.02, 16.28, 0.20822, 2, 7.17, 16.38, 0.79178, 2, 3, -1.81, 16.2, 0.41593, 2, 11.38, 16.23, 0.58407, 2, 3, 23.47, 15.49, 0.90849, 4, -0.83, 15.49, 0.09151, 2, 3, 24.59, 9.92, 0.70144, 4, 0.28, 9.92, 0.29856, 2, 3, 27.02, 9.55, 0.45171, 4, 2.71, 9.55, 0.54829, 2, 3, 30.35, 9.05, 0.27859, 4, 6.04, 9.04, 0.72141, 2, 3, 30.64, -0.08, 2.8E-4, 4, 6.31, -0.09, 0.99972, 2, 3, 30.95, -9.94, 0.39471, 4, 6.6, -9.95, 0.60529, 2, 3, -6.19, -0.53, 0.00226, 2, 6.72, -0.43, 0.99774, 1, 2, -2.3, -0.39, 1, 2, 3, -1.53, -0.24, 0.00533, 2, 11.39, -0.22, 0.99467, 2, 3, 24.82, -0.11, 0.10969, 4, 0.49, -0.11, 0.89031, 2, 3, 27.46, -0.09, 0.00176, 4, 3.13, -0.1, 0.99824, 2, 3, -10.85, -0.6, 6.1E-4, 2, 2.06, -0.42, 0.99939, 2, 3, -4.96, -11.1, 0.18939, 2, 7.78, -11.02, 0.81061, 2, 3, -9.53, -11.59, 0.10154, 2, 3.2, -11.43, 0.89846 ],
  129. "hull": 22,
  130. "edges": [ 32, 34, 2, 4, 12, 14, 16, 14, 20, 22, 38, 40, 40, 42, 16, 18, 18, 20, 28, 44, 22, 24, 18, 46, 24, 46, 46, 12, 28, 30, 30, 32, 48, 44, 30, 48, 4, 6, 6, 8, 48, 6, 50, 48, 34, 50, 50, 2, 34, 36, 36, 38, 40, 52, 52, 50, 36, 52, 2, 0, 0, 42, 52, 0, 24, 26, 26, 28, 44, 54, 54, 46, 26, 54, 8, 10, 10, 12, 8, 56, 56, 44, 10, 58, 58, 54, 56, 58 ],
  131. "width": 45,
  132. "height": 51
  133. }
  134. },
  135. "teshuzuoshou1": {
  136. "teshuzuoshou1": {
  137. "type": "mesh",
  138. "uvs": [ 1, 0.52242, 1, 1, 0.70734, 1, 0.42242, 0.87366, 0.36597, 0.84621, 0.31807, 0.82739, 0, 0.68635, 0, 0.39492, 0, 0, 0.33759, 0, 0.37584, 0, 0.42866, 1.0E-5, 1, 0, 0.329, 0.43687, 0.38054, 0.44546, 0.43375, 0.45023 ],
  139. "triangles": [ 7, 8, 9, 13, 7, 9, 6, 7, 13, 5, 6, 13, 13, 9, 10, 10, 14, 13, 11, 14, 10, 15, 11, 12, 14, 11, 15, 15, 12, 0, 5, 13, 14, 14, 15, 4, 14, 4, 5, 3, 4, 15, 2, 3, 15, 0, 2, 15, 2, 0, 1 ],
  140. "vertices": [ 1, 51, -5.29, -0.34, 1, 1, 51, -5.78, 6.33, 1, 1, 51, 2.4, 6.93, 1, 2, 51, 10.48, 5.75, 0.90687, 52, -3.3, 5.69, 0.09313, 2, 51, 12.09, 5.48, 0.76378, 52, -1.69, 5.45, 0.23622, 2, 51, 13.44, 5.31, 0.56645, 52, -0.33, 5.31, 0.43355, 1, 52, 8.71, 4.14, 1, 1, 52, 9.08, 0.07, 1, 1, 52, 9.57, -5.43, 1, 2, 51, 13.74, -6.28, 0.46555, 52, 0.16, -6.28, 0.53445, 2, 51, 12.67, -6.36, 0.61041, 52, -0.91, -6.37, 0.38959, 2, 51, 11.2, -6.47, 0.77831, 52, -2.38, -6.51, 0.22169, 1, 51, -4.76, -7.63, 1, 2, 51, 13.54, -0.16, 0.77538, 52, -0.15, -0.16, 0.22462, 2, 51, 12.09, -0.15, 0.996, 52, -1.6, -0.17, 0.004, 2, 51, 10.6, -0.19, 0.99906, 52, -3.09, -0.24, 9.4E-4 ],
  141. "hull": 13,
  142. "edges": [ 2, 4, 2, 0, 0, 24, 12, 14, 14, 16, 16, 18, 26, 14, 18, 26, 10, 12, 26, 10, 8, 10, 28, 26, 8, 28, 18, 20, 28, 20, 20, 22, 22, 24, 0, 30, 30, 28, 22, 30, 4, 6, 6, 8, 30, 6 ],
  143. "width": 28,
  144. "height": 14
  145. }
  146. },
  147. "teshuzuoshou2": {
  148. "teshuzuoshou2": {
  149. "type": "mesh",
  150. "uvs": [ 1, 0.36543, 0.61737, 1, 0.37168, 1, 0, 0.78893, 0, 0.54393, 0.54912, 0, 1, 0 ],
  151. "triangles": [ 5, 6, 0, 4, 2, 3, 4, 1, 2, 1, 4, 5, 0, 1, 5 ],
  152. "vertices": [ 6.03, 7.22, 24.19, 8.23, 26.5, 3.89, 25.15, -5.25, 19.53, -8.24, 1.89, -5.2, -2.35, 2.75 ],
  153. "hull": 7,
  154. "edges": [ 0, 12, 0, 2, 10, 12, 10, 8, 2, 4, 6, 8, 4, 6 ],
  155. "width": 20,
  156. "height": 26
  157. }
  158. },
  159. "teshuzuoshou3": {
  160. "teshuzuoshou3": { "x": 15.42, "y": 0.55, "rotation": -175.82, "width": 14, "height": 14 }
  161. },
  162. "teshuzuoshoushouzhi": {
  163. "teshuzuoshoushouzhi": { "x": 5.32, "y": -1.95, "rotation": -174.88, "width": 6, "height": 5 }
  164. },
  165. "toufa1": {
  166. "toufa1": {
  167. "type": "mesh",
  168. "uvs": [ 1, 0.18984, 0.94329, 0.22977, 0.86319, 0.30645, 0.80279, 0.42952, 0.73367, 0.57617, 0.65919, 0.70759, 0.56294, 0.79606, 0.44953, 0.89259, 0.3116, 0.95831, 0.16471, 1, 0, 1, 0, 0.90575, 0.06776, 0.85344, 0.16516, 0.77825, 0.23687, 0.71297, 0.31723, 0.652, 0.41619, 0.56325, 0.51154, 0.40575, 0.55498, 0.24075, 0.64791, 0.11325, 0.75171, 0, 0.90964, 0, 1, 0, 0.68482, 0.34016, 0.63033, 0.5073, 0.44068, 0.74158, 0.34965, 0.82515, 0.83726, 0.10476, 0.76582, 0.20815, 0.53571, 0.64155, 0.24265, 0.87865, 0.10761, 0.94619 ],
  169. "triangles": [ 10, 31, 9, 9, 30, 8, 9, 31, 30, 10, 11, 31, 8, 30, 26, 11, 12, 31, 31, 12, 30, 12, 13, 30, 13, 14, 30, 30, 14, 26, 8, 26, 7, 26, 25, 7, 7, 25, 6, 14, 15, 26, 26, 15, 25, 25, 29, 6, 15, 16, 25, 6, 29, 5, 25, 16, 29, 29, 24, 5, 5, 24, 4, 29, 16, 24, 16, 17, 24, 4, 24, 3, 24, 23, 3, 24, 17, 23, 3, 23, 2, 17, 18, 23, 23, 28, 2, 23, 18, 28, 2, 28, 1, 18, 19, 28, 28, 27, 1, 1, 27, 0, 28, 19, 27, 27, 21, 0, 21, 22, 0, 19, 20, 27, 27, 20, 21 ],
  170. "vertices": [ 2, 16, -1.92, 6.37, 0.99766, 17, -6.09, 7.18, 0.00234, 2, 16, -0.17, 5.42, 0.97426, 17, -4.48, 6.01, 0.02574, 2, 16, 2.81, 4.36, 0.72612, 17, -1.68, 4.54, 0.27388, 3, 16, 6.68, 4.4, 0.0775, 17, 2.16, 4.05, 0.92041, 18, -4.35, 3.12, 0.0021, 2, 17, 6.7, 3.55, 0.38294, 18, 0.18, 3.69, 0.61706, 3, 17, 10.89, 2.75, 1.3E-4, 18, 4.45, 3.91, 0.99375, 19, -3.95, 2.77, 0.00612, 2, 18, 8.05, 2.93, 0.42529, 19, -0.22, 3.03, 0.57471, 2, 19, 4.03, 3.15, 0.98486, 20, -2.19, 2.9, 0.01514, 2, 19, 8.32, 2.16, 0.08275, 20, 2.2, 2.66, 0.91725, 1, 20, 6.51, 1.7, 1, 1, 20, 10.74, -0.54, 1, 1, 20, 9.5, -2.87, 1, 1, 20, 7.08, -3.24, 1, 2, 19, 8.6, -4.42, 0.00239, 20, 3.6, -3.78, 0.99761, 3, 18, 11.29, -6.25, 0.0138, 19, 5.84, -4.6, 0.1748, 20, 0.9, -4.43, 0.81141, 3, 18, 8.59, -5.24, 0.17177, 19, 2.95, -4.52, 0.52307, 20, -1.95, -4.84, 0.30516, 4, 17, 9.45, -5.25, 0.01029, 18, 4.93, -4.2, 0.79079, 19, -0.84, -4.73, 0.17806, 20, -5.65, -5.7, 0.02086, 3, 16, 9.99, -3.4, 0.06244, 17, 4.37, -4.12, 0.57407, 18, -0.27, -4.31, 0.36349, 3, 16, 5.32, -4.42, 0.7075, 17, -0.4, -4.49, 0.29093, 18, -4.82, -5.79, 0.00156, 1, 16, 0.9, -3.68, 1, 1, 16, -3.3, -2.48, 1, 1, 16, -5.42, 1.58, 1, 1, 16, -6.63, 3.91, 1, 2, 16, 6.04, 0.21, 0.0049, 17, 0.95, -0.01, 0.9951, 2, 17, 5.89, 0.08, 0.18049, 18, 0.22, 0.13, 0.81951, 3, 18, 8.72, -0.87, 0.02307, 19, 1.65, -0.35, 0.97143, 20, -3.94, -0.95, 0.0055, 2, 18, 12.12, -1.79, 9.0E-5, 19, 5.17, -0.11, 0.99991, 1, 16, -1.85, 1.08, 1, 2, 16, 1.68, 0.58, 0.98783, 17, -3.32, 0.96, 0.01217, 3, 18, 4.86, -0.1, 0.99902, 19, -2.24, -0.88, 9.3E-4, 20, -7.69, -2.14, 5.0E-5, 1, 20, 2.93, -0.25, 1, 1, 20, 7.27, -0.41, 1 ],
  171. "hull": 23,
  172. "edges": [ 40, 38, 38, 36, 36, 34, 34, 32, 32, 30, 20, 22, 0, 44, 8, 10, 14, 16, 18, 20, 16, 18, 40, 42, 42, 44, 46, 48, 50, 52, 42, 54, 40, 54, 0, 2, 2, 4, 54, 2, 0, 42, 46, 56, 56, 54, 38, 56, 56, 4, 36, 46, 4, 6, 6, 8, 46, 6, 34, 48, 48, 8, 48, 58, 58, 50, 32, 58, 58, 10, 30, 50, 10, 12, 12, 14, 50, 12, 14, 52, 26, 28, 28, 30, 52, 28, 60, 52, 26, 60, 60, 16, 20, 62, 62, 60, 18, 62, 22, 24, 24, 26, 62, 24 ],
  173. "width": 29,
  174. "height": 28
  175. }
  176. },
  177. "toufa2": {
  178. "toufa2": {
  179. "type": "mesh",
  180. "uvs": [ 1, 0.30209, 0.8896, 0.34207, 0.78788, 0.45757, 0.71197, 0.59202, 0.57817, 0.75767, 0.47299, 0.86783, 0.36855, 0.93391, 0.26408, 1, 0.11386, 1, 0, 1, 0, 0.8245, 0.119, 0.72038, 0.19413, 0.66241, 0.26134, 0.56031, 0.34199, 0.42102, 0.43086, 0.26896, 0.5397, 0.09312, 0.69946, 0, 0.92995, 0, 1, 0, 0.673, 0.27996, 0.58113, 0.41889, 0.483, 0.58038, 0.30198, 0.80532, 0.79708, 0.1355, 0.37599, 0.71915, 0.19023, 0.87218, 0.07668, 0.95057 ],
  181. "triangles": [ 8, 26, 7, 7, 26, 6, 9, 27, 8, 8, 27, 26, 9, 10, 27, 27, 10, 26, 26, 23, 6, 10, 11, 26, 26, 11, 23, 11, 12, 23, 6, 23, 5, 23, 25, 5, 5, 25, 4, 23, 12, 25, 12, 13, 25, 25, 13, 22, 13, 14, 22, 25, 22, 4, 4, 22, 3, 22, 14, 21, 22, 21, 3, 3, 21, 2, 21, 20, 2, 14, 15, 21, 21, 15, 20, 15, 16, 20, 24, 20, 16, 2, 20, 1, 20, 24, 1, 1, 24, 0, 24, 18, 0, 18, 19, 0, 24, 16, 17, 24, 17, 18 ],
  182. "vertices": [ 1, 21, -3.15, 10.17, 1, 2, 21, 1.45, 7.92, 0.96651, 22, -4.45, 8.73, 0.03349, 3, 21, 7.26, 7.72, 0.52862, 22, 1.26, 7.67, 0.44864, 23, -7.26, 7.75, 0.02274, 3, 21, 12.56, 8.72, 0.09825, 22, 6.65, 7.87, 0.60146, 23, -1.88, 7.89, 0.30029, 4, 21, 20.47, 8.77, 1.0E-5, 22, 14.48, 6.75, 0.03644, 23, 5.95, 6.68, 0.94794, 24, -2.97, 6.31, 0.01561, 3, 23, 11.62, 5.33, 0.46971, 24, 2.86, 6.29, 0.52274, 25, -6.5, 4.61, 0.00755, 3, 23, 16.24, 3.1, 0.06035, 24, 7.87, 5.18, 0.54789, 25, -1.39, 4.99, 0.39177, 3, 23, 20.86, 0.88, 2.0E-5, 24, 12.87, 4.07, 0.02757, 25, 3.73, 5.38, 0.97241, 1, 25, 10.11, 3.15, 1, 1, 25, 14.95, 1.47, 1, 1, 25, 13.15, -3.67, 1, 2, 24, 13.06, -6.78, 0.02336, 25, 7.04, -4.95, 0.97664, 2, 24, 9.27, -6.24, 0.28802, 25, 3.25, -5.54, 0.71198, 4, 22, 19.33, -7.99, 0.00221, 23, 10.62, -8.11, 9.6E-4, 24, 4.96, -7.02, 0.81682, 25, -0.65, -7.53, 0.18001, 4, 22, 13.69, -8.12, 0.11669, 23, 4.98, -8.18, 0.16217, 24, -0.52, -8.38, 0.71703, 25, -5.5, -10.41, 0.00411, 4, 21, 15.8, -7.09, 4.5E-4, 22, 7.51, -8.24, 0.64152, 23, -1.2, -8.23, 0.1677, 24, -6.52, -9.84, 0.19034, 4, 21, 8.55, -8.11, 0.20599, 22, 0.18, -8.18, 0.78095, 23, -8.53, -8.08, 0.00221, 24, -13.69, -11.37, 0.01085, 2, 21, 1.19, -5.7, 0.89986, 22, -6.74, -4.7, 0.10014, 1, 21, -6.76, 0.97, 1, 1, 21, -9.17, 3, 1, 2, 21, 7.68, 0.18, 2.4E-4, 22, 0.56, 0.15, 0.99976, 3, 22, 6.52, -0.1, 0.99872, 23, -2.1, -0.07, 7.4E-4, 24, -9.26, -2.1, 5.4E-4, 3, 22, 13.2, -0.1, 4.5E-4, 23, 4.58, -0.15, 0.98688, 24, -2.74, -0.65, 0.01267, 3, 23, 15.18, -1.77, 5.9E-4, 24, 7.95, 0.2, 0.32623, 25, 0.13, 0.24, 0.67318, 1, 21, 0.52, 0.34, 1, 1, 24, 3.68, 0, 1, 1, 25, 5.56, 0.55, 1, 1, 25, 11.18, 1.16, 1 ],
  183. "hull": 20,
  184. "edges": [ 34, 32, 32, 30, 30, 28, 24, 22, 18, 20, 22, 20, 0, 38, 4, 6, 6, 8, 8, 10, 34, 36, 36, 38, 40, 42, 42, 44, 36, 48, 48, 40, 34, 48, 0, 2, 2, 4, 48, 2, 4, 40, 40, 32, 30, 42, 42, 6, 8, 44, 44, 28, 24, 46, 10, 12, 12, 14, 46, 12, 44, 50, 50, 46, 10, 50, 24, 26, 26, 28, 50, 26, 52, 46, 22, 52, 52, 14, 18, 54, 54, 52, 20, 54, 14, 16, 16, 18, 54, 16 ],
  185. "width": 45,
  186. "height": 31
  187. }
  188. },
  189. "toufa3": {
  190. "toufa3": {
  191. "type": "mesh",
  192. "uvs": [ 0.29695, 0.04455, 0.3899, 0.1079, 0.4639, 0.21596, 0.53535, 0.33074, 0.61156, 0.4894, 0.66246, 0.58136, 0.72902, 0.68901, 0.79614, 0.76449, 0.89452, 0.80712, 1, 0.82939, 1, 0.90667, 0.82528, 1, 0.63099, 1, 0.47778, 0.93224, 0.34928, 0.84176, 0.28128, 0.73976, 0.23918, 0.60994, 0.2068, 0.46158, 0.16935, 0.34874, 0.11634, 0.26106, 0.09023, 0.21121, 0, 0.13085, 0, 0, 0.09974, 0, 0.22623, 0, 0.21058, 0.17666, 0.38737, 0.4978, 0.45641, 0.60519, 0.59701, 0.81723, 0.7301, 0.87632, 0.15455, 0.12666, 0.06581, 0.05393, 0.27649, 0.25818, 0.33531, 0.36041, 0.51812, 0.73302, 0.86745, 0.89176 ],
  193. "triangles": [ 11, 35, 10, 11, 29, 35, 10, 35, 9, 35, 8, 9, 35, 7, 8, 12, 29, 11, 13, 28, 12, 12, 28, 29, 29, 7, 35, 7, 29, 6, 29, 28, 6, 28, 34, 6, 13, 34, 28, 13, 14, 34, 14, 15, 34, 34, 5, 6, 15, 27, 34, 15, 16, 27, 34, 27, 5, 16, 26, 27, 16, 17, 26, 27, 4, 5, 27, 26, 4, 26, 3, 4, 17, 33, 26, 26, 33, 3, 17, 18, 33, 18, 32, 33, 33, 2, 3, 33, 32, 2, 18, 19, 32, 19, 25, 32, 19, 20, 25, 32, 1, 2, 32, 25, 1, 20, 21, 30, 20, 30, 25, 30, 21, 31, 25, 0, 1, 25, 30, 0, 21, 22, 31, 31, 23, 30, 30, 24, 0, 30, 23, 24, 31, 22, 23 ],
  194. "vertices": [ 1, 11, -4.75, 6.38, 1, 1, 11, -0.46, 8.53, 1, 2, 11, 5.19, 9.05, 0.97712, 12, -9.55, 8.46, 0.02288, 3, 11, 11.06, 9.33, 0.73979, 12, -3.71, 9.12, 0.26019, 14, -10.4, 18.54, 2.0E-5, 4, 11, 18.73, 8.89, 0.1202, 12, 3.97, 9.16, 0.79883, 13, -2.79, 10.14, 0.04449, 14, -4.55, 13.57, 0.03648, 4, 11, 23.3, 8.88, 0.00663, 12, 8.54, 9.44, 0.60917, 13, 1.7, 9.29, 0.21009, 14, -0.9, 10.81, 0.1741, 4, 12, 14, 10.03, 0.17328, 13, 7.15, 8.51, 0.2084, 14, 3.64, 7.7, 0.58025, 15, -1.27, 9.55, 0.03807, 4, 12, 18.19, 11.23, 0.02509, 13, 11.5, 8.64, 0.03464, 14, 7.6, 5.88, 0.59453, 15, 1.28, 6.02, 0.34574, 4, 12, 21.6, 14.22, 2.9E-4, 13, 15.55, 10.69, 6.0E-5, 14, 12.13, 5.93, 0.07275, 15, 5.26, 3.84, 0.92689, 1, 15, 9.6, 2.52, 1, 1, 15, 9.34, -0.87, 1, 2, 14, 13.09, -2.99, 0.10483, 15, 1.71, -4.4, 0.89517, 3, 13, 15.26, -3.25, 0.00526, 14, 5.69, -6.45, 0.99199, 15, -6.43, -3.78, 0.00275, 2, 13, 8.91, -6.42, 0.53401, 14, -1.4, -6.46, 0.46599, 3, 12, 13.55, -7.27, 0.15886, 13, 2.43, -8.14, 0.82954, 14, -7.97, -5.14, 0.0116, 3, 11, 21.96, -8.53, 5.8E-4, 12, 8.29, -8.02, 0.64074, 13, -2.86, -7.57, 0.35867, 3, 11, 16.09, -7.41, 0.15747, 12, 2.35, -7.28, 0.82536, 13, -8.42, -5.38, 0.01717, 2, 11, 9.68, -5.56, 0.8793, 12, -4.15, -5.83, 0.1207, 2, 11, 4.56, -4.62, 0.99993, 12, -9.33, -5.22, 7.0E-5, 1, 11, 0.11, -4.78, 1, 1, 11, -2.34, -4.72, 1, 1, 11, -7.24, -6.41, 1, 1, 11, -12.33, -3.72, 1, 1, 11, -10.37, -0.01, 1, 1, 11, -7.88, 4.68, 1, 1, 11, -1.32, 0.46, 1, 2, 11, 14.64, 0.4, 0.15646, 12, 0.42, 0.42, 0.84354, 2, 12, 5.92, 1.12, 0.99698, 14, -8.3, 6.2, 0.00302, 2, 12, 16.86, 2.65, 0.00124, 14, 1, 0.24, 0.99876, 4, 12, 21.53, 6.67, 2.3E-4, 13, 13.61, 3.4, 2.4E-4, 14, 7.16, 0.25, 0.98989, 15, -1.86, 1.33, 0.00964, 1, 11, -4.36, -0.59, 1, 1, 11, -8.94, -2.39, 1, 1, 11, 3.15, 1.22, 1, 2, 11, 8.28, 1.3, 0.99881, 12, -5.99, 0.92, 0.00119, 3, 12, 12.12, 1.16, 0.01803, 13, 3.13, 0.38, 0.97378, 14, -3.57, 2.19, 0.00819, 3, 12, 24.53, 11.65, 0, 14, 12.68, 2.07, 0.00257, 15, 3.84, 0.21, 0.99742 ],
  195. "hull": 25,
  196. "edges": [ 6, 8, 12, 14, 14, 16, 16, 18, 42, 44, 42, 40, 36, 34, 34, 32, 32, 30, 30, 28, 28, 26, 26, 24, 22, 24, 18, 20, 22, 20, 52, 54, 56, 58, 60, 50, 40, 60, 60, 48, 44, 62, 62, 60, 42, 62, 44, 46, 46, 48, 62, 46, 36, 38, 38, 40, 38, 50, 2, 0, 0, 48, 50, 0, 50, 64, 36, 64, 64, 2, 52, 66, 66, 64, 34, 66, 2, 4, 4, 6, 66, 4, 32, 52, 52, 6, 30, 54, 54, 8, 54, 68, 68, 56, 28, 68, 8, 10, 10, 12, 68, 10, 26, 56, 56, 12, 24, 58, 58, 14, 20, 70, 70, 58, 22, 70, 70, 16 ],
  197. "width": 42,
  198. "height": 44
  199. }
  200. },
  201. "toufa4": {
  202. "toufa4": {
  203. "type": "mesh",
  204. "uvs": [ 0.64117, 0.05838, 0.81258, 0.09754, 0.9099, 0.29964, 1, 0.56911, 1, 0.81978, 0.92538, 1, 0.85018, 1, 0.76613, 0.90594, 0.65665, 0.60984, 0.56154, 0.44378, 0.4598, 0.39834, 0.30609, 0.61768, 0.1391, 0.76024, 0.16232, 0.92474, 0.1203, 0.96391, 0, 0.71638, 0, 0.56598, 0.10371, 0.21661, 0.22314, 0.06778, 0.24747, 0.05054, 0.36801, 0, 0.5339, 0 ],
  205. "triangles": [ 10, 20, 21, 10, 21, 0, 19, 20, 10, 18, 19, 10, 17, 18, 10, 9, 10, 0, 9, 0, 1, 9, 1, 2, 11, 16, 17, 8, 9, 2, 3, 8, 2, 10, 11, 17, 12, 15, 16, 11, 12, 16, 8, 3, 4, 7, 8, 4, 14, 15, 12, 14, 12, 13, 5, 6, 7, 4, 5, 7 ],
  206. "vertices": [ 77.62, -15.35, 75.54, -29.96, 63.56, -38.44, 47.53, -46.39, 32.49, -46.66, 21.57, -40.51, 21.45, -34.12, 26.97, -26.87, 44.57, -17.25, 54.38, -8.99, 56.95, -0.3, 43.56, 12.53, 34.76, 26.57, 24.92, 24.42, 22.51, 27.95, 37.18, 38.44, 46.2, 38.6, 67.32, 30.16, 76.43, 20.17, 77.5, 18.12, 80.71, 7.93, 80.96, -6.17 ],
  207. "hull": 22,
  208. "edges": [ 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, 42, 30, 32, 32, 34, 34, 36, 40, 42, 38, 40, 36, 38 ],
  209. "width": 85,
  210. "height": 60
  211. }
  212. },
  213. "toufa5": {
  214. "toufa5": {
  215. "type": "mesh",
  216. "uvs": [ 1, 0.72991, 1, 1, 0.62733, 1, 0.57829, 0.89911, 0.30855, 0.76046, 0.30855, 0.54426, 0, 0.37271, 0, 0, 0.41072, 0 ],
  217. "triangles": [ 6, 7, 8, 5, 6, 8, 5, 8, 0, 3, 4, 5, 0, 3, 5, 2, 3, 0, 2, 0, 1 ],
  218. "vertices": [ 5.45, 10.87, -5.35, 10.68, -5.5, 19.25, -1.49, 20.45, 3.95, 26.75, 12.59, 26.9, 19.33, 34.12, 34.23, 34.39, 34.4, 24.94 ],
  219. "hull": 9,
  220. "edges": [ 12, 14, 12, 10, 10, 8, 8, 6, 2, 4, 6, 4, 14, 16, 2, 0, 16, 0 ],
  221. "width": 23,
  222. "height": 40
  223. }
  224. },
  225. "toufa6": {
  226. "toufa6": {
  227. "type": "mesh",
  228. "uvs": [ 1, 0.42105, 0.48033, 1, 0, 1, 0, 0.68216, 0.50122, 0, 1, 0 ],
  229. "triangles": [ 4, 5, 0, 1, 3, 4, 1, 2, 3, 4, 0, 1 ],
  230. "vertices": [ 12.17, -39.02, -3.71, -25.27, -3.94, -12.3, 4.64, -12.15, 23.3, -25.35, 23.54, -38.82 ],
  231. "hull": 6,
  232. "edges": [ 2, 4, 0, 10, 2, 0, 8, 10, 4, 6, 8, 6 ],
  233. "width": 27,
  234. "height": 27
  235. }
  236. },
  237. "xiaba1": {
  238. "xiaba1": {
  239. "type": "mesh",
  240. "uvs": [ 0.86952, 0.19928, 0.92101, 0.39364, 0.97, 0.61065, 1, 0.7755, 1, 1, 0.78382, 1, 0.33882, 1, 0.32149, 0.92837, 0.28342, 0.77155, 0.23914, 0.58896, 0.17971, 0.34389, 0.09632, 0, 0.40382, 0, 0.80632, 0, 0.53882, 0.49888, 0.63065, 0.68672, 0.71045, 0.84994, 0.4803, 0.28265 ],
  241. "triangles": [ 5, 3, 4, 6, 16, 5, 5, 16, 3, 6, 7, 16, 7, 15, 16, 7, 8, 15, 3, 16, 2, 16, 15, 2, 8, 14, 15, 2, 15, 1, 8, 9, 14, 15, 14, 1, 9, 17, 14, 9, 10, 17, 14, 0, 1, 14, 17, 0, 10, 12, 17, 10, 11, 12, 17, 13, 0, 17, 12, 13 ],
  242. "vertices": [ 3, 32, 1.74, 15.33, 0.70005, 33, -3.42, 16.13, 0.2343, 34, -9.6, 16.29, 0.06565, 3, 32, 8.63, 15.09, 0.33507, 33, 3.34, 14.74, 0.37997, 34, -2.87, 14.8, 0.28496, 3, 32, 16.22, 14.53, 0.05077, 33, 10.72, 12.91, 0.23577, 34, 4.48, 12.84, 0.71346, 3, 32, 21.9, 13.84, 0.00192, 33, 16.2, 11.28, 0.06924, 34, 9.94, 11.11, 0.92883, 2, 33, 22.94, 7.69, 2.8E-4, 34, 16.61, 7.41, 0.99972, 1, 34, 12.62, 0.23, 1, 3, 32, 21.19, -12.41, 0.05016, 33, 11.12, -14.48, 0.13862, 34, 4.41, -14.56, 0.81122, 3, 32, 18.67, -12.27, 0.0758, 33, 8.66, -13.91, 0.16557, 34, 1.96, -13.95, 0.75863, 3, 32, 13.16, -11.95, 0.279, 33, 3.27, -12.68, 0.26874, 34, -3.41, -12.62, 0.45226, 3, 32, 6.74, -11.59, 0.71404, 33, -3, -11.24, 0.17322, 34, -9.65, -11.08, 0.11275, 3, 32, -1.88, -11.09, 0.99259, 33, -11.41, -9.32, 0.00622, 34, -18.03, -9.01, 0.00118, 1, 32, -13.98, -10.4, 1, 2, 32, -10.28, 0.68, 0.99973, 33, -17.72, 3.7, 2.7E-4, 3, 32, -5.44, 15.19, 0.87829, 33, -10.52, 17.2, 0.11616, 34, -16.69, 17.49, 0.00555, 2, 32, 7.43, 0.18, 0.89408, 33, -0.34, 0.25, 0.10592, 2, 33, 6.94, 0.32, 0.06026, 34, 0.48, 0.31, 0.93974, 2, 33, 13.26, 0.38, 3.4E-4, 34, 6.81, 0.27, 0.99966, 2, 32, -0.24, 0.4, 0.9992, 33, -7.87, 1.74, 8.0E-4 ],
  243. "hull": 14,
  244. "edges": [ 22, 24, 24, 26, 8, 10, 10, 12, 30, 28, 16, 30, 30, 4, 12, 14, 14, 16, 10, 32, 32, 30, 14, 32, 4, 6, 6, 8, 32, 6, 16, 18, 18, 28, 4, 2, 28, 2, 18, 20, 20, 22, 24, 34, 34, 28, 20, 34, 2, 0, 0, 26, 34, 0 ],
  245. "width": 38,
  246. "height": 34
  247. }
  248. },
  249. "xiaba2": {
  250. "xiaba2": {
  251. "type": "mesh",
  252. "uvs": [ 0.59716, 0.16614, 0.5962, 0.29478, 0.59542, 0.39836, 0.59454, 0.51552, 0.59387, 0.60492, 0.59291, 0.73361, 0.59161, 0.90669, 0.59091, 1, 0.22341, 1, 0, 1, 0, 0.88447, 0.0346, 0.73762, 0.06633, 0.60298, 0.09196, 0.49419, 0.11481, 0.39724, 0.13772, 0.3, 0.17123, 0.1578, 0.20841, 0, 0.36591, 0, 0.59841, 0, 0.23867, 0.8929, 0.26214, 0.72822, 0.29401, 0.50458, 0.28009, 0.60224, 0.32345, 0.29797, 0.3092, 0.39799, 0.34212, 0.16692 ],
  253. "triangles": [ 8, 20, 7, 7, 20, 6, 20, 8, 10, 8, 9, 10, 20, 21, 6, 10, 11, 20, 20, 11, 21, 6, 21, 5, 11, 12, 21, 21, 23, 5, 5, 23, 4, 21, 12, 23, 23, 22, 4, 12, 13, 23, 23, 13, 22, 4, 22, 3, 22, 25, 3, 3, 25, 2, 13, 14, 22, 22, 14, 25, 25, 24, 2, 2, 24, 1, 14, 15, 25, 25, 15, 24, 15, 16, 24, 24, 26, 1, 24, 16, 26, 1, 26, 0, 16, 17, 26, 26, 18, 0, 26, 17, 18, 0, 18, 19 ],
  254. "vertices": [ 2, 35, -6.27, 9.56, 0.98568, 36, -13.26, 10, 0.01432, 2, 35, -1.94, 10.21, 0.91328, 36, -8.92, 10.5, 0.08672, 3, 35, 1.54, 10.73, 0.77218, 36, -5.42, 10.91, 0.22742, 37, -13.91, 9.83, 4.0E-4, 3, 35, 5.48, 11.32, 0.51305, 36, -1.46, 11.37, 0.46711, 37, -10, 10.61, 0.01983, 3, 35, 8.49, 11.77, 0.30029, 36, 1.56, 11.72, 0.6196, 37, -7.02, 11.2, 0.08011, 3, 35, 12.81, 12.41, 0.09254, 36, 5.9, 12.23, 0.62888, 37, -2.72, 12.05, 0.27857, 3, 35, 18.64, 13.28, 0.00494, 36, 11.75, 12.91, 0.40821, 37, 3.05, 13.19, 0.58685, 2, 36, 14.9, 13.28, 0.35686, 37, 6.16, 13.81, 0.64314, 2, 36, 16.63, -0.58, 4.7E-4, 37, 8.99, 0.13, 0.99953, 1, 37, 10.71, -8.18, 1, 2, 36, 13.79, -9.49, 0.03213, 37, 6.86, -8.97, 0.96787, 3, 35, 16.26, -8.52, 8.5E-4, 36, 8.67, -8.81, 0.28107, 37, 1.71, -8.7, 0.71808, 3, 35, 11.55, -8.05, 0.08056, 36, 3.98, -8.18, 0.63615, 37, -3.02, -8.45, 0.28329, 3, 35, 7.74, -7.66, 0.38944, 36, 0.19, -7.67, 0.54352, 37, -6.84, -8.24, 0.06704, 3, 35, 4.35, -7.32, 0.77216, 36, -3.19, -7.22, 0.22033, 37, -10.24, -8.06, 0.00752, 2, 35, 0.95, -6.97, 0.96249, 36, -6.58, -6.76, 0.03751, 1, 35, -4.02, -6.47, 1, 1, 35, -9.54, -5.91, 1, 1, 35, -10.48, 0, 1, 1, 35, -11.86, 8.73, 1, 1, 37, 5.31, -0.03, 1, 2, 36, 7.28, -0.27, 0.89062, 37, -0.36, -0.3, 0.10938, 3, 35, 6.89, -0.02, 0.94573, 36, -0.42, -0.01, 0.05425, 37, -8.05, -0.65, 2.0E-5, 2, 36, 2.95, -0.12, 0.99934, 37, -4.69, -0.5, 6.6E-4, 1, 35, -0.22, -0.01, 1, 1, 35, 3.22, -0.02, 1, 1, 35, -4.73, -0.01, 1 ],
  255. "hull": 20,
  256. "edges": [ 18, 20, 34, 36, 36, 38, 14, 16, 16, 18, 16, 40, 20, 40, 14, 12, 40, 12, 20, 22, 42, 40, 22, 42, 12, 10, 42, 10, 26, 44, 44, 6, 22, 24, 24, 26, 42, 46, 46, 44, 24, 46, 6, 8, 8, 10, 46, 8, 30, 48, 48, 2, 26, 28, 28, 30, 44, 50, 50, 48, 28, 50, 2, 4, 4, 6, 50, 4, 30, 32, 32, 34, 36, 52, 52, 48, 32, 52, 2, 0, 0, 38, 52, 0 ],
  257. "width": 38,
  258. "height": 34
  259. }
  260. },
  261. "yanjingzhouwen": {
  262. "yanjingzhouwen": { "x": 3.32, "y": -0.26, "rotation": -91.55, "width": 14, "height": 11 }
  263. },
  264. "yaodaichuixian": {
  265. "yaodaichuixian": {
  266. "type": "mesh",
  267. "uvs": [ 0.6361, 0.17449, 0.72476, 0.3426, 0.8031, 0.49113, 0.91505, 0.70339, 1, 0.86447, 1, 1, 0.76406, 1, 0.33094, 1, 0.28113, 0.90762, 0.19683, 0.75126, 0.08014, 0.53484, 0, 0.38621, 0, 0.2236, 0, 0, 0.22095, 0, 0.54407, 0, 0.70292, 0.88743, 0.61261, 0.72114, 0.49911, 0.51216, 0.42109, 0.36852, 0.33054, 0.20179 ],
  268. "triangles": [ 10, 19, 18, 17, 18, 2, 9, 10, 18, 9, 18, 17, 17, 2, 3, 16, 17, 3, 16, 3, 4, 8, 9, 17, 8, 17, 16, 7, 8, 16, 6, 16, 4, 7, 16, 6, 6, 4, 5, 19, 0, 1, 11, 20, 19, 18, 19, 1, 18, 1, 2, 10, 11, 19, 20, 14, 15, 20, 15, 0, 12, 13, 14, 12, 14, 20, 19, 20, 0, 11, 12, 20 ],
  269. "vertices": [ 2, 45, 3.38, 2.58, 0.98529, 46, -2.62, 2.68, 0.01471, 3, 45, 7.3, 2.81, 0.16668, 46, 1.31, 2.76, 0.82798, 47, -3.39, 2.96, 0.00534, 2, 46, 4.78, 2.83, 0.39451, 47, 0.08, 2.85, 0.60549, 2, 48, 0.56, 2.65, 0.66634, 47, 5.04, 2.7, 0.33366, 1, 48, 4.29, 2.12, 1, 1, 48, 7.25, 1.14, 1, 1, 48, 6.65, -0.65, 1, 1, 48, 5.56, -3.94, 1, 2, 48, 3.42, -3.65, 0.99498, 47, 8.56, -3.25, 0.00502, 2, 48, -0.21, -3.15, 0.49939, 47, 4.9, -3.15, 0.50061, 2, 46, 4.85, -3.04, 0.24772, 47, -0.16, -3.01, 0.75228, 3, 45, 7.58, -3.07, 0.16009, 46, 1.37, -3.12, 0.76119, 47, -3.64, -2.92, 0.07872, 2, 45, 3.87, -2.61, 0.97168, 46, -2.32, -2.53, 0.02832, 1, 45, -1.24, -1.97, 1, 1, 45, -1.02, -0.22, 1, 1, 45, -0.7, 2.35, 1, 1, 48, 4.04, -0.3, 1, 2, 48, 0.18, 0.23, 0.84522, 47, 4.93, 0.24, 0.15478, 2, 46, 4.87, 0.35, 0.24965, 47, 0.04, 0.37, 0.75035, 2, 45, 7.59, 0.32, 0.00185, 46, 1.51, 0.27, 0.99815, 1, 45, 3.7, 0.08, 1 ],
  270. "hull": 16,
  271. "edges": [ 10, 8, 26, 28, 28, 30, 10, 12, 12, 14, 14, 16, 12, 32, 16, 32, 32, 8, 16, 18, 34, 32, 18, 34, 8, 6, 34, 6, 18, 20, 20, 22, 36, 34, 20, 36, 6, 4, 36, 4, 38, 36, 22, 38, 4, 2, 38, 2, 22, 24, 24, 26, 28, 40, 40, 38, 24, 40, 2, 0, 0, 30, 40, 0 ],
  272. "width": 8,
  273. "height": 23
  274. }
  275. },
  276. "youshou": {
  277. "youshou": {
  278. "type": "mesh",
  279. "uvs": [ 0.67735, 0.29963, 0.74458, 0.33937, 0.76687, 0.3745, 0.89545, 0.5842, 0.9349, 0.63235, 0.99193, 0.69422, 1, 1, 0.63234, 0.98396, 0.55495, 0.8621, 0.50218, 0.81488, 0.44127, 0.77009, 0.23823, 0.59495, 0.19999, 0.56196, 0.17203, 0.52721, 0, 0.31335, 0, 0, 0.17048, 0, 0.43745, 0.44679, 0.71069, 0.72305, 0.66636, 0.67777, 0.76001, 0.77042, 0.40281, 0.41141, 0.49034, 0.50016 ],
  280. "triangles": [ 7, 20, 6, 20, 5, 6, 7, 8, 20, 8, 18, 20, 8, 9, 18, 20, 4, 5, 20, 18, 4, 18, 3, 4, 18, 19, 3, 9, 19, 18, 9, 10, 19, 10, 22, 19, 10, 11, 22, 19, 2, 3, 19, 22, 2, 11, 17, 22, 11, 12, 17, 22, 1, 2, 22, 17, 1, 17, 0, 1, 12, 21, 17, 12, 13, 21, 13, 14, 21, 17, 21, 0, 0, 21, 16, 16, 21, 15, 21, 14, 15 ],
  281. "vertices": [ 3, 26, 17.67, 9.54, 0.65249, 27, -2.08, 9.7, 0.33631, 28, -17.68, 6.48, 0.01121, 3, 26, 20.23, 10.4, 0.47193, 27, 0.53, 10.38, 0.49709, 28, -15.23, 7.61, 0.03098, 3, 26, 21.99, 10.2, 0.36231, 27, 2.28, 10.07, 0.58429, 28, -13.46, 7.61, 0.0534, 3, 26, 32.45, 8.91, 0.0028, 27, 12.63, 8.08, 0.28111, 28, -2.92, 7.48, 0.71609, 2, 27, 15.15, 7.87, 0.07821, 28, -0.4, 7.72, 0.92179, 2, 27, 18.5, 7.75, 0.00105, 28, 2.91, 8.2, 0.99895, 1, 28, 16.38, 3.17, 1, 2, 27, 24.63, -8.27, 0.01541, 28, 11.78, -6.48, 0.98459, 2, 27, 18.58, -7.17, 0.27972, 28, 5.63, -6.48, 0.72028, 2, 27, 15.88, -7.32, 0.62124, 28, 3.01, -7.09, 0.37876, 2, 27, 13.16, -7.72, 0.89249, 28, 0.4, -7.97, 0.10751, 2, 26, 24.02, -8.19, 0.23656, 27, 3.07, -8.42, 0.76344, 2, 26, 22.13, -8.45, 0.40185, 27, 1.17, -8.55, 0.59815, 2, 26, 20.31, -8.41, 0.57875, 27, -0.65, -8.38, 0.42125, 1, 26, 9.09, -8.14, 1, 1, 26, -3.94, -1.28, 1, 1, 26, -1.64, 3.09, 1, 3, 26, 20.55, 0.16, 0.34062, 27, 0.17, 0.15, 0.65931, 28, -13.78, -2.53, 7.0E-5, 1, 28, 1.2, 0.11, 1, 2, 27, 12.89, 0.12, 0.96409, 28, -1.25, -0.31, 0.03591, 1, 28, 3.79, 0.63, 1, 3, 26, 18.61, 0.05, 0.99969, 27, -1.78, 0.17, 3.0E-4, 28, -15.7, -2.85, 0, 3, 26, 23.49, 0.35, 0.0012, 27, 3.11, 0.14, 0.99848, 28, -10.89, -2.01, 3.2E-4 ],
  282. "hull": 17,
  283. "edges": [ 30, 32, 28, 30, 12, 14, 18, 36, 6, 8, 36, 8, 38, 36, 6, 38, 18, 20, 38, 20, 14, 16, 16, 18, 12, 40, 40, 36, 16, 40, 8, 10, 10, 12, 40, 10, 24, 34, 34, 2, 24, 26, 26, 28, 30, 42, 42, 34, 26, 42, 2, 0, 0, 32, 42, 0, 20, 22, 22, 24, 34, 44, 44, 38, 22, 44, 2, 4, 4, 6, 44, 4 ],
  284. "width": 29,
  285. "height": 47
  286. }
  287. },
  288. "youtui": {
  289. "youtui": {
  290. "type": "mesh",
  291. "uvs": [ 0.94478, 0.46695, 0.95397, 0.49647, 0.96457, 0.53052, 1, 0.64435, 1, 0.85372, 1, 0.8947, 1, 0.92058, 1, 1, 0.1929, 1, 0.18409, 0.96051, 0.17463, 0.91817, 0.44867, 0.88837, 0.43873, 0.87075, 0.42491, 0.84625, 0.26665, 0.5657, 0.24747, 0.5317, 0.23189, 0.50407, 0, 0.09298, 0.45859, 0.03964, 0.79944, 0, 0.73001, 0.90327, 0.72329, 0.88188, 0.71383, 0.85177, 0.60788, 0.51466, 0.61889, 0.5497, 0.59847, 0.48472 ],
  292. "triangles": [ 8, 9, 20, 9, 11, 20, 9, 10, 11, 8, 20, 7, 20, 6, 7, 20, 5, 6, 11, 21, 20, 20, 21, 5, 21, 4, 5, 11, 12, 21, 12, 22, 21, 21, 22, 4, 12, 13, 22, 22, 3, 4, 13, 24, 22, 3, 24, 2, 3, 22, 24, 13, 14, 24, 14, 23, 24, 14, 15, 23, 24, 1, 2, 24, 23, 1, 23, 0, 1, 15, 25, 23, 15, 16, 25, 23, 25, 0, 16, 18, 25, 16, 17, 18, 25, 19, 0, 25, 18, 19 ],
  293. "vertices": [ 2, 38, 17.41, 8.52, 0.61331, 39, -1.39, 8.44, 0.38669, 2, 38, 18.93, 8.49, 0.45585, 39, 0.13, 8.53, 0.54415, 2, 38, 20.69, 8.45, 0.28392, 39, 1.89, 8.62, 0.71608, 2, 38, 26.57, 8.33, 0.01618, 39, 7.76, 8.94, 0.98382, 2, 39, 18.38, 7.85, 0.99107, 40, -8.03, -1.21, 0.00893, 2, 39, 20.46, 7.64, 0.94538, 40, -7.59, 0.83, 0.05462, 2, 39, 21.77, 7.5, 0.89404, 40, -7.32, 2.12, 0.10596, 2, 39, 25.8, 7.09, 0.76905, 40, -6.48, 6.08, 0.23095, 1, 40, 14.05, 1.74, 1, 1, 40, 13.86, -0.28, 1, 1, 40, 13.65, -2.44, 1, 2, 39, 18.67, -6.59, 0.17365, 40, 6.36, -2.45, 0.82635, 2, 39, 17.75, -6.75, 0.35655, 40, 6.43, -3.38, 0.64345, 2, 39, 16.47, -6.98, 0.55001, 40, 6.52, -4.68, 0.44999, 2, 38, 19.23, -9.72, 0.36564, 39, 1.82, -9.61, 0.63436, 2, 38, 17.43, -9.91, 0.51974, 39, 0.04, -9.93, 0.48026, 2, 38, 15.97, -10.05, 0.63969, 39, -1.4, -10.19, 0.36031, 1, 38, -5.73, -12.26, 1, 1, 38, -6.28, -0.04, 1, 1, 38, -6.7, 9.04, 1, 2, 39, 20.18, 0.61, 0.84574, 40, -0.64, -0.19, 0.15426, 1, 39, 19.07, 0.55, 1, 1, 39, 17.52, 0.46, 1, 2, 38, 18.25, -0.53, 0.39224, 39, 0.14, -0.52, 0.60776, 2, 38, 20.06, -0.57, 0.01462, 39, 1.94, -0.42, 0.98538, 1, 38, 16.7, -0.5, 1 ],
  294. "hull": 20,
  295. "edges": [ 22, 20, 14, 16, 34, 36, 36, 38, 16, 18, 18, 20, 40, 18, 22, 40, 12, 14, 40, 12, 22, 24, 42, 40, 24, 42, 10, 12, 42, 10, 24, 26, 44, 42, 26, 44, 6, 8, 8, 10, 44, 8, 30, 46, 46, 2, 26, 28, 28, 30, 44, 48, 48, 46, 28, 48, 2, 4, 4, 6, 48, 4, 30, 32, 32, 34, 36, 50, 50, 46, 32, 50, 2, 0, 0, 38, 50, 0 ],
  296. "width": 26,
  297. "height": 51
  298. }
  299. },
  300. "youyan": {
  301. "youyan": { "x": 3.36, "y": -0.46, "rotation": -91.55, "width": 21, "height": 12 }
  302. },
  303. "zuiba": {
  304. "zuiba": { "x": -0.78, "y": -1.19, "rotation": -88.98, "width": 10, "height": 4 }
  305. },
  306. "zuiba2": {
  307. "zuiba2": { "x": -2.7, "y": -3.01, "rotation": -88.98, "width": 27, "height": 21 }
  308. },
  309. "zuoshou": {
  310. "zuoshou": {
  311. "type": "mesh",
  312. "uvs": [ 1, 0.13008, 0.80978, 0.26894, 0.78113, 0.28986, 0.75662, 0.30775, 0.55987, 0.45138, 0.54234, 0.46418, 0.52303, 0.47828, 0.35921, 0.56059, 0.02887, 0.55718, 0, 0.39979, 0.05603, 0.36816, 0.0834, 0.35271, 0.10819, 0.33871, 0.33672, 0.20968, 0.36097, 0.19599, 0.39047, 0.17933, 0.70809, 0, 0.91853, 0, 1, 0, 0.52075, 0.25161, 0.54556, 0.23592, 0.56903, 0.22108, 0.28103, 0.40325, 0.2607, 0.4161, 0.30311, 0.38928 ],
  313. "triangles": [ 8, 23, 7, 7, 23, 6, 8, 10, 23, 8, 9, 10, 23, 22, 6, 10, 11, 23, 23, 11, 22, 6, 22, 5, 22, 24, 5, 5, 24, 4, 24, 19, 4, 11, 12, 22, 22, 12, 24, 24, 13, 19, 24, 12, 13, 4, 19, 3, 19, 20, 3, 3, 20, 2, 20, 21, 2, 2, 21, 1, 1, 17, 0, 1, 21, 17, 13, 14, 19, 19, 14, 20, 14, 15, 20, 20, 15, 21, 21, 16, 17, 21, 15, 16, 17, 18, 0 ],
  314. "vertices": [ 1, 29, 3.19, 8.58, 1, 2, 29, 16.35, 8.8, 0.99339, 30, -3.96, 8.83, 0.00661, 2, 29, 18.33, 8.83, 0.95507, 30, -1.98, 8.93, 0.04493, 2, 29, 20.02, 8.86, 0.87866, 30, -0.29, 9.02, 0.12134, 3, 29, 33.63, 9.09, 0.0458, 30, 13.3, 9.74, 0.48626, 31, -1.05, 9.76, 0.46794, 3, 29, 34.84, 9.11, 0.02887, 30, 14.51, 9.8, 0.39405, 31, 0.16, 9.8, 0.57708, 3, 29, 36.18, 9.13, 0.01688, 30, 15.85, 9.87, 0.29735, 31, 1.49, 9.84, 0.68577, 2, 30, 24.47, 8.88, 0.00161, 31, 10.09, 8.66, 0.99839, 1, 31, 15.02, -0.69, 1, 2, 30, 18.69, -7.89, 0.01783, 31, 3.95, -7.98, 0.98217, 2, 30, 15.49, -7.7, 0.14667, 31, 0.76, -7.72, 0.85333, 2, 30, 13.92, -7.6, 0.2839, 31, -0.8, -7.59, 0.7161, 2, 30, 12.51, -7.52, 0.43516, 31, -2.22, -7.47, 0.56484, 3, 29, 19.2, -6.88, 0.1997, 30, -0.54, -6.74, 0.79986, 31, -15.25, -6.41, 4.4E-4, 2, 29, 17.82, -6.75, 0.35851, 30, -1.93, -6.65, 0.64149, 2, 29, 16.14, -6.59, 0.56915, 30, -3.61, -6.55, 0.43085, 1, 29, -1.95, -4.85, 1, 1, 29, -5.16, 1.07, 1, 1, 29, -6.41, 3.36, 1, 2, 29, 19.48, -0.02, 0.97392, 30, -0.51, 0.12, 0.02608, 1, 29, 17.95, 0.04, 1, 1, 29, 16.49, 0.11, 1, 1, 30, 14.36, 0, 1, 1, 31, 1.06, -0.03, 1, 2, 29, 32.97, -0.62, 0, 30, 12.99, 0.01, 1 ],
  315. "hull": 19,
  316. "edges": [ 0, 36, 16, 18, 14, 16, 32, 34, 34, 36, 26, 38, 38, 6, 26, 28, 40, 38, 28, 40, 4, 6, 40, 4, 0, 2, 2, 4, 34, 42, 42, 40, 2, 42, 28, 30, 30, 32, 42, 30, 22, 44, 44, 10, 18, 20, 20, 22, 16, 46, 46, 44, 20, 46, 10, 12, 12, 14, 46, 12, 6, 8, 8, 10, 38, 48, 48, 44, 8, 48, 22, 24, 24, 26, 48, 24 ],
  317. "width": 32,
  318. "height": 84
  319. }
  320. },
  321. "zuotui": {
  322. "zuotui": {
  323. "type": "mesh",
  324. "uvs": [ 1, 0.2034, 0.91689, 0.53061, 0.9089, 0.56207, 0.90051, 0.59513, 0.83279, 0.86175, 0.82692, 0.88484, 0.81996, 0.91224, 0.79767, 1, 0, 1, 0, 0.97138, 0, 0.91504, 0.15014, 0.87716, 0.15461, 0.85075, 0.15806, 0.83038, 0.20346, 0.56246, 0.20777, 0.53701, 0.21391, 0.50077, 0.29875, 0, 0.68542, 0, 1, 0, 0.53773, 0.88667, 0.5411, 0.86644, 0.54547, 0.84019, 0.59392, 0.54934, 0.58892, 0.57931, 0.5997, 0.51461 ],
  325. "triangles": [ 8, 20, 7, 7, 20, 6, 8, 9, 20, 9, 11, 20, 9, 10, 11, 6, 21, 5, 11, 12, 20, 5, 22, 4, 20, 21, 6, 20, 12, 21, 21, 22, 5, 12, 13, 21, 21, 13, 22, 22, 24, 4, 4, 24, 3, 13, 14, 22, 22, 14, 24, 24, 23, 3, 14, 15, 24, 24, 15, 23, 15, 16, 23, 3, 23, 2, 23, 25, 2, 2, 25, 1, 23, 16, 25, 1, 25, 0, 16, 17, 25, 25, 18, 0, 25, 17, 18, 18, 19, 0 ],
  326. "vertices": [ 1, 41, 5.08, 9.39, 1, 3, 41, 21.9, 8.91, 0.96091, 42, 0.38, 9.03, 0.03895, 43, -14.41, -15.93, 1.4E-4, 3, 41, 23.52, 8.87, 0.88489, 42, 1.99, 8.88, 0.11369, 43, -13.79, -14.44, 0.00142, 3, 41, 25.22, 8.82, 0.75626, 42, 3.69, 8.72, 0.23792, 43, -13.13, -12.87, 0.00582, 3, 41, 38.92, 8.43, 0.00922, 42, 17.34, 7.47, 0.23537, 43, -7.86, -0.22, 0.75541, 3, 41, 40.11, 8.4, 0.00383, 42, 18.52, 7.37, 0.1173, 43, -7.4, 0.88, 0.87887, 3, 41, 41.52, 8.36, 8.3E-4, 42, 19.93, 7.24, 0.02245, 43, -6.86, 2.18, 0.97672, 2, 42, 24.42, 6.83, 0.06434, 43, -5.12, 6.35, 0.93566, 1, 43, 14.89, 0.89, 1, 1, 43, 14.5, -0.52, 1, 2, 42, 20.87, -14.06, 9.6E-4, 43, 13.75, -3.29, 0.99904, 2, 42, 18.79, -10.23, 0.1083, 43, 9.47, -4.13, 0.8917, 2, 42, 17.44, -10.17, 0.237, 43, 9.01, -5.4, 0.763, 2, 42, 16.4, -10.12, 0.33859, 43, 8.65, -6.38, 0.66141, 3, 41, 25.38, -9.38, 0.02197, 42, 2.7, -9.45, 0.97084, 43, 3.91, -19.25, 0.00719, 3, 41, 24.08, -9.4, 0.05791, 42, 1.4, -9.39, 0.93939, 43, 3.46, -20.47, 0.00269, 3, 41, 22.22, -9.42, 0.15208, 42, -0.45, -9.3, 0.84765, 43, 2.82, -22.21, 2.7E-4, 1, 41, -3.41, -9.79, 1, 1, 41, -4.42, 0.21, 1, 1, 41, -5.24, 8.35, 1, 1, 42, 18.9, -0.14, 1, 2, 42, 17.86, -0.1, 0.99619, 43, -0.48, -1.98, 0.00381, 1, 42, 16.52, -0.03, 1, 2, 41, 23.69, 0.66, 0.54168, 42, 1.65, 0.67, 0.45832, 2, 41, 25.23, 0.68, 0.12486, 42, 3.18, 0.6, 0.87514, 1, 41, 21.92, 0.63, 1 ],
  327. "hull": 20,
  328. "edges": [ 0, 38, 14, 16, 22, 20, 34, 36, 36, 38, 16, 18, 18, 20, 40, 18, 22, 40, 12, 14, 40, 12, 22, 24, 42, 40, 24, 42, 10, 12, 42, 10, 24, 26, 44, 42, 26, 44, 8, 10, 44, 8, 30, 46, 46, 4, 26, 28, 28, 30, 44, 48, 48, 46, 28, 48, 4, 6, 6, 8, 48, 6, 30, 32, 32, 34, 36, 50, 50, 46, 32, 50, 0, 2, 2, 4, 50, 2 ],
  329. "width": 26,
  330. "height": 51
  331. }
  332. },
  333. "zuoyan": {
  334. "zuoyan": { "x": 3.38, "y": -0.85, "rotation": -90, "width": 20, "height": 12 }
  335. }
  336. }
  337. },
  338. "animations": {
  339. "stand1": {
  340. "slots": {
  341. "beizi": {
  342. "attachment": [
  343. { "time": 0, "name": null },
  344. { "time": 0.1667, "name": "beizi" }
  345. ]
  346. },
  347. "biyan": {
  348. "attachment": [
  349. { "time": 0.1, "name": "biyan" },
  350. { "time": 0.2333, "name": null },
  351. { "time": 1.7333, "name": "biyan" },
  352. { "time": 1.9333, "name": "biyan" },
  353. { "time": 2.0667, "name": null },
  354. { "time": 2.2667, "name": null },
  355. { "time": 2.6667, "name": "biyan" }
  356. ]
  357. },
  358. "hongjiu": {
  359. "attachment": [
  360. { "time": 0, "name": null },
  361. { "time": 0.1667, "name": "hongjiu" }
  362. ]
  363. },
  364. "teshuzuoshou1": {
  365. "attachment": [
  366. { "time": 0, "name": null },
  367. { "time": 0.1667, "name": "teshuzuoshou1" }
  368. ]
  369. },
  370. "teshuzuoshou2": {
  371. "attachment": [
  372. { "time": 0, "name": null },
  373. { "time": 0.1667, "name": "teshuzuoshou2" }
  374. ]
  375. },
  376. "teshuzuoshou3": {
  377. "attachment": [
  378. { "time": 0, "name": null },
  379. { "time": 0.1667, "name": "teshuzuoshou3" }
  380. ]
  381. },
  382. "teshuzuoshoushouzhi": {
  383. "attachment": [
  384. { "time": 0, "name": null },
  385. { "time": 0.1667, "name": "teshuzuoshoushouzhi" }
  386. ]
  387. },
  388. "youyan": {
  389. "attachment": [
  390. { "time": 0.1, "name": null },
  391. { "time": 0.2333, "name": "youyan" },
  392. { "time": 1.7333, "name": null },
  393. { "time": 2.0667, "name": "youyan" },
  394. { "time": 2.2667, "name": "youyan" },
  395. { "time": 2.6667, "name": null }
  396. ]
  397. },
  398. "zuiba": {
  399. "attachment": [
  400. { "time": 0.2333, "name": null },
  401. { "time": 3.2667, "name": "zuiba" },
  402. { "time": 3.3, "name": "zuiba" },
  403. { "time": 3.3667, "name": "zuiba" }
  404. ]
  405. },
  406. "zuiba2": {
  407. "attachment": [
  408. { "time": 0, "name": null },
  409. { "time": 0.2333, "name": "zuiba2" },
  410. { "time": 3.2667, "name": null },
  411. { "time": 3.3667, "name": null }
  412. ]
  413. },
  414. "zuoshou": {
  415. "attachment": [
  416. { "time": 0.1667, "name": null }
  417. ]
  418. },
  419. "zuoyan": {
  420. "attachment": [
  421. { "time": 0.1, "name": null },
  422. { "time": 0.2333, "name": "zuoyan" },
  423. { "time": 1.7333, "name": null },
  424. { "time": 2.0667, "name": "zuoyan" },
  425. { "time": 2.2667, "name": "zuoyan" },
  426. { "time": 2.6667, "name": null }
  427. ]
  428. }
  429. },
  430. "bones": {
  431. "root": {
  432. "scale": [
  433. { "time": 0, "x": 0.65, "y": 0.65 }
  434. ]
  435. },
  436. "bone": {
  437. "rotate": [
  438. { "time": 0, "angle": 0, "curve": "stepped" },
  439. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  440. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  441. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  442. { "time": 1, "angle": 0, "curve": "stepped" },
  443. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  444. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  445. { "time": 2.7, "angle": 0 }
  446. ],
  447. "translate": [
  448. { "time": 0, "x": 0, "y": 0 },
  449. { "time": 0.1667, "x": 0, "y": -0.71 },
  450. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  451. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  452. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  453. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  454. {
  455. "time": 2.4333,
  456. "x": 0,
  457. "y": 0,
  458. "curve": [ 0.25, 0, 0.75, 1 ]
  459. },
  460. { "time": 2.7, "x": 3.77, "y": 0 }
  461. ],
  462. "scale": [
  463. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  464. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  465. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  466. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  467. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  468. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  469. { "time": 2.7, "x": 1, "y": 1 }
  470. ]
  471. },
  472. "bone2": {
  473. "rotate": [
  474. { "time": 0, "angle": 0, "curve": "stepped" },
  475. { "time": 0.1667, "angle": 0 },
  476. { "time": 0.3333, "angle": -3.93, "curve": "stepped" },
  477. { "time": 0.6667, "angle": -3.93, "curve": "stepped" },
  478. { "time": 1, "angle": -3.93, "curve": "stepped" },
  479. { "time": 1.3667, "angle": -3.93, "curve": "stepped" },
  480. { "time": 2.4333, "angle": -3.93, "curve": "stepped" },
  481. { "time": 2.7, "angle": -3.93 }
  482. ],
  483. "translate": [
  484. { "time": 0, "x": 0, "y": 0 },
  485. { "time": 0.1667, "x": -0.01, "y": -0.8 },
  486. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  487. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  488. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  489. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  490. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  491. { "time": 2.7, "x": 0, "y": 0 }
  492. ],
  493. "scale": [
  494. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  495. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  496. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  497. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  498. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  499. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  500. { "time": 2.7, "x": 1, "y": 1 }
  501. ]
  502. },
  503. "bone3": {
  504. "rotate": [
  505. { "time": 0, "angle": 0, "curve": "stepped" },
  506. { "time": 0.1667, "angle": 0 },
  507. { "time": 0.3333, "angle": 0.22 },
  508. { "time": 0.6667, "angle": 3.49 },
  509. { "time": 1, "angle": 0.22 },
  510. { "time": 1.3667, "angle": 6.25 },
  511. { "time": 1.7, "angle": 5.89, "curve": "stepped" },
  512. {
  513. "time": 2.4333,
  514. "angle": 5.89,
  515. "curve": [ 0.25, 0, 0.75, 1 ]
  516. },
  517. { "time": 3.3667, "angle": -4.67 }
  518. ],
  519. "translate": [
  520. { "time": 0, "x": 0, "y": 0 },
  521. { "time": 0.1667, "x": -1.04, "y": 0.02 },
  522. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  523. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  524. { "time": 1, "x": 0, "y": 0 },
  525. { "time": 1.3667, "x": -0.02, "y": 0.43 },
  526. { "time": 1.7, "x": 0.37, "y": 1.15 },
  527. { "time": 2.4333, "x": 0, "y": 0 }
  528. ],
  529. "scale": [
  530. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  531. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  532. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  533. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  534. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  535. { "time": 2.4333, "x": 1, "y": 1 }
  536. ]
  537. },
  538. "bone4": {
  539. "rotate": [
  540. { "time": 0, "angle": 0, "curve": "stepped" },
  541. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  542. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  543. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  544. { "time": 1, "angle": 0, "curve": "stepped" },
  545. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  546. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  547. { "time": 2.7, "angle": 0 }
  548. ],
  549. "translate": [
  550. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  551. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  552. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  553. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  554. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  555. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  556. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  557. { "time": 2.7, "x": 0, "y": 0 }
  558. ],
  559. "scale": [
  560. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  561. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  562. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  563. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  564. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  565. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  566. { "time": 2.7, "x": 1, "y": 1 }
  567. ]
  568. },
  569. "bone5": {
  570. "rotate": [
  571. { "time": 0, "angle": 0, "curve": "stepped" },
  572. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  573. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  574. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  575. { "time": 1, "angle": 0, "curve": "stepped" },
  576. { "time": 1.3667, "angle": 0 },
  577. { "time": 1.7, "angle": 8.34, "curve": "stepped" },
  578. {
  579. "time": 2.4333,
  580. "angle": 8.34,
  581. "curve": [ 0.25, 0, 0.75, 1 ]
  582. },
  583. { "time": 2.7, "angle": 1.51 }
  584. ],
  585. "translate": [
  586. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  587. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  588. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  589. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  590. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  591. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  592. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  593. { "time": 2.7, "x": 0, "y": 0 }
  594. ],
  595. "scale": [
  596. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  597. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  598. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  599. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  600. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  601. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  602. { "time": 2.7, "x": 1, "y": 1 }
  603. ]
  604. },
  605. "bone6": {
  606. "rotate": [
  607. { "time": 0, "angle": 0, "curve": "stepped" },
  608. { "time": 0.1, "angle": 0, "curve": "stepped" },
  609. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  610. { "time": 0.4, "angle": 0, "curve": "stepped" },
  611. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  612. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  613. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  614. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  615. { "time": 2.5667, "angle": 0, "curve": "stepped" },
  616. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  617. { "time": 2.7, "angle": 0 }
  618. ],
  619. "translate": [
  620. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  621. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  622. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  623. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  624. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  625. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  626. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  627. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  628. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  629. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  630. { "time": 2.7, "x": 0, "y": 0 }
  631. ],
  632. "scale": [
  633. { "time": 0, "x": 1, "y": 1 },
  634. { "time": 0.1, "x": 0.327, "y": 1, "curve": "stepped" },
  635. { "time": 0.2333, "x": 0.327, "y": 1 },
  636. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  637. { "time": 1.6333, "x": 1, "y": 1 },
  638. { "time": 1.7333, "x": 0.327, "y": 1, "curve": "stepped" },
  639. { "time": 2.2667, "x": 0.327, "y": 1 },
  640. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  641. { "time": 2.5667, "x": 1, "y": 1 },
  642. { "time": 2.6667, "x": 0.327, "y": 1 },
  643. { "time": 2.7, "x": 1, "y": 1 }
  644. ]
  645. },
  646. "bone7": {
  647. "rotate": [
  648. { "time": 0, "angle": 0, "curve": "stepped" },
  649. { "time": 0.1, "angle": 0, "curve": "stepped" },
  650. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  651. { "time": 0.4, "angle": 0, "curve": "stepped" },
  652. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  653. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  654. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  655. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  656. { "time": 2.5667, "angle": 0, "curve": "stepped" },
  657. { "time": 2.6667, "angle": 0 }
  658. ],
  659. "translate": [
  660. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  661. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  662. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  663. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  664. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  665. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  666. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  667. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  668. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  669. { "time": 2.6667, "x": 0, "y": 0 }
  670. ],
  671. "scale": [
  672. { "time": 0, "x": 1, "y": 1 },
  673. { "time": 0.1, "x": 0.327, "y": 1, "curve": "stepped" },
  674. { "time": 0.2333, "x": 0.327, "y": 1 },
  675. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  676. { "time": 1.6333, "x": 1, "y": 1 },
  677. { "time": 1.7333, "x": 0.327, "y": 1, "curve": "stepped" },
  678. { "time": 2.2667, "x": 0.327, "y": 1 },
  679. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  680. { "time": 2.5667, "x": 1, "y": 1 },
  681. { "time": 2.6667, "x": 0.327, "y": 1 }
  682. ]
  683. },
  684. "bone8": {
  685. "rotate": [
  686. { "time": 0, "angle": 0, "curve": "stepped" },
  687. { "time": 0.1, "angle": 0, "curve": "stepped" },
  688. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  689. { "time": 0.4, "angle": 0, "curve": "stepped" },
  690. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  691. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  692. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  693. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  694. { "time": 2.5667, "angle": 0, "curve": "stepped" },
  695. { "time": 2.6667, "angle": 0 }
  696. ],
  697. "translate": [
  698. { "time": 0, "x": 0, "y": 0 },
  699. { "time": 0.1, "x": -0.91, "y": -0.04, "curve": "stepped" },
  700. { "time": 0.2333, "x": -0.91, "y": -0.04 },
  701. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  702. { "time": 1.6333, "x": 0, "y": 0 },
  703. { "time": 1.7333, "x": -0.91, "y": -0.04, "curve": "stepped" },
  704. { "time": 2.2667, "x": -0.91, "y": -0.04 },
  705. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  706. { "time": 2.5667, "x": 0, "y": 0 },
  707. { "time": 2.6667, "x": -0.91, "y": -0.04 },
  708. { "time": 3.3667, "x": -0.67, "y": -0.03 }
  709. ],
  710. "scale": [
  711. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  712. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  713. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  714. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  715. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  716. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  717. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  718. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  719. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  720. { "time": 2.6667, "x": 1, "y": 1 }
  721. ]
  722. },
  723. "bone9": {
  724. "rotate": [
  725. { "time": 0, "angle": 0, "curve": "stepped" },
  726. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  727. { "time": 0.4, "angle": 0, "curve": "stepped" },
  728. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  729. { "time": 2.7, "angle": 0 }
  730. ],
  731. "translate": [
  732. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  733. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  734. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  735. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  736. { "time": 2.7, "x": 0, "y": 0 }
  737. ],
  738. "scale": [
  739. { "time": 0, "x": 1, "y": 1 },
  740. { "time": 0.2333, "x": 0.2, "y": 1 },
  741. { "time": 0.4, "x": 0.5, "y": 1, "curve": "stepped" },
  742. { "time": 2.4333, "x": 0.5, "y": 1, "curve": "stepped" },
  743. { "time": 2.7, "x": 0.5, "y": 1 },
  744. { "time": 3.2333, "x": 0.056, "y": 1, "curve": "stepped" },
  745. { "time": 3.2667, "x": 0.5, "y": 2 },
  746. { "time": 3.3667, "x": 1, "y": 1 }
  747. ]
  748. },
  749. "bone10": {
  750. "rotate": [
  751. { "time": 0, "angle": 0, "curve": "stepped" },
  752. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  753. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  754. { "time": 1, "angle": 0, "curve": "stepped" },
  755. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  756. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  757. { "time": 2.7, "angle": 0 }
  758. ],
  759. "translate": [
  760. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  761. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  762. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  763. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  764. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  765. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  766. { "time": 2.7, "x": 0, "y": 0 }
  767. ],
  768. "scale": [
  769. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  770. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  771. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  772. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  773. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  774. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  775. { "time": 2.7, "x": 1, "y": 1 }
  776. ]
  777. },
  778. "bone11": {
  779. "rotate": [
  780. { "time": 0, "angle": 0 },
  781. {
  782. "time": 0.1667,
  783. "angle": -3.67,
  784. "curve": [ 0.25, 0, 0.75, 1 ]
  785. },
  786. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  787. { "time": 1, "angle": 0, "curve": "stepped" },
  788. { "time": 1.6333, "angle": 0 },
  789. {
  790. "time": 2.1333,
  791. "angle": -0.47,
  792. "curve": [ 0.25, 0, 0.75, 1 ]
  793. },
  794. { "time": 2.7, "angle": 0 },
  795. { "time": 3.3667, "angle": -2.16 }
  796. ],
  797. "translate": [
  798. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  799. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  800. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  801. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  802. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  803. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  804. { "time": 2.7, "x": 0, "y": 0 }
  805. ],
  806. "scale": [
  807. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  808. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  809. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  810. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  811. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  812. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  813. { "time": 2.7, "x": 1, "y": 1 }
  814. ]
  815. },
  816. "bone12": {
  817. "rotate": [
  818. { "time": 0, "angle": 0 },
  819. {
  820. "time": 0.1667,
  821. "angle": -2.98,
  822. "curve": [ 0.25, 0, 0.75, 1 ]
  823. },
  824. {
  825. "time": 0.6667,
  826. "angle": 0,
  827. "curve": [ 0.25, 0, 0.75, 1 ]
  828. },
  829. {
  830. "time": 1,
  831. "angle": -5.53,
  832. "curve": [ 0.25, 0, 0.75, 1 ]
  833. },
  834. { "time": 1.6333, "angle": 0 },
  835. {
  836. "time": 2.1333,
  837. "angle": 4.74,
  838. "curve": [ 0.25, 0, 0.75, 1 ]
  839. },
  840. { "time": 2.7, "angle": 0 },
  841. { "time": 3.3667, "angle": -2.15 }
  842. ],
  843. "translate": [
  844. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  845. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  846. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  847. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  848. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  849. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  850. { "time": 2.7, "x": 0, "y": 0 }
  851. ],
  852. "scale": [
  853. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  854. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  855. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  856. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  857. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  858. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  859. { "time": 2.7, "x": 1, "y": 1 }
  860. ]
  861. },
  862. "bone13": {
  863. "rotate": [
  864. { "time": 0, "angle": 0 },
  865. {
  866. "time": 0.1667,
  867. "angle": -2.98,
  868. "curve": [ 0.25, 0, 0.75, 1 ]
  869. },
  870. {
  871. "time": 0.6667,
  872. "angle": 0,
  873. "curve": [ 0.25, 0, 0.75, 1 ]
  874. },
  875. {
  876. "time": 1,
  877. "angle": 2.56,
  878. "curve": [ 0.25, 0, 0.75, 1 ]
  879. },
  880. { "time": 1.6333, "angle": 0 },
  881. {
  882. "time": 2.1333,
  883. "angle": 16.17,
  884. "curve": [ 0.25, 0, 0.75, 1 ]
  885. },
  886. { "time": 2.7, "angle": 0 },
  887. { "time": 3.3667, "angle": -6.41 }
  888. ],
  889. "translate": [
  890. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  891. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  892. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  893. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  894. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  895. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  896. { "time": 2.7, "x": 0, "y": 0 }
  897. ],
  898. "scale": [
  899. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  900. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  901. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  902. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  903. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  904. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  905. { "time": 2.7, "x": 1, "y": 1 }
  906. ]
  907. },
  908. "bone14": {
  909. "rotate": [
  910. { "time": 0, "angle": 0 },
  911. {
  912. "time": 0.1667,
  913. "angle": -2.98,
  914. "curve": [ 0.25, 0, 0.75, 1 ]
  915. },
  916. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  917. { "time": 1, "angle": 0, "curve": "stepped" },
  918. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  919. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  920. { "time": 2.7, "angle": 0 }
  921. ],
  922. "translate": [
  923. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  924. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  925. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  926. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  927. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  928. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  929. { "time": 2.7, "x": 0, "y": 0 }
  930. ],
  931. "scale": [
  932. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  933. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  934. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  935. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  936. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  937. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  938. { "time": 2.7, "x": 1, "y": 1 }
  939. ]
  940. },
  941. "bone15": {
  942. "rotate": [
  943. { "time": 0, "angle": 0 },
  944. {
  945. "time": 0.1667,
  946. "angle": -2.98,
  947. "curve": [ 0.25, 0, 0.75, 1 ]
  948. },
  949. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  950. { "time": 1, "angle": 0, "curve": "stepped" },
  951. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  952. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  953. { "time": 2.7, "angle": 0 }
  954. ],
  955. "translate": [
  956. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  957. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  958. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  959. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  960. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  961. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  962. { "time": 2.7, "x": 0, "y": 0 }
  963. ],
  964. "scale": [
  965. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  966. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  967. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  968. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  969. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  970. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  971. { "time": 2.7, "x": 1, "y": 1 }
  972. ]
  973. },
  974. "bone16": {
  975. "rotate": [
  976. { "time": 0, "angle": 0, "curve": "stepped" },
  977. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  978. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  979. { "time": 1, "angle": 0, "curve": "stepped" },
  980. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  981. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  982. { "time": 2.7, "angle": 0 }
  983. ],
  984. "translate": [
  985. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  986. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  987. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  988. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  989. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  990. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  991. { "time": 2.7, "x": 0, "y": 0 }
  992. ],
  993. "scale": [
  994. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  995. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  996. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  997. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  998. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  999. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  1000. { "time": 2.7, "x": 1, "y": 1 }
  1001. ]
  1002. },
  1003. "bone17": {
  1004. "rotate": [
  1005. { "time": 0, "angle": 0, "curve": "stepped" },
  1006. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1007. {
  1008. "time": 0.6667,
  1009. "angle": 0,
  1010. "curve": [ 0.25, 0, 0.75, 1 ]
  1011. },
  1012. {
  1013. "time": 1,
  1014. "angle": 6.12,
  1015. "curve": [ 0.25, 0, 0.75, 1 ]
  1016. },
  1017. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1018. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  1019. { "time": 2.7, "angle": 0 }
  1020. ],
  1021. "translate": [
  1022. { "time": 0, "x": 0, "y": 0 },
  1023. {
  1024. "time": 0.1667,
  1025. "x": 1.17,
  1026. "y": 0.16,
  1027. "curve": [ 0.25, 0, 0.75, 1 ]
  1028. },
  1029. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1030. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1031. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1032. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  1033. { "time": 2.7, "x": 0, "y": 0 }
  1034. ],
  1035. "scale": [
  1036. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1037. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1038. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1039. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1040. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1041. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  1042. { "time": 2.7, "x": 1, "y": 1 }
  1043. ]
  1044. },
  1045. "bone18": {
  1046. "rotate": [
  1047. { "time": 0, "angle": 0 },
  1048. {
  1049. "time": 0.1667,
  1050. "angle": -7.93,
  1051. "curve": [ 0.25, 0, 0.75, 1 ]
  1052. },
  1053. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1054. { "time": 1, "angle": 0, "curve": "stepped" },
  1055. { "time": 1.6333, "angle": 0 },
  1056. {
  1057. "time": 2.1333,
  1058. "angle": 10.05,
  1059. "curve": [ 0.25, 0, 0.75, 1 ]
  1060. },
  1061. { "time": 2.7, "angle": 0 }
  1062. ],
  1063. "translate": [
  1064. { "time": 0, "x": 0, "y": 0 },
  1065. {
  1066. "time": 0.1667,
  1067. "x": 0.62,
  1068. "y": -0.25,
  1069. "curve": [ 0.25, 0, 0.75, 1 ]
  1070. },
  1071. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1072. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1073. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1074. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  1075. { "time": 2.7, "x": 0, "y": 0 }
  1076. ],
  1077. "scale": [
  1078. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1079. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1080. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1081. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1082. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1083. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  1084. { "time": 2.7, "x": 1, "y": 1 }
  1085. ]
  1086. },
  1087. "bone19": {
  1088. "rotate": [
  1089. { "time": 0, "angle": 0 },
  1090. {
  1091. "time": 0.1667,
  1092. "angle": -7.93,
  1093. "curve": [ 0.25, 0, 0.75, 1 ]
  1094. },
  1095. {
  1096. "time": 0.6667,
  1097. "angle": 0,
  1098. "curve": [ 0.25, 0, 0.75, 1 ]
  1099. },
  1100. {
  1101. "time": 1,
  1102. "angle": -7.12,
  1103. "curve": [ 0.25, 0, 0.75, 1 ]
  1104. },
  1105. { "time": 1.6333, "angle": 0 },
  1106. {
  1107. "time": 2.1333,
  1108. "angle": -7.83,
  1109. "curve": [ 0.25, 0, 0.75, 1 ]
  1110. },
  1111. { "time": 2.7, "angle": 0 }
  1112. ],
  1113. "translate": [
  1114. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1115. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1116. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1117. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1118. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1119. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  1120. { "time": 2.7, "x": 0, "y": 0 }
  1121. ],
  1122. "scale": [
  1123. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1124. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1125. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1126. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1127. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1128. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  1129. { "time": 2.7, "x": 1, "y": 1 }
  1130. ]
  1131. },
  1132. "bone20": {
  1133. "rotate": [
  1134. { "time": 0, "angle": 0 },
  1135. {
  1136. "time": 0.1667,
  1137. "angle": -7.93,
  1138. "curve": [ 0.25, 0, 0.75, 1 ]
  1139. },
  1140. {
  1141. "time": 0.6667,
  1142. "angle": 0,
  1143. "curve": [ 0.25, 0, 0.75, 1 ]
  1144. },
  1145. {
  1146. "time": 1,
  1147. "angle": -7.12,
  1148. "curve": [ 0.25, 0, 0.75, 1 ]
  1149. },
  1150. { "time": 1.6333, "angle": 0 },
  1151. {
  1152. "time": 2.1333,
  1153. "angle": -8.01,
  1154. "curve": [ 0.25, 0, 0.75, 1 ]
  1155. },
  1156. { "time": 2.7, "angle": 0 }
  1157. ],
  1158. "translate": [
  1159. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1160. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1161. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1162. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1163. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1164. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  1165. { "time": 2.7, "x": 0, "y": 0 }
  1166. ],
  1167. "scale": [
  1168. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1169. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1170. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1171. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1172. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1173. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  1174. { "time": 2.7, "x": 1, "y": 1 }
  1175. ]
  1176. },
  1177. "bone21": {
  1178. "rotate": [
  1179. { "time": 0, "angle": 0 },
  1180. {
  1181. "time": 0.1667,
  1182. "angle": 6.88,
  1183. "curve": [ 0.25, 0, 0.75, 1 ]
  1184. },
  1185. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1186. { "time": 1, "angle": 0, "curve": "stepped" },
  1187. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1188. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  1189. { "time": 2.7, "angle": 0 }
  1190. ],
  1191. "translate": [
  1192. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1193. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1194. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1195. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1196. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1197. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  1198. { "time": 2.7, "x": 0, "y": 0 }
  1199. ],
  1200. "scale": [
  1201. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1202. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1203. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1204. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1205. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1206. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  1207. { "time": 2.7, "x": 1, "y": 1 }
  1208. ]
  1209. },
  1210. "bone22": {
  1211. "rotate": [
  1212. { "time": 0, "angle": 0 },
  1213. {
  1214. "time": 0.1667,
  1215. "angle": -3.06,
  1216. "curve": [ 0.25, 0, 0.75, 1 ]
  1217. },
  1218. {
  1219. "time": 0.6667,
  1220. "angle": 0,
  1221. "curve": [ 0.25, 0, 0.75, 1 ]
  1222. },
  1223. {
  1224. "time": 1,
  1225. "angle": 7.57,
  1226. "curve": [ 0.25, 0, 0.75, 1 ]
  1227. },
  1228. { "time": 1.6333, "angle": 0 },
  1229. {
  1230. "time": 2.1333,
  1231. "angle": 11.22,
  1232. "curve": [ 0.25, 0, 0.75, 1 ]
  1233. },
  1234. { "time": 2.7, "angle": 0 },
  1235. { "time": 3.3667, "angle": -4.43 }
  1236. ],
  1237. "translate": [
  1238. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1239. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1240. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1241. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1242. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1243. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  1244. { "time": 2.7, "x": 0, "y": 0 }
  1245. ],
  1246. "scale": [
  1247. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1248. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1249. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1250. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1251. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1252. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  1253. { "time": 2.7, "x": 1, "y": 1 }
  1254. ]
  1255. },
  1256. "bone23": {
  1257. "rotate": [
  1258. { "time": 0, "angle": 0 },
  1259. {
  1260. "time": 0.1667,
  1261. "angle": -3.06,
  1262. "curve": [ 0.25, 0, 0.75, 1 ]
  1263. },
  1264. {
  1265. "time": 0.6667,
  1266. "angle": 0,
  1267. "curve": [ 0.25, 0, 0.75, 1 ]
  1268. },
  1269. {
  1270. "time": 1,
  1271. "angle": -5.94,
  1272. "curve": [ 0.25, 0, 0.75, 1 ]
  1273. },
  1274. { "time": 1.6333, "angle": 0 },
  1275. {
  1276. "time": 2.1333,
  1277. "angle": -10.27,
  1278. "curve": [ 0.25, 0, 0.75, 1 ]
  1279. },
  1280. { "time": 2.7, "angle": 0 },
  1281. { "time": 3.3667, "angle": -4.43 }
  1282. ],
  1283. "translate": [
  1284. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1285. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1286. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1287. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1288. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1289. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  1290. { "time": 2.7, "x": 0, "y": 0 }
  1291. ],
  1292. "scale": [
  1293. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1294. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1295. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1296. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1297. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1298. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  1299. { "time": 2.7, "x": 1, "y": 1 }
  1300. ]
  1301. },
  1302. "bone24": {
  1303. "rotate": [
  1304. { "time": 0, "angle": 0 },
  1305. {
  1306. "time": 0.1667,
  1307. "angle": -3.06,
  1308. "curve": [ 0.25, 0, 0.75, 1 ]
  1309. },
  1310. {
  1311. "time": 0.6667,
  1312. "angle": 0,
  1313. "curve": [ 0.25, 0, 0.75, 1 ]
  1314. },
  1315. {
  1316. "time": 1,
  1317. "angle": -5.49,
  1318. "curve": [ 0.25, 0, 0.75, 1 ]
  1319. },
  1320. { "time": 1.6333, "angle": 0 },
  1321. {
  1322. "time": 2.1333,
  1323. "angle": -2.03,
  1324. "curve": [ 0.25, 0, 0.75, 1 ]
  1325. },
  1326. { "time": 2.7, "angle": 0 },
  1327. { "time": 3.3667, "angle": -4.43 }
  1328. ],
  1329. "translate": [
  1330. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1331. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1332. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1333. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1334. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1335. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  1336. { "time": 2.7, "x": 0, "y": 0 }
  1337. ],
  1338. "scale": [
  1339. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1340. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1341. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1342. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1343. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1344. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  1345. { "time": 2.7, "x": 1, "y": 1 }
  1346. ]
  1347. },
  1348. "bone25": {
  1349. "rotate": [
  1350. { "time": 0, "angle": 0 },
  1351. {
  1352. "time": 0.1667,
  1353. "angle": -3.06,
  1354. "curve": [ 0.25, 0, 0.75, 1 ]
  1355. },
  1356. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1357. { "time": 1, "angle": 0, "curve": "stepped" },
  1358. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1359. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  1360. { "time": 2.7, "angle": 0 },
  1361. { "time": 3.3667, "angle": -4.43 }
  1362. ],
  1363. "translate": [
  1364. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1365. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1366. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1367. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1368. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1369. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  1370. { "time": 2.7, "x": 0, "y": 0 }
  1371. ],
  1372. "scale": [
  1373. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1374. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1375. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1376. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1377. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1378. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  1379. { "time": 2.7, "x": 1, "y": 1 }
  1380. ]
  1381. },
  1382. "bone26": {
  1383. "rotate": [
  1384. { "time": 0, "angle": 0 },
  1385. { "time": 0.1667, "angle": -8.29 },
  1386. { "time": 0.3333, "angle": 0 },
  1387. { "time": 0.6667, "angle": 7.38 },
  1388. { "time": 1, "angle": 0 },
  1389. { "time": 1.3667, "angle": 7.38 },
  1390. { "time": 1.7, "angle": -5.73, "curve": "stepped" },
  1391. {
  1392. "time": 2.4333,
  1393. "angle": -5.73,
  1394. "curve": [ 0.25, 0, 0.75, 1 ]
  1395. },
  1396. { "time": 2.7, "angle": -0.14 },
  1397. { "time": 3.3667, "angle": 6.83 }
  1398. ],
  1399. "translate": [
  1400. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1401. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1402. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1403. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1404. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1405. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1406. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1407. { "time": 2.7, "x": 0, "y": 0 }
  1408. ],
  1409. "scale": [
  1410. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1411. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1412. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1413. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1414. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1415. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1416. { "time": 2.7, "x": 1, "y": 1 }
  1417. ]
  1418. },
  1419. "bone27": {
  1420. "rotate": [
  1421. { "time": 0, "angle": 0 },
  1422. { "time": 0.1667, "angle": -28.02 },
  1423. { "time": 0.3333, "angle": 0 },
  1424. { "time": 0.6667, "angle": -6.59 },
  1425. { "time": 1, "angle": 0 },
  1426. { "time": 1.3667, "angle": -6.59 },
  1427. { "time": 1.7, "angle": -21.32, "curve": "stepped" },
  1428. {
  1429. "time": 2.4333,
  1430. "angle": -21.32,
  1431. "curve": [ 0.25, 0, 0.75, 1 ]
  1432. },
  1433. { "time": 2.7, "angle": -11.93 }
  1434. ],
  1435. "translate": [
  1436. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1437. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1438. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1439. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1440. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1441. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1442. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1443. { "time": 2.7, "x": 0, "y": 0 }
  1444. ],
  1445. "scale": [
  1446. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1447. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1448. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1449. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1450. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1451. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1452. { "time": 2.7, "x": 1, "y": 1 }
  1453. ]
  1454. },
  1455. "bone28": {
  1456. "rotate": [
  1457. { "time": 0, "angle": 0, "curve": "stepped" },
  1458. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1459. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1460. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1461. { "time": 1, "angle": 0, "curve": "stepped" },
  1462. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1463. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  1464. { "time": 2.7, "angle": 0 }
  1465. ],
  1466. "translate": [
  1467. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1468. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1469. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1470. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1471. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1472. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1473. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1474. { "time": 2.7, "x": 0, "y": 0 }
  1475. ],
  1476. "scale": [
  1477. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1478. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1479. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1480. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1481. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1482. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1483. { "time": 2.7, "x": 1, "y": 1 }
  1484. ]
  1485. },
  1486. "bone29": {
  1487. "rotate": [
  1488. { "time": 0, "angle": 0 },
  1489. { "time": 0.1667, "angle": 6.99, "curve": "stepped" },
  1490. { "time": 0.2, "angle": 0 }
  1491. ],
  1492. "translate": [
  1493. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1494. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1495. { "time": 0.2, "x": 2.04, "y": 73.43 }
  1496. ],
  1497. "scale": [
  1498. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1499. { "time": 0.1667, "x": 1, "y": 1 }
  1500. ]
  1501. },
  1502. "bone30": {
  1503. "rotate": [
  1504. { "time": 0, "angle": 0 },
  1505. { "time": 0.1667, "angle": 69.26 },
  1506. { "time": 0.2, "angle": -34.62 }
  1507. ],
  1508. "translate": [
  1509. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1510. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1511. { "time": 0.2, "x": 0, "y": 0 }
  1512. ],
  1513. "scale": [
  1514. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1515. { "time": 0.1667, "x": 1, "y": 1 }
  1516. ]
  1517. },
  1518. "bone31": {
  1519. "rotate": [
  1520. { "time": 0, "angle": 0, "curve": "stepped" },
  1521. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1522. { "time": 0.2, "angle": 0 }
  1523. ],
  1524. "translate": [
  1525. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1526. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1527. { "time": 0.2, "x": 0, "y": 0 }
  1528. ],
  1529. "scale": [
  1530. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1531. { "time": 0.1667, "x": 1, "y": 1 }
  1532. ]
  1533. },
  1534. "bone32": {
  1535. "rotate": [
  1536. { "time": 0, "angle": 0, "curve": "stepped" },
  1537. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1538. { "time": 0.3333, "angle": 0 },
  1539. { "time": 0.6667, "angle": 4.03 },
  1540. { "time": 1, "angle": 0 },
  1541. { "time": 1.3667, "angle": 4.03 },
  1542. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  1543. { "time": 3.3667, "angle": 0 }
  1544. ],
  1545. "translate": [
  1546. { "time": 0, "x": 0, "y": 0 },
  1547. { "time": 0.1667, "x": 1.02, "y": -0.23 },
  1548. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1549. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1550. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1551. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1552. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1553. { "time": 3.3667, "x": 0, "y": 0 }
  1554. ],
  1555. "scale": [
  1556. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1557. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1558. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1559. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1560. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1561. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1562. { "time": 3.3667, "x": 1, "y": 1 }
  1563. ]
  1564. },
  1565. "bone33": {
  1566. "rotate": [
  1567. { "time": 0, "angle": 0 },
  1568. { "time": 0.1667, "angle": 1.83 },
  1569. { "time": 0.3333, "angle": 0 },
  1570. { "time": 0.6667, "angle": 4.03 },
  1571. { "time": 1, "angle": -4.83 },
  1572. { "time": 1.3667, "angle": 4.03 },
  1573. {
  1574. "time": 2.4333,
  1575. "angle": -6.33,
  1576. "curve": [ 0.25, 0, 0.75, 1 ]
  1577. },
  1578. { "time": 3.3667, "angle": 0 }
  1579. ],
  1580. "translate": [
  1581. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1582. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1583. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1584. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1585. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1586. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1587. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1588. { "time": 3.3667, "x": 0, "y": 0 }
  1589. ],
  1590. "scale": [
  1591. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1592. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1593. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1594. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1595. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1596. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1597. { "time": 3.3667, "x": 1, "y": 1 }
  1598. ]
  1599. },
  1600. "bone34": {
  1601. "rotate": [
  1602. { "time": 0, "angle": 0 },
  1603. { "time": 0.1667, "angle": 13.14 },
  1604. { "time": 0.3333, "angle": 0 },
  1605. { "time": 0.6667, "angle": 4.03 },
  1606. { "time": 1, "angle": 0 },
  1607. { "time": 1.3667, "angle": 4.03 },
  1608. {
  1609. "time": 2.4333,
  1610. "angle": -8.14,
  1611. "curve": [ 0.25, 0, 0.75, 1 ]
  1612. },
  1613. { "time": 3.3667, "angle": 0 }
  1614. ],
  1615. "translate": [
  1616. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1617. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1618. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1619. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1620. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1621. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1622. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1623. { "time": 3.3667, "x": 0, "y": 0 }
  1624. ],
  1625. "scale": [
  1626. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1627. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1628. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1629. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1630. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1631. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1632. { "time": 3.3667, "x": 1, "y": 1 }
  1633. ]
  1634. },
  1635. "bone35": {
  1636. "rotate": [
  1637. { "time": 0, "angle": 0 },
  1638. { "time": 0.1667, "angle": -7.78 },
  1639. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1640. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1641. { "time": 1, "angle": 0, "curve": "stepped" },
  1642. { "time": 1.3667, "angle": 0 },
  1643. {
  1644. "time": 2.4333,
  1645. "angle": -6.06,
  1646. "curve": [ 0.25, 0, 0.75, 1 ]
  1647. },
  1648. { "time": 3.3667, "angle": 3.21 }
  1649. ],
  1650. "translate": [
  1651. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1652. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1653. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1654. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1655. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1656. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1657. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1658. { "time": 3.3667, "x": 0, "y": 0 }
  1659. ],
  1660. "scale": [
  1661. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1662. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1663. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1664. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1665. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1666. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1667. { "time": 3.3667, "x": 1, "y": 1 }
  1668. ]
  1669. },
  1670. "bone36": {
  1671. "rotate": [
  1672. { "time": 0, "angle": 0 },
  1673. { "time": 0.1667, "angle": -7.78 },
  1674. { "time": 0.3333, "angle": 0 },
  1675. { "time": 0.6667, "angle": 5.71 },
  1676. { "time": 1, "angle": -5.9 },
  1677. { "time": 1.3667, "angle": 5.71 },
  1678. {
  1679. "time": 2.4333,
  1680. "angle": -11.33,
  1681. "curve": [ 0.25, 0, 0.75, 1 ]
  1682. },
  1683. { "time": 2.7667, "angle": -5.46 },
  1684. { "time": 3.3667, "angle": -2.06 }
  1685. ],
  1686. "translate": [
  1687. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1688. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1689. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1690. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1691. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1692. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1693. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1694. { "time": 3.3667, "x": 0, "y": 0 }
  1695. ],
  1696. "scale": [
  1697. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1698. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1699. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1700. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1701. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1702. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1703. { "time": 3.3667, "x": 1, "y": 1 }
  1704. ]
  1705. },
  1706. "bone37": {
  1707. "rotate": [
  1708. { "time": 0, "angle": 0 },
  1709. { "time": 0.1667, "angle": -7.78 },
  1710. { "time": 0.3333, "angle": 0 },
  1711. { "time": 0.6667, "angle": 5.71 },
  1712. { "time": 1, "angle": -5.9 },
  1713. { "time": 1.3667, "angle": 5.71 },
  1714. {
  1715. "time": 2.4333,
  1716. "angle": -14.06,
  1717. "curve": [ 0.25, 0, 0.75, 1 ]
  1718. },
  1719. { "time": 2.7667, "angle": -2.31 },
  1720. { "time": 3.3667, "angle": -4.79 }
  1721. ],
  1722. "translate": [
  1723. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1724. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1725. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1726. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1727. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1728. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1729. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1730. { "time": 3.3667, "x": 0, "y": 0 }
  1731. ],
  1732. "scale": [
  1733. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1734. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1735. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1736. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1737. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1738. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1739. { "time": 3.3667, "x": 1, "y": 1 }
  1740. ]
  1741. },
  1742. "bone38": {
  1743. "rotate": [
  1744. { "time": 0, "angle": 0 },
  1745. { "time": 0.1667, "angle": -9.96 },
  1746. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1747. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1748. { "time": 1, "angle": 0, "curve": "stepped" },
  1749. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1750. {
  1751. "time": 2.4333,
  1752. "angle": 0,
  1753. "curve": [ 0.25, 0, 0.75, 1 ]
  1754. },
  1755. { "time": 2.7, "angle": -6.06 }
  1756. ],
  1757. "translate": [
  1758. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1759. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1760. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1761. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1762. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1763. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1764. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1765. { "time": 2.7, "x": 0, "y": 0 }
  1766. ],
  1767. "scale": [
  1768. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1769. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1770. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1771. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1772. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1773. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1774. { "time": 2.7, "x": 1, "y": 1 }
  1775. ]
  1776. },
  1777. "bone39": {
  1778. "rotate": [
  1779. { "time": 0, "angle": 0 },
  1780. { "time": 0.1667, "angle": 16.42 },
  1781. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1782. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1783. { "time": 1, "angle": 0, "curve": "stepped" },
  1784. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1785. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  1786. { "time": 2.7, "angle": 0 }
  1787. ],
  1788. "translate": [
  1789. { "time": 0, "x": 0, "y": 0 },
  1790. { "time": 0.1667, "x": -0.96, "y": -0.2 },
  1791. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1792. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1793. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1794. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1795. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1796. { "time": 2.7, "x": 0, "y": 0 }
  1797. ],
  1798. "scale": [
  1799. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1800. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1801. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1802. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1803. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1804. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1805. { "time": 2.7, "x": 1, "y": 1 }
  1806. ]
  1807. },
  1808. "bone40": {
  1809. "rotate": [
  1810. { "time": 0, "angle": 0, "curve": "stepped" },
  1811. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1812. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1813. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1814. { "time": 1, "angle": 0, "curve": "stepped" },
  1815. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1816. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  1817. { "time": 2.7, "angle": 0 }
  1818. ],
  1819. "translate": [
  1820. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1821. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1822. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1823. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1824. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1825. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1826. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1827. { "time": 2.7, "x": 0, "y": 0 }
  1828. ],
  1829. "scale": [
  1830. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1831. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1832. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1833. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1834. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1835. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1836. { "time": 2.7, "x": 1, "y": 1 }
  1837. ]
  1838. },
  1839. "bone41": {
  1840. "rotate": [
  1841. { "time": 0, "angle": 0 },
  1842. { "time": 0.1667, "angle": -3.56 },
  1843. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1844. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1845. { "time": 1, "angle": 0, "curve": "stepped" },
  1846. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1847. {
  1848. "time": 2.4333,
  1849. "angle": 0,
  1850. "curve": [ 0.25, 0, 0.75, 1 ]
  1851. },
  1852. { "time": 2.7, "angle": -14.39 }
  1853. ],
  1854. "translate": [
  1855. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1856. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1857. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1858. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1859. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1860. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1861. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1862. { "time": 2.7, "x": 0, "y": 0 }
  1863. ],
  1864. "scale": [
  1865. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1866. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1867. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1868. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1869. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1870. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1871. { "time": 2.7, "x": 1, "y": 1 }
  1872. ]
  1873. },
  1874. "bone42": {
  1875. "rotate": [
  1876. { "time": 0, "angle": 0 },
  1877. { "time": 0.1667, "angle": 7.75 },
  1878. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1879. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1880. { "time": 1, "angle": 0, "curve": "stepped" },
  1881. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1882. {
  1883. "time": 2.4333,
  1884. "angle": 0,
  1885. "curve": [ 0.25, 0, 0.75, 1 ]
  1886. },
  1887. { "time": 2.7, "angle": 39.26 }
  1888. ],
  1889. "translate": [
  1890. { "time": 0, "x": 0, "y": 0 },
  1891. { "time": 0.1667, "x": -1.2, "y": -0.24 },
  1892. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1893. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1894. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1895. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1896. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1897. { "time": 2.7, "x": 0, "y": 0 }
  1898. ],
  1899. "scale": [
  1900. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1901. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1902. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1903. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1904. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1905. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1906. { "time": 2.7, "x": 1, "y": 1 }
  1907. ]
  1908. },
  1909. "bone43": {
  1910. "rotate": [
  1911. { "time": 0, "angle": 0, "curve": "stepped" },
  1912. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1913. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1914. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1915. { "time": 1, "angle": 0, "curve": "stepped" },
  1916. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1917. {
  1918. "time": 2.4333,
  1919. "angle": 0,
  1920. "curve": [ 0.25, 0, 0.75, 1 ]
  1921. },
  1922. { "time": 2.7, "angle": -15.55 }
  1923. ],
  1924. "translate": [
  1925. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1926. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1927. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1928. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1929. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1930. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1931. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1932. { "time": 2.7, "x": 0, "y": 0 }
  1933. ],
  1934. "scale": [
  1935. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1936. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1937. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1938. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1939. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1940. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1941. { "time": 2.7, "x": 1, "y": 1 }
  1942. ]
  1943. },
  1944. "bone44": {
  1945. "rotate": [
  1946. { "time": 0, "angle": 0, "curve": "stepped" },
  1947. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  1948. { "time": 2.5667, "angle": 0, "curve": "stepped" },
  1949. { "time": 2.7, "angle": 0 }
  1950. ],
  1951. "translate": [
  1952. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1953. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1954. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1955. { "time": 2.7, "x": 0, "y": 0 }
  1956. ],
  1957. "scale": [
  1958. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1959. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1960. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1961. { "time": 2.7, "x": 1, "y": 1 }
  1962. ]
  1963. },
  1964. "bone45": {
  1965. "rotate": [
  1966. { "time": 0, "angle": 0, "curve": "stepped" },
  1967. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1968. { "time": 0.4667, "angle": 0 },
  1969. { "time": 0.8333, "angle": 9.49 },
  1970. { "time": 1.3667, "angle": 0 },
  1971. { "time": 1.9333, "angle": 14 },
  1972. { "time": 2.5667, "angle": 0, "curve": "stepped" },
  1973. { "time": 3.3667, "angle": 0 }
  1974. ],
  1975. "translate": [
  1976. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1977. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1978. { "time": 0.4667, "x": 0, "y": 0 },
  1979. { "time": 0.6667, "x": -1.52, "y": -0.33 },
  1980. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1981. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1982. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1983. { "time": 3.3667, "x": 0, "y": 0 }
  1984. ],
  1985. "scale": [
  1986. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1987. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1988. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1989. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1990. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1991. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1992. { "time": 3.3667, "x": 1, "y": 1 }
  1993. ]
  1994. },
  1995. "bone46": {
  1996. "rotate": [
  1997. { "time": 0, "angle": 0 },
  1998. {
  1999. "time": 0.1667,
  2000. "angle": 6.79,
  2001. "curve": [ 0.25, 0, 0.75, 1 ]
  2002. },
  2003. { "time": 0.4667, "angle": 0 },
  2004. { "time": 0.8333, "angle": 9.49 },
  2005. { "time": 1.3667, "angle": 0 },
  2006. { "time": 1.9333, "angle": 14 },
  2007. { "time": 2.5667, "angle": -8.23 },
  2008. { "time": 3.3667, "angle": 0 }
  2009. ],
  2010. "translate": [
  2011. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2012. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2013. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2014. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2015. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  2016. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  2017. { "time": 3.3667, "x": 0, "y": 0 }
  2018. ],
  2019. "scale": [
  2020. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2021. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2022. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2023. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2024. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  2025. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  2026. { "time": 3.3667, "x": 1, "y": 1 }
  2027. ]
  2028. },
  2029. "bone47": {
  2030. "rotate": [
  2031. { "time": 0, "angle": 0 },
  2032. {
  2033. "time": 0.1667,
  2034. "angle": 15.76,
  2035. "curve": [ 0.25, 0, 0.75, 1 ]
  2036. },
  2037. { "time": 0.4667, "angle": 0 },
  2038. { "time": 0.8333, "angle": 9.49 },
  2039. { "time": 1.3667, "angle": 0 },
  2040. { "time": 1.9333, "angle": 14 },
  2041. { "time": 2.5667, "angle": -8.23 },
  2042. { "time": 3.3667, "angle": 0 }
  2043. ],
  2044. "translate": [
  2045. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2046. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2047. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2048. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2049. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  2050. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  2051. { "time": 3.3667, "x": 0, "y": 0 }
  2052. ],
  2053. "scale": [
  2054. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2055. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2056. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2057. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2058. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  2059. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  2060. { "time": 3.3667, "x": 1, "y": 1 }
  2061. ]
  2062. },
  2063. "bone48": {
  2064. "rotate": [
  2065. { "time": 0, "angle": 0 },
  2066. {
  2067. "time": 0.1667,
  2068. "angle": 6.79,
  2069. "curve": [ 0.25, 0, 0.75, 1 ]
  2070. },
  2071. { "time": 0.4667, "angle": 0 },
  2072. { "time": 0.8333, "angle": 9.49 },
  2073. { "time": 1.3667, "angle": 0 },
  2074. { "time": 1.9333, "angle": 14 },
  2075. { "time": 2.5667, "angle": -8.23 },
  2076. { "time": 3.3667, "angle": 0 }
  2077. ],
  2078. "translate": [
  2079. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2080. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2081. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2082. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2083. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  2084. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  2085. { "time": 3.3667, "x": 0, "y": 0 }
  2086. ],
  2087. "scale": [
  2088. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2089. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2090. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2091. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2092. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  2093. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  2094. { "time": 3.3667, "x": 1, "y": 1 }
  2095. ]
  2096. },
  2097. "bone49": {
  2098. "translate": [
  2099. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2100. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2101. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  2102. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  2103. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2104. { "time": 2.3, "x": 0, "y": 0 }
  2105. ],
  2106. "scale": [
  2107. {
  2108. "time": 1.8,
  2109. "x": 1,
  2110. "y": 1,
  2111. "curve": [ 0.25, 0, 0.75, 1 ]
  2112. },
  2113. {
  2114. "time": 1.8667,
  2115. "x": 0.9,
  2116. "y": 1,
  2117. "curve": [ 0.25, 0, 0.75, 1 ]
  2118. },
  2119. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  2120. {
  2121. "time": 1.9667,
  2122. "x": 1,
  2123. "y": 1,
  2124. "curve": [ 0.25, 0, 0.75, 1 ]
  2125. },
  2126. {
  2127. "time": 2.0667,
  2128. "x": 0.9,
  2129. "y": 1,
  2130. "curve": [ 0.25, 0, 0.75, 1 ]
  2131. },
  2132. { "time": 2.3, "x": 1, "y": 1 }
  2133. ]
  2134. },
  2135. "bone50": {
  2136. "rotate": [
  2137. { "time": 0, "angle": 0, "curve": "stepped" },
  2138. { "time": 0.1667, "angle": 11.43 },
  2139. { "time": 0.3333, "angle": -16.33 },
  2140. { "time": 0.6667, "angle": -21.61 },
  2141. { "time": 1, "angle": -16.33 },
  2142. { "time": 1.3667, "angle": -21.61 },
  2143. { "time": 1.7, "angle": -35.02, "curve": "stepped" },
  2144. {
  2145. "time": 2.4333,
  2146. "angle": -35.02,
  2147. "curve": [ 0.25, 0, 0.75, 1 ]
  2148. },
  2149. { "time": 2.7, "angle": -47.77 },
  2150. { "time": 3.3667, "angle": -55 }
  2151. ],
  2152. "translate": [
  2153. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2154. { "time": 0.1667, "x": 2.73, "y": -72.06, "curve": "stepped" },
  2155. { "time": 0.3333, "x": 2.73, "y": -72.06, "curve": "stepped" },
  2156. { "time": 0.6667, "x": 2.73, "y": -72.06, "curve": "stepped" },
  2157. { "time": 1, "x": 2.73, "y": -72.06, "curve": "stepped" },
  2158. { "time": 1.3667, "x": 2.73, "y": -72.06 },
  2159. { "time": 1.7, "x": 1.54, "y": -77.53, "curve": "stepped" },
  2160. { "time": 2.4333, "x": 1.54, "y": -77.53, "curve": "stepped" },
  2161. { "time": 2.7, "x": 1.54, "y": -77.53 },
  2162. { "time": 3.3667, "x": 3.35, "y": -77.56 }
  2163. ],
  2164. "scale": [
  2165. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2166. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2167. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2168. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2169. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2170. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  2171. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2172. { "time": 2.7, "x": 1, "y": 1 }
  2173. ]
  2174. },
  2175. "bone51": {
  2176. "rotate": [
  2177. { "time": 0, "angle": 0, "curve": "stepped" },
  2178. { "time": 0.1667, "angle": 35.53 },
  2179. { "time": 0.3333, "angle": 0 },
  2180. { "time": 0.6667, "angle": 15.16 },
  2181. { "time": 1, "angle": 0 },
  2182. { "time": 1.3667, "angle": 15.16 },
  2183. { "time": 1.7, "angle": -52.6, "curve": "stepped" },
  2184. {
  2185. "time": 2.4333,
  2186. "angle": -52.6,
  2187. "curve": [ 0.25, 0, 0.75, 1 ]
  2188. },
  2189. { "time": 2.7, "angle": -32.44 },
  2190. { "time": 3.3667, "angle": -36.31 }
  2191. ],
  2192. "translate": [
  2193. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2194. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2195. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2196. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2197. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2198. { "time": 1.3667, "x": 0, "y": 0 },
  2199. { "time": 1.7667, "x": -0.62, "y": 1.06, "curve": "stepped" },
  2200. {
  2201. "time": 2.4333,
  2202. "x": -0.62,
  2203. "y": 1.06,
  2204. "curve": [ 0.25, 0, 0.75, 1 ]
  2205. },
  2206. { "time": 2.7, "x": -1.18, "y": -2.67 }
  2207. ],
  2208. "scale": [
  2209. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2210. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2211. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2212. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2213. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2214. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  2215. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2216. { "time": 2.7, "x": 1, "y": 1 }
  2217. ]
  2218. },
  2219. "bone52": {
  2220. "rotate": [
  2221. { "time": 0, "angle": 0, "curve": "stepped" },
  2222. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2223. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2224. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2225. { "time": 1, "angle": 0, "curve": "stepped" },
  2226. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  2227. {
  2228. "time": 2.4333,
  2229. "angle": 0,
  2230. "curve": [ 0.25, 0, 0.75, 1 ]
  2231. },
  2232. { "time": 2.7, "angle": -41.53 }
  2233. ],
  2234. "translate": [
  2235. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2236. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2237. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2238. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2239. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2240. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  2241. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2242. { "time": 2.7, "x": 0, "y": 0 }
  2243. ],
  2244. "scale": [
  2245. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2246. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2247. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2248. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2249. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2250. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  2251. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2252. { "time": 2.7, "x": 1, "y": 1 }
  2253. ]
  2254. },
  2255. "bone53": {
  2256. "rotate": [
  2257. { "time": 0, "angle": 0, "curve": "stepped" },
  2258. { "time": 0.1667, "angle": -28.41 },
  2259. { "time": 0.3333, "angle": 0 },
  2260. { "time": 0.6667, "angle": 10.49 },
  2261. { "time": 1, "angle": -1.46 },
  2262. { "time": 1.3667, "angle": 10.49 },
  2263. { "time": 1.7, "angle": 54.29, "curve": "stepped" },
  2264. {
  2265. "time": 2.4333,
  2266. "angle": 54.29,
  2267. "curve": [ 0.25, 0, 0.75, 1 ]
  2268. },
  2269. { "time": 2.7, "angle": 50.91 }
  2270. ],
  2271. "translate": [
  2272. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2273. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2274. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2275. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2276. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2277. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  2278. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2279. { "time": 2.7, "x": 0, "y": 0 }
  2280. ],
  2281. "scale": [
  2282. { "time": 0, "x": 1.5, "y": 1.5 }
  2283. ]
  2284. }
  2285. },
  2286. "deform": {
  2287. "default": {
  2288. "hongjiu": {
  2289. "hongjiu": [
  2290. { "time": 0 },
  2291. {
  2292. "time": 0.3333,
  2293. "offset": 6,
  2294. "vertices": [ -2.86005, -0.55841, -4.74528, -1.35558 ]
  2295. },
  2296. {
  2297. "time": 0.6667,
  2298. "vertices": [ -3.18372, 1.51297, 0, 0, 0, 0, -1.73765, -0.14834, -1.45934, -0.19321, -2.73911, 0.7272 ]
  2299. },
  2300. {
  2301. "time": 1,
  2302. "offset": 6,
  2303. "vertices": [ -2.86005, -0.55841, -4.74528, -1.35558 ]
  2304. },
  2305. {
  2306. "time": 1.3667,
  2307. "vertices": [ -3.18372, 1.51297, 0, 0, 0, 0, -1.73765, -0.14834, -1.45934, -0.19321, -2.73911, 0.7272 ]
  2308. },
  2309. {
  2310. "time": 1.7,
  2311. "offset": 6,
  2312. "vertices": [ -2.86005, -0.55841, -4.74528, -1.35558 ]
  2313. },
  2314. {
  2315. "time": 2.0333,
  2316. "vertices": [ -0.85999, 0.8293, 0, 0, 0, 0, -2.86005, -0.55841, -2.80593, -0.35178 ],
  2317. "curve": "stepped"
  2318. },
  2319. {
  2320. "time": 2.4333,
  2321. "vertices": [ -0.85999, 0.8293, 0, 0, 0, 0, -2.86005, -0.55841, -2.80593, -0.35178 ]
  2322. },
  2323. {
  2324. "time": 2.8667,
  2325. "vertices": [ -1.0891, 2.79115, -0.06751, 0.37419, -0.02495, 0.12027, -5.34186, -2.94249, -2.67406, -4.17969, -1.69477, 2.42556 ]
  2326. },
  2327. {
  2328. "time": 3.3667,
  2329. "vertices": [ -1.26533, 4.30027, -0.11943, 0.66203, -0.25717, -1.57653, -2.80495, -6.66375, -2.57262, -7.12424, -2.99844, 4.29138 ]
  2330. }
  2331. ]
  2332. },
  2333. "shenti": {
  2334. "shenti": [
  2335. { "time": 0 },
  2336. {
  2337. "time": 0.1667,
  2338. "offset": 84,
  2339. "vertices": [ -0.65567, -0.02049, -0.65596, -0.00965, 0, 0, -0.65567, -0.02049, -0.65596, -0.00965, 0, 0, 0, 0, 0, 0, 0, 0, -0.65567, -0.02049, -0.65596, -0.00965 ]
  2340. },
  2341. { "time": 0.3333 },
  2342. {
  2343. "time": 0.6667,
  2344. "offset": 84,
  2345. "vertices": [ 0.07448, 2.30064, -0.02754, 2.30167, 0, 0, 0.42138, 1.82179, 0.34024, 1.83866, -0.51471, 0.57439, -0.51372, 0.57534, 0, 0, 0, 0, 0.24474, 2.14315, 0.14953, 2.15188, 0.04546, 1.5347, -0.0226, 1.5352, 0.04546, 1.5347, -0.0226, 1.5352 ]
  2346. },
  2347. { "time": 1 },
  2348. {
  2349. "time": 1.3667,
  2350. "offset": 84,
  2351. "vertices": [ -0.0447, 1.14711, -0.09549, 1.144, 0, 0, 0.42138, 1.82179, 0.34024, 1.83866, -0.71612, 0.7607, -0.71484, 0.76202, 0, 0, 0, 0, 0.3086, 0.50439, 0.28593, 0.51755, 0.11223, 1.43909, -0.02125, 1.44329, 0.11223, 1.43909, -0.02125, 1.44329 ]
  2352. },
  2353. {
  2354. "time": 1.8667,
  2355. "offset": 84,
  2356. "vertices": [ 0.61227, 1.47318, 0.53095, 1.52542, 0, 0, 1.73435, 2.14592, 1.62041, 2.27465, -1.20292, 0.38021, -1.20226, 0.38242, 0, 0, 0, 0, 0.3086, 0.50439, 0.28593, 0.51755, 0.37, 1.77254, 0.216, 1.79781, 0.1282, 1.78986, -0.02639, 1.79425 ],
  2357. "curve": "stepped"
  2358. },
  2359. {
  2360. "time": 2.4333,
  2361. "offset": 84,
  2362. "vertices": [ 0.61227, 1.47318, 0.53095, 1.52542, 0, 0, 1.73435, 2.14592, 1.62041, 2.27465, -1.20292, 0.38021, -1.20226, 0.38242, 0, 0, 0, 0, 0.3086, 0.50439, 0.28593, 0.51755, 0.37, 1.77254, 0.216, 1.79781, 0.1282, 1.78986, -0.02639, 1.79425 ]
  2363. },
  2364. {
  2365. "time": 3.3667,
  2366. "offset": 84,
  2367. "vertices": [ -0.5318, 1.76911, -0.35601, 1.81267, 0, 0, 0.38121, 1.31431, 0.50808, 1.27066 ]
  2368. }
  2369. ]
  2370. },
  2371. "toufa6": {
  2372. "toufa6": [
  2373. { "time": 0 },
  2374. {
  2375. "time": 0.1667,
  2376. "offset": 2,
  2377. "vertices": [ -1.20401, 0.21856 ]
  2378. },
  2379. { "time": 0.6667 }
  2380. ]
  2381. }
  2382. }
  2383. },
  2384. "drawOrder": [
  2385. { "time": 1.6333 }
  2386. ]
  2387. },
  2388. "walk1": {
  2389. "slots": {
  2390. "beizi": {
  2391. "attachment": [
  2392. { "time": 0, "name": null }
  2393. ]
  2394. },
  2395. "biyan": {
  2396. "attachment": [
  2397. { "time": 1.1, "name": "biyan" },
  2398. { "time": 1.2333, "name": null }
  2399. ]
  2400. },
  2401. "hongjiu": {
  2402. "attachment": [
  2403. { "time": 0, "name": null }
  2404. ]
  2405. },
  2406. "teshuzuoshou1": {
  2407. "attachment": [
  2408. { "time": 0, "name": null }
  2409. ]
  2410. },
  2411. "teshuzuoshou2": {
  2412. "attachment": [
  2413. { "time": 0, "name": null }
  2414. ]
  2415. },
  2416. "teshuzuoshou3": {
  2417. "attachment": [
  2418. { "time": 0, "name": null }
  2419. ]
  2420. },
  2421. "teshuzuoshoushouzhi": {
  2422. "attachment": [
  2423. { "time": 0, "name": null }
  2424. ]
  2425. },
  2426. "youyan": {
  2427. "attachment": [
  2428. { "time": 1.1, "name": null },
  2429. { "time": 1.2333, "name": "youyan" }
  2430. ]
  2431. },
  2432. "zuiba2": {
  2433. "attachment": [
  2434. { "time": 0, "name": null }
  2435. ]
  2436. },
  2437. "zuoyan": {
  2438. "attachment": [
  2439. { "time": 1.1, "name": null },
  2440. { "time": 1.2333, "name": "zuoyan" }
  2441. ]
  2442. }
  2443. },
  2444. "bones": {
  2445. "bone": {
  2446. "translate": [
  2447. { "time": 0, "x": 0, "y": 0 },
  2448. { "time": 0.1667, "x": 0, "y": 1.65 },
  2449. { "time": 0.5, "x": 0, "y": 0 },
  2450. { "time": 0.6667, "x": 0, "y": 1.65 },
  2451. { "time": 1, "x": 0, "y": 0 },
  2452. { "time": 1.1667, "x": 0, "y": 1.65 },
  2453. { "time": 1.5, "x": 0, "y": 0 },
  2454. { "time": 1.6667, "x": 0, "y": 1.65 },
  2455. { "time": 2, "x": 0, "y": 0 }
  2456. ]
  2457. },
  2458. "bone2": {
  2459. "rotate": [
  2460. { "time": 0, "angle": 1.1, "curve": "stepped" },
  2461. { "time": 1, "angle": 1.1 }
  2462. ]
  2463. },
  2464. "bone3": {
  2465. "rotate": [
  2466. {
  2467. "time": 0,
  2468. "angle": -3.05,
  2469. "curve": [ 0.25, 0, 0.75, 1 ]
  2470. },
  2471. {
  2472. "time": 0.5,
  2473. "angle": -4,
  2474. "curve": [ 0.25, 0, 0.75, 1 ]
  2475. },
  2476. {
  2477. "time": 1,
  2478. "angle": -3.05,
  2479. "curve": [ 0.25, 0, 0.75, 1 ]
  2480. },
  2481. {
  2482. "time": 1.5,
  2483. "angle": -4,
  2484. "curve": [ 0.25, 0, 0.75, 1 ]
  2485. },
  2486. { "time": 2, "angle": -3.05 }
  2487. ]
  2488. },
  2489. "bone6": {
  2490. "rotate": [
  2491. { "time": 0, "angle": 0, "curve": "stepped" },
  2492. { "time": 1, "angle": 0, "curve": "stepped" },
  2493. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2494. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2495. { "time": 1.4, "angle": 0 }
  2496. ],
  2497. "translate": [
  2498. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2499. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2500. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2501. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2502. { "time": 1.4, "x": 0, "y": 0 }
  2503. ],
  2504. "scale": [
  2505. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2506. { "time": 1, "x": 1, "y": 1 },
  2507. { "time": 1.1, "x": 0.327, "y": 1, "curve": "stepped" },
  2508. { "time": 1.2333, "x": 0.327, "y": 1 },
  2509. { "time": 1.4, "x": 1, "y": 1 }
  2510. ]
  2511. },
  2512. "bone7": {
  2513. "rotate": [
  2514. { "time": 0, "angle": 0, "curve": "stepped" },
  2515. { "time": 1, "angle": 0, "curve": "stepped" },
  2516. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2517. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2518. { "time": 1.4, "angle": 0 }
  2519. ],
  2520. "translate": [
  2521. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2522. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2523. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2524. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2525. { "time": 1.4, "x": 0, "y": 0 }
  2526. ],
  2527. "scale": [
  2528. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2529. { "time": 1, "x": 1, "y": 1 },
  2530. { "time": 1.1, "x": 0.327, "y": 1, "curve": "stepped" },
  2531. { "time": 1.2333, "x": 0.327, "y": 1 },
  2532. { "time": 1.4, "x": 1, "y": 1 }
  2533. ]
  2534. },
  2535. "bone8": {
  2536. "rotate": [
  2537. { "time": 0, "angle": 0, "curve": "stepped" },
  2538. { "time": 1, "angle": 0, "curve": "stepped" },
  2539. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2540. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2541. { "time": 1.4, "angle": 0 }
  2542. ],
  2543. "translate": [
  2544. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2545. { "time": 1, "x": 0, "y": 0 },
  2546. { "time": 1.1, "x": -0.91, "y": -0.04, "curve": "stepped" },
  2547. { "time": 1.2333, "x": -0.91, "y": -0.04 },
  2548. { "time": 1.4, "x": 0, "y": 0 }
  2549. ],
  2550. "scale": [
  2551. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2552. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2553. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2554. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2555. { "time": 1.4, "x": 1, "y": 1 }
  2556. ]
  2557. },
  2558. "bone11": {
  2559. "rotate": [
  2560. {
  2561. "time": 0,
  2562. "angle": -4.56,
  2563. "curve": [ 0.25, 0, 0.75, 1 ]
  2564. },
  2565. {
  2566. "time": 0.5,
  2567. "angle": 0,
  2568. "curve": [ 0.25, 0, 0.75, 1 ]
  2569. },
  2570. {
  2571. "time": 1,
  2572. "angle": -4.56,
  2573. "curve": [ 0.25, 0, 0.75, 1 ]
  2574. },
  2575. {
  2576. "time": 1.5,
  2577. "angle": 0,
  2578. "curve": [ 0.25, 0, 0.75, 1 ]
  2579. },
  2580. { "time": 2, "angle": -4.56 }
  2581. ],
  2582. "translate": [
  2583. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2584. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2585. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2586. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2587. { "time": 2, "x": 0, "y": 0 }
  2588. ],
  2589. "scale": [
  2590. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2591. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2592. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2593. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2594. { "time": 2, "x": 1, "y": 1 }
  2595. ]
  2596. },
  2597. "bone12": {
  2598. "rotate": [
  2599. {
  2600. "time": 0,
  2601. "angle": 0.78,
  2602. "curve": [ 0.25, 0, 0.75, 1 ]
  2603. },
  2604. {
  2605. "time": 0.5,
  2606. "angle": 0,
  2607. "curve": [ 0.25, 0, 0.75, 1 ]
  2608. },
  2609. {
  2610. "time": 1,
  2611. "angle": 0.78,
  2612. "curve": [ 0.25, 0, 0.75, 1 ]
  2613. },
  2614. {
  2615. "time": 1.5,
  2616. "angle": 0,
  2617. "curve": [ 0.25, 0, 0.75, 1 ]
  2618. },
  2619. { "time": 2, "angle": 0.78 }
  2620. ],
  2621. "translate": [
  2622. {
  2623. "time": 0,
  2624. "x": 0.66,
  2625. "y": -0.03,
  2626. "curve": [ 0.25, 0, 0.75, 1 ]
  2627. },
  2628. {
  2629. "time": 0.5,
  2630. "x": 0,
  2631. "y": 0,
  2632. "curve": [ 0.25, 0, 0.75, 1 ]
  2633. },
  2634. {
  2635. "time": 1,
  2636. "x": 0.66,
  2637. "y": -0.03,
  2638. "curve": [ 0.25, 0, 0.75, 1 ]
  2639. },
  2640. {
  2641. "time": 1.5,
  2642. "x": 0,
  2643. "y": 0,
  2644. "curve": [ 0.25, 0, 0.75, 1 ]
  2645. },
  2646. { "time": 2, "x": 0.66, "y": -0.03 }
  2647. ],
  2648. "scale": [
  2649. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2650. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2651. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2652. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2653. { "time": 2, "x": 1, "y": 1 }
  2654. ]
  2655. },
  2656. "bone13": {
  2657. "rotate": [
  2658. {
  2659. "time": 0,
  2660. "angle": 4.93,
  2661. "curve": [ 0.25, 0, 0.75, 1 ]
  2662. },
  2663. {
  2664. "time": 0.5,
  2665. "angle": 9.07,
  2666. "curve": [ 0.25, 0, 0.75, 1 ]
  2667. },
  2668. {
  2669. "time": 1,
  2670. "angle": 4.93,
  2671. "curve": [ 0.25, 0, 0.75, 1 ]
  2672. },
  2673. {
  2674. "time": 1.5,
  2675. "angle": 9.07,
  2676. "curve": [ 0.25, 0, 0.75, 1 ]
  2677. },
  2678. { "time": 2, "angle": 4.93 }
  2679. ]
  2680. },
  2681. "bone14": {
  2682. "rotate": [
  2683. {
  2684. "time": 0,
  2685. "angle": 4.93,
  2686. "curve": [ 0.25, 0, 0.75, 1 ]
  2687. },
  2688. {
  2689. "time": 0.5,
  2690. "angle": 0,
  2691. "curve": [ 0.25, 0, 0.75, 1 ]
  2692. },
  2693. {
  2694. "time": 1,
  2695. "angle": 4.93,
  2696. "curve": [ 0.25, 0, 0.75, 1 ]
  2697. },
  2698. {
  2699. "time": 1.5,
  2700. "angle": 0,
  2701. "curve": [ 0.25, 0, 0.75, 1 ]
  2702. },
  2703. { "time": 2, "angle": 4.93 }
  2704. ]
  2705. },
  2706. "bone15": {
  2707. "rotate": [
  2708. {
  2709. "time": 0,
  2710. "angle": 4.93,
  2711. "curve": [ 0.25, 0, 0.75, 1 ]
  2712. },
  2713. {
  2714. "time": 0.5,
  2715. "angle": 0,
  2716. "curve": [ 0.25, 0, 0.75, 1 ]
  2717. },
  2718. {
  2719. "time": 1,
  2720. "angle": 4.93,
  2721. "curve": [ 0.25, 0, 0.75, 1 ]
  2722. },
  2723. {
  2724. "time": 1.5,
  2725. "angle": 0,
  2726. "curve": [ 0.25, 0, 0.75, 1 ]
  2727. },
  2728. { "time": 2, "angle": 4.93 }
  2729. ]
  2730. },
  2731. "bone17": {
  2732. "rotate": [
  2733. {
  2734. "time": 0,
  2735. "angle": -1.99,
  2736. "curve": [ 0.25, 0, 0.75, 1 ]
  2737. },
  2738. {
  2739. "time": 0.5,
  2740. "angle": 0,
  2741. "curve": [ 0.25, 0, 0.75, 1 ]
  2742. },
  2743. {
  2744. "time": 1,
  2745. "angle": -1.99,
  2746. "curve": [ 0.25, 0, 0.75, 1 ]
  2747. },
  2748. {
  2749. "time": 1.5,
  2750. "angle": 0,
  2751. "curve": [ 0.25, 0, 0.75, 1 ]
  2752. },
  2753. { "time": 2, "angle": -1.99 }
  2754. ]
  2755. },
  2756. "bone18": {
  2757. "rotate": [
  2758. {
  2759. "time": 0,
  2760. "angle": -7.24,
  2761. "curve": [ 0.25, 0, 0.75, 1 ]
  2762. },
  2763. {
  2764. "time": 0.5,
  2765. "angle": 0,
  2766. "curve": [ 0.25, 0, 0.75, 1 ]
  2767. },
  2768. {
  2769. "time": 1,
  2770. "angle": -7.24,
  2771. "curve": [ 0.25, 0, 0.75, 1 ]
  2772. },
  2773. {
  2774. "time": 1.5,
  2775. "angle": 0,
  2776. "curve": [ 0.25, 0, 0.75, 1 ]
  2777. },
  2778. { "time": 2, "angle": -7.24 }
  2779. ]
  2780. },
  2781. "bone19": {
  2782. "rotate": [
  2783. {
  2784. "time": 0,
  2785. "angle": -7.24,
  2786. "curve": [ 0.25, 0, 0.75, 1 ]
  2787. },
  2788. {
  2789. "time": 0.5,
  2790. "angle": -6.87,
  2791. "curve": [ 0.25, 0, 0.75, 1 ]
  2792. },
  2793. {
  2794. "time": 1,
  2795. "angle": -7.24,
  2796. "curve": [ 0.25, 0, 0.75, 1 ]
  2797. },
  2798. {
  2799. "time": 1.5,
  2800. "angle": -6.87,
  2801. "curve": [ 0.25, 0, 0.75, 1 ]
  2802. },
  2803. { "time": 2, "angle": -7.24 }
  2804. ]
  2805. },
  2806. "bone20": {
  2807. "rotate": [
  2808. {
  2809. "time": 0,
  2810. "angle": -7.24,
  2811. "curve": [ 0.25, 0, 0.75, 1 ]
  2812. },
  2813. {
  2814. "time": 0.5,
  2815. "angle": -14.43,
  2816. "curve": [ 0.25, 0, 0.75, 1 ]
  2817. },
  2818. {
  2819. "time": 1,
  2820. "angle": -7.24,
  2821. "curve": [ 0.25, 0, 0.75, 1 ]
  2822. },
  2823. {
  2824. "time": 1.5,
  2825. "angle": -14.43,
  2826. "curve": [ 0.25, 0, 0.75, 1 ]
  2827. },
  2828. { "time": 2, "angle": -7.24 }
  2829. ]
  2830. },
  2831. "bone22": {
  2832. "rotate": [
  2833. {
  2834. "time": 0,
  2835. "angle": 0,
  2836. "curve": [ 0.25, 0, 0.75, 1 ]
  2837. },
  2838. {
  2839. "time": 0.5,
  2840. "angle": 4.84,
  2841. "curve": [ 0.25, 0, 0.75, 1 ]
  2842. },
  2843. {
  2844. "time": 1,
  2845. "angle": 0,
  2846. "curve": [ 0.25, 0, 0.75, 1 ]
  2847. },
  2848. {
  2849. "time": 1.5,
  2850. "angle": 4.84,
  2851. "curve": [ 0.25, 0, 0.75, 1 ]
  2852. },
  2853. { "time": 2, "angle": 0 }
  2854. ]
  2855. },
  2856. "bone23": {
  2857. "rotate": [
  2858. {
  2859. "time": 0,
  2860. "angle": 0,
  2861. "curve": [ 0.25, 0, 0.75, 1 ]
  2862. },
  2863. {
  2864. "time": 0.5,
  2865. "angle": 4.84,
  2866. "curve": [ 0.25, 0, 0.75, 1 ]
  2867. },
  2868. {
  2869. "time": 1,
  2870. "angle": 0,
  2871. "curve": [ 0.25, 0, 0.75, 1 ]
  2872. },
  2873. {
  2874. "time": 1.5,
  2875. "angle": 4.84,
  2876. "curve": [ 0.25, 0, 0.75, 1 ]
  2877. },
  2878. { "time": 2, "angle": 0 }
  2879. ]
  2880. },
  2881. "bone24": {
  2882. "rotate": [
  2883. {
  2884. "time": 0,
  2885. "angle": -21.51,
  2886. "curve": [ 0.25, 0, 0.75, 1 ]
  2887. },
  2888. {
  2889. "time": 0.5,
  2890. "angle": -17.09,
  2891. "curve": [ 0.25, 0, 0.75, 1 ]
  2892. },
  2893. {
  2894. "time": 1,
  2895. "angle": -21.51,
  2896. "curve": [ 0.25, 0, 0.75, 1 ]
  2897. },
  2898. {
  2899. "time": 1.5,
  2900. "angle": -17.09,
  2901. "curve": [ 0.25, 0, 0.75, 1 ]
  2902. },
  2903. { "time": 2, "angle": -21.51 }
  2904. ],
  2905. "translate": [
  2906. {
  2907. "time": 0,
  2908. "x": 1.36,
  2909. "y": -0.32,
  2910. "curve": [ 0.25, 0, 0.75, 1 ]
  2911. },
  2912. {
  2913. "time": 0.5,
  2914. "x": 0,
  2915. "y": 0,
  2916. "curve": [ 0.25, 0, 0.75, 1 ]
  2917. },
  2918. {
  2919. "time": 1,
  2920. "x": 1.36,
  2921. "y": -0.32,
  2922. "curve": [ 0.25, 0, 0.75, 1 ]
  2923. },
  2924. {
  2925. "time": 1.5,
  2926. "x": 0,
  2927. "y": 0,
  2928. "curve": [ 0.25, 0, 0.75, 1 ]
  2929. },
  2930. { "time": 2, "x": 1.36, "y": -0.32 }
  2931. ],
  2932. "scale": [
  2933. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2934. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2935. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2936. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2937. { "time": 2, "x": 1, "y": 1 }
  2938. ]
  2939. },
  2940. "bone25": {
  2941. "rotate": [
  2942. {
  2943. "time": 0,
  2944. "angle": 0,
  2945. "curve": [ 0.25, 0, 0.75, 1 ]
  2946. },
  2947. {
  2948. "time": 0.5,
  2949. "angle": -17.09,
  2950. "curve": [ 0.25, 0, 0.75, 1 ]
  2951. },
  2952. {
  2953. "time": 1,
  2954. "angle": 0,
  2955. "curve": [ 0.25, 0, 0.75, 1 ]
  2956. },
  2957. {
  2958. "time": 1.5,
  2959. "angle": -17.09,
  2960. "curve": [ 0.25, 0, 0.75, 1 ]
  2961. },
  2962. { "time": 2, "angle": 0 }
  2963. ]
  2964. },
  2965. "bone26": {
  2966. "rotate": [
  2967. {
  2968. "time": 0,
  2969. "angle": 325.15,
  2970. "curve": [ 0.25, 0, 0.75, 1 ]
  2971. },
  2972. {
  2973. "time": 0.5,
  2974. "angle": 0.6,
  2975. "curve": [ 0.25, 0, 0.75, 1 ]
  2976. },
  2977. {
  2978. "time": 1,
  2979. "angle": 325.15,
  2980. "curve": [ 0.25, 0, 0.75, 1 ]
  2981. },
  2982. {
  2983. "time": 1.5,
  2984. "angle": 0.6,
  2985. "curve": [ 0.25, 0, 0.75, 1 ]
  2986. },
  2987. { "time": 2, "angle": 325.15 }
  2988. ],
  2989. "translate": [
  2990. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2991. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2992. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2993. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2994. { "time": 2, "x": 0, "y": 0 }
  2995. ],
  2996. "scale": [
  2997. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2998. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2999. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3000. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3001. { "time": 2, "x": 1, "y": 1 }
  3002. ]
  3003. },
  3004. "bone27": {
  3005. "rotate": [
  3006. {
  3007. "time": 0,
  3008. "angle": -23.63,
  3009. "curve": [ 0.25, 0, 0.75, 1 ]
  3010. },
  3011. {
  3012. "time": 0.5,
  3013. "angle": 1.5,
  3014. "curve": [ 0.25, 0, 0.75, 1 ]
  3015. },
  3016. {
  3017. "time": 1,
  3018. "angle": -23.63,
  3019. "curve": [ 0.25, 0, 0.75, 1 ]
  3020. },
  3021. {
  3022. "time": 1.5,
  3023. "angle": 1.5,
  3024. "curve": [ 0.25, 0, 0.75, 1 ]
  3025. },
  3026. { "time": 2, "angle": -23.63 }
  3027. ],
  3028. "translate": [
  3029. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3030. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3031. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3032. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3033. { "time": 2, "x": 0, "y": 0 }
  3034. ],
  3035. "scale": [
  3036. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3037. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3038. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3039. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3040. { "time": 2, "x": 1, "y": 1 }
  3041. ]
  3042. },
  3043. "bone29": {
  3044. "rotate": [
  3045. {
  3046. "time": 0,
  3047. "angle": -295.43,
  3048. "curve": [ 0.25, 0, 0.75, 1 ]
  3049. },
  3050. {
  3051. "time": 0.5,
  3052. "angle": 8.3,
  3053. "curve": [ 0.25, 0, 0.75, 1 ]
  3054. },
  3055. {
  3056. "time": 1,
  3057. "angle": -295.43,
  3058. "curve": [ 0.25, 0, 0.75, 1 ]
  3059. },
  3060. {
  3061. "time": 1.5,
  3062. "angle": 8.3,
  3063. "curve": [ 0.25, 0, 0.75, 1 ]
  3064. },
  3065. { "time": 2, "angle": -295.43 }
  3066. ],
  3067. "translate": [
  3068. { "time": 0, "x": -2.63, "y": -0.43, "curve": "stepped" },
  3069. { "time": 0.5, "x": -2.63, "y": -0.43, "curve": "stepped" },
  3070. { "time": 1, "x": -2.63, "y": -0.43, "curve": "stepped" },
  3071. { "time": 1.5, "x": -2.63, "y": -0.43, "curve": "stepped" },
  3072. { "time": 2, "x": -2.63, "y": -0.43 }
  3073. ],
  3074. "scale": [
  3075. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3076. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3077. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3078. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3079. { "time": 2, "x": 1, "y": 1 }
  3080. ]
  3081. },
  3082. "bone30": {
  3083. "rotate": [
  3084. {
  3085. "time": 0,
  3086. "angle": -11.09,
  3087. "curve": [ 0.25, 0, 0.75, 1 ]
  3088. },
  3089. {
  3090. "time": 0.5,
  3091. "angle": -23.55,
  3092. "curve": [ 0.25, 0, 0.75, 1 ]
  3093. },
  3094. {
  3095. "time": 1,
  3096. "angle": -11.09,
  3097. "curve": [ 0.25, 0, 0.75, 1 ]
  3098. },
  3099. {
  3100. "time": 1.5,
  3101. "angle": -23.55,
  3102. "curve": [ 0.25, 0, 0.75, 1 ]
  3103. },
  3104. { "time": 2, "angle": -11.09 }
  3105. ],
  3106. "translate": [
  3107. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3108. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3109. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3110. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3111. { "time": 2, "x": 0, "y": 0 }
  3112. ],
  3113. "scale": [
  3114. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3115. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3116. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3117. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3118. { "time": 2, "x": 1, "y": 1 }
  3119. ]
  3120. },
  3121. "bone31": {
  3122. "rotate": [
  3123. { "time": 0, "angle": 0, "curve": "stepped" },
  3124. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3125. { "time": 1, "angle": 0, "curve": "stepped" },
  3126. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3127. { "time": 2, "angle": 0 }
  3128. ],
  3129. "translate": [
  3130. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3131. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3132. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3133. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3134. { "time": 2, "x": 0, "y": 0 }
  3135. ],
  3136. "scale": [
  3137. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3138. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3139. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3140. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3141. { "time": 2, "x": 1, "y": 1 }
  3142. ]
  3143. },
  3144. "bone32": {
  3145. "rotate": [
  3146. { "time": 0, "angle": 18.85, "curve": "stepped" },
  3147. { "time": 0.5, "angle": 18.85, "curve": "stepped" },
  3148. { "time": 1, "angle": 18.85, "curve": "stepped" },
  3149. { "time": 1.5, "angle": 18.85, "curve": "stepped" },
  3150. { "time": 2, "angle": 18.85 }
  3151. ],
  3152. "translate": [
  3153. {
  3154. "time": 0,
  3155. "x": 0,
  3156. "y": 0,
  3157. "curve": [ 0.25, 0, 0.75, 1 ]
  3158. },
  3159. {
  3160. "time": 0.5,
  3161. "x": 2.12,
  3162. "y": -0.97,
  3163. "curve": [ 0.25, 0, 0.75, 1 ]
  3164. },
  3165. {
  3166. "time": 1,
  3167. "x": 0,
  3168. "y": 0,
  3169. "curve": [ 0.25, 0, 0.75, 1 ]
  3170. },
  3171. {
  3172. "time": 1.5,
  3173. "x": 2.12,
  3174. "y": -0.97,
  3175. "curve": [ 0.25, 0, 0.75, 1 ]
  3176. },
  3177. { "time": 2, "x": 0, "y": 0 }
  3178. ],
  3179. "scale": [
  3180. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3181. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3182. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3183. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3184. { "time": 2, "x": 1, "y": 1 }
  3185. ]
  3186. },
  3187. "bone33": {
  3188. "rotate": [
  3189. {
  3190. "time": 0,
  3191. "angle": -8.51,
  3192. "curve": [ 0.25, 0, 0.75, 1 ]
  3193. },
  3194. {
  3195. "time": 0.5,
  3196. "angle": 2.23,
  3197. "curve": [ 0.25, 0, 0.75, 1 ]
  3198. },
  3199. {
  3200. "time": 1,
  3201. "angle": -8.51,
  3202. "curve": [ 0.25, 0, 0.75, 1 ]
  3203. },
  3204. {
  3205. "time": 1.5,
  3206. "angle": 2.23,
  3207. "curve": [ 0.25, 0, 0.75, 1 ]
  3208. },
  3209. { "time": 2, "angle": -8.51 }
  3210. ],
  3211. "translate": [
  3212. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3213. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3214. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3215. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3216. { "time": 2, "x": 0, "y": 0 }
  3217. ],
  3218. "scale": [
  3219. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3220. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3221. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3222. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3223. { "time": 2, "x": 1, "y": 1 }
  3224. ]
  3225. },
  3226. "bone34": {
  3227. "rotate": [
  3228. {
  3229. "time": 0,
  3230. "angle": -8.51,
  3231. "curve": [ 0.25, 0, 0.75, 1 ]
  3232. },
  3233. {
  3234. "time": 0.5,
  3235. "angle": 2.23,
  3236. "curve": [ 0.25, 0, 0.75, 1 ]
  3237. },
  3238. {
  3239. "time": 1,
  3240. "angle": -8.51,
  3241. "curve": [ 0.25, 0, 0.75, 1 ]
  3242. },
  3243. {
  3244. "time": 1.5,
  3245. "angle": 2.23,
  3246. "curve": [ 0.25, 0, 0.75, 1 ]
  3247. },
  3248. { "time": 2, "angle": -8.51 }
  3249. ],
  3250. "translate": [
  3251. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3252. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3253. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3254. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3255. { "time": 2, "x": 0, "y": 0 }
  3256. ],
  3257. "scale": [
  3258. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3259. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3260. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3261. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3262. { "time": 2, "x": 1, "y": 1 }
  3263. ]
  3264. },
  3265. "bone35": {
  3266. "rotate": [
  3267. {
  3268. "time": 0,
  3269. "angle": -11.38,
  3270. "curve": [ 0.25, 0, 0.75, 1 ]
  3271. },
  3272. {
  3273. "time": 0.5,
  3274. "angle": 4.53,
  3275. "curve": [ 0.25, 0, 0.75, 1 ]
  3276. },
  3277. {
  3278. "time": 1,
  3279. "angle": -11.38,
  3280. "curve": [ 0.25, 0, 0.75, 1 ]
  3281. },
  3282. {
  3283. "time": 1.5,
  3284. "angle": 4.53,
  3285. "curve": [ 0.25, 0, 0.75, 1 ]
  3286. },
  3287. { "time": 2, "angle": -11.38 }
  3288. ],
  3289. "translate": [
  3290. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3291. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3292. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3293. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3294. { "time": 2, "x": 0, "y": 0 }
  3295. ],
  3296. "scale": [
  3297. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3298. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3299. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3300. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3301. { "time": 2, "x": 1, "y": 1 }
  3302. ]
  3303. },
  3304. "bone36": {
  3305. "rotate": [
  3306. {
  3307. "time": 0,
  3308. "angle": -11.38,
  3309. "curve": [ 0.25, 0, 0.75, 1 ]
  3310. },
  3311. {
  3312. "time": 0.5,
  3313. "angle": 4.53,
  3314. "curve": [ 0.25, 0, 0.75, 1 ]
  3315. },
  3316. {
  3317. "time": 1,
  3318. "angle": -11.38,
  3319. "curve": [ 0.25, 0, 0.75, 1 ]
  3320. },
  3321. {
  3322. "time": 1.5,
  3323. "angle": 4.53,
  3324. "curve": [ 0.25, 0, 0.75, 1 ]
  3325. },
  3326. { "time": 2, "angle": -11.38 }
  3327. ],
  3328. "translate": [
  3329. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3330. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3331. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3332. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3333. { "time": 2, "x": 0, "y": 0 }
  3334. ],
  3335. "scale": [
  3336. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3337. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3338. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3339. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3340. { "time": 2, "x": 1, "y": 1 }
  3341. ]
  3342. },
  3343. "bone37": {
  3344. "rotate": [
  3345. {
  3346. "time": 0,
  3347. "angle": -11.38,
  3348. "curve": [ 0.25, 0, 0.75, 1 ]
  3349. },
  3350. {
  3351. "time": 0.5,
  3352. "angle": 4.53,
  3353. "curve": [ 0.25, 0, 0.75, 1 ]
  3354. },
  3355. {
  3356. "time": 1,
  3357. "angle": -11.38,
  3358. "curve": [ 0.25, 0, 0.75, 1 ]
  3359. },
  3360. {
  3361. "time": 1.5,
  3362. "angle": 4.53,
  3363. "curve": [ 0.25, 0, 0.75, 1 ]
  3364. },
  3365. { "time": 2, "angle": -11.38 }
  3366. ],
  3367. "translate": [
  3368. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3369. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3370. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3371. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3372. { "time": 2, "x": 0, "y": 0 }
  3373. ],
  3374. "scale": [
  3375. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3376. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3377. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3378. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3379. { "time": 2, "x": 1, "y": 1 }
  3380. ]
  3381. },
  3382. "bone38": {
  3383. "rotate": [
  3384. { "time": 0, "angle": 18.5 },
  3385. { "time": 0.1667, "angle": -3.98 },
  3386. { "time": 0.3333, "angle": -38.36 },
  3387. { "time": 0.5, "angle": -32.86 },
  3388. { "time": 0.6667, "angle": -18.87 },
  3389. { "time": 0.8333, "angle": 8.23 },
  3390. { "time": 1, "angle": 18.5 },
  3391. { "time": 1.1667, "angle": -3.98 },
  3392. { "time": 1.3333, "angle": -38.36 },
  3393. { "time": 1.5, "angle": -32.86 },
  3394. { "time": 1.6667, "angle": -18.87 },
  3395. { "time": 1.8333, "angle": 8.23 },
  3396. { "time": 2, "angle": 18.5 }
  3397. ]
  3398. },
  3399. "bone39": {
  3400. "rotate": [
  3401. { "time": 0, "angle": 0 },
  3402. { "time": 0.1667, "angle": 49.02 },
  3403. { "time": 0.3333, "angle": 45.78 },
  3404. { "time": 0.5, "angle": 0 },
  3405. { "time": 0.6667, "angle": 22.08 },
  3406. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3407. { "time": 1, "angle": 0 },
  3408. { "time": 1.1667, "angle": 49.02 },
  3409. { "time": 1.3333, "angle": 45.78 },
  3410. { "time": 1.5, "angle": 0 },
  3411. { "time": 1.6667, "angle": 22.08 },
  3412. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3413. { "time": 2, "angle": 0 }
  3414. ],
  3415. "translate": [
  3416. { "time": 0, "x": 0, "y": 0 },
  3417. { "time": 0.1667, "x": -1.93, "y": -1.45 },
  3418. { "time": 0.3333, "x": -1.51, "y": -1.01 },
  3419. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3420. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3421. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3422. { "time": 1, "x": 0, "y": 0 },
  3423. { "time": 1.1667, "x": -1.93, "y": -1.45 },
  3424. { "time": 1.3333, "x": -1.51, "y": -1.01 },
  3425. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3426. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3427. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3428. { "time": 2, "x": 0, "y": 0 }
  3429. ]
  3430. },
  3431. "bone41": {
  3432. "rotate": [
  3433. { "time": 0, "angle": -13.05 },
  3434. { "time": 0.1667, "angle": -3.3 },
  3435. { "time": 0.3333, "angle": 22.57 },
  3436. { "time": 0.5, "angle": 40.37 },
  3437. { "time": 0.6667, "angle": 14.32 },
  3438. { "time": 0.8333, "angle": -4.01 },
  3439. { "time": 1, "angle": -13.05 },
  3440. { "time": 1.1667, "angle": -3.3 },
  3441. { "time": 1.3333, "angle": 22.57 },
  3442. { "time": 1.5, "angle": 40.37 },
  3443. { "time": 1.6667, "angle": 14.32 },
  3444. { "time": 1.8333, "angle": -4.01 },
  3445. { "time": 2, "angle": -13.05 }
  3446. ]
  3447. },
  3448. "bone42": {
  3449. "rotate": [
  3450. { "time": 0, "angle": 0 },
  3451. { "time": 0.1667, "angle": 10.8 },
  3452. { "time": 0.3333, "angle": 11.15 },
  3453. { "time": 0.5, "angle": 0 },
  3454. { "time": 0.6667, "angle": 50 },
  3455. { "time": 0.8333, "angle": 29.72 },
  3456. { "time": 1, "angle": 0 },
  3457. { "time": 1.1667, "angle": 10.8 },
  3458. { "time": 1.3333, "angle": 11.15 },
  3459. { "time": 1.5, "angle": 0 },
  3460. { "time": 1.6667, "angle": 50 },
  3461. { "time": 1.8333, "angle": 29.72 },
  3462. { "time": 2, "angle": 0 }
  3463. ],
  3464. "translate": [
  3465. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3466. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3467. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3468. { "time": 0.5, "x": 0, "y": 0 },
  3469. { "time": 0.6667, "x": -1.75, "y": -1.48 },
  3470. { "time": 0.8333, "x": -3.25, "y": -2.14 },
  3471. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3472. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3473. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3474. { "time": 1.5, "x": 0, "y": 0 },
  3475. { "time": 1.6667, "x": -1.75, "y": -1.48 },
  3476. { "time": 1.8333, "x": -3.25, "y": -2.14 },
  3477. { "time": 2, "x": 0, "y": 0 }
  3478. ]
  3479. },
  3480. "bone43": {
  3481. "rotate": [
  3482. { "time": 0, "angle": 0 },
  3483. { "time": 0.1667, "angle": -8.14 },
  3484. { "time": 0.3333, "angle": -26.04 },
  3485. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3486. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3487. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3488. { "time": 1, "angle": 0 },
  3489. { "time": 1.1667, "angle": -8.14 },
  3490. { "time": 1.3333, "angle": -26.04 },
  3491. { "time": 1.5, "angle": 0 }
  3492. ]
  3493. },
  3494. "bone44": {
  3495. "rotate": [
  3496. { "time": 0, "angle": 0 }
  3497. ],
  3498. "translate": [
  3499. { "time": 0, "x": 0, "y": 0 }
  3500. ],
  3501. "scale": [
  3502. { "time": 0, "x": 1, "y": 1 }
  3503. ]
  3504. },
  3505. "bone45": {
  3506. "rotate": [
  3507. {
  3508. "time": 0,
  3509. "angle": -8.93,
  3510. "curve": [ 0.25, 0, 0.75, 1 ]
  3511. },
  3512. {
  3513. "time": 0.5,
  3514. "angle": 5.13,
  3515. "curve": [ 0.25, 0, 0.75, 1 ]
  3516. },
  3517. {
  3518. "time": 1,
  3519. "angle": -8.93,
  3520. "curve": [ 0.25, 0, 0.75, 1 ]
  3521. },
  3522. {
  3523. "time": 1.5,
  3524. "angle": 5.13,
  3525. "curve": [ 0.25, 0, 0.75, 1 ]
  3526. },
  3527. { "time": 2, "angle": -8.93 }
  3528. ],
  3529. "translate": [
  3530. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3531. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3532. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3533. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3534. { "time": 2, "x": 0, "y": 0 }
  3535. ],
  3536. "scale": [
  3537. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3538. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3539. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3540. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3541. { "time": 2, "x": 1, "y": 1 }
  3542. ]
  3543. },
  3544. "bone46": {
  3545. "rotate": [
  3546. {
  3547. "time": 0,
  3548. "angle": -8.93,
  3549. "curve": [ 0.25, 0, 0.75, 1 ]
  3550. },
  3551. {
  3552. "time": 0.5,
  3553. "angle": 5.13,
  3554. "curve": [ 0.25, 0, 0.75, 1 ]
  3555. },
  3556. {
  3557. "time": 1,
  3558. "angle": -8.93,
  3559. "curve": [ 0.25, 0, 0.75, 1 ]
  3560. },
  3561. {
  3562. "time": 1.5,
  3563. "angle": 5.13,
  3564. "curve": [ 0.25, 0, 0.75, 1 ]
  3565. },
  3566. { "time": 2, "angle": -8.93 }
  3567. ]
  3568. },
  3569. "bone47": {
  3570. "rotate": [
  3571. {
  3572. "time": 0,
  3573. "angle": -8.93,
  3574. "curve": [ 0.25, 0, 0.75, 1 ]
  3575. },
  3576. {
  3577. "time": 0.5,
  3578. "angle": 5.13,
  3579. "curve": [ 0.25, 0, 0.75, 1 ]
  3580. },
  3581. {
  3582. "time": 1,
  3583. "angle": -8.93,
  3584. "curve": [ 0.25, 0, 0.75, 1 ]
  3585. },
  3586. {
  3587. "time": 1.5,
  3588. "angle": 5.13,
  3589. "curve": [ 0.25, 0, 0.75, 1 ]
  3590. },
  3591. { "time": 2, "angle": -8.93 }
  3592. ],
  3593. "translate": [
  3594. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3595. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3596. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3597. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3598. { "time": 2, "x": 0, "y": 0 }
  3599. ],
  3600. "scale": [
  3601. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3602. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3603. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3604. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3605. { "time": 2, "x": 1, "y": 1 }
  3606. ]
  3607. },
  3608. "bone48": {
  3609. "rotate": [
  3610. {
  3611. "time": 0,
  3612. "angle": -8.93,
  3613. "curve": [ 0.25, 0, 0.75, 1 ]
  3614. },
  3615. {
  3616. "time": 0.5,
  3617. "angle": 5.13,
  3618. "curve": [ 0.25, 0, 0.75, 1 ]
  3619. },
  3620. {
  3621. "time": 1,
  3622. "angle": -8.93,
  3623. "curve": [ 0.25, 0, 0.75, 1 ]
  3624. },
  3625. {
  3626. "time": 1.5,
  3627. "angle": 5.13,
  3628. "curve": [ 0.25, 0, 0.75, 1 ]
  3629. },
  3630. { "time": 2, "angle": -8.93 }
  3631. ],
  3632. "translate": [
  3633. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3634. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3635. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3636. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3637. { "time": 2, "x": 0, "y": 0 }
  3638. ],
  3639. "scale": [
  3640. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3641. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3642. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3643. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3644. { "time": 2, "x": 1, "y": 1 }
  3645. ]
  3646. },
  3647. "bone49": {
  3648. "translate": [
  3649. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3650. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3651. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3652. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3653. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3654. { "time": 1.4333, "x": 0, "y": 0 }
  3655. ],
  3656. "scale": [
  3657. {
  3658. "time": 1,
  3659. "x": 1,
  3660. "y": 1,
  3661. "curve": [ 0.25, 0, 0.75, 1 ]
  3662. },
  3663. {
  3664. "time": 1.0667,
  3665. "x": 0.9,
  3666. "y": 1,
  3667. "curve": [ 0.25, 0, 0.75, 1 ]
  3668. },
  3669. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3670. {
  3671. "time": 1.1667,
  3672. "x": 1,
  3673. "y": 1,
  3674. "curve": [ 0.25, 0, 0.75, 1 ]
  3675. },
  3676. {
  3677. "time": 1.2667,
  3678. "x": 0.9,
  3679. "y": 1,
  3680. "curve": [ 0.25, 0, 0.75, 1 ]
  3681. },
  3682. { "time": 1.4333, "x": 1, "y": 1 }
  3683. ]
  3684. },
  3685. "root": {
  3686. "scale": [
  3687. { "time": 0, "x": 0.65, "y": 0.65 }
  3688. ]
  3689. }
  3690. },
  3691. "deform": {
  3692. "default": {
  3693. "shenti": {
  3694. "shenti": [
  3695. {
  3696. "time": 0,
  3697. "offset": 38,
  3698. "vertices": [ -0.03704, 2.51974, 0.34294, 0.551, 0.35204, 0.54525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.29795, 1.99027, 0.33084, 1.98507, -0.00794, 0.53993, 0.48352, 1.81597, 0.51349, 1.80773, 0, 0, 0, 0, 0, 0, 0, 0, -0.22493, 1.43368, -0.20115, 1.43721 ]
  3699. },
  3700. { "time": 0.5 },
  3701. {
  3702. "time": 1,
  3703. "offset": 38,
  3704. "vertices": [ -0.03704, 2.51974, 0.34294, 0.551, 0.35204, 0.54525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.29795, 1.99027, 0.33084, 1.98507, -0.00794, 0.53993, 0.48352, 1.81597, 0.51349, 1.80773, 0, 0, 0, 0, 0, 0, 0, 0, -0.22493, 1.43368, -0.20115, 1.43721 ]
  3705. },
  3706. { "time": 1.5 },
  3707. {
  3708. "time": 2,
  3709. "offset": 38,
  3710. "vertices": [ -0.03704, 2.51974, 0.34294, 0.551, 0.35204, 0.54525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.29795, 1.99027, 0.33084, 1.98507, -0.00794, 0.53993, 0.48352, 1.81597, 0.51349, 1.80773, 0, 0, 0, 0, 0, 0, 0, 0, -0.22493, 1.43368, -0.20115, 1.43721 ]
  3711. }
  3712. ]
  3713. },
  3714. "toufa4": {
  3715. "toufa4": [
  3716. {
  3717. "time": 0,
  3718. "offset": 32,
  3719. "vertices": [ -1.05951, 0.60224, -0.86648, 2.6491 ]
  3720. },
  3721. { "time": 0.5 },
  3722. {
  3723. "time": 1,
  3724. "offset": 32,
  3725. "vertices": [ -1.05951, 0.60224, -0.86648, 2.6491 ]
  3726. },
  3727. { "time": 1.5 },
  3728. {
  3729. "time": 2,
  3730. "offset": 32,
  3731. "vertices": [ -1.05951, 0.60224, -0.86648, 2.6491 ]
  3732. }
  3733. ]
  3734. },
  3735. "toufa5": {
  3736. "toufa5": [
  3737. { "time": 0 },
  3738. {
  3739. "time": 0.5,
  3740. "offset": 3,
  3741. "vertices": [ -0.5697, 1.53005, 0.02609, 0.85136, 1.39391, 2.07642, 0.98922 ]
  3742. },
  3743. { "time": 1 },
  3744. {
  3745. "time": 1.5,
  3746. "offset": 3,
  3747. "vertices": [ -0.5697, 1.53005, 0.02609, 0.85136, 1.39391, 2.07642, 0.98922 ]
  3748. },
  3749. { "time": 2 }
  3750. ]
  3751. },
  3752. "toufa6": {
  3753. "toufa6": [
  3754. { "time": 0 },
  3755. {
  3756. "time": 0.5,
  3757. "vertices": [ -1.08012, 0.56157, -1.22495, 0.40467, 0.2239, 1.97348 ]
  3758. },
  3759. { "time": 1 },
  3760. {
  3761. "time": 1.5,
  3762. "vertices": [ -1.08012, 0.56157, -1.22495, 0.40467, 0.2239, 1.97348 ]
  3763. },
  3764. { "time": 2 }
  3765. ]
  3766. }
  3767. }
  3768. }
  3769. }
  3770. }
  3771. }