60047.json 182 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635
  1. {
  2. "skeleton": { "hash": "N+QejAW1h6aUZtP7b10XL5X4UVg", "spine": "3.6.53", "width": 523.53, "height": 198, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": 1.73, "y": 70.14 },
  6. { "name": "bone2", "parent": "bone", "length": 12.7, "rotation": 88.85 },
  7. { "name": "bone3", "parent": "bone2", "length": 29.23, "rotation": -0.85, "x": 12.7 },
  8. { "name": "bone4", "parent": "bone3", "length": 66.15, "rotation": -1.31, "x": 29.23 },
  9. { "name": "bone5", "parent": "bone3", "length": 20.23, "rotation": 138.12, "x": 22.77, "y": 9.55, "color": "eba020ff" },
  10. { "name": "bone6", "parent": "bone5", "length": 19.44, "rotation": -2.29, "x": 20.23, "color": "eba020ff" },
  11. { "name": "bone7", "parent": "bone6", "length": 16.93, "rotation": -0.62, "x": 19.44, "color": "eba020ff" },
  12. { "name": "bone8", "parent": "bone3", "length": 19.86, "rotation": -129.96, "x": 23.63, "y": -15.12, "color": "1c44adff" },
  13. { "name": "bone9", "parent": "bone8", "length": 15.66, "rotation": 1.79, "x": 19.86, "color": "1c44adff" },
  14. { "name": "bone10", "parent": "bone9", "length": 18, "rotation": -2.32, "x": 15.66, "color": "1c44adff" },
  15. { "name": "bone11", "parent": "bone", "length": 10.16, "rotation": -105.64, "x": -10.75, "y": -3.1, "color": "338a19ff" },
  16. { "name": "bone12", "parent": "bone11", "length": 13.02, "rotation": -3.07, "x": 11.2, "y": -0.34, "color": "338a19ff" },
  17. { "name": "bone13", "parent": "bone12", "length": 11.84, "rotation": -6.04, "x": 15.03, "y": -0.21, "color": "338a19ff" },
  18. { "name": "bone14", "parent": "bone13", "length": 9.4, "rotation": -1.78, "x": 14.02, "y": -0.17, "color": "338a19ff" },
  19. { "name": "bone15", "parent": "bone14", "length": 6.09, "rotation": -0.52, "x": 9.4, "color": "338a19ff" },
  20. { "name": "bone16", "parent": "bone", "length": 9.16, "rotation": -90, "x": 1.4, "y": -3.28, "color": "338a19ff" },
  21. { "name": "bone17", "parent": "bone16", "length": 10.1, "rotation": -2.12, "x": 9.54, "color": "338a19ff" },
  22. { "name": "bone18", "parent": "bone17", "length": 10.29, "rotation": 0.04, "x": 10.1, "color": "338a19ff" },
  23. { "name": "bone19", "parent": "bone18", "length": 10.85, "rotation": 2.08, "x": 10.48, "y": 0.01, "color": "338a19ff" },
  24. { "name": "bone20", "parent": "bone19", "length": 11.97, "rotation": 1.79, "x": 10.85, "color": "338a19ff" },
  25. { "name": "bone21", "parent": "bone", "length": 10.11, "rotation": -70.56, "x": 15.99, "y": -2.72, "color": "338a19ff" },
  26. { "name": "bone22", "parent": "bone21", "length": 13.36, "rotation": -1.51, "x": 11.36, "y": 0.16, "color": "338a19ff" },
  27. { "name": "bone23", "parent": "bone22", "length": 13.96, "rotation": 0.02, "x": 13.72, "y": -0.12, "color": "338a19ff" },
  28. { "name": "bone24", "parent": "bone23", "length": 10.07, "rotation": 3.85, "x": 14.96, "y": 0.07, "color": "338a19ff" },
  29. { "name": "bone25", "parent": "bone24", "length": 7.31, "rotation": 10.67, "x": 10.31, "y": 0.1, "color": "338a19ff" },
  30. { "name": "bone26", "parent": "bone4", "x": 6.82, "y": 3.89 },
  31. { "name": "bone27", "parent": "bone4", "x": 23.38, "y": 4.29 },
  32. { "name": "bone28", "parent": "bone4", "x": 36.03, "y": 4.43 },
  33. { "name": "bone29", "parent": "bone4", "length": 10.74, "rotation": 2.65, "x": 24.42, "y": -10.41 },
  34. { "name": "bone30", "parent": "bone4", "length": 11.16, "rotation": -2.35, "x": 24.07, "y": 19.02 },
  35. { "name": "bone31", "parent": "bone", "length": 18.22, "rotation": -86.45, "x": 17.75, "y": -14.85, "color": "cc2121ff" },
  36. { "name": "bone32", "parent": "bone31", "length": 30.53, "rotation": 0.42, "x": 18.51, "y": -0.02, "color": "cc2121ff" },
  37. { "name": "bone33", "parent": "bone32", "length": 13.52, "rotation": -73.84, "x": 30.53, "color": "cc2121ff" },
  38. { "name": "bone34", "parent": "bone", "length": 24.28, "rotation": -87.34, "x": -20.56, "y": -14.01, "color": "b01acbff" },
  39. { "name": "bone35", "parent": "bone34", "length": 26.81, "rotation": -0.25, "x": 24.28, "color": "b01acbff" },
  40. { "name": "bone36", "parent": "bone35", "length": 16.87, "rotation": -80.35, "x": 26.82, "y": 0.14, "color": "b01acbff" },
  41. { "name": "bone37", "parent": "bone4", "length": 27.95, "rotation": -177.66, "x": 59.23, "y": -5.35, "color": "7561bfff" },
  42. { "name": "bone38", "parent": "bone37", "length": 29.05, "rotation": 0.66, "x": 27.95, "color": "7561bfff" },
  43. { "name": "bone39", "parent": "bone38", "length": 21.04, "rotation": -0.12, "x": 29.05, "color": "7561bfff" },
  44. { "name": "bone40", "parent": "bone39", "length": 18.21, "rotation": 1.42, "x": 21.04, "color": "7561bfff" },
  45. { "name": "bone41", "parent": "bone4", "length": 14.91, "rotation": 146.43, "x": 74.1, "y": 14.85, "color": "388b2fff" },
  46. { "name": "bone42", "parent": "root", "x": 414.89, "y": 108.94, "color": "6916b2ff" },
  47. { "name": "bone43", "parent": "bone42", "length": 15, "rotation": -118.13, "x": 17.51, "y": 24.98, "color": "3b9ec3ff" },
  48. { "name": "bone44", "parent": "bone4", "length": 20.85, "rotation": -149.36, "x": 74.1, "y": -23.21, "color": "5ba8d2ff" },
  49. { "name": "bone63", "parent": "bone3", "length": 19.71, "rotation": -131.46, "x": 103.81, "y": -443.8, "color": "bdc85cff" },
  50. { "name": "bone64", "parent": "bone63", "length": 24.38, "rotation": -157.04, "x": 23.07, "y": -0.27, "color": "bdc85cff" },
  51. { "name": "bone65", "parent": "bone64", "length": 21.49, "rotation": -2.18, "x": 24.38, "color": "bdc85cff" },
  52. { "name": "bone45", "parent": "bone65", "length": 15, "rotation": -20.25, "x": 10.13, "y": -3.07, "color": "3b9ec3ff" },
  53. { "name": "bone47", "parent": "bone4", "length": 12.71, "rotation": 165.31, "x": 17.24, "y": 21, "color": "d968c2ff" },
  54. { "name": "bone48", "parent": "bone47", "length": 14.41, "rotation": 6.68, "x": 12.71, "color": "d968c2ff" },
  55. { "name": "bone49", "parent": "bone48", "length": 9.86, "rotation": 20.47, "x": 15.33, "y": 0.18, "color": "d968c2ff" },
  56. { "name": "bone50", "parent": "bone49", "length": 10.58, "rotation": 31.62, "x": 9.86, "color": "d968c2ff" },
  57. { "name": "bone51", "parent": "bone50", "length": 13.4, "rotation": 35.67, "x": 10.58, "color": "d968c2ff" },
  58. { "name": "bone52", "parent": "bone4", "length": 12.23, "rotation": 154.1, "x": 15.35, "y": -30.43, "color": "b763ebff" },
  59. { "name": "bone53", "parent": "bone52", "length": 10.47, "rotation": 16.2, "x": 14.73, "y": 0.68, "color": "b763ebff" },
  60. { "name": "bone54", "parent": "bone53", "length": 8.87, "rotation": 26.29, "x": 11.63, "y": 0.59, "color": "b763ebff" },
  61. { "name": "bone55", "parent": "bone54", "length": 9.67, "rotation": 19.1, "x": 9.56, "y": 0.16, "color": "b763ebff" },
  62. { "name": "bone56", "parent": "bone4", "length": 17.27, "rotation": -165.69, "x": 16.4, "y": -38.06, "color": "34128dff" },
  63. { "name": "bone57", "parent": "bone56", "length": 12.4, "rotation": -11, "x": 18.2, "y": -0.18, "color": "34128dff" },
  64. { "name": "bone58", "parent": "bone57", "length": 9.71, "rotation": -22.83, "x": 13.97, "y": -0.31, "color": "34128dff" },
  65. { "name": "bone59", "parent": "bone58", "length": 10.68, "rotation": -18.59, "x": 9.98, "y": -0.23, "color": "34128dff" },
  66. { "name": "bone60", "parent": "bone3", "length": 27.36, "rotation": 140.76, "x": 111.23, "y": -360.03, "color": "2e48adff" },
  67. { "name": "bone61", "parent": "bone60", "length": 18.58, "rotation": 109.58, "x": 27.29, "y": -1.08, "color": "2e48adff" },
  68. { "name": "bone62", "parent": "bone61", "length": 23.82, "rotation": 14.3, "x": 18.58, "color": "2e48adff" },
  69. { "name": "bone66", "parent": "bone30", "x": 4.93, "y": 2.16 },
  70. { "name": "bone67", "parent": "bone29", "x": 3.95, "y": -1.84 },
  71. { "name": "bone68", "parent": "bone3", "length": 35.34, "rotation": 67.55, "x": 9.96, "y": -160.3 },
  72. { "name": "bone70", "parent": "root", "length": 20.13, "rotation": 127.07, "x": 125.36, "y": 115.36 }
  73. ],
  74. "slots": [
  75. { "name": "toufa8", "bone": "bone37", "attachment": "toufa8" },
  76. { "name": "toufa7", "bone": "bone47", "attachment": "toufa7" },
  77. { "name": "toufa6", "bone": "bone56", "attachment": "toufa6" },
  78. { "name": "zuoshou 1", "bone": "bone60", "attachment": "zuoshou 1" },
  79. { "name": "youjiap", "bone": "bone31", "attachment": "youjiap" },
  80. { "name": "zuojiap", "bone": "bone34", "attachment": "zuojiap" },
  81. { "name": "zuoshou", "bone": "bone5", "attachment": "zuoshou" },
  82. { "name": "qunzi", "bone": "bone11", "attachment": "qunzi" },
  83. { "name": "shangshen", "bone": "bone2", "attachment": "shangshen" },
  84. { "name": "youshou", "bone": "bone8", "attachment": "youshou" },
  85. { "name": "tou", "bone": "bone4", "attachment": "tou" },
  86. { "name": "zuiba", "bone": "bone26", "attachment": "zuiba" },
  87. { "name": "zuiba 2", "bone": "bone26", "attachment": "zuiba 2" },
  88. { "name": "zuoyan", "bone": "bone30", "attachment": "zuoyan" },
  89. { "name": "youyan", "bone": "bone29", "attachment": "youyan" },
  90. { "name": "meimao", "bone": "bone28", "attachment": "meimao" },
  91. { "name": "toufa5", "bone": "bone52", "attachment": "toufa5" },
  92. { "name": "toufa4", "bone": "bone44", "attachment": "toufa4" },
  93. { "name": "erduo", "bone": "bone4", "attachment": "erduo" },
  94. { "name": "toufa3", "bone": "bone41", "attachment": "toufa3" },
  95. { "name": "toufa2", "bone": "bone41", "attachment": "toufa2" },
  96. { "name": "toufa1", "bone": "bone44", "attachment": "toufa1" },
  97. { "name": "biyan", "bone": "bone27" },
  98. { "name": "tong hou", "bone": "bone42", "attachment": "tong hou" },
  99. { "name": "jitui", "bone": "bone42", "attachment": "jitui" },
  100. { "name": "jitui 1", "bone": "bone43", "attachment": "jitui 1" },
  101. { "name": "jitui 2", "bone": "bone45", "attachment": "jitui 1" },
  102. { "name": "jituiuao", "bone": "bone43" },
  103. { "name": "jituiuao2", "bone": "bone45" },
  104. { "name": "jituiuao wu", "bone": "bone43" },
  105. { "name": "jituiuao wu2", "bone": "bone45" },
  106. { "name": "tong", "bone": "bone42", "attachment": "tong" },
  107. { "name": "zuoshou1", "bone": "bone61", "attachment": "zuoshou1" },
  108. { "name": "youshou 2", "bone": "bone63", "attachment": "youshou 2" },
  109. { "name": "youshou1", "bone": "bone64", "attachment": "youshou1" },
  110. { "name": "zuoyanzhu", "bone": "bone66", "attachment": "zuoyanzhu" },
  111. { "name": "youyanzhu", "bone": "bone67", "attachment": "youyanzhu" },
  112. { "name": "biyan2", "bone": "bone27", "attachment": "biyan2" },
  113. { "name": "youshou3", "bone": "bone68", "attachment": "youshou3" },
  114. { "name": "jituihu2", "bone": "bone70", "attachment": "jituihu" }
  115. ],
  116. "skins": {
  117. "default": {
  118. "biyan": {
  119. "biyan": { "x": 0.11, "y": -1.42, "rotation": -86.7, "width": 48, "height": 9 }
  120. },
  121. "biyan2": {
  122. "biyan2": { "x": 3.62, "y": -1.15, "rotation": -86.7, "width": 50, "height": 11 }
  123. },
  124. "erduo": {
  125. "erduo": { "x": 21.09, "y": -30.92, "rotation": -86.7, "width": 19, "height": 27 }
  126. },
  127. "jitui": {
  128. "jitui": { "x": -1.68, "y": 19.51, "width": 35, "height": 34 }
  129. },
  130. "jitui 1": {
  131. "jitui 1": {
  132. "type": "mesh",
  133. "uvs": [ 1, 0.55514, 1, 0.71155, 1, 1, 0, 1, 0, 0.69417, 0, 0.48852, 0, 0.21914, 0, 0, 1, 0 ],
  134. "triangles": [ 6, 7, 8, 0, 5, 6, 0, 6, 8, 1, 4, 5, 1, 5, 0, 2, 3, 4, 2, 4, 1 ],
  135. "vertices": [ 7.54, 8.87, 11.54, 11.01, 18.92, 14.95, 29.29, -4.45, 21.47, -8.63, 16.21, -11.44, 9.32, -15.13, 3.72, -18.12, -6.66, 1.28 ],
  136. "hull": 9,
  137. "edges": [ 4, 6, 14, 16, 4, 2, 10, 2, 6, 8, 8, 10, 8, 4, 10, 12, 12, 14, 2, 0, 0, 16, 12, 0 ],
  138. "width": 22,
  139. "height": 29
  140. }
  141. },
  142. "jitui 2": {
  143. "jitui 1": {
  144. "type": "mesh",
  145. "uvs": [ 1, 0.55514, 1, 0.71155, 1, 1, 0, 1, 0, 0.69417, 0, 0.48852, 0, 0.21914, 0, 0, 1, 0 ],
  146. "triangles": [ 6, 7, 8, 0, 5, 6, 0, 6, 8, 1, 4, 5, 1, 5, 0, 2, 3, 4, 2, 4, 1 ],
  147. "vertices": [ 7.54, 8.87, 11.54, 11.01, 18.92, 14.95, 29.29, -4.45, 21.47, -8.63, 16.21, -11.44, 9.32, -15.13, 3.72, -18.12, -6.66, 1.28 ],
  148. "hull": 9,
  149. "edges": [ 4, 6, 14, 16, 4, 2, 10, 2, 6, 8, 8, 10, 8, 4, 10, 12, 12, 14, 2, 0, 0, 16, 12, 0 ],
  150. "width": 22,
  151. "height": 29
  152. }
  153. },
  154. "jituihu2": {
  155. "jituihu": { "x": 7.01, "y": 0.53, "rotation": -127.07, "width": 22, "height": 29 }
  156. },
  157. "jituiuao": {
  158. "jituiuao": {
  159. "type": "mesh",
  160. "uvs": [ 1, 1, 0.59389, 1, 0, 1, 0, 0.64703, 0, 0.33034, 0, 0, 1, 0 ],
  161. "triangles": [ 4, 5, 6, 1, 3, 4, 1, 2, 3, 1, 4, 0, 0, 4, 6 ],
  162. "vertices": [ 18.87, 15.03, 23.08, 7.15, 29.24, -4.37, 20.21, -9.2, 12.11, -13.53, 3.67, -18.05, -6.71, 1.36 ],
  163. "hull": 7,
  164. "edges": [ 10, 12, 0, 12, 4, 6, 0, 2, 2, 4, 6, 2, 6, 8, 8, 10, 8, 0 ],
  165. "width": 22,
  166. "height": 29
  167. }
  168. },
  169. "jituiuao wu": {
  170. "jituiuao wu": { "x": 11.05, "y": -1.85, "rotation": 118.13, "width": 22, "height": 29 }
  171. },
  172. "jituiuao wu2": {
  173. "jituiuao wu": { "x": 11.05, "y": -1.85, "rotation": 118.13, "width": 22, "height": 29 }
  174. },
  175. "jituiuao2": {
  176. "jituiuao": {
  177. "type": "mesh",
  178. "uvs": [ 1, 1, 0.59389, 1, 0, 1, 0, 0.64703, 0, 0.33034, 0, 0, 1, 0 ],
  179. "triangles": [ 4, 5, 6, 1, 3, 4, 1, 2, 3, 1, 4, 0, 0, 4, 6 ],
  180. "vertices": [ 18.87, 15.03, 23.08, 7.15, 29.24, -4.37, 20.21, -9.2, 12.11, -13.53, 3.67, -18.05, -6.71, 1.36 ],
  181. "hull": 7,
  182. "edges": [ 10, 12, 0, 12, 4, 6, 0, 2, 2, 4, 6, 2, 6, 8, 8, 10, 8, 0 ],
  183. "width": 22,
  184. "height": 29
  185. }
  186. },
  187. "meimao": {
  188. "meimao": { "x": 3.13, "y": -1.26, "rotation": -86.7, "width": 61, "height": 9 }
  189. },
  190. "qunzi": {
  191. "qunzi": {
  192. "type": "mesh",
  193. "uvs": [ 0.81237, 0.0885, 0.84247, 0.2232, 0.89152, 0.36506, 0.926, 0.47754, 0.9634, 0.61029, 1, 0.73012, 1, 0.84895, 1, 0.94584, 0.92174, 1, 0.71174, 1, 0.46487, 1, 0.2195, 1, 0.1015, 1, 0.05064, 0.95438, 0, 0.90897, 0.01597, 0.79187, 0.03973, 0.66375, 0.08291, 0.49411, 0.13184, 0.35032, 0.17498, 0.22864, 0.21518, 0.10693, 0.21806, 0, 0.34914, 0, 0.41567, 0, 0.49158, 0, 0.56856, 0, 0.64292, 0, 0.80806, 0, 0.33842, 0.10313, 0.30469, 0.2234, 0.27436, 0.35183, 0.24039, 0.49193, 0.18378, 0.65455, 0.12176, 0.79542, 0.08459, 0.90496, 0.49162, 0.0984, 0.48822, 0.21901, 0.48778, 0.35641, 0.4864, 0.48616, 0.47623, 0.63745, 0.46994, 0.78583, 0.46736, 0.88154, 0.66279, 0.09311, 0.69623, 0.21403, 0.72099, 0.3614, 0.75552, 0.47985, 0.78628, 0.61931, 0.83071, 0.74791, 0.86604, 0.85714, 0.4112, 0.10088, 0.38697, 0.22143, 0.37404, 0.35397, 0.34333, 0.48952, 0.30772, 0.6473, 0.27304, 0.79125, 0.24141, 0.89536, 0.56833, 0.09603, 0.56869, 0.21708, 0.58787, 0.35855, 0.61271, 0.4832, 0.64281, 0.6277, 0.66968, 0.76484, 0.68342, 0.86873 ],
  194. "triangles": [ 34, 15, 33, 14, 15, 34, 13, 14, 34, 11, 12, 34, 13, 34, 12, 55, 11, 34, 33, 16, 32, 33, 32, 54, 15, 16, 33, 55, 33, 54, 34, 33, 55, 32, 17, 31, 32, 31, 53, 16, 17, 32, 54, 32, 53, 30, 19, 29, 18, 19, 30, 30, 29, 51, 52, 30, 51, 31, 18, 30, 31, 30, 52, 17, 18, 31, 53, 31, 52, 49, 22, 23, 28, 21, 22, 28, 22, 49, 20, 21, 28, 50, 28, 49, 29, 20, 28, 29, 28, 50, 19, 20, 29, 51, 29, 50, 56, 24, 25, 35, 24, 56, 23, 24, 35, 49, 23, 35, 35, 56, 57, 36, 49, 35, 36, 35, 57, 50, 49, 36, 37, 50, 36, 37, 36, 57, 51, 50, 37, 58, 37, 57, 38, 51, 37, 38, 37, 58, 38, 58, 59, 52, 51, 38, 39, 38, 59, 39, 52, 38, 39, 59, 60, 53, 52, 39, 40, 53, 39, 61, 39, 60, 61, 40, 39, 54, 53, 40, 41, 54, 40, 62, 41, 40, 62, 40, 61, 55, 54, 41, 10, 55, 41, 11, 55, 10, 10, 41, 62, 9, 10, 62, 48, 47, 5, 6, 48, 5, 48, 6, 7, 8, 48, 7, 9, 48, 8, 47, 4, 5, 61, 46, 47, 62, 61, 47, 62, 47, 48, 9, 62, 48, 46, 45, 3, 46, 3, 4, 60, 45, 46, 47, 46, 4, 61, 60, 46, 44, 43, 1, 58, 43, 44, 44, 1, 2, 45, 44, 2, 45, 2, 3, 59, 58, 44, 59, 44, 45, 60, 59, 45, 42, 26, 27, 42, 27, 0, 56, 25, 26, 42, 56, 26, 43, 42, 0, 57, 56, 42, 57, 42, 43, 43, 0, 1, 58, 57, 43 ],
  195. "vertices": [ 2, 21, 2.51, 12.35, 0.84384, 22, -9.16, 11.96, 0.15616, 3, 21, 11.47, 11.81, 0.34718, 22, -0.2, 11.65, 0.6498, 23, -13.92, 11.77, 0.00302, 5, 21, 21.37, 12.58, 0.00968, 22, 9.68, 12.68, 0.74489, 23, -4.04, 12.8, 0.23946, 24, -18.1, 13.98, 0.00115, 25, -25.36, 18.9, 0.00483, 4, 22, 17.4, 13.16, 0.24534, 23, 3.68, 13.27, 0.65911, 24, -10.37, 13.93, 0.04159, 25, -17.76, 17.42, 0.05396, 4, 22, 26.42, 13.46, 0.01376, 23, 12.71, 13.57, 0.48959, 24, -1.34, 13.62, 0.21185, 25, -8.95, 15.44, 0.28479, 3, 23, 20.93, 14.06, 0.11711, 24, 6.89, 13.56, 0.17922, 25, -0.87, 13.86, 0.70367, 3, 23, 28.16, 11.72, 0.00512, 24, 13.95, 10.74, 0.00971, 25, 5.55, 9.77, 0.98517, 1, 25, 10.78, 6.44, 1, 3, 24, 20.55, 1.19, 0.01449, 25, 10.26, -0.83, 0.98486, 20, 16.23, 36.29, 6.5E-4, 5, 23, 30.08, -13.75, 0.01212, 24, 14.15, -14.8, 0.676, 25, 1.01, -15.36, 0.00684, 20, 15.69, 19.08, 0.30423, 19, 25.93, 19.56, 8.0E-4, 5, 24, 6.63, -33.6, 0.00122, 20, 15.06, -1.15, 0.98712, 13, 20.49, 30.47, 4.5E-4, 14, 5.51, 30.83, 0.00693, 15, -4.17, 30.79, 0.00428, 5, 20, 14.43, -21.26, 0.2523, 19, 25.93, -20.8, 0.00523, 13, 28.92, 12.2, 0.00872, 14, 14.5, 12.83, 0.24295, 15, 4.98, 12.87, 0.49081, 3, 20, 14.12, -30.93, 0.02826, 14, 18.82, 4.17, 0.00714, 15, 9.38, 4.26, 0.96459, 2, 20, 11.08, -35.01, 3.7E-4, 15, 8.68, -0.79, 0.99963, 2, 14, 17.33, -5.88, 0.03691, 15, 7.98, -5.81, 0.96309, 3, 13, 23.81, -8.53, 0.00784, 14, 10.04, -8.06, 0.45722, 15, 0.71, -8.05, 0.53494, 3, 13, 15.55, -10.2, 0.27225, 14, 1.83, -9.98, 0.67269, 15, -7.48, -10.05, 0.05506, 3, 12, 17.99, -12.11, 0.11439, 13, 4.2, -11.53, 0.77626, 14, -9.46, -11.66, 0.10935, 4, 11, 18.57, -12.02, 0.02108, 12, 7.99, -11.27, 0.67118, 13, -5.83, -11.74, 0.30663, 14, -19.49, -12.18, 0.00111, 3, 11, 10.12, -10.71, 0.34519, 12, -0.52, -10.41, 0.61886, 13, -14.39, -11.78, 0.03595, 3, 11, 1.73, -9.64, 0.90084, 12, -8.96, -9.79, 0.09916, 13, -22.84, -12.05, 0, 2, 11, -4.92, -11.26, 0.99647, 12, -15.51, -11.76, 0.00353, 2, 16, -7.96, -10.92, 0.16133, 11, -7.82, -0.9, 0.83867, 3, 21, -13.65, -16.44, 0.00291, 16, -7.96, -5.46, 0.54805, 11, -9.29, 4.35, 0.44904, 3, 21, -11.58, -10.57, 0.11268, 16, -7.96, 0.76, 0.80916, 11, -10.97, 10.34, 0.07816, 3, 21, -9.48, -4.62, 0.47305, 16, -7.96, 7.07, 0.52657, 11, -12.67, 16.42, 3.8E-4, 2, 21, -7.45, 1.13, 0.86565, 16, -7.96, 13.17, 0.13435, 2, 21, -2.94, 13.9, 0.95148, 22, -14.66, 13.36, 0.04852, 2, 16, -1.36, -11.8, 0.03251, 11, -1.23, 0.03, 0.96749, 2, 11, 6.93, -0.56, 0.98842, 12, -4.25, -0.45, 0.01158, 2, 12, 4.33, -0.17, 0.99942, 13, -10.64, -1.08, 5.8E-4, 2, 12, 13.72, 0.07, 0.73459, 13, -1.33, 0.14, 0.26541, 3, 20, -7.76, -23.5, 8.2E-4, 19, 3.82, -23.73, 0.00247, 13, 10.07, 0.28, 0.99671, 1, 14, 6.37, -0.19, 1, 2, 20, 8, -32.13, 9.7E-4, 15, 4.59, 0.25, 0.99903, 3, 21, -5.64, -12.66, 0.05356, 16, -1.67, 0.77, 0.9322, 11, -4.91, 12.04, 0.01425, 3, 21, 1.54, -15.5, 0.00915, 22, -9.4, -15.91, 1.3E-4, 16, 6.05, 0.49, 0.99072, 5, 21, 9.82, -18.46, 0.00523, 22, -1.04, -18.65, 0.00436, 23, -14.77, -18.53, 6.7E-4, 17, 5.29, 0.65, 0.9857, 16, 14.85, 0.45, 0.00404, 5, 21, 17.62, -21.33, 6.8E-4, 22, 6.82, -21.31, 0.00499, 23, -6.9, -21.19, 0.00563, 18, 3.49, 0.84, 0.97095, 17, 13.59, 0.84, 0.01776, 5, 22, 15.78, -25.08, 1.2E-4, 23, 2.05, -24.97, 0.00211, 24, -14.56, -24.11, 2.6E-4, 20, -8.11, 0.5, 8.0E-5, 19, 2.73, 0.25, 0.99743, 5, 20, 1.37, -0.31, 0.99733, 12, 25.49, 23.93, 1.0E-5, 13, 7.87, 25.11, 0.00157, 14, -6.94, 25.08, 9.6E-4, 15, -16.57, 24.93, 1.3E-4, 5, 20, 7.48, -0.71, 0.99489, 19, 18.35, -0.48, 5.3E-4, 13, 13.52, 27.48, 0.0011, 14, -1.36, 27.62, 0.0025, 15, -11.02, 27.52, 9.9E-4, 3, 21, -1.29, 0.68, 0.99129, 22, -12.66, 0.19, 1.7E-4, 16, -2, 14.8, 0.00855, 2, 21, 6.92, 0.69, 0.98676, 22, -4.45, 0.42, 0.01324, 6, 21, 16.49, -0.53, 0.00452, 22, 5.15, -0.55, 0.98534, 23, -8.57, -0.43, 0.0017, 18, -5.19, 19.77, 0.00316, 17, 4.9, 19.77, 0.00429, 16, 15.17, 19.57, 9.9E-4, 7, 21, 24.58, -0.38, 1.0E-5, 22, 13.23, -0.19, 0.8634, 23, -0.49, -0.07, 0.13514, 20, -17.47, 23.71, 0, 19, -7.36, 23.15, 1.0E-4, 18, 2.28, 22.88, 0.00105, 17, 12.37, 22.88, 3.1E-4, 5, 23, 8.78, -0.43, 0.99589, 20, -8.47, 25.95, 9.5E-4, 19, 1.57, 25.68, 0.00133, 18, 11.11, 25.72, 0.00182, 17, 21.2, 25.73, 1.0E-5, 2, 24, 2.8, 0.25, 0.99348, 25, -7.36, 1.53, 0.00652, 1, 25, 0.09, 0.22, 1, 2, 16, -1.51, -5.83, 0.53855, 11, -2.98, 5.74, 0.46145, 3, 17, -3.04, -7.93, 0.03849, 16, 6.21, -7.82, 0.37065, 11, 4.99, 5.9, 0.59085, 6, 19, -15.42, -8.13, 0.02449, 18, -4.63, -8.68, 0.04348, 17, 5.48, -8.68, 0.32854, 16, 14.69, -8.88, 0.05072, 11, 13.44, 7.17, 0.25542, 12, 1.84, 7.62, 0.29736, 6, 19, -6.74, -10.65, 0.24596, 18, 4.13, -10.88, 0.11377, 17, 14.24, -10.87, 0.05922, 11, 22.48, 7.08, 0.01252, 12, 10.86, 8.02, 0.47556, 13, -5, 7.74, 0.09297, 7, 20, -7.91, -13.33, 0.04407, 19, 3.36, -13.57, 0.38519, 18, 14.33, -13.43, 3.2E-4, 12, 21.37, 8.49, 0.062, 13, 5.39, 9.32, 0.47259, 14, -8.93, 9.21, 0.03575, 15, -18.41, 9.05, 8.0E-5, 6, 20, 1.21, -16.46, 0.22204, 19, 12.57, -16.41, 0.15616, 12, 31, 8.75, 3.9E-4, 13, 14.95, 10.59, 0.23977, 14, 0.59, 10.79, 0.33284, 15, -8.92, 10.7, 0.0488, 5, 20, 7.79, -19.26, 0.27402, 19, 19.23, -19, 0.03497, 13, 22.08, 11.03, 0.04954, 14, 7.71, 11.44, 0.37435, 15, -1.8, 11.43, 0.26712, 2, 21, -3.69, -6.68, 0.45009, 16, -1.82, 7.06, 0.54991, 4, 21, 3.62, -9.23, 0.38362, 22, -7.48, -9.59, 0.00879, 17, -3.87, 6.95, 0.0327, 16, 5.93, 7.09, 0.57489, 6, 21, 12.69, -10.76, 0.18218, 22, 1.62, -10.88, 0.20602, 23, -12.11, -10.76, 0.02729, 18, -4.98, 8.86, 0.09839, 17, 5.12, 8.85, 0.37004, 16, 14.98, 8.66, 0.11607, 9, 21, 20.89, -11.5, 0.02324, 22, 9.83, -11.4, 0.22804, 23, -3.89, -11.28, 0.22408, 24, -19.57, -10.06, 1.4E-4, 20, -17.63, 12, 7.0E-4, 19, -7.15, 11.44, 0.01699, 18, 2.92, 11.18, 0.36488, 17, 13.02, 11.18, 0.13689, 16, 22.96, 10.69, 0.00504, 7, 22, 19.39, -11.9, 0.02033, 23, 5.67, -11.78, 0.49154, 24, -10.07, -11.2, 0.05154, 20, -8.3, 14.18, 0.05721, 19, 2.1, 13.91, 0.15305, 18, 12.07, 13.98, 0.21768, 17, 22.17, 13.99, 0.00866, 5, 23, 14.69, -12.39, 0.28169, 24, -1.1, -12.41, 0.34012, 20, 0.54, 16.11, 0.22782, 19, 10.88, 16.11, 0.10651, 18, 20.77, 16.51, 0.04386, 5, 23, 21.37, -13.37, 0.08316, 24, 5.49, -13.84, 0.55381, 20, 7.22, 17.02, 0.32483, 19, 17.53, 17.24, 0.03091, 18, 27.37, 17.87, 0.00728 ],
  196. "hull": 28,
  197. "edges": [ 42, 40, 40, 38, 38, 36, 36, 34, 34, 32, 32, 30, 28, 30, 22, 24, 16, 14, 54, 0, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 42, 44, 56, 40, 44, 56, 58, 38, 56, 58, 60, 36, 58, 60, 62, 34, 60, 62, 64, 32, 62, 64, 66, 30, 64, 66, 68, 28, 66, 68, 24, 26, 26, 28, 68, 26, 48, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 20, 52, 54, 0, 84, 52, 84, 2, 86, 84, 86, 4, 88, 86, 88, 6, 90, 88, 90, 8, 92, 90, 92, 10, 94, 92, 94, 12, 96, 94, 96, 96, 16, 44, 46, 46, 48, 56, 98, 98, 70, 46, 98, 58, 100, 100, 72, 98, 100, 60, 102, 102, 74, 100, 102, 62, 104, 104, 76, 102, 104, 64, 106, 106, 78, 104, 106, 66, 108, 108, 80, 106, 108, 68, 110, 110, 82, 108, 110, 110, 22, 48, 50, 50, 52, 70, 112, 112, 84, 50, 112, 72, 114, 114, 86, 112, 114, 74, 116, 116, 88, 114, 116, 76, 118, 118, 90, 116, 118, 78, 120, 120, 92, 118, 120, 80, 122, 122, 94, 120, 122, 82, 124, 124, 96, 122, 124, 124, 18, 18, 20, 16, 18, 20, 22 ],
  198. "width": 82,
  199. "height": 64
  200. }
  201. },
  202. "shangshen": {
  203. "shangshen": {
  204. "type": "mesh",
  205. "uvs": [ 0.70713, 0.04282, 0.77481, 0.09795, 1, 0.28142, 1, 0.73803, 0.98122, 0.83461, 0.9611, 0.93805, 0.95729, 1, 0.42992, 1, 0.05296, 1, 0.06058, 0.92167, 0.05709, 0.85339, 0.05296, 0.77238, 0, 0.6855, 0, 0.42487, 0.18899, 0.11661, 0.22363, 0.06011, 0.26048, 0, 0.45087, 0, 0.65458, 0, 0.43465, 0.77451, 0.43055, 0.9255, 0.43258, 0.8508, 0.44858, 0.10915, 0.4498, 0.05094, 0.17481, 0.55962, 0.7669, 0.54951, 0.44387, 0.33406 ],
  206. "triangles": [ 23, 16, 17, 23, 17, 18, 23, 18, 0, 15, 16, 23, 22, 15, 23, 22, 23, 0, 22, 0, 1, 14, 15, 22, 26, 14, 22, 24, 13, 14, 1, 26, 22, 25, 1, 2, 25, 26, 1, 26, 24, 14, 12, 13, 24, 25, 2, 3, 11, 12, 24, 19, 24, 26, 19, 26, 25, 11, 24, 19, 19, 25, 3, 4, 19, 3, 19, 10, 11, 21, 19, 4, 21, 10, 19, 9, 10, 21, 20, 9, 21, 5, 21, 4, 20, 21, 5, 7, 9, 20, 6, 7, 20, 8, 9, 7, 5, 6, 20 ],
  207. "vertices": [ 3, 2, 43.87, -13.75, 9.2E-4, 3, 31.36, -13.29, 0.71658, 4, 2.44, -13.24, 0.28251, 3, 2, 41.24, -17.32, 0.00796, 3, 28.79, -16.9, 0.8337, 4, -0.05, -16.91, 0.15834, 3, 2, 32.48, -29.21, 0.08711, 3, 20.21, -28.92, 0.89191, 4, -8.36, -29.11, 0.02098, 2, 2, 10.11, -29.66, 0.52588, 3, -2.15, -29.69, 0.47412, 2, 2, 5.36, -28.78, 0.63464, 3, -6.91, -28.88, 0.36536, 2, 2, 0.27, -27.83, 0.72257, 3, -12.02, -28.01, 0.27743, 2, 2, -2.77, -27.7, 0.74049, 3, -15.06, -27.92, 0.25951, 1, 2, -3.31, -0.28, 1, 2, 2, -3.71, 19.32, 0.91674, 3, -16.69, 19.08, 0.08326, 2, 2, 0.14, 19, 0.88313, 3, -12.84, 18.81, 0.11687, 2, 2, 3.48, 19.25, 0.79609, 3, -9.5, 19.11, 0.20391, 2, 2, 7.45, 19.54, 0.62482, 3, -5.55, 19.46, 0.37518, 2, 2, 11.65, 22.38, 0.426, 3, -1.39, 22.36, 0.574, 2, 2, 24.41, 22.64, 0.10841, 3, 11.38, 22.81, 0.89159, 2, 3, 26.81, 13.51, 0.85786, 4, -2.72, 13.45, 0.14214, 2, 3, 29.64, 11.81, 0.73785, 4, 0.15, 11.81, 0.26215, 2, 3, 32.65, 9.99, 0.61164, 4, 3.2, 10.07, 0.38836, 1, 4, 3.77, 0.19, 1, 2, 3, 33.37, -10.49, 0.60542, 4, 4.38, -10.39, 0.39458, 2, 2, 7.74, -0.3, 0.99935, 3, -4.96, -0.38, 6.5E-4, 1, 2, 0.34, -0.24, 1, 2, 2, 4, -0.27, 0.99996, 3, -8.7, -0.4, 4.0E-5, 1, 3, 27.65, 0.03, 1, 1, 4, 1.27, 0.1, 1, 2, 2, 18, 13.42, 0.20977, 3, 5.09, 13.49, 0.79023, 3, 2, 19.11, -17.36, 0.24783, 3, 6.66, -17.26, 0.75151, 4, -22.17, -17.77, 6.5E-4, 2, 2, 29.33, -0.35, 0.33781, 3, 16.63, -0.1, 0.66219 ],
  208. "hull": 19,
  209. "edges": [ 24, 26, 24, 22, 4, 6, 10, 12, 32, 34, 34, 36, 12, 14, 14, 16, 22, 38, 38, 6, 16, 18, 14, 40, 18, 40, 40, 10, 18, 20, 20, 22, 38, 42, 42, 40, 20, 42, 6, 8, 8, 10, 42, 8, 26, 28, 28, 44, 4, 2, 44, 2, 28, 30, 30, 32, 34, 46, 46, 44, 30, 46, 2, 0, 0, 36, 46, 0, 38, 52, 52, 44 ],
  210. "width": 52,
  211. "height": 49
  212. }
  213. },
  214. "tong": {
  215. "tong": { "x": 1.5, "y": -0.64, "width": 36, "height": 28 }
  216. },
  217. "tong hou": {
  218. "tong hou": { "x": 1.39, "y": 11.6, "width": 36, "height": 5 }
  219. },
  220. "tou": {
  221. "tou": { "x": 39.56, "y": -3.81, "rotation": -86.7, "width": 71, "height": 87 }
  222. },
  223. "toufa1": {
  224. "toufa1": {
  225. "type": "mesh",
  226. "uvs": [ 0.67395, 0.16821, 0.89283, 0.3122, 1, 0.4517, 1, 0.7577, 0.67395, 1, 0.35247, 1, 0.49611, 0.6002, 0.43455, 0.3662, 0, 0, 0.27039, 0 ],
  227. "triangles": [ 7, 9, 0, 8, 9, 7, 1, 6, 7, 1, 7, 0, 6, 1, 2, 3, 6, 2, 4, 6, 3, 5, 6, 4 ],
  228. "vertices": [ 34.68, 1.2, 42.06, 3.55, 48, 3.5, 58.32, -1.84, 62.76, -13.31, 59.07, -20.45, 47.22, -10.28, 38.62, -7.57, 21.27, -10.83, 24.37, -4.82 ],
  229. "hull": 10,
  230. "edges": [ 16, 14, 14, 12, 12, 10, 16, 18, 18, 0, 0, 2, 2, 4, 8, 10, 4, 6, 8, 6 ],
  231. "width": 25,
  232. "height": 38
  233. }
  234. },
  235. "toufa2": {
  236. "toufa2": {
  237. "type": "mesh",
  238. "uvs": [ 1, 0.34073, 0.6431, 0.33004, 0.3201, 0.47165, 0.1871, 0.62128, 0, 0.75487, 0.0095, 0.43158, 0.15543, 0.19111, 0.38976, 0.02405, 1, 0 ],
  239. "triangles": [ 1, 7, 8, 1, 8, 0, 2, 6, 7, 2, 7, 1, 5, 6, 2, 3, 5, 2, 4, 5, 3 ],
  240. "vertices": [ -9.39, 30.63, 1.63, 14.81, 19.34, 6.29, 31.31, 6.29, 44.22, 3.34, 27.35, -8.67, 10.31, -11.6, -5.83, -7.89, -26.83, 17.55 ],
  241. "hull": 9,
  242. "edges": [ 8, 6, 6, 4, 4, 2, 0, 16, 2, 0, 14, 16, 14, 12, 8, 10, 12, 10 ],
  243. "width": 54,
  244. "height": 64
  245. }
  246. },
  247. "toufa3": {
  248. "toufa3": {
  249. "type": "mesh",
  250. "uvs": [ 1, 0.09384, 0.70299, 0.32817, 0.45426, 0.68917, 0.32213, 0.90767, 0.13947, 1, 0, 1, 0.11226, 0.8285, 0.1006, 0.57517, 0.17833, 0.37567, 0.34933, 0.18884, 0.68356, 0, 1, 0 ],
  251. "triangles": [ 5, 6, 4, 4, 6, 3, 3, 6, 2, 6, 7, 2, 7, 8, 2, 8, 9, 2, 2, 9, 1, 9, 10, 1, 1, 10, 0, 10, 11, 0 ],
  252. "vertices": [ 1, 41, -2.78, 15.59, 1, 1, 41, 15.18, 12.73, 1, 1, 41, 37.35, 15.67, 1, 1, 41, 50.27, 18.1, 1, 1, 41, 59.08, 14.66, 1, 1, 41, 62.77, 9.75, 1, 1, 41, 52.39, 8.15, 1, 1, 41, 41.76, -0.47, 1, 1, 41, 31.09, -4.2, 1, 1, 41, 18.5, -4.24, 1, 1, 41, 1.52, 1.41, 1, 1, 41, -6.83, 12.55, 1 ],
  253. "hull": 12,
  254. "edges": [ 8, 10, 8, 6, 6, 4, 4, 2, 0, 22, 2, 0, 20, 22, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10 ],
  255. "width": 44,
  256. "height": 54
  257. }
  258. },
  259. "toufa4": {
  260. "toufa4": {
  261. "type": "mesh",
  262. "uvs": [ 0.81382, 0.11227, 1, 0.28107, 1, 0.73488, 0.8523, 0.91246, 0.68557, 1, 0.5445, 1, 0.59153, 0.85546, 0.55733, 0.69104, 0.42908, 0.55073, 0.2367, 0.40384, 0, 0.24161, 0, 0, 0.54022, 0 ],
  263. "triangles": [ 9, 10, 11, 12, 9, 11, 8, 9, 12, 8, 12, 0, 8, 0, 1, 7, 8, 1, 7, 1, 2, 3, 6, 7, 2, 3, 7, 4, 6, 3, 5, 6, 4 ],
  264. "vertices": [ 5.53, 13.69, 20.64, 14.26, 52.09, -2, 61.68, -13.6, 64.68, -22.66, 62.09, -27.68, 52.94, -20.83, 40.92, -16.15, 28.84, -15.69, 15.13, -17.26, -0.46, -19.86, -17.2, -11.21, -7.28, 7.99 ],
  265. "hull": 13,
  266. "edges": [ 20, 22, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 22, 24, 24, 0, 0, 2, 2, 4, 4, 6, 8, 10, 6, 8 ],
  267. "width": 40,
  268. "height": 78
  269. }
  270. },
  271. "toufa5": {
  272. "toufa5": {
  273. "type": "mesh",
  274. "uvs": [ 1, 0.31067, 0.82408, 0.46857, 0.75571, 0.57486, 0.69736, 0.65736, 0.67103, 0.72494, 0.61016, 0.83624, 0.7494, 0.91768, 0.89016, 1, 0.72916, 1, 0.61016, 1, 0.47, 0.96195, 0.20136, 0.88903, 0, 0.74444, 1.0E-5, 0.58172, 0.13107, 0.43378, 0.31056, 0.31458, 0.59336, 0.18674, 0.73336, 0, 1, 0, 0.88204, 0.02616, 0.7458, 0.22501, 0.5622, 0.39904, 0.33468, 0.76396, 0.44556, 0.86973, 0.35025, 0.63709, 0.5989, 0.94016, 0.44879, 0.50798 ],
  275. "triangles": [ 23, 22, 5, 11, 22, 23, 25, 23, 5, 25, 5, 6, 10, 23, 25, 11, 23, 10, 8, 9, 25, 10, 25, 9, 6, 8, 25, 8, 6, 7, 22, 12, 24, 22, 24, 4, 5, 22, 4, 11, 12, 22, 14, 15, 26, 26, 21, 2, 24, 14, 26, 13, 14, 24, 3, 26, 2, 24, 26, 3, 4, 24, 3, 12, 13, 24, 19, 17, 18, 20, 17, 19, 16, 17, 20, 19, 18, 0, 20, 19, 0, 21, 15, 16, 21, 16, 20, 1, 20, 0, 21, 20, 1, 26, 15, 21, 2, 21, 1 ],
  276. "vertices": [ 2, 54, -1.66, 8.61, 0.99663, 55, -13.53, 12.19, 0.00337, 3, 54, 8.89, 9.46, 0.66248, 55, -3.15, 10.07, 0.31941, 56, -9.05, 15.04, 0.01811, 4, 54, 15.39, 11.14, 0.14059, 55, 3.55, 9.86, 0.68211, 56, -3.13, 11.89, 0.17417, 57, -8.15, 15.23, 0.00313, 4, 54, 20.49, 12.32, 0.00868, 55, 8.78, 9.57, 0.43684, 56, 1.43, 9.31, 0.50429, 57, -4.69, 11.31, 0.05019, 3, 55, 12.95, 9.85, 0.12268, 56, 5.29, 7.72, 0.66764, 57, -1.56, 8.54, 0.20968, 3, 55, 19.9, 9.9, 0, 56, 11.55, 4.68, 0.04842, 57, 3.36, 3.62, 0.95158, 1, 57, 9.42, 3.9, 1, 1, 57, 15.54, 4.18, 1, 1, 57, 13.39, 0.78, 1, 1, 57, 11.79, -1.73, 1, 1, 57, 7.96, -3.45, 1, 2, 56, 12.33, -6.01, 0.23275, 57, 0.6, -6.74, 0.76725, 3, 55, 17.88, -6.22, 0.2054, 56, 2.59, -8.88, 0.78123, 57, -9.54, -6.26, 0.01336, 3, 54, 24.97, -5.15, 4.2E-4, 55, 8.21, -8.46, 0.95009, 56, -7.07, -6.59, 0.04949, 2, 54, 15.49, -6.69, 0.43094, 55, -1.32, -7.29, 0.56906, 2, 54, 6.96, -6.32, 0.99911, 55, -9.42, -4.55, 8.9E-4, 1, 54, -3.3, -3.96, 1, 1, 54, -14.95, -6.46, 1, 1, 54, -18.2, -0.64, 1, 1, 54, -15.37, -2.44, 1, 1, 54, -3.12, 0.51, 1, 3, 54, 8.38, 1.68, 0.96454, 55, -5.81, 2.73, 0.03515, 56, -14.68, 9.65, 3.0E-4, 2, 55, 17.16, 2.2, 8.2E-4, 56, 5.67, -1.01, 0.99918, 1, 57, 2.88, -0.95, 1, 3, 55, 9.53, 0.84, 0.86796, 56, -1.77, 1.15, 0.13146, 57, -10.38, 4.64, 5.8E-4, 1, 57, 8.56, -0.02, 1, 3, 54, 15.57, 2.45, 0.04059, 55, 1.3, 1.47, 0.95149, 56, -8.87, 5.36, 0.00792 ],
  277. "hull": 19,
  278. "edges": [ 34, 36, 34, 32, 32, 30, 0, 36, 0, 2, 24, 26, 24, 22, 38, 40, 40, 42, 44, 46, 14, 16, 16, 18, 30, 42, 42, 2, 32, 40, 40, 0, 48, 44, 26, 48, 48, 6, 24, 44, 6, 8, 8, 10, 44, 8, 22, 46, 46, 10, 18, 20, 20, 22, 16, 50, 50, 46, 20, 50, 10, 12, 12, 14, 50, 12, 26, 28, 28, 30, 42, 52, 52, 48, 28, 52, 2, 4, 4, 6, 52, 4 ],
  279. "width": 25,
  280. "height": 61
  281. }
  282. },
  283. "toufa6": {
  284. "toufa6": {
  285. "type": "mesh",
  286. "uvs": [ 0.78725, 0.12522, 0.8585, 0.27723, 0.91937, 0.37121, 1, 0.49572, 1, 0.60696, 0.94, 0.74897, 0.71125, 0.87335, 0.4158, 0.95292, 0.241, 1, 0, 1, 0.18186, 0.89317, 0.36925, 0.7831, 0.36196, 0.6743, 0.34075, 0.55497, 0.317, 0.43397, 0.34991, 0.3289, 0.37875, 0.23685, 0.45891, 0.1079, 0.526, 0, 0.623, 0, 0.84425, 0, 0.606, 0.25142, 0.66466, 0.46775, 0.6335, 0.70475, 0.524, 0.826, 0.66243, 0.58163, 0.61895, 0.34342, 0.59553, 0.11752, 0.34763, 0.93444 ],
  287. "triangles": [ 27, 18, 19, 17, 18, 27, 0, 19, 20, 27, 19, 0, 21, 27, 0, 17, 27, 21, 16, 17, 21, 21, 0, 1, 26, 21, 1, 16, 21, 26, 15, 16, 26, 26, 1, 2, 22, 26, 2, 14, 15, 26, 22, 14, 26, 22, 2, 3, 13, 14, 22, 25, 13, 22, 25, 22, 3, 25, 3, 4, 12, 13, 25, 5, 25, 4, 24, 11, 12, 28, 10, 11, 28, 11, 24, 7, 28, 24, 7, 24, 6, 8, 10, 28, 9, 10, 8, 8, 28, 7, 23, 12, 25, 23, 25, 5, 23, 24, 12, 6, 23, 5, 24, 23, 6 ],
  288. "vertices": [ 1, 58, -4.93, 9.09, 1, 1, 58, 6.31, 9.52, 1, 2, 59, -6.76, 9.45, 0.05086, 58, 13.37, 10.38, 0.94914, 3, 60, -15.76, 7.11, 5.0E-5, 59, 2.21, 12.35, 0.5927, 58, 22.72, 11.52, 0.40726, 3, 60, -8.38, 10.21, 0.09956, 59, 10.22, 12.35, 0.81261, 58, 30.58, 9.99, 0.08783, 3, 60, 1.88, 12.19, 0.70903, 59, 20.44, 10.19, 0.29064, 58, 40.21, 5.92, 3.3E-4, 4, 60, 13.33, 8.08, 0.87632, 61, 0.53, 8.94, 0.12348, 59, 29.4, 1.95, 1.9E-4, 58, 47.43, -3.87, 0, 2, 60, 22.74, 0.5, 0.02028, 61, 11.87, 4.76, 0.97972, 1, 61, 18.57, 2.28, 1, 1, 61, 24.31, -4.23, 1, 2, 61, 14.21, -4.41, 1, 58, 45.19, -22.85, 0, 4, 60, 12.12, -5.79, 0.03725, 61, 3.81, -4.59, 0.95575, 59, 22.9, -10.36, 0.007, 58, 38.7, -14.72, 0, 3, 60, 5.01, -9.07, 0.43285, 61, -1.89, -9.97, 0.27829, 59, 15.06, -10.62, 0.28886, 4, 60, -2.62, -13.11, 0.10549, 61, -7.83, -16.23, 0.02974, 59, 6.47, -11.38, 0.78227, 58, 22.38, -12.59, 0.0825, 4, 60, -10.31, -17.28, 0.00185, 61, -13.8, -22.63, 3.6E-4, 59, -2.24, -12.24, 0.42659, 58, 13.66, -11.77, 0.5712, 2, 59, -9.8, -11.05, 0.07445, 58, 6.46, -9.16, 0.92555, 2, 59, -16.43, -10.02, 0.00174, 58, 0.16, -6.87, 0.99826, 1, 58, -8.41, -2.27, 1, 1, 58, -15.57, 1.58, 1, 1, 58, -14.91, 5.01, 1, 1, 58, -13.38, 12.83, 1, 1, 58, 2.75, 0.96, 1, 2, 59, 0.19, 0.28, 0.96674, 58, 18.44, 0.06, 0.03326, 1, 60, 3.23, 0.79, 1, 3, 60, 12.81, 0.54, 0.28513, 61, 2.44, 1.63, 0.71487, 58, 42.79, -9.84, 0, 2, 59, 8.39, 0.2, 0.99942, 58, 26.47, -1.59, 5.8E-4, 1, 58, 9.34, 0.15, 1, 1, 58, -6.79, 2.43, 1, 2, 60, 22.47, -2.28, 0.00264, 61, 12.49, 2.04, 0.99736 ],
  289. "hull": 21,
  290. "edges": [ 40, 0, 0, 2, 28, 26, 16, 18, 12, 10, 36, 38, 38, 40, 46, 48, 22, 48, 48, 12, 22, 24, 24, 26, 24, 46, 46, 10, 44, 50, 50, 46, 26, 50, 6, 8, 8, 10, 50, 8, 28, 44, 44, 6, 28, 30, 30, 32, 42, 52, 52, 44, 30, 52, 2, 4, 4, 6, 52, 4, 2, 42, 42, 32, 38, 54, 54, 42, 0, 54, 32, 34, 34, 36, 54, 34, 18, 20, 20, 22, 16, 56, 56, 48, 20, 56, 12, 14, 14, 16, 56, 14 ],
  291. "width": 36,
  292. "height": 72
  293. }
  294. },
  295. "toufa7": {
  296. "toufa7": {
  297. "type": "mesh",
  298. "uvs": [ 0.77006, 0.14271, 0.7756, 0.25569, 0.71744, 0.38363, 0.59283, 0.51323, 0.4876, 0.65779, 0.44073, 0.73994, 0.47252, 0.81416, 0.54479, 0.8635, 0.62257, 0.89329, 0.67892, 0.90558, 0.78114, 0.92529, 1, 0.93194, 1, 1, 0.72948, 1, 0.59871, 1, 0.42001, 0.98012, 0.21621, 0.94025, 0.07498, 0.86714, 1.0E-5, 0.74868, 0, 0.60129, 0.08104, 0.46831, 0.15314, 0.32443, 0.15576, 0.21646, 0.14698, 0.1261, 0.07498, 0, 0.46561, 0, 0.66206, 0, 0.42131, 0.22473, 0.30008, 0.49003, 0.265, 0.61766, 0.25043, 0.74116, 0.42243, 0.90867, 0.43921, 0.12706, 0.36552, 0.34729, 0.31501, 0.832, 0.55027, 0.92889, 0.75957, 0.96198, 0.64586, 0.944 ],
  299. "triangles": [ 13, 36, 12, 36, 10, 12, 10, 11, 12, 14, 37, 13, 13, 37, 36, 15, 35, 14, 14, 35, 37, 37, 9, 36, 36, 9, 10, 35, 8, 37, 37, 8, 9, 31, 7, 35, 35, 7, 8, 15, 31, 35, 15, 16, 31, 16, 34, 31, 16, 17, 34, 31, 6, 7, 31, 34, 6, 34, 5, 6, 17, 30, 34, 17, 18, 30, 34, 30, 5, 18, 19, 30, 30, 29, 5, 30, 19, 29, 5, 29, 4, 29, 28, 4, 4, 28, 3, 19, 20, 29, 29, 20, 28, 28, 33, 3, 20, 21, 28, 3, 33, 2, 28, 21, 33, 33, 27, 2, 2, 27, 1, 27, 33, 22, 33, 21, 22, 1, 27, 0, 27, 32, 0, 32, 27, 23, 27, 22, 23, 0, 32, 26, 32, 25, 26, 32, 23, 25, 23, 24, 25 ],
  300. "vertices": [ 1, 49, -9.97, 11.05, 1, 2, 49, -3.05, 13.53, 0.99355, 50, -14.09, 15.27, 0.00645, 2, 49, 5.56, 13.94, 0.86977, 50, -5.49, 14.67, 0.13023, 3, 49, 15.07, 11.92, 0.32065, 50, 3.73, 11.56, 0.66926, 51, -6.89, 14.72, 0.01009, 4, 49, 25.27, 10.91, 0.00305, 50, 13.75, 9.38, 0.58607, 51, 1.73, 9.17, 0.39355, 52, -2.12, 12.07, 0.01733, 3, 50, 19.34, 8.63, 0.10453, 51, 6.71, 6.51, 0.61152, 52, 0.73, 7.2, 0.28395, 4, 50, 23.83, 10.8, 0.00224, 51, 11.67, 6.97, 0.09413, 52, 5.2, 4.99, 0.85708, 53, -1.46, 7.19, 0.04656, 3, 51, 15.28, 9.24, 4.8E-4, 52, 9.47, 5.03, 0.46535, 53, 2.03, 4.73, 0.53417, 2, 52, 12.91, 6.06, 0.04639, 53, 5.43, 3.56, 0.95361, 2, 52, 14.95, 7.2, 0.00154, 53, 7.75, 3.3, 0.99846, 1, 53, 11.93, 2.98, 1, 1, 53, 20.33, 4.56, 1, 1, 53, 21.37, 0.26, 1, 1, 53, 11.11, -2.21, 1, 1, 53, 6.15, -3.4, 1, 2, 52, 12.03, -3.61, 0.48656, 53, -0.93, -3.78, 0.51344, 2, 51, 18.17, -4.2, 0.081, 52, 4.87, -7.94, 0.919, 2, 51, 12.6, -8.88, 0.6016, 52, -2.32, -9, 0.3984, 3, 50, 23.27, -8.11, 0.07498, 51, 4.53, -10.54, 0.90737, 52, -10.06, -6.19, 0.01765, 2, 50, 13.87, -9.99, 0.72249, 51, -4.92, -9.02, 0.27751, 3, 49, 18.45, -7.97, 0.06458, 50, 4.78, -8.58, 0.93509, 51, -12.95, -4.52, 3.3E-4, 2, 49, 8.69, -8.18, 0.87377, 50, -4.94, -7.66, 0.12623, 2, 49, 1.98, -10.25, 0.99998, 50, -11.84, -8.94, 2.0E-5, 1, 49, -3.5, -12.39, 1, 1, 49, -10.42, -17.59, 1, 1, 49, -15.13, -3.1, 1, 1, 49, -17.5, 4.18, 1, 1, 49, -0.7, -0.24, 1, 2, 50, 4.49, 0.07, 1, 51, -10.2, 3.69, 0, 2, 50, 12.89, 0.36, 0.99708, 51, -2.23, 1.01, 0.00292, 1, 51, 5.61, -0.82, 1, 1, 52, 8.57, -0.51, 1, 1, 49, -6.96, -1.53, 1, 2, 49, 7.55, 0.15, 0.99981, 50, -5.11, 0.75, 1.9E-4, 1, 52, 2.06, -0.42, 1, 2, 52, 12.82, 2.41, 0.02197, 53, 3.23, 0.65, 0.97803, 1, 53, 11.67, 0.47, 1, 2, 52, 16, 4.59, 1.5E-4, 53, 7.09, 0.57, 0.99985 ],
  301. "hull": 27,
  302. "edges": [ 48, 46, 42, 40, 40, 38, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 24, 22, 20, 22, 36, 38, 36, 34, 34, 32, 32, 30, 52, 0, 48, 50, 50, 52, 56, 58, 58, 60, 50, 64, 64, 54, 46, 64, 64, 0, 2, 54, 42, 44, 44, 46, 54, 44, 54, 66, 66, 56, 42, 66, 66, 4, 40, 56, 56, 6, 38, 58, 58, 8, 36, 60, 60, 10, 60, 68, 68, 62, 34, 68, 68, 12, 32, 62, 12, 14, 14, 16, 62, 14, 70, 62, 30, 70, 70, 16, 24, 72, 20, 72, 24, 26, 72, 26, 26, 28, 28, 30, 70, 74, 74, 72, 28, 74, 16, 18, 18, 20, 74, 18 ],
  303. "width": 39,
  304. "height": 65
  305. }
  306. },
  307. "toufa8": {
  308. "toufa8": {
  309. "type": "mesh",
  310. "uvs": [ 0.8486, 0.16774, 0.87983, 0.43521, 1, 0.61832, 1, 0.7436, 0.88455, 0.92887, 0.60286, 1, 0.32117, 1, 0.12484, 0.92888, 0, 0.81643, 0, 0.63721, 0.0635, 0.39406, 0.09058, 0.1266, 0.29049, 0, 0.63618, 0 ],
  311. "triangles": [ 10, 5, 6, 4, 5, 1, 7, 8, 9, 6, 9, 10, 6, 7, 9, 1, 2, 3, 4, 1, 3, 1, 10, 0, 1, 5, 10, 12, 10, 11, 10, 12, 13, 13, 0, 10 ],
  312. "vertices": [ 3, 37, 10.6, 33.33, 0.64687, 38, -16.96, 33.52, 0.35235, 40, -66.27, 35.08, 7.8E-4, 4, 37, 39.44, 36.84, 0.11194, 38, 11.91, 36.71, 0.764, 39, -17.21, 36.67, 0.04399, 40, -37.34, 37.61, 0.08006, 4, 37, 59.01, 48.83, 0.002, 38, 31.62, 48.47, 0.56598, 39, 2.47, 48.48, 0.14225, 40, -17.36, 48.92, 0.28977, 3, 38, 45.15, 48.55, 0.43198, 39, 16, 48.58, 0.15647, 40, -3.83, 48.69, 0.41154, 3, 38, 65.22, 37.45, 0.20851, 39, 36.1, 37.53, 0.1146, 40, 15.98, 37.15, 0.6769, 3, 38, 73.05, 10.17, 0.01671, 39, 43.98, 10.26, 9.9E-4, 40, 23.19, 9.69, 0.9823, 2, 39, 44.19, -17.06, 0.3143, 40, 22.72, -17.63, 0.6857, 3, 38, 65.62, -36.24, 0.00605, 39, 36.65, -36.16, 0.72469, 40, 14.71, -36.54, 0.26926, 3, 38, 53.54, -48.41, 0.04214, 39, 24.59, -48.36, 0.85082, 40, 2.36, -48.43, 0.10704, 4, 37, 62.69, -48.12, 0.01202, 38, 34.18, -48.52, 0.15637, 39, 5.24, -48.5, 0.80898, 40, -16.99, -48.1, 0.02264, 3, 37, 36.33, -42.4, 0.22051, 38, 7.89, -42.5, 0.3853, 39, -21.07, -42.54, 0.39419, 3, 37, 7.4, -40.27, 0.73201, 38, -21.01, -40.03, 0.18678, 39, -49.97, -40.13, 0.08121, 3, 37, -6.6, -21.11, 0.96151, 38, -34.79, -20.71, 0.02711, 39, -63.79, -20.84, 0.01138, 2, 37, -7.16, 12.42, 0.97481, 38, -34.97, 12.82, 0.02519 ],
  313. "hull": 14,
  314. "edges": [ 18, 20, 20, 22, 22, 24, 24, 26, 26, 0, 0, 2, 2, 4, 16, 18, 16, 14, 14, 12, 10, 12, 10, 8, 4, 6, 8, 6 ],
  315. "width": 97,
  316. "height": 108
  317. }
  318. },
  319. "youjiap": {
  320. "youjiap": {
  321. "type": "mesh",
  322. "uvs": [ 0.97832, 0.32068, 0.97675, 0.34395, 0.9748, 0.37281, 0.94404, 0.82779, 0.94251, 0.8504, 0.93239, 1, 0, 1, 0, 0.95936, 0, 0.9066, 0.33853, 0.85044, 0.3377, 0.83969, 0.33626, 0.82116, 0.30244, 0.38415, 0.30017, 0.35477, 0.29792, 0.32577, 0.27271, 0, 0.56182, 0, 1, 0, 0.66575, 0.85725, 0.94054, 0.87114, 0.66364, 0.83986, 0.66136, 0.82103, 0.60358, 0.34444, 0.60738, 0.37583, 0.60069, 0.32058 ],
  323. "triangles": [ 6, 18, 5, 6, 7, 18, 7, 9, 18, 7, 8, 9, 13, 24, 22, 13, 14, 24, 0, 22, 24, 14, 16, 24, 14, 15, 16, 0, 24, 17, 24, 16, 17, 5, 19, 4, 5, 18, 19, 19, 18, 4, 9, 20, 18, 18, 20, 4, 9, 10, 20, 4, 20, 3, 10, 21, 20, 20, 21, 3, 10, 11, 21, 3, 21, 2, 11, 23, 21, 11, 12, 23, 21, 23, 2, 12, 22, 23, 12, 13, 22, 2, 23, 1, 1, 23, 22, 1, 22, 0 ],
  324. "vertices": [ 2, 32, -0.93, 11.47, 0.57123, 31, 17.49, 11.44, 0.42877, 2, 32, 0.39, 11.33, 0.6641, 31, 18.81, 11.31, 0.3359, 2, 32, 2.02, 11.16, 0.76964, 31, 20.45, 11.16, 0.23036, 2, 32, 27.83, 8.5, 0.9297, 33, -8.92, -0.22, 0.0703, 2, 32, 29.12, 8.37, 0.86935, 33, -8.43, 0.98, 0.13065, 2, 32, 37.6, 7.5, 0.36278, 33, -5.23, 8.88, 0.63722, 1, 33, 19.28, -0.1, 1, 1, 33, 18.48, -2.28, 1, 1, 33, 17.45, -5.1, 1, 2, 32, 27.95, -8.5, 0.22583, 33, 7.44, -4.84, 0.77417, 2, 32, 27.34, -8.48, 0.32625, 33, 7.25, -5.43, 0.67375, 2, 32, 26.28, -8.45, 0.46389, 33, 6.93, -6.43, 0.53611, 2, 32, 1.36, -7.66, 0.80301, 31, 19.93, -7.67, 0.19699, 2, 32, -0.31, -7.61, 0.61905, 31, 18.25, -7.63, 0.38095, 2, 32, -1.96, -7.56, 0.41318, 31, 16.6, -7.59, 0.58682, 1, 31, -1.98, -7.15, 1, 1, 31, -1.48, 0.93, 1, 2, 32, -19.13, 13.34, 3.9E-4, 31, -0.72, 13.18, 0.99961, 1, 32, 28.97, 0.62, 1, 2, 32, 30.29, 8.24, 0.79444, 33, -7.98, 2.07, 0.20556, 1, 32, 27.98, 0.63, 1, 1, 32, 26.9, 0.64, 1, 2, 32, -0.31, 0.9, 0.54326, 31, 18.19, 0.88, 0.45674, 2, 32, 1.48, 0.89, 0.94895, 31, 19.98, 0.88, 0.05105, 2, 32, -1.67, 0.92, 0.14663, 31, 16.83, 0.89, 0.85337 ],
  325. "hull": 18,
  326. "edges": [ 18, 16, 30, 32, 32, 34, 12, 14, 14, 16, 36, 14, 18, 36, 36, 38, 10, 12, 38, 10, 18, 20, 40, 36, 20, 40, 10, 8, 40, 8, 20, 22, 42, 40, 22, 42, 8, 6, 42, 6, 26, 44, 44, 2, 22, 24, 24, 26, 42, 46, 46, 44, 24, 46, 2, 4, 4, 6, 46, 4, 26, 28, 28, 30, 32, 48, 48, 44, 28, 48, 2, 0, 0, 34, 48, 0 ],
  327. "width": 28,
  328. "height": 57
  329. }
  330. },
  331. "youshou": {
  332. "youshou": {
  333. "type": "mesh",
  334. "uvs": [ 0.42589, 0.17401, 0.45223, 0.19439, 0.49406, 0.22676, 0.6933, 0.38094, 0.72375, 0.40451, 0.76037, 0.43285, 1, 0.61828, 1, 0.87662, 1, 1, 0.72604, 1, 0.49081, 0.79933, 0.46461, 0.77698, 0.42429, 0.74258, 0.19786, 0.54941, 0.17017, 0.52579, 0.14248, 0.50216, 0, 0.38062, 0, 0, 0.20102, 0, 0.6126, 0.56662, 0.6426, 0.59063, 0.58414, 0.5403, 0.35004, 0.32377, 0.37347, 0.34544, 0.32728, 0.30271 ],
  335. "triangles": [ 9, 7, 8, 7, 9, 20, 9, 10, 20, 20, 6, 7, 10, 11, 20, 11, 19, 20, 11, 12, 19, 20, 5, 6, 20, 19, 5, 19, 4, 5, 19, 21, 4, 13, 23, 21, 13, 14, 23, 3, 23, 2, 14, 22, 23, 23, 1, 2, 23, 22, 1, 12, 21, 19, 12, 13, 21, 21, 23, 3, 21, 3, 4, 14, 24, 22, 14, 15, 24, 15, 16, 24, 16, 17, 24, 22, 24, 1, 17, 18, 24, 24, 0, 1, 24, 18, 0 ],
  336. "vertices": [ 2, 8, 17.55, 8.43, 0.74718, 9, -2.05, 8.5, 0.25282, 2, 8, 19.12, 8.53, 0.60161, 9, -0.47, 8.55, 0.39839, 3, 8, 21.62, 8.69, 0.35625, 9, 2.03, 8.63, 0.64314, 10, -13.97, 8.07, 6.1E-4, 2, 9, 13.96, 9.01, 0.56503, 10, -2.06, 8.94, 0.43497, 2, 9, 15.78, 9.07, 0.39302, 10, -0.24, 9.07, 0.60698, 2, 9, 17.98, 9.14, 0.20962, 10, 1.95, 9.23, 0.79038, 1, 10, 16.26, 10.27, 1, 1, 10, 24.64, 1.12, 1, 1, 10, 28.64, -3.25, 1, 1, 10, 19.14, -11.94, 1, 2, 9, 19.64, -12.47, 0.2513, 10, 4.48, -12.3, 0.7487, 3, 8, 38.25, -11.88, 6.2E-4, 9, 18, -12.45, 0.34771, 10, 2.85, -12.34, 0.65167, 3, 8, 35.73, -11.92, 0.00577, 9, 15.49, -12.41, 0.51255, 10, 0.33, -12.4, 0.48168, 3, 8, 21.62, -12.14, 0.476, 9, 1.38, -12.18, 0.52144, 10, -13.78, -12.75, 0.00256, 3, 8, 19.89, -12.16, 0.59557, 9, -0.35, -12.16, 0.40417, 10, -15.5, -12.79, 2.6E-4, 2, 8, 18.17, -12.19, 0.70807, 9, -2.07, -12.13, 0.29193, 2, 8, 9.29, -12.33, 0.98676, 9, -10.95, -11.99, 0.01324, 1, 8, -2.92, 1.26, 1, 1, 8, 4.1, 7.58, 1, 1, 10, 1.16, -0.2, 1, 2, 9, 18.63, -0.22, 7.9E-4, 10, 2.98, -0.1, 0.99921, 2, 9, 14.97, -0.14, 0.99707, 10, -0.68, -0.17, 0.00293, 2, 8, 19.7, 0.7, 0.63919, 9, -0.14, 0.71, 0.36081, 2, 8, 21.22, 0.66, 0.0288, 9, 1.37, 0.62, 0.9712, 2, 8, 18.23, 0.74, 0.98539, 9, -1.61, 0.79, 0.01461 ],
  337. "hull": 19,
  338. "edges": [ 34, 36, 32, 34, 16, 18, 12, 14, 14, 16, 8, 38, 38, 22, 18, 20, 20, 22, 14, 40, 40, 38, 20, 40, 8, 10, 10, 12, 40, 10, 8, 6, 42, 38, 6, 42, 22, 24, 42, 24, 2, 44, 44, 28, 24, 26, 26, 28, 42, 46, 46, 44, 26, 46, 2, 4, 4, 6, 46, 4, 2, 0, 0, 36, 34, 48, 48, 44, 0, 48, 28, 30, 30, 32, 48, 30 ],
  339. "width": 47,
  340. "height": 48
  341. }
  342. },
  343. "youshou 2": {
  344. "youshou 2": {
  345. "type": "mesh",
  346. "uvs": [ 1, 0.36625, 1, 0.69543, 0.78055, 1, 0.42473, 1, 0, 0.71825, 0, 0, 0.44386, 0 ],
  347. "triangles": [ 3, 4, 6, 4, 5, 6, 6, 0, 3, 1, 3, 0, 2, 3, 1 ],
  348. "vertices": [ 18.69, 9.33, 24.8, 2.88, 26.79, -6.56, 20.85, -12.19, 8.53, -13.39, -4.81, 0.69, 2.6, 7.71 ],
  349. "hull": 7,
  350. "edges": [ 10, 12, 12, 0, 8, 10, 8, 6, 4, 6, 0, 2, 4, 2 ],
  351. "width": 23,
  352. "height": 27
  353. }
  354. },
  355. "youshou1": {
  356. "youshou1": {
  357. "type": "mesh",
  358. "uvs": [ 0.54148, 0.08822, 0.59178, 0.12103, 0.63503, 0.14924, 1, 0.38732, 1, 0.82607, 0.89145, 1, 0.78971, 1, 0.40989, 0.74591, 0.37388, 0.72181, 0.33494, 0.69576, 0, 0.47169, 0, 0.08715, 0, 0, 0.40624, 0, 0.47863, 0.47527, 0.50834, 0.49526, 0.43839, 0.44264 ],
  359. "triangles": [ 9, 16, 14, 9, 10, 16, 10, 11, 16, 11, 13, 16, 14, 16, 1, 16, 0, 1, 16, 13, 0, 11, 12, 13, 5, 6, 4, 4, 6, 15, 6, 7, 15, 15, 3, 4, 7, 8, 15, 15, 8, 14, 8, 9, 14, 3, 15, 2, 15, 14, 2, 2, 14, 1 ],
  360. "vertices": [ 2, 46, 25.63, -12.47, 0.47166, 47, 1.72, -12.41, 0.52834, 2, 46, 23.1, -12.29, 0.65974, 47, -0.82, -12.33, 0.34026, 2, 46, 20.92, -12.14, 0.80196, 47, -3, -12.27, 0.19804, 1, 46, 2.53, -10.88, 1, 1, 46, -2.39, 2.27, 1, 1, 46, 0.34, 9.23, 1, 1, 46, 4.73, 10.87, 1, 2, 46, 23.94, 9.37, 0.69462, 47, -0.8, 9.34, 0.30538, 2, 46, 25.76, 9.22, 0.5263, 47, 1.02, 9.27, 0.4737, 2, 46, 27.73, 9.07, 0.34374, 47, 3, 9.19, 0.65626, 1, 47, 19.98, 8.51, 1, 1, 47, 24.72, -2.84, 1, 1, 47, 25.8, -5.41, 1, 2, 46, 32.45, -12.93, 0.11542, 47, 8.55, -12.62, 0.88458, 2, 46, 24.01, 0.15, 0.82035, 47, -0.38, 0.13, 0.17965, 1, 46, 22.5, 0.27, 1, 2, 46, 26.11, -0.18, 6.5E-4, 47, 1.73, -0.12, 0.99935 ],
  361. "hull": 14,
  362. "edges": [ 24, 26, 6, 8, 10, 12, 8, 10, 20, 22, 22, 24, 16, 28, 28, 2, 12, 14, 14, 16, 8, 30, 30, 28, 14, 30, 2, 4, 4, 6, 30, 4, 2, 0, 0, 26, 22, 32, 32, 28, 0, 32, 16, 18, 18, 20, 32, 18 ],
  363. "width": 46,
  364. "height": 32
  365. }
  366. },
  367. "youshou3": {
  368. "youshou3": { "x": 19.77, "y": 3.73, "rotation": -155.56, "width": 46, "height": 32 }
  369. },
  370. "youyan": {
  371. "youyan": { "x": 5.52, "y": -2.72, "rotation": -89.35, "width": 24, "height": 19 }
  372. },
  373. "youyanzhu": {
  374. "youyanzhu": { "x": 0.72, "y": 2.48, "rotation": -89.35, "width": 13, "height": 11 }
  375. },
  376. "zuiba": {
  377. "zuiba": { "x": -0.94, "y": -1.59, "rotation": -86.7, "width": 17, "height": 8 }
  378. },
  379. "zuiba 2": {
  380. "zuiba 2": { "x": 0.24, "y": -1.41, "rotation": -86.7, "width": 21, "height": 10 }
  381. },
  382. "zuojiap": {
  383. "zuojiap": {
  384. "type": "mesh",
  385. "uvs": [ 0.97314, 0.26509, 0.96954, 0.30064, 0.96668, 0.32888, 0.91824, 0.80702, 0.91507, 0.83826, 0.91257, 0.86303, 0.89869, 1, 0, 1, 0, 0.96958, 0, 0.89717, 0.35012, 0.80674, 0.34857, 0.78495, 0.34638, 0.75403, 0.31708, 0.34028, 0.31498, 0.31065, 0.31261, 0.27715, 0.29297, 0, 0.59012, 0, 1, 0, 0.6244, 0.83322, 0.62338, 0.80846, 0.62216, 0.77859, 0.60253, 0.30165, 0.60376, 0.33152, 0.60101, 0.26465 ],
  386. "triangles": [ 7, 19, 6, 6, 19, 5, 7, 8, 19, 8, 10, 19, 8, 9, 10, 5, 19, 4, 3, 4, 20, 10, 20, 19, 4, 19, 20, 20, 11, 21, 20, 21, 3, 3, 21, 2, 20, 10, 11, 11, 12, 21, 12, 23, 21, 21, 23, 2, 12, 13, 23, 13, 22, 23, 13, 14, 22, 23, 22, 2, 2, 22, 1, 22, 14, 24, 14, 15, 24, 22, 24, 1, 1, 24, 0, 15, 17, 24, 15, 16, 17, 18, 0, 17, 0, 24, 17 ],
  387. "vertices": [ 2, 34, 23.02, 10.6, 0.68185, 35, -1.3, 10.6, 0.31815, 2, 34, 24.65, 10.42, 0.55204, 35, 0.33, 10.43, 0.44796, 2, 34, 25.95, 10.28, 0.44329, 35, 1.62, 10.29, 0.55671, 2, 35, 23.54, 8.01, 0.44572, 36, -8.31, -1.91, 0.55428, 2, 35, 24.97, 7.86, 0.29015, 36, -7.92, -0.53, 0.70985, 2, 35, 26.11, 7.74, 0.17934, 36, -7.62, 0.57, 0.82066, 1, 36, -5.92, 6.65, 1, 1, 36, 18.69, 1.4, 1, 1, 36, 18.4, 0.03, 1, 1, 36, 17.7, -3.23, 1, 2, 35, 22.86, -7.88, 0.39882, 36, 7.24, -5.25, 0.60118, 2, 35, 21.86, -7.88, 0.58039, 36, 7.08, -6.24, 0.41961, 2, 35, 20.43, -7.88, 0.7464, 36, 6.84, -7.64, 0.2536, 2, 34, 25.62, -7.91, 0.34781, 35, 1.38, -7.9, 0.65219, 2, 34, 24.26, -7.9, 0.49792, 35, 0.02, -7.9, 0.50208, 2, 34, 22.72, -7.9, 0.6676, 35, -1.53, -7.91, 0.3324, 1, 34, 9.96, -7.86, 1, 1, 34, 10.34, 0.46, 1, 1, 34, 10.88, 11.92, 1, 1, 35, 24.4, -0.26, 1, 1, 35, 23.26, -0.24, 1, 1, 35, 21.89, -0.22, 1, 2, 34, 24.22, 0.16, 0.56095, 35, -0.06, 0.16, 0.43905, 2, 34, 25.6, 0.13, 0.00437, 35, 1.32, 0.13, 0.99563, 2, 34, 22.52, 0.19, 0.99827, 35, -1.76, 0.19, 0.00173 ],
  388. "hull": 19,
  389. "edges": [ 20, 18, 12, 14, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 42, 6, 28, 44, 44, 2, 24, 26, 26, 28, 42, 46, 46, 44, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 44, 30, 48, 2, 0, 0, 36, 48, 0 ],
  390. "width": 28,
  391. "height": 46
  392. }
  393. },
  394. "zuoshou": {
  395. "zuoshou": {
  396. "type": "mesh",
  397. "uvs": [ 1, 0.37313, 0.8254, 0.52468, 0.79976, 0.54694, 0.77122, 0.57171, 0.55228, 0.76176, 0.5111, 0.7975, 0.4803, 0.82423, 0.2778, 1, 0, 1, 0, 0.69313, 0.20798, 0.50895, 0.22794, 0.49128, 0.27109, 0.45306, 0.50173, 0.24882, 0.51902, 0.23351, 0.54848, 0.20742, 0.7827, 0, 1, 0, 0.3881, 0.64313, 0.36251, 0.66666, 0.41265, 0.61732, 0.6498, 0.36807, 0.63189, 0.38689, 0.66908, 0.34781 ],
  398. "triangles": [ 6, 7, 19, 7, 8, 19, 19, 9, 10, 19, 8, 9, 6, 19, 5, 19, 18, 5, 10, 11, 19, 19, 11, 18, 5, 18, 4, 18, 20, 4, 4, 20, 3, 18, 11, 20, 11, 12, 20, 20, 22, 3, 22, 12, 13, 22, 20, 12, 3, 22, 2, 22, 21, 2, 2, 21, 1, 22, 13, 21, 21, 13, 14, 21, 23, 1, 1, 23, 0, 23, 17, 0, 21, 14, 23, 23, 16, 17, 14, 15, 23, 23, 15, 16 ],
  399. "vertices": [ 2, 5, 8.32, 12.65, 0.97732, 6, -12.41, 12.16, 0.02268, 2, 5, 19.95, 11.48, 0.47614, 6, -0.74, 11.46, 0.52386, 2, 5, 21.66, 11.31, 0.34421, 6, 0.97, 11.36, 0.65579, 2, 5, 23.56, 11.12, 0.21478, 6, 2.88, 11.25, 0.78522, 2, 6, 17.51, 10.37, 0.69609, 7, -2.04, 10.35, 0.30391, 2, 6, 20.27, 10.2, 0.47033, 7, 0.71, 10.21, 0.52967, 2, 6, 22.33, 10.08, 0.30056, 7, 2.77, 10.11, 0.69944, 1, 7, 16.32, 9.44, 1, 1, 7, 26.65, -0.26, 1, 1, 7, 16.14, -11.44, 1, 2, 6, 21.43, -10.91, 0.3189, 7, 2.1, -10.89, 0.6811, 2, 6, 20.08, -10.84, 0.42121, 7, 0.76, -10.84, 0.57879, 2, 6, 17.17, -10.7, 0.65357, 7, -2.15, -10.72, 0.34643, 2, 5, 21.45, -9.98, 0.25613, 6, 1.61, -9.92, 0.74387, 2, 5, 20.29, -9.87, 0.35029, 6, 0.45, -9.86, 0.64971, 2, 5, 18.31, -9.69, 0.53045, 6, -1.54, -9.76, 0.46955, 1, 5, 2.55, -8.27, 1, 1, 5, -5.13, -0.28, 1, 2, 6, 19.45, 0.29, 0.50168, 7, 0, 0.29, 0.49832, 2, 6, 21.2, 0.23, 0.00818, 7, 1.76, 0.25, 0.99182, 2, 6, 17.65, 0.23, 0.99532, 7, -1.79, 0.21, 0.00468, 2, 5, 20.51, -0.4, 0.26708, 6, 0.29, -0.39, 0.73292, 1, 6, 1.61, -0.34, 1, 1, 5, 19.1, -0.39, 1 ],
  400. "hull": 18,
  401. "edges": [ 32, 34, 16, 18, 0, 34, 14, 16, 22, 36, 36, 10, 18, 20, 20, 22, 16, 38, 38, 36, 20, 38, 10, 12, 12, 14, 38, 12, 8, 10, 40, 36, 8, 40, 22, 24, 40, 24, 28, 42, 42, 4, 24, 26, 26, 28, 40, 44, 44, 42, 26, 44, 4, 6, 6, 8, 44, 6, 0, 2, 2, 4, 34, 46, 46, 42, 2, 46, 28, 30, 30, 32, 46, 30 ],
  402. "width": 51,
  403. "height": 50
  404. }
  405. },
  406. "zuoshou 1": {
  407. "zuoshou 1": {
  408. "type": "mesh",
  409. "uvs": [ 1, 0.63341, 0.55245, 1, 0.23227, 1, 0, 0.7791, 0, 0.47038, 0.61222, 0, 1, 0 ],
  410. "triangles": [ 5, 6, 0, 1, 4, 5, 2, 3, 4, 4, 1, 2, 5, 0, 1 ],
  411. "vertices": [ 10.6, 14.35, 27.09, 13.33, 32.58, 7.07, 31.25, -2.13, 23.82, -8.64, 2, -6.59, -4.64, 0.99 ],
  412. "hull": 7,
  413. "edges": [ 10, 12, 10, 8, 0, 12, 0, 2, 6, 8, 2, 4, 6, 4 ],
  414. "width": 26,
  415. "height": 32
  416. }
  417. },
  418. "zuoshou1": {
  419. "zuoshou1": {
  420. "type": "mesh",
  421. "uvs": [ 0.53289, 0.13021, 0.58508, 0.16163, 0.62337, 0.18468, 1, 0.4114, 1, 0.73747, 1, 1, 0.53392, 1, 0.45685, 0.94844, 0.40952, 0.91677, 0.36681, 0.8882, 0, 0.6428, 0, 0.26677, 0.11083, 0, 0.31658, 0, 0.48466, 0.61388, 0.44321, 0.58619, 0.52053, 0.62248 ],
  422. "triangles": [ 6, 4, 5, 4, 6, 16, 6, 7, 16, 16, 8, 14, 16, 7, 8, 16, 3, 4, 3, 16, 2, 2, 16, 14, 2, 14, 1, 8, 9, 14, 9, 15, 14, 9, 10, 15, 10, 11, 15, 0, 15, 11, 11, 12, 13, 14, 15, 1, 15, 0, 1, 0, 11, 13 ],
  423. "vertices": [ 2, 63, 16.42, 12.88, 0.59455, 64, 1.08, 13.01, 0.40545, 2, 63, 19.11, 13.03, 0.41395, 64, 3.73, 12.5, 0.58605, 2, 63, 21.08, 13.15, 0.29175, 64, 5.67, 12.12, 0.70825, 1, 64, 24.75, 8.41, 1, 1, 64, 25.88, -0.32, 1, 1, 64, 26.79, -7.35, 1, 2, 63, 25.13, -8.93, 0.15829, 64, 4.14, -10.27, 0.84171, 2, 63, 21.11, -9.03, 0.43053, 64, 0.21, -9.37, 0.56947, 2, 63, 18.64, -9.09, 0.66327, 64, -2.2, -8.82, 0.33673, 2, 63, 16.41, -9.15, 0.83715, 64, -4.37, -8.33, 0.16285, 1, 63, -2.74, -9.62, 1, 1, 63, -6.49, -0.19, 1, 1, 63, -4.1, 8.51, 1, 2, 63, 5.27, 12.23, 0.98542, 64, -9.88, 15.14, 0.01458, 2, 63, 19.04, -0.13, 0.1326, 64, 0.41, -0.24, 0.8674, 1, 63, 16.88, -0.19, 1, 1, 64, 2.18, -0.25, 1 ],
  424. "hull": 14,
  425. "edges": [ 10, 12, 24, 26, 20, 22, 24, 22, 6, 8, 8, 10, 16, 28, 28, 2, 2, 0, 0, 26, 22, 30, 30, 28, 0, 30, 16, 18, 18, 20, 30, 18, 12, 14, 14, 16, 8, 32, 32, 28, 14, 32, 2, 4, 4, 6, 32, 4 ],
  426. "width": 49,
  427. "height": 27
  428. }
  429. },
  430. "zuoyan": {
  431. "zuoyan": { "x": 5.14, "y": 0.32, "rotation": -84.35, "width": 23, "height": 18 }
  432. },
  433. "zuoyanzhu": {
  434. "zuoyanzhu": { "x": -0.18, "y": -0.92, "rotation": -84.35, "width": 13, "height": 12 }
  435. }
  436. }
  437. },
  438. "animations": {
  439. "stand1": {
  440. "slots": {
  441. "biyan": {
  442. "attachment": [
  443. { "time": 0.1, "name": "biyan" },
  444. { "time": 0.2333, "name": null },
  445. { "time": 1.1667, "name": "biyan" },
  446. { "time": 1.3, "name": null },
  447. { "time": 1.9, "name": "biyan" },
  448. { "time": 1.9667, "name": null }
  449. ]
  450. },
  451. "biyan2": {
  452. "attachment": [
  453. { "time": 0, "name": null },
  454. { "time": 1.3, "name": null },
  455. { "time": 1.9, "name": null },
  456. { "time": 1.9667, "name": "biyan2" }
  457. ]
  458. },
  459. "jitui": {
  460. "color": [
  461. { "time": 0.2, "color": "ffffff00" },
  462. { "time": 0.2667, "color": "ffffffff" }
  463. ],
  464. "attachment": [
  465. { "time": 0, "name": null },
  466. { "time": 0.2, "name": "jitui" }
  467. ]
  468. },
  469. "jitui 1": {
  470. "color": [
  471. { "time": 0.2, "color": "ffffff00" },
  472. { "time": 0.2667, "color": "ffffffff" }
  473. ],
  474. "attachment": [
  475. { "time": 0, "name": null },
  476. { "time": 0.2, "name": null }
  477. ]
  478. },
  479. "jitui 2": {
  480. "color": [
  481. { "time": 0.2, "color": "ffffff00" },
  482. { "time": 0.2667, "color": "ffffffff" }
  483. ],
  484. "attachment": [
  485. { "time": 0, "name": null },
  486. { "time": 0.2, "name": null },
  487. { "time": 0.8333, "name": "jitui 1" },
  488. { "time": 2.2, "name": null },
  489. { "time": 3.3667, "name": null }
  490. ]
  491. },
  492. "jituihu2": {
  493. "attachment": [
  494. { "time": 0, "name": null },
  495. { "time": 0.6667, "name": "jituihu" },
  496. { "time": 0.8333, "name": null }
  497. ]
  498. },
  499. "jituiuao2": {
  500. "attachment": [
  501. { "time": 2.2, "name": "jituiuao" },
  502. { "time": 3.3667, "name": "jituiuao" }
  503. ]
  504. },
  505. "meimao": {
  506. "attachment": [
  507. { "time": 1.6667, "name": "meimao" }
  508. ]
  509. },
  510. "tong": {
  511. "color": [
  512. { "time": 0.2, "color": "ffffff00" },
  513. { "time": 0.2667, "color": "ffffffff" }
  514. ],
  515. "attachment": [
  516. { "time": 0, "name": null },
  517. { "time": 0.2, "name": "tong" }
  518. ]
  519. },
  520. "tong hou": {
  521. "color": [
  522. { "time": 0.2, "color": "ffffff00" },
  523. { "time": 0.2667, "color": "ffffffff" }
  524. ],
  525. "attachment": [
  526. { "time": 0, "name": null },
  527. { "time": 0.2, "name": "tong hou" }
  528. ]
  529. },
  530. "youshou": {
  531. "attachment": [
  532. { "time": 0.2, "name": null }
  533. ]
  534. },
  535. "youshou1": {
  536. "attachment": [
  537. { "time": 0, "name": null },
  538. { "time": 0.2, "name": "youshou1" }
  539. ]
  540. },
  541. "youshou3": {
  542. "color": [
  543. { "time": 0.7333, "color": "ffffffff" },
  544. { "time": 0.9, "color": "ffffff00" }
  545. ],
  546. "attachment": [
  547. { "time": 0, "name": null },
  548. { "time": 0.6, "name": "youshou3" },
  549. { "time": 0.9, "name": null }
  550. ]
  551. },
  552. "youshou 2": {
  553. "attachment": [
  554. { "time": 0, "name": null },
  555. { "time": 0.2, "name": "youshou 2" }
  556. ]
  557. },
  558. "youyan": {
  559. "attachment": [
  560. { "time": 0.1, "name": null },
  561. { "time": 0.2333, "name": "youyan" },
  562. { "time": 1.1667, "name": null },
  563. { "time": 1.3, "name": "youyan" },
  564. { "time": 1.6667, "name": "youyan" },
  565. { "time": 1.9, "name": null },
  566. { "time": 1.9667, "name": null }
  567. ]
  568. },
  569. "youyanzhu": {
  570. "attachment": [
  571. { "time": 0.1, "name": null },
  572. { "time": 0.2333, "name": "youyanzhu" },
  573. { "time": 1.1667, "name": null },
  574. { "time": 1.3, "name": "youyanzhu" },
  575. { "time": 1.6667, "name": "youyanzhu" },
  576. { "time": 1.9, "name": null },
  577. { "time": 1.9667, "name": null }
  578. ]
  579. },
  580. "zuiba": {
  581. "attachment": [
  582. { "time": 0.3333, "name": null },
  583. { "time": 2, "name": "zuiba" },
  584. { "time": 2.9333, "name": null },
  585. { "time": 3.2667, "name": "zuiba" }
  586. ]
  587. },
  588. "zuiba 2": {
  589. "attachment": [
  590. { "time": 0, "name": null },
  591. { "time": 0.3333, "name": "zuiba 2" },
  592. { "time": 2, "name": null },
  593. { "time": 2.9333, "name": "zuiba 2" },
  594. { "time": 3.2667, "name": null }
  595. ]
  596. },
  597. "zuoshou": {
  598. "attachment": [
  599. { "time": 0.2, "name": null }
  600. ]
  601. },
  602. "zuoshou1": {
  603. "attachment": [
  604. { "time": 0, "name": null },
  605. { "time": 0.2, "name": "zuoshou1" }
  606. ]
  607. },
  608. "zuoshou 1": {
  609. "attachment": [
  610. { "time": 0, "name": null },
  611. { "time": 0.2, "name": "zuoshou 1" }
  612. ]
  613. },
  614. "zuoyan": {
  615. "attachment": [
  616. { "time": 0.1, "name": null },
  617. { "time": 0.2333, "name": "zuoyan" },
  618. { "time": 1.1667, "name": null },
  619. { "time": 1.3, "name": "zuoyan" },
  620. { "time": 1.6667, "name": "zuoyan" },
  621. { "time": 1.9, "name": null },
  622. { "time": 1.9667, "name": null }
  623. ]
  624. },
  625. "zuoyanzhu": {
  626. "attachment": [
  627. { "time": 0.1, "name": null },
  628. { "time": 0.2333, "name": "zuoyanzhu" },
  629. { "time": 1.1667, "name": null },
  630. { "time": 1.2, "name": null },
  631. { "time": 1.3, "name": "zuoyanzhu" },
  632. { "time": 1.6667, "name": "zuoyanzhu" },
  633. { "time": 1.9, "name": null },
  634. { "time": 1.9667, "name": null }
  635. ]
  636. }
  637. },
  638. "bones": {
  639. "root": {
  640. "rotate": [
  641. { "time": 0, "angle": 0 }
  642. ],
  643. "translate": [
  644. { "time": 0, "x": 0, "y": 0 }
  645. ],
  646. "scale": [
  647. { "time": 0, "x": 0.65, "y": 0.65 }
  648. ]
  649. },
  650. "bone": {
  651. "rotate": [
  652. { "time": 0, "angle": 0, "curve": "stepped" },
  653. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  654. { "time": 0.3333, "angle": 0 }
  655. ],
  656. "translate": [
  657. { "time": 0, "x": 0, "y": 0 },
  658. { "time": 0.1667, "x": 0, "y": -1.7 },
  659. { "time": 0.3333, "x": 0, "y": 0 }
  660. ],
  661. "scale": [
  662. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  663. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  664. { "time": 0.3333, "x": 1, "y": 1 }
  665. ]
  666. },
  667. "bone2": {
  668. "rotate": [
  669. { "time": 0, "angle": 0, "curve": "stepped" },
  670. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  671. { "time": 0.3333, "angle": 0 }
  672. ],
  673. "translate": [
  674. { "time": 0, "x": 0, "y": 0 },
  675. { "time": 0.1667, "x": -0.03, "y": -1.64 },
  676. { "time": 0.3333, "x": 0, "y": 0 }
  677. ],
  678. "scale": [
  679. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  680. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  681. { "time": 0.3333, "x": 1, "y": 1 }
  682. ]
  683. },
  684. "bone3": {
  685. "rotate": [
  686. { "time": 0, "angle": 0, "curve": "stepped" },
  687. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  688. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  689. { "time": 1.6667, "angle": 0 },
  690. { "time": 2.1, "angle": -1.33 },
  691. { "time": 2.5, "angle": 0, "curve": "stepped" },
  692. { "time": 2.9, "angle": 0 },
  693. { "time": 3.3333, "angle": -1.33 },
  694. { "time": 3.7333, "angle": 0 }
  695. ],
  696. "translate": [
  697. { "time": 0, "x": 0, "y": 0 },
  698. { "time": 0.1667, "x": -2.34, "y": 0.03 },
  699. { "time": 0.2667, "x": 0, "y": 0 },
  700. { "time": 0.3333, "x": 1.45, "y": -0.02 },
  701. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  702. { "time": 1.6667, "x": 0, "y": 0 },
  703. { "time": 2.1, "x": -0.02, "y": -0.52 },
  704. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  705. { "time": 2.9, "x": 0, "y": 0 },
  706. { "time": 3.3333, "x": -0.02, "y": -0.52 },
  707. { "time": 3.7333, "x": 0, "y": 0 }
  708. ],
  709. "scale": [
  710. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  711. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  712. { "time": 0.3333, "x": 1, "y": 1 }
  713. ]
  714. },
  715. "bone4": {
  716. "rotate": [
  717. { "time": 0, "angle": 0, "curve": "stepped" },
  718. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  719. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  720. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  721. { "time": 2.1, "angle": 0 }
  722. ],
  723. "translate": [
  724. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  725. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  726. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  727. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  728. { "time": 2.1, "x": 0, "y": 0 }
  729. ],
  730. "scale": [
  731. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  732. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  733. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  734. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  735. { "time": 2.1, "x": 1, "y": 1 }
  736. ]
  737. },
  738. "bone5": {
  739. "rotate": [
  740. { "time": 0, "angle": 0 },
  741. { "time": 0.1667, "angle": 22.73, "curve": "stepped" },
  742. { "time": 0.2, "angle": 0 }
  743. ],
  744. "translate": [
  745. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  746. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  747. { "time": 0.2, "x": 16.15, "y": -286.9 }
  748. ],
  749. "scale": [
  750. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  751. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  752. { "time": 0.2, "x": 1, "y": 1 }
  753. ]
  754. },
  755. "bone6": {
  756. "rotate": [
  757. { "time": 0, "angle": 0 },
  758. { "time": 0.1667, "angle": -0.03, "curve": "stepped" },
  759. { "time": 0.2, "angle": 0 }
  760. ],
  761. "translate": [
  762. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  763. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  764. { "time": 0.2, "x": 0, "y": 0 }
  765. ],
  766. "scale": [
  767. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  768. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  769. { "time": 0.2, "x": 1, "y": 1 }
  770. ]
  771. },
  772. "bone7": {
  773. "rotate": [
  774. { "time": 0, "angle": 0, "curve": "stepped" },
  775. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  776. { "time": 0.2, "angle": 0 }
  777. ],
  778. "translate": [
  779. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  780. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  781. { "time": 0.2, "x": 0, "y": 0 }
  782. ],
  783. "scale": [
  784. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  785. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  786. { "time": 0.2, "x": 1, "y": 1 }
  787. ]
  788. },
  789. "bone8": {
  790. "rotate": [
  791. { "time": 0, "angle": 0 },
  792. { "time": 0.1667, "angle": -20.95, "curve": "stepped" },
  793. { "time": 0.2, "angle": 0 }
  794. ],
  795. "translate": [
  796. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  797. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  798. { "time": 0.2, "x": 17.3, "y": -278.97 }
  799. ],
  800. "scale": [
  801. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  802. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  803. { "time": 0.2, "x": 1, "y": 1 }
  804. ]
  805. },
  806. "bone9": {
  807. "rotate": [
  808. { "time": 0, "angle": 0 },
  809. { "time": 0.1667, "angle": -4.46, "curve": "stepped" },
  810. { "time": 0.2, "angle": 0 }
  811. ],
  812. "translate": [
  813. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  814. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  815. { "time": 0.2, "x": 0, "y": 0 }
  816. ],
  817. "scale": [
  818. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  819. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  820. { "time": 0.2, "x": 1, "y": 1 }
  821. ]
  822. },
  823. "bone10": {
  824. "rotate": [
  825. { "time": 0, "angle": 0 },
  826. { "time": 0.1667, "angle": -28.91, "curve": "stepped" },
  827. { "time": 0.2, "angle": 0 }
  828. ],
  829. "translate": [
  830. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  831. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  832. { "time": 0.2, "x": 0, "y": 0 }
  833. ],
  834. "scale": [
  835. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  836. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  837. { "time": 0.2, "x": 1, "y": 1 }
  838. ]
  839. },
  840. "bone11": {
  841. "rotate": [
  842. { "time": 0, "angle": 0, "curve": "stepped" },
  843. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  844. { "time": 0.6667, "angle": 0 },
  845. { "time": 1.3333, "angle": -7.08 },
  846. { "time": 2.1, "angle": 0 },
  847. { "time": 2.8333, "angle": -7.08 },
  848. { "time": 3.6667, "angle": 0 }
  849. ],
  850. "translate": [
  851. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  852. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  853. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  854. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  855. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  856. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  857. { "time": 3.6667, "x": 0, "y": 0 }
  858. ],
  859. "scale": [
  860. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  861. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  862. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  863. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  864. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  865. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  866. { "time": 3.6667, "x": 1, "y": 1 }
  867. ]
  868. },
  869. "bone12": {
  870. "rotate": [
  871. { "time": 0, "angle": 0 },
  872. {
  873. "time": 0.1667,
  874. "angle": -6.28,
  875. "curve": [ 0.25, 0, 0.75, 1 ]
  876. },
  877. { "time": 0.6667, "angle": 0 },
  878. { "time": 1.3333, "angle": 9.23 },
  879. { "time": 2.1, "angle": 0 },
  880. { "time": 2.8333, "angle": 9.23 },
  881. { "time": 3.6667, "angle": 0 }
  882. ],
  883. "translate": [
  884. { "time": 0, "x": -0.09, "y": -1.67 },
  885. {
  886. "time": 0.1667,
  887. "x": -0.25,
  888. "y": -1.52,
  889. "curve": [ 0.25, 0, 0.75, 1 ]
  890. },
  891. { "time": 0.6667, "x": -0.08, "y": -1.51 },
  892. { "time": 1.3333, "x": -0.14, "y": 1.33 },
  893. { "time": 2.1, "x": -0.04, "y": -0.75 },
  894. { "time": 2.8333, "x": -0.14, "y": 1.33 },
  895. { "time": 3.6667, "x": 0, "y": 0 }
  896. ],
  897. "scale": [
  898. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  899. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  900. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  901. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  902. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  903. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  904. { "time": 3.6667, "x": 1, "y": 1 }
  905. ]
  906. },
  907. "bone13": {
  908. "rotate": [
  909. { "time": 0, "angle": 0 },
  910. {
  911. "time": 0.1667,
  912. "angle": -0.57,
  913. "curve": [ 0.25, 0, 0.75, 1 ]
  914. },
  915. { "time": 0.6667, "angle": 0 },
  916. { "time": 1.3333, "angle": 6.61 },
  917. { "time": 2.1, "angle": 0 },
  918. { "time": 2.8333, "angle": 6.61 },
  919. { "time": 3.6667, "angle": 0 }
  920. ],
  921. "translate": [
  922. { "time": 0, "x": -1.15, "y": -0.8 },
  923. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  924. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  925. { "time": 1.3333, "x": 0, "y": 0 },
  926. { "time": 2.1, "x": -0.21, "y": -1.94 },
  927. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  928. { "time": 3.6667, "x": 0, "y": 0 }
  929. ],
  930. "scale": [
  931. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  932. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  933. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  934. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  935. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  936. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  937. { "time": 3.6667, "x": 1, "y": 1 }
  938. ]
  939. },
  940. "bone14": {
  941. "rotate": [
  942. { "time": 0, "angle": 0, "curve": "stepped" },
  943. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  944. { "time": 0.6667, "angle": 0 },
  945. { "time": 1.3333, "angle": 2.12 },
  946. { "time": 2.1, "angle": 0 },
  947. { "time": 2.8333, "angle": 2.12 },
  948. { "time": 3.6667, "angle": 0 }
  949. ],
  950. "translate": [
  951. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  952. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  953. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  954. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  955. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  956. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  957. { "time": 3.6667, "x": 0, "y": 0 }
  958. ],
  959. "scale": [
  960. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  961. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  962. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  963. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  964. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  965. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  966. { "time": 3.6667, "x": 1, "y": 1 }
  967. ]
  968. },
  969. "bone15": {
  970. "rotate": [
  971. { "time": 0, "angle": 0, "curve": "stepped" },
  972. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  973. { "time": 0.6667, "angle": 0 },
  974. { "time": 1.3333, "angle": 2.12 },
  975. { "time": 2.1, "angle": 0 },
  976. { "time": 2.8333, "angle": 2.12 },
  977. { "time": 3.6667, "angle": 0 }
  978. ],
  979. "translate": [
  980. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  981. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  982. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  983. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  984. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  985. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  986. { "time": 3.6667, "x": 0, "y": 0 }
  987. ],
  988. "scale": [
  989. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  990. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  991. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  992. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  993. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  994. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  995. { "time": 3.6667, "x": 1, "y": 1 }
  996. ]
  997. },
  998. "bone16": {
  999. "rotate": [
  1000. { "time": 0, "angle": 0, "curve": "stepped" },
  1001. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1002. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1003. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1004. { "time": 2.1, "angle": 0, "curve": "stepped" },
  1005. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  1006. { "time": 3.6667, "angle": 0 }
  1007. ],
  1008. "translate": [
  1009. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1010. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1011. { "time": 0.6667, "x": 0, "y": 0 },
  1012. { "time": 1.3333, "x": -2.02, "y": 0 },
  1013. { "time": 2.1, "x": 0, "y": 0 },
  1014. { "time": 2.8333, "x": -2.02, "y": 0 },
  1015. { "time": 3.6667, "x": 0, "y": 0 }
  1016. ],
  1017. "scale": [
  1018. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1019. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1020. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1021. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1022. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1023. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  1024. { "time": 3.6667, "x": 1, "y": 1 }
  1025. ]
  1026. },
  1027. "bone17": {
  1028. "rotate": [
  1029. { "time": 0, "angle": 0, "curve": "stepped" },
  1030. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1031. { "time": 0.6667, "angle": 0 },
  1032. { "time": 1.3333, "angle": 4.75 },
  1033. { "time": 2.1, "angle": 0 },
  1034. { "time": 2.8333, "angle": 4.75 },
  1035. { "time": 3.6667, "angle": 0 }
  1036. ],
  1037. "translate": [
  1038. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1039. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1040. { "time": 0.6667, "x": 0, "y": 0 },
  1041. { "time": 1.3333, "x": -0.07, "y": 1.61 },
  1042. { "time": 2.1, "x": 0, "y": 0 },
  1043. { "time": 2.8333, "x": -0.07, "y": 1.61 },
  1044. { "time": 3.6667, "x": 0, "y": 0 }
  1045. ],
  1046. "scale": [
  1047. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1048. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1049. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1050. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1051. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1052. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  1053. { "time": 3.6667, "x": 1, "y": 1 }
  1054. ]
  1055. },
  1056. "bone18": {
  1057. "rotate": [
  1058. { "time": 0, "angle": 0, "curve": "stepped" },
  1059. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1060. { "time": 0.6667, "angle": 0 },
  1061. { "time": 1.3333, "angle": 4.75 },
  1062. { "time": 2.1, "angle": 0 },
  1063. { "time": 2.8333, "angle": 4.75 },
  1064. { "time": 3.6667, "angle": 0 }
  1065. ],
  1066. "translate": [
  1067. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1068. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1069. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1070. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1071. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1072. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  1073. { "time": 3.6667, "x": 0, "y": 0 }
  1074. ],
  1075. "scale": [
  1076. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1077. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1078. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1079. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1080. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1081. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  1082. { "time": 3.6667, "x": 1, "y": 1 }
  1083. ]
  1084. },
  1085. "bone19": {
  1086. "rotate": [
  1087. { "time": 0, "angle": 0, "curve": "stepped" },
  1088. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1089. { "time": 0.6667, "angle": 0 },
  1090. { "time": 1.3333, "angle": 4.75 },
  1091. { "time": 2.1, "angle": 0 },
  1092. { "time": 2.8333, "angle": 4.75 },
  1093. { "time": 3.6667, "angle": 0 }
  1094. ],
  1095. "translate": [
  1096. { "time": 0, "x": 0, "y": 0 },
  1097. {
  1098. "time": 0.1667,
  1099. "x": 2.27,
  1100. "y": 0.08,
  1101. "curve": [ 0.25, 0, 0.75, 1 ]
  1102. },
  1103. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1104. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1105. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1106. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  1107. { "time": 3.6667, "x": 0, "y": 0 }
  1108. ],
  1109. "scale": [
  1110. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1111. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1112. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1113. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1114. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1115. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  1116. { "time": 3.6667, "x": 1, "y": 1 }
  1117. ]
  1118. },
  1119. "bone20": {
  1120. "rotate": [
  1121. { "time": 0, "angle": 0, "curve": "stepped" },
  1122. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1123. { "time": 0.6667, "angle": 0 },
  1124. { "time": 1.3333, "angle": 4.75 },
  1125. { "time": 2.1, "angle": 0 },
  1126. { "time": 2.8333, "angle": 4.75 },
  1127. { "time": 3.6667, "angle": 0 }
  1128. ],
  1129. "translate": [
  1130. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1131. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1132. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1133. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1134. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1135. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  1136. { "time": 3.6667, "x": 0, "y": 0 }
  1137. ],
  1138. "scale": [
  1139. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1140. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1141. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1142. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1143. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1144. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  1145. { "time": 3.6667, "x": 1, "y": 1 }
  1146. ]
  1147. },
  1148. "bone21": {
  1149. "rotate": [
  1150. { "time": 0, "angle": 0, "curve": "stepped" },
  1151. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1152. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1153. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1154. { "time": 2.1, "angle": 0, "curve": "stepped" },
  1155. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  1156. { "time": 3.6667, "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.3333, "x": 0, "y": 0, "curve": "stepped" },
  1163. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1164. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  1165. { "time": 3.6667, "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.3333, "x": 1, "y": 1, "curve": "stepped" },
  1172. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1173. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  1174. { "time": 3.6667, "x": 1, "y": 1 }
  1175. ]
  1176. },
  1177. "bone22": {
  1178. "rotate": [
  1179. { "time": 0, "angle": 0, "curve": "stepped" },
  1180. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1181. { "time": 0.6667, "angle": 0 },
  1182. { "time": 1.3333, "angle": 5.41 },
  1183. { "time": 2.1, "angle": 0 },
  1184. { "time": 2.8333, "angle": 5.41 },
  1185. { "time": 3.6667, "angle": 0 }
  1186. ],
  1187. "translate": [
  1188. { "time": 0, "x": 0.05, "y": 2 },
  1189. {
  1190. "time": 0.1667,
  1191. "x": 0.06,
  1192. "y": 2.28,
  1193. "curve": [ 0.25, 0, 0.75, 1 ]
  1194. },
  1195. { "time": 0.6667, "x": 0.03, "y": 1.27 },
  1196. { "time": 1.3333, "x": -0.1, "y": 1.53 },
  1197. { "time": 2.1, "x": 0, "y": 0 },
  1198. { "time": 2.8333, "x": -0.1, "y": 1.53 },
  1199. { "time": 3.6667, "x": 0, "y": 0 }
  1200. ],
  1201. "scale": [
  1202. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1203. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1204. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1205. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1206. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1207. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  1208. { "time": 3.6667, "x": 1, "y": 1 }
  1209. ]
  1210. },
  1211. "bone23": {
  1212. "rotate": [
  1213. { "time": 0, "angle": 0 },
  1214. {
  1215. "time": 0.1667,
  1216. "angle": 12.35,
  1217. "curve": [ 0.25, 0, 0.75, 1 ]
  1218. },
  1219. { "time": 0.6667, "angle": 0 },
  1220. { "time": 1.0333, "angle": 1.9 },
  1221. { "time": 1.3333, "angle": 5.41 },
  1222. { "time": 1.6667, "angle": 7.78 },
  1223. { "time": 2.1, "angle": 0 },
  1224. { "time": 2.5, "angle": 1.9 },
  1225. { "time": 2.8333, "angle": 5.41 },
  1226. { "time": 3.2, "angle": 7.78 },
  1227. { "time": 3.6667, "angle": 0 }
  1228. ],
  1229. "translate": [
  1230. { "time": 0, "x": 0, "y": 0.96 },
  1231. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1232. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1233. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1234. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1235. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  1236. { "time": 3.6667, "x": 0, "y": 0 }
  1237. ],
  1238. "scale": [
  1239. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1240. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1241. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1242. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1243. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1244. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  1245. { "time": 3.6667, "x": 1, "y": 1 }
  1246. ]
  1247. },
  1248. "bone24": {
  1249. "rotate": [
  1250. { "time": 0, "angle": 0 },
  1251. {
  1252. "time": 0.1667,
  1253. "angle": 7.65,
  1254. "curve": [ 0.25, 0, 0.75, 1 ]
  1255. },
  1256. { "time": 0.6667, "angle": 0 },
  1257. { "time": 1.0333, "angle": 1.9 },
  1258. { "time": 1.3333, "angle": 5.41 },
  1259. { "time": 1.6667, "angle": 7.78 },
  1260. { "time": 2.1, "angle": 0 },
  1261. { "time": 2.5, "angle": 1.9 },
  1262. { "time": 2.8333, "angle": 5.41 },
  1263. { "time": 3.2, "angle": 7.78 },
  1264. { "time": 3.6667, "angle": 0 }
  1265. ],
  1266. "translate": [
  1267. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1268. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1269. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1270. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1271. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1272. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  1273. { "time": 3.6667, "x": 0, "y": 0 }
  1274. ],
  1275. "scale": [
  1276. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1277. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1278. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1279. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1280. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1281. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  1282. { "time": 3.6667, "x": 1, "y": 1 }
  1283. ]
  1284. },
  1285. "bone25": {
  1286. "rotate": [
  1287. { "time": 0, "angle": 0, "curve": "stepped" },
  1288. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1289. { "time": 0.6667, "angle": 0 },
  1290. { "time": 1.0333, "angle": 1.9 },
  1291. { "time": 1.3333, "angle": 5.41 },
  1292. { "time": 1.6667, "angle": 7.78 },
  1293. { "time": 2.1, "angle": 0 },
  1294. { "time": 2.5, "angle": 1.9 },
  1295. { "time": 2.8333, "angle": 5.41 },
  1296. { "time": 3.2, "angle": 7.78 },
  1297. { "time": 3.6667, "angle": 0 }
  1298. ],
  1299. "translate": [
  1300. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1301. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1302. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1303. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1304. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1305. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  1306. { "time": 3.6667, "x": 0, "y": 0 }
  1307. ],
  1308. "scale": [
  1309. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1310. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1311. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1312. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1313. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1314. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  1315. { "time": 3.6667, "x": 1, "y": 1 }
  1316. ]
  1317. },
  1318. "bone26": {
  1319. "rotate": [
  1320. { "time": 0, "angle": 0, "curve": "stepped" },
  1321. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1322. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1323. { "time": 2, "angle": 0, "curve": "stepped" },
  1324. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  1325. { "time": 3.2667, "angle": 0 }
  1326. ],
  1327. "translate": [
  1328. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1329. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1330. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1331. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1332. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1333. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1334. { "time": 3.2667, "x": 0, "y": 0 }
  1335. ],
  1336. "scale": [
  1337. { "time": 0, "x": 0.5, "y": 1, "curve": "stepped" },
  1338. { "time": 0.3333, "x": 0.5, "y": 1 },
  1339. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1340. { "time": 1.7, "x": 1, "y": 1 },
  1341. { "time": 1.8333, "x": 1.5, "y": 1 },
  1342. { "time": 2, "x": 0.5, "y": 1 },
  1343. { "time": 2.2, "x": 1, "y": 1 },
  1344. { "time": 2.3333, "x": 1.5, "y": 1 },
  1345. { "time": 2.5667, "x": 1, "y": 1 },
  1346. { "time": 2.8, "x": 1.2, "y": 1 },
  1347. { "time": 2.9333, "x": 1.5, "y": 1 },
  1348. { "time": 3.0667, "x": 1, "y": 1 },
  1349. { "time": 3.2667, "x": 0.5, "y": 1 }
  1350. ]
  1351. },
  1352. "bone27": {
  1353. "translate": [
  1354. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1355. { "time": 1.9667, "x": -1.3, "y": -0.07 },
  1356. { "time": 2.1667, "x": -0.24, "y": 0 }
  1357. ],
  1358. "scale": [
  1359. { "time": 0, "x": 1, "y": 1 }
  1360. ]
  1361. },
  1362. "bone28": {
  1363. "translate": [
  1364. { "time": 0, "x": 0, "y": 0 },
  1365. { "time": 0.1, "x": -1.52, "y": 0, "curve": "stepped" },
  1366. { "time": 0.2333, "x": -1.52, "y": 0 },
  1367. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1368. { "time": 1.0667, "x": 0, "y": 0 },
  1369. { "time": 1.1667, "x": -1.52, "y": 0, "curve": "stepped" },
  1370. { "time": 1.3, "x": -1.52, "y": 0 },
  1371. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1372. { "time": 1.7667, "x": 0, "y": 0 },
  1373. { "time": 1.9, "x": -1.52, "y": 0, "curve": "stepped" },
  1374. { "time": 1.9667, "x": -1.52, "y": 0 },
  1375. { "time": 2.2, "x": 0, "y": 0 }
  1376. ]
  1377. },
  1378. "bone29": {
  1379. "rotate": [
  1380. { "time": 0, "angle": 0, "curve": "stepped" },
  1381. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1382. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1383. { "time": 0.4, "angle": 0 }
  1384. ],
  1385. "translate": [
  1386. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1387. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1388. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1389. { "time": 0.4, "x": 0, "y": 0 }
  1390. ],
  1391. "scale": [
  1392. { "time": 0, "x": 1, "y": 1 },
  1393. { "time": 0.1, "x": 0.304, "y": 1, "curve": "stepped" },
  1394. { "time": 0.2333, "x": 0.304, "y": 1 },
  1395. { "time": 0.4, "x": 0.875, "y": 1, "curve": "stepped" },
  1396. { "time": 1.0667, "x": 0.875, "y": 1 },
  1397. { "time": 1.1667, "x": 0.304, "y": 1, "curve": "stepped" },
  1398. { "time": 1.3, "x": 0.304, "y": 1 },
  1399. { "time": 1.6667, "x": 0.875, "y": 1 },
  1400. { "time": 1.7667, "x": 1, "y": 1 },
  1401. { "time": 1.9, "x": 0.304, "y": 1, "curve": "stepped" },
  1402. { "time": 1.9667, "x": 0.304, "y": 1 },
  1403. { "time": 2.2, "x": 1, "y": 1 }
  1404. ]
  1405. },
  1406. "bone30": {
  1407. "scale": [
  1408. { "time": 0, "x": 1, "y": 1 },
  1409. { "time": 0.1, "x": 0.304, "y": 1, "curve": "stepped" },
  1410. { "time": 0.2333, "x": 0.304, "y": 1 },
  1411. { "time": 0.4, "x": 0.875, "y": 1, "curve": "stepped" },
  1412. { "time": 1.0667, "x": 0.875, "y": 1 },
  1413. { "time": 1.1667, "x": 0.304, "y": 1, "curve": "stepped" },
  1414. { "time": 1.3, "x": 0.304, "y": 1 },
  1415. { "time": 1.6667, "x": 0.875, "y": 1 },
  1416. { "time": 1.7667, "x": 1, "y": 1 },
  1417. { "time": 1.9, "x": 0.304, "y": 1, "curve": "stepped" },
  1418. { "time": 1.9667, "x": 0.304, "y": 1 },
  1419. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  1420. { "time": 2.5667, "x": 1, "y": 1 }
  1421. ]
  1422. },
  1423. "bone32": {
  1424. "rotate": [
  1425. { "time": 0, "angle": 0, "curve": "stepped" },
  1426. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1427. { "time": 0.3333, "angle": 0 }
  1428. ],
  1429. "translate": [
  1430. { "time": 0, "x": 0, "y": 0 },
  1431. { "time": 0.1667, "x": -2.57, "y": -0.02 },
  1432. { "time": 0.3333, "x": 0, "y": 0 }
  1433. ],
  1434. "scale": [
  1435. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1436. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1437. { "time": 0.3333, "x": 1, "y": 1 }
  1438. ]
  1439. },
  1440. "bone33": {
  1441. "rotate": [
  1442. { "time": 0, "angle": 0, "curve": "stepped" },
  1443. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1444. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1445. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1446. { "time": 2.1, "angle": 0 }
  1447. ],
  1448. "translate": [
  1449. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1450. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1451. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1452. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1453. { "time": 2.1, "x": 0, "y": 0 }
  1454. ],
  1455. "scale": [
  1456. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1457. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1458. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1459. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1460. { "time": 2.1, "x": 1, "y": 1 }
  1461. ]
  1462. },
  1463. "bone35": {
  1464. "rotate": [
  1465. { "time": 0, "angle": 0, "curve": "stepped" },
  1466. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1467. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1468. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1469. { "time": 2.1, "angle": 0 }
  1470. ],
  1471. "translate": [
  1472. { "time": 0, "x": 0, "y": 0 },
  1473. { "time": 0.1667, "x": -1.7, "y": 0.01 },
  1474. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1475. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1476. { "time": 2.1, "x": 0, "y": 0 }
  1477. ],
  1478. "scale": [
  1479. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1480. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1481. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1482. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1483. { "time": 2.1, "x": 1, "y": 1 }
  1484. ]
  1485. },
  1486. "bone36": {
  1487. "rotate": [
  1488. { "time": 0, "angle": 0, "curve": "stepped" },
  1489. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1490. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1491. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1492. { "time": 2.1, "angle": 0 }
  1493. ],
  1494. "translate": [
  1495. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1496. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1497. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1498. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1499. { "time": 2.1, "x": 0, "y": 0 }
  1500. ],
  1501. "scale": [
  1502. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1503. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1504. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1505. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1506. { "time": 2.1, "x": 1, "y": 1 }
  1507. ]
  1508. },
  1509. "bone38": {
  1510. "rotate": [
  1511. { "time": 0, "angle": 0, "curve": "stepped" },
  1512. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1513. { "time": 0.3333, "angle": 0 },
  1514. { "time": 1.7333, "angle": 7.3 }
  1515. ]
  1516. },
  1517. "bone47": {
  1518. "rotate": [
  1519. { "time": 0, "angle": 0, "curve": "stepped" },
  1520. { "time": 0.3333, "angle": 0 },
  1521. { "time": 1.7333, "angle": 8.13 },
  1522. { "time": 3.6667, "angle": 0 }
  1523. ],
  1524. "translate": [
  1525. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1526. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1527. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1528. { "time": 3.6667, "x": 0, "y": 0 }
  1529. ],
  1530. "scale": [
  1531. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1532. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1533. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1534. { "time": 3.6667, "x": 1, "y": 1 }
  1535. ]
  1536. },
  1537. "bone48": {
  1538. "rotate": [
  1539. { "time": 0, "angle": 0 },
  1540. { "time": 0.3333, "angle": -7.68 },
  1541. { "time": 1.7333, "angle": 8.13 },
  1542. { "time": 3.6667, "angle": 0 }
  1543. ],
  1544. "translate": [
  1545. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1546. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1547. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1548. { "time": 3.6667, "x": 0, "y": 0 }
  1549. ],
  1550. "scale": [
  1551. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1552. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1553. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1554. { "time": 3.6667, "x": 1, "y": 1 }
  1555. ]
  1556. },
  1557. "bone49": {
  1558. "rotate": [
  1559. { "time": 0, "angle": 0, "curve": "stepped" },
  1560. { "time": 0.3333, "angle": 0 },
  1561. { "time": 1.7333, "angle": 8.13 },
  1562. { "time": 3.6667, "angle": 0 }
  1563. ],
  1564. "translate": [
  1565. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1566. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1567. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1568. { "time": 3.6667, "x": 0, "y": 0 }
  1569. ],
  1570. "scale": [
  1571. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1572. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1573. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1574. { "time": 3.6667, "x": 1, "y": 1 }
  1575. ]
  1576. },
  1577. "bone50": {
  1578. "rotate": [
  1579. { "time": 0, "angle": 0, "curve": "stepped" },
  1580. { "time": 0.3333, "angle": 0 },
  1581. { "time": 1.7333, "angle": -13.49 },
  1582. { "time": 3.6667, "angle": 0 }
  1583. ],
  1584. "translate": [
  1585. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1586. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1587. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1588. { "time": 3.6667, "x": 0, "y": 0 }
  1589. ],
  1590. "scale": [
  1591. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1592. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1593. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1594. { "time": 3.6667, "x": 1, "y": 1 }
  1595. ]
  1596. },
  1597. "bone51": {
  1598. "rotate": [
  1599. { "time": 0, "angle": 0, "curve": "stepped" },
  1600. { "time": 0.3333, "angle": 0 },
  1601. { "time": 1.7333, "angle": 8.13 },
  1602. { "time": 2.1, "angle": 0 }
  1603. ],
  1604. "translate": [
  1605. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1606. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1607. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1608. { "time": 2.1, "x": 0, "y": 0 }
  1609. ],
  1610. "scale": [
  1611. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1612. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1613. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1614. { "time": 2.1, "x": 1, "y": 1 }
  1615. ]
  1616. },
  1617. "bone52": {
  1618. "rotate": [
  1619. { "time": 0, "angle": 0 },
  1620. { "time": 0.1667, "angle": 5.12 },
  1621. { "time": 0.3333, "angle": 0 },
  1622. { "time": 1.7333, "angle": 9.01 },
  1623. { "time": 3.6667, "angle": 0 }
  1624. ],
  1625. "translate": [
  1626. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1627. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1628. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1629. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1630. { "time": 3.6667, "x": 0, "y": 0 }
  1631. ],
  1632. "scale": [
  1633. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1634. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1635. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1636. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1637. { "time": 3.6667, "x": 1, "y": 1 }
  1638. ]
  1639. },
  1640. "bone53": {
  1641. "rotate": [
  1642. { "time": 0, "angle": 0 },
  1643. { "time": 0.1667, "angle": -1.05 },
  1644. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1645. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1646. { "time": 3.6667, "angle": 0 }
  1647. ],
  1648. "translate": [
  1649. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1650. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1651. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1652. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1653. { "time": 3.6667, "x": 0, "y": 0 }
  1654. ],
  1655. "scale": [
  1656. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1657. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1658. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1659. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1660. { "time": 3.6667, "x": 1, "y": 1 }
  1661. ]
  1662. },
  1663. "bone54": {
  1664. "rotate": [
  1665. { "time": 0, "angle": 0 },
  1666. { "time": 0.1667, "angle": 5.03 },
  1667. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1668. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1669. { "time": 3.6667, "angle": 0 }
  1670. ],
  1671. "translate": [
  1672. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1673. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1674. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1675. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1676. { "time": 3.6667, "x": 0, "y": 0 }
  1677. ],
  1678. "scale": [
  1679. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1680. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1681. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1682. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1683. { "time": 3.6667, "x": 1, "y": 1 }
  1684. ]
  1685. },
  1686. "bone55": {
  1687. "rotate": [
  1688. { "time": 0, "angle": 0, "curve": "stepped" },
  1689. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1690. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1691. { "time": 1.7333, "angle": 0 }
  1692. ],
  1693. "translate": [
  1694. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1695. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1696. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1697. { "time": 1.7333, "x": 0, "y": 0 }
  1698. ],
  1699. "scale": [
  1700. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1701. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1702. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1703. { "time": 1.7333, "x": 1, "y": 1 }
  1704. ]
  1705. },
  1706. "bone56": {
  1707. "rotate": [
  1708. { "time": 0, "angle": 0, "curve": "stepped" },
  1709. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1710. { "time": 0.5, "angle": 0 },
  1711. { "time": 1.7333, "angle": 6.24 },
  1712. { "time": 3.6667, "angle": 0 }
  1713. ],
  1714. "translate": [
  1715. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1716. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1717. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1718. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1719. { "time": 3.6667, "x": 0, "y": 0 }
  1720. ],
  1721. "scale": [
  1722. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1723. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1724. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1725. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1726. { "time": 3.6667, "x": 1, "y": 1 }
  1727. ]
  1728. },
  1729. "bone57": {
  1730. "rotate": [
  1731. { "time": 0, "angle": 0 },
  1732. {
  1733. "time": 0.1667,
  1734. "angle": 5.27,
  1735. "curve": [ 0.25, 0, 0.75, 1 ]
  1736. },
  1737. { "time": 0.5, "angle": 0 },
  1738. { "time": 1.7333, "angle": 1.9 },
  1739. { "time": 3.6667, "angle": 0 }
  1740. ],
  1741. "translate": [
  1742. { "time": 0, "x": 0, "y": 0 },
  1743. {
  1744. "time": 0.1667,
  1745. "x": 0.54,
  1746. "y": -0.1,
  1747. "curve": [ 0.25, 0, 0.75, 1 ]
  1748. },
  1749. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1750. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1751. { "time": 3.6667, "x": 0, "y": 0 }
  1752. ],
  1753. "scale": [
  1754. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1755. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1756. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1757. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1758. { "time": 3.6667, "x": 1, "y": 1 }
  1759. ]
  1760. },
  1761. "bone58": {
  1762. "rotate": [
  1763. { "time": 0, "angle": 0, "curve": "stepped" },
  1764. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1765. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1766. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1767. { "time": 3.6667, "angle": 0 }
  1768. ],
  1769. "translate": [
  1770. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1771. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1772. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1773. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1774. { "time": 3.6667, "x": 0, "y": 0 }
  1775. ],
  1776. "scale": [
  1777. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1778. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1779. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1780. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1781. { "time": 3.6667, "x": 1, "y": 1 }
  1782. ]
  1783. },
  1784. "bone59": {
  1785. "rotate": [
  1786. { "time": 0, "angle": 0, "curve": "stepped" },
  1787. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1788. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1789. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1790. { "time": 3.6667, "angle": 0 }
  1791. ],
  1792. "translate": [
  1793. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1794. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1795. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1796. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1797. { "time": 3.6667, "x": 0, "y": 0 }
  1798. ],
  1799. "scale": [
  1800. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1801. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1802. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1803. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1804. { "time": 3.6667, "x": 1, "y": 1 }
  1805. ]
  1806. },
  1807. "bone60": {
  1808. "rotate": [
  1809. { "time": 0.2, "angle": -4.22 },
  1810. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1811. { "time": 0.5, "angle": 0 },
  1812. { "time": 0.7, "angle": 2.3 },
  1813. { "time": 1.1, "angle": 0, "curve": "stepped" },
  1814. { "time": 1.7333, "angle": 0 },
  1815. { "time": 2.1, "angle": 2.3 },
  1816. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1817. { "time": 2.9, "angle": 0 },
  1818. { "time": 3.2667, "angle": 2.3 },
  1819. { "time": 3.6667, "angle": 0 }
  1820. ],
  1821. "translate": [
  1822. { "time": 0.2, "x": -88.13, "y": 369.93, "curve": "stepped" },
  1823. { "time": 0.3333, "x": -88.13, "y": 369.93, "curve": "stepped" },
  1824. { "time": 0.5, "x": -88.13, "y": 369.93, "curve": "stepped" },
  1825. { "time": 0.7, "x": -88.13, "y": 369.93, "curve": "stepped" },
  1826. { "time": 1.1, "x": -88.13, "y": 369.93, "curve": "stepped" },
  1827. { "time": 1.7333, "x": -88.13, "y": 369.93, "curve": "stepped" },
  1828. { "time": 2.1, "x": -88.13, "y": 369.93, "curve": "stepped" },
  1829. { "time": 2.5, "x": -88.13, "y": 369.93, "curve": "stepped" },
  1830. { "time": 2.9, "x": -88.13, "y": 369.93, "curve": "stepped" },
  1831. { "time": 3.2667, "x": -88.13, "y": 369.93, "curve": "stepped" },
  1832. { "time": 3.6667, "x": -88.13, "y": 369.93 }
  1833. ],
  1834. "scale": [
  1835. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1836. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1837. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1838. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1839. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1840. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1841. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1842. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1843. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1844. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  1845. { "time": 3.6667, "x": 1, "y": 1 }
  1846. ]
  1847. },
  1848. "bone42": {
  1849. "rotate": [
  1850. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1851. { "time": 0.3, "angle": 0, "curve": "stepped" },
  1852. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1853. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1854. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1855. { "time": 1.1, "angle": 0, "curve": "stepped" },
  1856. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1857. { "time": 2.1, "angle": 0, "curve": "stepped" },
  1858. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1859. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1860. { "time": 3.2667, "angle": 0, "curve": "stepped" },
  1861. { "time": 3.6667, "angle": 0 }
  1862. ],
  1863. "translate": [
  1864. { "time": 0.2, "x": -411.75, "y": 50.34 },
  1865. { "time": 0.3, "x": -411.75, "y": -23.61 },
  1866. { "time": 0.4333, "x": -411.75, "y": -21.87, "curve": "stepped" },
  1867. { "time": 0.5, "x": -411.75, "y": -21.87 },
  1868. { "time": 0.7, "x": -411.53, "y": -21.21 },
  1869. { "time": 1.1, "x": -413.18, "y": -22.44, "curve": "stepped" },
  1870. { "time": 1.7333, "x": -413.18, "y": -22.44 },
  1871. { "time": 2.1, "x": -410.27, "y": -21.21 },
  1872. { "time": 2.5, "x": -413.18, "y": -22.44, "curve": "stepped" },
  1873. { "time": 2.9, "x": -413.18, "y": -22.44 },
  1874. { "time": 3.2667, "x": -410.27, "y": -21.21 },
  1875. { "time": 3.6667, "x": -413.18, "y": -22.44 }
  1876. ],
  1877. "scale": [
  1878. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1879. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1880. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1881. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1882. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1883. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1884. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1885. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1886. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1887. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1888. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  1889. { "time": 3.6667, "x": 1, "y": 1 }
  1890. ]
  1891. },
  1892. "bone63": {
  1893. "rotate": [
  1894. { "time": 0.2, "angle": 0.75 },
  1895. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1896. { "time": 0.5, "angle": 0 },
  1897. { "time": 0.6333, "angle": 0.8 }
  1898. ],
  1899. "translate": [
  1900. { "time": 0.2, "x": -81.84, "y": 428.45, "curve": "stepped" },
  1901. { "time": 0.3333, "x": -81.84, "y": 428.45, "curve": "stepped" },
  1902. { "time": 0.5, "x": -81.84, "y": 428.45 }
  1903. ],
  1904. "scale": [
  1905. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1906. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1907. { "time": 0.5, "x": 1, "y": 1 }
  1908. ]
  1909. },
  1910. "bone61": {
  1911. "rotate": [
  1912. { "time": 0.2, "angle": -8.23 },
  1913. {
  1914. "time": 0.3333,
  1915. "angle": 0,
  1916. "curve": [ 0.25, 0, 0.75, 1 ]
  1917. },
  1918. { "time": 0.5, "angle": 1.46, "curve": "stepped" },
  1919. { "time": 0.5667, "angle": 1.46, "curve": "stepped" },
  1920. { "time": 1.1, "angle": 1.46, "curve": "stepped" },
  1921. { "time": 1.7333, "angle": 1.46, "curve": "stepped" },
  1922. { "time": 2.5, "angle": 1.46, "curve": "stepped" },
  1923. { "time": 2.9, "angle": 1.46, "curve": "stepped" },
  1924. { "time": 3.6667, "angle": 1.46 }
  1925. ],
  1926. "translate": [
  1927. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1928. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1929. { "time": 0.5, "x": 0, "y": 0 },
  1930. { "time": 0.7, "x": -1.65, "y": -0.54 },
  1931. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1932. { "time": 1.7333, "x": 0, "y": 0 },
  1933. { "time": 2.1, "x": -1.65, "y": -0.54 },
  1934. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1935. { "time": 2.9, "x": 0, "y": 0 },
  1936. { "time": 3.2667, "x": -1.65, "y": -0.54 },
  1937. { "time": 3.6667, "x": 0, "y": 0 }
  1938. ],
  1939. "scale": [
  1940. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1941. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1942. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1943. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1944. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1945. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1946. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1947. { "time": 3.6667, "x": 1, "y": 1 }
  1948. ]
  1949. },
  1950. "bone64": {
  1951. "rotate": [
  1952. { "time": 0.2, "angle": 38.98 },
  1953. { "time": 0.3333, "angle": 20.71, "curve": "stepped" },
  1954. { "time": 0.5, "angle": 20.71 },
  1955. { "time": 0.6667, "angle": 5.82 },
  1956. { "time": 1.0333, "angle": 13.32, "curve": "stepped" },
  1957. { "time": 1.7333, "angle": 13.32 },
  1958. { "time": 1.9333, "angle": 0.79 },
  1959. { "time": 2.1667, "angle": 4.35 },
  1960. { "time": 2.6667, "angle": 7.04 },
  1961. { "time": 2.8333, "angle": 13.32 },
  1962. { "time": 3.0333, "angle": 0.79 },
  1963. { "time": 3.2667, "angle": 4.35 },
  1964. { "time": 3.7667, "angle": 7.04 }
  1965. ],
  1966. "translate": [
  1967. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1968. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1969. { "time": 0.5, "x": 0, "y": 0 },
  1970. { "time": 0.6667, "x": -2.17, "y": 1.69 },
  1971. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  1972. { "time": 1.7333, "x": 0, "y": 0 },
  1973. { "time": 1.9333, "x": 1.36, "y": 3.73 },
  1974. { "time": 2.1667, "x": 8.03, "y": 5.57 },
  1975. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1976. { "time": 2.8333, "x": 0, "y": 0 },
  1977. { "time": 3.0333, "x": 1.36, "y": 3.73 },
  1978. { "time": 3.2667, "x": 8.03, "y": 5.57 },
  1979. { "time": 3.7667, "x": 0, "y": 0 }
  1980. ],
  1981. "scale": [
  1982. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1983. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1984. { "time": 0.5, "x": 1, "y": 1 },
  1985. { "time": 0.6667, "x": 0.745, "y": 1 },
  1986. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  1987. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1988. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1989. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1990. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  1991. { "time": 3.0333, "x": 1, "y": 1, "curve": "stepped" },
  1992. { "time": 3.7667, "x": 1, "y": 1 }
  1993. ]
  1994. },
  1995. "bone65": {
  1996. "rotate": [
  1997. { "time": 0.5, "angle": 0 },
  1998. { "time": 0.6667, "angle": -35.63 },
  1999. { "time": 0.9667, "angle": -23.74 },
  2000. { "time": 1.0667, "angle": -8.87, "curve": "stepped" },
  2001. { "time": 1.7333, "angle": -8.87 },
  2002. { "time": 2.1, "angle": -4.88 },
  2003. { "time": 2.9, "angle": -8.87 },
  2004. { "time": 3.2667, "angle": -12.9 }
  2005. ],
  2006. "translate": [
  2007. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2008. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2009. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2010. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  2011. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2012. { "time": 3.2667, "x": 0, "y": 0 }
  2013. ],
  2014. "scale": [
  2015. { "time": 0.6667, "x": 1, "y": 1 },
  2016. { "time": 0.8333, "x": 0.9, "y": 1 },
  2017. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2018. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2019. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  2020. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2021. { "time": 3.2667, "x": 1, "y": 1 }
  2022. ]
  2023. },
  2024. "bone62": {
  2025. "rotate": [
  2026. { "time": 0.2, "angle": 0, "curve": "stepped" },
  2027. {
  2028. "time": 0.3333,
  2029. "angle": 0,
  2030. "curve": [ 0.25, 0, 0.75, 1 ]
  2031. },
  2032. { "time": 0.5, "angle": 8.57, "curve": "stepped" },
  2033. { "time": 0.5667, "angle": 8.57, "curve": "stepped" },
  2034. { "time": 1.1, "angle": 8.57, "curve": "stepped" },
  2035. { "time": 1.7333, "angle": 8.57, "curve": "stepped" },
  2036. { "time": 2.5, "angle": 8.57, "curve": "stepped" },
  2037. { "time": 2.9, "angle": 8.57, "curve": "stepped" },
  2038. { "time": 3.6667, "angle": 8.57 }
  2039. ],
  2040. "translate": [
  2041. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  2042. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2043. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2044. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2045. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2046. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2047. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2048. { "time": 3.6667, "x": 0, "y": 0 }
  2049. ],
  2050. "scale": [
  2051. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  2052. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2053. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2054. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2055. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2056. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2057. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2058. { "time": 3.6667, "x": 1, "y": 1 }
  2059. ]
  2060. },
  2061. "bone67": {
  2062. "rotate": [
  2063. { "time": 2.2, "angle": 0, "curve": "stepped" },
  2064. { "time": 2.5667, "angle": 0 }
  2065. ],
  2066. "translate": [
  2067. { "time": 0.2333, "x": 0, "y": 0 },
  2068. { "time": 0.4, "x": -1.6, "y": -1.56, "curve": "stepped" },
  2069. { "time": 2.2, "x": -1.6, "y": -1.56, "curve": "stepped" },
  2070. { "time": 2.5667, "x": -1.6, "y": -1.56 }
  2071. ],
  2072. "scale": [
  2073. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2074. { "time": 2.5667, "x": 1, "y": 1 }
  2075. ]
  2076. },
  2077. "bone66": {
  2078. "translate": [
  2079. { "time": 0.2333, "x": 0, "y": 0 },
  2080. { "time": 0.4, "x": -2.04, "y": -1.59 }
  2081. ]
  2082. },
  2083. "bone68": {
  2084. "rotate": [
  2085. { "time": 0.6, "angle": 0 },
  2086. { "time": 0.7333, "angle": -0.25 }
  2087. ],
  2088. "translate": [
  2089. { "time": 0.6, "x": 1.45, "y": 130.28 }
  2090. ]
  2091. },
  2092. "bone70": {
  2093. "rotate": [
  2094. { "time": 0.6667, "angle": -267.32, "curve": "stepped" },
  2095. { "time": 0.7667, "angle": 92.68 }
  2096. ],
  2097. "translate": [
  2098. { "time": 0.6667, "x": -117.67, "y": 3.85, "curve": "stepped" },
  2099. { "time": 0.7667, "x": -119.39, "y": 2.42 }
  2100. ]
  2101. },
  2102. "bone45": {
  2103. "rotate": [
  2104. { "time": 0.8333, "angle": 14.77 },
  2105. { "time": 1.0333, "angle": 1.57 }
  2106. ],
  2107. "translate": [
  2108. { "time": 0.8333, "x": 0, "y": 0.83 },
  2109. { "time": 1.0333, "x": -3.61, "y": 0.44 }
  2110. ]
  2111. }
  2112. },
  2113. "deform": {
  2114. "default": {
  2115. "jitui 2": {
  2116. "jitui 1": [
  2117. { "time": 0.8333, "curve": "stepped" },
  2118. { "time": 1.8667 },
  2119. {
  2120. "time": 2,
  2121. "offset": 4,
  2122. "vertices": [ 4.7298, 2.69006, -2.64051, 0.55399, -4.60381, -2.31343, -2.09911, -0.63595 ]
  2123. },
  2124. { "time": 2.2, "curve": "stepped" },
  2125. { "time": 2.9 },
  2126. {
  2127. "time": 3.2667,
  2128. "offset": 6,
  2129. "vertices": [ -10.06352, -1.62595, -4.60381, -2.31343, -2.09911, -0.63595 ]
  2130. },
  2131. { "time": 3.3667 }
  2132. ]
  2133. },
  2134. "jituiuao2": {
  2135. "jituiuao": [
  2136. {
  2137. "time": 2.2,
  2138. "offset": 2,
  2139. "vertices": [ -1.35539, 1.29927, -3.82178, 0.25464, -1.78424, -0.58456 ],
  2140. "curve": "stepped"
  2141. },
  2142. {
  2143. "time": 2.9,
  2144. "offset": 2,
  2145. "vertices": [ -1.35539, 1.29927, -3.82178, 0.25464, -1.78424, -0.58456 ]
  2146. },
  2147. {
  2148. "time": 3.1,
  2149. "offset": 2,
  2150. "vertices": [ 5.61088, -0.25552, -3.82178, 0.25464, -2.23921, -2.07673 ]
  2151. },
  2152. {
  2153. "time": 3.2,
  2154. "offset": 2,
  2155. "vertices": [ -1.35539, 1.29927, -3.82178, 0.25464, -1.78424, -0.58456 ]
  2156. },
  2157. {
  2158. "time": 3.2667,
  2159. "vertices": [ 5.79153, -0.39967, -1.73317, 0.65444, -8.60789, 0.64726, -2.37309, -0.41091, 4.84785, -1.54089 ]
  2160. },
  2161. {
  2162. "time": 3.3667,
  2163. "vertices": [ 2.67934, 0.41415, -2.87878, 0.51106, -6.88673, 1.79406, -2.87878, 0.51106, 3.28338, -0.17509 ]
  2164. }
  2165. ]
  2166. },
  2167. "youshou1": {
  2168. "youshou1": [
  2169. { "time": 0.2 }
  2170. ]
  2171. },
  2172. "youshou 2": {
  2173. "youshou 2": [
  2174. { "time": 0.2, "curve": "stepped" },
  2175. { "time": 1.7333 },
  2176. {
  2177. "time": 2.1,
  2178. "vertices": [ 1.78303, 3.19676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.52813, 1.39635 ]
  2179. },
  2180. { "time": 2.5, "curve": "stepped" },
  2181. { "time": 2.6667 },
  2182. {
  2183. "time": 3.0333,
  2184. "vertices": [ 1.78303, 3.19676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.52813, 1.39635 ]
  2185. },
  2186. { "time": 3.4333 }
  2187. ]
  2188. },
  2189. "zuoshou1": {
  2190. "zuoshou1": [
  2191. { "time": 0.2 }
  2192. ]
  2193. },
  2194. "zuoshou 1": {
  2195. "zuoshou 1": [
  2196. { "time": 0.2 }
  2197. ]
  2198. }
  2199. }
  2200. },
  2201. "drawOrder": [
  2202. {
  2203. "time": 0.2,
  2204. "offsets": [
  2205. { "slot": "toufa7", "offset": 1 }
  2206. ]
  2207. }
  2208. ]
  2209. },
  2210. "walk1": {
  2211. "slots": {
  2212. "biyan": {
  2213. "attachment": [
  2214. { "time": 1.1, "name": "biyan" },
  2215. { "time": 1.2333, "name": null }
  2216. ]
  2217. },
  2218. "biyan2": {
  2219. "attachment": [
  2220. { "time": 0, "name": null }
  2221. ]
  2222. },
  2223. "jitui": {
  2224. "attachment": [
  2225. { "time": 0, "name": "jitui" },
  2226. { "time": 1, "name": "jitui" }
  2227. ]
  2228. },
  2229. "jitui 1": {
  2230. "attachment": [
  2231. { "time": 0, "name": "jitui 1" }
  2232. ]
  2233. },
  2234. "jitui 2": {
  2235. "attachment": [
  2236. { "time": 0, "name": null }
  2237. ]
  2238. },
  2239. "jituihu2": {
  2240. "attachment": [
  2241. { "time": 0, "name": null }
  2242. ]
  2243. },
  2244. "jituiuao": {
  2245. "attachment": [
  2246. { "time": 0, "name": "jituiuao" }
  2247. ]
  2248. },
  2249. "jituiuao2": {
  2250. "attachment": [
  2251. { "time": 0, "name": null }
  2252. ]
  2253. },
  2254. "jituiuao wu": {
  2255. "attachment": [
  2256. { "time": 0, "name": "jituiuao wu" }
  2257. ]
  2258. },
  2259. "jituiuao wu2": {
  2260. "attachment": [
  2261. { "time": 0, "name": null }
  2262. ]
  2263. },
  2264. "tong": {
  2265. "attachment": [
  2266. { "time": 0, "name": "tong" },
  2267. { "time": 1, "name": "tong" }
  2268. ]
  2269. },
  2270. "tong hou": {
  2271. "attachment": [
  2272. { "time": 0, "name": "tong hou" },
  2273. { "time": 1, "name": "tong hou" }
  2274. ]
  2275. },
  2276. "youshou1": {
  2277. "attachment": [
  2278. { "time": 0, "name": null }
  2279. ]
  2280. },
  2281. "youshou3": {
  2282. "attachment": [
  2283. { "time": 0, "name": null }
  2284. ]
  2285. },
  2286. "youshou 2": {
  2287. "attachment": [
  2288. { "time": 0, "name": null }
  2289. ]
  2290. },
  2291. "youyan": {
  2292. "attachment": [
  2293. { "time": 1.1, "name": null },
  2294. { "time": 1.2333, "name": "youyan" }
  2295. ]
  2296. },
  2297. "youyanzhu": {
  2298. "attachment": [
  2299. { "time": 1.1, "name": null },
  2300. { "time": 1.2333, "name": "youyanzhu" }
  2301. ]
  2302. },
  2303. "zuiba 2": {
  2304. "attachment": [
  2305. { "time": 0, "name": null }
  2306. ]
  2307. },
  2308. "zuoshou": {
  2309. "attachment": [
  2310. { "time": 0, "name": null }
  2311. ]
  2312. },
  2313. "zuoshou1": {
  2314. "attachment": [
  2315. { "time": 0, "name": "zuoshou1" },
  2316. { "time": 1, "name": "zuoshou1" }
  2317. ]
  2318. },
  2319. "zuoshou 1": {
  2320. "attachment": [
  2321. { "time": 0, "name": "zuoshou 1" },
  2322. { "time": 1, "name": "zuoshou 1" }
  2323. ]
  2324. },
  2325. "zuoyan": {
  2326. "attachment": [
  2327. { "time": 1.1, "name": null },
  2328. { "time": 1.2333, "name": "zuoyan" }
  2329. ]
  2330. },
  2331. "zuoyanzhu": {
  2332. "attachment": [
  2333. { "time": 1.1, "name": null },
  2334. { "time": 1.2333, "name": "zuoyanzhu" }
  2335. ]
  2336. }
  2337. },
  2338. "bones": {
  2339. "bone": {
  2340. "translate": [
  2341. { "time": 0, "x": 0, "y": -0.14 },
  2342. { "time": 0.1667, "x": 0, "y": 1.36 },
  2343. { "time": 0.5, "x": 0, "y": 0 },
  2344. { "time": 0.6667, "x": 0, "y": 1.36 },
  2345. { "time": 1, "x": 0, "y": -0.14 },
  2346. { "time": 1.1667, "x": 0, "y": 1.36 },
  2347. { "time": 1.5, "x": 0, "y": 0 },
  2348. { "time": 1.6667, "x": 0, "y": 1.36 },
  2349. { "time": 2, "x": 0, "y": -0.14 }
  2350. ]
  2351. },
  2352. "bone3": {
  2353. "rotate": [
  2354. { "time": 0, "angle": 0 },
  2355. { "time": 0.5, "angle": -0.73 },
  2356. { "time": 1, "angle": 0 },
  2357. { "time": 1.5, "angle": -0.73 },
  2358. { "time": 2, "angle": 0 }
  2359. ],
  2360. "translate": [
  2361. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2362. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2363. { "time": 2, "x": 0, "y": 0 }
  2364. ],
  2365. "scale": [
  2366. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2367. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2368. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2369. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2370. { "time": 2, "x": 1, "y": 1 }
  2371. ]
  2372. },
  2373. "bone4": {
  2374. "rotate": [
  2375. { "time": 0, "angle": 0, "curve": "stepped" },
  2376. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2377. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2378. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2379. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2380. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2381. { "time": 1, "angle": 0, "curve": "stepped" },
  2382. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2383. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2384. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2385. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2386. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2387. { "time": 2, "angle": 0 }
  2388. ],
  2389. "translate": [
  2390. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2391. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2392. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2393. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2394. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2395. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2396. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2397. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2398. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2399. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2400. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2401. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2402. { "time": 2, "x": 0, "y": 0 }
  2403. ],
  2404. "scale": [
  2405. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2406. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2407. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2408. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2409. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2410. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2411. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2412. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2413. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2414. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2415. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2416. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2417. { "time": 2, "x": 1, "y": 1 }
  2418. ]
  2419. },
  2420. "bone5": {
  2421. "rotate": [
  2422. {
  2423. "time": 0,
  2424. "angle": -297.89,
  2425. "curve": [ 0.25, 0, 0.75, 1 ]
  2426. },
  2427. {
  2428. "time": 0.5,
  2429. "angle": 21.41,
  2430. "curve": [ 0.25, 0, 0.75, 1 ]
  2431. },
  2432. {
  2433. "time": 1,
  2434. "angle": -297.89,
  2435. "curve": [ 0.25, 0, 0.75, 1 ]
  2436. },
  2437. {
  2438. "time": 1.5,
  2439. "angle": 21.41,
  2440. "curve": [ 0.25, 0, 0.75, 1 ]
  2441. },
  2442. { "time": 2, "angle": -297.89 }
  2443. ],
  2444. "translate": [
  2445. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2446. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2447. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2448. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2449. { "time": 2, "x": 0, "y": 0 }
  2450. ],
  2451. "scale": [
  2452. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2453. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2454. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2455. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2456. { "time": 2, "x": 1, "y": 1 }
  2457. ]
  2458. },
  2459. "bone6": {
  2460. "rotate": [
  2461. {
  2462. "time": 0,
  2463. "angle": -5.26,
  2464. "curve": [ 0.25, 0, 0.75, 1 ]
  2465. },
  2466. {
  2467. "time": 0.5,
  2468. "angle": -12.64,
  2469. "curve": [ 0.25, 0, 0.75, 1 ]
  2470. },
  2471. {
  2472. "time": 1,
  2473. "angle": -5.26,
  2474. "curve": [ 0.25, 0, 0.75, 1 ]
  2475. },
  2476. {
  2477. "time": 1.5,
  2478. "angle": -12.64,
  2479. "curve": [ 0.25, 0, 0.75, 1 ]
  2480. },
  2481. { "time": 2, "angle": -5.26 }
  2482. ],
  2483. "translate": [
  2484. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2485. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2486. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2487. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2488. { "time": 2, "x": 0, "y": 0 }
  2489. ],
  2490. "scale": [
  2491. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2492. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2493. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2494. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2495. { "time": 2, "x": 1, "y": 1 }
  2496. ]
  2497. },
  2498. "bone7": {
  2499. "rotate": [
  2500. {
  2501. "time": 0,
  2502. "angle": 0,
  2503. "curve": [ 0.25, 0, 0.75, 1 ]
  2504. },
  2505. {
  2506. "time": 0.5,
  2507. "angle": -10.57,
  2508. "curve": [ 0.25, 0, 0.75, 1 ]
  2509. },
  2510. {
  2511. "time": 1,
  2512. "angle": 0,
  2513. "curve": [ 0.25, 0, 0.75, 1 ]
  2514. },
  2515. {
  2516. "time": 1.5,
  2517. "angle": -10.57,
  2518. "curve": [ 0.25, 0, 0.75, 1 ]
  2519. },
  2520. { "time": 2, "angle": 0 }
  2521. ],
  2522. "translate": [
  2523. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2524. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2525. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2526. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2527. { "time": 2, "x": 0, "y": 0 }
  2528. ],
  2529. "scale": [
  2530. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2531. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2532. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2533. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2534. { "time": 2, "x": 1, "y": 1 }
  2535. ]
  2536. },
  2537. "bone8": {
  2538. "rotate": [
  2539. {
  2540. "time": 0,
  2541. "angle": 306.91,
  2542. "curve": [ 0.25, 0, 0.75, 1 ]
  2543. },
  2544. {
  2545. "time": 0.5,
  2546. "angle": -14.78,
  2547. "curve": [ 0.25, 0, 0.75, 1 ]
  2548. },
  2549. {
  2550. "time": 1,
  2551. "angle": 306.91,
  2552. "curve": [ 0.25, 0, 0.75, 1 ]
  2553. },
  2554. {
  2555. "time": 1.5,
  2556. "angle": -14.78,
  2557. "curve": [ 0.25, 0, 0.75, 1 ]
  2558. },
  2559. { "time": 2, "angle": 306.91 }
  2560. ],
  2561. "translate": [
  2562. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2563. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2564. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2565. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2566. { "time": 2, "x": 0, "y": 0 }
  2567. ],
  2568. "scale": [
  2569. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2570. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2571. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2572. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2573. { "time": 2, "x": 1, "y": 1 }
  2574. ]
  2575. },
  2576. "bone9": {
  2577. "rotate": [
  2578. {
  2579. "time": 0,
  2580. "angle": -33.59,
  2581. "curve": [ 0.25, 0, 0.75, 1 ]
  2582. },
  2583. {
  2584. "time": 0.5,
  2585. "angle": -11.84,
  2586. "curve": [ 0.25, 0, 0.75, 1 ]
  2587. },
  2588. {
  2589. "time": 1,
  2590. "angle": -33.59,
  2591. "curve": [ 0.25, 0, 0.75, 1 ]
  2592. },
  2593. {
  2594. "time": 1.5,
  2595. "angle": -11.84,
  2596. "curve": [ 0.25, 0, 0.75, 1 ]
  2597. },
  2598. { "time": 2, "angle": -33.59 }
  2599. ],
  2600. "translate": [
  2601. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2602. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2603. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2604. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2605. { "time": 2, "x": 0, "y": 0 }
  2606. ],
  2607. "scale": [
  2608. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2609. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2610. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2611. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2612. { "time": 2, "x": 1, "y": 1 }
  2613. ]
  2614. },
  2615. "bone10": {
  2616. "rotate": [
  2617. {
  2618. "time": 0,
  2619. "angle": -4.58,
  2620. "curve": [ 0.25, 0, 0.75, 1 ]
  2621. },
  2622. {
  2623. "time": 0.5,
  2624. "angle": -11.27,
  2625. "curve": [ 0.25, 0, 0.75, 1 ]
  2626. },
  2627. {
  2628. "time": 1,
  2629. "angle": -4.58,
  2630. "curve": [ 0.25, 0, 0.75, 1 ]
  2631. },
  2632. {
  2633. "time": 1.5,
  2634. "angle": -11.27,
  2635. "curve": [ 0.25, 0, 0.75, 1 ]
  2636. },
  2637. { "time": 2, "angle": -4.58 }
  2638. ],
  2639. "translate": [
  2640. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2641. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2642. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2643. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2644. { "time": 2, "x": 0, "y": 0 }
  2645. ],
  2646. "scale": [
  2647. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2648. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2649. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2650. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2651. { "time": 2, "x": 1, "y": 1 }
  2652. ]
  2653. },
  2654. "bone11": {
  2655. "rotate": [
  2656. {
  2657. "time": 0,
  2658. "angle": -12.34,
  2659. "curve": [ 0.25, 0, 0.75, 1 ]
  2660. },
  2661. {
  2662. "time": 0.5,
  2663. "angle": 0.95,
  2664. "curve": [ 0.25, 0, 0.75, 1 ]
  2665. },
  2666. {
  2667. "time": 1,
  2668. "angle": -12.34,
  2669. "curve": [ 0.25, 0, 0.75, 1 ]
  2670. },
  2671. {
  2672. "time": 1.5,
  2673. "angle": 0.95,
  2674. "curve": [ 0.25, 0, 0.75, 1 ]
  2675. },
  2676. { "time": 2, "angle": -12.34 }
  2677. ],
  2678. "translate": [
  2679. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2680. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2681. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2682. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2683. { "time": 2, "x": 0, "y": 0 }
  2684. ],
  2685. "scale": [
  2686. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2687. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2688. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2689. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2690. { "time": 2, "x": 1, "y": 1 }
  2691. ]
  2692. },
  2693. "bone12": {
  2694. "rotate": [
  2695. {
  2696. "time": 0,
  2697. "angle": 4.69,
  2698. "curve": [ 0.25, 0, 0.75, 1 ]
  2699. },
  2700. {
  2701. "time": 0.5,
  2702. "angle": 7.52,
  2703. "curve": [ 0.25, 0, 0.75, 1 ]
  2704. },
  2705. {
  2706. "time": 1,
  2707. "angle": 4.69,
  2708. "curve": [ 0.25, 0, 0.75, 1 ]
  2709. },
  2710. {
  2711. "time": 1.5,
  2712. "angle": 7.52,
  2713. "curve": [ 0.25, 0, 0.75, 1 ]
  2714. },
  2715. { "time": 2, "angle": 4.69 }
  2716. ],
  2717. "translate": [
  2718. {
  2719. "time": 0,
  2720. "x": 0,
  2721. "y": 0,
  2722. "curve": [ 0.25, 0, 0.75, 1 ]
  2723. },
  2724. {
  2725. "time": 0.5,
  2726. "x": 3.45,
  2727. "y": 0.12,
  2728. "curve": [ 0.25, 0, 0.75, 1 ]
  2729. },
  2730. {
  2731. "time": 1,
  2732. "x": 0,
  2733. "y": 0,
  2734. "curve": [ 0.25, 0, 0.75, 1 ]
  2735. },
  2736. {
  2737. "time": 1.5,
  2738. "x": 3.45,
  2739. "y": 0.12,
  2740. "curve": [ 0.25, 0, 0.75, 1 ]
  2741. },
  2742. { "time": 2, "x": 0, "y": 0 }
  2743. ],
  2744. "scale": [
  2745. {
  2746. "time": 0,
  2747. "x": 1,
  2748. "y": 0.98,
  2749. "curve": [ 0.25, 0, 0.75, 1 ]
  2750. },
  2751. {
  2752. "time": 0.5,
  2753. "x": 1,
  2754. "y": 1,
  2755. "curve": [ 0.25, 0, 0.75, 1 ]
  2756. },
  2757. {
  2758. "time": 1,
  2759. "x": 1,
  2760. "y": 0.98,
  2761. "curve": [ 0.25, 0, 0.75, 1 ]
  2762. },
  2763. {
  2764. "time": 1.5,
  2765. "x": 1,
  2766. "y": 1,
  2767. "curve": [ 0.25, 0, 0.75, 1 ]
  2768. },
  2769. { "time": 2, "x": 1, "y": 0.98 }
  2770. ]
  2771. },
  2772. "bone13": {
  2773. "rotate": [
  2774. {
  2775. "time": 0,
  2776. "angle": 0,
  2777. "curve": [ 0.25, 0, 0.75, 1 ]
  2778. },
  2779. {
  2780. "time": 0.5,
  2781. "angle": 6.27,
  2782. "curve": [ 0.25, 0, 0.75, 1 ]
  2783. },
  2784. {
  2785. "time": 1,
  2786. "angle": 0,
  2787. "curve": [ 0.25, 0, 0.75, 1 ]
  2788. },
  2789. {
  2790. "time": 1.5,
  2791. "angle": 6.27,
  2792. "curve": [ 0.25, 0, 0.75, 1 ]
  2793. },
  2794. { "time": 2, "angle": 0 }
  2795. ],
  2796. "translate": [
  2797. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2798. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2799. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2800. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2801. { "time": 2, "x": 0, "y": 0 }
  2802. ],
  2803. "scale": [
  2804. {
  2805. "time": 0,
  2806. "x": 1,
  2807. "y": 1.2,
  2808. "curve": [ 0.25, 0, 0.75, 1 ]
  2809. },
  2810. {
  2811. "time": 0.5,
  2812. "x": 1,
  2813. "y": 1,
  2814. "curve": [ 0.25, 0, 0.75, 1 ]
  2815. },
  2816. {
  2817. "time": 1,
  2818. "x": 1,
  2819. "y": 1.2,
  2820. "curve": [ 0.25, 0, 0.75, 1 ]
  2821. },
  2822. {
  2823. "time": 1.5,
  2824. "x": 1,
  2825. "y": 1,
  2826. "curve": [ 0.25, 0, 0.75, 1 ]
  2827. },
  2828. { "time": 2, "x": 1, "y": 1.2 }
  2829. ]
  2830. },
  2831. "bone14": {
  2832. "rotate": [
  2833. {
  2834. "time": 0,
  2835. "angle": -10.64,
  2836. "curve": [ 0.25, 0, 0.75, 1 ]
  2837. },
  2838. {
  2839. "time": 0.5,
  2840. "angle": 3.76,
  2841. "curve": [ 0.25, 0, 0.75, 1 ]
  2842. },
  2843. {
  2844. "time": 1,
  2845. "angle": -10.64,
  2846. "curve": [ 0.25, 0, 0.75, 1 ]
  2847. },
  2848. {
  2849. "time": 1.5,
  2850. "angle": 3.76,
  2851. "curve": [ 0.25, 0, 0.75, 1 ]
  2852. },
  2853. { "time": 2, "angle": -10.64 }
  2854. ],
  2855. "translate": [
  2856. {
  2857. "time": 0,
  2858. "x": 0,
  2859. "y": 0,
  2860. "curve": [ 0.25, 0, 0.75, 1 ]
  2861. },
  2862. {
  2863. "time": 0.5,
  2864. "x": -2.53,
  2865. "y": 0.23,
  2866. "curve": [ 0.25, 0, 0.75, 1 ]
  2867. },
  2868. {
  2869. "time": 1,
  2870. "x": 0,
  2871. "y": 0,
  2872. "curve": [ 0.25, 0, 0.75, 1 ]
  2873. },
  2874. {
  2875. "time": 1.5,
  2876. "x": -2.53,
  2877. "y": 0.23,
  2878. "curve": [ 0.25, 0, 0.75, 1 ]
  2879. },
  2880. { "time": 2, "x": 0, "y": 0 }
  2881. ],
  2882. "scale": [
  2883. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2884. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2885. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2886. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2887. { "time": 2, "x": 1, "y": 1 }
  2888. ]
  2889. },
  2890. "bone15": {
  2891. "rotate": [
  2892. {
  2893. "time": 0,
  2894. "angle": -10.64,
  2895. "curve": [ 0.25, 0, 0.75, 1 ]
  2896. },
  2897. {
  2898. "time": 0.5,
  2899. "angle": 3.76,
  2900. "curve": [ 0.25, 0, 0.75, 1 ]
  2901. },
  2902. {
  2903. "time": 1,
  2904. "angle": -10.64,
  2905. "curve": [ 0.25, 0, 0.75, 1 ]
  2906. },
  2907. {
  2908. "time": 1.5,
  2909. "angle": 3.76,
  2910. "curve": [ 0.25, 0, 0.75, 1 ]
  2911. },
  2912. { "time": 2, "angle": -10.64 }
  2913. ],
  2914. "translate": [
  2915. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2916. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2917. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2918. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2919. { "time": 2, "x": 0, "y": 0 }
  2920. ],
  2921. "scale": [
  2922. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2923. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2924. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2925. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2926. { "time": 2, "x": 1, "y": 1 }
  2927. ]
  2928. },
  2929. "bone16": {
  2930. "rotate": [
  2931. {
  2932. "time": 0,
  2933. "angle": 0,
  2934. "curve": [ 0.25, 0, 0.75, 1 ]
  2935. },
  2936. {
  2937. "time": 0.5,
  2938. "angle": 10.72,
  2939. "curve": [ 0.25, 0, 0.75, 1 ]
  2940. },
  2941. {
  2942. "time": 1,
  2943. "angle": 0,
  2944. "curve": [ 0.25, 0, 0.75, 1 ]
  2945. },
  2946. {
  2947. "time": 1.5,
  2948. "angle": 10.72,
  2949. "curve": [ 0.25, 0, 0.75, 1 ]
  2950. },
  2951. { "time": 2, "angle": 0 }
  2952. ],
  2953. "translate": [
  2954. {
  2955. "time": 0,
  2956. "x": 0,
  2957. "y": 0,
  2958. "curve": [ 0.25, 0, 0.75, 1 ]
  2959. },
  2960. {
  2961. "time": 0.5,
  2962. "x": 3.39,
  2963. "y": -0.99,
  2964. "curve": [ 0.25, 0, 0.75, 1 ]
  2965. },
  2966. {
  2967. "time": 1,
  2968. "x": 0,
  2969. "y": 0,
  2970. "curve": [ 0.25, 0, 0.75, 1 ]
  2971. },
  2972. {
  2973. "time": 1.5,
  2974. "x": 3.39,
  2975. "y": -0.99,
  2976. "curve": [ 0.25, 0, 0.75, 1 ]
  2977. },
  2978. { "time": 2, "x": 0, "y": 0 }
  2979. ],
  2980. "scale": [
  2981. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2982. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2983. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2984. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2985. { "time": 2, "x": 1, "y": 1 }
  2986. ]
  2987. },
  2988. "bone17": {
  2989. "rotate": [
  2990. {
  2991. "time": 0,
  2992. "angle": -6.12,
  2993. "curve": [ 0.25, 0, 0.75, 1 ]
  2994. },
  2995. {
  2996. "time": 0.5,
  2997. "angle": -2.7,
  2998. "curve": [ 0.25, 0, 0.75, 1 ]
  2999. },
  3000. {
  3001. "time": 1,
  3002. "angle": -6.12,
  3003. "curve": [ 0.25, 0, 0.75, 1 ]
  3004. },
  3005. {
  3006. "time": 1.5,
  3007. "angle": -2.7,
  3008. "curve": [ 0.25, 0, 0.75, 1 ]
  3009. },
  3010. { "time": 2, "angle": -6.12 }
  3011. ],
  3012. "translate": [
  3013. {
  3014. "time": 0,
  3015. "x": 2.41,
  3016. "y": -0.49,
  3017. "curve": [ 0.25, 0, 0.75, 1 ]
  3018. },
  3019. {
  3020. "time": 0.5,
  3021. "x": 1.81,
  3022. "y": 0.09,
  3023. "curve": [ 0.25, 0, 0.75, 1 ]
  3024. },
  3025. {
  3026. "time": 1,
  3027. "x": 2.41,
  3028. "y": -0.49,
  3029. "curve": [ 0.25, 0, 0.75, 1 ]
  3030. },
  3031. {
  3032. "time": 1.5,
  3033. "x": 1.81,
  3034. "y": 0.09,
  3035. "curve": [ 0.25, 0, 0.75, 1 ]
  3036. },
  3037. { "time": 2, "x": 2.41, "y": -0.49 }
  3038. ],
  3039. "scale": [
  3040. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3041. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3042. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3043. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3044. { "time": 2, "x": 1, "y": 1 }
  3045. ]
  3046. },
  3047. "bone18": {
  3048. "rotate": [
  3049. {
  3050. "time": 0,
  3051. "angle": -3.39,
  3052. "curve": [ 0.25, 0, 0.75, 1 ]
  3053. },
  3054. {
  3055. "time": 0.5,
  3056. "angle": -3.61,
  3057. "curve": [ 0.25, 0, 0.75, 1 ]
  3058. },
  3059. {
  3060. "time": 1,
  3061. "angle": -3.39,
  3062. "curve": [ 0.25, 0, 0.75, 1 ]
  3063. },
  3064. {
  3065. "time": 1.5,
  3066. "angle": -3.61,
  3067. "curve": [ 0.25, 0, 0.75, 1 ]
  3068. },
  3069. { "time": 2, "angle": -3.39 }
  3070. ],
  3071. "translate": [
  3072. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3073. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3074. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3075. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3076. { "time": 2, "x": 0, "y": 0 }
  3077. ],
  3078. "scale": [
  3079. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3080. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3081. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3082. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3083. { "time": 2, "x": 1, "y": 1 }
  3084. ]
  3085. },
  3086. "bone19": {
  3087. "rotate": [
  3088. {
  3089. "time": 0,
  3090. "angle": -3.39,
  3091. "curve": [ 0.25, 0, 0.75, 1 ]
  3092. },
  3093. {
  3094. "time": 0.5,
  3095. "angle": 10.67,
  3096. "curve": [ 0.25, 0, 0.75, 1 ]
  3097. },
  3098. {
  3099. "time": 1,
  3100. "angle": -3.39,
  3101. "curve": [ 0.25, 0, 0.75, 1 ]
  3102. },
  3103. {
  3104. "time": 1.5,
  3105. "angle": 10.67,
  3106. "curve": [ 0.25, 0, 0.75, 1 ]
  3107. },
  3108. { "time": 2, "angle": -3.39 }
  3109. ],
  3110. "translate": [
  3111. {
  3112. "time": 0,
  3113. "x": 0,
  3114. "y": 0,
  3115. "curve": [ 0.25, 0, 0.75, 1 ]
  3116. },
  3117. {
  3118. "time": 0.5,
  3119. "x": 1.55,
  3120. "y": -0.55,
  3121. "curve": [ 0.25, 0, 0.75, 1 ]
  3122. },
  3123. {
  3124. "time": 1,
  3125. "x": 0,
  3126. "y": 0,
  3127. "curve": [ 0.25, 0, 0.75, 1 ]
  3128. },
  3129. {
  3130. "time": 1.5,
  3131. "x": 1.55,
  3132. "y": -0.55,
  3133. "curve": [ 0.25, 0, 0.75, 1 ]
  3134. },
  3135. { "time": 2, "x": 0, "y": 0 }
  3136. ],
  3137. "scale": [
  3138. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3139. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3140. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3141. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3142. { "time": 2, "x": 1, "y": 1 }
  3143. ]
  3144. },
  3145. "bone20": {
  3146. "rotate": [
  3147. {
  3148. "time": 0,
  3149. "angle": -3.39,
  3150. "curve": [ 0.25, 0, 0.75, 1 ]
  3151. },
  3152. {
  3153. "time": 0.5,
  3154. "angle": -3.61,
  3155. "curve": [ 0.25, 0, 0.75, 1 ]
  3156. },
  3157. {
  3158. "time": 1,
  3159. "angle": -3.39,
  3160. "curve": [ 0.25, 0, 0.75, 1 ]
  3161. },
  3162. {
  3163. "time": 1.5,
  3164. "angle": -3.61,
  3165. "curve": [ 0.25, 0, 0.75, 1 ]
  3166. },
  3167. { "time": 2, "angle": -3.39 }
  3168. ],
  3169. "translate": [
  3170. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3171. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3172. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3173. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3174. { "time": 2, "x": 0, "y": 0 }
  3175. ],
  3176. "scale": [
  3177. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3178. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3179. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3180. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3181. { "time": 2, "x": 1, "y": 1 }
  3182. ]
  3183. },
  3184. "bone21": {
  3185. "rotate": [
  3186. {
  3187. "time": 0,
  3188. "angle": 9.65,
  3189. "curve": [ 0.25, 0, 0.75, 1 ]
  3190. },
  3191. {
  3192. "time": 0.5,
  3193. "angle": 11.79,
  3194. "curve": [ 0.25, 0, 0.75, 1 ]
  3195. },
  3196. {
  3197. "time": 1,
  3198. "angle": 9.65,
  3199. "curve": [ 0.25, 0, 0.75, 1 ]
  3200. },
  3201. {
  3202. "time": 1.5,
  3203. "angle": 11.79,
  3204. "curve": [ 0.25, 0, 0.75, 1 ]
  3205. },
  3206. { "time": 2, "angle": 9.65 }
  3207. ],
  3208. "translate": [
  3209. {
  3210. "time": 0,
  3211. "x": 1.85,
  3212. "y": 0.94,
  3213. "curve": [ 0.25, 0, 0.75, 1 ]
  3214. },
  3215. {
  3216. "time": 0.5,
  3217. "x": 6.38,
  3218. "y": -0.38,
  3219. "curve": [ 0.25, 0, 0.75, 1 ]
  3220. },
  3221. {
  3222. "time": 1,
  3223. "x": 1.85,
  3224. "y": 0.94,
  3225. "curve": [ 0.25, 0, 0.75, 1 ]
  3226. },
  3227. {
  3228. "time": 1.5,
  3229. "x": 6.38,
  3230. "y": -0.38,
  3231. "curve": [ 0.25, 0, 0.75, 1 ]
  3232. },
  3233. { "time": 2, "x": 1.85, "y": 0.94 }
  3234. ],
  3235. "scale": [
  3236. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3237. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3238. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3239. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3240. { "time": 2, "x": 1, "y": 1 }
  3241. ]
  3242. },
  3243. "bone22": {
  3244. "rotate": [
  3245. {
  3246. "time": 0,
  3247. "angle": -3.96,
  3248. "curve": [ 0.25, 0, 0.75, 1 ]
  3249. },
  3250. {
  3251. "time": 0.5,
  3252. "angle": 1.94,
  3253. "curve": [ 0.25, 0, 0.75, 1 ]
  3254. },
  3255. {
  3256. "time": 1,
  3257. "angle": -3.96,
  3258. "curve": [ 0.25, 0, 0.75, 1 ]
  3259. },
  3260. {
  3261. "time": 1.5,
  3262. "angle": 1.94,
  3263. "curve": [ 0.25, 0, 0.75, 1 ]
  3264. },
  3265. { "time": 2, "angle": -3.96 }
  3266. ],
  3267. "translate": [
  3268. {
  3269. "time": 0,
  3270. "x": -0.79,
  3271. "y": -0.42,
  3272. "curve": [ 0.25, 0, 0.75, 1 ]
  3273. },
  3274. {
  3275. "time": 0.5,
  3276. "x": 0.07,
  3277. "y": 0.79,
  3278. "curve": [ 0.25, 0, 0.75, 1 ]
  3279. },
  3280. {
  3281. "time": 1,
  3282. "x": -0.79,
  3283. "y": -0.42,
  3284. "curve": [ 0.25, 0, 0.75, 1 ]
  3285. },
  3286. {
  3287. "time": 1.5,
  3288. "x": 0.07,
  3289. "y": 0.79,
  3290. "curve": [ 0.25, 0, 0.75, 1 ]
  3291. },
  3292. { "time": 2, "x": -0.79, "y": -0.42 }
  3293. ],
  3294. "scale": [
  3295. {
  3296. "time": 0,
  3297. "x": 1,
  3298. "y": 1,
  3299. "curve": [ 0.25, 0, 0.75, 1 ]
  3300. },
  3301. {
  3302. "time": 0.5,
  3303. "x": 1,
  3304. "y": 0.9,
  3305. "curve": [ 0.25, 0, 0.75, 1 ]
  3306. },
  3307. {
  3308. "time": 1,
  3309. "x": 1,
  3310. "y": 1,
  3311. "curve": [ 0.25, 0, 0.75, 1 ]
  3312. },
  3313. {
  3314. "time": 1.5,
  3315. "x": 1,
  3316. "y": 0.9,
  3317. "curve": [ 0.25, 0, 0.75, 1 ]
  3318. },
  3319. { "time": 2, "x": 1, "y": 1 }
  3320. ]
  3321. },
  3322. "bone23": {
  3323. "rotate": [
  3324. {
  3325. "time": 0,
  3326. "angle": 0.79,
  3327. "curve": [ 0.25, 0, 0.75, 1 ]
  3328. },
  3329. {
  3330. "time": 0.5,
  3331. "angle": 0.14,
  3332. "curve": [ 0.25, 0, 0.75, 1 ]
  3333. },
  3334. {
  3335. "time": 1,
  3336. "angle": 0.79,
  3337. "curve": [ 0.25, 0, 0.75, 1 ]
  3338. },
  3339. {
  3340. "time": 1.5,
  3341. "angle": 0.14,
  3342. "curve": [ 0.25, 0, 0.75, 1 ]
  3343. },
  3344. { "time": 2, "angle": 0.79 }
  3345. ],
  3346. "translate": [
  3347. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3348. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3349. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3350. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3351. { "time": 2, "x": 0, "y": 0 }
  3352. ],
  3353. "scale": [
  3354. {
  3355. "time": 0,
  3356. "x": 1,
  3357. "y": 1,
  3358. "curve": [ 0.25, 0, 0.75, 1 ]
  3359. },
  3360. {
  3361. "time": 0.5,
  3362. "x": 1,
  3363. "y": 0.95,
  3364. "curve": [ 0.25, 0, 0.75, 1 ]
  3365. },
  3366. {
  3367. "time": 1,
  3368. "x": 1,
  3369. "y": 1,
  3370. "curve": [ 0.25, 0, 0.75, 1 ]
  3371. },
  3372. {
  3373. "time": 1.5,
  3374. "x": 1,
  3375. "y": 0.95,
  3376. "curve": [ 0.25, 0, 0.75, 1 ]
  3377. },
  3378. { "time": 2, "x": 1, "y": 1 }
  3379. ]
  3380. },
  3381. "bone24": {
  3382. "rotate": [
  3383. {
  3384. "time": 0,
  3385. "angle": -5.74,
  3386. "curve": [ 0.25, 0, 0.75, 1 ]
  3387. },
  3388. {
  3389. "time": 0.5,
  3390. "angle": -5.99,
  3391. "curve": [ 0.25, 0, 0.75, 1 ]
  3392. },
  3393. {
  3394. "time": 1,
  3395. "angle": -5.74,
  3396. "curve": [ 0.25, 0, 0.75, 1 ]
  3397. },
  3398. {
  3399. "time": 1.5,
  3400. "angle": -5.99,
  3401. "curve": [ 0.25, 0, 0.75, 1 ]
  3402. },
  3403. { "time": 2, "angle": -5.74 }
  3404. ],
  3405. "translate": [
  3406. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3407. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3408. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3409. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3410. { "time": 2, "x": 0, "y": 0 }
  3411. ],
  3412. "scale": [
  3413. {
  3414. "time": 0,
  3415. "x": 1,
  3416. "y": 0.9,
  3417. "curve": [ 0.25, 0, 0.75, 1 ]
  3418. },
  3419. {
  3420. "time": 0.5,
  3421. "x": 1,
  3422. "y": 1,
  3423. "curve": [ 0.25, 0, 0.75, 1 ]
  3424. },
  3425. {
  3426. "time": 1,
  3427. "x": 1,
  3428. "y": 0.9,
  3429. "curve": [ 0.25, 0, 0.75, 1 ]
  3430. },
  3431. {
  3432. "time": 1.5,
  3433. "x": 1,
  3434. "y": 1,
  3435. "curve": [ 0.25, 0, 0.75, 1 ]
  3436. },
  3437. { "time": 2, "x": 1, "y": 0.9 }
  3438. ]
  3439. },
  3440. "bone25": {
  3441. "rotate": [
  3442. {
  3443. "time": 0,
  3444. "angle": -5.55,
  3445. "curve": [ 0.25, 0, 0.75, 1 ]
  3446. },
  3447. {
  3448. "time": 0.5,
  3449. "angle": 8.09,
  3450. "curve": [ 0.25, 0, 0.75, 1 ]
  3451. },
  3452. {
  3453. "time": 1,
  3454. "angle": -5.55,
  3455. "curve": [ 0.25, 0, 0.75, 1 ]
  3456. },
  3457. {
  3458. "time": 1.5,
  3459. "angle": 8.09,
  3460. "curve": [ 0.25, 0, 0.75, 1 ]
  3461. },
  3462. { "time": 2, "angle": -5.55 }
  3463. ]
  3464. },
  3465. "bone28": {
  3466. "rotate": [
  3467. { "time": 0, "angle": 0, "curve": "stepped" },
  3468. { "time": 1, "angle": 0, "curve": "stepped" },
  3469. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3470. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3471. { "time": 1.4, "angle": 0 }
  3472. ],
  3473. "translate": [
  3474. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3475. { "time": 1, "x": 0, "y": 0 },
  3476. { "time": 1.1, "x": -1.52, "y": 0, "curve": "stepped" },
  3477. { "time": 1.2333, "x": -1.52, "y": 0 },
  3478. { "time": 1.4, "x": 0, "y": 0 }
  3479. ],
  3480. "scale": [
  3481. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3482. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3483. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3484. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3485. { "time": 1.4, "x": 1, "y": 1 }
  3486. ]
  3487. },
  3488. "bone29": {
  3489. "rotate": [
  3490. { "time": 0, "angle": 0, "curve": "stepped" },
  3491. { "time": 1, "angle": 0, "curve": "stepped" },
  3492. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3493. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3494. { "time": 1.4, "angle": 0 }
  3495. ],
  3496. "translate": [
  3497. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3498. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3499. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3500. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3501. { "time": 1.4, "x": 0, "y": 0 }
  3502. ],
  3503. "scale": [
  3504. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3505. { "time": 1, "x": 1, "y": 1 },
  3506. { "time": 1.1, "x": 0.304, "y": 1, "curve": "stepped" },
  3507. { "time": 1.2333, "x": 0.304, "y": 1 },
  3508. { "time": 1.4, "x": 1, "y": 1 }
  3509. ]
  3510. },
  3511. "bone30": {
  3512. "rotate": [
  3513. { "time": 0, "angle": 0, "curve": "stepped" },
  3514. { "time": 1, "angle": 0, "curve": "stepped" },
  3515. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3516. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3517. { "time": 1.4, "angle": 0 }
  3518. ],
  3519. "translate": [
  3520. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3521. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3522. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3523. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3524. { "time": 1.4, "x": 0, "y": 0 }
  3525. ],
  3526. "scale": [
  3527. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3528. { "time": 1, "x": 1, "y": 1 },
  3529. { "time": 1.1, "x": 0.304, "y": 1, "curve": "stepped" },
  3530. { "time": 1.2333, "x": 0.304, "y": 1 },
  3531. { "time": 1.4, "x": 1, "y": 1 }
  3532. ]
  3533. },
  3534. "bone31": {
  3535. "rotate": [
  3536. { "time": 0, "angle": 20.81 },
  3537. { "time": 0.1667, "angle": -8.21 },
  3538. { "time": 0.3333, "angle": -26.12 },
  3539. { "time": 0.5, "angle": -22.9 },
  3540. { "time": 0.6667, "angle": -11.35 },
  3541. { "time": 0.8333, "angle": 8.27 },
  3542. { "time": 1, "angle": 20.81 },
  3543. { "time": 1.1667, "angle": -8.21 },
  3544. { "time": 1.3333, "angle": -26.12 },
  3545. { "time": 1.5, "angle": -22.9 },
  3546. { "time": 1.6667, "angle": -11.35 },
  3547. { "time": 1.8333, "angle": 8.27 },
  3548. { "time": 2, "angle": 20.81 }
  3549. ],
  3550. "translate": [
  3551. { "time": 0, "x": 0, "y": 0 },
  3552. { "time": 0.1667, "x": -1.46, "y": 0 },
  3553. { "time": 0.3333, "x": -2.93, "y": 0 },
  3554. { "time": 0.5, "x": -4.39, "y": 0 },
  3555. { "time": 0.6667, "x": -2.93, "y": 0 },
  3556. { "time": 0.8333, "x": -0.98, "y": -2.29 },
  3557. { "time": 1, "x": 0, "y": 0 },
  3558. { "time": 1.1667, "x": -1.46, "y": 0 },
  3559. { "time": 1.3333, "x": -2.93, "y": 0 },
  3560. { "time": 1.5, "x": -4.39, "y": 0 },
  3561. { "time": 1.6667, "x": -2.93, "y": 0 },
  3562. { "time": 1.8333, "x": -0.98, "y": -2.29 },
  3563. { "time": 2, "x": 0, "y": 0 }
  3564. ]
  3565. },
  3566. "bone32": {
  3567. "rotate": [
  3568. { "time": 0, "angle": 0 },
  3569. { "time": 0.1667, "angle": 37.36 },
  3570. { "time": 0.3333, "angle": 45.59 },
  3571. { "time": 0.5, "angle": 0 },
  3572. { "time": 0.6667, "angle": 12.88 },
  3573. { "time": 0.8333, "angle": 7.69 },
  3574. { "time": 1, "angle": 0 },
  3575. { "time": 1.1667, "angle": 37.36 },
  3576. { "time": 1.3333, "angle": 45.59 },
  3577. { "time": 1.5, "angle": 0 },
  3578. { "time": 1.6667, "angle": 12.88 },
  3579. { "time": 1.8333, "angle": 7.69 },
  3580. { "time": 2, "angle": 0 }
  3581. ],
  3582. "translate": [
  3583. { "time": 0, "x": 0, "y": 0 },
  3584. { "time": 0.1667, "x": -3.93, "y": -3.05 },
  3585. { "time": 0.3333, "x": -3.41, "y": -2.56 },
  3586. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3587. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3588. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3589. { "time": 1, "x": 0, "y": 0 },
  3590. { "time": 1.1667, "x": -3.93, "y": -3.05 },
  3591. { "time": 1.3333, "x": -3.41, "y": -2.56 },
  3592. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3593. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3594. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3595. { "time": 2, "x": 0, "y": 0 }
  3596. ]
  3597. },
  3598. "bone33": {
  3599. "rotate": [
  3600. { "time": 0, "angle": 0, "curve": "stepped" },
  3601. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3602. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3603. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3604. { "time": 0.6667, "angle": 0 },
  3605. { "time": 0.8333, "angle": -14.91 },
  3606. { "time": 1, "angle": 0, "curve": "stepped" },
  3607. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3608. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3609. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3610. { "time": 1.6667, "angle": 0 },
  3611. { "time": 1.8333, "angle": -14.91 },
  3612. { "time": 2, "angle": 0 }
  3613. ]
  3614. },
  3615. "bone34": {
  3616. "rotate": [
  3617. { "time": 0, "angle": -14.54 },
  3618. { "time": 0.1667, "angle": -7.33 },
  3619. { "time": 0.3333, "angle": 14.28 },
  3620. { "time": 0.5, "angle": 38.73 },
  3621. { "time": 0.6667, "angle": 8.62 },
  3622. { "time": 0.8333, "angle": -17.82 },
  3623. { "time": 1, "angle": -14.54 },
  3624. { "time": 1.1667, "angle": -7.33 },
  3625. { "time": 1.3333, "angle": 14.28 },
  3626. { "time": 1.5, "angle": 38.73 },
  3627. { "time": 1.6667, "angle": 8.62 },
  3628. { "time": 1.8333, "angle": -17.82 },
  3629. { "time": 2, "angle": -14.54 }
  3630. ],
  3631. "translate": [
  3632. { "time": 0, "x": 6.55, "y": -1.02 },
  3633. { "time": 0.3333, "x": 9.77, "y": -0.96 },
  3634. { "time": 0.5, "x": 10.63, "y": 1.56 },
  3635. { "time": 0.6667, "x": 11.13, "y": 0.13 },
  3636. { "time": 0.8333, "x": 7.91, "y": -0.16 },
  3637. { "time": 1, "x": 6.55, "y": -1.02 },
  3638. { "time": 1.3333, "x": 9.77, "y": -0.96 },
  3639. { "time": 1.5, "x": 10.63, "y": 1.56 },
  3640. { "time": 1.6667, "x": 11.13, "y": 0.13 },
  3641. { "time": 1.8333, "x": 7.91, "y": -0.16 },
  3642. { "time": 2, "x": 6.55, "y": -1.02 }
  3643. ]
  3644. },
  3645. "bone35": {
  3646. "rotate": [
  3647. { "time": 0, "angle": 0 },
  3648. { "time": 0.1667, "angle": 11.38 },
  3649. { "time": 0.3333, "angle": 10.13 },
  3650. { "time": 0.5, "angle": 0 },
  3651. { "time": 0.6667, "angle": 38.5 },
  3652. { "time": 0.8333, "angle": 35.94 },
  3653. { "time": 1, "angle": 0 },
  3654. { "time": 1.1667, "angle": 11.38 },
  3655. { "time": 1.3333, "angle": 10.13 },
  3656. { "time": 1.5, "angle": 0 },
  3657. { "time": 1.6667, "angle": 38.5 },
  3658. { "time": 1.8333, "angle": 35.94 },
  3659. { "time": 2, "angle": 0 }
  3660. ],
  3661. "translate": [
  3662. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3663. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3664. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3665. { "time": 0.5, "x": 0, "y": 0 },
  3666. { "time": 0.6667, "x": -5.38, "y": -0.09 },
  3667. { "time": 0.8333, "x": -4.21, "y": -0.78 },
  3668. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3669. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3670. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3671. { "time": 1.5, "x": 0, "y": 0 },
  3672. { "time": 1.6667, "x": -5.38, "y": -0.09 },
  3673. { "time": 1.8333, "x": -4.21, "y": -0.78 },
  3674. { "time": 2, "x": 0, "y": 0 }
  3675. ],
  3676. "scale": [
  3677. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3678. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3679. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3680. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3681. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3682. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3683. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3684. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3685. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3686. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3687. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3688. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3689. { "time": 2, "x": 1, "y": 1 }
  3690. ]
  3691. },
  3692. "bone36": {
  3693. "rotate": [
  3694. { "time": 0, "angle": 0, "curve": "stepped" },
  3695. { "time": 0.1667, "angle": 0 },
  3696. { "time": 0.3333, "angle": -24.32 },
  3697. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3698. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3699. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3700. { "time": 1, "angle": 0, "curve": "stepped" },
  3701. { "time": 1.1667, "angle": 0 },
  3702. { "time": 1.3333, "angle": -24.32 },
  3703. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3704. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3705. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3706. { "time": 2, "angle": 0 }
  3707. ],
  3708. "translate": [
  3709. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3710. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3711. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3712. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3713. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3714. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3715. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3716. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3717. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3718. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3719. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3720. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3721. { "time": 2, "x": 0, "y": 0 }
  3722. ],
  3723. "scale": [
  3724. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3725. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3726. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3727. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3728. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3729. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3730. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3731. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3732. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3733. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3734. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3735. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3736. { "time": 2, "x": 1, "y": 1 }
  3737. ]
  3738. },
  3739. "bone38": {
  3740. "rotate": [
  3741. {
  3742. "time": 0,
  3743. "angle": 0,
  3744. "curve": [ 0.25, 0, 0.75, 1 ]
  3745. },
  3746. {
  3747. "time": 0.5,
  3748. "angle": 1.57,
  3749. "curve": [ 0.25, 0, 0.75, 1 ]
  3750. },
  3751. {
  3752. "time": 1,
  3753. "angle": 0,
  3754. "curve": [ 0.25, 0, 0.75, 1 ]
  3755. },
  3756. {
  3757. "time": 1.5,
  3758. "angle": 1.57,
  3759. "curve": [ 0.25, 0, 0.75, 1 ]
  3760. },
  3761. { "time": 2, "angle": 0 }
  3762. ],
  3763. "translate": [
  3764. {
  3765. "time": 0,
  3766. "x": 0,
  3767. "y": 0,
  3768. "curve": [ 0.25, 0, 0.75, 1 ]
  3769. },
  3770. {
  3771. "time": 0.5,
  3772. "x": -0.08,
  3773. "y": 2.15,
  3774. "curve": [ 0.25, 0, 0.75, 1 ]
  3775. },
  3776. {
  3777. "time": 1,
  3778. "x": 0,
  3779. "y": 0,
  3780. "curve": [ 0.25, 0, 0.75, 1 ]
  3781. },
  3782. {
  3783. "time": 1.5,
  3784. "x": -0.08,
  3785. "y": 2.15,
  3786. "curve": [ 0.25, 0, 0.75, 1 ]
  3787. },
  3788. { "time": 2, "x": 0, "y": 0 }
  3789. ],
  3790. "scale": [
  3791. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3792. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3793. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3794. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3795. { "time": 2, "x": 1, "y": 1 }
  3796. ]
  3797. },
  3798. "bone39": {
  3799. "rotate": [
  3800. {
  3801. "time": 0,
  3802. "angle": 0,
  3803. "curve": [ 0.25, 0, 0.75, 1 ]
  3804. },
  3805. {
  3806. "time": 0.5,
  3807. "angle": 6.84,
  3808. "curve": [ 0.25, 0, 0.75, 1 ]
  3809. },
  3810. {
  3811. "time": 1,
  3812. "angle": 0,
  3813. "curve": [ 0.25, 0, 0.75, 1 ]
  3814. },
  3815. {
  3816. "time": 1.5,
  3817. "angle": 6.84,
  3818. "curve": [ 0.25, 0, 0.75, 1 ]
  3819. },
  3820. { "time": 2, "angle": 0 }
  3821. ],
  3822. "translate": [
  3823. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3824. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3825. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3826. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3827. { "time": 2, "x": 0, "y": 0 }
  3828. ],
  3829. "scale": [
  3830. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3831. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3832. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3833. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3834. { "time": 2, "x": 1, "y": 1 }
  3835. ]
  3836. },
  3837. "bone40": {
  3838. "rotate": [
  3839. {
  3840. "time": 0,
  3841. "angle": 0,
  3842. "curve": [ 0.25, 0, 0.75, 1 ]
  3843. },
  3844. {
  3845. "time": 0.5,
  3846. "angle": 6.84,
  3847. "curve": [ 0.25, 0, 0.75, 1 ]
  3848. },
  3849. {
  3850. "time": 1,
  3851. "angle": 0,
  3852. "curve": [ 0.25, 0, 0.75, 1 ]
  3853. },
  3854. {
  3855. "time": 1.5,
  3856. "angle": 6.84,
  3857. "curve": [ 0.25, 0, 0.75, 1 ]
  3858. },
  3859. { "time": 2, "angle": 0 }
  3860. ],
  3861. "translate": [
  3862. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3863. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3864. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3865. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3866. { "time": 2, "x": 0, "y": 0 }
  3867. ],
  3868. "scale": [
  3869. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3870. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3871. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3872. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3873. { "time": 2, "x": 1, "y": 1 }
  3874. ]
  3875. },
  3876. "bone47": {
  3877. "rotate": [
  3878. {
  3879. "time": 0,
  3880. "angle": 0,
  3881. "curve": [ 0.25, 0, 0.75, 1 ]
  3882. },
  3883. {
  3884. "time": 0.5,
  3885. "angle": 7.44,
  3886. "curve": [ 0.25, 0, 0.75, 1 ]
  3887. },
  3888. {
  3889. "time": 1,
  3890. "angle": 0,
  3891. "curve": [ 0.25, 0, 0.75, 1 ]
  3892. },
  3893. {
  3894. "time": 1.5,
  3895. "angle": 7.44,
  3896. "curve": [ 0.25, 0, 0.75, 1 ]
  3897. },
  3898. { "time": 2, "angle": 0 }
  3899. ],
  3900. "translate": [
  3901. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3902. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3903. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3904. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3905. { "time": 2, "x": 0, "y": 0 }
  3906. ],
  3907. "scale": [
  3908. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3909. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3910. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3911. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3912. { "time": 2, "x": 1, "y": 1 }
  3913. ]
  3914. },
  3915. "bone48": {
  3916. "rotate": [
  3917. {
  3918. "time": 0,
  3919. "angle": 0,
  3920. "curve": [ 0.25, 0, 0.75, 1 ]
  3921. },
  3922. {
  3923. "time": 0.5,
  3924. "angle": 1.04,
  3925. "curve": [ 0.25, 0, 0.75, 1 ]
  3926. },
  3927. {
  3928. "time": 1,
  3929. "angle": 0,
  3930. "curve": [ 0.25, 0, 0.75, 1 ]
  3931. },
  3932. {
  3933. "time": 1.5,
  3934. "angle": 1.04,
  3935. "curve": [ 0.25, 0, 0.75, 1 ]
  3936. },
  3937. { "time": 2, "angle": 0 }
  3938. ],
  3939. "translate": [
  3940. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3941. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3942. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3943. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3944. { "time": 2, "x": 0, "y": 0 }
  3945. ],
  3946. "scale": [
  3947. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3948. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3949. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3950. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3951. { "time": 2, "x": 1, "y": 1 }
  3952. ]
  3953. },
  3954. "bone49": {
  3955. "rotate": [
  3956. {
  3957. "time": 0,
  3958. "angle": 0,
  3959. "curve": [ 0.25, 0, 0.75, 1 ]
  3960. },
  3961. {
  3962. "time": 0.5,
  3963. "angle": -4.19,
  3964. "curve": [ 0.25, 0, 0.75, 1 ]
  3965. },
  3966. {
  3967. "time": 1,
  3968. "angle": 0,
  3969. "curve": [ 0.25, 0, 0.75, 1 ]
  3970. },
  3971. {
  3972. "time": 1.5,
  3973. "angle": -4.19,
  3974. "curve": [ 0.25, 0, 0.75, 1 ]
  3975. },
  3976. { "time": 2, "angle": 0 }
  3977. ],
  3978. "translate": [
  3979. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3980. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3981. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3982. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3983. { "time": 2, "x": 0, "y": 0 }
  3984. ],
  3985. "scale": [
  3986. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3987. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3988. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3989. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3990. { "time": 2, "x": 1, "y": 1 }
  3991. ]
  3992. },
  3993. "bone50": {
  3994. "rotate": [
  3995. {
  3996. "time": 0,
  3997. "angle": 0,
  3998. "curve": [ 0.25, 0, 0.75, 1 ]
  3999. },
  4000. {
  4001. "time": 0.5,
  4002. "angle": -4.19,
  4003. "curve": [ 0.25, 0, 0.75, 1 ]
  4004. },
  4005. {
  4006. "time": 1,
  4007. "angle": 0,
  4008. "curve": [ 0.25, 0, 0.75, 1 ]
  4009. },
  4010. {
  4011. "time": 1.5,
  4012. "angle": -4.19,
  4013. "curve": [ 0.25, 0, 0.75, 1 ]
  4014. },
  4015. { "time": 2, "angle": 0 }
  4016. ],
  4017. "translate": [
  4018. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4019. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4020. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4021. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4022. { "time": 2, "x": 0, "y": 0 }
  4023. ],
  4024. "scale": [
  4025. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4026. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4027. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4028. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4029. { "time": 2, "x": 1, "y": 1 }
  4030. ]
  4031. },
  4032. "bone51": {
  4033. "rotate": [
  4034. {
  4035. "time": 0,
  4036. "angle": 0,
  4037. "curve": [ 0.25, 0, 0.75, 1 ]
  4038. },
  4039. {
  4040. "time": 0.5,
  4041. "angle": -4.19,
  4042. "curve": [ 0.25, 0, 0.75, 1 ]
  4043. },
  4044. {
  4045. "time": 1,
  4046. "angle": 0,
  4047. "curve": [ 0.25, 0, 0.75, 1 ]
  4048. },
  4049. {
  4050. "time": 1.5,
  4051. "angle": -4.19,
  4052. "curve": [ 0.25, 0, 0.75, 1 ]
  4053. },
  4054. { "time": 2, "angle": 0 }
  4055. ],
  4056. "translate": [
  4057. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4058. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4059. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4060. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4061. { "time": 2, "x": 0, "y": 0 }
  4062. ],
  4063. "scale": [
  4064. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4065. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4066. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4067. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4068. { "time": 2, "x": 1, "y": 1 }
  4069. ]
  4070. },
  4071. "bone52": {
  4072. "rotate": [
  4073. {
  4074. "time": 0,
  4075. "angle": 6.71,
  4076. "curve": [ 0.25, 0, 0.75, 1 ]
  4077. },
  4078. {
  4079. "time": 0.5,
  4080. "angle": 13.33,
  4081. "curve": [ 0.25, 0, 0.75, 1 ]
  4082. },
  4083. {
  4084. "time": 1,
  4085. "angle": 6.71,
  4086. "curve": [ 0.25, 0, 0.75, 1 ]
  4087. },
  4088. {
  4089. "time": 1.5,
  4090. "angle": 13.33,
  4091. "curve": [ 0.25, 0, 0.75, 1 ]
  4092. },
  4093. { "time": 2, "angle": 6.71 }
  4094. ],
  4095. "translate": [
  4096. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4097. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4098. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4099. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4100. { "time": 2, "x": 0, "y": 0 }
  4101. ],
  4102. "scale": [
  4103. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4104. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4105. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4106. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4107. { "time": 2, "x": 1, "y": 1 }
  4108. ]
  4109. },
  4110. "bone53": {
  4111. "rotate": [
  4112. {
  4113. "time": 0,
  4114. "angle": 0,
  4115. "curve": [ 0.25, 0, 0.75, 1 ]
  4116. },
  4117. {
  4118. "time": 0.5,
  4119. "angle": 3.1,
  4120. "curve": [ 0.25, 0, 0.75, 1 ]
  4121. },
  4122. {
  4123. "time": 1,
  4124. "angle": 0,
  4125. "curve": [ 0.25, 0, 0.75, 1 ]
  4126. },
  4127. {
  4128. "time": 1.5,
  4129. "angle": 3.1,
  4130. "curve": [ 0.25, 0, 0.75, 1 ]
  4131. },
  4132. { "time": 2, "angle": 0 }
  4133. ],
  4134. "translate": [
  4135. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4136. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4137. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4138. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4139. { "time": 2, "x": 0, "y": 0 }
  4140. ],
  4141. "scale": [
  4142. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4143. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4144. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4145. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4146. { "time": 2, "x": 1, "y": 1 }
  4147. ]
  4148. },
  4149. "bone54": {
  4150. "rotate": [
  4151. {
  4152. "time": 0,
  4153. "angle": 0,
  4154. "curve": [ 0.25, 0, 0.75, 1 ]
  4155. },
  4156. {
  4157. "time": 0.5,
  4158. "angle": 10.2,
  4159. "curve": [ 0.25, 0, 0.75, 1 ]
  4160. },
  4161. {
  4162. "time": 1,
  4163. "angle": 0,
  4164. "curve": [ 0.25, 0, 0.75, 1 ]
  4165. },
  4166. {
  4167. "time": 1.5,
  4168. "angle": 10.2,
  4169. "curve": [ 0.25, 0, 0.75, 1 ]
  4170. },
  4171. { "time": 2, "angle": 0 }
  4172. ],
  4173. "translate": [
  4174. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4175. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4176. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4177. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4178. { "time": 2, "x": 0, "y": 0 }
  4179. ],
  4180. "scale": [
  4181. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4182. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4183. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4184. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4185. { "time": 2, "x": 1, "y": 1 }
  4186. ]
  4187. },
  4188. "bone55": {
  4189. "rotate": [
  4190. {
  4191. "time": 0,
  4192. "angle": 0,
  4193. "curve": [ 0.25, 0, 0.75, 1 ]
  4194. },
  4195. {
  4196. "time": 0.5,
  4197. "angle": 10.2,
  4198. "curve": [ 0.25, 0, 0.75, 1 ]
  4199. },
  4200. {
  4201. "time": 1,
  4202. "angle": 0,
  4203. "curve": [ 0.25, 0, 0.75, 1 ]
  4204. },
  4205. {
  4206. "time": 1.5,
  4207. "angle": 10.2,
  4208. "curve": [ 0.25, 0, 0.75, 1 ]
  4209. },
  4210. { "time": 2, "angle": 0 }
  4211. ],
  4212. "translate": [
  4213. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4214. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4215. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4216. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4217. { "time": 2, "x": 0, "y": 0 }
  4218. ],
  4219. "scale": [
  4220. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4221. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4222. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4223. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4224. { "time": 2, "x": 1, "y": 1 }
  4225. ]
  4226. },
  4227. "bone56": {
  4228. "rotate": [
  4229. {
  4230. "time": 0,
  4231. "angle": 0,
  4232. "curve": [ 0.25, 0, 0.75, 1 ]
  4233. },
  4234. {
  4235. "time": 0.5,
  4236. "angle": 3.59,
  4237. "curve": [ 0.25, 0, 0.75, 1 ]
  4238. },
  4239. {
  4240. "time": 1,
  4241. "angle": 0,
  4242. "curve": [ 0.25, 0, 0.75, 1 ]
  4243. },
  4244. {
  4245. "time": 1.5,
  4246. "angle": 3.59,
  4247. "curve": [ 0.25, 0, 0.75, 1 ]
  4248. },
  4249. { "time": 2, "angle": 0 }
  4250. ],
  4251. "translate": [
  4252. {
  4253. "time": 0,
  4254. "x": -0.4,
  4255. "y": 1.56,
  4256. "curve": [ 0.25, 0, 0.75, 1 ]
  4257. },
  4258. {
  4259. "time": 0.5,
  4260. "x": 0.44,
  4261. "y": -1.35,
  4262. "curve": [ 0.25, 0, 0.75, 1 ]
  4263. },
  4264. {
  4265. "time": 1,
  4266. "x": -0.4,
  4267. "y": 1.56,
  4268. "curve": [ 0.25, 0, 0.75, 1 ]
  4269. },
  4270. {
  4271. "time": 1.5,
  4272. "x": 0.44,
  4273. "y": -1.35,
  4274. "curve": [ 0.25, 0, 0.75, 1 ]
  4275. },
  4276. { "time": 2, "x": -0.4, "y": 1.56 }
  4277. ],
  4278. "scale": [
  4279. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4280. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4281. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4282. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4283. { "time": 2, "x": 1, "y": 1 }
  4284. ]
  4285. },
  4286. "bone57": {
  4287. "rotate": [
  4288. {
  4289. "time": 0,
  4290. "angle": 0,
  4291. "curve": [ 0.25, 0, 0.75, 1 ]
  4292. },
  4293. {
  4294. "time": 0.5,
  4295. "angle": 4.91,
  4296. "curve": [ 0.25, 0, 0.75, 1 ]
  4297. },
  4298. {
  4299. "time": 1,
  4300. "angle": 0,
  4301. "curve": [ 0.25, 0, 0.75, 1 ]
  4302. },
  4303. {
  4304. "time": 1.5,
  4305. "angle": 4.91,
  4306. "curve": [ 0.25, 0, 0.75, 1 ]
  4307. },
  4308. { "time": 2, "angle": 0 }
  4309. ],
  4310. "translate": [
  4311. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4312. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4313. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4314. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4315. { "time": 2, "x": 0, "y": 0 }
  4316. ],
  4317. "scale": [
  4318. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4319. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4320. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4321. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4322. { "time": 2, "x": 1, "y": 1 }
  4323. ]
  4324. },
  4325. "bone58": {
  4326. "rotate": [
  4327. {
  4328. "time": 0,
  4329. "angle": 0,
  4330. "curve": [ 0.25, 0, 0.75, 1 ]
  4331. },
  4332. {
  4333. "time": 0.5,
  4334. "angle": 4.91,
  4335. "curve": [ 0.25, 0, 0.75, 1 ]
  4336. },
  4337. {
  4338. "time": 1,
  4339. "angle": 0,
  4340. "curve": [ 0.25, 0, 0.75, 1 ]
  4341. },
  4342. {
  4343. "time": 1.5,
  4344. "angle": 4.91,
  4345. "curve": [ 0.25, 0, 0.75, 1 ]
  4346. },
  4347. { "time": 2, "angle": 0 }
  4348. ],
  4349. "translate": [
  4350. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4351. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4352. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4353. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4354. { "time": 2, "x": 0, "y": 0 }
  4355. ],
  4356. "scale": [
  4357. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4358. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4359. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4360. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4361. { "time": 2, "x": 1, "y": 1 }
  4362. ]
  4363. },
  4364. "bone59": {
  4365. "rotate": [
  4366. {
  4367. "time": 0,
  4368. "angle": 0,
  4369. "curve": [ 0.25, 0, 0.75, 1 ]
  4370. },
  4371. {
  4372. "time": 0.5,
  4373. "angle": 4.91,
  4374. "curve": [ 0.25, 0, 0.75, 1 ]
  4375. },
  4376. {
  4377. "time": 1,
  4378. "angle": 0,
  4379. "curve": [ 0.25, 0, 0.75, 1 ]
  4380. },
  4381. {
  4382. "time": 1.5,
  4383. "angle": 4.91,
  4384. "curve": [ 0.25, 0, 0.75, 1 ]
  4385. },
  4386. { "time": 2, "angle": 0 }
  4387. ],
  4388. "translate": [
  4389. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4390. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4391. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4392. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4393. { "time": 2, "x": 0, "y": 0 }
  4394. ],
  4395. "scale": [
  4396. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4397. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4398. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4399. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4400. { "time": 2, "x": 1, "y": 1 }
  4401. ]
  4402. },
  4403. "bone61": {
  4404. "rotate": [
  4405. { "time": 0, "angle": 12.67, "curve": "stepped" },
  4406. { "time": 0.5, "angle": 12.67, "curve": "stepped" },
  4407. { "time": 1, "angle": 12.67, "curve": "stepped" },
  4408. { "time": 1.5, "angle": 12.67, "curve": "stepped" },
  4409. { "time": 2, "angle": 12.67 }
  4410. ],
  4411. "translate": [
  4412. { "time": 0, "x": -1.7, "y": 1.94, "curve": "stepped" },
  4413. { "time": 0.5, "x": -1.7, "y": 1.94, "curve": "stepped" },
  4414. { "time": 1, "x": -1.7, "y": 1.94, "curve": "stepped" },
  4415. { "time": 1.5, "x": -1.7, "y": 1.94, "curve": "stepped" },
  4416. { "time": 2, "x": -1.7, "y": 1.94 }
  4417. ],
  4418. "scale": [
  4419. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4420. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4421. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4422. { "time": 2, "x": 1, "y": 1 }
  4423. ]
  4424. },
  4425. "bone60": {
  4426. "rotate": [
  4427. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4428. { "time": 1, "angle": 0, "curve": "stepped" },
  4429. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4430. { "time": 2, "angle": 0 }
  4431. ],
  4432. "translate": [
  4433. { "time": 0, "x": -90.86, "y": 376.6, "curve": "stepped" },
  4434. { "time": 0.5, "x": -90.86, "y": 376.6, "curve": "stepped" },
  4435. { "time": 1, "x": -90.86, "y": 376.6, "curve": "stepped" },
  4436. { "time": 1.5, "x": -90.86, "y": 376.6, "curve": "stepped" },
  4437. { "time": 2, "x": -90.86, "y": 376.6 }
  4438. ],
  4439. "scale": [
  4440. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4441. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4442. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4443. { "time": 2, "x": 1, "y": 1 }
  4444. ]
  4445. },
  4446. "bone42": {
  4447. "rotate": [
  4448. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4449. { "time": 1, "angle": 0, "curve": "stepped" },
  4450. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4451. { "time": 2, "angle": 0 }
  4452. ],
  4453. "translate": [
  4454. { "time": 0, "x": -420.23, "y": -23.21 },
  4455. { "time": 0.1667, "x": -420.23, "y": -21.49 },
  4456. { "time": 0.5, "x": -420.23, "y": -23.21 },
  4457. { "time": 0.6667, "x": -420.23, "y": -21.49 },
  4458. { "time": 1, "x": -420.23, "y": -23.21 },
  4459. { "time": 1.1667, "x": -420.23, "y": -21.49 },
  4460. { "time": 1.5, "x": -420.23, "y": -23.21 },
  4461. { "time": 1.6667, "x": -420.23, "y": -21.49 },
  4462. { "time": 2, "x": -420.23, "y": -23.21 }
  4463. ],
  4464. "scale": [
  4465. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4466. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4467. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4468. { "time": 2, "x": 1, "y": 1 }
  4469. ]
  4470. },
  4471. "root": {
  4472. "scale": [
  4473. { "time": 0, "x": 0.65, "y": 0.65 }
  4474. ]
  4475. },
  4476. "bone62": {
  4477. "rotate": [
  4478. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4479. { "time": 1, "angle": 0, "curve": "stepped" },
  4480. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4481. { "time": 2, "angle": 0 }
  4482. ],
  4483. "translate": [
  4484. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4485. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4486. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4487. { "time": 2, "x": 0, "y": 0 }
  4488. ],
  4489. "scale": [
  4490. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4491. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4492. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4493. { "time": 2, "x": 1, "y": 1 }
  4494. ]
  4495. }
  4496. },
  4497. "deform": {
  4498. "default": {
  4499. "qunzi": {
  4500. "qunzi": [
  4501. {
  4502. "time": 0,
  4503. "vertices": [ -0.78308, -1.49583, -0.51105, -1.60916, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.6178, -2.15325, -1.21875, -2.4017 ]
  4504. },
  4505. {
  4506. "time": 0.1667,
  4507. "vertices": [ 0.34589, -1.84143, 0.39436, -1.83167, 0.70091, -1.47117, 0.73949, -1.45217, 0.73895, -1.45244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.72073, -3.32102, -0.63285, -3.33888 ]
  4508. },
  4509. { "time": 0.5 },
  4510. {
  4511. "time": 0.6667,
  4512. "vertices": [ -0.13216, -0.22261, -0.11096, -0.30217, -0.19054, -0.28933, -0.18283, -0.29426, -0.18295, -0.29419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.13216, -0.22261, -0.11096, -0.30217 ]
  4513. },
  4514. {
  4515. "time": 0.8333,
  4516. "vertices": [ 0.54394, -2.023, 0.59714, -2.00795, -0.09883, -1.00793, -0.0722, -1.01019, -0.07259, -1.01016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.19167, -1.3406, -1.15587, -1.37157 ]
  4517. },
  4518. {
  4519. "time": 1,
  4520. "vertices": [ -0.78308, -1.49583, -0.51105, -1.60916, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.6178, -2.15325, -1.21875, -2.4017 ]
  4521. },
  4522. {
  4523. "time": 1.1667,
  4524. "vertices": [ 0.34589, -1.84143, 0.39436, -1.83167, 0.70091, -1.47117, 0.73949, -1.45217, 0.73895, -1.45244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.72073, -3.32102, -0.63285, -3.33888 ]
  4525. },
  4526. { "time": 1.5 },
  4527. {
  4528. "time": 1.6667,
  4529. "vertices": [ -0.13216, -0.22261, -0.11096, -0.30217, -0.19054, -0.28933, -0.18283, -0.29426, -0.18295, -0.29419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.13216, -0.22261, -0.11096, -0.30217 ]
  4530. },
  4531. {
  4532. "time": 1.8333,
  4533. "vertices": [ 0.54394, -2.023, 0.59714, -2.00795, -0.09883, -1.00793, -0.0722, -1.01019, -0.07259, -1.01016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.19167, -1.3406, -1.15587, -1.37157 ]
  4534. },
  4535. { "time": 2 }
  4536. ]
  4537. },
  4538. "shangshen": {
  4539. "shangshen": [
  4540. {
  4541. "time": 0,
  4542. "offset": 12,
  4543. "vertices": [ 10.84779, 0.21696, 10.84347, 0.37717, 10.83205, 0.62492, -2.26079, 0.61196, -2.26947, 0.5785, -1.09421, 0.19618, -1.09694, 0.18, 0, 0, 0, 0, 0, 0, 0, 0, -0.05094, 2.54948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.05094, 2.54948, -0.08865, 2.54845, -0.05094, 2.54948, -0.05094, 2.54948, -0.08865, 2.54845, 0, 0, 0, 0, 0.95866, 3.07977, 0.91302, 3.0936, 1.97849, 3.10017, 1.9324, 3.12905, 1.86044, 3.17241, 0.43517, 3.74944, 0.37968, 3.75545 ]
  4544. },
  4545. {
  4546. "time": 0.1667,
  4547. "offset": 18,
  4548. "vertices": [ -1.58638, 0.41343, -1.60098, 0.33472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00779, -0.38793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00779, -0.38793, 0.01334, -0.38778, 0.00779, -0.38793, 0.00779, -0.38793, 0.01334, -0.38778, 0, 0, 0, 0, 0.50959, 2.27962, 0.47582, 2.2869, 1.18947, 2.29322, 1.15541, 2.31054, 1.10254, 2.33636, 0.29011, 2.49962, 0.25312, 2.50364 ]
  4549. },
  4550. {
  4551. "time": 0.5,
  4552. "offset": 18,
  4553. "vertices": [ -0.44026, 0.20924, -0.44585, 0.19702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.06619, -3.30532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.06619, -3.30532, 0.11494, -3.30398, 0.06619, -3.30532, 0.06619, -3.30532, 0.11494, -3.30398, 0, 0, 0, 0, 3.18538, 0.06371, 3.18407, 0.11075, 3.18538, 0.06371, 3.18407, 0.11075, 3.18071, 0.1835 ]
  4554. },
  4555. {
  4556. "time": 0.6667,
  4557. "offset": 34,
  4558. "vertices": [ 0.03173, -1.58567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03173, -1.58567, 0.05497, -1.58502, 0.03173, -1.58567, 0.03173, -1.58567, 0.05497, -1.58502, 0, 0, 0, 0, 4.92062, 1.11861, 4.90354, 1.19117, 5.26057, 1.12541, 5.24334, 1.20299, 5.21449, 1.32252, 0.14506, 1.24981, 0.12656, 1.25182 ]
  4559. },
  4560. {
  4561. "time": 0.8333,
  4562. "offset": 12,
  4563. "vertices": [ 5.4239, 0.10848, 5.42173, 0.18858, 5.41602, 0.31246, -0.09564, 0.22965, -0.1092, 0.17384, 0.70117, -0.25007, 0.70454, -0.23969, 0.57452, -0.97072, 0.58867, -0.96212, 0.45946, -2.26828, 0.4928, -2.26125, -0.00961, 0.4819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.00961, 0.4819, -0.01684, 0.48171, -0.00961, 0.4819, -0.00961, 0.4819, -0.01684, 0.48171, 0, 0, 0, 0, 2.93964, 2.09919, 2.90828, 2.14238, 3.61953, 2.11279, 3.58787, 2.16602, 3.53746, 2.24746, 0.29011, 2.49962, 0.25312, 2.50364 ]
  4564. },
  4565. {
  4566. "time": 1,
  4567. "offset": 12,
  4568. "vertices": [ 10.84779, 0.21696, 10.84347, 0.37717, 10.83205, 0.62492, -2.26079, 0.61196, -2.26947, 0.5785, -1.09421, 0.19618, -1.09694, 0.18, 0, 0, 0, 0, 0, 0, 0, 0, -0.05094, 2.54948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.05094, 2.54948, -0.08865, 2.54845, -0.05094, 2.54948, -0.05094, 2.54948, -0.08865, 2.54845, 0, 0, 0, 0, 0.95866, 3.07977, 0.91302, 3.0936, 1.97849, 3.10017, 1.9324, 3.12905, 1.86044, 3.17241, 0.43517, 3.74944, 0.37968, 3.75545 ]
  4569. },
  4570. {
  4571. "time": 1.1667,
  4572. "offset": 18,
  4573. "vertices": [ -1.58638, 0.41343, -1.60098, 0.33472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00779, -0.38793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00779, -0.38793, 0.01334, -0.38778, 0.00779, -0.38793, 0.00779, -0.38793, 0.01334, -0.38778, 0, 0, 0, 0, 0.50959, 2.27962, 0.47582, 2.2869, 1.18947, 2.29322, 1.15541, 2.31054, 1.10254, 2.33636, 0.29011, 2.49962, 0.25312, 2.50364 ]
  4574. },
  4575. {
  4576. "time": 1.5,
  4577. "offset": 18,
  4578. "vertices": [ -0.44026, 0.20924, -0.44585, 0.19702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.06619, -3.30532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.06619, -3.30532, 0.11494, -3.30398, 0.06619, -3.30532, 0.06619, -3.30532, 0.11494, -3.30398, 0, 0, 0, 0, 3.18538, 0.06371, 3.18407, 0.11075, 3.18538, 0.06371, 3.18407, 0.11075, 3.18071, 0.1835 ]
  4579. },
  4580. {
  4581. "time": 1.6667,
  4582. "offset": 34,
  4583. "vertices": [ 0.03173, -1.58567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03173, -1.58567, 0.05497, -1.58502, 0.03173, -1.58567, 0.03173, -1.58567, 0.05497, -1.58502, 0, 0, 0, 0, 4.92062, 1.11861, 4.90354, 1.19117, 5.26057, 1.12541, 5.24334, 1.20299, 5.21449, 1.32252, 0.14506, 1.24981, 0.12656, 1.25182 ]
  4584. },
  4585. {
  4586. "time": 1.8333,
  4587. "offset": 12,
  4588. "vertices": [ 5.4239, 0.10848, 5.42173, 0.18858, 5.41602, 0.31246, -0.09564, 0.22965, -0.1092, 0.17384, 0.70117, -0.25007, 0.70454, -0.23969, 0.57452, -0.97072, 0.58867, -0.96212, 0.45946, -2.26828, 0.4928, -2.26125, -0.00961, 0.4819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.00961, 0.4819, -0.01684, 0.48171, -0.00961, 0.4819, -0.00961, 0.4819, -0.01684, 0.48171, 0, 0, 0, 0, 2.93964, 2.09919, 2.90828, 2.14238, 3.61953, 2.11279, 3.58787, 2.16602, 3.53746, 2.24746, 0.29011, 2.49962, 0.25312, 2.50364 ]
  4589. },
  4590. {
  4591. "time": 2,
  4592. "offset": 12,
  4593. "vertices": [ 10.84779, 0.21696, 10.84347, 0.37717, 10.83205, 0.62492, -2.26079, 0.61196, -2.26947, 0.5785, -1.09421, 0.19618, -1.09694, 0.18, 0, 0, 0, 0, 0, 0, 0, 0, -0.05094, 2.54948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.05094, 2.54948, -0.08865, 2.54845, -0.05094, 2.54948, -0.05094, 2.54948, -0.08865, 2.54845, 0, 0, 0, 0, 0.95866, 3.07977, 0.91302, 3.0936, 1.97849, 3.10017, 1.9324, 3.12905, 1.86044, 3.17241, 0.43517, 3.74944, 0.37968, 3.75545 ]
  4594. }
  4595. ]
  4596. },
  4597. "toufa2": {
  4598. "toufa2": [
  4599. { "time": 0 },
  4600. {
  4601. "time": 0.5,
  4602. "offset": 10,
  4603. "vertices": [ 2.71483, -0.38824, 2.71483, -0.38824 ]
  4604. },
  4605. { "time": 1 },
  4606. {
  4607. "time": 1.5,
  4608. "offset": 10,
  4609. "vertices": [ 2.71483, -0.38824, 2.71483, -0.38824 ]
  4610. },
  4611. { "time": 2 }
  4612. ]
  4613. },
  4614. "toufa3": {
  4615. "toufa3": [
  4616. { "time": 0 },
  4617. {
  4618. "time": 0.5,
  4619. "offset": 4,
  4620. "vertices": [ -2.96185, -1.90786, -2.81123, -2.10851, -2.81123, -2.10851, -2.96185, -1.90786, -2.96185, -1.90786, -2.96185, -1.90786 ]
  4621. },
  4622. { "time": 1 },
  4623. {
  4624. "time": 1.5,
  4625. "offset": 4,
  4626. "vertices": [ -2.96185, -1.90786, -2.81123, -2.10851, -2.81123, -2.10851, -2.96185, -1.90786, -2.96185, -1.90786, -2.96185, -1.90786 ]
  4627. },
  4628. { "time": 2 }
  4629. ]
  4630. }
  4631. }
  4632. }
  4633. }
  4634. }
  4635. }