60027.json 200 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346
  1. {
  2. "skeleton": { "hash": "QEI1nha1XTwlwW03EE7lmpga9iE", "spine": "3.6.53", "width": 378.96, "height": 205, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": 0.13, "y": 64.05 },
  6. { "name": "bone2", "parent": "bone", "length": 16.93, "rotation": 90, "x": 0.57, "y": 2.01 },
  7. { "name": "bone3", "parent": "bone2", "length": 26.13, "rotation": -1.89, "x": 16.93 },
  8. { "name": "bone4", "parent": "bone3", "length": 20.28, "rotation": -150.72, "x": 23.61, "y": -13.3, "color": "30ba1cff" },
  9. { "name": "bone5", "parent": "bone4", "length": 15.24, "rotation": -1.19, "x": 20.28, "color": "30ba1cff" },
  10. { "name": "bone6", "parent": "bone5", "length": 13.88, "rotation": 0.77, "x": 15.24, "color": "30ba1cff" },
  11. { "name": "bone7", "parent": "bone3", "length": 22.03, "rotation": 155.58, "x": 23.22, "y": 11.65, "color": "22a0d2ff" },
  12. { "name": "bone8", "parent": "bone7", "length": 16.89, "rotation": 0.41, "x": 22.03, "color": "22a0d2ff" },
  13. { "name": "bone9", "parent": "bone8", "length": 14.03, "rotation": -5.82, "x": 16.89, "color": "22a0d2ff" },
  14. { "name": "bone10", "parent": "bone3", "length": 60.8, "rotation": 2.17, "x": 27.85, "y": 0.47 },
  15. { "name": "bone11", "parent": "bone10", "x": 28.45, "y": 6.57 },
  16. { "name": "bone12", "parent": "bone10", "x": 38.07, "y": 7.21 },
  17. { "name": "bone13", "parent": "bone10", "x": 9.32, "y": 5.33 },
  18. { "name": "bone59", "parent": "bone", "x": 2.2, "y": 1.01 },
  19. { "name": "bone14", "parent": "bone59", "length": 5, "rotation": -75.82, "x": 9.18, "y": -1.03, "color": "4c2288ff" },
  20. { "name": "bone15", "parent": "bone", "length": 22, "rotation": -94.06, "x": -7.25, "y": -10.55, "color": "d9d02bff" },
  21. { "name": "bone16", "parent": "bone15", "length": 23.66, "rotation": -2.68, "x": 22.93, "y": 0.09, "color": "d9d02bff" },
  22. { "name": "bone17", "parent": "bone16", "length": 13.87, "rotation": -74.05, "x": 23.64, "y": 0.18, "color": "d9d02bff" },
  23. { "name": "bone18", "parent": "bone", "length": 25, "rotation": -82.1, "x": 10.28, "y": -10.64, "color": "14367bff" },
  24. { "name": "bone19", "parent": "bone18", "length": 20, "rotation": -1.66, "x": 25.3, "y": 0.28, "color": "14367bff" },
  25. { "name": "bone20", "parent": "bone19", "length": 11.54, "rotation": -84.2, "x": 21.12, "y": -0.39, "color": "14367bff" },
  26. { "name": "bone21", "parent": "bone10", "length": 12.92, "rotation": 0.98, "x": 24.55, "y": -10.26 },
  27. { "name": "bone22", "parent": "bone10", "length": 12.16, "rotation": 1.06, "x": 23.75, "y": 19.86 },
  28. { "name": "bone60", "parent": "bone21", "x": 5.64, "y": 2.39 },
  29. { "name": "bone23", "parent": "bone60", "x": 1.89, "y": 1.09 },
  30. { "name": "bone61", "parent": "bone22", "x": 5.72, "y": 1.58 },
  31. { "name": "bone24", "parent": "bone61", "x": 2.08, "y": 1.22 },
  32. { "name": "bone25", "parent": "bone10", "length": 15.27, "rotation": -98.42, "x": 74.78, "y": -20.86, "color": "ef6918ff" },
  33. { "name": "bone26", "parent": "bone25", "length": 16.77, "rotation": -74.47, "x": 15.27, "color": "ef6918ff" },
  34. { "name": "bone27", "parent": "bone26", "length": 16.1, "rotation": -14.33, "x": 17.2, "y": -0.06, "color": "ef6918ff" },
  35. { "name": "bone28", "parent": "bone27", "length": 19.74, "rotation": -3.15, "x": 16.1, "color": "ef6918ff" },
  36. { "name": "bone29", "parent": "bone28", "length": 17.13, "rotation": 5.02, "x": 19.74, "color": "ef6918ff" },
  37. { "name": "bone30", "parent": "bone29", "length": 13.72, "rotation": 12.3, "x": 18.64, "y": 0.13, "color": "ef6918ff" },
  38. { "name": "bone31", "parent": "bone30", "length": 13.44, "rotation": 16.45, "x": 14.12, "y": -0.27, "color": "ef6918ff" },
  39. { "name": "bone32", "parent": "bone10", "length": 14.99, "rotation": -165.25, "x": 66.19, "y": -53.44, "color": "7e0a84ff" },
  40. { "name": "bone33", "parent": "bone32", "length": 13.62, "rotation": -17.76, "x": 14.99, "color": "7e0a84ff" },
  41. { "name": "bone34", "parent": "bone33", "length": 17.9, "rotation": -5.6, "x": 13.62, "color": "7e0a84ff" },
  42. { "name": "bone35", "parent": "bone34", "length": 15.17, "rotation": -2.34, "x": 17.93, "y": -0.21, "color": "7e0a84ff" },
  43. { "name": "bone36", "parent": "bone35", "length": 12.33, "rotation": 7.66, "x": 15.42, "y": -0.17, "color": "7e0a84ff" },
  44. { "name": "bone37", "parent": "bone3", "length": 18.84, "rotation": -165.31, "x": 26.48, "y": -98.25, "color": "530db7ff" },
  45. { "name": "bone38", "parent": "bone37", "length": 18.91, "rotation": -140.99, "x": 24.91, "y": 0.33, "color": "530db7ff" },
  46. { "name": "bone39", "parent": "bone38", "length": 15.59, "rotation": -8.55, "x": 18.91, "color": "530db7ff" },
  47. { "name": "bone40", "parent": "bone3", "length": 28.24, "rotation": 156.69, "x": 23.77, "y": 80.28, "color": "460c62ff" },
  48. { "name": "bone41", "parent": "bone40", "length": 18.82, "rotation": 156.24, "x": 29.83, "y": 0.93, "color": "460c62ff" },
  49. { "name": "bone42", "parent": "bone41", "length": 10.67, "rotation": -1.12, "x": 18.82, "color": "460c62ff" },
  50. { "name": "bone43", "parent": "bone", "length": 17.07, "rotation": -128.16, "x": 37.73, "y": 69.17, "color": "2f1281ff" },
  51. { "name": "ziti", "parent": "root", "x": 257.96 },
  52. { "name": "bone44", "parent": "ziti", "x": -58.87, "y": 42.79 },
  53. { "name": "bone45", "parent": "ziti", "x": -23.07, "y": 43.56 },
  54. { "name": "bone46", "parent": "ziti", "x": 6.96, "y": 43.18 },
  55. { "name": "bone47", "parent": "ziti", "x": 41.61, "y": 43.18 },
  56. { "name": "bone48", "parent": "ziti", "x": 68.18, "y": 44.72 },
  57. { "name": "bone49", "parent": "bone43", "length": 11.6, "rotation": 23.79, "x": 17.07, "color": "2f1281ff" },
  58. { "name": "bone50", "parent": "bone49", "length": 10.82, "rotation": 15.09, "x": 11.86, "y": 0.07, "color": "2f1281ff" },
  59. { "name": "bone51", "parent": "bone59", "length": 3.74, "rotation": -76.06, "x": 10.3, "y": -5.92, "color": "4c2288ff" },
  60. { "name": "bone52", "parent": "bone51", "length": 3.66, "rotation": -4.58, "x": 3.74, "color": "4c2288ff" },
  61. { "name": "bone53", "parent": "bone52", "length": 2.81, "rotation": 4.14, "x": 3.66, "color": "4c2288ff" },
  62. { "name": "bone54", "parent": "bone53", "length": 2.49, "rotation": -5.7, "x": 2.9, "color": "4c2288ff" },
  63. { "name": "bone55", "parent": "bone59", "length": 5.85, "rotation": -94.11, "x": -10.62, "y": -0.52, "color": "1f8fbfff" },
  64. { "name": "bone56", "parent": "bone55", "length": 4.12, "rotation": -4.1, "x": 5.85, "color": "1f8fbfff" },
  65. { "name": "bone57", "parent": "bone56", "length": 4.62, "rotation": 0.89, "x": 4.12, "color": "1f8fbfff" },
  66. { "name": "bone58", "parent": "bone57", "length": 4, "rotation": -2.34, "x": 4.62, "color": "1f8fbfff" },
  67. { "name": "yanlei1", "parent": "bone21", "rotation": -91.26, "x": 0.83, "y": -0.5 },
  68. { "name": "yanlei2", "parent": "bone22", "rotation": -91.34, "x": 1.3, "y": -0.21 }
  69. ],
  70. "slots": [
  71. { "name": "toufa4", "bone": "bone43", "attachment": "toufa4" },
  72. { "name": "toufa3", "bone": "bone32", "attachment": "toufa3" },
  73. { "name": "toufa2", "bone": "bone25", "attachment": "toufa2" },
  74. { "name": "zuoshou", "bone": "bone7", "attachment": "zuoshou" },
  75. { "name": "teshuzuoshou2", "bone": "bone40" },
  76. { "name": "zuotui", "bone": "bone15", "attachment": "zuotui" },
  77. { "name": "youtui", "bone": "bone18", "attachment": "youtui" },
  78. { "name": "qunzi", "bone": "bone14", "attachment": "qunzi" },
  79. { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
  80. { "name": "xianglian", "bone": "bone3", "attachment": "xianglian" },
  81. { "name": "youshou", "bone": "bone4", "attachment": "youshou" },
  82. { "name": "teshuyoushou2", "bone": "bone37" },
  83. { "name": "teshuyoushou1", "bone": "bone37" },
  84. { "name": "teshuzuoshou1", "bone": "bone41" },
  85. { "name": "lian", "bone": "bone10", "attachment": "lian" },
  86. { "name": "zuiba", "bone": "bone13", "attachment": "zuiba" },
  87. { "name": "zuoyan", "bone": "bone22", "attachment": "zuoyan" },
  88. { "name": "youyan", "bone": "bone21", "attachment": "youyan" },
  89. { "name": "zuoyanzhu", "bone": "bone61", "attachment": "zuoyanzhu" },
  90. { "name": "youyanzhu", "bone": "bone60", "attachment": "youyanzhu" },
  91. { "name": "zuoyangaoguang", "bone": "bone24", "attachment": "zuoyangaoguang" },
  92. { "name": "youyangaoguang", "bone": "bone23", "attachment": "youyangaoguang" },
  93. { "name": "biyan", "bone": "bone11" },
  94. { "name": "meimao", "bone": "bone12", "attachment": "meimao" },
  95. { "name": "teshudongzuomeimao", "bone": "bone12" },
  96. { "name": "toufa", "bone": "bone10", "attachment": "toufa" },
  97. { "name": "erduo", "bone": "bone10", "attachment": "erduo" },
  98. { "name": "5", "bone": "bone48", "attachment": "5" },
  99. { "name": "4", "bone": "bone47", "attachment": "4" },
  100. { "name": "3", "bone": "bone46", "attachment": "3" },
  101. { "name": "2", "bone": "bone45", "attachment": "2" },
  102. { "name": "1", "bone": "bone44", "attachment": "1" },
  103. { "name": "yanlei0001", "bone": "yanlei1", "attachment": "yanlei0001" },
  104. { "name": "yanlei1", "bone": "yanlei2", "attachment": "yanlei0001" },
  105. { "name": "yanlei0002", "bone": "yanlei1", "attachment": "yanlei0002" },
  106. { "name": "yanlei2", "bone": "yanlei2", "attachment": "yanlei0002" }
  107. ],
  108. "skins": {
  109. "default": {
  110. "1": {
  111. "1": { "x": 0.64, "y": -0.29, "width": 34, "height": 31 }
  112. },
  113. "2": {
  114. "2": { "x": -1.67, "y": -1.06, "width": 33, "height": 33 }
  115. },
  116. "3": {
  117. "3": { "x": 1.3, "y": -0.18, "width": 33, "height": 32 }
  118. },
  119. "4": {
  120. "4": { "x": 0.65, "y": -0.18, "width": 33, "height": 30 }
  121. },
  122. "5": {
  123. "5": { "x": 1.59, "y": -0.72, "width": 20, "height": 28 }
  124. },
  125. "biyan": {
  126. "biyan": { "x": -0.27, "y": -1.83, "rotation": -90.29, "width": 51, "height": 8 }
  127. },
  128. "erduo": {
  129. "erduo": { "x": 27.97, "y": -37.26, "rotation": -90.29, "width": 19, "height": 24 }
  130. },
  131. "lian": {
  132. "lian": { "x": 42.15, "y": -1.83, "rotation": -90.29, "width": 72, "height": 92 }
  133. },
  134. "meimao": {
  135. "meimao": { "x": 2.1, "y": -3.03, "rotation": -90.29, "width": 58, "height": 10 }
  136. },
  137. "qunzi": {
  138. "qunzi": {
  139. "type": "mesh",
  140. "uvs": [ 1, 0.26654, 1, 0.43054, 1, 0.51604, 1, 0.61211, 1, 0.7264, 1, 0.79368, 1, 0.90133, 1, 1, 0.87444, 1, 0.6627, 1, 0.49771, 1, 0.34945, 1, 0.14645, 1, 0, 1, 0, 0.92568, 0, 0.83175, 0, 0.7419, 0, 0.64139, 0, 0.56254, 1.0E-5, 0.43357, 0, 0.26947, 0, 0, 0.2147, 0, 0.3757, 0, 0.49025, 0, 0.5962, 0, 0.76945, 0, 1, 0, 0.49228, 0.27229, 0.49357, 0.44498, 0.49501, 0.63817, 0.49634, 0.81679, 0.49572, 0.73298, 0.49441, 0.55789, 0.49705, 0.91231, 0.37202, 0.26875, 0.36297, 0.44577, 0.35686, 0.56322, 0.35127, 0.64135, 0.34955, 0.73865, 0.34949, 0.82108, 0.34982, 0.91812, 0.6176, 0.26476, 0.63642, 0.43684, 0.64367, 0.55364, 0.64368, 0.629, 0.65061, 0.72796, 0.65549, 0.80819, 0.66121, 0.90788, 0.78869, 0.26556, 0.81151, 0.43381, 0.82545, 0.53446, 0.83214, 0.62007, 0.84643, 0.72708, 0.85499, 0.79979, 0.8657, 0.90392, 0.19021, 0.2691, 0.18363, 0.44623, 0.17444, 0.56287, 0.17095, 0.64137, 0.16924, 0.74032, 0.16406, 0.82674, 0.15868, 0.92225 ],
  141. "triangles": [ 4, 53, 3, 54, 53, 4, 5, 54, 4, 55, 54, 5, 6, 55, 5, 48, 47, 54, 48, 54, 55, 48, 34, 31, 48, 31, 47, 9, 10, 34, 9, 48, 55, 9, 34, 48, 8, 55, 6, 9, 55, 8, 8, 6, 7, 46, 52, 53, 46, 32, 30, 47, 46, 53, 47, 53, 54, 47, 31, 32, 47, 32, 46, 30, 33, 45, 46, 45, 52, 46, 30, 45, 42, 25, 26, 49, 26, 27, 42, 26, 49, 49, 27, 0, 28, 25, 42, 50, 49, 0, 1, 50, 0, 43, 42, 49, 43, 49, 50, 43, 29, 28, 43, 28, 42, 51, 50, 1, 2, 51, 1, 44, 43, 50, 44, 50, 51, 44, 33, 29, 44, 29, 43, 51, 2, 3, 52, 51, 3, 44, 51, 52, 45, 44, 52, 33, 44, 45, 53, 52, 3, 16, 17, 60, 40, 39, 31, 61, 16, 60, 61, 60, 40, 15, 16, 61, 40, 31, 34, 41, 40, 34, 61, 40, 41, 62, 15, 61, 62, 61, 41, 14, 15, 62, 12, 13, 14, 62, 12, 14, 11, 62, 41, 12, 62, 11, 41, 34, 10, 11, 41, 10, 59, 58, 38, 17, 18, 59, 38, 30, 32, 39, 59, 38, 39, 38, 32, 60, 17, 59, 60, 59, 39, 39, 32, 31, 40, 60, 39, 58, 18, 19, 37, 57, 36, 58, 57, 37, 33, 37, 36, 37, 33, 30, 38, 58, 37, 38, 37, 30, 59, 18, 58, 35, 22, 23, 56, 21, 22, 56, 22, 35, 20, 21, 56, 28, 24, 25, 35, 23, 24, 28, 35, 24, 19, 20, 56, 36, 56, 35, 29, 36, 35, 29, 35, 28, 57, 19, 56, 57, 56, 36, 57, 58, 19, 33, 36, 29 ],
  142. "vertices": [ 5, 59, -2.3, 31.98, 1.0E-5, 55, -2.55, 12.11, 0.96258, 56, -7.24, 11.57, 0.02299, 57, -10.03, 12.33, 0.01434, 58, -14.09, 10.99, 8.0E-5, 4, 55, 1.91, 11.01, 0.8096, 56, -2.71, 10.83, 0.10483, 57, -5.57, 11.26, 0.0665, 58, -9.54, 10.36, 0.01907, 4, 55, 4.23, 10.43, 0.64892, 56, -0.34, 10.44, 0.16826, 57, -3.24, 10.7, 0.11994, 58, -7.17, 10.04, 0.06288, 4, 55, 6.84, 9.78, 0.42544, 56, 2.31, 10, 0.2096, 57, -0.62, 10.07, 0.19166, 58, -4.5, 9.67, 0.17331, 4, 55, 9.95, 9.01, 0.18891, 56, 5.47, 9.48, 0.16601, 57, 2.49, 9.32, 0.23017, 58, -1.33, 9.24, 0.41491, 4, 55, 11.77, 8.56, 0.09668, 56, 7.33, 9.17, 0.108, 57, 4.32, 8.88, 0.19679, 58, 0.53, 8.98, 0.59854, 4, 55, 14.7, 7.83, 0.01907, 56, 10.3, 8.68, 0.03193, 57, 7.25, 8.18, 0.09949, 58, 3.52, 8.57, 0.84951, 4, 55, 17.38, 7.17, 2.2E-4, 56, 13.03, 8.23, 0.00819, 57, 9.94, 7.53, 0.05541, 58, 6.26, 8.2, 0.93618, 7, 60, 10.7, 28.78, 0.01488, 61, 7.03, 28.67, 0.0225, 62, 1.24, 28.75, 0.06172, 55, 16.05, 1.81, 0.00957, 56, 12.13, 2.78, 0.01931, 57, 8.65, 2.16, 0.05719, 58, 5.5, 2.72, 0.81482, 7, 60, 12.03, 19.56, 0.03999, 61, 8.22, 19.43, 0.06046, 62, 2.8, 19.56, 0.1658, 55, 13.81, -7.24, 0.02533, 56, 10.61, -6.41, 0.03808, 57, 6.47, -6.9, 0.06019, 58, 4.24, -6.51, 0.61015, 7, 60, 13.07, 12.37, 0.08125, 61, 9.14, 12.23, 0.12286, 62, 4.02, 12.4, 0.33697, 55, 12.06, -14.28, 0.05157, 56, 9.43, -13.57, 0.07752, 57, 4.77, -13.95, 0.12254, 58, 3.25, -13.7, 0.20728, 7, 60, 14, 5.91, 0.03586, 61, 9.97, 5.76, 0.05403, 62, 5.12, 5.97, 0.70488, 55, 10.48, -20.61, 0.02289, 56, 8.37, -20.01, 0.03477, 57, 3.25, -20.3, 0.05492, 58, 2.37, -20.16, 0.09265, 7, 60, 15.27, -2.93, 0.0187, 61, 11.11, -3.1, 0.03792, 62, 6.62, -2.83, 0.85738, 55, 8.33, -29.28, 0.00959, 56, 6.92, -28.82, 0.01457, 57, 1.16, -28.98, 0.02302, 58, 1.15, -29.01, 0.03883, 3, 60, 16.19, -9.3, 0.00632, 61, 11.93, -9.49, 0.02629, 62, 7.7, -9.18, 0.96739, 4, 59, 19.27, -10.59, 7.0E-4, 60, 14.13, -9.6, 0.01599, 61, 9.87, -9.76, 0.04659, 62, 5.65, -9.53, 0.93671, 4, 59, 16.64, -10.77, 0.01039, 60, 11.53, -9.98, 0.05877, 61, 7.26, -10.09, 0.1213, 62, 3.05, -9.97, 0.80954, 4, 59, 14.13, -10.96, 0.0433, 60, 9.04, -10.34, 0.13414, 61, 4.76, -10.41, 0.20684, 62, 0.57, -10.4, 0.61572, 4, 59, 11.33, -11.16, 0.13049, 60, 6.26, -10.74, 0.23926, 61, 1.97, -10.77, 0.24588, 62, -2.2, -10.87, 0.38436, 4, 59, 9.12, -11.32, 0.24743, 60, 4.07, -11.05, 0.30101, 61, -0.22, -11.05, 0.21595, 62, -4.38, -11.24, 0.23562, 4, 59, 5.52, -11.57, 0.40845, 60, 0.5, -11.57, 0.3093, 61, -3.8, -11.51, 0.15503, 62, -7.94, -11.84, 0.12722, 4, 59, 0.94, -11.9, 0.80616, 60, -4.05, -12.23, 0.15006, 61, -8.36, -12.1, 0.03094, 62, -12.47, -12.62, 0.01283, 2, 59, -6.59, -12.45, 0.96424, 60, -11.52, -13.3, 0.03576, 3, 59, -7.26, -3.02, 0.8649, 60, -12.87, -3.95, 0.01546, 55, -18.12, -19.62, 0.11964, 3, 59, -7.77, 4.04, 0.79041, 60, -13.88, 3.06, 2.4E-4, 55, -16.41, -12.75, 0.20935, 3, 59, -8.13, 9.07, 0.59641, 60, -14.6, 8.05, 5.3E-4, 55, -15.2, -7.86, 0.40306, 3, 59, -8.47, 13.72, 0.39281, 60, -15.27, 12.66, 2.5E-4, 55, -14.07, -3.33, 0.60694, 3, 59, -9.02, 21.32, 0.22574, 60, -16.35, 20.21, 1.4E-4, 55, -12.24, 4.07, 0.77411, 2, 59, -9.74, 31.44, 0.00341, 55, -9.79, 13.91, 0.99659, 8, 59, -0.54, 9.71, 0.53081, 60, -7.07, 9.22, 0.04704, 61, -11.04, 9.4, 0.00266, 62, -16.02, 8.75, 6.4E-4, 55, -7.78, -9.61, 0.41449, 56, -10.71, -10.49, 0.00338, 57, -15.09, -9.43, 9.1E-4, 58, -16.97, -11.17, 8.0E-5, 8, 59, 4.28, 10.11, 0.35981, 60, -2.29, 9.97, 0.15487, 61, -6.25, 10.07, 0.03132, 62, -11.27, 9.62, 0.01616, 55, -3.07, -10.72, 0.38923, 56, -5.93, -11.22, 0.02891, 57, -10.38, -10.5, 0.01255, 58, -12.17, -11.77, 0.00714, 8, 59, 9.67, 10.56, 0.12012, 60, 3.06, 10.81, 0.20931, 61, -0.89, 10.82, 0.11739, 62, -5.95, 10.59, 0.09992, 55, 2.2, -11.96, 0.25514, 56, -0.58, -12.04, 0.0863, 57, -5.1, -11.7, 0.0581, 58, -6.8, -12.44, 0.05371, 8, 59, 14.66, 10.98, 0.01918, 60, 8, 11.58, 0.12768, 61, 4.06, 11.52, 0.14541, 62, -1.02, 11.48, 0.25019, 55, 7.06, -13.11, 0.10926, 56, 4.36, -12.8, 0.09414, 57, -0.23, -12.82, 0.10779, 58, -1.84, -13.06, 0.14635, 8, 59, 12.32, 10.78, 0.05098, 60, 5.68, 11.22, 0.17013, 61, 1.74, 11.19, 0.14578, 62, -3.33, 11.06, 0.17654, 55, 4.78, -12.57, 0.17074, 56, 2.04, -12.44, 0.09882, 57, -2.52, -12.29, 0.08769, 58, -4.17, -12.77, 0.09931, 8, 59, 7.43, 10.37, 0.20843, 60, 0.83, 10.46, 0.21147, 61, -3.12, 10.51, 0.07888, 62, -8.16, 10.18, 0.05295, 55, 0.01, -11.44, 0.3238, 56, -2.81, -11.7, 0.06294, 57, -7.3, -11.2, 0.03461, 58, -9.03, -12.16, 0.02691, 8, 59, 17.32, 11.2, 0.00347, 60, 10.64, 11.99, 0.09254, 61, 6.71, 11.89, 0.13043, 62, 1.61, 11.96, 0.31554, 55, 9.67, -13.72, 0.06513, 56, 7, -13.2, 0.0827, 57, 2.38, -13.41, 0.11963, 58, 0.82, -13.39, 0.19057, 8, 59, -0.26, 4.42, 0.77988, 60, -6.41, 3.97, 0.02225, 61, -10.46, 4.14, 0.00124, 62, -15.23, 3.52, 3.0E-4, 55, -9.15, -14.72, 0.19428, 56, -11.67, -15.7, 0.00158, 57, -16.43, -14.55, 4.3E-4, 58, -17.78, -16.4, 4.0E-5, 8, 59, 4.72, 4.38, 0.55177, 60, -1.45, 4.29, 0.2342, 61, -5.5, 4.37, 0.01389, 62, -10.28, 3.96, 0.00721, 55, -4.43, -16.3, 0.17151, 56, -6.85, -16.9, 0.01274, 57, -11.7, -16.09, 0.00553, 58, -12.93, -17.46, 0.00315, 8, 59, 8.02, 4.35, 0.08995, 60, 1.85, 4.49, 0.65969, 61, -2.2, 4.53, 0.03404, 62, -6.99, 4.24, 0.02287, 55, -1.31, -17.35, 0.13974, 56, -3.64, -17.7, 0.02716, 57, -8.56, -17.12, 0.01494, 58, -9.71, -18.18, 0.01161, 8, 59, 10.22, 4.26, 0.04993, 60, 4.05, 4.56, 0.09532, 61, 0, 4.56, 0.62451, 62, -4.8, 4.37, 0.04153, 55, 0.76, -18.12, 0.1062, 56, -1.53, -18.3, 0.03593, 57, -6.49, -17.87, 0.0242, 58, -7.57, -18.72, 0.02238, 8, 59, 12.94, 4.38, 0.02131, 60, 6.75, 4.87, 0.07205, 61, 2.71, 4.83, 0.64099, 62, -2.1, 4.75, 0.07379, 55, 3.38, -18.85, 0.0717, 56, 1.15, -18.81, 0.04152, 57, -3.86, -18.58, 0.03688, 58, -4.88, -19.16, 0.04178, 8, 59, 15.24, 4.54, 0.00815, 60, 9.04, 5.2, 0.05476, 61, 5, 5.12, 0.0618, 62, 0.18, 5.14, 0.67927, 55, 5.62, -19.41, 0.04673, 56, 3.43, -19.19, 0.04033, 57, -1.62, -19.13, 0.04622, 58, -2.6, -19.48, 0.06274, 8, 59, 17.95, 4.75, 0.00151, 60, 11.73, 5.6, 0.04052, 61, 7.7, 5.48, 0.05697, 62, 2.85, 5.61, 0.69894, 55, 8.26, -20.05, 0.02861, 56, 6.11, -19.62, 0.03654, 57, 1.03, -19.75, 0.05285, 58, 0.1, -19.83, 0.08405, 8, 59, -1.14, 15.19, 0.30153, 60, -8.06, 14.65, 0.02348, 61, -11.95, 14.84, 0.00122, 62, -17.16, 14.15, 2.9E-4, 55, -6.65, -4.2, 0.67147, 56, -10.02, -5.02, 0.00155, 57, -14.01, -4.02, 4.2E-4, 58, -16.43, -5.68, 4.0E-5, 8, 59, 3.6, 16.36, 0.16118, 60, -3.41, 16.16, 0.06778, 61, -7.28, 16.28, 0.01366, 62, -12.55, 15.78, 0.00704, 55, -1.78, -4.56, 0.72917, 56, -5.13, -4.99, 0.01259, 57, -9.13, -4.34, 0.00547, 58, -11.54, -5.51, 0.00311, 8, 59, 6.84, 16.91, 0.09238, 60, -0.22, 16.94, 0.09372, 61, -4.07, 17.01, 0.03496, 62, -9.38, 16.64, 0.02347, 55, 1.47, -5.04, 0.70026, 56, -1.86, -5.2, 0.0279, 57, -5.88, -4.79, 0.01539, 58, -8.26, -5.64, 0.01193, 8, 59, 8.95, 17.07, 0.05561, 60, 1.87, 17.24, 0.0969, 61, -1.98, 17.28, 0.05435, 62, -7.3, 16.99, 0.04626, 55, 3.52, -5.55, 0.11812, 56, 0.23, -5.55, 0.57676, 57, -3.83, -5.28, 0.02712, 58, -6.17, -5.92, 0.02488, 8, 59, 11.69, 17.57, 0.02372, 60, 4.57, 17.94, 0.07917, 61, 0.73, 17.93, 0.06784, 62, -4.62, 17.76, 0.08215, 55, 6.28, -5.92, 0.08006, 56, 3.01, -5.7, 0.21616, 57, -1.06, -5.63, 0.40457, 58, -3.38, -6, 0.04634, 8, 59, 13.91, 17.95, 0.00898, 60, 6.76, 18.48, 0.05978, 61, 2.93, 18.43, 0.06808, 62, -2.44, 18.35, 0.11713, 55, 8.52, -6.25, 0.05133, 56, 5.26, -5.85, 0.04452, 57, 1.17, -5.95, 0.55648, 58, -1.12, -6.09, 0.0937, 8, 59, 16.68, 18.4, 0.00165, 60, 9.49, 19.12, 0.04388, 61, 5.67, 19.04, 0.06185, 62, 0.27, 19.06, 0.14963, 55, 11.29, -6.68, 0.03091, 56, 8.06, -6.06, 0.03922, 57, 3.95, -6.36, 0.05673, 58, 1.67, -6.22, 0.61614, 8, 59, -1.66, 22.7, 0.16662, 60, -9.12, 22.11, 0.01298, 61, -12.89, 22.31, 6.8E-4, 62, -18.4, 21.58, 1.6E-4, 55, -4.82, 3.1, 0.80172, 56, -8.78, 2.41, 0.01114, 57, -12.23, 3.3, 0.00665, 58, -15.38, 1.78, 5.0E-5, 8, 59, 2.97, 24.04, 0.08356, 60, -4.6, 23.77, 0.03514, 61, -8.34, 23.91, 0.00708, 62, -13.92, 23.36, 0.00365, 55, 0, 2.94, 0.7679, 56, -3.97, 2.63, 0.05701, 57, -7.42, 3.17, 0.03486, 58, -10.58, 2.13, 0.0108, 8, 59, 5.73, 24.85, 0.04525, 60, -1.9, 24.78, 0.04591, 61, -5.62, 24.87, 0.01712, 62, -11.25, 24.43, 0.0115, 55, 2.88, 2.85, 0.67407, 56, -1.08, 2.78, 0.09951, 57, -4.53, 3.11, 0.06873, 58, -7.7, 2.36, 0.03792, 8, 59, 8.1, 25.32, 0.0262, 60, 0.43, 25.42, 0.04565, 61, -3.28, 25.47, 0.0256, 62, -8.93, 25.13, 0.02179, 55, 5.28, 2.56, 0.28066, 56, 1.33, 2.68, 0.38257, 57, -2.13, 2.84, 0.11415, 58, -5.29, 2.33, 0.10338, 8, 59, 11.05, 26.16, 0.01043, 60, 3.31, 26.47, 0.0348, 61, -0.39, 26.48, 0.02982, 62, -6.09, 26.25, 0.03611, 55, 8.34, 2.45, 0.14106, 56, 4.39, 2.81, 0.18805, 57, 0.93, 2.75, 0.30682, 58, -2.23, 2.54, 0.25291, 8, 59, 13.05, 26.68, 0.00378, 60, 5.27, 27.13, 0.02516, 61, 1.58, 27.11, 0.02866, 62, -4.14, 26.96, 0.04931, 55, 10.4, 2.33, 0.07759, 56, 6.46, 2.85, 0.08128, 57, 3, 2.64, 0.34819, 58, -0.17, 2.64, 0.38604, 8, 59, 15.92, 27.36, 6.5E-4, 60, 8.09, 28.01, 0.01739, 61, 4.41, 27.95, 0.02452, 62, -1.35, 27.92, 0.05931, 55, 13.35, 2.08, 0.02376, 56, 9.41, 2.84, 0.03482, 57, 5.94, 2.42, 0.08254, 58, 2.79, 2.71, 0.757, 8, 59, 0.33, -3.56, 0.79273, 60, -5.26, -3.94, 0.08471, 61, -9.43, -3.8, 0.01576, 62, -13.88, -4.37, 0.00642, 55, -11.07, -22.48, 0.09933, 56, -12.96, -23.59, 8.1E-4, 57, -18.28, -22.33, 2.2E-4, 58, -18.86, -24.32, 2.0E-5, 8, 59, 5.3, -3.49, 0.482, 60, -0.31, -3.52, 0.27076, 61, -4.48, -3.45, 0.0826, 62, -8.94, -3.82, 0.06563, 55, -6.32, -23.96, 0.08802, 56, -8.12, -24.69, 0.00654, 57, -13.53, -23.77, 0.00284, 58, -13.99, -25.28, 0.00162, 8, 59, 8.58, -3.66, 0.17045, 60, 2.98, -3.46, 0.47634, 61, -1.19, -3.44, 0.12703, 62, -5.66, -3.67, 0.13162, 55, -3.25, -25.14, 0.06831, 56, -4.96, -25.62, 0.01328, 57, -10.45, -24.93, 0.0073, 58, -10.81, -26.13, 0.00568, 8, 59, 10.79, -3.65, 0.09129, 60, 5.18, -3.29, 0.16921, 61, 1.01, -3.31, 0.43014, 62, -3.46, -3.45, 0.21752, 55, -1.15, -25.82, 0.05168, 56, -2.82, -26.13, 0.01749, 57, -8.35, -25.59, 0.01178, 58, -8.65, -26.58, 0.01089, 8, 59, 13.55, -3.53, 0.03265, 60, 7.93, -2.97, 0.10408, 61, 3.77, -3.03, 0.41704, 62, -0.72, -3.06, 0.35334, 55, 1.52, -26.56, 0.03471, 56, -0.09, -26.65, 0.0201, 57, -5.67, -26.31, 0.01785, 58, -5.91, -27.03, 0.02023, 8, 59, 15.98, -3.58, 0.00934, 60, 10.36, -2.85, 0.05689, 61, 6.2, -2.95, 0.09337, 62, 1.7, -2.88, 0.74838, 55, 3.81, -27.36, 0.02194, 56, 2.26, -27.27, 0.01893, 57, -3.37, -27.1, 0.0217, 58, -3.55, -27.58, 0.02945, 8, 59, 18.67, -3.63, 0.00107, 60, 13.04, -2.7, 0.02712, 61, 8.88, -2.84, 0.0513, 62, 4.38, -2.67, 0.82886, 55, 6.35, -28.24, 0.01298, 56, 4.86, -27.94, 0.01657, 57, -0.83, -27.95, 0.02397, 58, -0.93, -28.18, 0.03812 ],
  143. "hull": 28,
  144. "edges": [ 40, 42, 56, 48, 0, 54, 38, 40, 58, 56, 0, 2, 30, 32, 32, 34, 60, 64, 64, 62, 6, 8, 8, 10, 34, 36, 36, 38, 58, 66, 66, 60, 2, 4, 4, 6, 26, 28, 28, 30, 20, 68, 68, 62, 10, 12, 12, 14, 46, 48, 70, 56, 46, 70, 72, 58, 70, 72, 74, 66, 72, 74, 76, 60, 74, 76, 78, 64, 76, 78, 80, 62, 78, 80, 82, 68, 80, 82, 20, 22, 82, 22, 48, 50, 56, 84, 50, 84, 58, 86, 84, 86, 66, 88, 86, 88, 60, 90, 88, 90, 64, 92, 90, 92, 62, 94, 92, 94, 68, 96, 94, 96, 18, 20, 96, 18, 50, 52, 52, 54, 0, 98, 98, 84, 52, 98, 2, 100, 100, 86, 98, 100, 4, 102, 102, 88, 100, 102, 6, 104, 104, 90, 102, 104, 8, 106, 106, 92, 104, 106, 10, 108, 108, 94, 106, 108, 12, 110, 110, 96, 108, 110, 14, 16, 16, 18, 110, 16, 42, 44, 44, 46, 40, 112, 112, 70, 44, 112, 38, 114, 114, 72, 112, 114, 36, 116, 116, 74, 114, 116, 34, 118, 118, 76, 116, 118, 32, 120, 120, 78, 118, 120, 30, 122, 122, 80, 120, 122, 28, 124, 124, 82, 122, 124, 22, 24, 24, 26, 124, 24 ],
  145. "width": 44,
  146. "height": 28
  147. }
  148. },
  149. "shenti": {
  150. "shenti": {
  151. "type": "mesh",
  152. "uvs": [ 0.67151, 0.08655, 0.67428, 0.12066, 0.67766, 0.16216, 1, 0.18423, 0.95992, 0.53865, 0.94177, 0.69923, 0.96883, 0.78343, 0.99999, 0.87246, 1, 1, 0.47431, 1, 0, 1, 0, 0.89236, 0, 0.81143, 0.00264, 0.72866, 0.00103, 0.55265, 0, 0.43989, 0.18379, 0.18423, 0.33697, 0.16584, 0.33757, 0.12824, 0.33824, 0.08601, 0.33961, 0, 0.49543, 0, 0.66446, 0, 0.47666, 0.88873, 0.47864, 0.79481, 0.48323, 0.72307, 0.21813, 0.55843, 0.69615, 0.54556, 0.49274, 0.15952, 0.49336, 0.12268, 0.49398, 0.08596, 0.48602, 0.55776 ],
  153. "triangles": [ 26, 16, 17, 27, 28, 2, 27, 31, 28, 31, 17, 28, 4, 2, 3, 17, 18, 28, 2, 28, 1, 28, 29, 1, 28, 18, 29, 18, 19, 29, 29, 0, 1, 29, 30, 0, 29, 19, 30, 0, 30, 22, 30, 21, 22, 19, 20, 30, 30, 20, 21, 13, 14, 26, 25, 31, 27, 25, 26, 31, 5, 27, 4, 26, 15, 16, 26, 17, 31, 26, 14, 15, 27, 2, 4, 9, 23, 8, 23, 7, 8, 23, 9, 11, 9, 10, 11, 11, 12, 23, 23, 6, 7, 23, 24, 6, 23, 12, 24, 12, 13, 24, 24, 5, 6, 24, 25, 5, 24, 13, 25, 13, 26, 25, 25, 27, 5 ],
  154. "vertices": [ 1, 3, 32.38, -6.19, 1, 1, 3, 30.48, -6.36, 1, 1, 3, 28.16, -6.57, 1, 1, 3, 27.34, -19.18, 1, 2, 2, 23.78, -18.5, 0.19942, 3, 7.45, -18.27, 0.80058, 2, 2, 14.79, -17.79, 0.62655, 3, -1.56, -17.86, 0.37345, 2, 2, 10.07, -18.85, 0.83836, 3, -6.24, -19.07, 0.16164, 2, 2, 5.09, -20.07, 0.94919, 3, -11.18, -20.44, 0.05081, 2, 2, -2.06, -20.07, 0.99743, 3, -18.32, -20.68, 0.00257, 1, 2, -2.06, 0.44, 1, 2, 2, -2.06, 18.93, 0.99688, 3, -19.6, 18.3, 0.00312, 2, 2, 3.97, 18.93, 0.95823, 3, -13.58, 18.5, 0.04177, 2, 2, 8.5, 18.93, 0.86595, 3, -9.05, 18.65, 0.13405, 2, 2, 13.14, 18.83, 0.70185, 3, -4.41, 18.7, 0.29815, 2, 2, 22.99, 18.89, 0.25804, 3, 5.44, 19.08, 0.74196, 2, 2, 29.31, 18.93, 0.09598, 3, 11.75, 19.33, 0.90402, 1, 3, 26.29, 12.64, 1, 1, 3, 27.52, 6.7, 1, 1, 3, 29.62, 6.75, 1, 1, 3, 31.99, 6.8, 1, 1, 3, 36.8, 6.91, 1, 1, 3, 37, 0.83, 1, 1, 3, 37.22, -5.76, 1, 1, 2, 4.17, 0.34, 1, 1, 2, 9.43, 0.27, 1, 1, 2, 13.45, 0.09, 1, 2, 2, 22.67, 10.43, 0.2056, 3, 5.39, 10.61, 0.7944, 2, 2, 23.39, -8.22, 0.12996, 3, 6.73, -8, 0.87004, 1, 3, 28.07, 0.64, 1, 1, 3, 30.13, 0.69, 1, 1, 3, 32.19, 0.73, 1, 1, 3, 5.77, 0.17, 1 ],
  155. "hull": 23,
  156. "edges": [ 30, 32, 32, 34, 4, 6, 14, 16, 40, 42, 42, 44, 16, 18, 18, 20, 20, 22, 18, 46, 22, 46, 46, 14, 22, 24, 48, 46, 24, 48, 10, 12, 12, 14, 48, 12, 24, 26, 50, 48, 26, 50, 50, 10, 34, 56, 56, 4, 34, 36, 58, 56, 36, 58, 4, 2, 58, 2, 36, 38, 38, 40, 42, 60, 60, 58, 38, 60, 2, 0, 0, 44, 60, 0, 26, 28, 28, 30, 28, 52, 50, 62, 62, 56, 52, 62, 62, 54, 6, 8, 8, 10, 54, 8 ],
  157. "width": 39,
  158. "height": 56
  159. }
  160. },
  161. "teshudongzuomeimao": {
  162. "teshudongzuomeimao": { "x": 4.11, "y": -2.04, "rotation": -90.29, "width": 58, "height": 11 }
  163. },
  164. "teshuyoushou1": {
  165. "teshuyoushou1": {
  166. "type": "mesh",
  167. "uvs": [ 0.5969, 0.22091, 0.62479, 0.25045, 0.6559, 0.28341, 1, 0.64788, 1, 1, 0.75334, 1, 0.24711, 0.70311, 0.20717, 0.67968, 0.17448, 0.66051, 0, 0.55818, 0, 0, 0.38834, 0, 0.40834, 0.47818, 0.44228, 0.50812, 0.3833, 0.44887 ],
  168. "triangles": [ 14, 10, 11, 14, 11, 0, 14, 0, 1, 12, 14, 1, 9, 10, 14, 8, 9, 14, 7, 8, 14, 12, 1, 2, 13, 12, 2, 13, 2, 3, 12, 7, 14, 6, 7, 12, 6, 12, 13, 4, 5, 13, 6, 13, 5, 4, 13, 3 ],
  169. "vertices": [ 2, 41, 18.49, -10.53, 0.22363, 42, 1.15, -10.47, 0.77637, 2, 41, 17.19, -10.32, 0.32151, 42, -0.17, -10.46, 0.67849, 2, 41, 15.73, -10.08, 0.44201, 42, -1.64, -10.44, 0.55799, 2, 41, -0.36, -7.43, 0.99985, 42, -17.95, -10.21, 1.5E-4, 1, 41, -7.54, 1.7, 1, 1, 41, -1.34, 6.58, 1, 2, 41, 17.45, 8.9, 0.7904, 42, -2.76, 8.58, 0.2096, 2, 41, 18.94, 9.08, 0.66058, 42, -1.32, 8.98, 0.33942, 2, 41, 20.15, 9.23, 0.54421, 42, -0.15, 9.31, 0.45579, 2, 41, 26.63, 10.03, 0.14408, 42, 6.14, 11.06, 0.85592, 1, 42, 19.55, -1.56, 1, 1, 42, 11.04, -10.61, 1, 1, 41, 17.99, -0.13, 1, 2, 41, 16.52, -0.02, 0.99965, 42, -2.36, -0.38, 3.5E-4, 2, 41, 19.21, -0.39, 0.09812, 42, 0.36, -0.34, 0.90188 ],
  170. "hull": 12,
  171. "edges": [ 8, 6, 20, 22, 8, 10, 18, 20, 14, 24, 24, 2, 10, 12, 12, 14, 8, 26, 26, 24, 12, 26, 2, 4, 4, 6, 26, 4, 14, 16, 16, 18, 20, 28, 28, 24, 16, 28, 2, 0, 0, 22, 28, 0 ],
  172. "width": 32,
  173. "height": 33
  174. }
  175. },
  176. "teshuyoushou2": {
  177. "teshuyoushou2": {
  178. "type": "mesh",
  179. "uvs": [ 1, 0.81154, 1, 1, 0, 1, 0, 0, 0.56978, 0 ],
  180. "triangles": [ 2, 3, 4, 2, 4, 0, 2, 0, 1 ],
  181. "vertices": [ 19.26, 6.61, 24.04, 5.53, 20.71, -9.1, -4.64, -3.34, -2.74, 5 ],
  182. "hull": 5,
  183. "edges": [ 2, 4, 4, 6, 6, 8, 2, 0, 8, 0 ],
  184. "width": 15,
  185. "height": 26
  186. }
  187. },
  188. "teshuzuoshou1": {
  189. "teshuzuoshou1": {
  190. "type": "mesh",
  191. "uvs": [ 1, 0.46053, 0.32333, 1, 0, 1, 0, 0.55796, 0.60246, 0, 1, 0 ],
  192. "triangles": [ 4, 5, 0, 3, 4, 0, 1, 2, 3, 0, 1, 3 ],
  193. "vertices": [ 26.39, -9.47, 0.45, -8.35, -6.86, -1.98, 1.84, 8.02, 26.47, 8.78, 35.46, 0.95 ],
  194. "hull": 6,
  195. "edges": [ 2, 4, 0, 10, 2, 0, 4, 6, 8, 10, 6, 8 ],
  196. "width": 30,
  197. "height": 30
  198. }
  199. },
  200. "teshuzuoshou2": {
  201. "teshuzuoshou2": {
  202. "type": "mesh",
  203. "uvs": [ 1, 0.32286, 0.54029, 1, 0, 1, 0, 0.6552, 0.59559, 0, 1, 0 ],
  204. "triangles": [ 4, 5, 0, 3, 1, 2, 4, 1, 3, 4, 0, 1 ],
  205. "vertices": [ 6.1, 7.59, 27.79, 7.63, 32.39, -2.15, 23.34, -6.41, 1.07, -3.72, -2.37, 3.6 ],
  206. "hull": 6,
  207. "edges": [ 2, 4, 0, 10, 2, 0, 8, 10, 4, 6, 8, 6 ],
  208. "width": 20,
  209. "height": 29
  210. }
  211. },
  212. "toufa": {
  213. "toufa": {
  214. "type": "mesh",
  215. "uvs": [ 0.8692, 0.1349, 1, 0.35246, 1, 1, 0.76031, 1, 0.74983, 0.83701, 0.69958, 0.64912, 0.5844, 0.49337, 0.22212, 0.49584, 0.10275, 0.60957, 0.09857, 0.70351, 0.11113, 1, 0.06715, 1, 0, 0.76284, 0, 0.3574, 0.09438, 0.15962, 0.26191, 0, 0.69329, 0 ],
  216. "triangles": [ 6, 15, 16, 6, 16, 0, 6, 0, 1, 7, 14, 15, 7, 13, 14, 15, 6, 7, 8, 13, 7, 5, 6, 1, 8, 12, 13, 9, 12, 8, 4, 5, 1, 10, 11, 12, 10, 12, 9, 2, 3, 4, 2, 4, 1 ],
  217. "vertices": [ 84.25, -37.92, 68.53, -48.96, 21.91, -48.73, 22.01, -28.35, 33.75, -27.52, 47.3, -23.32, 58.56, -13.58, 58.54, 17.21, 50.4, 27.4, 43.64, 27.79, 22.29, 26.83, 22.31, 30.56, 39.41, 36.19, 68.6, 36.04, 82.8, 27.95, 94.22, 13.65, 94.04, -23.02 ],
  218. "hull": 17,
  219. "edges": [ 24, 22, 20, 22, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 4, 6, 8, 6, 32, 0, 4, 2, 0, 2, 24, 26, 26, 28, 30, 32, 28, 30 ],
  220. "width": 85,
  221. "height": 72
  222. }
  223. },
  224. "toufa2": {
  225. "toufa2": {
  226. "type": "mesh",
  227. "uvs": [ 1, 0.11168, 1, 0.2635, 1, 0.42044, 0.93156, 0.57707, 0.81573, 0.68015, 0.74842, 0.78823, 0.70349, 0.86056, 0.75311, 0.95097, 0.85687, 1, 0.7123, 1, 0.45538, 1, 0.27945, 0.95609, 0.12607, 0.88615, 0.10462, 0.82126, 0.09669, 0.71497, 0.12156, 0.62344, 0.16447, 0.53354, 0.19853, 0.43634, 0.23434, 0.36074, 0.15314, 0.27033, 0, 0.21915, 0, 0.11563, 0, 0, 0.73958, 0, 0.49126, 0.12245, 0.55442, 0.25551, 0.54444, 0.4777, 0.41006, 0.6001, 0.39464, 0.7115, 0.42811, 0.87645, 0.52735, 0.95663, 0.58268, 0.35822, 0.40957, 0.8055 ],
  228. "triangles": [ 12, 13, 32, 12, 32, 29, 11, 12, 29, 30, 29, 6, 11, 29, 30, 30, 6, 7, 10, 11, 30, 9, 30, 7, 10, 30, 9, 9, 7, 8, 32, 28, 5, 13, 28, 32, 6, 32, 5, 29, 32, 6, 15, 16, 27, 4, 27, 3, 28, 15, 27, 28, 27, 4, 14, 15, 28, 5, 28, 4, 13, 14, 28, 26, 17, 31, 26, 31, 2, 16, 17, 26, 3, 26, 2, 27, 16, 26, 27, 26, 3, 18, 19, 24, 18, 25, 31, 31, 1, 2, 17, 18, 31, 25, 24, 23, 25, 23, 0, 25, 0, 1, 31, 25, 1, 18, 24, 25, 24, 21, 22, 23, 24, 22, 19, 20, 21, 24, 19, 21 ],
  229. "vertices": [ 3, 28, 37.75, 5.38, 0.04754, 29, 0.84, 23.09, 0.8959, 30, -21.59, 18.38, 0.05656, 3, 29, 18.75, 20.77, 0.4856, 30, -3.65, 20.56, 0.47679, 31, -20.85, 19.44, 0.03761, 5, 29, 37.27, 18.36, 0.02151, 30, 14.89, 22.81, 0.48432, 31, -2.46, 22.71, 0.47524, 32, -20.14, 24.57, 0.01884, 33, -32.68, 32.13, 1.0E-4, 4, 30, 33.76, 22.01, 0.04373, 31, 16.43, 22.94, 0.60478, 32, -1.3, 23.14, 0.29704, 33, -14.58, 26.73, 0.05444, 4, 30, 46.57, 18.31, 1.2E-4, 31, 29.42, 19.96, 0.18173, 32, 11.38, 19.04, 0.49746, 33, -3.06, 20.01, 0.32069, 4, 31, 42.61, 19.23, 0.00856, 32, 24.46, 17.15, 0.14597, 33, 9.31, 15.39, 0.80712, 34, -0.18, 16.38, 0.03835, 3, 32, 33.21, 15.9, 0.01194, 33, 17.6, 12.3, 0.51382, 34, 6.89, 11.07, 0.47425, 2, 33, 28.55, 13.16, 0.02551, 34, 17.64, 8.79, 0.97449, 1, 34, 24.86, 10.73, 1, 2, 33, 34.11, 10.6, 2.0E-5, 34, 22.25, 4.77, 0.99998, 1, 34, 17.61, -5.82, 1, 1, 34, 9.64, -10.97, 1, 2, 33, 17.34, -13.86, 0.03718, 34, -0.75, -13.95, 0.96282, 3, 32, 30.93, -11.36, 0.01043, 33, 9.56, -13.85, 0.32843, 34, -8.21, -11.73, 0.66114, 3, 32, 18.36, -12.83, 0.4733, 33, -3.03, -12.61, 0.42995, 34, -19.94, -6.98, 0.09675, 4, 31, 28.24, -11.98, 0.05605, 32, 7.41, -12.68, 0.90102, 33, -13.69, -10.12, 0.04079, 34, -29.47, -1.58, 0.00215, 3, 30, 32.79, -12.89, 1.1E-4, 31, 17.37, -11.95, 0.64483, 32, -3.41, -11.7, 0.35506, 4, 28, 7.51, -37.97, 0.00109, 30, 21.12, -12.76, 0.16519, 31, 5.71, -12.47, 0.82828, 32, -15.07, -11.19, 0.00543, 3, 28, 7.83, -28.83, 0.03843, 30, 11.99, -12.25, 0.7219, 31, -3.43, -12.45, 0.23967, 4, 28, 2.69, -18.7, 0.36209, 29, 14.65, -17.13, 0.03727, 30, 1.76, -17.17, 0.59766, 31, -13.38, -17.93, 0.00297, 3, 28, -4.99, -13.65, 0.72028, 29, 7.72, -23.18, 0.01273, 30, -3.46, -24.75, 0.26699, 2, 28, -6.73, -1.45, 0.97902, 30, -15.69, -26.24, 0.02098, 2, 28, -8.68, 12.17, 0.99998, 30, -29.35, -27.9, 2.0E-5, 2, 28, 24.27, 16.88, 0.48178, 29, -13.85, 13.18, 0.51822, 2, 28, 15.27, 0.87, 0.66922, 29, -0.84, 0.23, 0.33078, 1, 29, 15.23, 1.01, 1, 4, 30, 24.13, 3.29, 0.0055, 31, 7.83, 3.72, 0.98961, 32, -11.54, 4.75, 0.00468, 33, -28.5, 10.94, 2.1E-4, 1, 32, 3.5, 0.01, 1, 3, 31, 36.41, 1.95, 1.6E-4, 32, 16.77, 0.49, 0.98068, 33, -1.75, 0.75, 0.01916, 1, 34, 3.65, -1.04, 1, 1, 34, 14.18, -0.78, 1, 3, 29, 27.51, 0.69, 1.0E-5, 30, 9.8, 3.28, 0.97653, 31, -6.47, 2.93, 0.02346, 1, 33, 9.43, 0, 1 ],
  230. "hull": 24,
  231. "edges": [ 40, 38, 38, 36, 32, 30, 30, 28, 24, 22, 22, 20, 44, 46, 46, 0, 0, 2, 2, 4, 4, 6, 6, 8, 12, 14, 14, 16, 40, 42, 42, 44, 42, 48, 48, 50, 52, 54, 54, 56, 58, 60, 16, 18, 18, 20, 60, 18, 38, 48, 48, 46, 36, 50, 50, 0, 32, 52, 52, 4, 32, 34, 34, 36, 50, 62, 62, 52, 34, 62, 62, 2, 30, 54, 54, 6, 28, 56, 56, 8, 24, 58, 58, 12, 22, 60, 60, 14, 24, 26, 26, 28, 56, 64, 64, 58, 26, 64, 8, 10, 10, 12, 64, 10 ],
  232. "width": 45,
  233. "height": 119
  234. }
  235. },
  236. "toufa3": {
  237. "toufa3": {
  238. "type": "mesh",
  239. "uvs": [ 1, 0.23673, 1, 0.3906, 0.95066, 0.47701, 0.89244, 0.57896, 0.73182, 0.68657, 0.61791, 0.76288, 0.56651, 0.83719, 0.54925, 0.91928, 0.64825, 1, 0.46807, 1, 0.34966, 1, 0.20899, 0.934, 0.10255, 0.85344, 0.05039, 0.77597, 0, 0.70113, 0, 0.60583, 0, 0.50276, 0, 0.40531, 0, 0.24574, 0, 0, 0.46292, 0, 1, 0, 0.60707, 0.23977, 0.56073, 0.39799, 0.48351, 0.59171, 0.40114, 0.76176, 0.38055, 0.92294, 0.43193, 0.69819, 0.39106, 0.84063, 0.52365, 0.49101 ],
  240. "triangles": [ 9, 7, 8, 10, 26, 9, 9, 26, 7, 10, 11, 26, 26, 11, 28, 26, 28, 7, 28, 11, 12, 7, 28, 6, 28, 12, 25, 28, 25, 6, 25, 12, 13, 6, 25, 5, 25, 13, 27, 27, 13, 14, 25, 27, 5, 5, 27, 4, 14, 15, 27, 27, 24, 4, 27, 15, 24, 4, 24, 3, 15, 16, 24, 24, 29, 3, 24, 16, 29, 3, 29, 2, 16, 17, 29, 29, 23, 2, 29, 17, 23, 2, 23, 1, 17, 18, 23, 23, 22, 1, 23, 18, 22, 22, 0, 1, 18, 20, 22, 18, 19, 20, 0, 22, 21, 22, 20, 21 ],
  241. "vertices": [ 2, 35, 15.63, 9.79, 0.61904, 36, -2.37, 9.52, 0.38096, 2, 36, 12.07, 10.21, 0.68791, 37, -2.54, 10.01, 0.31209, 2, 36, 20.25, 9.27, 0.11859, 37, 5.69, 9.87, 0.88141, 2, 37, 15.4, 9.7, 0.99896, 38, -2.93, 9.8, 0.00104, 2, 37, 26.04, 6.87, 0.24788, 38, 7.81, 7.41, 0.75212, 3, 37, 33.58, 4.87, 0.00621, 38, 15.43, 5.72, 0.95205, 39, 0.79, 5.84, 0.04174, 2, 38, 22.55, 5.65, 0.12937, 39, 7.84, 4.82, 0.87063, 1, 39, 15.57, 4.76, 1, 1, 39, 23.01, 7.83, 1, 1, 39, 23.26, 2.97, 1, 1, 39, 23.43, -0.22, 1, 1, 39, 17.44, -4.34, 1, 1, 39, 10.03, -7.61, 1, 2, 38, 19.47, -9.11, 0.00273, 39, 2.83, -9.4, 0.99727, 3, 37, 30.25, -12.48, 7.4E-4, 38, 12.81, -11.75, 0.27105, 39, -4.13, -11.13, 0.72821, 4, 36, 33.57, -15.8, 0.00209, 37, 21.39, -13.77, 0.13066, 38, 4.01, -13.41, 0.63523, 39, -13.07, -11.6, 0.23202, 5, 35, 32.77, -22.77, 0.00285, 36, 23.89, -16.26, 0.08213, 37, 11.8, -15.18, 0.54271, 38, -5.51, -15.2, 0.33774, 39, -22.75, -12.11, 0.03457, 5, 35, 23.93, -20.39, 0.06848, 36, 14.74, -16.69, 0.36451, 37, 2.74, -16.5, 0.48502, 38, -14.51, -16.9, 0.08065, 39, -31.89, -12.59, 0.00134, 4, 35, 9.44, -16.5, 0.62504, 36, -0.24, -17.41, 0.33213, 37, -12.1, -18.68, 0.04233, 38, -29.26, -19.68, 5.0E-4, 1, 35, -12.87, -10.51, 1, 1, 35, -9.62, 1.56, 1, 1, 35, -5.86, 15.57, 1, 2, 35, 13.15, -0.53, 0.98345, 36, -1.58, -1.06, 0.01655, 4, 35, 27.19, -5.59, 0.0023, 36, 13.33, -1.6, 0.56951, 37, -0.13, -1.62, 0.42661, 38, -17.99, -2.15, 0.00158, 2, 38, 0.29, -0.83, 0.99739, 39, -15.08, 1.37, 0.00261, 1, 39, 1, -0.01, 1, 1, 39, 16.16, 0.23, 1, 2, 38, 10.38, -0.34, 0.97779, 39, -5.02, 0.5, 0.02221, 2, 38, 23.74, 1.05, 0.00123, 39, 8.41, 0.11, 0.99877, 4, 36, 22.11, -2.19, 0.00255, 37, 8.66, -1.35, 0.98471, 38, -9.22, -1.51, 0.01244, 39, -24.59, 1.95, 2.9E-4 ],
  242. "hull": 22,
  243. "edges": [ 12, 14, 14, 16, 24, 22, 22, 20, 38, 40, 40, 42, 40, 44, 44, 46, 16, 18, 18, 20, 52, 18, 36, 38, 36, 44, 2, 0, 0, 42, 44, 0, 34, 36, 34, 46, 46, 2, 28, 30, 30, 48, 48, 6, 48, 54, 54, 50, 28, 54, 6, 8, 54, 8, 24, 26, 26, 28, 26, 50, 8, 10, 10, 12, 50, 10, 50, 56, 56, 52, 24, 56, 56, 12, 22, 52, 52, 14, 30, 32, 32, 34, 46, 58, 58, 48, 32, 58, 2, 4, 4, 6, 58, 4 ],
  244. "width": 27,
  245. "height": 94
  246. }
  247. },
  248. "toufa4": {
  249. "toufa4": {
  250. "type": "mesh",
  251. "uvs": [ 1, 0.15724, 0.86751, 0.25351, 0.67315, 0.39474, 0.49273, 0.56379, 0.38387, 0.71438, 0.34383, 0.87449, 0.31244, 1, 0.16244, 1, 0, 1, 0, 0.84338, 0, 0.64831, 0, 0.43224, 0.16601, 0.20188, 0.53744, 0, 1, 0, 0.44101, 0.29652, 0.18387, 0.66081, 0.28629, 0.48156, 0.17164, 0.85439, 0.71545, 0.14456 ],
  252. "triangles": [ 3, 15, 2, 17, 12, 15, 2, 19, 1, 2, 15, 19, 15, 13, 19, 15, 12, 13, 1, 19, 0, 19, 14, 0, 19, 13, 14, 4, 17, 3, 17, 16, 11, 16, 10, 11, 17, 15, 3, 11, 12, 17, 5, 6, 18, 6, 7, 18, 7, 8, 18, 8, 9, 18, 5, 18, 4, 18, 16, 4, 18, 9, 16, 9, 10, 16, 16, 17, 4 ],
  253. "vertices": [ 1, 46, 0.59, 5.44, 1, 2, 53, -8.28, 9.93, 2.5E-4, 46, 5.49, 5.75, 0.99975, 3, 54, -11, 10.61, 4.8E-4, 53, -1.52, 7.45, 0.18802, 46, 12.67, 6.2, 0.8115, 3, 54, -3.95, 6.74, 0.19766, 53, 6.3, 5.54, 0.74954, 46, 20.6, 7.61, 0.0528, 2, 54, 2.35, 4.37, 0.9932, 53, 12.99, 4.9, 0.0068, 1, 54, 9.06, 3.44, 1, 1, 54, 14.32, 2.72, 1, 1, 54, 14.28, -0.43, 1, 1, 54, 14.24, -3.84, 1, 1, 54, 7.66, -3.76, 1, 2, 54, -0.53, -3.66, 0.31702, 53, 12.3, -3.6, 0.68298, 2, 53, 3.51, -5.85, 0.93597, 46, 22.65, -3.94, 0.06403, 2, 53, -6.73, -4.87, 0.00457, 46, 12.88, -7.17, 0.99543, 1, 46, 1.4, -6.28, 1, 1, 46, -4.6, 1.36, 1, 1, 46, 12.44, -0.18, 1, 1, 54, 0.04, 0.2, 1, 3, 54, -7.46, 2.45, 0.00305, 53, 4.03, 0.49, 0.99096, 46, 20.56, 2.07, 0.00599, 1, 54, 8.17, -0.16, 1, 1, 46, 3.86, 0.41, 1 ],
  254. "hull": 15,
  255. "edges": [ 0, 28, 26, 28, 26, 24, 24, 22, 12, 14, 14, 16, 20, 22, 20, 32, 32, 8, 30, 34, 34, 32, 22, 34, 4, 6, 6, 8, 34, 6, 4, 30, 30, 24, 16, 18, 18, 20, 14, 36, 36, 32, 18, 36, 8, 10, 10, 12, 36, 10, 0, 2, 2, 4, 28, 38, 38, 30, 2, 38, 38, 26 ],
  256. "width": 21,
  257. "height": 42
  258. }
  259. },
  260. "xianglian": {
  261. "xianglian": { "x": 23.5, "y": 0.71, "rotation": -88.11, "width": 16, "height": 11 }
  262. },
  263. "yanlei0001": {
  264. "yanlei0001": { "width": 15, "height": 7 }
  265. },
  266. "yanlei0002": {
  267. "yanlei0002": { "width": 15, "height": 7 }
  268. },
  269. "yanlei1": {
  270. "yanlei0001": { "width": 15, "height": 7 }
  271. },
  272. "yanlei2": {
  273. "yanlei0002": { "width": 15, "height": 7 }
  274. },
  275. "youshou": {
  276. "youshou": {
  277. "type": "mesh",
  278. "uvs": [ 0.61494, 0.29474, 0.64402, 0.31744, 0.6658, 0.33444, 0.91442, 0.52852, 0.9547, 0.55997, 1, 0.59533, 1, 1, 0.58871, 1, 0.43659, 0.80513, 0.4069, 0.7671, 0.37193, 0.72231, 0.20172, 0.50427, 0.18162, 0.47852, 0.16575, 0.4582, 0, 0.24587, 0, 0, 0.23738, 0, 0.66307, 0.66307, 0.62908, 0.62908, 0.69657, 0.69657, 0.40327, 0.40327, 0.42406, 0.42406, 0.37526, 0.37526 ],
  279. "triangles": [ 7, 19, 6, 19, 5, 6, 7, 8, 19, 8, 17, 19, 8, 9, 17, 9, 18, 17, 19, 4, 5, 19, 17, 4, 17, 3, 4, 9, 10, 18, 10, 21, 18, 10, 11, 21, 17, 18, 3, 18, 2, 3, 18, 21, 2, 11, 20, 21, 11, 12, 20, 21, 1, 2, 21, 20, 1, 12, 22, 20, 12, 13, 22, 13, 14, 22, 20, 0, 1, 20, 22, 0, 22, 15, 16, 22, 16, 0, 22, 14, 15 ],
  280. "vertices": [ 2, 4, 17.61, 7.14, 0.71789, 5, -2.82, 7.08, 0.28211, 2, 4, 19.12, 7.34, 0.56388, 5, -1.31, 7.31, 0.43612, 2, 4, 20.25, 7.49, 0.44272, 5, -0.19, 7.49, 0.55728, 2, 5, 12.69, 9.47, 0.6997, 6, -2.42, 9.5, 0.3003, 2, 5, 14.77, 9.79, 0.53868, 6, -0.34, 9.79, 0.46132, 2, 5, 17.12, 10.15, 0.3894, 6, 2.01, 10.12, 0.6106, 1, 6, 21.85, 0.03, 1, 1, 6, 16.26, -10.97, 1, 2, 5, 20.01, -10.11, 0.14241, 6, 4.63, -10.18, 0.85759, 2, 5, 17.74, -9.99, 0.28712, 6, 2.37, -10.02, 0.71288, 2, 5, 15.06, -9.84, 0.51826, 6, -0.31, -9.84, 0.48174, 2, 4, 22.14, -9.17, 0.27859, 5, 2.05, -9.13, 0.72141, 2, 4, 20.61, -9.05, 0.42388, 5, 0.51, -9.05, 0.57612, 2, 4, 19.4, -8.96, 0.54786, 5, -0.7, -8.98, 0.45214, 1, 4, 6.74, -8.01, 1, 1, 4, -5.27, -1.79, 1, 1, 4, -1.99, 4.54, 1, 2, 5, 16, -0.57, 0.04764, 6, 0.75, -0.58, 0.95236, 2, 5, 13.87, -0.66, 0.97154, 6, -1.38, -0.64, 0.02846, 1, 6, 2.85, -0.52, 1, 2, 4, 19.99, -1.25, 0.68461, 5, -0.27, -1.25, 0.31539, 2, 4, 21.29, -1.22, 0.09724, 5, 1.03, -1.2, 0.90276, 1, 4, 18.24, -1.28, 1 ],
  281. "hull": 17,
  282. "edges": [ 30, 32, 12, 10, 28, 30, 12, 14, 18, 34, 10, 8, 34, 8, 18, 20, 36, 34, 20, 36, 8, 6, 36, 6, 14, 16, 16, 18, 12, 38, 38, 34, 16, 38, 38, 10, 24, 40, 40, 2, 20, 22, 22, 24, 36, 42, 42, 40, 22, 42, 2, 4, 4, 6, 42, 4, 24, 26, 26, 28, 30, 44, 44, 40, 26, 44, 2, 0, 0, 32, 44, 0 ],
  283. "width": 30,
  284. "height": 55
  285. }
  286. },
  287. "youtui": {
  288. "youtui": {
  289. "type": "mesh",
  290. "uvs": [ 0.99999, 0.45316, 0.99841, 0.47232, 1, 0.49885, 1, 0.78286, 0.99999, 0.80386, 0.99999, 0.8269, 1, 1, 0, 1, 0, 0.95957, 0, 0.8627, 0.3018, 0.80606, 0.29263, 0.78508, 0.2863, 0.7714, 0.18105, 0.52491, 0.16918, 0.50567, 0.15712, 0.47667, 0, 0.15836, 0, 0, 0.43298, 0, 1, 0, 0.69721, 0.81479, 0.58717, 0.48463, 0.69018, 0.79486, 0.68428, 0.77509, 0.59718, 0.50655, 0.57908, 0.46264 ],
  291. "triangles": [ 8, 9, 10, 8, 10, 20, 7, 8, 20, 7, 20, 6, 1, 21, 0, 24, 21, 1, 24, 1, 2, 12, 13, 24, 23, 24, 2, 12, 24, 23, 3, 23, 2, 11, 12, 23, 22, 23, 3, 11, 23, 22, 4, 22, 3, 10, 11, 22, 20, 22, 4, 10, 22, 20, 5, 20, 4, 20, 5, 6, 16, 17, 18, 19, 25, 18, 0, 25, 19, 15, 16, 18, 0, 21, 25, 25, 15, 18, 14, 15, 25, 14, 25, 21, 13, 14, 21, 13, 21, 24 ],
  292. "vertices": [ 2, 19, 24.81, 9.04, 0.28398, 20, -0.74, 8.74, 0.71602, 2, 19, 25.85, 8.86, 0.13532, 20, 0.3, 8.59, 0.86468, 2, 19, 27.3, 8.69, 0.04462, 20, 1.75, 8.46, 0.95538, 2, 20, 17.28, 6.77, 0.98442, 21, -7.51, -3.1, 0.01558, 2, 20, 18.43, 6.64, 0.92504, 21, -7.27, -1.97, 0.07496, 2, 20, 19.69, 6.5, 0.80329, 21, -7.01, -0.73, 0.19671, 2, 20, 29.15, 5.47, 0.01652, 21, -5.02, 8.58, 0.98348, 1, 21, 16.49, 4, 1, 1, 21, 16.03, 1.82, 1, 2, 20, 19.26, -15.58, 1.6E-4, 21, 14.92, -3.39, 0.99984, 3, 19, 41.92, -8.84, 0.00674, 20, 16.88, -8.64, 0.2834, 21, 7.78, -5.05, 0.70986, 3, 19, 40.75, -8.89, 0.02038, 20, 15.71, -8.71, 0.49346, 21, 7.73, -6.22, 0.48616, 3, 19, 39.99, -8.92, 0.04863, 20, 14.95, -8.77, 0.66042, 21, 7.71, -6.99, 0.29095, 3, 19, 26.24, -9.35, 0.71562, 20, 1.22, -9.6, 0.28184, 21, 7.15, -20.73, 0.00253, 3, 19, 25.16, -9.46, 0.86739, 20, 0.14, -9.75, 0.1324, 21, 7.19, -21.82, 2.1E-4, 2, 19, 23.54, -9.51, 0.96411, 20, -1.47, -9.84, 0.03589, 1, 19, 5.73, -10.53, 1, 1, 19, -2.9, -9.33, 1, 1, 19, -1.59, 0.11, 1, 1, 19, 0.12, 12.46, 1, 2, 20, 18.3, -0.04, 0.99267, 21, -0.63, -2.77, 0.00733, 2, 19, 25.28, -0.2, 0.82315, 20, -0.01, -0.48, 0.17685, 3, 19, 42.49, -0.3, 0, 20, 17.2, -0.08, 0.99508, 21, -0.71, -3.87, 0.00492, 3, 19, 41.39, -0.28, 5.0E-5, 20, 16.1, -0.09, 0.99844, 21, -0.81, -4.96, 0.00151, 2, 19, 26.5, -0.14, 0.06519, 20, 1.21, -0.39, 0.93481, 1, 19, 24.05, -0.21, 1 ],
  293. "hull": 20,
  294. "edges": [ 12, 14, 32, 34, 20, 18, 34, 36, 36, 38, 14, 16, 16, 18, 40, 16, 28, 42, 42, 2, 20, 40, 10, 12, 40, 10, 20, 22, 40, 44, 22, 44, 8, 10, 44, 8, 22, 24, 46, 44, 24, 46, 6, 8, 46, 6, 24, 26, 26, 28, 42, 48, 48, 46, 26, 48, 2, 4, 4, 6, 48, 4, 28, 30, 30, 32, 36, 50, 50, 42, 30, 50, 2, 0, 0, 38, 50, 0 ],
  295. "width": 22,
  296. "height": 55
  297. }
  298. },
  299. "youyan": {
  300. "youyan": { "x": 6.01, "y": -2.11, "rotation": -91.26, "width": 25, "height": 19 }
  301. },
  302. "youyangaoguang": {
  303. "youyangaoguang": { "x": -1.81, "y": -2.09, "rotation": -91.26, "width": 8, "height": 7 }
  304. },
  305. "youyanzhu": {
  306. "youyanzhu": { "x": 0.94, "y": -1.18, "rotation": -91.26, "width": 13, "height": 12 }
  307. },
  308. "zuiba": {
  309. "zuiba": { "x": -0.64, "y": -0.99, "rotation": -90.29, "width": 18, "height": 7 }
  310. },
  311. "zuoshou": {
  312. "zuoshou": {
  313. "type": "mesh",
  314. "uvs": [ 1, 0.20409, 0.79006, 0.51018, 0.76853, 0.54157, 0.75004, 0.56715, 0.62106, 0.74561, 0.60399, 0.76922, 0.58021, 0.80212, 0.44983, 1, 0.13669, 1, 0, 1, 0, 0.77731, 0.15648, 0.6309, 0.18096, 0.60249, 0.19857, 0.58205, 0.35578, 0.39963, 0.38102, 0.37034, 0.40449, 0.33834, 0.65264, 0, 1, 0, 0.56731, 0.42901, 0.38407, 0.70941, 0.40195, 0.68205, 0.42125, 0.65251, 0.58615, 0.41032, 0.54566, 0.46214 ],
  315. "triangles": [ 8, 20, 7, 7, 20, 6, 8, 11, 20, 11, 8, 10, 8, 9, 10, 20, 21, 6, 6, 21, 5, 21, 22, 5, 5, 22, 4, 22, 24, 4, 4, 24, 3, 11, 12, 20, 20, 12, 21, 12, 13, 21, 21, 13, 22, 13, 14, 22, 22, 14, 24, 24, 19, 3, 3, 19, 2, 14, 15, 24, 24, 15, 19, 15, 16, 19, 19, 23, 2, 2, 23, 1, 1, 23, 0, 19, 16, 23, 0, 23, 18, 23, 16, 17, 23, 17, 18 ],
  316. "vertices": [ 1, 7, 4.18, 8.7, 1, 2, 7, 22.44, 9.06, 0.50655, 8, 0.47, 9.06, 0.49345, 2, 7, 24.31, 9.1, 0.33667, 8, 2.34, 9.08, 0.66333, 2, 7, 25.85, 9.1, 0.21886, 8, 3.88, 9.07, 0.78114, 2, 8, 14.64, 8.99, 0.79817, 9, -3.15, 8.72, 0.20183, 2, 8, 16.06, 8.98, 0.68607, 9, -1.73, 8.85, 0.31393, 2, 8, 18.04, 8.96, 0.5019, 9, 0.24, 9.03, 0.4981, 2, 8, 29.76, 9.29, 0.00219, 9, 11.87, 10.55, 0.99781, 1, 9, 17.96, 0.7, 1, 1, 9, 20.62, -3.61, 1, 2, 8, 26.22, -10.93, 0.0193, 9, 10.39, -9.93, 0.9807, 2, 8, 16.58, -9.18, 0.53307, 9, 0.62, -9.16, 0.46693, 2, 8, 14.8, -9.03, 0.70182, 9, -1.16, -9.2, 0.29818, 2, 8, 13.52, -8.93, 0.80185, 9, -2.44, -9.22, 0.19815, 2, 7, 24.21, -7.99, 0.22937, 8, 2.12, -8, 0.77063, 2, 7, 22.38, -7.85, 0.39775, 8, 0.29, -7.85, 0.60225, 2, 7, 20.44, -7.84, 0.59523, 8, -1.64, -7.83, 0.40477, 1, 7, -0.01, -7.71, 1, 1, 7, -5.7, 3.81, 1, 2, 7, 22.16, -0.27, 0.37262, 8, 0.13, -0.27, 0.62738, 2, 8, 16.71, 0.25, 0.661, 9, -0.2, 0.23, 0.339, 2, 8, 15.09, 0.2, 0.9968, 9, -1.81, 0.02, 0.0032, 1, 8, 13.35, 0.14, 1, 1, 7, 20.95, -0.09, 1, 2, 7, 24.12, -0.19, 0.00262, 8, 2.09, -0.21, 0.99738 ],
  317. "hull": 19,
  318. "edges": [ 0, 36, 12, 14, 34, 36, 18, 20, 22, 20, 14, 16, 16, 18, 40, 16, 22, 40, 40, 12, 10, 12, 42, 40, 10, 42, 22, 24, 42, 24, 24, 26, 44, 42, 26, 44, 8, 10, 44, 8, 30, 38, 38, 4, 0, 2, 2, 4, 36, 46, 46, 38, 2, 46, 30, 32, 32, 34, 46, 32, 26, 28, 28, 30, 38, 48, 48, 44, 28, 48, 4, 6, 6, 8, 48, 6 ],
  319. "width": 37,
  320. "height": 54
  321. }
  322. },
  323. "zuotui": {
  324. "zuotui": {
  325. "type": "mesh",
  326. "uvs": [ 1, 0.1373, 0.94691, 0.43697, 0.94201, 0.45698, 0.93763, 0.48112, 0.87714, 0.81456, 0.87302, 0.83726, 0.87011, 0.85333, 0.8435, 1, 0, 1, 0, 0.96024, 0, 0.86263, 0.28303, 0.79503, 0.28517, 0.77806, 0.28772, 0.7578, 0.32491, 0.46258, 0.32738, 0.44299, 0.32975, 0.42419, 0.38318, 0, 0.71787, 0, 1, 0, 0.5569, 0.81955, 0.56032, 0.80217, 0.56385, 0.78418, 0.62933, 0.45081, 0.62547, 0.47046, 0.63338, 0.43017 ],
  327. "triangles": [ 9, 10, 11, 9, 11, 20, 8, 9, 20, 7, 20, 6, 8, 20, 7, 15, 16, 23, 23, 25, 2, 24, 15, 23, 14, 15, 24, 3, 23, 2, 24, 23, 3, 22, 14, 24, 13, 14, 22, 21, 13, 22, 12, 13, 21, 4, 24, 3, 22, 24, 4, 20, 12, 21, 11, 12, 20, 5, 22, 4, 21, 22, 5, 6, 21, 5, 20, 21, 6, 18, 19, 0, 25, 17, 18, 25, 18, 0, 16, 17, 25, 1, 25, 0, 23, 16, 25, 2, 25, 1 ],
  328. "vertices": [ 1, 16, 5.47, 8.3, 1, 2, 16, 22.01, 8.04, 0.53768, 17, -1.29, 7.9, 0.46232, 2, 16, 23.12, 7.98, 0.37403, 17, -0.18, 7.9, 0.62597, 2, 16, 24.45, 7.96, 0.24253, 17, 1.15, 7.94, 0.75747, 2, 17, 19.56, 8.46, 0.47261, 18, -9.08, -1.65, 0.52739, 2, 17, 20.81, 8.5, 0.34349, 18, -8.77, -0.43, 0.65651, 2, 17, 21.7, 8.53, 0.25528, 18, -8.55, 0.43, 0.74472, 1, 18, -6.55, 8.27, 1, 1, 18, 15.93, 4.63, 1, 1, 18, 15.58, 2.47, 1, 1, 18, 14.72, -2.83, 1, 2, 17, 20.37, -7.59, 0.34033, 18, 6.58, -5.28, 0.65967, 2, 17, 19.44, -7.64, 0.49967, 18, 6.37, -6.19, 0.50033, 2, 17, 18.32, -7.71, 0.64343, 18, 6.13, -7.28, 0.35657, 2, 16, 24.61, -8.61, 0.46937, 17, 2.08, -8.61, 0.53063, 2, 16, 23.53, -8.62, 0.5762, 17, 1, -8.67, 0.4238, 2, 16, 22.49, -8.63, 0.67666, 17, -0.03, -8.73, 0.32334, 1, 16, -0.88, -8.85, 1, 1, 16, -1.52, 0.17, 1, 1, 16, -2.06, 7.77, 1, 2, 17, 20.84, -0.09, 0.99604, 18, -0.5, -2.76, 0.00396, 1, 17, 19.88, -0.11, 1, 2, 17, 18.89, -0.13, 0.99976, 18, -1, -4.65, 2.4E-4, 2, 16, 23.38, -0.46, 0.08648, 17, 0.47, -0.53, 0.91352, 2, 16, 24.47, -0.49, 0.018, 17, 1.56, -0.5, 0.982, 2, 16, 22.24, -0.43, 0.79765, 17, -0.67, -0.55, 0.20235 ],
  329. "hull": 20,
  330. "edges": [ 22, 20, 0, 38, 14, 16, 34, 36, 36, 38, 16, 18, 18, 20, 40, 18, 22, 40, 12, 14, 40, 12, 22, 24, 42, 40, 24, 42, 10, 12, 42, 10, 24, 26, 44, 42, 26, 44, 8, 10, 44, 8, 30, 46, 46, 4, 26, 28, 28, 30, 44, 48, 48, 46, 28, 48, 4, 6, 6, 8, 48, 6, 30, 32, 32, 34, 36, 50, 50, 46, 32, 50, 0, 2, 2, 4, 50, 2 ],
  331. "width": 27,
  332. "height": 55
  333. }
  334. },
  335. "zuoyan": {
  336. "zuoyan": { "x": 5.51, "y": 0.28, "rotation": -91.34, "width": 22, "height": 18 }
  337. },
  338. "zuoyangaoguang": {
  339. "zuoyangaoguang": { "x": -2.14, "y": -2.03, "rotation": -91.34, "width": 7, "height": 7 }
  340. },
  341. "zuoyanzhu": {
  342. "zuoyanzhu": { "x": 0.47, "y": -1.32, "rotation": -91.34, "width": 12, "height": 11 }
  343. }
  344. }
  345. },
  346. "animations": {
  347. "stand1": {
  348. "slots": {
  349. "1": {
  350. "color": [
  351. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  352. { "time": 0.4667, "color": "ffffff00" },
  353. { "time": 0.6667, "color": "ffffffff" }
  354. ]
  355. },
  356. "2": {
  357. "color": [
  358. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  359. { "time": 0.6667, "color": "ffffff00" },
  360. { "time": 0.8333, "color": "ffffffff" }
  361. ]
  362. },
  363. "3": {
  364. "color": [
  365. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  366. { "time": 0.8333, "color": "ffffff00" },
  367. { "time": 1, "color": "ffffffff" }
  368. ]
  369. },
  370. "4": {
  371. "color": [
  372. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  373. { "time": 1, "color": "ffffff00" },
  374. { "time": 1.1333, "color": "ffffffff" }
  375. ]
  376. },
  377. "5": {
  378. "color": [
  379. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  380. { "time": 1.1333, "color": "ffffff00" },
  381. { "time": 1.3333, "color": "ffffffff" }
  382. ]
  383. },
  384. "biyan": {
  385. "attachment": [
  386. { "time": 0.0667, "name": "biyan" },
  387. { "time": 0.1667, "name": null }
  388. ]
  389. },
  390. "meimao": {
  391. "attachment": [
  392. { "time": 0, "name": null },
  393. { "time": 0.0667, "name": null }
  394. ]
  395. },
  396. "teshudongzuomeimao": {
  397. "attachment": [
  398. { "time": 0, "name": "teshudongzuomeimao" },
  399. { "time": 0.0667, "name": "teshudongzuomeimao" }
  400. ]
  401. },
  402. "teshuyoushou1": {
  403. "attachment": [
  404. { "time": 0.2333, "name": "teshuyoushou1" }
  405. ]
  406. },
  407. "teshuyoushou2": {
  408. "attachment": [
  409. { "time": 0.2333, "name": "teshuyoushou2" }
  410. ]
  411. },
  412. "teshuzuoshou1": {
  413. "attachment": [
  414. { "time": 0.2333, "name": "teshuzuoshou1" }
  415. ]
  416. },
  417. "teshuzuoshou2": {
  418. "attachment": [
  419. { "time": 0.2333, "name": "teshuzuoshou2" }
  420. ]
  421. },
  422. "yanlei0001": {
  423. "color": [
  424. { "time": 0.1667, "color": "ffffff00" },
  425. { "time": 0.9, "color": "ffffffff" },
  426. { "time": 1.2667, "color": "ffffff00" },
  427. { "time": 1.8333, "color": "ffffffff" },
  428. { "time": 2.2, "color": "ffffff00" },
  429. { "time": 2.7333, "color": "ffffffff" },
  430. { "time": 3.1, "color": "ffffff00" },
  431. { "time": 3.6667, "color": "ffffffff" }
  432. ],
  433. "attachment": [
  434. { "time": 0, "name": null },
  435. { "time": 0.4333, "name": "yanlei0001" }
  436. ]
  437. },
  438. "yanlei1": {
  439. "color": [
  440. { "time": 0.1667, "color": "ffffff00" },
  441. { "time": 0.9, "color": "ffffffff" },
  442. { "time": 1.2667, "color": "ffffff00" },
  443. { "time": 1.8333, "color": "ffffffff" },
  444. { "time": 2.2, "color": "ffffff00" },
  445. { "time": 2.7333, "color": "ffffffff" },
  446. { "time": 3.1, "color": "ffffff00" },
  447. { "time": 3.6667, "color": "ffffffff" }
  448. ],
  449. "attachment": [
  450. { "time": 0, "name": null },
  451. { "time": 0.4333, "name": "yanlei0001" }
  452. ]
  453. },
  454. "yanlei0002": {
  455. "color": [
  456. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  457. { "time": 0.9, "color": "ffffff00" },
  458. { "time": 1.2667, "color": "ffffffc4" },
  459. { "time": 1.8333, "color": "ffffff00" },
  460. { "time": 2.2, "color": "ffffffc4" },
  461. { "time": 2.7333, "color": "ffffff00" },
  462. { "time": 3.1, "color": "ffffffc4" },
  463. { "time": 3.6667, "color": "ffffff00" }
  464. ],
  465. "attachment": [
  466. { "time": 0, "name": null },
  467. { "time": 0.4333, "name": "yanlei0002" }
  468. ]
  469. },
  470. "yanlei2": {
  471. "color": [
  472. { "time": 0.9, "color": "ffffff00" },
  473. { "time": 1.2667, "color": "ffffffba" },
  474. { "time": 1.8333, "color": "ffffff00" },
  475. { "time": 2.2, "color": "ffffffba" },
  476. { "time": 2.7333, "color": "ffffff00" },
  477. { "time": 3.1, "color": "ffffffba" },
  478. { "time": 3.6667, "color": "ffffff00" }
  479. ],
  480. "attachment": [
  481. { "time": 0, "name": null },
  482. { "time": 0.9, "name": "yanlei0002" },
  483. { "time": 1.8333, "name": "yanlei0002" },
  484. { "time": 2.7333, "name": "yanlei0002" },
  485. { "time": 3.6667, "name": "yanlei0002" }
  486. ]
  487. },
  488. "youshou": {
  489. "attachment": [
  490. { "time": 0.2333, "name": null },
  491. { "time": 0.3333, "name": null }
  492. ]
  493. },
  494. "youyan": {
  495. "attachment": [
  496. { "time": 0.0667, "name": null },
  497. { "time": 0.1667, "name": "youyan" }
  498. ]
  499. },
  500. "youyangaoguang": {
  501. "attachment": [
  502. { "time": 0.0667, "name": null },
  503. { "time": 0.1667, "name": "youyangaoguang" }
  504. ]
  505. },
  506. "zuoshou": {
  507. "attachment": [
  508. { "time": 0.2333, "name": null },
  509. { "time": 0.3333, "name": null }
  510. ]
  511. },
  512. "zuoyan": {
  513. "attachment": [
  514. { "time": 0.0667, "name": null },
  515. { "time": 0.1667, "name": "zuoyan" }
  516. ]
  517. },
  518. "zuoyangaoguang": {
  519. "attachment": [
  520. { "time": 0.0667, "name": null },
  521. { "time": 0.1667, "name": "zuoyangaoguang" }
  522. ]
  523. }
  524. },
  525. "bones": {
  526. "root": {
  527. "rotate": [
  528. { "time": 0, "angle": 0 }
  529. ],
  530. "translate": [
  531. { "time": 0, "x": 0, "y": 0 }
  532. ],
  533. "scale": [
  534. { "time": 0, "x": 0.65, "y": 0.65 }
  535. ]
  536. },
  537. "bone": {
  538. "rotate": [
  539. { "time": 0, "angle": 0, "curve": "stepped" },
  540. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  541. { "time": 0.3333, "angle": 0 }
  542. ],
  543. "translate": [
  544. { "time": 0, "x": 0, "y": 0 },
  545. { "time": 0.1667, "x": 0, "y": -1.18 },
  546. { "time": 0.3333, "x": 1.75, "y": 0 }
  547. ],
  548. "scale": [
  549. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  550. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  551. { "time": 0.3333, "x": 1, "y": 1 }
  552. ]
  553. },
  554. "bone2": {
  555. "rotate": [
  556. { "time": 0, "angle": 0, "curve": "stepped" },
  557. { "time": 0.1667, "angle": 0 },
  558. { "time": 0.3333, "angle": -1.16 }
  559. ],
  560. "translate": [
  561. { "time": 0, "x": 0, "y": 0 },
  562. { "time": 0.1667, "x": 0, "y": -1.01 },
  563. { "time": 0.3333, "x": 0, "y": 0 }
  564. ],
  565. "scale": [
  566. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  567. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  568. { "time": 0.3333, "x": 1, "y": 1 }
  569. ]
  570. },
  571. "bone3": {
  572. "rotate": [
  573. { "time": 0, "angle": 0, "curve": "stepped" },
  574. { "time": 0.1667, "angle": 0 },
  575. { "time": 0.3333, "angle": 1.47 }
  576. ],
  577. "translate": [
  578. { "time": 0, "x": 0, "y": 0 },
  579. { "time": 0.1667, "x": -1.01, "y": 0 },
  580. { "time": 0.3333, "x": 0, "y": 0 }
  581. ],
  582. "scale": [
  583. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  584. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  585. { "time": 0.3333, "x": 1, "y": 1 }
  586. ]
  587. },
  588. "bone4": {
  589. "rotate": [
  590. { "time": 0, "angle": 1.78 },
  591. { "time": 0.1667, "angle": -5.88 },
  592. { "time": 0.3333, "angle": -5.17 }
  593. ],
  594. "translate": [
  595. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  596. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  597. { "time": 0.3333, "x": 0, "y": 0 }
  598. ],
  599. "scale": [
  600. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  601. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  602. { "time": 0.3333, "x": 1, "y": 1 }
  603. ]
  604. },
  605. "bone5": {
  606. "rotate": [
  607. { "time": 0, "angle": -10.24 },
  608. { "time": 0.1667, "angle": -8.01 },
  609. { "time": 0.3333, "angle": -114.91 }
  610. ],
  611. "translate": [
  612. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  613. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  614. { "time": 0.3333, "x": 0, "y": 0 }
  615. ],
  616. "scale": [
  617. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  618. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  619. { "time": 0.3333, "x": 1, "y": 1 }
  620. ]
  621. },
  622. "bone6": {
  623. "rotate": [
  624. { "time": 0, "angle": 0, "curve": "stepped" },
  625. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  626. { "time": 0.3333, "angle": 0 }
  627. ],
  628. "translate": [
  629. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  630. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  631. { "time": 0.3333, "x": 0, "y": 0 }
  632. ],
  633. "scale": [
  634. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  635. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  636. { "time": 0.3333, "x": 1, "y": 1 }
  637. ]
  638. },
  639. "bone7": {
  640. "rotate": [
  641. { "time": 0, "angle": 0.37 },
  642. { "time": 0.1667, "angle": 8.12 },
  643. { "time": 0.2333, "angle": -7.03 },
  644. { "time": 0.3333, "angle": 0 }
  645. ],
  646. "translate": [
  647. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  648. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  649. { "time": 0.3333, "x": 0, "y": 0 }
  650. ],
  651. "scale": [
  652. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  653. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  654. { "time": 0.3333, "x": 1, "y": 1 }
  655. ]
  656. },
  657. "bone8": {
  658. "rotate": [
  659. { "time": 0, "angle": -9.78 },
  660. { "time": 0.1667, "angle": 8.34 },
  661. { "time": 0.3333, "angle": 100.53 }
  662. ],
  663. "translate": [
  664. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  665. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  666. { "time": 0.3333, "x": 0, "y": 0 }
  667. ],
  668. "scale": [
  669. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  670. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  671. { "time": 0.3333, "x": 1, "y": 1 }
  672. ]
  673. },
  674. "bone9": {
  675. "rotate": [
  676. { "time": 0, "angle": 0, "curve": "stepped" },
  677. { "time": 0.1667, "angle": 0 },
  678. { "time": 0.3333, "angle": 69.29 }
  679. ],
  680. "translate": [
  681. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  682. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  683. { "time": 0.3333, "x": 0, "y": 0 }
  684. ],
  685. "scale": [
  686. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  687. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  688. { "time": 0.3333, "x": 1, "y": 1 }
  689. ]
  690. },
  691. "bone10": {
  692. "rotate": [
  693. { "time": 0, "angle": 0, "curve": "stepped" },
  694. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  695. { "time": 0.3333, "angle": 0 }
  696. ],
  697. "translate": [
  698. { "time": 0, "x": 0, "y": 0 },
  699. { "time": 0.1667, "x": -0.24, "y": -0.26 },
  700. { "time": 0.3333, "x": 0, "y": 0 }
  701. ],
  702. "scale": [
  703. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  704. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  705. { "time": 0.3333, "x": 1, "y": 1 }
  706. ]
  707. },
  708. "bone11": {
  709. "rotate": [
  710. { "time": 0, "angle": 0, "curve": "stepped" },
  711. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  712. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  713. { "time": 0.2667, "angle": 0 }
  714. ],
  715. "translate": [
  716. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  717. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  718. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  719. { "time": 0.2667, "x": 0, "y": 0 }
  720. ],
  721. "scale": [
  722. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  723. { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
  724. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  725. { "time": 0.2667, "x": 1, "y": 1 }
  726. ]
  727. },
  728. "bone12": {
  729. "rotate": [
  730. { "time": 0, "angle": 0, "curve": "stepped" },
  731. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  732. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  733. { "time": 0.2667, "angle": 0 }
  734. ],
  735. "translate": [
  736. { "time": 0, "x": 0, "y": 0 },
  737. { "time": 0.0667, "x": -0.65, "y": 0, "curve": "stepped" },
  738. { "time": 0.1667, "x": -0.65, "y": 0 },
  739. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  740. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  741. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  742. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  743. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  744. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  745. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  746. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  747. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  748. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  749. { "time": 3.4, "x": 0, "y": 0 }
  750. ],
  751. "scale": [
  752. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  753. { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
  754. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  755. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  756. { "time": 0.5, "x": 1, "y": 1 },
  757. { "time": 0.7667, "x": 1, "y": 0.96 },
  758. { "time": 1.2333, "x": 1, "y": 1 },
  759. { "time": 1.4667, "x": 1, "y": 0.96 },
  760. { "time": 1.9667, "x": 1, "y": 1 },
  761. { "time": 2.2, "x": 1, "y": 0.96 },
  762. { "time": 2.6667, "x": 1, "y": 1 },
  763. { "time": 2.9333, "x": 1, "y": 0.96 },
  764. { "time": 3.4, "x": 1, "y": 1 },
  765. { "time": 3.6667, "x": 1, "y": 0.96 }
  766. ]
  767. },
  768. "bone13": {
  769. "rotate": [
  770. { "time": 0, "angle": 0, "curve": "stepped" },
  771. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  772. { "time": 0.3333, "angle": 0 }
  773. ],
  774. "translate": [
  775. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  776. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  777. { "time": 0.3333, "x": 0, "y": 0 }
  778. ],
  779. "scale": [
  780. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  781. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  782. { "time": 0.3333, "x": 1, "y": 1 }
  783. ]
  784. },
  785. "bone14": {
  786. "rotate": [
  787. { "time": 0, "angle": 0, "curve": "stepped" },
  788. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  789. { "time": 0.3333, "angle": 0 }
  790. ],
  791. "translate": [
  792. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  793. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  794. { "time": 0.3333, "x": 0, "y": 0 }
  795. ],
  796. "scale": [
  797. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  798. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  799. { "time": 0.3333, "x": 1, "y": 1 }
  800. ]
  801. },
  802. "bone15": {
  803. "rotate": [
  804. { "time": 0, "angle": 0 },
  805. { "time": 0.1667, "angle": -4.03 },
  806. { "time": 0.3333, "angle": 0 }
  807. ],
  808. "translate": [
  809. { "time": 0, "x": 0, "y": 0 },
  810. { "time": 0.1667, "x": -0.2, "y": 0.8 },
  811. { "time": 0.3333, "x": 0, "y": 0 }
  812. ],
  813. "scale": [
  814. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  815. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  816. { "time": 0.3333, "x": 1, "y": 1 }
  817. ]
  818. },
  819. "bone16": {
  820. "rotate": [
  821. { "time": 0, "angle": 0 },
  822. { "time": 0.1667, "angle": 10.51 },
  823. { "time": 0.3333, "angle": 0 }
  824. ],
  825. "translate": [
  826. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  827. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  828. { "time": 0.3333, "x": 0, "y": 0 }
  829. ],
  830. "scale": [
  831. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  832. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  833. { "time": 0.3333, "x": 1, "y": 1 }
  834. ]
  835. },
  836. "bone17": {
  837. "rotate": [
  838. { "time": 0, "angle": 0, "curve": "stepped" },
  839. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  840. { "time": 0.3333, "angle": 0 }
  841. ],
  842. "translate": [
  843. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  844. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  845. { "time": 0.3333, "x": 0, "y": 0 }
  846. ],
  847. "scale": [
  848. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  849. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  850. { "time": 0.3333, "x": 1, "y": 1 }
  851. ]
  852. },
  853. "bone18": {
  854. "rotate": [
  855. { "time": 0, "angle": 0 },
  856. { "time": 0.1667, "angle": -4.47 },
  857. { "time": 0.3333, "angle": -1.06 }
  858. ],
  859. "translate": [
  860. { "time": 0, "x": 0, "y": 0 },
  861. { "time": 0.1667, "x": 0.88, "y": 1.25 },
  862. { "time": 0.3333, "x": 0, "y": 0 }
  863. ],
  864. "scale": [
  865. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  866. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  867. { "time": 0.3333, "x": 1, "y": 1 }
  868. ]
  869. },
  870. "bone19": {
  871. "rotate": [
  872. { "time": 0, "angle": 0 },
  873. { "time": 0.1667, "angle": 5.06 },
  874. { "time": 0.3333, "angle": 0 }
  875. ],
  876. "translate": [
  877. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  878. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  879. { "time": 0.3333, "x": 0, "y": 0 }
  880. ],
  881. "scale": [
  882. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  883. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  884. { "time": 0.3333, "x": 1, "y": 1 }
  885. ]
  886. },
  887. "bone20": {
  888. "rotate": [
  889. { "time": 0, "angle": 0, "curve": "stepped" },
  890. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  891. { "time": 0.3333, "angle": 0 }
  892. ],
  893. "translate": [
  894. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  895. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  896. { "time": 0.3333, "x": 0, "y": 0 }
  897. ],
  898. "scale": [
  899. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  900. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  901. { "time": 0.3333, "x": 1, "y": 1 }
  902. ]
  903. },
  904. "bone21": {
  905. "rotate": [
  906. { "time": 0, "angle": 0, "curve": "stepped" },
  907. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  908. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  909. { "time": 0.2667, "angle": 0 }
  910. ],
  911. "translate": [
  912. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  913. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  914. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  915. { "time": 0.2667, "x": 0, "y": 0 }
  916. ],
  917. "scale": [
  918. { "time": 0, "x": 1, "y": 1 },
  919. { "time": 0.0667, "x": 0.395, "y": 1, "curve": "stepped" },
  920. { "time": 0.1667, "x": 0.395, "y": 1 },
  921. { "time": 0.2667, "x": 1, "y": 1 }
  922. ]
  923. },
  924. "bone22": {
  925. "rotate": [
  926. { "time": 0, "angle": 0, "curve": "stepped" },
  927. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  928. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  929. { "time": 0.2667, "angle": 0 }
  930. ],
  931. "translate": [
  932. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  933. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  934. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  935. { "time": 0.2667, "x": 0, "y": 0 }
  936. ],
  937. "scale": [
  938. { "time": 0, "x": 1, "y": 1 },
  939. { "time": 0.0667, "x": 0.435, "y": 1, "curve": "stepped" },
  940. { "time": 0.1667, "x": 0.435, "y": 1 },
  941. { "time": 0.2667, "x": 1, "y": 1 }
  942. ]
  943. },
  944. "bone23": {
  945. "rotate": [
  946. { "time": 0, "angle": 0, "curve": "stepped" },
  947. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  948. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  949. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  950. { "time": 0.4, "angle": 30 },
  951. { "time": 0.5333, "angle": 0 },
  952. { "time": 0.6333, "angle": 30 },
  953. { "time": 0.7667, "angle": 0 },
  954. { "time": 0.8667, "angle": 30 },
  955. { "time": 1, "angle": 0 },
  956. { "time": 1.1, "angle": 30 },
  957. { "time": 1.2333, "angle": 0 },
  958. { "time": 1.3333, "angle": 30 },
  959. { "time": 1.4667, "angle": 0 },
  960. { "time": 1.5667, "angle": 30 },
  961. { "time": 1.7, "angle": 0 },
  962. { "time": 1.8, "angle": 30 },
  963. { "time": 1.9333, "angle": 0 },
  964. { "time": 2.0333, "angle": 30 },
  965. { "time": 2.1667, "angle": 0 },
  966. { "time": 2.2667, "angle": 30 },
  967. { "time": 2.4, "angle": 0 },
  968. { "time": 2.5, "angle": 30 },
  969. { "time": 2.6333, "angle": 0 },
  970. { "time": 2.7333, "angle": 30 },
  971. { "time": 2.8667, "angle": 0 },
  972. { "time": 2.9667, "angle": 30 },
  973. { "time": 3.1, "angle": 0 },
  974. { "time": 3.2, "angle": 30 },
  975. { "time": 3.3333, "angle": 0 },
  976. { "time": 3.4333, "angle": 30 },
  977. { "time": 3.5667, "angle": 0 },
  978. { "time": 3.6667, "angle": 30 }
  979. ],
  980. "translate": [
  981. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  982. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  983. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  984. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  985. { "time": 0.4, "x": -0.6, "y": 0.85 },
  986. { "time": 0.5333, "x": 0, "y": 0 },
  987. { "time": 0.6333, "x": -0.6, "y": 0.85 },
  988. { "time": 0.7667, "x": 0, "y": 0 },
  989. { "time": 0.8667, "x": -0.6, "y": 0.85 },
  990. { "time": 1, "x": 0, "y": 0 },
  991. { "time": 1.1, "x": -0.6, "y": 0.85 },
  992. { "time": 1.2333, "x": 0, "y": 0 },
  993. { "time": 1.3333, "x": -0.6, "y": 0.85 },
  994. { "time": 1.4667, "x": 0, "y": 0 },
  995. { "time": 1.5667, "x": -0.6, "y": 0.85 },
  996. { "time": 1.7, "x": 0, "y": 0 },
  997. { "time": 1.8, "x": -0.6, "y": 0.85 },
  998. { "time": 1.9333, "x": 0, "y": 0 },
  999. { "time": 2.0333, "x": -0.6, "y": 0.85 },
  1000. { "time": 2.1667, "x": 0, "y": 0 },
  1001. { "time": 2.2667, "x": -0.6, "y": 0.85 },
  1002. { "time": 2.4, "x": 0, "y": 0 },
  1003. { "time": 2.5, "x": -0.6, "y": 0.85 },
  1004. { "time": 2.6333, "x": 0, "y": 0 },
  1005. { "time": 2.7333, "x": -0.6, "y": 0.85 },
  1006. { "time": 2.8667, "x": 0, "y": 0 },
  1007. { "time": 2.9667, "x": -0.6, "y": 0.85 },
  1008. { "time": 3.1, "x": 0, "y": 0 },
  1009. { "time": 3.2, "x": -0.6, "y": 0.85 },
  1010. { "time": 3.3333, "x": 0, "y": 0 },
  1011. { "time": 3.4333, "x": -0.6, "y": 0.85 },
  1012. { "time": 3.5667, "x": 0, "y": 0 },
  1013. { "time": 3.6667, "x": -0.6, "y": 0.85 }
  1014. ],
  1015. "scale": [
  1016. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1017. { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
  1018. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1019. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1020. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1021. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1022. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1023. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1024. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1025. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1026. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1027. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1028. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1029. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1030. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1031. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1032. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  1033. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1034. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1035. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1036. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  1037. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  1038. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1039. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  1040. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1041. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  1042. { "time": 2.9667, "x": 1, "y": 1, "curve": "stepped" },
  1043. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1044. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  1045. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1046. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  1047. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1048. { "time": 3.6667, "x": 1, "y": 1 }
  1049. ]
  1050. },
  1051. "bone24": {
  1052. "rotate": [
  1053. { "time": 0, "angle": 0, "curve": "stepped" },
  1054. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  1055. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1056. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  1057. { "time": 0.4, "angle": 30 },
  1058. { "time": 0.5333, "angle": 0 },
  1059. { "time": 0.6333, "angle": 30 },
  1060. { "time": 0.7667, "angle": 0 },
  1061. { "time": 0.8667, "angle": 30 },
  1062. { "time": 1, "angle": 0 },
  1063. { "time": 1.1, "angle": 30 },
  1064. { "time": 1.2333, "angle": 0 },
  1065. { "time": 1.3333, "angle": 30 },
  1066. { "time": 1.4667, "angle": 0 },
  1067. { "time": 1.5667, "angle": 30 },
  1068. { "time": 1.7, "angle": 0 },
  1069. { "time": 1.8, "angle": 30 },
  1070. { "time": 1.9333, "angle": 0 },
  1071. { "time": 2.0333, "angle": 30 },
  1072. { "time": 2.1667, "angle": 0 },
  1073. { "time": 2.2667, "angle": 30 },
  1074. { "time": 2.4, "angle": 0 },
  1075. { "time": 2.5, "angle": 30 },
  1076. { "time": 2.6333, "angle": 0 },
  1077. { "time": 2.7333, "angle": 30 },
  1078. { "time": 2.8667, "angle": 0 },
  1079. { "time": 2.9667, "angle": 30 },
  1080. { "time": 3.1, "angle": 0 },
  1081. { "time": 3.2, "angle": 30 },
  1082. { "time": 3.3333, "angle": 0 },
  1083. { "time": 3.4333, "angle": 30 },
  1084. { "time": 3.5667, "angle": 0 },
  1085. { "time": 3.6667, "angle": 30 }
  1086. ],
  1087. "translate": [
  1088. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1089. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  1090. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1091. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1092. { "time": 0.4, "x": 0.44, "y": 1.83 },
  1093. { "time": 0.5333, "x": 0, "y": 0 },
  1094. { "time": 0.6333, "x": 0.44, "y": 1.83 },
  1095. { "time": 0.7667, "x": 0, "y": 0 },
  1096. { "time": 0.8667, "x": 0.44, "y": 1.83 },
  1097. { "time": 1, "x": 0, "y": 0 },
  1098. { "time": 1.1, "x": 0.44, "y": 1.83 },
  1099. { "time": 1.2333, "x": 0, "y": 0 },
  1100. { "time": 1.3333, "x": 0.44, "y": 1.83 },
  1101. { "time": 1.4667, "x": 0, "y": 0 },
  1102. { "time": 1.5667, "x": 0.44, "y": 1.83 },
  1103. { "time": 1.7, "x": 0, "y": 0 },
  1104. { "time": 1.8, "x": 0.44, "y": 1.83 },
  1105. { "time": 1.9333, "x": 0, "y": 0 },
  1106. { "time": 2.0333, "x": 0.44, "y": 1.83 },
  1107. { "time": 2.1667, "x": 0, "y": 0 },
  1108. { "time": 2.2667, "x": 0.44, "y": 1.83 },
  1109. { "time": 2.4, "x": 0, "y": 0 },
  1110. { "time": 2.5, "x": 0.44, "y": 1.83 },
  1111. { "time": 2.6333, "x": 0, "y": 0 },
  1112. { "time": 2.7333, "x": 0.44, "y": 1.83 },
  1113. { "time": 2.8667, "x": 0, "y": 0 },
  1114. { "time": 2.9667, "x": 0.44, "y": 1.83 },
  1115. { "time": 3.1, "x": 0, "y": 0 },
  1116. { "time": 3.2, "x": 0.44, "y": 1.83 },
  1117. { "time": 3.3333, "x": 0, "y": 0 },
  1118. { "time": 3.4333, "x": 0.44, "y": 1.83 },
  1119. { "time": 3.5667, "x": 0, "y": 0 },
  1120. { "time": 3.6667, "x": 0.44, "y": 1.83 }
  1121. ],
  1122. "scale": [
  1123. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1124. { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
  1125. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1126. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1127. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1128. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1129. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1130. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1131. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1132. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1133. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1134. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1135. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1136. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1137. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1138. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1139. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  1140. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1141. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1142. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1143. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  1144. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  1145. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1146. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  1147. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1148. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  1149. { "time": 2.9667, "x": 1, "y": 1, "curve": "stepped" },
  1150. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1151. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  1152. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1153. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  1154. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1155. { "time": 3.6667, "x": 1, "y": 1 }
  1156. ]
  1157. },
  1158. "bone25": {
  1159. "rotate": [
  1160. { "time": 0, "angle": 0, "curve": "stepped" },
  1161. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1162. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1163. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1164. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  1165. { "time": 3.6667, "angle": 0 }
  1166. ],
  1167. "translate": [
  1168. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1169. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1170. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1171. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1172. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1173. { "time": 3.6667, "x": 0, "y": 0 }
  1174. ],
  1175. "scale": [
  1176. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1177. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1178. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1179. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1180. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1181. { "time": 3.6667, "x": 1, "y": 1 }
  1182. ]
  1183. },
  1184. "bone26": {
  1185. "rotate": [
  1186. { "time": 0, "angle": 2.81 },
  1187. { "time": 0.1667, "angle": 0 },
  1188. {
  1189. "time": 0.3333,
  1190. "angle": 2.81,
  1191. "curve": [ 0.25, 0, 0.75, 1 ]
  1192. },
  1193. {
  1194. "time": 1.4333,
  1195. "angle": 3.55,
  1196. "curve": [ 0.25, 0, 0.75, 1 ]
  1197. },
  1198. {
  1199. "time": 2.5333,
  1200. "angle": 2.81,
  1201. "curve": [ 0.25, 0, 0.75, 1 ]
  1202. },
  1203. { "time": 3.6667, "angle": 3.55 }
  1204. ],
  1205. "translate": [
  1206. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1207. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1208. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1209. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1210. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1211. { "time": 3.6667, "x": 0, "y": 0 }
  1212. ],
  1213. "scale": [
  1214. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1215. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1216. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1217. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1218. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1219. { "time": 3.6667, "x": 1, "y": 1 }
  1220. ]
  1221. },
  1222. "bone27": {
  1223. "rotate": [
  1224. { "time": 0, "angle": 0, "curve": "stepped" },
  1225. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1226. {
  1227. "time": 0.3333,
  1228. "angle": 0,
  1229. "curve": [ 0.25, 0, 0.75, 1 ]
  1230. },
  1231. {
  1232. "time": 1.4333,
  1233. "angle": 7.32,
  1234. "curve": [ 0.25, 0, 0.75, 1 ]
  1235. },
  1236. {
  1237. "time": 2.5333,
  1238. "angle": 0,
  1239. "curve": [ 0.25, 0, 0.75, 1 ]
  1240. },
  1241. { "time": 3.6667, "angle": 7.32 }
  1242. ],
  1243. "translate": [
  1244. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1245. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1246. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1247. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1248. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1249. { "time": 3.6667, "x": 0, "y": 0 }
  1250. ],
  1251. "scale": [
  1252. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1253. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1254. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1255. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1256. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1257. { "time": 3.6667, "x": 1, "y": 1 }
  1258. ]
  1259. },
  1260. "bone28": {
  1261. "rotate": [
  1262. { "time": 0, "angle": 0, "curve": "stepped" },
  1263. { "time": 0.1667, "angle": 0 },
  1264. {
  1265. "time": 0.3333,
  1266. "angle": -1.41,
  1267. "curve": [ 0.25, 0, 0.75, 1 ]
  1268. },
  1269. {
  1270. "time": 1.4333,
  1271. "angle": 0,
  1272. "curve": [ 0.25, 0, 0.75, 1 ]
  1273. },
  1274. {
  1275. "time": 2.5333,
  1276. "angle": -1.41,
  1277. "curve": [ 0.25, 0, 0.75, 1 ]
  1278. },
  1279. { "time": 3.6667, "angle": 0 }
  1280. ],
  1281. "translate": [
  1282. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1283. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1284. {
  1285. "time": 0.3333,
  1286. "x": 0,
  1287. "y": 0,
  1288. "curve": [ 0.25, 0, 0.75, 1 ]
  1289. },
  1290. {
  1291. "time": 1.4333,
  1292. "x": -1.91,
  1293. "y": 0.1,
  1294. "curve": [ 0.25, 0, 0.75, 1 ]
  1295. },
  1296. {
  1297. "time": 2.5333,
  1298. "x": 0,
  1299. "y": 0,
  1300. "curve": [ 0.25, 0, 0.75, 1 ]
  1301. },
  1302. { "time": 3.6667, "x": -1.91, "y": 0.1 }
  1303. ],
  1304. "scale": [
  1305. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1306. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1307. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1308. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1309. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1310. { "time": 3.6667, "x": 1, "y": 1 }
  1311. ]
  1312. },
  1313. "bone29": {
  1314. "rotate": [
  1315. { "time": 0, "angle": 7.85 },
  1316. { "time": 0.1667, "angle": 7.8 },
  1317. {
  1318. "time": 0.3333,
  1319. "angle": 7.85,
  1320. "curve": [ 0.25, 0, 0.75, 1 ]
  1321. },
  1322. {
  1323. "time": 1.4333,
  1324. "angle": 1.82,
  1325. "curve": [ 0.25, 0, 0.75, 1 ]
  1326. },
  1327. {
  1328. "time": 2.5333,
  1329. "angle": 7.85,
  1330. "curve": [ 0.25, 0, 0.75, 1 ]
  1331. },
  1332. { "time": 3.6667, "angle": -0.15 }
  1333. ],
  1334. "translate": [
  1335. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1336. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1337. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1338. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1339. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1340. { "time": 3.6667, "x": 0, "y": 0 }
  1341. ],
  1342. "scale": [
  1343. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1344. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1345. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1346. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1347. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1348. { "time": 3.6667, "x": 1, "y": 1 }
  1349. ]
  1350. },
  1351. "bone30": {
  1352. "rotate": [
  1353. { "time": 0, "angle": 7.85 },
  1354. { "time": 0.1667, "angle": 7.8 },
  1355. {
  1356. "time": 0.3333,
  1357. "angle": 12.58,
  1358. "curve": [ 0.25, 0, 0.75, 1 ]
  1359. },
  1360. {
  1361. "time": 1.4333,
  1362. "angle": 10.69,
  1363. "curve": [ 0.25, 0, 0.75, 1 ]
  1364. },
  1365. {
  1366. "time": 2.5333,
  1367. "angle": 7.85,
  1368. "curve": [ 0.25, 0, 0.75, 1 ]
  1369. },
  1370. { "time": 3.6667, "angle": 10.69 }
  1371. ],
  1372. "translate": [
  1373. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1374. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1375. {
  1376. "time": 0.3333,
  1377. "x": 0,
  1378. "y": 0,
  1379. "curve": [ 0.25, 0, 0.75, 1 ]
  1380. },
  1381. {
  1382. "time": 1.4333,
  1383. "x": -1.43,
  1384. "y": -0.27,
  1385. "curve": [ 0.25, 0, 0.75, 1 ]
  1386. },
  1387. {
  1388. "time": 2.5333,
  1389. "x": 0,
  1390. "y": 0,
  1391. "curve": [ 0.25, 0, 0.75, 1 ]
  1392. },
  1393. { "time": 3.6667, "x": -1.43, "y": -0.27 }
  1394. ],
  1395. "scale": [
  1396. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1397. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1398. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1399. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1400. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1401. { "time": 3.6667, "x": 1, "y": 1 }
  1402. ]
  1403. },
  1404. "bone31": {
  1405. "rotate": [
  1406. { "time": 0, "angle": 7.85 },
  1407. { "time": 0.1667, "angle": 7.8 },
  1408. {
  1409. "time": 0.3333,
  1410. "angle": 14.13,
  1411. "curve": [ 0.25, 0, 0.75, 1 ]
  1412. },
  1413. {
  1414. "time": 1.4333,
  1415. "angle": 15,
  1416. "curve": [ 0.25, 0, 0.75, 1 ]
  1417. },
  1418. {
  1419. "time": 2.5333,
  1420. "angle": 7.85,
  1421. "curve": [ 0.25, 0, 0.75, 1 ]
  1422. },
  1423. { "time": 3.6667, "angle": 15 }
  1424. ],
  1425. "translate": [
  1426. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1427. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1428. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1429. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1430. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1431. { "time": 3.6667, "x": 0, "y": 0 }
  1432. ],
  1433. "scale": [
  1434. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1435. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1436. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1437. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1438. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1439. { "time": 3.6667, "x": 1, "y": 1 }
  1440. ]
  1441. },
  1442. "bone32": {
  1443. "rotate": [
  1444. { "time": 0, "angle": 0, "curve": "stepped" },
  1445. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1446. {
  1447. "time": 0.3333,
  1448. "angle": 0,
  1449. "curve": [ 0.25, 0, 0.75, 1 ]
  1450. },
  1451. {
  1452. "time": 1.4333,
  1453. "angle": 1.85,
  1454. "curve": [ 0.25, 0, 0.75, 1 ]
  1455. },
  1456. {
  1457. "time": 2.5333,
  1458. "angle": 0,
  1459. "curve": [ 0.25, 0, 0.75, 1 ]
  1460. },
  1461. { "time": 3.6667, "angle": 1.85 }
  1462. ],
  1463. "translate": [
  1464. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1465. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1466. {
  1467. "time": 0.3333,
  1468. "x": 0,
  1469. "y": 0,
  1470. "curve": [ 0.25, 0, 0.75, 1 ]
  1471. },
  1472. {
  1473. "time": 1.4333,
  1474. "x": 2.16,
  1475. "y": 3.38,
  1476. "curve": [ 0.25, 0, 0.75, 1 ]
  1477. },
  1478. {
  1479. "time": 2.5333,
  1480. "x": 0,
  1481. "y": 0,
  1482. "curve": [ 0.25, 0, 0.75, 1 ]
  1483. },
  1484. { "time": 3.6667, "x": 2.16, "y": 3.38 }
  1485. ],
  1486. "scale": [
  1487. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1488. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1489. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1490. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1491. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1492. { "time": 3.6667, "x": 1, "y": 1 }
  1493. ]
  1494. },
  1495. "bone33": {
  1496. "rotate": [
  1497. { "time": 0, "angle": 13.02 },
  1498. { "time": 0.1667, "angle": 0 },
  1499. {
  1500. "time": 0.3333,
  1501. "angle": 6.67,
  1502. "curve": [ 0.25, 0, 0.75, 1 ]
  1503. },
  1504. {
  1505. "time": 1.4333,
  1506. "angle": 10.8,
  1507. "curve": [ 0.25, 0, 0.75, 1 ]
  1508. },
  1509. {
  1510. "time": 2.5333,
  1511. "angle": 6.67,
  1512. "curve": [ 0.25, 0, 0.75, 1 ]
  1513. },
  1514. { "time": 3.6667, "angle": 10.8 }
  1515. ],
  1516. "translate": [
  1517. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1518. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1519. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1520. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1521. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1522. { "time": 3.6667, "x": 0, "y": 0 }
  1523. ],
  1524. "scale": [
  1525. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1526. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1527. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1528. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1529. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1530. { "time": 3.6667, "x": 1, "y": 1 }
  1531. ]
  1532. },
  1533. "bone34": {
  1534. "rotate": [
  1535. { "time": 0, "angle": -3.61 },
  1536. { "time": 0.1667, "angle": 0 },
  1537. {
  1538. "time": 0.3333,
  1539. "angle": -3.61,
  1540. "curve": [ 0.25, 0, 0.75, 1 ]
  1541. },
  1542. {
  1543. "time": 1.4333,
  1544. "angle": -13.34,
  1545. "curve": [ 0.25, 0, 0.75, 1 ]
  1546. },
  1547. {
  1548. "time": 2.5333,
  1549. "angle": -3.61,
  1550. "curve": [ 0.25, 0, 0.75, 1 ]
  1551. },
  1552. { "time": 3.6667, "angle": -13.34 }
  1553. ],
  1554. "translate": [
  1555. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1556. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1557. {
  1558. "time": 0.3333,
  1559. "x": 0,
  1560. "y": 0,
  1561. "curve": [ 0.25, 0, 0.75, 1 ]
  1562. },
  1563. {
  1564. "time": 1.4333,
  1565. "x": -1.38,
  1566. "y": 0.23,
  1567. "curve": [ 0.25, 0, 0.75, 1 ]
  1568. },
  1569. {
  1570. "time": 2.5333,
  1571. "x": 0,
  1572. "y": 0,
  1573. "curve": [ 0.25, 0, 0.75, 1 ]
  1574. },
  1575. { "time": 3.6667, "x": -1.38, "y": 0.23 }
  1576. ],
  1577. "scale": [
  1578. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1579. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1580. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1581. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1582. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1583. { "time": 3.6667, "x": 1, "y": 1 }
  1584. ]
  1585. },
  1586. "bone35": {
  1587. "rotate": [
  1588. { "time": 0, "angle": 0, "curve": "stepped" },
  1589. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1590. {
  1591. "time": 0.3333,
  1592. "angle": 0,
  1593. "curve": [ 0.25, 0, 0.75, 1 ]
  1594. },
  1595. {
  1596. "time": 1.4333,
  1597. "angle": -12.09,
  1598. "curve": [ 0.25, 0, 0.75, 1 ]
  1599. },
  1600. {
  1601. "time": 2.5333,
  1602. "angle": 0,
  1603. "curve": [ 0.25, 0, 0.75, 1 ]
  1604. },
  1605. { "time": 3.6667, "angle": -12.09 }
  1606. ],
  1607. "translate": [
  1608. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1609. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1610. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1611. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1612. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1613. { "time": 3.6667, "x": 0, "y": 0 }
  1614. ],
  1615. "scale": [
  1616. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1617. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1618. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1619. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1620. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1621. { "time": 3.6667, "x": 1, "y": 1 }
  1622. ]
  1623. },
  1624. "bone36": {
  1625. "rotate": [
  1626. { "time": 0, "angle": 0, "curve": "stepped" },
  1627. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1628. {
  1629. "time": 0.3333,
  1630. "angle": 0,
  1631. "curve": [ 0.25, 0, 0.75, 1 ]
  1632. },
  1633. {
  1634. "time": 1.4333,
  1635. "angle": -0.5,
  1636. "curve": [ 0.25, 0, 0.75, 1 ]
  1637. },
  1638. {
  1639. "time": 2.5333,
  1640. "angle": 0,
  1641. "curve": [ 0.25, 0, 0.75, 1 ]
  1642. },
  1643. { "time": 3.6667, "angle": -0.5 }
  1644. ],
  1645. "translate": [
  1646. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1647. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1648. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1649. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1650. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1651. { "time": 3.6667, "x": 0, "y": 0 }
  1652. ],
  1653. "scale": [
  1654. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1655. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1656. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1657. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1658. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1659. { "time": 3.6667, "x": 1, "y": 1 }
  1660. ]
  1661. },
  1662. "bone43": {
  1663. "rotate": [
  1664. { "time": 0, "angle": 13.89 },
  1665. { "time": 0.1667, "angle": 0 },
  1666. { "time": 0.3333, "angle": 13.89 },
  1667. { "time": 1.4333, "angle": 15.48 },
  1668. { "time": 2.5333, "angle": 13.89 },
  1669. { "time": 3.6667, "angle": 15.48 }
  1670. ],
  1671. "translate": [
  1672. { "time": 0, "x": -4.46, "y": 7.66 },
  1673. { "time": 0.1667, "x": 0, "y": 0 },
  1674. { "time": 0.3333, "x": -4.46, "y": 7.66 },
  1675. { "time": 1.4333, "x": 0.55, "y": 5.43 },
  1676. { "time": 2.5333, "x": -4.46, "y": 7.66 },
  1677. { "time": 3.6667, "x": 0.55, "y": 5.43 }
  1678. ],
  1679. "scale": [
  1680. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1681. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1682. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1683. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1684. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1685. { "time": 3.6667, "x": 1, "y": 1 }
  1686. ]
  1687. },
  1688. "bone49": {
  1689. "rotate": [
  1690. { "time": 0, "angle": 0, "curve": "stepped" },
  1691. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1692. { "time": 0.3333, "angle": 0 },
  1693. { "time": 1.4333, "angle": 10.38 },
  1694. { "time": 2.5333, "angle": 0 },
  1695. { "time": 3.6667, "angle": 10.38 }
  1696. ],
  1697. "translate": [
  1698. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1699. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1700. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1701. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1702. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1703. { "time": 3.6667, "x": 0, "y": 0 }
  1704. ],
  1705. "scale": [
  1706. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1707. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1708. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1709. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1710. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1711. { "time": 3.6667, "x": 1, "y": 1 }
  1712. ]
  1713. },
  1714. "bone50": {
  1715. "rotate": [
  1716. { "time": 0, "angle": 0, "curve": "stepped" },
  1717. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1718. { "time": 0.3333, "angle": 0 },
  1719. { "time": 1.4333, "angle": -4.42 },
  1720. { "time": 2.5333, "angle": 0 },
  1721. { "time": 3.6667, "angle": -4.42 }
  1722. ],
  1723. "translate": [
  1724. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1725. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1726. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1727. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1728. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1729. { "time": 3.6667, "x": 0, "y": 0 }
  1730. ],
  1731. "scale": [
  1732. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1733. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1734. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1735. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1736. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1737. { "time": 3.6667, "x": 1, "y": 1 }
  1738. ]
  1739. },
  1740. "bone51": {
  1741. "rotate": [
  1742. { "time": 0, "angle": 0, "curve": "stepped" },
  1743. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1744. { "time": 0.3333, "angle": 0 }
  1745. ],
  1746. "translate": [
  1747. { "time": 0, "x": 0, "y": 0 },
  1748. { "time": 0.1667, "x": 0.21, "y": -0.86 },
  1749. { "time": 0.3333, "x": 0, "y": 0 }
  1750. ],
  1751. "scale": [
  1752. { "time": 0, "x": 1, "y": 1 },
  1753. { "time": 0.1667, "x": 1, "y": 1.1 },
  1754. { "time": 0.3333, "x": 1, "y": 1 }
  1755. ]
  1756. },
  1757. "bone52": {
  1758. "rotate": [
  1759. { "time": 0, "angle": 0, "curve": "stepped" },
  1760. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1761. { "time": 0.3333, "angle": 0 }
  1762. ],
  1763. "translate": [
  1764. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1765. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1766. { "time": 0.3333, "x": 0, "y": 0 }
  1767. ],
  1768. "scale": [
  1769. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1770. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1771. { "time": 0.3333, "x": 1, "y": 1 }
  1772. ]
  1773. },
  1774. "bone53": {
  1775. "rotate": [
  1776. { "time": 0, "angle": 0, "curve": "stepped" },
  1777. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1778. { "time": 0.3333, "angle": 0 }
  1779. ],
  1780. "translate": [
  1781. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1782. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1783. { "time": 0.3333, "x": 0, "y": 0 }
  1784. ],
  1785. "scale": [
  1786. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1787. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1788. { "time": 0.3333, "x": 1, "y": 1 }
  1789. ]
  1790. },
  1791. "bone54": {
  1792. "rotate": [
  1793. { "time": 0, "angle": 0, "curve": "stepped" },
  1794. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1795. { "time": 0.3333, "angle": 0 }
  1796. ],
  1797. "translate": [
  1798. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1799. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1800. { "time": 0.3333, "x": 0, "y": 0 }
  1801. ],
  1802. "scale": [
  1803. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1804. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1805. { "time": 0.3333, "x": 1, "y": 1 }
  1806. ]
  1807. },
  1808. "bone55": {
  1809. "rotate": [
  1810. { "time": 0, "angle": 0, "curve": "stepped" },
  1811. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1812. { "time": 0.3333, "angle": 0 }
  1813. ],
  1814. "translate": [
  1815. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1816. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1817. { "time": 0.3333, "x": 0, "y": 0 }
  1818. ],
  1819. "scale": [
  1820. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1821. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1822. { "time": 0.3333, "x": 1, "y": 1 }
  1823. ]
  1824. },
  1825. "bone56": {
  1826. "rotate": [
  1827. { "time": 0, "angle": 0, "curve": "stepped" },
  1828. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1829. { "time": 0.3333, "angle": 0 }
  1830. ],
  1831. "translate": [
  1832. { "time": 0, "x": 0, "y": 0 },
  1833. { "time": 0.1667, "x": 1.1, "y": -0.08 },
  1834. { "time": 0.3333, "x": 0, "y": 0 }
  1835. ],
  1836. "scale": [
  1837. { "time": 0, "x": 1, "y": 1 },
  1838. { "time": 0.1667, "x": 1, "y": 1.1 },
  1839. { "time": 0.3333, "x": 1, "y": 1 }
  1840. ]
  1841. },
  1842. "bone57": {
  1843. "rotate": [
  1844. { "time": 0, "angle": 0, "curve": "stepped" },
  1845. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1846. { "time": 0.3333, "angle": 0 }
  1847. ],
  1848. "translate": [
  1849. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1850. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1851. { "time": 0.3333, "x": 0, "y": 0 }
  1852. ],
  1853. "scale": [
  1854. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1855. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1856. { "time": 0.3333, "x": 1, "y": 1 }
  1857. ]
  1858. },
  1859. "bone58": {
  1860. "rotate": [
  1861. { "time": 0, "angle": 0, "curve": "stepped" },
  1862. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1863. { "time": 0.3333, "angle": 0 }
  1864. ],
  1865. "translate": [
  1866. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1867. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1868. { "time": 0.3333, "x": 0, "y": 0 }
  1869. ],
  1870. "scale": [
  1871. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1872. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1873. { "time": 0.3333, "x": 1, "y": 1 }
  1874. ]
  1875. },
  1876. "bone37": {
  1877. "rotate": [
  1878. { "time": 0, "angle": 0 },
  1879. {
  1880. "time": 0.2333,
  1881. "angle": 10.36,
  1882. "curve": [ 0.25, 0, 0.75, 1 ]
  1883. },
  1884. { "time": 0.3333, "angle": 6.69 },
  1885. { "time": 0.5333, "angle": 2.06 }
  1886. ],
  1887. "translate": [
  1888. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1889. { "time": 0.2333, "x": -2.8, "y": 84.93, "curve": "stepped" },
  1890. { "time": 0.3333, "x": -2.8, "y": 84.93 },
  1891. { "time": 0.5333, "x": -2.1, "y": 85.11 }
  1892. ],
  1893. "scale": [
  1894. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1895. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1896. { "time": 0.3333, "x": 1, "y": 1 }
  1897. ]
  1898. },
  1899. "bone38": {
  1900. "rotate": [
  1901. { "time": 0, "angle": 0 },
  1902. {
  1903. "time": 0.2333,
  1904. "angle": 49.58,
  1905. "curve": [ 0.25, 0, 0.75, 1 ]
  1906. },
  1907. { "time": 0.3333, "angle": 6.6 },
  1908. { "time": 0.5333, "angle": 4.54 }
  1909. ],
  1910. "translate": [
  1911. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1912. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1913. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1914. { "time": 0.5333, "x": 0, "y": 0 }
  1915. ],
  1916. "scale": [
  1917. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1918. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1919. { "time": 0.3333, "x": 1, "y": 1 }
  1920. ]
  1921. },
  1922. "bone39": {
  1923. "rotate": [
  1924. { "time": 0, "angle": 0 },
  1925. {
  1926. "time": 0.2333,
  1927. "angle": 10.36,
  1928. "curve": [ 0.25, 0, 0.75, 1 ]
  1929. },
  1930. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1931. { "time": 0.7333, "angle": 0 }
  1932. ],
  1933. "translate": [
  1934. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1935. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1936. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1937. { "time": 0.7333, "x": 0, "y": 0 }
  1938. ],
  1939. "scale": [
  1940. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1941. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1942. { "time": 0.3333, "x": 1, "y": 1 }
  1943. ]
  1944. },
  1945. "bone40": {
  1946. "rotate": [
  1947. { "time": 0, "angle": 0 },
  1948. {
  1949. "time": 0.2333,
  1950. "angle": -6.31,
  1951. "curve": [ 0.25, 0, 0.75, 1 ]
  1952. },
  1953. { "time": 0.3333, "angle": -8.26 },
  1954. { "time": 0.5333, "angle": -2.54 }
  1955. ],
  1956. "translate": [
  1957. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1958. { "time": 0.2333, "x": -0.23, "y": -68.68, "curve": "stepped" },
  1959. { "time": 0.3333, "x": -0.23, "y": -68.68 },
  1960. { "time": 0.5333, "x": 0.2, "y": -68.87 }
  1961. ],
  1962. "scale": [
  1963. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1964. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1965. { "time": 0.3333, "x": 1, "y": 1 }
  1966. ]
  1967. },
  1968. "bone41": {
  1969. "rotate": [
  1970. { "time": 0, "angle": 0 },
  1971. {
  1972. "time": 0.2333,
  1973. "angle": -39.83,
  1974. "curve": [ 0.25, 0, 0.75, 1 ]
  1975. },
  1976. { "time": 0.3333, "angle": -2.68 },
  1977. { "time": 0.5333, "angle": -0.2 }
  1978. ],
  1979. "translate": [
  1980. { "time": 0, "x": 0, "y": 0 },
  1981. {
  1982. "time": 0.2333,
  1983. "x": -2.08,
  1984. "y": -1.03,
  1985. "curve": [ 0.25, 0, 0.75, 1 ]
  1986. },
  1987. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1988. { "time": 0.5333, "x": 0, "y": 0 }
  1989. ],
  1990. "scale": [
  1991. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1992. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1993. { "time": 0.3333, "x": 1, "y": 1 }
  1994. ]
  1995. },
  1996. "bone42": {
  1997. "rotate": [
  1998. { "time": 0, "angle": 0, "curve": "stepped" },
  1999. {
  2000. "time": 0.2333,
  2001. "angle": 0,
  2002. "curve": [ 0.25, 0, 0.75, 1 ]
  2003. },
  2004. { "time": 0.3333, "angle": 5.53 },
  2005. { "time": 0.7333, "angle": 1.7 }
  2006. ],
  2007. "translate": [
  2008. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2009. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2010. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2011. { "time": 0.7333, "x": 0, "y": 0 }
  2012. ],
  2013. "scale": [
  2014. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2015. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2016. { "time": 0.3333, "x": 1, "y": 1 }
  2017. ]
  2018. },
  2019. "bone61": {
  2020. "translate": [
  2021. { "time": 0.1667, "x": 0, "y": 0 },
  2022. { "time": 0.3333, "x": -1.31, "y": -0.79, "curve": "stepped" },
  2023. { "time": 2.1667, "x": -1.31, "y": -0.79 },
  2024. { "time": 2.3333, "x": -0.98, "y": -0.79 }
  2025. ],
  2026. "scale": [
  2027. { "time": 2.3333, "x": 1, "y": 1 }
  2028. ]
  2029. },
  2030. "bone60": {
  2031. "translate": [
  2032. { "time": 0.1667, "x": 0, "y": 0 },
  2033. { "time": 0.3333, "x": -1.15, "y": -1.72, "curve": "stepped" },
  2034. { "time": 2.1667, "x": -1.15, "y": -1.72 },
  2035. { "time": 2.3333, "x": -0.7, "y": -1.72 }
  2036. ],
  2037. "scale": [
  2038. { "time": 2.3333, "x": 1, "y": 1 }
  2039. ]
  2040. },
  2041. "ziti": {
  2042. "translate": [
  2043. { "time": 0, "x": -250.85, "y": 6.66 }
  2044. ]
  2045. },
  2046. "bone44": {
  2047. "rotate": [
  2048. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2049. { "time": 0.8333, "angle": 0 }
  2050. ],
  2051. "translate": [
  2052. { "time": 0.4667, "x": 11.42, "y": 0 },
  2053. { "time": 0.8333, "x": 0, "y": 0 },
  2054. { "time": 3.6667, "x": -8.12, "y": 0 }
  2055. ],
  2056. "scale": [
  2057. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2058. { "time": 0.8333, "x": 1, "y": 1 }
  2059. ]
  2060. },
  2061. "bone45": {
  2062. "rotate": [
  2063. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2064. { "time": 1, "angle": 0 }
  2065. ],
  2066. "translate": [
  2067. { "time": 0.6667, "x": 11.42, "y": 0 },
  2068. { "time": 1, "x": 0, "y": 0 },
  2069. { "time": 3.6667, "x": -8.12, "y": 0 }
  2070. ],
  2071. "scale": [
  2072. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2073. { "time": 1, "x": 1, "y": 1 }
  2074. ]
  2075. },
  2076. "bone46": {
  2077. "rotate": [
  2078. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2079. { "time": 1.1333, "angle": 0 }
  2080. ],
  2081. "translate": [
  2082. { "time": 0.8333, "x": 11.42, "y": 0 },
  2083. { "time": 1.1333, "x": 0, "y": 0 },
  2084. { "time": 3.6667, "x": -8.12, "y": 0 }
  2085. ],
  2086. "scale": [
  2087. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2088. { "time": 1.1333, "x": 1, "y": 1 }
  2089. ]
  2090. },
  2091. "bone47": {
  2092. "rotate": [
  2093. { "time": 1, "angle": 0, "curve": "stepped" },
  2094. { "time": 1.3333, "angle": 0 }
  2095. ],
  2096. "translate": [
  2097. { "time": 1, "x": 11.42, "y": 0 },
  2098. { "time": 1.3333, "x": 0, "y": 0 },
  2099. { "time": 3.6667, "x": -8.12, "y": 0 }
  2100. ],
  2101. "scale": [
  2102. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2103. { "time": 1.3333, "x": 1, "y": 1 }
  2104. ]
  2105. },
  2106. "bone48": {
  2107. "rotate": [
  2108. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2109. { "time": 1.4667, "angle": 0 }
  2110. ],
  2111. "translate": [
  2112. { "time": 1.1333, "x": 11.42, "y": 0 },
  2113. { "time": 1.4667, "x": 0, "y": 0 },
  2114. { "time": 3.6667, "x": -8.12, "y": 0 }
  2115. ],
  2116. "scale": [
  2117. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2118. { "time": 1.4667, "x": 1, "y": 1 }
  2119. ]
  2120. },
  2121. "yanlei1": {
  2122. "translate": [
  2123. { "time": 0, "x": 1.68, "y": 0.88 }
  2124. ],
  2125. "scale": [
  2126. { "time": 0.9, "x": 1, "y": 1 },
  2127. { "time": 1.2667, "x": 0.965, "y": 0.986 },
  2128. { "time": 1.8333, "x": 1, "y": 1 },
  2129. { "time": 2.2, "x": 0.965, "y": 0.986 },
  2130. { "time": 2.7333, "x": 1, "y": 1 },
  2131. { "time": 3.1, "x": 0.965, "y": 0.986 },
  2132. { "time": 3.6667, "x": 1, "y": 1 }
  2133. ]
  2134. },
  2135. "yanlei2": {
  2136. "translate": [
  2137. { "time": 0, "x": 1.67, "y": 0.51 }
  2138. ],
  2139. "scale": [
  2140. { "time": 0.9, "x": 1, "y": 1 },
  2141. { "time": 1.2667, "x": 0.98, "y": 0.98 },
  2142. { "time": 1.8333, "x": 1, "y": 1 },
  2143. { "time": 2.2, "x": 0.98, "y": 0.98 },
  2144. { "time": 2.7333, "x": 1, "y": 1 },
  2145. { "time": 3.1, "x": 0.98, "y": 0.98 },
  2146. { "time": 3.6667, "x": 1, "y": 1 }
  2147. ]
  2148. }
  2149. }
  2150. },
  2151. "stand2": {
  2152. "slots": {
  2153. "1": {
  2154. "color": [
  2155. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  2156. { "time": 0.4667, "color": "ffffff00" },
  2157. { "time": 0.6667, "color": "ffffffff" }
  2158. ]
  2159. },
  2160. "2": {
  2161. "color": [
  2162. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  2163. { "time": 0.6667, "color": "ffffff00" },
  2164. { "time": 0.8333, "color": "ffffffff" }
  2165. ]
  2166. },
  2167. "3": {
  2168. "color": [
  2169. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  2170. { "time": 0.8333, "color": "ffffff00" },
  2171. { "time": 1, "color": "ffffffff" }
  2172. ]
  2173. },
  2174. "4": {
  2175. "color": [
  2176. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  2177. { "time": 1, "color": "ffffff00" },
  2178. { "time": 1.1333, "color": "ffffffff" }
  2179. ]
  2180. },
  2181. "5": {
  2182. "color": [
  2183. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  2184. { "time": 1.1333, "color": "ffffff00" },
  2185. { "time": 1.3333, "color": "ffffffff" }
  2186. ]
  2187. },
  2188. "biyan": {
  2189. "attachment": [
  2190. { "time": 0.0667, "name": "biyan" },
  2191. { "time": 0.1667, "name": null }
  2192. ]
  2193. },
  2194. "meimao": {
  2195. "attachment": [
  2196. { "time": 0, "name": null },
  2197. { "time": 0.0667, "name": null }
  2198. ]
  2199. },
  2200. "teshudongzuomeimao": {
  2201. "attachment": [
  2202. { "time": 0, "name": "teshudongzuomeimao" },
  2203. { "time": 0.0667, "name": "teshudongzuomeimao" }
  2204. ]
  2205. },
  2206. "teshuyoushou1": {
  2207. "attachment": [
  2208. { "time": 0.2333, "name": "teshuyoushou1" }
  2209. ]
  2210. },
  2211. "teshuyoushou2": {
  2212. "attachment": [
  2213. { "time": 0.2333, "name": "teshuyoushou2" }
  2214. ]
  2215. },
  2216. "teshuzuoshou1": {
  2217. "attachment": [
  2218. { "time": 0.2333, "name": "teshuzuoshou1" }
  2219. ]
  2220. },
  2221. "teshuzuoshou2": {
  2222. "attachment": [
  2223. { "time": 0.2333, "name": "teshuzuoshou2" }
  2224. ]
  2225. },
  2226. "yanlei0001": {
  2227. "color": [
  2228. { "time": 0.1667, "color": "ffffff00" },
  2229. { "time": 0.9, "color": "ffffffff" },
  2230. { "time": 1.2667, "color": "ffffff00" },
  2231. { "time": 1.8333, "color": "ffffffff" },
  2232. { "time": 2.2, "color": "ffffff00" },
  2233. { "time": 2.7333, "color": "ffffffff" },
  2234. { "time": 3.1, "color": "ffffff00" },
  2235. { "time": 3.6667, "color": "ffffffff" }
  2236. ],
  2237. "attachment": [
  2238. { "time": 0, "name": null },
  2239. { "time": 0.4333, "name": "yanlei0001" }
  2240. ]
  2241. },
  2242. "yanlei1": {
  2243. "color": [
  2244. { "time": 0.1667, "color": "ffffff00" },
  2245. { "time": 0.9, "color": "ffffffff" },
  2246. { "time": 1.2667, "color": "ffffff00" },
  2247. { "time": 1.8333, "color": "ffffffff" },
  2248. { "time": 2.2, "color": "ffffff00" },
  2249. { "time": 2.7333, "color": "ffffffff" },
  2250. { "time": 3.1, "color": "ffffff00" },
  2251. { "time": 3.6667, "color": "ffffffff" }
  2252. ],
  2253. "attachment": [
  2254. { "time": 0, "name": null },
  2255. { "time": 0.4333, "name": "yanlei0001" }
  2256. ]
  2257. },
  2258. "yanlei0002": {
  2259. "color": [
  2260. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  2261. { "time": 0.9, "color": "ffffff00" },
  2262. { "time": 1.2667, "color": "ffffffc4" },
  2263. { "time": 1.8333, "color": "ffffff00" },
  2264. { "time": 2.2, "color": "ffffffc4" },
  2265. { "time": 2.7333, "color": "ffffff00" },
  2266. { "time": 3.1, "color": "ffffffc4" },
  2267. { "time": 3.6667, "color": "ffffff00" }
  2268. ],
  2269. "attachment": [
  2270. { "time": 0, "name": null },
  2271. { "time": 0.4333, "name": "yanlei0002" }
  2272. ]
  2273. },
  2274. "yanlei2": {
  2275. "color": [
  2276. { "time": 0.9, "color": "ffffff00" },
  2277. { "time": 1.2667, "color": "ffffffba" },
  2278. { "time": 1.8333, "color": "ffffff00" },
  2279. { "time": 2.2, "color": "ffffffba" },
  2280. { "time": 2.7333, "color": "ffffff00" },
  2281. { "time": 3.1, "color": "ffffffba" },
  2282. { "time": 3.6667, "color": "ffffff00" }
  2283. ],
  2284. "attachment": [
  2285. { "time": 0, "name": null },
  2286. { "time": 0.9, "name": "yanlei0002" },
  2287. { "time": 1.8333, "name": "yanlei0002" },
  2288. { "time": 2.7333, "name": "yanlei0002" },
  2289. { "time": 3.6667, "name": "yanlei0002" }
  2290. ]
  2291. },
  2292. "youshou": {
  2293. "attachment": [
  2294. { "time": 0.2333, "name": null },
  2295. { "time": 0.3333, "name": null }
  2296. ]
  2297. },
  2298. "youyan": {
  2299. "attachment": [
  2300. { "time": 0.0667, "name": null },
  2301. { "time": 0.1667, "name": "youyan" }
  2302. ]
  2303. },
  2304. "youyangaoguang": {
  2305. "attachment": [
  2306. { "time": 0.0667, "name": null },
  2307. { "time": 0.1667, "name": "youyangaoguang" }
  2308. ]
  2309. },
  2310. "zuoshou": {
  2311. "attachment": [
  2312. { "time": 0.2333, "name": null },
  2313. { "time": 0.3333, "name": null }
  2314. ]
  2315. },
  2316. "zuoyan": {
  2317. "attachment": [
  2318. { "time": 0.0667, "name": null },
  2319. { "time": 0.1667, "name": "zuoyan" }
  2320. ]
  2321. },
  2322. "zuoyangaoguang": {
  2323. "attachment": [
  2324. { "time": 0.0667, "name": null },
  2325. { "time": 0.1667, "name": "zuoyangaoguang" }
  2326. ]
  2327. }
  2328. },
  2329. "bones": {
  2330. "root": {
  2331. "rotate": [
  2332. { "time": 0, "angle": 0 }
  2333. ],
  2334. "translate": [
  2335. { "time": 0, "x": 0, "y": 0 }
  2336. ],
  2337. "scale": [
  2338. { "time": 0, "x": -0.65, "y": 0.65 }
  2339. ]
  2340. },
  2341. "bone": {
  2342. "rotate": [
  2343. { "time": 0, "angle": 0, "curve": "stepped" },
  2344. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2345. { "time": 0.3333, "angle": 0 }
  2346. ],
  2347. "translate": [
  2348. { "time": 0, "x": 0, "y": 0 },
  2349. { "time": 0.1667, "x": 0, "y": -1.18 },
  2350. { "time": 0.3333, "x": 1.75, "y": 0 }
  2351. ],
  2352. "scale": [
  2353. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2354. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2355. { "time": 0.3333, "x": 1, "y": 1 }
  2356. ]
  2357. },
  2358. "bone2": {
  2359. "rotate": [
  2360. { "time": 0, "angle": 0, "curve": "stepped" },
  2361. { "time": 0.1667, "angle": 0 },
  2362. { "time": 0.3333, "angle": -1.16 }
  2363. ],
  2364. "translate": [
  2365. { "time": 0, "x": 0, "y": 0 },
  2366. { "time": 0.1667, "x": 0, "y": -1.01 },
  2367. { "time": 0.3333, "x": 0, "y": 0 }
  2368. ],
  2369. "scale": [
  2370. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2371. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2372. { "time": 0.3333, "x": 1, "y": 1 }
  2373. ]
  2374. },
  2375. "bone3": {
  2376. "rotate": [
  2377. { "time": 0, "angle": 0, "curve": "stepped" },
  2378. { "time": 0.1667, "angle": 0 },
  2379. { "time": 0.3333, "angle": 1.47 }
  2380. ],
  2381. "translate": [
  2382. { "time": 0, "x": 0, "y": 0 },
  2383. { "time": 0.1667, "x": -1.01, "y": 0 },
  2384. { "time": 0.3333, "x": 0, "y": 0 }
  2385. ],
  2386. "scale": [
  2387. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2388. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2389. { "time": 0.3333, "x": 1, "y": 1 }
  2390. ]
  2391. },
  2392. "bone4": {
  2393. "rotate": [
  2394. { "time": 0, "angle": 1.78 },
  2395. { "time": 0.1667, "angle": -5.88 },
  2396. { "time": 0.3333, "angle": -5.17 }
  2397. ],
  2398. "translate": [
  2399. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2400. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2401. { "time": 0.3333, "x": 0, "y": 0 }
  2402. ],
  2403. "scale": [
  2404. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2405. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2406. { "time": 0.3333, "x": 1, "y": 1 }
  2407. ]
  2408. },
  2409. "bone5": {
  2410. "rotate": [
  2411. { "time": 0, "angle": -10.24 },
  2412. { "time": 0.1667, "angle": -8.01 },
  2413. { "time": 0.3333, "angle": -114.91 }
  2414. ],
  2415. "translate": [
  2416. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2417. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2418. { "time": 0.3333, "x": 0, "y": 0 }
  2419. ],
  2420. "scale": [
  2421. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2422. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2423. { "time": 0.3333, "x": 1, "y": 1 }
  2424. ]
  2425. },
  2426. "bone6": {
  2427. "rotate": [
  2428. { "time": 0, "angle": 0, "curve": "stepped" },
  2429. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2430. { "time": 0.3333, "angle": 0 }
  2431. ],
  2432. "translate": [
  2433. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2434. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2435. { "time": 0.3333, "x": 0, "y": 0 }
  2436. ],
  2437. "scale": [
  2438. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2439. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2440. { "time": 0.3333, "x": 1, "y": 1 }
  2441. ]
  2442. },
  2443. "bone7": {
  2444. "rotate": [
  2445. { "time": 0, "angle": 0.37 },
  2446. { "time": 0.1667, "angle": 8.12 },
  2447. { "time": 0.2333, "angle": -7.03 },
  2448. { "time": 0.3333, "angle": 0 }
  2449. ],
  2450. "translate": [
  2451. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2452. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2453. { "time": 0.3333, "x": 0, "y": 0 }
  2454. ],
  2455. "scale": [
  2456. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2457. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2458. { "time": 0.3333, "x": 1, "y": 1 }
  2459. ]
  2460. },
  2461. "bone8": {
  2462. "rotate": [
  2463. { "time": 0, "angle": -9.78 },
  2464. { "time": 0.1667, "angle": 8.34 },
  2465. { "time": 0.3333, "angle": 100.53 }
  2466. ],
  2467. "translate": [
  2468. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2469. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2470. { "time": 0.3333, "x": 0, "y": 0 }
  2471. ],
  2472. "scale": [
  2473. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2474. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2475. { "time": 0.3333, "x": 1, "y": 1 }
  2476. ]
  2477. },
  2478. "bone9": {
  2479. "rotate": [
  2480. { "time": 0, "angle": 0, "curve": "stepped" },
  2481. { "time": 0.1667, "angle": 0 },
  2482. { "time": 0.3333, "angle": 69.29 }
  2483. ],
  2484. "translate": [
  2485. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2486. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2487. { "time": 0.3333, "x": 0, "y": 0 }
  2488. ],
  2489. "scale": [
  2490. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2491. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2492. { "time": 0.3333, "x": 1, "y": 1 }
  2493. ]
  2494. },
  2495. "bone10": {
  2496. "rotate": [
  2497. { "time": 0, "angle": 0, "curve": "stepped" },
  2498. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2499. { "time": 0.3333, "angle": 0 }
  2500. ],
  2501. "translate": [
  2502. { "time": 0, "x": 0, "y": 0 },
  2503. { "time": 0.1667, "x": -0.24, "y": -0.26 },
  2504. { "time": 0.3333, "x": 0, "y": 0 }
  2505. ],
  2506. "scale": [
  2507. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2508. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2509. { "time": 0.3333, "x": 1, "y": 1 }
  2510. ]
  2511. },
  2512. "bone11": {
  2513. "rotate": [
  2514. { "time": 0, "angle": 0, "curve": "stepped" },
  2515. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  2516. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2517. { "time": 0.2667, "angle": 0 }
  2518. ],
  2519. "translate": [
  2520. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2521. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  2522. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2523. { "time": 0.2667, "x": 0, "y": 0 }
  2524. ],
  2525. "scale": [
  2526. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2527. { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
  2528. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2529. { "time": 0.2667, "x": 1, "y": 1 }
  2530. ]
  2531. },
  2532. "bone12": {
  2533. "rotate": [
  2534. { "time": 0, "angle": 0, "curve": "stepped" },
  2535. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  2536. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2537. { "time": 0.2667, "angle": 0 }
  2538. ],
  2539. "translate": [
  2540. { "time": 0, "x": 0, "y": 0 },
  2541. { "time": 0.0667, "x": -0.65, "y": 0, "curve": "stepped" },
  2542. { "time": 0.1667, "x": -0.65, "y": 0 },
  2543. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2544. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2545. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2546. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2547. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2548. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2549. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2550. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2551. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2552. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  2553. { "time": 3.4, "x": 0, "y": 0 }
  2554. ],
  2555. "scale": [
  2556. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2557. { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
  2558. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2559. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2560. { "time": 0.5, "x": 1, "y": 1 },
  2561. { "time": 0.7667, "x": 1, "y": 0.96 },
  2562. { "time": 1.2333, "x": 1, "y": 1 },
  2563. { "time": 1.4667, "x": 1, "y": 0.96 },
  2564. { "time": 1.9667, "x": 1, "y": 1 },
  2565. { "time": 2.2, "x": 1, "y": 0.96 },
  2566. { "time": 2.6667, "x": 1, "y": 1 },
  2567. { "time": 2.9333, "x": 1, "y": 0.96 },
  2568. { "time": 3.4, "x": 1, "y": 1 },
  2569. { "time": 3.6667, "x": 1, "y": 0.96 }
  2570. ]
  2571. },
  2572. "bone13": {
  2573. "rotate": [
  2574. { "time": 0, "angle": 0, "curve": "stepped" },
  2575. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2576. { "time": 0.3333, "angle": 0 }
  2577. ],
  2578. "translate": [
  2579. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2580. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2581. { "time": 0.3333, "x": 0, "y": 0 }
  2582. ],
  2583. "scale": [
  2584. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2585. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2586. { "time": 0.3333, "x": 1, "y": 1 }
  2587. ]
  2588. },
  2589. "bone14": {
  2590. "rotate": [
  2591. { "time": 0, "angle": 0, "curve": "stepped" },
  2592. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2593. { "time": 0.3333, "angle": 0 }
  2594. ],
  2595. "translate": [
  2596. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2597. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2598. { "time": 0.3333, "x": 0, "y": 0 }
  2599. ],
  2600. "scale": [
  2601. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2602. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2603. { "time": 0.3333, "x": 1, "y": 1 }
  2604. ]
  2605. },
  2606. "bone15": {
  2607. "rotate": [
  2608. { "time": 0, "angle": 0 },
  2609. { "time": 0.1667, "angle": -4.03 },
  2610. { "time": 0.3333, "angle": 0 }
  2611. ],
  2612. "translate": [
  2613. { "time": 0, "x": 0, "y": 0 },
  2614. { "time": 0.1667, "x": -0.2, "y": 0.8 },
  2615. { "time": 0.3333, "x": 0, "y": 0 }
  2616. ],
  2617. "scale": [
  2618. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2619. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2620. { "time": 0.3333, "x": 1, "y": 1 }
  2621. ]
  2622. },
  2623. "bone16": {
  2624. "rotate": [
  2625. { "time": 0, "angle": 0 },
  2626. { "time": 0.1667, "angle": 10.51 },
  2627. { "time": 0.3333, "angle": 0 }
  2628. ],
  2629. "translate": [
  2630. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2631. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2632. { "time": 0.3333, "x": 0, "y": 0 }
  2633. ],
  2634. "scale": [
  2635. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2636. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2637. { "time": 0.3333, "x": 1, "y": 1 }
  2638. ]
  2639. },
  2640. "bone17": {
  2641. "rotate": [
  2642. { "time": 0, "angle": 0, "curve": "stepped" },
  2643. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2644. { "time": 0.3333, "angle": 0 }
  2645. ],
  2646. "translate": [
  2647. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2648. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2649. { "time": 0.3333, "x": 0, "y": 0 }
  2650. ],
  2651. "scale": [
  2652. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2653. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2654. { "time": 0.3333, "x": 1, "y": 1 }
  2655. ]
  2656. },
  2657. "bone18": {
  2658. "rotate": [
  2659. { "time": 0, "angle": 0 },
  2660. { "time": 0.1667, "angle": -4.47 },
  2661. { "time": 0.3333, "angle": -1.06 }
  2662. ],
  2663. "translate": [
  2664. { "time": 0, "x": 0, "y": 0 },
  2665. { "time": 0.1667, "x": 0.88, "y": 1.25 },
  2666. { "time": 0.3333, "x": 0, "y": 0 }
  2667. ],
  2668. "scale": [
  2669. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2670. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2671. { "time": 0.3333, "x": 1, "y": 1 }
  2672. ]
  2673. },
  2674. "bone19": {
  2675. "rotate": [
  2676. { "time": 0, "angle": 0 },
  2677. { "time": 0.1667, "angle": 5.06 },
  2678. { "time": 0.3333, "angle": 0 }
  2679. ],
  2680. "translate": [
  2681. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2682. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2683. { "time": 0.3333, "x": 0, "y": 0 }
  2684. ],
  2685. "scale": [
  2686. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2687. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2688. { "time": 0.3333, "x": 1, "y": 1 }
  2689. ]
  2690. },
  2691. "bone20": {
  2692. "rotate": [
  2693. { "time": 0, "angle": 0, "curve": "stepped" },
  2694. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2695. { "time": 0.3333, "angle": 0 }
  2696. ],
  2697. "translate": [
  2698. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2699. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2700. { "time": 0.3333, "x": 0, "y": 0 }
  2701. ],
  2702. "scale": [
  2703. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2704. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2705. { "time": 0.3333, "x": 1, "y": 1 }
  2706. ]
  2707. },
  2708. "bone21": {
  2709. "rotate": [
  2710. { "time": 0, "angle": 0, "curve": "stepped" },
  2711. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  2712. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2713. { "time": 0.2667, "angle": 0 }
  2714. ],
  2715. "translate": [
  2716. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2717. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  2718. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2719. { "time": 0.2667, "x": 0, "y": 0 }
  2720. ],
  2721. "scale": [
  2722. { "time": 0, "x": 1, "y": 1 },
  2723. { "time": 0.0667, "x": 0.395, "y": 1, "curve": "stepped" },
  2724. { "time": 0.1667, "x": 0.395, "y": 1 },
  2725. { "time": 0.2667, "x": 1, "y": 1 }
  2726. ]
  2727. },
  2728. "bone22": {
  2729. "rotate": [
  2730. { "time": 0, "angle": 0, "curve": "stepped" },
  2731. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  2732. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2733. { "time": 0.2667, "angle": 0 }
  2734. ],
  2735. "translate": [
  2736. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2737. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  2738. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2739. { "time": 0.2667, "x": 0, "y": 0 }
  2740. ],
  2741. "scale": [
  2742. { "time": 0, "x": 1, "y": 1 },
  2743. { "time": 0.0667, "x": 0.435, "y": 1, "curve": "stepped" },
  2744. { "time": 0.1667, "x": 0.435, "y": 1 },
  2745. { "time": 0.2667, "x": 1, "y": 1 }
  2746. ]
  2747. },
  2748. "bone23": {
  2749. "rotate": [
  2750. { "time": 0, "angle": 0, "curve": "stepped" },
  2751. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  2752. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2753. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2754. { "time": 0.4, "angle": 30 },
  2755. { "time": 0.5333, "angle": 0 },
  2756. { "time": 0.6333, "angle": 30 },
  2757. { "time": 0.7667, "angle": 0 },
  2758. { "time": 0.8667, "angle": 30 },
  2759. { "time": 1, "angle": 0 },
  2760. { "time": 1.1, "angle": 30 },
  2761. { "time": 1.2333, "angle": 0 },
  2762. { "time": 1.3333, "angle": 30 },
  2763. { "time": 1.4667, "angle": 0 },
  2764. { "time": 1.5667, "angle": 30 },
  2765. { "time": 1.7, "angle": 0 },
  2766. { "time": 1.8, "angle": 30 },
  2767. { "time": 1.9333, "angle": 0 },
  2768. { "time": 2.0333, "angle": 30 },
  2769. { "time": 2.1667, "angle": 0 },
  2770. { "time": 2.2667, "angle": 30 },
  2771. { "time": 2.4, "angle": 0 },
  2772. { "time": 2.5, "angle": 30 },
  2773. { "time": 2.6333, "angle": 0 },
  2774. { "time": 2.7333, "angle": 30 },
  2775. { "time": 2.8667, "angle": 0 },
  2776. { "time": 2.9667, "angle": 30 },
  2777. { "time": 3.1, "angle": 0 },
  2778. { "time": 3.2, "angle": 30 },
  2779. { "time": 3.3333, "angle": 0 },
  2780. { "time": 3.4333, "angle": 30 },
  2781. { "time": 3.5667, "angle": 0 },
  2782. { "time": 3.6667, "angle": 30 }
  2783. ],
  2784. "translate": [
  2785. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2786. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  2787. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2788. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2789. { "time": 0.4, "x": -0.6, "y": 0.85 },
  2790. { "time": 0.5333, "x": 0, "y": 0 },
  2791. { "time": 0.6333, "x": -0.6, "y": 0.85 },
  2792. { "time": 0.7667, "x": 0, "y": 0 },
  2793. { "time": 0.8667, "x": -0.6, "y": 0.85 },
  2794. { "time": 1, "x": 0, "y": 0 },
  2795. { "time": 1.1, "x": -0.6, "y": 0.85 },
  2796. { "time": 1.2333, "x": 0, "y": 0 },
  2797. { "time": 1.3333, "x": -0.6, "y": 0.85 },
  2798. { "time": 1.4667, "x": 0, "y": 0 },
  2799. { "time": 1.5667, "x": -0.6, "y": 0.85 },
  2800. { "time": 1.7, "x": 0, "y": 0 },
  2801. { "time": 1.8, "x": -0.6, "y": 0.85 },
  2802. { "time": 1.9333, "x": 0, "y": 0 },
  2803. { "time": 2.0333, "x": -0.6, "y": 0.85 },
  2804. { "time": 2.1667, "x": 0, "y": 0 },
  2805. { "time": 2.2667, "x": -0.6, "y": 0.85 },
  2806. { "time": 2.4, "x": 0, "y": 0 },
  2807. { "time": 2.5, "x": -0.6, "y": 0.85 },
  2808. { "time": 2.6333, "x": 0, "y": 0 },
  2809. { "time": 2.7333, "x": -0.6, "y": 0.85 },
  2810. { "time": 2.8667, "x": 0, "y": 0 },
  2811. { "time": 2.9667, "x": -0.6, "y": 0.85 },
  2812. { "time": 3.1, "x": 0, "y": 0 },
  2813. { "time": 3.2, "x": -0.6, "y": 0.85 },
  2814. { "time": 3.3333, "x": 0, "y": 0 },
  2815. { "time": 3.4333, "x": -0.6, "y": 0.85 },
  2816. { "time": 3.5667, "x": 0, "y": 0 },
  2817. { "time": 3.6667, "x": -0.6, "y": 0.85 }
  2818. ],
  2819. "scale": [
  2820. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2821. { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
  2822. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2823. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2824. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2825. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2826. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2827. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2828. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2829. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2830. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2831. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2832. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2833. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2834. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2835. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2836. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2837. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  2838. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2839. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2840. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  2841. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  2842. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2843. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  2844. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2845. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  2846. { "time": 2.9667, "x": 1, "y": 1, "curve": "stepped" },
  2847. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2848. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  2849. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2850. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  2851. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2852. { "time": 3.6667, "x": 1, "y": 1 }
  2853. ]
  2854. },
  2855. "bone24": {
  2856. "rotate": [
  2857. { "time": 0, "angle": 0, "curve": "stepped" },
  2858. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  2859. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2860. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2861. { "time": 0.4, "angle": 30 },
  2862. { "time": 0.5333, "angle": 0 },
  2863. { "time": 0.6333, "angle": 30 },
  2864. { "time": 0.7667, "angle": 0 },
  2865. { "time": 0.8667, "angle": 30 },
  2866. { "time": 1, "angle": 0 },
  2867. { "time": 1.1, "angle": 30 },
  2868. { "time": 1.2333, "angle": 0 },
  2869. { "time": 1.3333, "angle": 30 },
  2870. { "time": 1.4667, "angle": 0 },
  2871. { "time": 1.5667, "angle": 30 },
  2872. { "time": 1.7, "angle": 0 },
  2873. { "time": 1.8, "angle": 30 },
  2874. { "time": 1.9333, "angle": 0 },
  2875. { "time": 2.0333, "angle": 30 },
  2876. { "time": 2.1667, "angle": 0 },
  2877. { "time": 2.2667, "angle": 30 },
  2878. { "time": 2.4, "angle": 0 },
  2879. { "time": 2.5, "angle": 30 },
  2880. { "time": 2.6333, "angle": 0 },
  2881. { "time": 2.7333, "angle": 30 },
  2882. { "time": 2.8667, "angle": 0 },
  2883. { "time": 2.9667, "angle": 30 },
  2884. { "time": 3.1, "angle": 0 },
  2885. { "time": 3.2, "angle": 30 },
  2886. { "time": 3.3333, "angle": 0 },
  2887. { "time": 3.4333, "angle": 30 },
  2888. { "time": 3.5667, "angle": 0 },
  2889. { "time": 3.6667, "angle": 30 }
  2890. ],
  2891. "translate": [
  2892. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2893. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  2894. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2895. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2896. { "time": 0.4, "x": 0.44, "y": 1.83 },
  2897. { "time": 0.5333, "x": 0, "y": 0 },
  2898. { "time": 0.6333, "x": 0.44, "y": 1.83 },
  2899. { "time": 0.7667, "x": 0, "y": 0 },
  2900. { "time": 0.8667, "x": 0.44, "y": 1.83 },
  2901. { "time": 1, "x": 0, "y": 0 },
  2902. { "time": 1.1, "x": 0.44, "y": 1.83 },
  2903. { "time": 1.2333, "x": 0, "y": 0 },
  2904. { "time": 1.3333, "x": 0.44, "y": 1.83 },
  2905. { "time": 1.4667, "x": 0, "y": 0 },
  2906. { "time": 1.5667, "x": 0.44, "y": 1.83 },
  2907. { "time": 1.7, "x": 0, "y": 0 },
  2908. { "time": 1.8, "x": 0.44, "y": 1.83 },
  2909. { "time": 1.9333, "x": 0, "y": 0 },
  2910. { "time": 2.0333, "x": 0.44, "y": 1.83 },
  2911. { "time": 2.1667, "x": 0, "y": 0 },
  2912. { "time": 2.2667, "x": 0.44, "y": 1.83 },
  2913. { "time": 2.4, "x": 0, "y": 0 },
  2914. { "time": 2.5, "x": 0.44, "y": 1.83 },
  2915. { "time": 2.6333, "x": 0, "y": 0 },
  2916. { "time": 2.7333, "x": 0.44, "y": 1.83 },
  2917. { "time": 2.8667, "x": 0, "y": 0 },
  2918. { "time": 2.9667, "x": 0.44, "y": 1.83 },
  2919. { "time": 3.1, "x": 0, "y": 0 },
  2920. { "time": 3.2, "x": 0.44, "y": 1.83 },
  2921. { "time": 3.3333, "x": 0, "y": 0 },
  2922. { "time": 3.4333, "x": 0.44, "y": 1.83 },
  2923. { "time": 3.5667, "x": 0, "y": 0 },
  2924. { "time": 3.6667, "x": 0.44, "y": 1.83 }
  2925. ],
  2926. "scale": [
  2927. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2928. { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
  2929. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2930. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2931. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2932. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2933. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2934. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2935. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2936. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2937. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2938. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2939. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2940. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2941. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2942. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2943. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2944. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  2945. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2946. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2947. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  2948. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  2949. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2950. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  2951. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2952. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  2953. { "time": 2.9667, "x": 1, "y": 1, "curve": "stepped" },
  2954. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2955. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  2956. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2957. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  2958. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2959. { "time": 3.6667, "x": 1, "y": 1 }
  2960. ]
  2961. },
  2962. "bone25": {
  2963. "rotate": [
  2964. { "time": 0, "angle": 0, "curve": "stepped" },
  2965. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2966. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2967. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  2968. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  2969. { "time": 3.6667, "angle": 0 }
  2970. ],
  2971. "translate": [
  2972. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2973. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2974. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2975. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  2976. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2977. { "time": 3.6667, "x": 0, "y": 0 }
  2978. ],
  2979. "scale": [
  2980. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2981. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2982. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2983. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  2984. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2985. { "time": 3.6667, "x": 1, "y": 1 }
  2986. ]
  2987. },
  2988. "bone26": {
  2989. "rotate": [
  2990. { "time": 0, "angle": 2.81 },
  2991. { "time": 0.1667, "angle": 0 },
  2992. {
  2993. "time": 0.3333,
  2994. "angle": 2.81,
  2995. "curve": [ 0.25, 0, 0.75, 1 ]
  2996. },
  2997. {
  2998. "time": 1.4333,
  2999. "angle": 3.55,
  3000. "curve": [ 0.25, 0, 0.75, 1 ]
  3001. },
  3002. {
  3003. "time": 2.5333,
  3004. "angle": 2.81,
  3005. "curve": [ 0.25, 0, 0.75, 1 ]
  3006. },
  3007. { "time": 3.6667, "angle": 3.55 }
  3008. ],
  3009. "translate": [
  3010. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3011. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3012. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3013. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  3014. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3015. { "time": 3.6667, "x": 0, "y": 0 }
  3016. ],
  3017. "scale": [
  3018. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3019. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3020. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3021. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  3022. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3023. { "time": 3.6667, "x": 1, "y": 1 }
  3024. ]
  3025. },
  3026. "bone27": {
  3027. "rotate": [
  3028. { "time": 0, "angle": 0, "curve": "stepped" },
  3029. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3030. {
  3031. "time": 0.3333,
  3032. "angle": 0,
  3033. "curve": [ 0.25, 0, 0.75, 1 ]
  3034. },
  3035. {
  3036. "time": 1.4333,
  3037. "angle": 7.32,
  3038. "curve": [ 0.25, 0, 0.75, 1 ]
  3039. },
  3040. {
  3041. "time": 2.5333,
  3042. "angle": 0,
  3043. "curve": [ 0.25, 0, 0.75, 1 ]
  3044. },
  3045. { "time": 3.6667, "angle": 7.32 }
  3046. ],
  3047. "translate": [
  3048. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3049. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3050. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3051. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  3052. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3053. { "time": 3.6667, "x": 0, "y": 0 }
  3054. ],
  3055. "scale": [
  3056. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3057. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3058. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3059. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  3060. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3061. { "time": 3.6667, "x": 1, "y": 1 }
  3062. ]
  3063. },
  3064. "bone28": {
  3065. "rotate": [
  3066. { "time": 0, "angle": 0, "curve": "stepped" },
  3067. { "time": 0.1667, "angle": 0 },
  3068. {
  3069. "time": 0.3333,
  3070. "angle": -1.41,
  3071. "curve": [ 0.25, 0, 0.75, 1 ]
  3072. },
  3073. {
  3074. "time": 1.4333,
  3075. "angle": 0,
  3076. "curve": [ 0.25, 0, 0.75, 1 ]
  3077. },
  3078. {
  3079. "time": 2.5333,
  3080. "angle": -1.41,
  3081. "curve": [ 0.25, 0, 0.75, 1 ]
  3082. },
  3083. { "time": 3.6667, "angle": 0 }
  3084. ],
  3085. "translate": [
  3086. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3087. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3088. {
  3089. "time": 0.3333,
  3090. "x": 0,
  3091. "y": 0,
  3092. "curve": [ 0.25, 0, 0.75, 1 ]
  3093. },
  3094. {
  3095. "time": 1.4333,
  3096. "x": -1.91,
  3097. "y": 0.1,
  3098. "curve": [ 0.25, 0, 0.75, 1 ]
  3099. },
  3100. {
  3101. "time": 2.5333,
  3102. "x": 0,
  3103. "y": 0,
  3104. "curve": [ 0.25, 0, 0.75, 1 ]
  3105. },
  3106. { "time": 3.6667, "x": -1.91, "y": 0.1 }
  3107. ],
  3108. "scale": [
  3109. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3110. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3111. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3112. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  3113. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3114. { "time": 3.6667, "x": 1, "y": 1 }
  3115. ]
  3116. },
  3117. "bone29": {
  3118. "rotate": [
  3119. { "time": 0, "angle": 7.85 },
  3120. { "time": 0.1667, "angle": 7.8 },
  3121. {
  3122. "time": 0.3333,
  3123. "angle": 7.85,
  3124. "curve": [ 0.25, 0, 0.75, 1 ]
  3125. },
  3126. {
  3127. "time": 1.4333,
  3128. "angle": 1.82,
  3129. "curve": [ 0.25, 0, 0.75, 1 ]
  3130. },
  3131. {
  3132. "time": 2.5333,
  3133. "angle": 7.85,
  3134. "curve": [ 0.25, 0, 0.75, 1 ]
  3135. },
  3136. { "time": 3.6667, "angle": -0.15 }
  3137. ],
  3138. "translate": [
  3139. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3140. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3141. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3142. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  3143. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3144. { "time": 3.6667, "x": 0, "y": 0 }
  3145. ],
  3146. "scale": [
  3147. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3148. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3149. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3150. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  3151. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3152. { "time": 3.6667, "x": 1, "y": 1 }
  3153. ]
  3154. },
  3155. "bone30": {
  3156. "rotate": [
  3157. { "time": 0, "angle": 7.85 },
  3158. { "time": 0.1667, "angle": 7.8 },
  3159. {
  3160. "time": 0.3333,
  3161. "angle": 12.58,
  3162. "curve": [ 0.25, 0, 0.75, 1 ]
  3163. },
  3164. {
  3165. "time": 1.4333,
  3166. "angle": 10.69,
  3167. "curve": [ 0.25, 0, 0.75, 1 ]
  3168. },
  3169. {
  3170. "time": 2.5333,
  3171. "angle": 7.85,
  3172. "curve": [ 0.25, 0, 0.75, 1 ]
  3173. },
  3174. { "time": 3.6667, "angle": 10.69 }
  3175. ],
  3176. "translate": [
  3177. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3178. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3179. {
  3180. "time": 0.3333,
  3181. "x": 0,
  3182. "y": 0,
  3183. "curve": [ 0.25, 0, 0.75, 1 ]
  3184. },
  3185. {
  3186. "time": 1.4333,
  3187. "x": -1.43,
  3188. "y": -0.27,
  3189. "curve": [ 0.25, 0, 0.75, 1 ]
  3190. },
  3191. {
  3192. "time": 2.5333,
  3193. "x": 0,
  3194. "y": 0,
  3195. "curve": [ 0.25, 0, 0.75, 1 ]
  3196. },
  3197. { "time": 3.6667, "x": -1.43, "y": -0.27 }
  3198. ],
  3199. "scale": [
  3200. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3201. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3202. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3203. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  3204. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3205. { "time": 3.6667, "x": 1, "y": 1 }
  3206. ]
  3207. },
  3208. "bone31": {
  3209. "rotate": [
  3210. { "time": 0, "angle": 7.85 },
  3211. { "time": 0.1667, "angle": 7.8 },
  3212. {
  3213. "time": 0.3333,
  3214. "angle": 14.13,
  3215. "curve": [ 0.25, 0, 0.75, 1 ]
  3216. },
  3217. {
  3218. "time": 1.4333,
  3219. "angle": 15,
  3220. "curve": [ 0.25, 0, 0.75, 1 ]
  3221. },
  3222. {
  3223. "time": 2.5333,
  3224. "angle": 7.85,
  3225. "curve": [ 0.25, 0, 0.75, 1 ]
  3226. },
  3227. { "time": 3.6667, "angle": 15 }
  3228. ],
  3229. "translate": [
  3230. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3231. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3232. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3233. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  3234. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3235. { "time": 3.6667, "x": 0, "y": 0 }
  3236. ],
  3237. "scale": [
  3238. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3239. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3240. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3241. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  3242. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3243. { "time": 3.6667, "x": 1, "y": 1 }
  3244. ]
  3245. },
  3246. "bone32": {
  3247. "rotate": [
  3248. { "time": 0, "angle": 0, "curve": "stepped" },
  3249. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3250. {
  3251. "time": 0.3333,
  3252. "angle": 0,
  3253. "curve": [ 0.25, 0, 0.75, 1 ]
  3254. },
  3255. {
  3256. "time": 1.4333,
  3257. "angle": 1.85,
  3258. "curve": [ 0.25, 0, 0.75, 1 ]
  3259. },
  3260. {
  3261. "time": 2.5333,
  3262. "angle": 0,
  3263. "curve": [ 0.25, 0, 0.75, 1 ]
  3264. },
  3265. { "time": 3.6667, "angle": 1.85 }
  3266. ],
  3267. "translate": [
  3268. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3269. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3270. {
  3271. "time": 0.3333,
  3272. "x": 0,
  3273. "y": 0,
  3274. "curve": [ 0.25, 0, 0.75, 1 ]
  3275. },
  3276. {
  3277. "time": 1.4333,
  3278. "x": 2.16,
  3279. "y": 3.38,
  3280. "curve": [ 0.25, 0, 0.75, 1 ]
  3281. },
  3282. {
  3283. "time": 2.5333,
  3284. "x": 0,
  3285. "y": 0,
  3286. "curve": [ 0.25, 0, 0.75, 1 ]
  3287. },
  3288. { "time": 3.6667, "x": 2.16, "y": 3.38 }
  3289. ],
  3290. "scale": [
  3291. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3292. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3293. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3294. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  3295. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3296. { "time": 3.6667, "x": 1, "y": 1 }
  3297. ]
  3298. },
  3299. "bone33": {
  3300. "rotate": [
  3301. { "time": 0, "angle": 13.02 },
  3302. { "time": 0.1667, "angle": 0 },
  3303. {
  3304. "time": 0.3333,
  3305. "angle": 6.67,
  3306. "curve": [ 0.25, 0, 0.75, 1 ]
  3307. },
  3308. {
  3309. "time": 1.4333,
  3310. "angle": 10.8,
  3311. "curve": [ 0.25, 0, 0.75, 1 ]
  3312. },
  3313. {
  3314. "time": 2.5333,
  3315. "angle": 6.67,
  3316. "curve": [ 0.25, 0, 0.75, 1 ]
  3317. },
  3318. { "time": 3.6667, "angle": 10.8 }
  3319. ],
  3320. "translate": [
  3321. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3322. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3323. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3324. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  3325. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3326. { "time": 3.6667, "x": 0, "y": 0 }
  3327. ],
  3328. "scale": [
  3329. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3330. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3331. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3332. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  3333. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3334. { "time": 3.6667, "x": 1, "y": 1 }
  3335. ]
  3336. },
  3337. "bone34": {
  3338. "rotate": [
  3339. { "time": 0, "angle": -3.61 },
  3340. { "time": 0.1667, "angle": 0 },
  3341. {
  3342. "time": 0.3333,
  3343. "angle": -3.61,
  3344. "curve": [ 0.25, 0, 0.75, 1 ]
  3345. },
  3346. {
  3347. "time": 1.4333,
  3348. "angle": -13.34,
  3349. "curve": [ 0.25, 0, 0.75, 1 ]
  3350. },
  3351. {
  3352. "time": 2.5333,
  3353. "angle": -3.61,
  3354. "curve": [ 0.25, 0, 0.75, 1 ]
  3355. },
  3356. { "time": 3.6667, "angle": -13.34 }
  3357. ],
  3358. "translate": [
  3359. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3360. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3361. {
  3362. "time": 0.3333,
  3363. "x": 0,
  3364. "y": 0,
  3365. "curve": [ 0.25, 0, 0.75, 1 ]
  3366. },
  3367. {
  3368. "time": 1.4333,
  3369. "x": -1.38,
  3370. "y": 0.23,
  3371. "curve": [ 0.25, 0, 0.75, 1 ]
  3372. },
  3373. {
  3374. "time": 2.5333,
  3375. "x": 0,
  3376. "y": 0,
  3377. "curve": [ 0.25, 0, 0.75, 1 ]
  3378. },
  3379. { "time": 3.6667, "x": -1.38, "y": 0.23 }
  3380. ],
  3381. "scale": [
  3382. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3383. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3384. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3385. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  3386. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3387. { "time": 3.6667, "x": 1, "y": 1 }
  3388. ]
  3389. },
  3390. "bone35": {
  3391. "rotate": [
  3392. { "time": 0, "angle": 0, "curve": "stepped" },
  3393. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3394. {
  3395. "time": 0.3333,
  3396. "angle": 0,
  3397. "curve": [ 0.25, 0, 0.75, 1 ]
  3398. },
  3399. {
  3400. "time": 1.4333,
  3401. "angle": -12.09,
  3402. "curve": [ 0.25, 0, 0.75, 1 ]
  3403. },
  3404. {
  3405. "time": 2.5333,
  3406. "angle": 0,
  3407. "curve": [ 0.25, 0, 0.75, 1 ]
  3408. },
  3409. { "time": 3.6667, "angle": -12.09 }
  3410. ],
  3411. "translate": [
  3412. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3413. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3414. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3415. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  3416. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3417. { "time": 3.6667, "x": 0, "y": 0 }
  3418. ],
  3419. "scale": [
  3420. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3421. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3422. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3423. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  3424. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3425. { "time": 3.6667, "x": 1, "y": 1 }
  3426. ]
  3427. },
  3428. "bone36": {
  3429. "rotate": [
  3430. { "time": 0, "angle": 0, "curve": "stepped" },
  3431. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3432. {
  3433. "time": 0.3333,
  3434. "angle": 0,
  3435. "curve": [ 0.25, 0, 0.75, 1 ]
  3436. },
  3437. {
  3438. "time": 1.4333,
  3439. "angle": -0.5,
  3440. "curve": [ 0.25, 0, 0.75, 1 ]
  3441. },
  3442. {
  3443. "time": 2.5333,
  3444. "angle": 0,
  3445. "curve": [ 0.25, 0, 0.75, 1 ]
  3446. },
  3447. { "time": 3.6667, "angle": -0.5 }
  3448. ],
  3449. "translate": [
  3450. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3451. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3452. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3453. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  3454. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3455. { "time": 3.6667, "x": 0, "y": 0 }
  3456. ],
  3457. "scale": [
  3458. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3459. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3460. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3461. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  3462. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3463. { "time": 3.6667, "x": 1, "y": 1 }
  3464. ]
  3465. },
  3466. "bone43": {
  3467. "rotate": [
  3468. { "time": 0, "angle": 13.89 },
  3469. { "time": 0.1667, "angle": 0 },
  3470. { "time": 0.3333, "angle": 13.89 },
  3471. { "time": 1.4333, "angle": 15.48 },
  3472. { "time": 2.5333, "angle": 13.89 },
  3473. { "time": 3.6667, "angle": 15.48 }
  3474. ],
  3475. "translate": [
  3476. { "time": 0, "x": -4.46, "y": 7.66 },
  3477. { "time": 0.1667, "x": 0, "y": 0 },
  3478. { "time": 0.3333, "x": -4.46, "y": 7.66 },
  3479. { "time": 1.4333, "x": 0.55, "y": 5.43 },
  3480. { "time": 2.5333, "x": -4.46, "y": 7.66 },
  3481. { "time": 3.6667, "x": 0.55, "y": 5.43 }
  3482. ],
  3483. "scale": [
  3484. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3485. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3486. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3487. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  3488. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3489. { "time": 3.6667, "x": 1, "y": 1 }
  3490. ]
  3491. },
  3492. "bone49": {
  3493. "rotate": [
  3494. { "time": 0, "angle": 0, "curve": "stepped" },
  3495. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3496. { "time": 0.3333, "angle": 0 },
  3497. { "time": 1.4333, "angle": 10.38 },
  3498. { "time": 2.5333, "angle": 0 },
  3499. { "time": 3.6667, "angle": 10.38 }
  3500. ],
  3501. "translate": [
  3502. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3503. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3504. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3505. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  3506. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3507. { "time": 3.6667, "x": 0, "y": 0 }
  3508. ],
  3509. "scale": [
  3510. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3511. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3512. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3513. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  3514. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3515. { "time": 3.6667, "x": 1, "y": 1 }
  3516. ]
  3517. },
  3518. "bone50": {
  3519. "rotate": [
  3520. { "time": 0, "angle": 0, "curve": "stepped" },
  3521. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3522. { "time": 0.3333, "angle": 0 },
  3523. { "time": 1.4333, "angle": -4.42 },
  3524. { "time": 2.5333, "angle": 0 },
  3525. { "time": 3.6667, "angle": -4.42 }
  3526. ],
  3527. "translate": [
  3528. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3529. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3530. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3531. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  3532. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3533. { "time": 3.6667, "x": 0, "y": 0 }
  3534. ],
  3535. "scale": [
  3536. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3537. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3538. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3539. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  3540. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3541. { "time": 3.6667, "x": 1, "y": 1 }
  3542. ]
  3543. },
  3544. "bone51": {
  3545. "rotate": [
  3546. { "time": 0, "angle": 0, "curve": "stepped" },
  3547. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3548. { "time": 0.3333, "angle": 0 }
  3549. ],
  3550. "translate": [
  3551. { "time": 0, "x": 0, "y": 0 },
  3552. { "time": 0.1667, "x": 0.21, "y": -0.86 },
  3553. { "time": 0.3333, "x": 0, "y": 0 }
  3554. ],
  3555. "scale": [
  3556. { "time": 0, "x": 1, "y": 1 },
  3557. { "time": 0.1667, "x": 1, "y": 1.1 },
  3558. { "time": 0.3333, "x": 1, "y": 1 }
  3559. ]
  3560. },
  3561. "bone52": {
  3562. "rotate": [
  3563. { "time": 0, "angle": 0, "curve": "stepped" },
  3564. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3565. { "time": 0.3333, "angle": 0 }
  3566. ],
  3567. "translate": [
  3568. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3569. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3570. { "time": 0.3333, "x": 0, "y": 0 }
  3571. ],
  3572. "scale": [
  3573. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3574. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3575. { "time": 0.3333, "x": 1, "y": 1 }
  3576. ]
  3577. },
  3578. "bone53": {
  3579. "rotate": [
  3580. { "time": 0, "angle": 0, "curve": "stepped" },
  3581. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3582. { "time": 0.3333, "angle": 0 }
  3583. ],
  3584. "translate": [
  3585. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3586. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3587. { "time": 0.3333, "x": 0, "y": 0 }
  3588. ],
  3589. "scale": [
  3590. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3591. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3592. { "time": 0.3333, "x": 1, "y": 1 }
  3593. ]
  3594. },
  3595. "bone54": {
  3596. "rotate": [
  3597. { "time": 0, "angle": 0, "curve": "stepped" },
  3598. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3599. { "time": 0.3333, "angle": 0 }
  3600. ],
  3601. "translate": [
  3602. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3603. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3604. { "time": 0.3333, "x": 0, "y": 0 }
  3605. ],
  3606. "scale": [
  3607. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3608. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3609. { "time": 0.3333, "x": 1, "y": 1 }
  3610. ]
  3611. },
  3612. "bone55": {
  3613. "rotate": [
  3614. { "time": 0, "angle": 0, "curve": "stepped" },
  3615. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3616. { "time": 0.3333, "angle": 0 }
  3617. ],
  3618. "translate": [
  3619. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3620. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3621. { "time": 0.3333, "x": 0, "y": 0 }
  3622. ],
  3623. "scale": [
  3624. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3625. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3626. { "time": 0.3333, "x": 1, "y": 1 }
  3627. ]
  3628. },
  3629. "bone56": {
  3630. "rotate": [
  3631. { "time": 0, "angle": 0, "curve": "stepped" },
  3632. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3633. { "time": 0.3333, "angle": 0 }
  3634. ],
  3635. "translate": [
  3636. { "time": 0, "x": 0, "y": 0 },
  3637. { "time": 0.1667, "x": 1.1, "y": -0.08 },
  3638. { "time": 0.3333, "x": 0, "y": 0 }
  3639. ],
  3640. "scale": [
  3641. { "time": 0, "x": 1, "y": 1 },
  3642. { "time": 0.1667, "x": 1, "y": 1.1 },
  3643. { "time": 0.3333, "x": 1, "y": 1 }
  3644. ]
  3645. },
  3646. "bone57": {
  3647. "rotate": [
  3648. { "time": 0, "angle": 0, "curve": "stepped" },
  3649. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3650. { "time": 0.3333, "angle": 0 }
  3651. ],
  3652. "translate": [
  3653. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3654. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3655. { "time": 0.3333, "x": 0, "y": 0 }
  3656. ],
  3657. "scale": [
  3658. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3659. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3660. { "time": 0.3333, "x": 1, "y": 1 }
  3661. ]
  3662. },
  3663. "bone58": {
  3664. "rotate": [
  3665. { "time": 0, "angle": 0, "curve": "stepped" },
  3666. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3667. { "time": 0.3333, "angle": 0 }
  3668. ],
  3669. "translate": [
  3670. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3671. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3672. { "time": 0.3333, "x": 0, "y": 0 }
  3673. ],
  3674. "scale": [
  3675. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3676. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3677. { "time": 0.3333, "x": 1, "y": 1 }
  3678. ]
  3679. },
  3680. "bone37": {
  3681. "rotate": [
  3682. { "time": 0, "angle": 0 },
  3683. {
  3684. "time": 0.2333,
  3685. "angle": 10.36,
  3686. "curve": [ 0.25, 0, 0.75, 1 ]
  3687. },
  3688. { "time": 0.3333, "angle": 6.69 },
  3689. { "time": 0.5333, "angle": 2.06 }
  3690. ],
  3691. "translate": [
  3692. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3693. { "time": 0.2333, "x": -2.8, "y": 84.93, "curve": "stepped" },
  3694. { "time": 0.3333, "x": -2.8, "y": 84.93 },
  3695. { "time": 0.5333, "x": -2.1, "y": 85.11 }
  3696. ],
  3697. "scale": [
  3698. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3699. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3700. { "time": 0.3333, "x": 1, "y": 1 }
  3701. ]
  3702. },
  3703. "bone38": {
  3704. "rotate": [
  3705. { "time": 0, "angle": 0 },
  3706. {
  3707. "time": 0.2333,
  3708. "angle": 49.58,
  3709. "curve": [ 0.25, 0, 0.75, 1 ]
  3710. },
  3711. { "time": 0.3333, "angle": 6.6 },
  3712. { "time": 0.5333, "angle": 4.54 }
  3713. ],
  3714. "translate": [
  3715. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3716. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3717. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3718. { "time": 0.5333, "x": 0, "y": 0 }
  3719. ],
  3720. "scale": [
  3721. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3722. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3723. { "time": 0.3333, "x": 1, "y": 1 }
  3724. ]
  3725. },
  3726. "bone39": {
  3727. "rotate": [
  3728. { "time": 0, "angle": 0 },
  3729. {
  3730. "time": 0.2333,
  3731. "angle": 10.36,
  3732. "curve": [ 0.25, 0, 0.75, 1 ]
  3733. },
  3734. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3735. { "time": 0.7333, "angle": 0 }
  3736. ],
  3737. "translate": [
  3738. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3739. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3740. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3741. { "time": 0.7333, "x": 0, "y": 0 }
  3742. ],
  3743. "scale": [
  3744. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3745. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3746. { "time": 0.3333, "x": 1, "y": 1 }
  3747. ]
  3748. },
  3749. "bone40": {
  3750. "rotate": [
  3751. { "time": 0, "angle": 0 },
  3752. {
  3753. "time": 0.2333,
  3754. "angle": -6.31,
  3755. "curve": [ 0.25, 0, 0.75, 1 ]
  3756. },
  3757. { "time": 0.3333, "angle": -8.26 },
  3758. { "time": 0.5333, "angle": -2.54 }
  3759. ],
  3760. "translate": [
  3761. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3762. { "time": 0.2333, "x": -0.23, "y": -68.68, "curve": "stepped" },
  3763. { "time": 0.3333, "x": -0.23, "y": -68.68 },
  3764. { "time": 0.5333, "x": 0.2, "y": -68.87 }
  3765. ],
  3766. "scale": [
  3767. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3768. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3769. { "time": 0.3333, "x": 1, "y": 1 }
  3770. ]
  3771. },
  3772. "bone41": {
  3773. "rotate": [
  3774. { "time": 0, "angle": 0 },
  3775. {
  3776. "time": 0.2333,
  3777. "angle": -39.83,
  3778. "curve": [ 0.25, 0, 0.75, 1 ]
  3779. },
  3780. { "time": 0.3333, "angle": -2.68 },
  3781. { "time": 0.5333, "angle": -0.2 }
  3782. ],
  3783. "translate": [
  3784. { "time": 0, "x": 0, "y": 0 },
  3785. {
  3786. "time": 0.2333,
  3787. "x": -2.08,
  3788. "y": -1.03,
  3789. "curve": [ 0.25, 0, 0.75, 1 ]
  3790. },
  3791. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3792. { "time": 0.5333, "x": 0, "y": 0 }
  3793. ],
  3794. "scale": [
  3795. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3796. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3797. { "time": 0.3333, "x": 1, "y": 1 }
  3798. ]
  3799. },
  3800. "bone42": {
  3801. "rotate": [
  3802. { "time": 0, "angle": 0, "curve": "stepped" },
  3803. {
  3804. "time": 0.2333,
  3805. "angle": 0,
  3806. "curve": [ 0.25, 0, 0.75, 1 ]
  3807. },
  3808. { "time": 0.3333, "angle": 5.53 },
  3809. { "time": 0.7333, "angle": 1.7 }
  3810. ],
  3811. "translate": [
  3812. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3813. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3814. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3815. { "time": 0.7333, "x": 0, "y": 0 }
  3816. ],
  3817. "scale": [
  3818. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3819. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3820. { "time": 0.3333, "x": 1, "y": 1 }
  3821. ]
  3822. },
  3823. "bone61": {
  3824. "translate": [
  3825. { "time": 0.1667, "x": 0, "y": 0 },
  3826. { "time": 0.3333, "x": -1.31, "y": -0.79, "curve": "stepped" },
  3827. { "time": 2.1667, "x": -1.31, "y": -0.79 },
  3828. { "time": 2.3333, "x": -0.98, "y": -0.79 }
  3829. ],
  3830. "scale": [
  3831. { "time": 2.3333, "x": 1, "y": 1 }
  3832. ]
  3833. },
  3834. "bone60": {
  3835. "translate": [
  3836. { "time": 0.1667, "x": 0, "y": 0 },
  3837. { "time": 0.3333, "x": -1.15, "y": -1.72, "curve": "stepped" },
  3838. { "time": 2.1667, "x": -1.15, "y": -1.72 },
  3839. { "time": 2.3333, "x": -0.7, "y": -1.72 }
  3840. ],
  3841. "scale": [
  3842. { "time": 2.3333, "x": 1, "y": 1 }
  3843. ]
  3844. },
  3845. "ziti": {
  3846. "translate": [
  3847. { "time": 0, "x": -250.85, "y": 6.66 }
  3848. ],
  3849. "scale": [
  3850. { "time": 0, "x": -1, "y": 1 }
  3851. ]
  3852. },
  3853. "bone44": {
  3854. "rotate": [
  3855. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  3856. { "time": 0.8333, "angle": 0 }
  3857. ],
  3858. "translate": [
  3859. { "time": 0.4667, "x": 11.42, "y": 0 },
  3860. { "time": 0.8333, "x": 0, "y": 0 },
  3861. { "time": 3.6667, "x": -8.12, "y": 0 }
  3862. ],
  3863. "scale": [
  3864. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3865. { "time": 0.8333, "x": 1, "y": 1 }
  3866. ]
  3867. },
  3868. "bone45": {
  3869. "rotate": [
  3870. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3871. { "time": 1, "angle": 0 }
  3872. ],
  3873. "translate": [
  3874. { "time": 0.6667, "x": 11.42, "y": 0 },
  3875. { "time": 1, "x": 0, "y": 0 },
  3876. { "time": 3.6667, "x": -8.12, "y": 0 }
  3877. ],
  3878. "scale": [
  3879. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3880. { "time": 1, "x": 1, "y": 1 }
  3881. ]
  3882. },
  3883. "bone46": {
  3884. "rotate": [
  3885. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3886. { "time": 1.1333, "angle": 0 }
  3887. ],
  3888. "translate": [
  3889. { "time": 0.8333, "x": 11.42, "y": 0 },
  3890. { "time": 1.1333, "x": 0, "y": 0 },
  3891. { "time": 3.6667, "x": -8.12, "y": 0 }
  3892. ],
  3893. "scale": [
  3894. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3895. { "time": 1.1333, "x": 1, "y": 1 }
  3896. ]
  3897. },
  3898. "bone47": {
  3899. "rotate": [
  3900. { "time": 1, "angle": 0, "curve": "stepped" },
  3901. { "time": 1.3333, "angle": 0 }
  3902. ],
  3903. "translate": [
  3904. { "time": 1, "x": 11.42, "y": 0 },
  3905. { "time": 1.3333, "x": 0, "y": 0 },
  3906. { "time": 3.6667, "x": -8.12, "y": 0 }
  3907. ],
  3908. "scale": [
  3909. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3910. { "time": 1.3333, "x": 1, "y": 1 }
  3911. ]
  3912. },
  3913. "bone48": {
  3914. "rotate": [
  3915. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  3916. { "time": 1.4667, "angle": 0 }
  3917. ],
  3918. "translate": [
  3919. { "time": 1.1333, "x": 11.42, "y": 0 },
  3920. { "time": 1.4667, "x": 0, "y": 0 },
  3921. { "time": 3.6667, "x": -8.12, "y": 0 }
  3922. ],
  3923. "scale": [
  3924. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3925. { "time": 1.4667, "x": 1, "y": 1 }
  3926. ]
  3927. },
  3928. "yanlei1": {
  3929. "translate": [
  3930. { "time": 0, "x": 1.68, "y": 0.88 }
  3931. ],
  3932. "scale": [
  3933. { "time": 0.9, "x": 1, "y": 1 },
  3934. { "time": 1.2667, "x": 0.965, "y": 0.986 },
  3935. { "time": 1.8333, "x": 1, "y": 1 },
  3936. { "time": 2.2, "x": 0.965, "y": 0.986 },
  3937. { "time": 2.7333, "x": 1, "y": 1 },
  3938. { "time": 3.1, "x": 0.965, "y": 0.986 },
  3939. { "time": 3.6667, "x": 1, "y": 1 }
  3940. ]
  3941. },
  3942. "yanlei2": {
  3943. "translate": [
  3944. { "time": 0, "x": 1.67, "y": 0.51 }
  3945. ],
  3946. "scale": [
  3947. { "time": 0.9, "x": 1, "y": 1 },
  3948. { "time": 1.2667, "x": 0.98, "y": 0.98 },
  3949. { "time": 1.8333, "x": 1, "y": 1 },
  3950. { "time": 2.2, "x": 0.98, "y": 0.98 },
  3951. { "time": 2.7333, "x": 1, "y": 1 },
  3952. { "time": 3.1, "x": 0.98, "y": 0.98 },
  3953. { "time": 3.6667, "x": 1, "y": 1 }
  3954. ]
  3955. }
  3956. }
  3957. },
  3958. "walk1": {
  3959. "slots": {
  3960. "1": {
  3961. "attachment": [
  3962. { "time": 0, "name": null },
  3963. { "time": 1, "name": null }
  3964. ]
  3965. },
  3966. "2": {
  3967. "attachment": [
  3968. { "time": 0, "name": null },
  3969. { "time": 1, "name": null }
  3970. ]
  3971. },
  3972. "3": {
  3973. "attachment": [
  3974. { "time": 0, "name": null },
  3975. { "time": 1, "name": null }
  3976. ]
  3977. },
  3978. "4": {
  3979. "attachment": [
  3980. { "time": 0, "name": null },
  3981. { "time": 1, "name": null }
  3982. ]
  3983. },
  3984. "5": {
  3985. "attachment": [
  3986. { "time": 0, "name": null },
  3987. { "time": 1, "name": null }
  3988. ]
  3989. },
  3990. "biyan": {
  3991. "attachment": [
  3992. { "time": 1.0667, "name": "biyan" },
  3993. { "time": 1.1667, "name": null }
  3994. ]
  3995. },
  3996. "yanlei1": {
  3997. "attachment": [
  3998. { "time": 0, "name": null }
  3999. ]
  4000. },
  4001. "yanlei0001": {
  4002. "attachment": [
  4003. { "time": 0, "name": null }
  4004. ]
  4005. },
  4006. "yanlei2": {
  4007. "attachment": [
  4008. { "time": 0, "name": null }
  4009. ]
  4010. },
  4011. "yanlei0002": {
  4012. "attachment": [
  4013. { "time": 0, "name": null }
  4014. ]
  4015. },
  4016. "youyan": {
  4017. "attachment": [
  4018. { "time": 1.0667, "name": null },
  4019. { "time": 1.1667, "name": "youyan" }
  4020. ]
  4021. },
  4022. "youyangaoguang": {
  4023. "attachment": [
  4024. { "time": 1.0667, "name": null },
  4025. { "time": 1.1667, "name": "youyangaoguang" }
  4026. ]
  4027. },
  4028. "youyanzhu": {
  4029. "attachment": [
  4030. { "time": 1.0667, "name": null },
  4031. { "time": 1.1667, "name": "youyanzhu" }
  4032. ]
  4033. },
  4034. "zuoyan": {
  4035. "attachment": [
  4036. { "time": 1.0667, "name": null },
  4037. { "time": 1.1667, "name": "zuoyan" }
  4038. ]
  4039. },
  4040. "zuoyangaoguang": {
  4041. "attachment": [
  4042. { "time": 1.0667, "name": null },
  4043. { "time": 1.1667, "name": "zuoyangaoguang" }
  4044. ]
  4045. },
  4046. "zuoyanzhu": {
  4047. "attachment": [
  4048. { "time": 1.0667, "name": null },
  4049. { "time": 1.1667, "name": "zuoyanzhu" }
  4050. ]
  4051. }
  4052. },
  4053. "bones": {
  4054. "bone": {
  4055. "rotate": [
  4056. { "time": 0, "angle": 0, "curve": "stepped" },
  4057. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4058. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4059. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  4060. { "time": 1, "angle": 0, "curve": "stepped" },
  4061. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4062. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4063. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4064. { "time": 2, "angle": 0 }
  4065. ],
  4066. "translate": [
  4067. {
  4068. "time": 0,
  4069. "x": 0,
  4070. "y": -1.57,
  4071. "curve": [ 0.25, 0, 0.75, 1 ]
  4072. },
  4073. {
  4074. "time": 0.2667,
  4075. "x": 0,
  4076. "y": -0.57,
  4077. "curve": [ 0.25, 0, 0.75, 1 ]
  4078. },
  4079. {
  4080. "time": 0.5,
  4081. "x": 0,
  4082. "y": -1.57,
  4083. "curve": [ 0.25, 0, 0.75, 1 ]
  4084. },
  4085. {
  4086. "time": 0.7667,
  4087. "x": 0,
  4088. "y": -0.57,
  4089. "curve": [ 0.25, 0, 0.75, 1 ]
  4090. },
  4091. {
  4092. "time": 1,
  4093. "x": 0,
  4094. "y": -1.57,
  4095. "curve": [ 0.25, 0, 0.75, 1 ]
  4096. },
  4097. {
  4098. "time": 1.2667,
  4099. "x": 0,
  4100. "y": -0.57,
  4101. "curve": [ 0.25, 0, 0.75, 1 ]
  4102. },
  4103. {
  4104. "time": 1.5,
  4105. "x": 0,
  4106. "y": -1.57,
  4107. "curve": [ 0.25, 0, 0.75, 1 ]
  4108. },
  4109. {
  4110. "time": 1.7667,
  4111. "x": 0,
  4112. "y": -0.57,
  4113. "curve": [ 0.25, 0, 0.75, 1 ]
  4114. },
  4115. { "time": 2, "x": 0, "y": -1.57 }
  4116. ]
  4117. },
  4118. "bone2": {
  4119. "translate": [
  4120. { "time": 0, "x": 0, "y": -0.91 },
  4121. { "time": 0.2667, "x": 0, "y": 0 },
  4122. { "time": 0.5, "x": 0, "y": -0.91 },
  4123. { "time": 0.7667, "x": 0, "y": 0 },
  4124. { "time": 1, "x": 0, "y": -0.91 },
  4125. { "time": 1.2667, "x": 0, "y": 0 },
  4126. { "time": 1.5, "x": 0, "y": -0.91 },
  4127. { "time": 1.7667, "x": 0, "y": 0 },
  4128. { "time": 2, "x": 0, "y": -0.91 }
  4129. ],
  4130. "scale": [
  4131. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4132. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4133. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4134. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4135. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4136. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4137. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4138. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4139. { "time": 2, "x": 1, "y": 1 }
  4140. ]
  4141. },
  4142. "bone3": {
  4143. "rotate": [
  4144. { "time": 0, "angle": 0, "curve": "stepped" },
  4145. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4146. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4147. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  4148. { "time": 1, "angle": 0, "curve": "stepped" },
  4149. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4150. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4151. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4152. { "time": 2, "angle": 0 }
  4153. ],
  4154. "translate": [
  4155. { "time": 0, "x": -1.44, "y": 0.05 },
  4156. { "time": 0.2667, "x": 0, "y": 0 },
  4157. { "time": 0.5, "x": -1.44, "y": 0.05 },
  4158. { "time": 0.7667, "x": 0, "y": 0 },
  4159. { "time": 1, "x": -1.44, "y": 0.05 },
  4160. { "time": 1.2667, "x": 0, "y": 0 },
  4161. { "time": 1.5, "x": -1.44, "y": 0.05 },
  4162. { "time": 1.7667, "x": 0, "y": 0 },
  4163. { "time": 2, "x": -1.44, "y": 0.05 }
  4164. ]
  4165. },
  4166. "bone4": {
  4167. "rotate": [
  4168. {
  4169. "time": 0,
  4170. "angle": 321.37,
  4171. "curve": [ 0.25, 0, 0.75, 1 ]
  4172. },
  4173. {
  4174. "time": 0.5,
  4175. "angle": -3.34,
  4176. "curve": [ 0.25, 0, 0.75, 1 ]
  4177. },
  4178. {
  4179. "time": 1,
  4180. "angle": 321.37,
  4181. "curve": [ 0.25, 0, 0.75, 1 ]
  4182. },
  4183. {
  4184. "time": 1.5,
  4185. "angle": -3.34,
  4186. "curve": [ 0.25, 0, 0.75, 1 ]
  4187. },
  4188. { "time": 2, "angle": 321.37 }
  4189. ],
  4190. "translate": [
  4191. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4192. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4193. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4194. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4195. { "time": 2, "x": 0, "y": 0 }
  4196. ],
  4197. "scale": [
  4198. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4199. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4200. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4201. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4202. { "time": 2, "x": 1, "y": 1 }
  4203. ]
  4204. },
  4205. "bone5": {
  4206. "rotate": [
  4207. {
  4208. "time": 0,
  4209. "angle": -20.18,
  4210. "curve": [ 0.25, 0, 0.75, 1 ]
  4211. },
  4212. {
  4213. "time": 0.5,
  4214. "angle": -7.15,
  4215. "curve": [ 0.25, 0, 0.75, 1 ]
  4216. },
  4217. {
  4218. "time": 1,
  4219. "angle": -20.18,
  4220. "curve": [ 0.25, 0, 0.75, 1 ]
  4221. },
  4222. {
  4223. "time": 1.5,
  4224. "angle": -7.15,
  4225. "curve": [ 0.25, 0, 0.75, 1 ]
  4226. },
  4227. { "time": 2, "angle": -20.18 }
  4228. ],
  4229. "translate": [
  4230. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4231. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4232. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4233. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4234. { "time": 2, "x": 0, "y": 0 }
  4235. ],
  4236. "scale": [
  4237. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4238. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4239. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4240. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4241. { "time": 2, "x": 1, "y": 1 }
  4242. ]
  4243. },
  4244. "bone6": {
  4245. "rotate": [
  4246. { "time": 0, "angle": 0, "curve": "stepped" },
  4247. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4248. { "time": 1, "angle": 0, "curve": "stepped" },
  4249. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4250. { "time": 2, "angle": 0 }
  4251. ],
  4252. "translate": [
  4253. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4254. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4255. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4256. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4257. { "time": 2, "x": 0, "y": 0 }
  4258. ],
  4259. "scale": [
  4260. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4261. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4262. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4263. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4264. { "time": 2, "x": 1, "y": 1 }
  4265. ]
  4266. },
  4267. "bone7": {
  4268. "rotate": [
  4269. {
  4270. "time": 0,
  4271. "angle": -307.88,
  4272. "curve": [ 0.25, 0, 0.75, 1 ]
  4273. },
  4274. {
  4275. "time": 0.5,
  4276. "angle": 15.82,
  4277. "curve": [ 0.25, 0, 0.75, 1 ]
  4278. },
  4279. {
  4280. "time": 1,
  4281. "angle": -307.88,
  4282. "curve": [ 0.25, 0, 0.75, 1 ]
  4283. },
  4284. {
  4285. "time": 1.5,
  4286. "angle": 15.82,
  4287. "curve": [ 0.25, 0, 0.75, 1 ]
  4288. },
  4289. { "time": 2, "angle": -307.88 }
  4290. ],
  4291. "translate": [
  4292. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4293. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4294. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4295. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4296. { "time": 2, "x": 0, "y": 0 }
  4297. ],
  4298. "scale": [
  4299. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4300. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4301. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4302. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4303. { "time": 2, "x": 1, "y": 1 }
  4304. ]
  4305. },
  4306. "bone8": {
  4307. "rotate": [
  4308. {
  4309. "time": 0,
  4310. "angle": -20.16,
  4311. "curve": [ 0.25, 0, 0.75, 1 ]
  4312. },
  4313. {
  4314. "time": 0.5,
  4315. "angle": -20.45,
  4316. "curve": [ 0.25, 0, 0.75, 1 ]
  4317. },
  4318. {
  4319. "time": 1,
  4320. "angle": -20.16,
  4321. "curve": [ 0.25, 0, 0.75, 1 ]
  4322. },
  4323. {
  4324. "time": 1.5,
  4325. "angle": -20.45,
  4326. "curve": [ 0.25, 0, 0.75, 1 ]
  4327. },
  4328. { "time": 2, "angle": -20.16 }
  4329. ],
  4330. "translate": [
  4331. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4332. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4333. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4334. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4335. { "time": 2, "x": 0, "y": 0 }
  4336. ],
  4337. "scale": [
  4338. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4339. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4340. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4341. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4342. { "time": 2, "x": 1, "y": 1 }
  4343. ]
  4344. },
  4345. "bone9": {
  4346. "rotate": [
  4347. { "time": 0, "angle": 0, "curve": "stepped" },
  4348. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4349. { "time": 1, "angle": 0, "curve": "stepped" },
  4350. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4351. { "time": 2, "angle": 0 }
  4352. ],
  4353. "translate": [
  4354. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4355. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4356. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4357. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4358. { "time": 2, "x": 0, "y": 0 }
  4359. ],
  4360. "scale": [
  4361. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4362. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4363. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4364. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4365. { "time": 2, "x": 1, "y": 1 }
  4366. ]
  4367. },
  4368. "bone11": {
  4369. "rotate": [
  4370. { "time": 0, "angle": 0, "curve": "stepped" },
  4371. { "time": 1, "angle": 0, "curve": "stepped" },
  4372. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  4373. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4374. { "time": 1.2667, "angle": 0 }
  4375. ],
  4376. "translate": [
  4377. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4378. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4379. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  4380. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4381. { "time": 1.2667, "x": 0, "y": 0 }
  4382. ],
  4383. "scale": [
  4384. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4385. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4386. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  4387. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4388. { "time": 1.2667, "x": 1, "y": 1 }
  4389. ]
  4390. },
  4391. "bone12": {
  4392. "rotate": [
  4393. { "time": 0, "angle": 0, "curve": "stepped" },
  4394. { "time": 1, "angle": 0, "curve": "stepped" },
  4395. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  4396. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4397. { "time": 1.2667, "angle": 0 }
  4398. ],
  4399. "translate": [
  4400. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4401. { "time": 1, "x": 0, "y": 0 },
  4402. { "time": 1.0667, "x": -0.65, "y": 0, "curve": "stepped" },
  4403. { "time": 1.1667, "x": -0.65, "y": 0 },
  4404. { "time": 1.2667, "x": 0, "y": 0 }
  4405. ],
  4406. "scale": [
  4407. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4408. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4409. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  4410. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4411. { "time": 1.2667, "x": 1, "y": 1 }
  4412. ]
  4413. },
  4414. "bone14": {
  4415. "rotate": [
  4416. { "time": 0, "angle": 0, "curve": "stepped" },
  4417. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4418. { "time": 1, "angle": 0, "curve": "stepped" },
  4419. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4420. { "time": 2, "angle": 0 }
  4421. ],
  4422. "translate": [
  4423. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4424. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4425. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4426. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4427. { "time": 2, "x": 0, "y": 0 }
  4428. ],
  4429. "scale": [
  4430. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4431. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4432. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4433. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4434. { "time": 2, "x": 1, "y": 1 }
  4435. ]
  4436. },
  4437. "bone15": {
  4438. "rotate": [
  4439. { "time": 0, "angle": -10.69 },
  4440. { "time": 0.2667, "angle": 11.35 },
  4441. { "time": 0.5, "angle": 41.54 },
  4442. { "time": 0.7667, "angle": -3.62 },
  4443. { "time": 1, "angle": -10.69 },
  4444. { "time": 1.2667, "angle": 11.35 },
  4445. { "time": 1.5, "angle": 41.54 },
  4446. { "time": 1.7667, "angle": -3.62 },
  4447. { "time": 2, "angle": -10.69 }
  4448. ],
  4449. "translate": [
  4450. { "time": 0, "x": 0.52, "y": 1.99 },
  4451. { "time": 0.2667, "x": 0.4, "y": 0.31 },
  4452. { "time": 0.5, "x": 0.81, "y": 0.62 },
  4453. { "time": 0.7667, "x": 0.03, "y": 3.35 },
  4454. { "time": 1, "x": 0.52, "y": 1.99 },
  4455. { "time": 1.2667, "x": 0.4, "y": 0.31 },
  4456. { "time": 1.5, "x": 0.81, "y": 0.62 },
  4457. { "time": 1.7667, "x": 0.03, "y": 3.35 },
  4458. { "time": 2, "x": 0.52, "y": 1.99 }
  4459. ],
  4460. "scale": [
  4461. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4462. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4463. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4464. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4465. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4466. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4467. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4468. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4469. { "time": 2, "x": 1, "y": 1 }
  4470. ]
  4471. },
  4472. "bone16": {
  4473. "rotate": [
  4474. { "time": 0, "angle": 0 },
  4475. { "time": 0.2667, "angle": 14.58 },
  4476. { "time": 0.5, "angle": 0 },
  4477. { "time": 0.7667, "angle": 51.89 },
  4478. { "time": 1, "angle": 0 },
  4479. { "time": 1.2667, "angle": 14.58 },
  4480. { "time": 1.5, "angle": 0 },
  4481. { "time": 1.7667, "angle": 51.89 },
  4482. { "time": 2, "angle": 0 }
  4483. ],
  4484. "translate": [
  4485. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4486. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4487. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4488. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  4489. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4490. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4491. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4492. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4493. { "time": 2, "x": 0, "y": 0 }
  4494. ],
  4495. "scale": [
  4496. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4497. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4498. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4499. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4500. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4501. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4502. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4503. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4504. { "time": 2, "x": 1, "y": 1 }
  4505. ]
  4506. },
  4507. "bone17": {
  4508. "rotate": [
  4509. { "time": 0, "angle": -3.43 },
  4510. { "time": 0.2667, "angle": -21.27 },
  4511. { "time": 0.5, "angle": 0 },
  4512. { "time": 0.7667, "angle": -19.01 },
  4513. { "time": 1, "angle": -3.43 },
  4514. { "time": 1.2667, "angle": -21.27 },
  4515. { "time": 1.5, "angle": 0 },
  4516. { "time": 1.7667, "angle": -19.01 },
  4517. { "time": 2, "angle": -3.43 }
  4518. ],
  4519. "translate": [
  4520. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4521. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4522. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4523. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  4524. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4525. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4526. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4527. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4528. { "time": 2, "x": 0, "y": 0 }
  4529. ],
  4530. "scale": [
  4531. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4532. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4533. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4534. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4535. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4536. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4537. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4538. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4539. { "time": 2, "x": 1, "y": 1 }
  4540. ]
  4541. },
  4542. "bone18": {
  4543. "rotate": [
  4544. { "time": 0, "angle": 15.77 },
  4545. { "time": 0.2667, "angle": -20.42 },
  4546. { "time": 0.5, "angle": -29.46 },
  4547. { "time": 0.7667, "angle": -14.43 },
  4548. { "time": 1, "angle": 15.77 },
  4549. { "time": 1.2667, "angle": -20.42 },
  4550. { "time": 1.5, "angle": -29.46 },
  4551. { "time": 1.7667, "angle": -14.43 },
  4552. { "time": 2, "angle": 15.77 }
  4553. ],
  4554. "translate": [
  4555. { "time": 0, "x": 0, "y": 0 },
  4556. { "time": 0.2667, "x": -2.07, "y": 4.43 },
  4557. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4558. { "time": 1, "x": 0, "y": 0 },
  4559. { "time": 1.2667, "x": -2.07, "y": 4.43 },
  4560. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4561. { "time": 2, "x": 0, "y": 0 }
  4562. ],
  4563. "scale": [
  4564. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4565. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4566. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4567. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4568. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4569. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4570. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4571. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4572. { "time": 2, "x": 1, "y": 1 }
  4573. ]
  4574. },
  4575. "bone19": {
  4576. "rotate": [
  4577. { "time": 0, "angle": 0 },
  4578. { "time": 0.2667, "angle": 52.73 },
  4579. { "time": 0.5, "angle": 0 },
  4580. { "time": 0.7667, "angle": 21.67 },
  4581. { "time": 1, "angle": 0 },
  4582. { "time": 1.2667, "angle": 52.73 },
  4583. { "time": 1.5, "angle": 0 },
  4584. { "time": 1.7667, "angle": 21.67 },
  4585. { "time": 2, "angle": 0 }
  4586. ],
  4587. "translate": [
  4588. { "time": 0, "x": 0, "y": 0 },
  4589. { "time": 0.2667, "x": -0.69, "y": 0.43 },
  4590. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4591. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  4592. { "time": 1, "x": 0, "y": 0 },
  4593. { "time": 1.2667, "x": -0.69, "y": 0.43 },
  4594. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4595. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4596. { "time": 2, "x": 0, "y": 0 }
  4597. ],
  4598. "scale": [
  4599. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4600. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4601. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4602. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4603. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4604. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4605. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4606. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4607. { "time": 2, "x": 1, "y": 1 }
  4608. ]
  4609. },
  4610. "bone20": {
  4611. "rotate": [
  4612. { "time": 0, "angle": 0 },
  4613. { "time": 0.2667, "angle": 3.32 },
  4614. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4615. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  4616. { "time": 1, "angle": 0 },
  4617. { "time": 1.2667, "angle": 3.32 },
  4618. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4619. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4620. { "time": 2, "angle": 0 }
  4621. ]
  4622. },
  4623. "bone21": {
  4624. "rotate": [
  4625. { "time": 0, "angle": 0, "curve": "stepped" },
  4626. { "time": 1, "angle": 0, "curve": "stepped" },
  4627. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  4628. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4629. { "time": 1.2667, "angle": 0 }
  4630. ],
  4631. "translate": [
  4632. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4633. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4634. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  4635. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4636. { "time": 1.2667, "x": 0, "y": 0 }
  4637. ],
  4638. "scale": [
  4639. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4640. { "time": 1, "x": 1, "y": 1 },
  4641. { "time": 1.0667, "x": 0.395, "y": 1, "curve": "stepped" },
  4642. { "time": 1.1667, "x": 0.395, "y": 1 },
  4643. { "time": 1.2667, "x": 1, "y": 1 }
  4644. ]
  4645. },
  4646. "bone22": {
  4647. "rotate": [
  4648. { "time": 0, "angle": 0, "curve": "stepped" },
  4649. { "time": 1, "angle": 0, "curve": "stepped" },
  4650. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  4651. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4652. { "time": 1.2667, "angle": 0 }
  4653. ],
  4654. "translate": [
  4655. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4656. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4657. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  4658. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4659. { "time": 1.2667, "x": 0, "y": 0 }
  4660. ],
  4661. "scale": [
  4662. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4663. { "time": 1, "x": 1, "y": 1 },
  4664. { "time": 1.0667, "x": 0.435, "y": 1, "curve": "stepped" },
  4665. { "time": 1.1667, "x": 0.435, "y": 1 },
  4666. { "time": 1.2667, "x": 1, "y": 1 }
  4667. ]
  4668. },
  4669. "bone23": {
  4670. "rotate": [
  4671. { "time": 0, "angle": 0, "curve": "stepped" },
  4672. { "time": 1, "angle": 0, "curve": "stepped" },
  4673. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  4674. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4675. { "time": 1.2667, "angle": 0 }
  4676. ],
  4677. "translate": [
  4678. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4679. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4680. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  4681. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4682. { "time": 1.2667, "x": 0, "y": 0 }
  4683. ],
  4684. "scale": [
  4685. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4686. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4687. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  4688. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4689. { "time": 1.2667, "x": 1, "y": 1 }
  4690. ]
  4691. },
  4692. "bone24": {
  4693. "rotate": [
  4694. { "time": 0, "angle": 0, "curve": "stepped" },
  4695. { "time": 1, "angle": 0, "curve": "stepped" },
  4696. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  4697. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4698. { "time": 1.2667, "angle": 0 }
  4699. ],
  4700. "translate": [
  4701. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4702. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4703. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  4704. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4705. { "time": 1.2667, "x": 0, "y": 0 }
  4706. ],
  4707. "scale": [
  4708. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4709. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4710. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  4711. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4712. { "time": 1.2667, "x": 1, "y": 1 }
  4713. ]
  4714. },
  4715. "bone25": {
  4716. "rotate": [
  4717. { "time": 0, "angle": 0, "curve": "stepped" },
  4718. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4719. { "time": 1, "angle": 0, "curve": "stepped" },
  4720. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4721. { "time": 2, "angle": 0 }
  4722. ],
  4723. "translate": [
  4724. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4725. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4726. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4727. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4728. { "time": 2, "x": 0, "y": 0 }
  4729. ],
  4730. "scale": [
  4731. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4732. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4733. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4734. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4735. { "time": 2, "x": 1, "y": 1 }
  4736. ]
  4737. },
  4738. "bone26": {
  4739. "rotate": [
  4740. {
  4741. "time": 0,
  4742. "angle": 2.12,
  4743. "curve": [ 0.25, 0, 0.75, 1 ]
  4744. },
  4745. {
  4746. "time": 0.5,
  4747. "angle": -6.54,
  4748. "curve": [ 0.25, 0, 0.75, 1 ]
  4749. },
  4750. {
  4751. "time": 1,
  4752. "angle": 2.12,
  4753. "curve": [ 0.25, 0, 0.75, 1 ]
  4754. },
  4755. {
  4756. "time": 1.5,
  4757. "angle": -6.54,
  4758. "curve": [ 0.25, 0, 0.75, 1 ]
  4759. },
  4760. { "time": 2, "angle": 2.12 }
  4761. ],
  4762. "translate": [
  4763. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4764. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4765. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4766. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4767. { "time": 2, "x": 0, "y": 0 }
  4768. ],
  4769. "scale": [
  4770. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4771. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4772. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4773. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4774. { "time": 2, "x": 1, "y": 1 }
  4775. ]
  4776. },
  4777. "bone27": {
  4778. "rotate": [
  4779. {
  4780. "time": 0,
  4781. "angle": 0,
  4782. "curve": [ 0.25, 0, 0.75, 1 ]
  4783. },
  4784. {
  4785. "time": 0.5,
  4786. "angle": 7.32,
  4787. "curve": [ 0.25, 0, 0.75, 1 ]
  4788. },
  4789. {
  4790. "time": 1,
  4791. "angle": 0,
  4792. "curve": [ 0.25, 0, 0.75, 1 ]
  4793. },
  4794. {
  4795. "time": 1.5,
  4796. "angle": 7.32,
  4797. "curve": [ 0.25, 0, 0.75, 1 ]
  4798. },
  4799. { "time": 2, "angle": 0 }
  4800. ],
  4801. "translate": [
  4802. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4803. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4804. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4805. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4806. { "time": 2, "x": 0, "y": 0 }
  4807. ],
  4808. "scale": [
  4809. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4810. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4811. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4812. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4813. { "time": 2, "x": 1, "y": 1 }
  4814. ]
  4815. },
  4816. "bone28": {
  4817. "rotate": [
  4818. { "time": 0, "angle": 0, "curve": "stepped" },
  4819. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4820. { "time": 1, "angle": 0, "curve": "stepped" },
  4821. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4822. { "time": 2, "angle": 0 }
  4823. ],
  4824. "translate": [
  4825. {
  4826. "time": 0,
  4827. "x": 0,
  4828. "y": 0,
  4829. "curve": [ 0.25, 0, 0.75, 1 ]
  4830. },
  4831. {
  4832. "time": 0.5,
  4833. "x": -1.91,
  4834. "y": 0.1,
  4835. "curve": [ 0.25, 0, 0.75, 1 ]
  4836. },
  4837. {
  4838. "time": 1,
  4839. "x": 0,
  4840. "y": 0,
  4841. "curve": [ 0.25, 0, 0.75, 1 ]
  4842. },
  4843. {
  4844. "time": 1.5,
  4845. "x": -1.91,
  4846. "y": 0.1,
  4847. "curve": [ 0.25, 0, 0.75, 1 ]
  4848. },
  4849. { "time": 2, "x": 0, "y": 0 }
  4850. ],
  4851. "scale": [
  4852. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4853. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4854. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4855. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4856. { "time": 2, "x": 1, "y": 1 }
  4857. ]
  4858. },
  4859. "bone29": {
  4860. "rotate": [
  4861. {
  4862. "time": 0,
  4863. "angle": 0,
  4864. "curve": [ 0.25, 0, 0.75, 1 ]
  4865. },
  4866. {
  4867. "time": 0.5,
  4868. "angle": -6.31,
  4869. "curve": [ 0.25, 0, 0.75, 1 ]
  4870. },
  4871. {
  4872. "time": 1,
  4873. "angle": 0,
  4874. "curve": [ 0.25, 0, 0.75, 1 ]
  4875. },
  4876. {
  4877. "time": 1.5,
  4878. "angle": -6.31,
  4879. "curve": [ 0.25, 0, 0.75, 1 ]
  4880. },
  4881. { "time": 2, "angle": 0 }
  4882. ],
  4883. "translate": [
  4884. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4885. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4886. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4887. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4888. { "time": 2, "x": 0, "y": 0 }
  4889. ],
  4890. "scale": [
  4891. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4892. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4893. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4894. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4895. { "time": 2, "x": 1, "y": 1 }
  4896. ]
  4897. },
  4898. "bone30": {
  4899. "rotate": [
  4900. {
  4901. "time": 0,
  4902. "angle": 0,
  4903. "curve": [ 0.25, 0, 0.75, 1 ]
  4904. },
  4905. {
  4906. "time": 0.5,
  4907. "angle": 0.16,
  4908. "curve": [ 0.25, 0, 0.75, 1 ]
  4909. },
  4910. {
  4911. "time": 1,
  4912. "angle": 0,
  4913. "curve": [ 0.25, 0, 0.75, 1 ]
  4914. },
  4915. {
  4916. "time": 1.5,
  4917. "angle": 0.16,
  4918. "curve": [ 0.25, 0, 0.75, 1 ]
  4919. },
  4920. { "time": 2, "angle": 0 }
  4921. ],
  4922. "translate": [
  4923. {
  4924. "time": 0,
  4925. "x": 0,
  4926. "y": 0,
  4927. "curve": [ 0.25, 0, 0.75, 1 ]
  4928. },
  4929. {
  4930. "time": 0.5,
  4931. "x": -1.43,
  4932. "y": -0.27,
  4933. "curve": [ 0.25, 0, 0.75, 1 ]
  4934. },
  4935. {
  4936. "time": 1,
  4937. "x": 0,
  4938. "y": 0,
  4939. "curve": [ 0.25, 0, 0.75, 1 ]
  4940. },
  4941. {
  4942. "time": 1.5,
  4943. "x": -1.43,
  4944. "y": -0.27,
  4945. "curve": [ 0.25, 0, 0.75, 1 ]
  4946. },
  4947. { "time": 2, "x": 0, "y": 0 }
  4948. ],
  4949. "scale": [
  4950. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4951. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4952. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4953. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4954. { "time": 2, "x": 1, "y": 1 }
  4955. ]
  4956. },
  4957. "bone31": {
  4958. "rotate": [
  4959. { "time": 0, "angle": 0, "curve": "stepped" },
  4960. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4961. { "time": 1, "angle": 0, "curve": "stepped" },
  4962. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4963. { "time": 2, "angle": 0 }
  4964. ],
  4965. "translate": [
  4966. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4967. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4968. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4969. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4970. { "time": 2, "x": 0, "y": 0 }
  4971. ],
  4972. "scale": [
  4973. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4974. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4975. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4976. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4977. { "time": 2, "x": 1, "y": 1 }
  4978. ]
  4979. },
  4980. "bone32": {
  4981. "rotate": [
  4982. {
  4983. "time": 0,
  4984. "angle": 0,
  4985. "curve": [ 0.25, 0, 0.75, 1 ]
  4986. },
  4987. {
  4988. "time": 0.5,
  4989. "angle": -3.52,
  4990. "curve": [ 0.25, 0, 0.75, 1 ]
  4991. },
  4992. {
  4993. "time": 1,
  4994. "angle": 0,
  4995. "curve": [ 0.25, 0, 0.75, 1 ]
  4996. },
  4997. {
  4998. "time": 1.5,
  4999. "angle": -3.52,
  5000. "curve": [ 0.25, 0, 0.75, 1 ]
  5001. },
  5002. { "time": 2, "angle": 0 }
  5003. ],
  5004. "translate": [
  5005. {
  5006. "time": 0,
  5007. "x": 0,
  5008. "y": 0,
  5009. "curve": [ 0.25, 0, 0.75, 1 ]
  5010. },
  5011. {
  5012. "time": 0.5,
  5013. "x": -0.48,
  5014. "y": 2.42,
  5015. "curve": [ 0.25, 0, 0.75, 1 ]
  5016. },
  5017. {
  5018. "time": 1,
  5019. "x": 0,
  5020. "y": 0,
  5021. "curve": [ 0.25, 0, 0.75, 1 ]
  5022. },
  5023. {
  5024. "time": 1.5,
  5025. "x": -0.48,
  5026. "y": 2.42,
  5027. "curve": [ 0.25, 0, 0.75, 1 ]
  5028. },
  5029. { "time": 2, "x": 0, "y": 0 }
  5030. ],
  5031. "scale": [
  5032. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5033. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5034. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5035. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5036. { "time": 2, "x": 1, "y": 1 }
  5037. ]
  5038. },
  5039. "bone33": {
  5040. "rotate": [
  5041. { "time": 0, "angle": 0, "curve": "stepped" },
  5042. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5043. { "time": 1, "angle": 0, "curve": "stepped" },
  5044. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5045. { "time": 2, "angle": 0 }
  5046. ],
  5047. "translate": [
  5048. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5049. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5050. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5051. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5052. { "time": 2, "x": 0, "y": 0 }
  5053. ],
  5054. "scale": [
  5055. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5056. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5057. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5058. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5059. { "time": 2, "x": 1, "y": 1 }
  5060. ]
  5061. },
  5062. "bone34": {
  5063. "rotate": [
  5064. {
  5065. "time": 0,
  5066. "angle": 0,
  5067. "curve": [ 0.25, 0, 0.75, 1 ]
  5068. },
  5069. {
  5070. "time": 0.5,
  5071. "angle": -3.81,
  5072. "curve": [ 0.25, 0, 0.75, 1 ]
  5073. },
  5074. {
  5075. "time": 1,
  5076. "angle": 0,
  5077. "curve": [ 0.25, 0, 0.75, 1 ]
  5078. },
  5079. {
  5080. "time": 1.5,
  5081. "angle": -3.81,
  5082. "curve": [ 0.25, 0, 0.75, 1 ]
  5083. },
  5084. { "time": 2, "angle": 0 }
  5085. ],
  5086. "translate": [
  5087. {
  5088. "time": 0,
  5089. "x": 0,
  5090. "y": 0,
  5091. "curve": [ 0.25, 0, 0.75, 1 ]
  5092. },
  5093. {
  5094. "time": 0.5,
  5095. "x": -1.38,
  5096. "y": 0.23,
  5097. "curve": [ 0.25, 0, 0.75, 1 ]
  5098. },
  5099. {
  5100. "time": 1,
  5101. "x": 0,
  5102. "y": 0,
  5103. "curve": [ 0.25, 0, 0.75, 1 ]
  5104. },
  5105. {
  5106. "time": 1.5,
  5107. "x": -1.38,
  5108. "y": 0.23,
  5109. "curve": [ 0.25, 0, 0.75, 1 ]
  5110. },
  5111. { "time": 2, "x": 0, "y": 0 }
  5112. ],
  5113. "scale": [
  5114. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5115. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5116. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5117. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5118. { "time": 2, "x": 1, "y": 1 }
  5119. ]
  5120. },
  5121. "bone35": {
  5122. "rotate": [
  5123. {
  5124. "time": 0,
  5125. "angle": 0,
  5126. "curve": [ 0.25, 0, 0.75, 1 ]
  5127. },
  5128. {
  5129. "time": 0.5,
  5130. "angle": -6.09,
  5131. "curve": [ 0.25, 0, 0.75, 1 ]
  5132. },
  5133. {
  5134. "time": 1,
  5135. "angle": 0,
  5136. "curve": [ 0.25, 0, 0.75, 1 ]
  5137. },
  5138. {
  5139. "time": 1.5,
  5140. "angle": -6.09,
  5141. "curve": [ 0.25, 0, 0.75, 1 ]
  5142. },
  5143. { "time": 2, "angle": 0 }
  5144. ],
  5145. "translate": [
  5146. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5147. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5148. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5149. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5150. { "time": 2, "x": 0, "y": 0 }
  5151. ],
  5152. "scale": [
  5153. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5154. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5155. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5156. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5157. { "time": 2, "x": 1, "y": 1 }
  5158. ]
  5159. },
  5160. "bone43": {
  5161. "rotate": [
  5162. { "time": 0, "angle": 8.07 },
  5163. { "time": 0.5, "angle": 15.48 },
  5164. { "time": 1, "angle": 8.07 },
  5165. { "time": 1.5, "angle": 15.48 },
  5166. { "time": 2, "angle": 8.07 }
  5167. ],
  5168. "translate": [
  5169. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5170. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5171. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5172. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5173. { "time": 2, "x": 0, "y": 0 }
  5174. ],
  5175. "scale": [
  5176. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5177. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5178. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5179. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5180. { "time": 2, "x": 1, "y": 1 }
  5181. ]
  5182. },
  5183. "bone51": {
  5184. "rotate": [
  5185. { "time": 0, "angle": 8.51 },
  5186. { "time": 0.5, "angle": 0 },
  5187. { "time": 1, "angle": 8.51 },
  5188. { "time": 1.5, "angle": 0 },
  5189. { "time": 2, "angle": 8.51 }
  5190. ],
  5191. "translate": [
  5192. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5193. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5194. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5195. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5196. { "time": 2, "x": 0, "y": 0 }
  5197. ],
  5198. "scale": [
  5199. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5200. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5201. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5202. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5203. { "time": 2, "x": 1, "y": 1 }
  5204. ]
  5205. },
  5206. "bone52": {
  5207. "rotate": [
  5208. { "time": 0, "angle": 8.51 },
  5209. { "time": 0.5, "angle": 0 },
  5210. { "time": 1, "angle": 8.51 },
  5211. { "time": 1.5, "angle": 0 },
  5212. { "time": 2, "angle": 8.51 }
  5213. ]
  5214. },
  5215. "bone53": {
  5216. "rotate": [
  5217. { "time": 0, "angle": 8.51 },
  5218. { "time": 0.5, "angle": 0 },
  5219. { "time": 1, "angle": 8.51 },
  5220. { "time": 1.5, "angle": 0 },
  5221. { "time": 2, "angle": 8.51 }
  5222. ]
  5223. },
  5224. "bone54": {
  5225. "rotate": [
  5226. { "time": 0, "angle": 8.51 },
  5227. { "time": 0.5, "angle": 0 },
  5228. { "time": 1, "angle": 8.51 },
  5229. { "time": 1.5, "angle": 0 },
  5230. { "time": 2, "angle": 8.51 }
  5231. ]
  5232. },
  5233. "bone55": {
  5234. "rotate": [
  5235. { "time": 0, "angle": 0 },
  5236. { "time": 0.5, "angle": -5.5 },
  5237. { "time": 1, "angle": 0 },
  5238. { "time": 1.5, "angle": -5.5 },
  5239. { "time": 2, "angle": 0 }
  5240. ]
  5241. },
  5242. "bone56": {
  5243. "rotate": [
  5244. { "time": 0, "angle": 0 },
  5245. { "time": 0.5, "angle": -10.79 },
  5246. { "time": 1, "angle": 0 },
  5247. { "time": 1.5, "angle": -10.79 },
  5248. { "time": 2, "angle": 0 }
  5249. ]
  5250. },
  5251. "bone57": {
  5252. "rotate": [
  5253. { "time": 0, "angle": 0 },
  5254. { "time": 0.5, "angle": -10.79 },
  5255. { "time": 1, "angle": 0 },
  5256. { "time": 1.5, "angle": -10.79 },
  5257. { "time": 2, "angle": 0 }
  5258. ]
  5259. },
  5260. "bone58": {
  5261. "rotate": [
  5262. { "time": 0, "angle": 0 },
  5263. { "time": 0.5, "angle": -10.79 },
  5264. { "time": 1, "angle": 0 },
  5265. { "time": 1.5, "angle": -10.79 },
  5266. { "time": 2, "angle": 0 }
  5267. ]
  5268. },
  5269. "bone59": {
  5270. "translate": [
  5271. { "time": 0, "x": 0, "y": 0 },
  5272. { "time": 0.2667, "x": 0, "y": 1.43 },
  5273. { "time": 0.5333, "x": 0, "y": 0 },
  5274. { "time": 0.7667, "x": 0, "y": 1.43 },
  5275. { "time": 1, "x": 0, "y": 0 },
  5276. { "time": 1.2667, "x": 0, "y": 1.43 },
  5277. { "time": 1.5333, "x": 0, "y": 0 },
  5278. { "time": 1.7667, "x": 0, "y": 1.43 },
  5279. { "time": 2, "x": 0, "y": 0 }
  5280. ]
  5281. },
  5282. "root": {
  5283. "scale": [
  5284. { "time": 0, "x": 0.65, "y": 0.65 }
  5285. ]
  5286. },
  5287. "bone10": {
  5288. "rotate": [
  5289. { "time": 0, "angle": -2.31 }
  5290. ]
  5291. }
  5292. },
  5293. "deform": {
  5294. "default": {
  5295. "shenti": {
  5296. "shenti": [
  5297. {
  5298. "time": 0,
  5299. "offset": 68,
  5300. "vertices": [ 1.1, 2.42, 1.1, 2.42, 1.1, 2.42, 1.1, 2.42, 1.0196, 2.45493, 1.1, 2.42, 1.0196, 2.45493, 0, 0, 0, 0, 0, 0, 1.0196, 2.45493 ]
  5301. },
  5302. {
  5303. "time": 0.5,
  5304. "offset": 69,
  5305. "vertices": [ -1.15999, 5.0E-5, -1.15999, 0, 0, 5.0E-5, -1.15999, 0.03827, -1.15936, 5.0E-5, -1.15999, 0.03827, -1.15936, 0.03827, -1.15936, 0, 0, 0, 0, 0.03827, -1.15936 ]
  5306. },
  5307. {
  5308. "time": 1,
  5309. "offset": 68,
  5310. "vertices": [ 1.1, 2.42, 1.1, 2.42, 1.1, 2.42, 1.1, 2.42, 1.0196, 2.45493, 1.1, 2.42, 1.0196, 2.45493, 0, 0, 0, 0, 0, 0, 1.0196, 2.45493 ]
  5311. },
  5312. {
  5313. "time": 1.5,
  5314. "offset": 69,
  5315. "vertices": [ -1.15999, 5.0E-5, -1.15999, 0, 0, 5.0E-5, -1.15999, 0.03827, -1.15936, 5.0E-5, -1.15999, 0.03827, -1.15936, 0.03827, -1.15936, 0, 0, 0, 0, 0.03827, -1.15936 ]
  5316. },
  5317. {
  5318. "time": 2,
  5319. "offset": 68,
  5320. "vertices": [ 1.1, 2.42, 1.1, 2.42, 1.1, 2.42, 1.1, 2.42, 1.0196, 2.45493, 1.1, 2.42, 1.0196, 2.45493, 0, 0, 0, 0, 0, 0, 1.0196, 2.45493 ]
  5321. }
  5322. ]
  5323. },
  5324. "youshou": {
  5325. "youshou": [
  5326. {
  5327. "time": 0,
  5328. "offset": 54,
  5329. "vertices": [ 2.39666, -0.05374 ]
  5330. }
  5331. ]
  5332. },
  5333. "zuoshou": {
  5334. "zuoshou": [
  5335. {
  5336. "time": 0,
  5337. "offset": 64,
  5338. "vertices": [ 3.89249, -1.95415 ]
  5339. }
  5340. ]
  5341. }
  5342. }
  5343. }
  5344. }
  5345. }
  5346. }