42102.json 343 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154
  1. {
  2. "skeleton": { "hash": "WTG0cAaV+SlI2SBKAhONA9kXj48", "spine": "3.6.53", "width": 197.98, "height": 222.09, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": 2.08, "y": 68.64 },
  6. { "name": "bone2", "parent": "bone", "length": 23.45, "rotation": -93.81, "x": -5.93, "y": -10.3 },
  7. { "name": "bone3", "parent": "bone2", "length": 20, "rotation": 1.02, "x": 23.45 },
  8. { "name": "bone4", "parent": "bone3", "length": 21.73, "rotation": -68.21, "x": 21.48, "y": 0.5 },
  9. { "name": "bone5", "parent": "bone", "length": 25.71, "rotation": -84.43, "x": 9.05, "y": -9.36 },
  10. { "name": "bone6", "parent": "bone5", "length": 20, "rotation": -1.86, "x": 25.71 },
  11. { "name": "bone7", "parent": "bone6", "length": 17.37, "rotation": -68.66, "x": 20.62, "y": -0.04 },
  12. { "name": "bone8", "parent": "bone", "length": 21.63, "rotation": 86.82, "x": -1.1, "y": 4.43 },
  13. { "name": "bone9", "parent": "bone", "length": 7.2, "rotation": 88.09, "x": -2.3, "y": -9.49 },
  14. { "name": "bone10", "parent": "bone8", "length": 17.56, "rotation": 172.95, "x": 24.51, "y": 8.81 },
  15. { "name": "bone11", "parent": "bone10", "length": 13.61, "rotation": 1.1, "x": 17.56 },
  16. { "name": "bone12", "parent": "bone11", "length": 8.43, "rotation": -10.85, "x": 13.61 },
  17. { "name": "bone13", "parent": "bone8", "length": 19.3, "rotation": -171.11, "x": 22.49, "y": -11.01 },
  18. { "name": "bone14", "parent": "bone13", "length": 8.96, "rotation": 1.99, "x": 19.82, "y": 0.43 },
  19. { "name": "bone15", "parent": "bone14", "length": 6.87, "rotation": 17.08, "x": 7.74, "y": -0.08 },
  20. { "name": "bone16", "parent": "bone8", "length": 15.04, "rotation": 158.66, "x": 22.66, "y": 11.84 },
  21. { "name": "bone17", "parent": "bone16", "length": 15.24, "rotation": -1.64, "x": 15.04 },
  22. { "name": "bone18", "parent": "bone17", "length": 14.91, "rotation": -7.02, "x": 15.24 },
  23. { "name": "bone19", "parent": "bone8", "length": 18.03, "rotation": -149.91, "x": 24.95, "y": -16.4 },
  24. { "name": "bone20", "parent": "bone19", "length": 15.78, "rotation": 1.22, "x": 18.03 },
  25. { "name": "bone21", "parent": "bone20", "length": 11.46, "rotation": -8.55, "x": 15.78 },
  26. { "name": "bone22", "parent": "bone8", "length": 39.28, "rotation": 4.44, "x": 29.59, "y": -1.05 },
  27. { "name": "bone23", "parent": "bone22", "length": 10.03, "rotation": -76.27, "x": 19.29, "y": -27.59 },
  28. { "name": "bone24", "parent": "bone22", "length": 33.95, "rotation": 5.18, "x": 49.89, "y": 2.53 },
  29. { "name": "bone25", "parent": "bone22", "length": 15.06, "rotation": 176.28, "x": 74.46, "y": 15.29 },
  30. { "name": "bone26", "parent": "bone25", "length": 11.66, "rotation": 7.74, "x": 15.06 },
  31. { "name": "bone27", "parent": "bone26", "length": 10.54, "rotation": 6.48, "x": 11.66 },
  32. { "name": "bone28", "parent": "bone27", "length": 8.24, "rotation": 3.36, "x": 10.75, "y": -0.04 },
  33. { "name": "bone29", "parent": "bone22", "length": 18, "rotation": 167.03, "x": 65.9, "y": 26.88 },
  34. { "name": "bone30", "parent": "bone29", "length": 11.4, "rotation": 12.79, "x": 18 },
  35. { "name": "bone31", "parent": "bone30", "length": 7.85, "rotation": -10.54, "x": 11.4 },
  36. { "name": "bone32", "parent": "bone31", "length": 7.88, "rotation": -16.4, "x": 7.85 },
  37. { "name": "bone33", "parent": "bone22", "length": 20.54, "rotation": -150.4, "x": 68.18, "y": -6.29 },
  38. { "name": "bone34", "parent": "bone33", "length": 17.2, "rotation": 6.01, "x": 20.54 },
  39. { "name": "bone35", "parent": "bone34", "length": 19.81, "rotation": 26.01, "x": 17.2 },
  40. { "name": "bone36", "parent": "bone22", "length": 7.09, "rotation": -1.26, "x": 30.96, "y": 2.49 },
  41. { "name": "bone37", "parent": "bone22", "length": 8.18, "rotation": 1.75, "x": 20.94, "y": 16.26 },
  42. { "name": "bone38", "parent": "bone22", "length": 10.11, "rotation": -2.48, "x": 19.94, "y": -9.53 },
  43. { "name": "bone39", "parent": "bone22", "length": 6.23, "rotation": -1.26, "x": 18.07, "y": 3.42 },
  44. { "name": "bone40", "parent": "bone22", "length": 6.46, "rotation": 2.55, "x": 6.86, "y": 0.64 },
  45. { "name": "bone41", "parent": "bone", "length": 10.66, "rotation": -46.82, "x": 11.9, "y": -4.68 },
  46. { "name": "bone42", "parent": "bone41", "length": 5.91, "rotation": 3.8, "x": 10.66 },
  47. { "name": "bone43", "parent": "bone42", "length": 5.45, "rotation": 2.31, "x": 5.91 },
  48. { "name": "bone44", "parent": "bone8", "length": 10.68, "rotation": 179.06, "x": 20.66, "y": 1.07 },
  49. { "name": "bone45", "parent": "bone44", "length": 6.98, "rotation": -3.78, "x": 10.68 },
  50. { "name": "bone46", "parent": "bone45", "length": 7.2, "rotation": 6.38, "x": 6.98 },
  51. { "name": "bone47", "parent": "bone8", "length": 33.95, "rotation": 9.62, "x": 79.14, "y": 5.34 },
  52. { "name": "bone48", "parent": "root", "length": 23.36, "rotation": 86.82, "x": 65.15, "y": 115.22 },
  53. { "name": "bone49", "parent": "root", "length": 23.36, "rotation": 86.82, "x": -44.13, "y": 200.54, "scaleX": 0.6, "scaleY": 0.6 },
  54. { "name": "bone50", "parent": "root", "length": 23.36, "rotation": 86.82, "x": -74.81, "y": 106.85, "scaleX": 0.8, "scaleY": 0.8 },
  55. { "name": "bone51", "parent": "root", "length": 23.36, "rotation": 86.82, "x": -71.98, "y": 157.94, "scaleX": 0.8, "scaleY": 0.8 }
  56. ],
  57. "slots": [
  58. { "name": "chenshanhebozi", "bone": "bone8", "attachment": "chenshanhebozi" },
  59. { "name": "lingdai", "bone": "bone44", "attachment": "lingdai" },
  60. { "name": "zuotui", "bone": "bone2", "attachment": "zuotui" },
  61. { "name": "youtui", "bone": "bone5", "attachment": "youtui" },
  62. { "name": "sijiaoku", "bone": "bone9", "attachment": "sijiaoku" },
  63. { "name": "zuoshou", "bone": "bone17", "attachment": "zuoshou" },
  64. { "name": "yaoweijing", "bone": "bone41", "attachment": "yaoweijing" },
  65. { "name": "youbianwaitao", "bone": "bone13", "attachment": "youbianwaitao" },
  66. { "name": "zuobianwaitao", "bone": "bone10", "attachment": "zuobianwaitao" },
  67. { "name": "youshou", "bone": "bone19", "attachment": "youshou" },
  68. { "name": "houmiantoufa", "bone": "bone23", "attachment": "houmiantoufa" },
  69. { "name": "lian", "bone": "bone23", "attachment": "lian" },
  70. { "name": "zuiba", "bone": "bone40", "attachment": "zuiba" },
  71. { "name": "youyan", "bone": "bone38", "attachment": "youyan" },
  72. { "name": "zuoyan", "bone": "bone37", "attachment": "zuoyan" },
  73. { "name": "biyan", "bone": "bone39", "attachment": "biyan" },
  74. { "name": "meimao", "bone": "bone36", "attachment": "meimao" },
  75. { "name": "toufa1", "bone": "bone29", "attachment": "toufa1" },
  76. { "name": "toufa2", "bone": "bone23", "attachment": "toufa2" },
  77. { "name": "toufa3", "bone": "bone33", "attachment": "toufa3" },
  78. { "name": "toufa4", "bone": "bone25", "attachment": "toufa4" },
  79. { "name": "yinying", "bone": "bone23", "attachment": "yinying" },
  80. { "name": "eduo", "bone": "bone23", "attachment": "eduo" },
  81. { "name": "maozi", "bone": "bone24", "attachment": "maozi" },
  82. { "name": "maozi2", "bone": "bone47", "attachment": "maozi" },
  83. { "name": "star", "bone": "bone48", "attachment": "star" },
  84. { "name": "star2", "bone": "bone49", "attachment": "star" },
  85. { "name": "star3", "bone": "bone50", "attachment": "star" },
  86. { "name": "star4", "bone": "bone51", "attachment": "star" }
  87. ],
  88. "skins": {
  89. "default": {
  90. "biyan": {
  91. "biyan": { "x": 1.44, "y": -0.79, "rotation": -90, "width": 44, "height": 8 }
  92. },
  93. "chenshanhebozi": {
  94. "chenshanhebozi": {
  95. "type": "mesh",
  96. "uvs": [ 1, 1, 0.41829, 1, 0, 1, 0, 0, 0.48237, 0, 1, 0 ],
  97. "triangles": [ 1, 2, 3, 4, 1, 3, 4, 5, 0, 1, 4, 0 ],
  98. "vertices": [ -14.24, -15.48, -15.11, 0.2, -15.74, 11.48, 34.18, 14.25, 34.91, 1.25, 35.68, -12.71 ],
  99. "hull": 6,
  100. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
  101. "width": 27,
  102. "height": 50
  103. }
  104. },
  105. "eduo": {
  106. "eduo": { "x": 5.18, "y": 0.72, "rotation": -15, "width": 20, "height": 19 }
  107. },
  108. "houmiantoufa": {
  109. "houmiantoufa": {
  110. "type": "mesh",
  111. "uvs": [ 1, 0.51558, 1, 1, 0, 1, 0, 0, 1, 0, 0.79592, 0.48337 ],
  112. "triangles": [ 5, 3, 4, 5, 4, 0, 2, 3, 5, 5, 0, 1, 2, 5, 1 ],
  113. "vertices": [ 31.69, 14.66, 22.16, -20.91, -63.81, 2.12, -44.15, 75.53, 41.82, 52.51, 14.77, 21.72 ],
  114. "hull": 5,
  115. "edges": [ 2, 4, 4, 6, 6, 8, 2, 0, 0, 8 ],
  116. "width": 89,
  117. "height": 76
  118. }
  119. },
  120. "lian": {
  121. "lian": {
  122. "type": "mesh",
  123. "uvs": [ 1, 1, 0.41188, 1, 0, 1, 0, 0, 0.37073, 0, 1, 0, 0.37302, 0.5311, 0.36845, 0.76096 ],
  124. "triangles": [ 6, 4, 5, 3, 6, 2, 6, 3, 4, 7, 2, 6, 6, 0, 7, 0, 1, 7, 2, 7, 1, 5, 0, 6 ],
  125. "vertices": [ 7.53, -25.27, -32.23, -14.62, -60.08, -7.16, -41.71, 61.42, -16.65, 54.71, 25.9, 43.31, -26.25, 18.24, -30.78, 2.56 ],
  126. "hull": 6,
  127. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 8, 12, 12, 14, 0, 2, 2, 4, 14, 2 ],
  128. "width": 70,
  129. "height": 71
  130. }
  131. },
  132. "lingdai": {
  133. "lingdai": {
  134. "type": "mesh",
  135. "uvs": [ 1, 0.4087, 1, 0.4896, 1, 0.54966, 1, 0.64037, 1, 0.70534, 1, 0.77276, 1, 1, 0.25928, 1, 0, 1, 0, 0.77398, 0, 0.69676, 0, 0.64037, 0, 0.53741, 0, 0.48347, 0, 0.40625, 0, 0, 0.44343, 0, 1, 0, 0.35281, 0.4896, 0.29435, 0.70166, 0.36702, 0.41284, 0.33826, 0.5424, 0.34989, 0.70656, 0.3116, 0.63908, 0.286, 0.7727 ],
  136. "triangles": [ 7, 24, 6, 24, 5, 6, 24, 7, 9, 7, 8, 9, 9, 10, 24, 24, 22, 5, 22, 4, 5, 24, 19, 22, 24, 10, 19, 19, 23, 22, 4, 22, 3, 22, 23, 3, 23, 19, 11, 19, 10, 11, 23, 21, 3, 21, 2, 3, 11, 12, 23, 23, 12, 21, 21, 18, 2, 18, 1, 2, 18, 21, 13, 21, 12, 13, 18, 13, 14, 18, 20, 1, 20, 18, 14, 20, 0, 1, 20, 16, 0, 16, 20, 15, 16, 17, 0, 20, 14, 15 ],
  137. "vertices": [ 3, 44, 7.86, 8.17, 0.76431, 45, -3.35, 7.97, 0.22374, 46, -9.38, 9.07, 0.01195, 3, 44, 10.37, 8.36, 0.52214, 45, -0.87, 8.32, 0.42233, 46, -6.87, 9.14, 0.05553, 3, 44, 12.22, 8.49, 0.33197, 45, 0.98, 8.57, 0.54247, 46, -5.01, 9.19, 0.12557, 3, 44, 15.03, 8.69, 0.12359, 45, 3.76, 8.96, 0.56437, 46, -2.2, 9.26, 0.31204, 3, 44, 17.04, 8.84, 0.04717, 45, 5.76, 9.24, 0.4608, 46, -0.19, 9.31, 0.49204, 3, 44, 19.12, 8.99, 0.01172, 45, 7.83, 9.52, 0.30955, 46, 1.9, 9.37, 0.67873, 2, 45, 14.8, 10.49, 0.03837, 46, 8.94, 9.56, 0.96163, 1, 46, 9.2, -0.07, 1, 1, 46, 9.29, -3.44, 1, 2, 45, 9.65, -3.35, 0.06874, 46, 2.28, -3.62, 0.93126, 2, 45, 7.28, -3.68, 0.51566, 46, -0.11, -3.69, 0.48434, 3, 44, 15.96, -4.28, 0.00292, 45, 5.55, -3.92, 0.86045, 46, -1.86, -3.73, 0.13664, 2, 44, 12.78, -4.5, 0.15283, 45, 2.39, -4.36, 0.84717, 2, 44, 11.11, -4.63, 0.39363, 45, 0.73, -4.59, 0.60637, 2, 44, 8.72, -4.8, 0.7772, 45, -1.64, -4.92, 0.2228, 1, 44, -3.84, -5.7, 1, 1, 44, -4.25, 0.05, 1, 1, 44, -4.77, 7.26, 1, 2, 44, 10.97, -0.04, 0.12431, 45, 0.29, -0.02, 0.87569, 2, 45, 6.9, 0.13, 0.59133, 46, -0.06, 0.14, 0.40867, 1, 44, 8.58, -0.02, 1, 2, 45, 1.94, 0.02, 0.99996, 46, -5.01, 0.58, 4.0E-5, 2, 45, 6.96, 0.87, 0.52168, 46, 0.07, 0.87, 0.47832, 2, 45, 4.95, 0.09, 0.99978, 46, -2, 0.31, 2.2E-4, 1, 46, 2.15, 0.09, 1 ],
  138. "hull": 18,
  139. "edges": [ 30, 32, 32, 34, 12, 14, 14, 16, 26, 36, 36, 2, 26, 28, 28, 30, 32, 40, 40, 36, 28, 40, 2, 0, 0, 34, 40, 0, 24, 26, 36, 42, 24, 42, 2, 4, 42, 4, 20, 38, 44, 8, 20, 22, 22, 24, 38, 46, 46, 42, 22, 46, 4, 6, 6, 8, 46, 6, 16, 18, 18, 20, 14, 48, 48, 38, 18, 48, 8, 10, 10, 12, 48, 10 ],
  140. "width": 13,
  141. "height": 31
  142. }
  143. },
  144. "maozi": {
  145. "maozi": { "x": 10.69, "y": -4.33, "rotation": -96.44, "width": 109, "height": 57 }
  146. },
  147. "maozi2": {
  148. "maozi": { "x": 10.69, "y": -4.33, "rotation": -96.44, "width": 109, "height": 57 }
  149. },
  150. "meimao": {
  151. "meimao": { "x": 1.54, "y": 0.36, "rotation": -90, "width": 35, "height": 8 }
  152. },
  153. "sijiaoku": {
  154. "sijiaoku": {
  155. "type": "mesh",
  156. "uvs": [ 1, 0.77125, 0.47458, 0.77286, 0, 0.77432, 0, 0, 1, 0 ],
  157. "triangles": [ 1, 3, 4, 0, 1, 4, 2, 3, 1 ],
  158. "vertices": [ -7.86, -20.14, -8.48, -2.81, -9.05, 12.84, 13.4, 13.59, 14.5, -19.39 ],
  159. "hull": 5,
  160. "edges": [ 6, 8, 4, 6, 0, 8, 0, 2, 2, 4 ],
  161. "width": 33,
  162. "height": 29
  163. }
  164. },
  165. "star": {
  166. "star": { "x": 5.68, "y": -1.79, "rotation": -86.82, "width": 64, "height": 64 }
  167. },
  168. "star2": {
  169. "star": { "x": 5.68, "y": -1.79, "rotation": -86.82, "width": 64, "height": 64 }
  170. },
  171. "star3": {
  172. "star": { "x": 5.68, "y": -1.79, "rotation": -86.82, "width": 64, "height": 64 }
  173. },
  174. "star4": {
  175. "star": { "x": 5.68, "y": -1.79, "rotation": -86.82, "width": 64, "height": 64 }
  176. },
  177. "toufa1": {
  178. "toufa1": {
  179. "type": "mesh",
  180. "uvs": [ 0.07213, 0.34471, 0.27956, 0.07339, 0.45799, 0.0992, 0.81485, 0.20532, 0.74958, 0.47444, 0.72894, 0.5595, 0.68064, 0.65608, 0.63642, 0.74448, 0.57243, 0.81331, 0.52564, 0.86365, 0.37538, 1, 0, 1, 1.0E-5, 0.81693, 1.0E-5, 0.75019, 1.0E-5, 0.65852, 1.0E-5, 0.58038, 0, 0.43905, 0.25643, 0.48494, 0.28286, 0.70146, 0.2333, 0.84486, 0.30485, 0.39227, 0.27251, 0.61673, 0.34305, 0.6166, 0.25549, 0.78066 ],
  181. "triangles": [ 11, 12, 19, 11, 19, 10, 23, 13, 14, 18, 23, 14, 8, 18, 7, 23, 18, 8, 19, 12, 13, 23, 19, 13, 9, 23, 8, 10, 23, 9, 19, 23, 10, 15, 16, 17, 22, 17, 5, 21, 17, 22, 15, 17, 21, 6, 22, 5, 14, 15, 21, 18, 21, 22, 14, 21, 18, 7, 22, 6, 18, 22, 7, 20, 1, 2, 0, 1, 20, 4, 2, 3, 20, 2, 4, 17, 0, 20, 16, 0, 17, 5, 20, 4, 17, 20, 5 ],
  182. "vertices": [ 2, 29, 11.55, -5.82, 0.99922, 30, -7.58, -4.24, 7.8E-4, 1, 29, -3.5, -4.07, 1, 1, 29, -2.99, 0.23, 1, 1, 29, 0.85, 9.41, 1, 3, 29, 15.12, 10.83, 0.70591, 30, -0.41, 11.2, 0.29404, 31, -13.66, 8.85, 6.0E-5, 3, 29, 19.63, 11.29, 0.37113, 30, 4.09, 10.64, 0.60852, 31, -9.13, 9.13, 0.02035, 3, 29, 24.87, 11.24, 0.09383, 30, 9.18, 9.44, 0.70603, 31, -3.9, 8.87, 0.20013, 4, 29, 29.66, 11.19, 0.01048, 30, 13.85, 8.33, 0.38822, 31, 0.89, 8.64, 0.60047, 32, -9.12, 6.32, 8.3E-4, 4, 29, 33.54, 10.49, 1.0E-4, 30, 17.47, 6.79, 0.11003, 31, 4.73, 7.79, 0.82423, 32, -5.19, 6.59, 0.06564, 3, 30, 20.12, 5.67, 0.01958, 31, 7.53, 7.16, 0.71253, 32, -2.32, 6.79, 0.26789, 2, 31, 15.23, 4.94, 0.03318, 32, 5.69, 6.83, 0.96682, 1, 32, 9.45, -0.94, 1, 3, 30, 17.41, -6.38, 0.0097, 31, 7.08, -5.17, 0.6063, 32, 0.72, -5.17, 0.384, 3, 30, 13.87, -6.31, 0.16223, 31, 3.59, -5.75, 0.78619, 32, -2.46, -6.72, 0.05158, 2, 30, 9.02, -6.22, 0.73906, 31, -1.2, -6.55, 0.26094, 3, 29, 24.12, -4.91, 0.02912, 30, 4.88, -6.14, 0.94595, 31, -5.29, -7.23, 0.02493, 2, 29, 16.79, -6.43, 0.78627, 30, -2.61, -6, 0.21373, 2, 29, 17.97, -0.16, 0.56989, 30, -0.07, -0.15, 0.43011, 3, 29, 29.08, 2.77, 7.0E-5, 30, 11.42, 0.24, 0.51398, 31, -0.03, 0.24, 0.48595, 2, 31, 7.66, 0.37, 0.72787, 32, -0.29, 0.3, 0.27213, 1, 29, 12.93, -0.07, 1, 2, 29, 24.73, 1.62, 3.6E-4, 30, 6.92, 0.09, 0.99964, 2, 29, 24.4, 3.21, 0.01487, 30, 6.95, 1.71, 0.98513, 1, 31, 4.22, 0.31, 1 ],
  183. "hull": 17,
  184. "edges": [ 38, 22, 22, 24, 2, 4, 4, 6, 20, 22, 18, 20, 32, 34, 34, 10, 2, 0, 0, 32, 4, 40, 40, 34, 0, 40, 6, 8, 8, 10, 40, 8, 28, 36, 36, 14, 28, 30, 30, 32, 34, 42, 42, 36, 30, 42, 10, 12, 12, 14, 44, 12, 24, 26, 26, 28, 36, 46, 46, 38, 26, 46, 14, 16, 16, 18, 46, 16 ],
  185. "width": 23,
  186. "height": 53
  187. }
  188. },
  189. "toufa2": {
  190. "toufa2": { "x": -2.77, "y": 3.89, "rotation": -15, "width": 9, "height": 13 }
  191. },
  192. "toufa3": {
  193. "toufa3": {
  194. "type": "mesh",
  195. "uvs": [ 0.3751, 0.14538, 0.46529, 0.25087, 0.523, 0.34605, 0.59881, 0.47109, 0.66696, 0.58351, 0.71144, 0.63599, 0.76771, 0.70239, 0.86496, 0.81715, 1, 0.84883, 1, 1, 0.65046, 1, 0.52908, 0.95711, 0.35713, 0.89635, 0.27293, 0.83091, 0.23226, 0.7993, 0.16096, 0.74389, 0.12661, 0.68812, 0.05677, 0.5747, 0, 0.48253, 0, 0, 0.25079, 0, 0.24597, 0.36276, 0.4882, 0.69636, 0.7882, 0.90036, 0.15806, 0.23311, 0.31765, 0.46146, 0.37488, 0.54029, 0.56137, 0.74611, 0.43207, 0.61906, 0.6785, 0.82577 ],
  196. "triangles": [ 10, 23, 9, 23, 7, 9, 7, 8, 9, 10, 29, 23, 10, 11, 29, 11, 27, 29, 11, 12, 27, 23, 29, 7, 12, 22, 27, 29, 6, 7, 29, 5, 6, 29, 27, 5, 27, 4, 5, 27, 22, 4, 12, 13, 22, 22, 13, 28, 13, 14, 28, 28, 14, 26, 14, 15, 26, 15, 16, 26, 22, 28, 4, 16, 25, 26, 16, 17, 25, 28, 3, 4, 28, 26, 3, 26, 2, 3, 26, 25, 2, 25, 1, 2, 17, 21, 25, 17, 18, 21, 18, 24, 21, 18, 19, 24, 25, 21, 1, 21, 0, 1, 21, 24, 0, 24, 20, 0, 24, 19, 20 ],
  197. "vertices": [ 2, 33, 10.62, 11.65, 0.90847, 34, -8.65, 12.62, 0.09153, 3, 33, 17.64, 13.12, 0.58357, 34, -1.5, 13.35, 0.409, 35, -10.95, 20.2, 0.00743, 3, 33, 23.33, 13.36, 0.24513, 34, 4.17, 12.99, 0.69766, 35, -6.01, 17.39, 0.05721, 3, 33, 30.79, 13.66, 0.02278, 34, 11.63, 12.51, 0.6689, 35, 0.48, 13.69, 0.30832, 2, 34, 18.34, 12.09, 0.26545, 35, 6.32, 10.36, 0.73455, 2, 34, 21.88, 12.43, 0.09468, 35, 9.65, 9.12, 0.90532, 2, 34, 26.36, 12.87, 0.012, 35, 13.87, 7.55, 0.988, 1, 35, 21.16, 4.84, 1, 1, 35, 28.37, 6.76, 1, 1, 35, 31.82, 0.03, 1, 1, 35, 15.02, -8.58, 1, 2, 34, 28.81, -5.08, 0.02367, 35, 8.21, -9.66, 0.97633, 2, 34, 20.81, -10.68, 0.52868, 35, -1.44, -11.19, 0.47132, 3, 33, 37.21, -10.67, 0.00689, 34, 15.47, -12.36, 0.85352, 35, -6.98, -10.35, 0.13959, 3, 33, 34.73, -11.75, 0.02664, 34, 12.88, -13.17, 0.92065, 35, -9.65, -9.94, 0.05271, 3, 33, 30.38, -13.63, 0.10437, 34, 8.36, -14.58, 0.89264, 35, -14.34, -9.23, 0.00299, 2, 33, 27.03, -13.79, 0.20795, 34, 5.01, -14.4, 0.79205, 2, 33, 20.23, -14.12, 0.58643, 34, -1.79, -14.01, 0.41357, 2, 33, 14.7, -14.39, 0.83464, 34, -7.31, -13.7, 0.16536, 1, 33, -6.01, -2.01, 1, 2, 33, 0.94, 9.61, 0.99994, 34, -18.49, 11.61, 6.0E-5, 2, 33, 16.37, 0.09, 0.99976, 34, -4.13, 0.52, 2.4E-4, 2, 34, 17.06, 0.98, 0.45189, 35, 0.3, 0.94, 0.54811, 1, 35, 19.37, -0.75, 1, 1, 33, 8.37, -0.66, 1, 3, 33, 22.59, 0.88, 0.02391, 34, 2.14, 0.66, 0.97586, 35, -13.25, 7.2, 2.3E-4, 3, 33, 27.56, 1.51, 4.6E-4, 34, 7.14, 0.76, 0.99654, 35, -8.7, 5.1, 0.00301, 2, 34, 21.42, 2.65, 0.00754, 35, 4.95, 0.53, 0.99246, 2, 34, 12.15, 0.87, 0.97548, 35, -4.16, 3, 0.02452, 1, 35, 12.4, -0.13, 1 ],
  198. "hull": 21,
  199. "edges": [ 46, 18, 38, 40, 18, 16, 14, 16, 36, 38, 18, 20, 38, 48, 48, 42, 36, 48, 48, 40, 34, 36, 34, 42, 2, 0, 0, 40, 42, 0, 30, 32, 32, 34, 42, 50, 32, 50, 50, 2, 52, 50, 30, 52, 2, 4, 52, 4, 44, 54, 24, 54, 24, 26, 26, 44, 44, 8, 26, 28, 28, 30, 44, 56, 56, 52, 28, 56, 4, 6, 6, 8, 56, 6, 20, 46, 46, 14, 20, 22, 22, 24, 46, 58, 58, 54, 22, 58, 12, 14, 58, 12, 8, 10, 10, 12, 54, 10 ],
  200. "width": 54,
  201. "height": 50
  202. }
  203. },
  204. "toufa4": {
  205. "toufa4": {
  206. "type": "mesh",
  207. "uvs": [ 1, 0.36267, 1, 0.46213, 1, 0.56887, 1, 0.68531, 1, 0.78478, 1, 1, 0.55396, 1, 0, 1, 0, 0.81631, 0, 0.71442, 0, 0.5907, 0, 0.46698, 0, 0.36267, 0, 0, 0.40526, 0, 1, 0, 0.36278, 0.35539, 0.38756, 0.57372, 0.44421, 0.7872, 0.3725, 0.44107, 0.4173, 0.6858 ],
  208. "triangles": [ 18, 20, 3, 4, 18, 3, 8, 9, 20, 8, 20, 18, 7, 8, 18, 6, 18, 4, 7, 18, 6, 6, 4, 5, 3, 20, 2, 9, 17, 20, 19, 0, 1, 11, 16, 19, 17, 19, 1, 2, 17, 1, 17, 10, 11, 17, 11, 19, 20, 17, 2, 9, 10, 17, 16, 13, 14, 12, 13, 16, 14, 15, 0, 16, 14, 0, 19, 16, 0, 11, 12, 16 ],
  209. "vertices": [ 4, 25, 13.27, 23.49, 0.54692, 26, 1.39, 23.52, 0.30911, 27, -7.56, 24.53, 0.11398, 28, -16.84, 25.6, 0.02999, 4, 25, 18.63, 23.72, 0.34447, 26, 6.73, 23.03, 0.36886, 27, -2.3, 23.44, 0.19919, 28, -11.65, 24.2, 0.08748, 4, 25, 24.39, 23.97, 0.17123, 26, 12.47, 22.5, 0.33607, 27, 3.35, 22.26, 0.28259, 28, -6.09, 22.7, 0.21011, 4, 25, 30.67, 24.24, 0.06134, 26, 18.73, 21.92, 0.21786, 27, 9.5, 20.98, 0.28372, 28, -0.02, 21.06, 0.43708, 4, 25, 36.04, 24.47, 0.01831, 26, 24.08, 21.42, 0.11564, 27, 14.76, 19.88, 0.19528, 28, 5.17, 19.66, 0.67077, 3, 26, 35.65, 20.35, 0.02132, 27, 26.14, 17.51, 0.03449, 28, 16.39, 16.62, 0.94419, 1, 28, 12.08, 0.69, 1, 2, 27, 18.59, -18.71, 1.4E-4, 28, 6.73, -19.09, 0.99986, 3, 26, 22.37, -15.58, 0.01684, 27, 8.88, -16.69, 0.12141, 28, -2.84, -16.51, 0.86175, 4, 25, 33.83, -12.66, 2.0E-5, 26, 16.89, -15.07, 0.1051, 27, 3.49, -15.57, 0.2837, 28, -8.15, -15.07, 0.61118, 4, 25, 27.15, -12.95, 0.02213, 26, 10.24, -14.46, 0.37614, 27, -3.05, -14.2, 0.31688, 28, -14.6, -13.33, 0.28485, 4, 25, 20.48, -13.23, 0.19126, 26, 3.58, -13.84, 0.5742, 27, -9.59, -12.84, 0.14429, 28, -21.05, -11.58, 0.09026, 4, 25, 14.85, -13.47, 0.52332, 26, -2.03, -13.32, 0.41257, 27, -15.1, -11.69, 0.04194, 28, -26.49, -10.11, 0.02218, 1, 25, -4.72, -14.31, 1, 1, 25, -5.36, 0.67, 1, 3, 25, -6.3, 22.66, 0.96218, 26, -18.12, 25.33, 0.03733, 27, -26.73, 28.52, 4.9E-4, 3, 25, 13.88, -0.08, 0.99995, 27, -12.75, 1.53, 3.0E-5, 28, -23.37, 2.95, 2.0E-5, 2, 26, 10.64, -0.09, 0.99913, 28, -11.75, 0.75, 8.7E-4, 1, 28, -0.07, -0.23, 1, 1, 26, 3.46, 0.01, 1, 2, 27, 5.13, -0.13, 0.99512, 28, -5.62, 0.24, 0.00488 ],
  210. "hull": 16,
  211. "edges": [ 26, 28, 28, 30, 28, 32, 10, 12, 12, 14, 36, 12, 24, 26, 24, 32, 0, 30, 32, 0, 22, 24, 32, 38, 38, 34, 22, 38, 0, 2, 38, 2, 20, 22, 20, 34, 2, 4, 34, 4, 18, 20, 34, 40, 40, 36, 18, 40, 4, 6, 40, 6, 14, 16, 16, 18, 16, 36, 6, 8, 8, 10, 36, 8 ],
  212. "width": 37,
  213. "height": 54
  214. }
  215. },
  216. "yaoweijing": {
  217. "yaoweijing": {
  218. "type": "mesh",
  219. "uvs": [ 1, 0.53713, 1, 1, 0.64831, 1, 0, 1, 0, 0.24635, 0, 0, 0.23032, 0, 1, 0, 0.41271, 0.43382, 0.65271, 0.65191, 0.59991, 0.29609, 0.85071, 0.4453, 0.26112, 0.54478, 0.45911, 0.79347, 0.3323, 0.63419, 0.49538, 0.50894, 0.67971, 0.34356, 0.16714, 0.43738, 0.32025, 0.33663, 0.50126, 0.21706, 0.40013, 0.71938, 0.56966, 0.57644, 0.76325, 0.39327, 0.54277, 0.88479, 0.72363, 0.72299, 0.96771, 0.51727 ],
  220. "triangles": [ 2, 24, 1, 24, 0, 1, 3, 23, 2, 24, 25, 0, 2, 23, 24, 23, 9, 24, 23, 13, 9, 24, 11, 25, 24, 9, 11, 9, 22, 11, 0, 25, 7, 25, 11, 7, 3, 13, 23, 3, 20, 13, 3, 14, 20, 3, 12, 14, 13, 21, 9, 13, 20, 21, 20, 15, 21, 20, 14, 15, 9, 21, 22, 14, 8, 15, 21, 16, 22, 21, 15, 16, 15, 10, 16, 11, 22, 7, 22, 16, 7, 3, 17, 12, 3, 4, 17, 14, 12, 8, 12, 18, 8, 12, 17, 18, 15, 8, 10, 17, 4, 18, 8, 19, 10, 8, 18, 19, 16, 10, 7, 18, 5, 6, 18, 6, 19, 10, 19, 7, 18, 4, 5, 19, 6, 7 ],
  221. "vertices": [ 3, 41, 19.57, 7.23, 0.03722, 42, 9.37, 6.63, 0.17576, 43, 3.72, 6.48, 0.78701, 1, 43, 10.67, -1.59, 1, 3, 41, 22.52, -5.18, 0.00434, 42, 11.49, -5.95, 0.13728, 43, 5.33, -6.17, 0.85838, 3, 41, 13.65, -14.64, 0.26346, 42, 2.01, -14.8, 0.60891, 43, -4.49, -14.63, 0.12763, 2, 41, 1.01, -2.77, 0.99974, 42, -9.82, -2.13, 2.6E-4, 1, 41, -3.12, 1.1, 1, 3, 41, 0.03, 4.46, 0.99363, 42, -10.32, 5.16, 0.0047, 43, -16, 5.81, 0.00167, 3, 41, 10.56, 15.69, 0.44804, 42, 0.94, 15.66, 0.34397, 43, -4.33, 15.85, 0.20799, 3, 41, 9.8, 0.29, 0.97903, 42, -0.84, 0.35, 0.02016, 43, -6.73, 0.62, 8.1E-4, 2, 42, 6.09, -0.04, 0.2208, 43, 0.18, -0.05, 0.7792, 3, 41, 10.05, 5.19, 0.54529, 42, -0.27, 5.22, 0.35356, 43, -5.96, 5.47, 0.10115, 3, 41, 15.99, 6.5, 0.10468, 42, 5.74, 6.13, 0.36211, 43, 0.08, 6.14, 0.53321, 3, 41, 9.59, -3.66, 0.68547, 42, -1.32, -3.58, 0.30883, 43, -7.36, -3.29, 0.0057, 3, 41, 16.47, -4.69, 0.05727, 42, 5.48, -5.06, 0.55725, 43, -0.63, -5.04, 0.38548, 3, 41, 12.06, -4.03, 0.30736, 42, 1.13, -4.12, 0.64977, 43, -4.94, -3.92, 0.04287, 3, 41, 12.19, 0.32, 0.00778, 42, 1.55, 0.22, 0.9907, 43, -4.35, 0.39, 0.00152, 3, 41, 11.94, 5.61, 0.33359, 42, 1.65, 5.51, 0.47419, 43, -4.04, 5.68, 0.19222, 2, 41, 6.5, -3.34, 0.9375, 42, -4.38, -3.06, 0.0625, 3, 41, 6.91, 0.48, 0.99911, 42, -3.72, 0.72, 3.5E-4, 43, -9.59, 1.11, 5.4E-4, 3, 41, 7.38, 5, 0.80904, 42, -2.95, 5.2, 0.14742, 43, -8.64, 5.56, 0.04353, 3, 41, 14.42, -4.38, 0.12184, 42, 3.46, -4.62, 0.70534, 43, -2.64, -4.52, 0.17282, 3, 41, 14.34, 0.34, 2.8E-4, 42, 3.69, 0.09, 0.99855, 43, -2.21, 0.18, 0.00117, 3, 41, 13.92, 6.05, 0.18747, 42, 3.65, 5.82, 0.4709, 43, -2.02, 5.9, 0.34163, 3, 41, 19.14, -4.91, 0.0215, 42, 8.14, -5.46, 0.31334, 43, 2.01, -5.54, 0.66515, 2, 42, 8.24, -0.27, 0.00329, 43, 2.32, -0.36, 0.99671, 3, 41, 18.8, 7.08, 0.04759, 42, 8.58, 6.52, 0.20529, 43, 2.94, 6.41, 0.74712 ],
  222. "hull": 8,
  223. "edges": [ 10, 12, 12, 14, 2, 0, 0, 14, 6, 8, 8, 10, 2, 4, 4, 6, 24, 28, 16, 30, 28, 30, 20, 32, 30, 32, 8, 34, 34, 24, 10, 36, 36, 16, 34, 36, 12, 38, 38, 20, 36, 38, 26, 18, 18, 22, 26, 40, 40, 28, 18, 42, 42, 30, 40, 42, 22, 44, 44, 32, 42, 44, 4, 46, 46, 26, 2, 48, 48, 18, 46, 48, 0, 50, 50, 22, 48, 50 ],
  224. "width": 20,
  225. "height": 23
  226. }
  227. },
  228. "yinying": {
  229. "yinying": { "x": -15.21, "y": 28.96, "rotation": -15, "width": 86, "height": 45 }
  230. },
  231. "youbianwaitao": {
  232. "youbianwaitao": {
  233. "type": "mesh",
  234. "uvs": [ 1, 0.45037, 1, 0.50506, 1, 0.591, 1, 0.64412, 1, 0.71912, 1, 0.8035, 1, 1, 0.72652, 1, 0, 1, 0, 0.87225, 0, 0.78631, 0, 0.72537, 0, 0.65975, 0, 0.566, 0, 0.51287, 0, 0, 0.20547, 0, 1, 0, 0.33573, 0.55506, 0.43836, 0.76912, 0.37171, 0.63011, 0.45415, 0.6285, 0.32227, 0.49771, 0.52915, 0.48787, 0.40142, 0.69208, 0.47784, 0.68944, 0.51973, 0.83431 ],
  235. "triangles": [ 7, 5, 6, 8, 26, 7, 7, 26, 5, 8, 9, 26, 9, 19, 26, 9, 10, 19, 5, 26, 4, 26, 19, 4, 10, 24, 19, 10, 11, 24, 11, 12, 20, 19, 25, 4, 19, 24, 25, 11, 20, 24, 25, 3, 4, 24, 21, 25, 24, 20, 21, 3, 25, 2, 25, 21, 2, 20, 18, 21, 2, 21, 1, 21, 18, 1, 12, 18, 20, 12, 13, 18, 13, 22, 18, 13, 14, 22, 18, 23, 1, 18, 22, 23, 14, 16, 22, 14, 15, 16, 23, 0, 1, 22, 16, 23, 0, 23, 17, 23, 16, 17 ],
  236. "vertices": [ 2, 13, 13.91, 13.11, 0.52934, 14, -5.47, 12.87, 0.47066, 3, 13, 16.52, 12.85, 0.3702, 14, -2.87, 12.52, 0.62942, 15, -6.44, 15.16, 3.8E-4, 3, 13, 20.63, 12.44, 0.14267, 14, 1.22, 11.97, 0.8306, 15, -2.69, 13.43, 0.02672, 3, 13, 23.16, 12.18, 0.05406, 14, 3.75, 11.63, 0.85336, 15, -0.38, 12.36, 0.09258, 3, 13, 26.75, 11.82, 0.00483, 14, 7.32, 11.15, 0.69028, 15, 2.89, 10.85, 0.30489, 2, 14, 11.33, 10.6, 0.33931, 15, 6.57, 9.16, 0.66069, 1, 15, 15.13, 5.2, 1, 2, 14, 19.98, 4.19, 0.00267, 15, 12.95, 0.49, 0.99733, 2, 14, 18.13, -9.49, 0.51897, 15, 7.17, -12.05, 0.48103, 3, 13, 32.17, -7.81, 0.02492, 14, 12.05, -8.67, 0.43511, 15, 1.6, -9.48, 0.53997, 3, 13, 28.06, -7.4, 0.12136, 14, 7.97, -8.11, 0.14881, 15, -2.14, -7.75, 0.72983, 3, 13, 25.15, -7.11, 0.27858, 14, 5.07, -7.72, 0.00903, 15, -4.8, -6.52, 0.71239, 3, 13, 22.02, -6.8, 0.55266, 14, 1.95, -7.3, 3.7E-4, 15, -7.66, -5.2, 0.44697, 2, 13, 17.54, -6.35, 0.88197, 15, -11.74, -3.32, 0.11803, 2, 13, 15, -6.1, 0.95919, 15, -14.06, -2.25, 0.04081, 1, 13, -9.49, -3.65, 1, 1, 13, -9.1, 0.24, 1, 2, 13, -7.6, 15.26, 0.9993, 14, -26.89, 15.77, 7.0E-4, 2, 13, 17.65, 0.05, 0.99846, 14, -2.18, -0.31, 0.00154, 1, 15, 0.6, 0.16, 1, 3, 13, 21.31, 0.37, 0.02318, 14, 1.48, -0.11, 0.97165, 15, -5.99, 1.81, 0.00517, 1, 14, 1.62, 1.45, 1, 2, 13, 14.89, 0.07, 0.99803, 14, -4.94, -0.19, 0.00197, 2, 13, 14.81, 4.03, 0.70683, 14, -4.88, 3.77, 0.29317, 1, 14, 4.51, 0.05, 1, 1, 14, 4.57, 1.51, 1, 1, 15, 4.09, 0.25, 1 ],
  237. "hull": 18,
  238. "edges": [ 30, 32, 32, 34, 12, 14, 14, 16, 26, 36, 36, 2, 24, 26, 36, 40, 24, 40, 2, 4, 42, 4, 26, 28, 28, 30, 32, 44, 44, 36, 28, 44, 2, 0, 0, 34, 46, 0, 20, 38, 38, 8, 20, 22, 22, 24, 38, 48, 48, 40, 22, 48, 4, 6, 6, 8, 50, 6, 16, 18, 18, 20, 14, 52, 52, 38, 18, 52, 8, 10, 10, 12, 52, 10 ],
  239. "width": 19,
  240. "height": 48
  241. }
  242. },
  243. "youshou": {
  244. "youshou": {
  245. "type": "mesh",
  246. "uvs": [ 0.42785, 0.14142, 0.47376, 0.17606, 0.66542, 0.30731, 0.76345, 0.37661, 0.90808, 0.47886, 1, 0.54385, 1, 1, 0.50709, 0.89, 0.40987, 0.73711, 0.33723, 0.66007, 0.23837, 0.55523, 0.14876, 0.46019, 0.05066, 0.35652, 0, 0.30298, 0, 0, 0.24043, 0, 0.37675, 0.38199, 0.65582, 0.65276, 0.22075, 0.22382, 0.28017, 0.28407, 0.47474, 0.47706, 0.58388, 0.58296 ],
  247. "triangles": [ 7, 17, 6, 17, 5, 6, 7, 8, 17, 8, 21, 17, 8, 9, 21, 9, 20, 21, 9, 10, 20, 17, 4, 5, 17, 21, 4, 21, 3, 4, 21, 20, 3, 10, 16, 20, 10, 11, 16, 20, 2, 3, 20, 16, 2, 11, 19, 16, 11, 12, 19, 16, 1, 2, 16, 19, 1, 12, 18, 19, 12, 13, 18, 13, 14, 18, 19, 0, 1, 19, 18, 0, 18, 15, 0, 18, 14, 15 ],
  248. "vertices": [ 2, 19, 7.34, 6.88, 0.99979, 20, -10.54, 7.11, 2.1E-4, 2, 19, 9.51, 7.17, 0.98929, 20, -8.37, 7.35, 0.01071, 2, 19, 17.94, 8.7, 0.43803, 20, 0.09, 8.7, 0.56197, 3, 19, 22.35, 9.43, 0.10252, 20, 4.52, 9.33, 0.89648, 21, -12.53, 7.55, 0.001, 3, 19, 28.86, 10.5, 3.2E-4, 20, 11.04, 10.27, 0.89027, 21, -6.21, 9.45, 0.10941, 2, 20, 15.2, 10.87, 0.69094, 21, -2.2, 10.66, 0.30906, 1, 21, 20.15, 2.71, 1, 2, 20, 24.8, -9.36, 0.00288, 21, 10.3, -7.91, 0.99712, 2, 20, 16.55, -7.92, 0.35169, 21, 1.93, -7.72, 0.64831, 2, 20, 12.09, -7.76, 0.78999, 21, -2.5, -8.23, 0.21001, 3, 19, 24.21, -7.42, 0.01286, 20, 6.02, -7.55, 0.97985, 21, -8.53, -8.92, 0.00729, 2, 19, 18.71, -7.34, 0.33453, 20, 0.52, -7.35, 0.66547, 2, 19, 12.71, -7.26, 0.90841, 20, -5.48, -7.15, 0.09159, 2, 19, 9.61, -7.22, 0.98754, 20, -8.58, -7.04, 0.01246, 1, 19, -4.44, -0.09, 1, 1, 19, -1.51, 5.7, 1, 2, 19, 17.87, -0.01, 0.64079, 20, -0.16, -0.01, 0.35921, 2, 20, 15.81, 0, 0.47826, 21, 0.03, 0.01, 0.52174, 1, 19, 8.63, -0.04, 1, 2, 19, 12.15, -0.03, 0.99999, 20, -5.88, 0.09, 1.0E-5, 1, 20, 5.45, 0, 1, 1, 20, 11.69, 0, 1 ],
  249. "hull": 16,
  250. "edges": [ 34, 12, 26, 28, 16, 14, 28, 30, 2, 4, 12, 10, 12, 14, 28, 36, 26, 36, 2, 0, 0, 30, 36, 0, 22, 24, 24, 26, 32, 38, 38, 36, 24, 38, 38, 2, 22, 32, 32, 4, 20, 22, 32, 40, 20, 40, 4, 6, 40, 6, 16, 34, 34, 10, 16, 18, 18, 20, 34, 42, 42, 40, 18, 42, 6, 8, 8, 10, 42, 8 ],
  251. "width": 27,
  252. "height": 52
  253. }
  254. },
  255. "youtui": {
  256. "youtui": {
  257. "type": "mesh",
  258. "uvs": [ 1, 0.3546, 1, 0.40092, 1, 0.46711, 1, 0.67558, 1, 0.70536, 1, 0.73845, 1, 1, 0.7921, 1, 0, 1, 0, 0.816, 0.36137, 0.725, 0.36137, 0.69543, 0.36137, 0.664, 0.36137, 0.46711, 0.36137, 0.4156, 0.34408, 0.3592, 0.23397, 0, 0.63437, 0, 1, 0, 0.70414, 0.40898, 0.7375, 0.73327, 0.73083, 0.66842, 0.73466, 0.70563, 0.71005, 0.46646, 0.69601, 0.36132 ],
  259. "triangles": [ 7, 5, 6, 8, 10, 7, 10, 20, 7, 8, 9, 10, 7, 20, 5, 20, 4, 5, 10, 22, 20, 20, 22, 4, 10, 11, 22, 11, 21, 22, 4, 22, 3, 22, 21, 3, 11, 12, 21, 21, 2, 3, 12, 23, 21, 21, 23, 2, 12, 13, 23, 13, 19, 23, 13, 14, 19, 23, 1, 2, 23, 19, 1, 14, 24, 19, 14, 15, 24, 1, 19, 0, 19, 24, 0, 18, 0, 24, 24, 15, 17, 15, 16, 17, 24, 17, 18 ],
  260. "vertices": [ 2, 5, 23.8, 9.25, 0.73398, 6, -2.21, 9.18, 0.26602, 2, 5, 26.33, 9, 0.50367, 6, 0.34, 9.02, 0.49633, 2, 5, 29.96, 8.65, 0.19045, 6, 3.97, 8.78, 0.80955, 2, 6, 15.41, 8.04, 0.93367, 7, -9.42, -1.92, 0.06633, 2, 6, 17.04, 7.93, 0.85287, 7, -8.73, -0.43, 0.14713, 2, 6, 18.86, 7.82, 0.70988, 7, -7.96, 1.21, 0.29012, 1, 7, -1.86, 14.25, 1, 1, 7, 3.79, 11.6, 1, 1, 7, 25.31, 1.54, 1, 2, 6, 21.17, -22.4, 2.0E-5, 7, 21.03, -7.63, 0.99998, 2, 6, 16.88, -11.26, 0.34779, 7, 9.09, -7.57, 0.65221, 2, 6, 15.26, -11.15, 0.54771, 7, 8.4, -9.04, 0.45229, 3, 5, 38.87, -11.47, 4.9E-4, 6, 13.53, -11.04, 0.69389, 7, 7.66, -10.61, 0.30562, 3, 5, 28.1, -10.42, 0.27456, 6, 2.73, -10.34, 0.72102, 7, 3.08, -20.42, 0.00442, 3, 5, 25.28, -10.14, 0.51757, 6, -0.1, -10.15, 0.48222, 7, 1.88, -22.99, 2.0E-4, 2, 5, 22.14, -10.36, 0.77437, 6, -3.23, -10.47, 0.22563, 1, 5, 2.16, -11.73, 1, 1, 5, 3.32, 0.23, 1, 1, 5, 4.39, 11.14, 1, 2, 5, 25.91, 0.13, 0.35304, 6, 0.2, 0.13, 0.64696, 1, 6, 18.07, -0.02, 1, 2, 6, 14.49, 0.01, 0.99993, 7, -2.27, -5.69, 7.0E-5, 1, 6, 16.54, -0.01, 1, 1, 6, 3.37, 0.1, 1, 2, 5, 23.28, 0.14, 0.99914, 6, -2.43, 0.06, 8.6E-4 ],
  261. "hull": 19,
  262. "edges": [ 34, 36, 12, 14, 14, 16, 40, 14, 32, 34, 16, 18, 20, 18, 20, 40, 12, 10, 40, 10, 24, 42, 42, 6, 20, 22, 22, 24, 40, 44, 44, 42, 22, 44, 6, 8, 8, 10, 44, 8, 28, 38, 38, 2, 24, 26, 26, 28, 38, 46, 46, 42, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 38, 30, 48, 2, 0, 0, 36, 48, 0 ],
  263. "width": 30,
  264. "height": 55
  265. }
  266. },
  267. "youyan": {
  268. "youyan": { "x": 2.84, "y": -2.33, "rotation": -88.78, "width": 23, "height": 17 }
  269. },
  270. "zuiba": {
  271. "zuiba": { "x": 1.04, "y": -0.83, "rotation": -93.81, "width": 10, "height": 7 }
  272. },
  273. "zuobianwaitao": {
  274. "zuobianwaitao": {
  275. "type": "mesh",
  276. "uvs": [ 1, 0.09424, 0.87228, 0.44323, 0.84919, 0.51386, 0.83176, 0.58406, 0.8058, 0.68859, 0.78934, 0.7549, 0.7773, 0.8034, 0.6441, 1, 0.23711, 1, 0, 1, 0, 0.77102, 0.03648, 0.71745, 0.07674, 0.65831, 0.16039, 0.53544, 0.20724, 0.46664, 0.25191, 0.40103, 0.4073, 0, 0.7329, 0, 1, 0, 0.5342, 0.50136, 0.3925, 0.79107, 0.56029, 0.42888, 0.41728, 0.74041, 0.44721, 0.67923, 0.50306, 0.56504 ],
  277. "triangles": [ 8, 20, 7, 7, 20, 6, 20, 8, 10, 8, 9, 10, 20, 22, 6, 10, 11, 20, 20, 11, 22, 6, 22, 5, 22, 23, 5, 5, 23, 4, 11, 12, 22, 22, 12, 23, 23, 24, 4, 4, 24, 3, 12, 13, 23, 23, 13, 24, 24, 19, 3, 3, 19, 2, 13, 14, 24, 24, 14, 19, 14, 15, 19, 19, 21, 2, 2, 21, 1, 19, 15, 21, 21, 17, 1, 1, 17, 0, 15, 16, 21, 21, 16, 17, 17, 18, 0 ],
  278. "vertices": [ 1, 10, -2.5, 5.75, 1, 2, 10, 14.44, 6.22, 0.95803, 11, -3, 6.28, 0.04197, 2, 10, 17.86, 6.36, 0.65482, 11, 0.42, 6.36, 0.34518, 2, 10, 21.24, 6.62, 0.24479, 11, 3.8, 6.55, 0.75521, 3, 10, 26.27, 7, 0.01943, 11, 8.84, 6.83, 0.91601, 12, -5.97, 5.81, 0.06456, 3, 10, 29.46, 7.24, 4.9E-4, 11, 12.03, 7.01, 0.69825, 12, -2.87, 6.59, 0.30125, 2, 11, 14.37, 7.14, 0.4403, 12, -0.6, 7.16, 0.5597, 1, 12, 9.18, 7.88, 1, 1, 12, 11.96, 0.23, 1, 1, 12, 13.58, -4.23, 1, 2, 11, 15.3, -8.45, 0.23926, 12, 3.25, -7.98, 0.76074, 2, 11, 12.65, -8.14, 0.47644, 12, 0.59, -8.18, 0.52356, 2, 11, 9.72, -7.8, 0.75869, 12, -2.36, -8.39, 0.24131, 3, 10, 21.32, -7.01, 0.05971, 11, 3.63, -7.08, 0.93007, 12, -8.47, -8.83, 0.01022, 3, 10, 17.91, -6.67, 0.35735, 11, 0.22, -6.68, 0.64265, 12, -11.9, -9.08, 0, 2, 10, 14.65, -6.35, 0.78924, 11, -3.03, -6.3, 0.21076, 1, 10, -4.85, -6.72, 1, 1, 10, -6, -0.31, 1, 1, 10, -6.95, 4.95, 1, 1, 11, 0.83, 0.04, 1, 2, 11, 15.01, -0.55, 0.01136, 12, 1.47, -0.28, 0.98864, 2, 10, 14.87, -0.05, 0.99983, 11, -2.69, 0.01, 1.7E-4, 1, 11, 12.53, -0.45, 1, 2, 11, 9.53, -0.32, 0.99678, 12, -3.95, -1.08, 0.00322, 1, 11, 3.94, -0.09, 1 ],
  279. "hull": 19,
  280. "edges": [ 34, 36, 16, 18, 40, 16, 32, 34, 32, 30, 18, 20, 0, 36, 14, 16, 12, 14, 34, 42, 42, 38, 30, 42, 0, 2, 42, 2, 28, 30, 28, 38, 38, 4, 2, 4, 20, 40, 40, 12, 20, 22, 44, 40, 22, 44, 10, 12, 44, 10, 22, 24, 46, 44, 24, 46, 8, 10, 46, 8, 24, 26, 26, 28, 38, 48, 48, 46, 26, 48, 4, 6, 6, 8, 48, 6 ],
  281. "width": 20,
  282. "height": 48
  283. }
  284. },
  285. "zuoshou": {
  286. "zuoshou": {
  287. "type": "mesh",
  288. "uvs": [ 1, 0.34696, 0.94905, 0.40929, 0.88917, 0.48253, 0.85747, 0.52505, 0.72031, 0.70899, 0.68477, 0.75666, 0.46334, 1, 0, 1, 0, 0.775, 0.29544, 0.58729, 0.33694, 0.54271, 0.52778, 0.33773, 0.57284, 0.28933, 0.62825, 0.23253, 0.8551, 0, 1, 0, 0.72028, 0.37365, 0.46765, 0.67459, 0.76685, 0.31145, 0.68614, 0.41433, 0.50892, 0.62542 ],
  289. "triangles": [ 6, 17, 5, 6, 7, 17, 17, 8, 9, 17, 7, 8, 17, 20, 5, 9, 10, 17, 5, 20, 4, 20, 19, 4, 4, 19, 3, 17, 10, 20, 20, 11, 19, 20, 10, 11, 19, 16, 3, 3, 16, 2, 11, 12, 19, 19, 12, 16, 16, 18, 2, 2, 18, 1, 1, 18, 0, 12, 13, 16, 16, 13, 18, 18, 15, 0, 18, 14, 15, 18, 13, 14 ],
  290. "vertices": [ 2, 16, 10.32, 7.15, 0.9197, 17, -4.92, 7.02, 0.0803, 2, 16, 13.73, 7.03, 0.66334, 17, -1.5, 6.99, 0.33666, 2, 16, 17.75, 6.89, 0.19965, 17, 2.51, 6.96, 0.80035, 2, 16, 20.03, 6.89, 0.05959, 17, 4.8, 7.03, 0.94041, 2, 17, 14.7, 7.31, 0.61512, 18, -1.43, 7.19, 0.38488, 2, 17, 17.27, 7.38, 0.32394, 18, 1.11, 7.57, 0.67606, 1, 18, 14.73, 8.54, 1, 1, 18, 22.33, -3.1, 1, 1, 18, 13.11, -9.13, 1, 2, 17, 14.97, -6.76, 0.46023, 18, 0.56, -6.74, 0.53977, 2, 17, 12.46, -6.61, 0.78344, 18, -1.95, -6.9, 0.21656, 2, 16, 15.79, -5.92, 0.35239, 17, 0.92, -5.9, 0.64761, 2, 16, 13.07, -5.68, 0.73844, 17, -1.8, -5.73, 0.26156, 2, 16, 9.85, -5.32, 0.97302, 17, -5.03, -5.47, 0.02698, 1, 16, -3.34, -3.86, 1, 1, 16, -5.15, 0.1, 1, 2, 16, 14.99, 0.06, 0.53971, 17, -0.04, 0.06, 0.46029, 2, 17, 16.53, -0.24, 0.00266, 18, 1.31, -0.08, 0.99734, 1, 16, 11.64, 0.07, 1, 1, 17, 2.2, 0.02, 1, 1, 17, 13.82, -0.19, 1 ],
  291. "hull": 16,
  292. "edges": [ 34, 14, 28, 30, 14, 16, 18, 16, 0, 30, 12, 14, 10, 12, 24, 32, 32, 4, 24, 26, 26, 28, 30, 36, 36, 32, 26, 36, 0, 2, 2, 4, 36, 2, 22, 24, 32, 38, 22, 38, 4, 6, 38, 6, 18, 34, 34, 10, 18, 20, 20, 22, 34, 40, 40, 38, 20, 40, 6, 8, 8, 10, 40, 8 ],
  293. "width": 30,
  294. "height": 49
  295. }
  296. },
  297. "zuotui": {
  298. "zuotui": {
  299. "type": "mesh",
  300. "uvs": [ 1, 0.3442, 1, 0.41297, 1, 0.4896, 1, 0.63501, 1, 0.71164, 1, 1, 0.66915, 1, 0, 1, 0, 0.80006, 0.29243, 0.69199, 0.30806, 0.62416, 0.34212, 0.47641, 0.35793, 0.40781, 0.37461, 0.33548, 0.45194, 0, 0.76758, 0, 1, 0, 0.73364, 0.41101, 0.70061, 0.7042, 0.70988, 0.62194, 0.73963, 0.33847, 0.72479, 0.48953 ],
  301. "triangles": [ 6, 18, 5, 7, 9, 6, 6, 9, 18, 7, 8, 9, 18, 4, 5, 18, 19, 4, 19, 3, 4, 9, 10, 18, 18, 10, 19, 19, 21, 3, 21, 2, 3, 10, 11, 19, 19, 11, 21, 21, 17, 2, 17, 1, 2, 11, 12, 21, 21, 12, 17, 12, 13, 17, 17, 20, 1, 20, 0, 1, 17, 13, 20, 20, 15, 0, 15, 16, 0, 13, 14, 20, 20, 14, 15 ],
  302. "vertices": [ 2, 2, 19.42, 8.8, 0.79571, 3, -3.87, 8.87, 0.20429, 2, 2, 23.34, 9.07, 0.45143, 3, 0.05, 9.07, 0.54857, 3, 2, 27.69, 9.36, 0.1229, 3, 4.41, 9.28, 0.877, 4, -14.48, -12.59, 1.0E-4, 2, 3, 12.69, 9.68, 0.91141, 4, -11.79, -4.76, 0.08859, 2, 3, 17.05, 9.9, 0.67913, 4, -10.36, -0.63, 0.32087, 2, 3, 33.47, 10.7, 0, 4, -5.02, 14.91, 1, 1, 4, 5.31, 11.36, 1, 1, 4, 26.19, 4.17, 1, 2, 3, 23.69, -22.82, 0.00278, 4, 22.48, -6.6, 0.99722, 2, 3, 17.07, -13.48, 0.38267, 4, 11.35, -9.29, 0.61733, 3, 2, 36.87, -12.92, 0.00221, 3, 13.18, -13.15, 0.71149, 4, 9.6, -12.77, 0.2863, 3, 2, 28.39, -12.36, 0.16096, 3, 4.72, -12.44, 0.81309, 4, 5.8, -20.37, 0.02595, 3, 2, 24.45, -12.1, 0.40091, 3, 0.78, -12.11, 0.59554, 4, 4.03, -23.9, 0.00354, 2, 2, 20.3, -11.82, 0.70915, 3, -3.36, -11.76, 0.29085, 1, 2, 1.05, -10.55, 1, 1, 2, 0.36, -0.15, 1, 1, 2, -0.15, 7.5, 1, 2, 2, 23.81, 0.29, 0.23337, 3, 0.36, 0.28, 0.76663, 1, 3, 17.11, 0.01, 1, 1, 3, 12.41, 0.08, 1, 2, 2, 19.67, 0.21, 0.9985, 3, -3.78, 0.28, 0.0015, 2, 2, 28.29, 0.29, 3.2E-4, 3, 4.85, 0.21, 0.99968 ],
  303. "hull": 17,
  304. "edges": [ 30, 32, 10, 12, 12, 14, 28, 30, 14, 16, 18, 16, 18, 36, 10, 8, 36, 8, 18, 20, 38, 36, 20, 38, 8, 6, 38, 6, 36, 12, 24, 34, 34, 2, 24, 26, 26, 28, 30, 40, 40, 34, 26, 40, 2, 0, 0, 32, 40, 0, 20, 22, 22, 24, 34, 42, 42, 38, 22, 42, 2, 4, 4, 6, 42, 4 ],
  305. "width": 33,
  306. "height": 57
  307. }
  308. },
  309. "zuoyan": {
  310. "zuoyan": { "x": 1.4, "y": 0.74, "rotation": -93.01, "width": 19, "height": 17 }
  311. }
  312. }
  313. },
  314. "animations": {
  315. "stand1": {
  316. "slots": {
  317. "biyan": {
  318. "attachment": [
  319. { "time": 0, "name": null },
  320. { "time": 1, "name": null },
  321. { "time": 1.2667, "name": "biyan" },
  322. { "time": 1.3333, "name": null },
  323. { "time": 2, "name": null }
  324. ]
  325. },
  326. "maozi2": {
  327. "attachment": [
  328. { "time": 0, "name": null }
  329. ]
  330. },
  331. "star": {
  332. "color": [
  333. { "time": 0, "color": "ffffff00" }
  334. ]
  335. },
  336. "star2": {
  337. "color": [
  338. { "time": 0, "color": "ffffff00" }
  339. ]
  340. },
  341. "star3": {
  342. "color": [
  343. { "time": 0, "color": "ffffff00" }
  344. ]
  345. },
  346. "star4": {
  347. "color": [
  348. { "time": 0, "color": "ffffff00" }
  349. ]
  350. },
  351. "youyan": {
  352. "attachment": [
  353. { "time": 1.2667, "name": null },
  354. { "time": 1.3333, "name": "youyan" },
  355. { "time": 1.5, "name": "youyan" }
  356. ]
  357. },
  358. "zuoyan": {
  359. "attachment": [
  360. { "time": 1.2667, "name": null },
  361. { "time": 1.3333, "name": "zuoyan" },
  362. { "time": 1.5, "name": "zuoyan" }
  363. ]
  364. }
  365. },
  366. "bones": {
  367. "root": {
  368. "rotate": [
  369. { "time": 0, "angle": 0, "curve": "stepped" },
  370. { "time": 0.5, "angle": 0, "curve": "stepped" },
  371. { "time": 1, "angle": 0, "curve": "stepped" },
  372. { "time": 1.5, "angle": 0, "curve": "stepped" },
  373. { "time": 2, "angle": 0 }
  374. ],
  375. "translate": [
  376. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  377. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  378. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  379. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  380. { "time": 2, "x": 0, "y": 0 }
  381. ],
  382. "scale": [
  383. { "time": 0, "x": 0.65, "y": 0.65 }
  384. ]
  385. },
  386. "bone": {
  387. "rotate": [
  388. { "time": 0, "angle": 0, "curve": "stepped" },
  389. { "time": 0.5, "angle": 0, "curve": "stepped" },
  390. { "time": 1, "angle": 0, "curve": "stepped" },
  391. { "time": 1.5, "angle": 0, "curve": "stepped" },
  392. { "time": 2, "angle": 0 }
  393. ],
  394. "translate": [
  395. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  396. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  397. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  398. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  399. { "time": 2, "x": 0, "y": 0 }
  400. ]
  401. },
  402. "bone2": {
  403. "rotate": [
  404. { "time": 0, "angle": 0, "curve": "stepped" },
  405. { "time": 0.5, "angle": 0, "curve": "stepped" },
  406. { "time": 1, "angle": 0, "curve": "stepped" },
  407. { "time": 1.5, "angle": 0, "curve": "stepped" },
  408. { "time": 2, "angle": 0 }
  409. ],
  410. "translate": [
  411. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  412. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  413. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  414. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  415. { "time": 2, "x": 0, "y": 0 }
  416. ]
  417. },
  418. "bone3": {
  419. "rotate": [
  420. { "time": 0, "angle": 0, "curve": "stepped" },
  421. { "time": 0.5, "angle": 0, "curve": "stepped" },
  422. { "time": 1, "angle": 0, "curve": "stepped" },
  423. { "time": 1.5, "angle": 0, "curve": "stepped" },
  424. { "time": 2, "angle": 0 }
  425. ],
  426. "translate": [
  427. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  428. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  429. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  430. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  431. { "time": 2, "x": 0, "y": 0 }
  432. ]
  433. },
  434. "bone4": {
  435. "rotate": [
  436. { "time": 0, "angle": 0, "curve": "stepped" },
  437. { "time": 0.5, "angle": 0, "curve": "stepped" },
  438. { "time": 1, "angle": 0, "curve": "stepped" },
  439. { "time": 1.5, "angle": 0, "curve": "stepped" },
  440. { "time": 2, "angle": 0 }
  441. ],
  442. "translate": [
  443. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  444. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  445. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  446. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  447. { "time": 2, "x": 0, "y": 0 }
  448. ]
  449. },
  450. "bone5": {
  451. "rotate": [
  452. { "time": 0, "angle": 0, "curve": "stepped" },
  453. { "time": 0.5, "angle": 0, "curve": "stepped" },
  454. { "time": 1, "angle": 0, "curve": "stepped" },
  455. { "time": 1.5, "angle": 0, "curve": "stepped" },
  456. { "time": 2, "angle": 0 }
  457. ],
  458. "translate": [
  459. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  460. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  461. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  462. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  463. { "time": 2, "x": 0, "y": 0 }
  464. ]
  465. },
  466. "bone6": {
  467. "rotate": [
  468. { "time": 0, "angle": 0, "curve": "stepped" },
  469. { "time": 0.5, "angle": 0, "curve": "stepped" },
  470. { "time": 1, "angle": 0, "curve": "stepped" },
  471. { "time": 1.5, "angle": 0, "curve": "stepped" },
  472. { "time": 2, "angle": 0 }
  473. ],
  474. "translate": [
  475. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  476. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  477. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  478. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  479. { "time": 2, "x": 0, "y": 0 }
  480. ]
  481. },
  482. "bone7": {
  483. "rotate": [
  484. { "time": 0, "angle": 0, "curve": "stepped" },
  485. { "time": 0.5, "angle": 0, "curve": "stepped" },
  486. { "time": 1, "angle": 0, "curve": "stepped" },
  487. { "time": 1.5, "angle": 0, "curve": "stepped" },
  488. { "time": 2, "angle": 0 }
  489. ],
  490. "translate": [
  491. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  492. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  493. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  494. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  495. { "time": 2, "x": 0, "y": 0 }
  496. ]
  497. },
  498. "bone8": {
  499. "rotate": [
  500. { "time": 0, "angle": 0, "curve": "stepped" },
  501. { "time": 0.5, "angle": 0, "curve": "stepped" },
  502. { "time": 1, "angle": 0, "curve": "stepped" },
  503. { "time": 1.5, "angle": 0, "curve": "stepped" },
  504. { "time": 2, "angle": 0 }
  505. ],
  506. "translate": [
  507. { "time": 0, "x": 0, "y": 0 },
  508. { "time": 0.5, "x": 0.06, "y": 1.05 },
  509. { "time": 1, "x": 0, "y": 0 },
  510. { "time": 1.5, "x": 0.06, "y": 1.05 },
  511. { "time": 2, "x": 0, "y": 0 }
  512. ],
  513. "scale": [
  514. { "time": 0, "x": 1, "y": 1 },
  515. { "time": 0.5, "x": 1.06, "y": 1 },
  516. { "time": 1, "x": 1, "y": 1 },
  517. { "time": 1.5, "x": 1.06, "y": 1 },
  518. { "time": 2, "x": 1, "y": 1 }
  519. ]
  520. },
  521. "bone9": {
  522. "rotate": [
  523. { "time": 0, "angle": 0, "curve": "stepped" },
  524. { "time": 0.5, "angle": 0, "curve": "stepped" },
  525. { "time": 1, "angle": 0, "curve": "stepped" },
  526. { "time": 1.5, "angle": 0, "curve": "stepped" },
  527. { "time": 2, "angle": 0 }
  528. ],
  529. "translate": [
  530. { "time": 0, "x": 0, "y": 0 },
  531. { "time": 0.5, "x": 0.03, "y": 1 },
  532. { "time": 1, "x": 0, "y": 0 },
  533. { "time": 1.5, "x": 0.03, "y": 1 },
  534. { "time": 2, "x": 0, "y": 0 }
  535. ],
  536. "scale": [
  537. { "time": 0, "x": 1, "y": 1 },
  538. { "time": 0.5, "x": 1.113, "y": 1 },
  539. { "time": 1, "x": 1, "y": 1 },
  540. { "time": 1.5, "x": 1.113, "y": 1 },
  541. { "time": 2, "x": 1, "y": 1 }
  542. ]
  543. },
  544. "bone10": {
  545. "rotate": [
  546. { "time": 0, "angle": 0, "curve": "stepped" },
  547. { "time": 0.5, "angle": 0, "curve": "stepped" },
  548. { "time": 1, "angle": 0, "curve": "stepped" },
  549. { "time": 1.5, "angle": 0, "curve": "stepped" },
  550. { "time": 2, "angle": 0 }
  551. ],
  552. "translate": [
  553. { "time": 0, "x": 0, "y": 0 },
  554. { "time": 0.5, "x": 0.66, "y": -0.31 },
  555. { "time": 1, "x": 0, "y": 0 },
  556. { "time": 1.5, "x": 0.66, "y": -0.31 },
  557. { "time": 2, "x": 0, "y": 0 }
  558. ]
  559. },
  560. "bone11": {
  561. "rotate": [
  562. { "time": 0, "angle": 2.42 },
  563. { "time": 0.5, "angle": -1.3 },
  564. { "time": 1, "angle": 2.42 },
  565. { "time": 1.5, "angle": -1.3 },
  566. { "time": 2, "angle": 2.42 }
  567. ],
  568. "translate": [
  569. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  570. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  571. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  572. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  573. { "time": 2, "x": 0, "y": 0 }
  574. ]
  575. },
  576. "bone12": {
  577. "rotate": [
  578. { "time": 0, "angle": 2.42 },
  579. { "time": 0.5, "angle": -16.28 },
  580. { "time": 1, "angle": 2.42 },
  581. { "time": 1.5, "angle": -16.28 },
  582. { "time": 2, "angle": 2.42 }
  583. ],
  584. "translate": [
  585. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  586. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  587. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  588. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  589. { "time": 2, "x": 0, "y": 0 }
  590. ]
  591. },
  592. "bone13": {
  593. "rotate": [
  594. { "time": 0, "angle": 0, "curve": "stepped" },
  595. { "time": 0.5, "angle": 0, "curve": "stepped" },
  596. { "time": 1, "angle": 0, "curve": "stepped" },
  597. { "time": 1.5, "angle": 0, "curve": "stepped" },
  598. { "time": 2, "angle": 0 }
  599. ],
  600. "translate": [
  601. { "time": 0, "x": 0, "y": 0 },
  602. { "time": 0.5, "x": 0.3, "y": -0.17 },
  603. { "time": 1, "x": 0, "y": 0 },
  604. { "time": 1.5, "x": 0.3, "y": -0.17 },
  605. { "time": 2, "x": 0, "y": 0 }
  606. ]
  607. },
  608. "bone14": {
  609. "rotate": [
  610. { "time": 0, "angle": 0 },
  611. { "time": 0.5, "angle": 4.46 },
  612. { "time": 1, "angle": 0 },
  613. { "time": 1.5, "angle": 4.46 },
  614. { "time": 2, "angle": 0 }
  615. ],
  616. "translate": [
  617. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  618. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  619. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  620. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  621. { "time": 2, "x": 0, "y": 0 }
  622. ]
  623. },
  624. "bone15": {
  625. "rotate": [
  626. { "time": 0, "angle": 0, "curve": "stepped" },
  627. { "time": 0.5, "angle": 0, "curve": "stepped" },
  628. { "time": 1, "angle": 0, "curve": "stepped" },
  629. { "time": 1.5, "angle": 0, "curve": "stepped" },
  630. { "time": 2, "angle": 0 }
  631. ],
  632. "translate": [
  633. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  634. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  635. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  636. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  637. { "time": 2, "x": 0, "y": 0 }
  638. ]
  639. },
  640. "bone16": {
  641. "rotate": [
  642. { "time": 0, "angle": 15.96 },
  643. { "time": 0.5, "angle": 5.2 },
  644. { "time": 1, "angle": 15.96 },
  645. { "time": 1.5, "angle": 5.2 },
  646. { "time": 2, "angle": 15.96 }
  647. ],
  648. "translate": [
  649. { "time": 0, "x": 0, "y": 0 },
  650. { "time": 0.5, "x": 0.85, "y": -0.25 },
  651. { "time": 1, "x": 0, "y": 0 },
  652. { "time": 1.5, "x": 0.85, "y": -0.25 },
  653. { "time": 2, "x": 0, "y": 0 }
  654. ]
  655. },
  656. "bone17": {
  657. "rotate": [
  658. { "time": 0, "angle": 0 },
  659. { "time": 0.5, "angle": 13.82 },
  660. { "time": 1, "angle": 0 },
  661. { "time": 1.5, "angle": 13.82 },
  662. { "time": 2, "angle": 0 }
  663. ],
  664. "translate": [
  665. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  666. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  667. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  668. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  669. { "time": 2, "x": 0, "y": 0 }
  670. ]
  671. },
  672. "bone18": {
  673. "rotate": [
  674. { "time": 0, "angle": 0 },
  675. { "time": 0.5, "angle": 5.36 },
  676. { "time": 1, "angle": 0 },
  677. { "time": 1.5, "angle": 5.36 },
  678. { "time": 2, "angle": 0 }
  679. ],
  680. "translate": [
  681. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  682. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  683. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  684. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  685. { "time": 2, "x": 0, "y": 0 }
  686. ]
  687. },
  688. "bone19": {
  689. "rotate": [
  690. { "time": 0, "angle": -15.4 },
  691. { "time": 0.5, "angle": -7.15 },
  692. { "time": 1, "angle": -15.4 },
  693. { "time": 1.5, "angle": -7.15 },
  694. { "time": 2, "angle": -15.4 }
  695. ],
  696. "translate": [
  697. { "time": 0, "x": 0, "y": 0 },
  698. { "time": 0.5, "x": 0.81, "y": 0.34 },
  699. { "time": 1, "x": 0, "y": 0 },
  700. { "time": 1.5, "x": 0.81, "y": 0.34 },
  701. { "time": 2, "x": 0, "y": 0 }
  702. ]
  703. },
  704. "bone20": {
  705. "rotate": [
  706. { "time": 0, "angle": 0 },
  707. { "time": 0.5, "angle": -9.66 },
  708. { "time": 1, "angle": 0 },
  709. { "time": 1.5, "angle": -9.66 },
  710. { "time": 2, "angle": 0 }
  711. ],
  712. "translate": [
  713. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  714. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  715. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  716. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  717. { "time": 2, "x": 0, "y": 0 }
  718. ]
  719. },
  720. "bone21": {
  721. "rotate": [
  722. { "time": 0, "angle": 0, "curve": "stepped" },
  723. { "time": 0.5, "angle": 0, "curve": "stepped" },
  724. { "time": 1, "angle": 0, "curve": "stepped" },
  725. { "time": 1.5, "angle": 0, "curve": "stepped" },
  726. { "time": 2, "angle": 0 }
  727. ],
  728. "translate": [
  729. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  730. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  731. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  732. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  733. { "time": 2, "x": 0, "y": 0 }
  734. ]
  735. },
  736. "bone22": {
  737. "rotate": [
  738. { "time": 0, "angle": 0, "curve": "stepped" },
  739. { "time": 0.5, "angle": 0, "curve": "stepped" },
  740. { "time": 1, "angle": 0, "curve": "stepped" },
  741. { "time": 1.5, "angle": 0, "curve": "stepped" },
  742. { "time": 2, "angle": 0 }
  743. ],
  744. "translate": [
  745. { "time": 0, "x": 0, "y": 0 }
  746. ],
  747. "scale": [
  748. { "time": 0, "x": 1, "y": 1 },
  749. { "time": 0.5, "x": 1.01, "y": 1 },
  750. { "time": 1, "x": 1, "y": 1 },
  751. { "time": 1.5, "x": 1.01, "y": 1 },
  752. { "time": 2, "x": 1, "y": 1 }
  753. ]
  754. },
  755. "bone23": {
  756. "rotate": [
  757. { "time": 0, "angle": 0, "curve": "stepped" },
  758. { "time": 0.5, "angle": 0, "curve": "stepped" },
  759. { "time": 1, "angle": 0, "curve": "stepped" },
  760. { "time": 1.5, "angle": 0, "curve": "stepped" },
  761. { "time": 2, "angle": 0 }
  762. ],
  763. "translate": [
  764. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  765. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  766. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  767. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  768. { "time": 2, "x": 0, "y": 0 }
  769. ]
  770. },
  771. "bone24": {
  772. "rotate": [
  773. { "time": 0, "angle": 0, "curve": "stepped" },
  774. { "time": 0.5, "angle": 0, "curve": "stepped" },
  775. { "time": 1, "angle": 0, "curve": "stepped" },
  776. { "time": 1.5, "angle": 0, "curve": "stepped" },
  777. { "time": 2, "angle": 0 }
  778. ],
  779. "translate": [
  780. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  781. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  782. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  783. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  784. { "time": 2, "x": 0, "y": 0 }
  785. ],
  786. "scale": [
  787. { "time": 0, "x": 1, "y": 1 },
  788. { "time": 0.5, "x": 1.047, "y": 1 },
  789. { "time": 1, "x": 1, "y": 1 },
  790. { "time": 1.5, "x": 1.047, "y": 1 },
  791. { "time": 2, "x": 1, "y": 1 }
  792. ]
  793. },
  794. "bone25": {
  795. "rotate": [
  796. { "time": 0, "angle": 0, "curve": "stepped" },
  797. { "time": 0.5, "angle": 0, "curve": "stepped" },
  798. { "time": 1, "angle": 0, "curve": "stepped" },
  799. { "time": 1.5, "angle": 0, "curve": "stepped" },
  800. { "time": 2, "angle": 0 }
  801. ],
  802. "translate": [
  803. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  804. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  805. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  806. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  807. { "time": 2, "x": 0, "y": 0 }
  808. ]
  809. },
  810. "bone26": {
  811. "rotate": [
  812. { "time": 0, "angle": 0 },
  813. { "time": 0.5, "angle": -7.59 },
  814. { "time": 1, "angle": 0 },
  815. { "time": 1.5, "angle": -7.59 },
  816. { "time": 2, "angle": 0 }
  817. ],
  818. "translate": [
  819. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  820. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  821. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  822. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  823. { "time": 2, "x": 0, "y": 0 }
  824. ]
  825. },
  826. "bone27": {
  827. "rotate": [
  828. { "time": 0, "angle": 0, "curve": "stepped" },
  829. { "time": 0.5, "angle": 0, "curve": "stepped" },
  830. { "time": 1, "angle": 0, "curve": "stepped" },
  831. { "time": 1.5, "angle": 0, "curve": "stepped" },
  832. { "time": 2, "angle": 0 }
  833. ],
  834. "translate": [
  835. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  836. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  837. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  838. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  839. { "time": 2, "x": 0, "y": 0 }
  840. ]
  841. },
  842. "bone28": {
  843. "rotate": [
  844. { "time": 0, "angle": 0 },
  845. { "time": 0.5, "angle": 6.28 },
  846. { "time": 1, "angle": 0 },
  847. { "time": 1.5, "angle": 6.28 },
  848. { "time": 2, "angle": 0 }
  849. ],
  850. "translate": [
  851. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  852. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  853. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  854. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  855. { "time": 2, "x": 0, "y": 0 }
  856. ]
  857. },
  858. "bone29": {
  859. "rotate": [
  860. { "time": 0, "angle": 0, "curve": "stepped" },
  861. { "time": 0.5, "angle": 0, "curve": "stepped" },
  862. { "time": 1, "angle": 0, "curve": "stepped" },
  863. { "time": 1.5, "angle": 0, "curve": "stepped" },
  864. { "time": 2, "angle": 0 }
  865. ],
  866. "translate": [
  867. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  868. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  869. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  870. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  871. { "time": 2, "x": 0, "y": 0 }
  872. ]
  873. },
  874. "bone30": {
  875. "rotate": [
  876. { "time": 0, "angle": 0 },
  877. { "time": 0.5, "angle": -8.85 },
  878. { "time": 1, "angle": 0 },
  879. { "time": 1.5, "angle": -8.85 },
  880. { "time": 2, "angle": 0 }
  881. ],
  882. "translate": [
  883. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  884. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  885. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  886. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  887. { "time": 2, "x": 0, "y": 0 }
  888. ]
  889. },
  890. "bone31": {
  891. "rotate": [
  892. { "time": 0, "angle": 0 },
  893. { "time": 0.5, "angle": -17.08 },
  894. { "time": 1, "angle": 0 },
  895. { "time": 1.5, "angle": -17.08 },
  896. { "time": 2, "angle": 0 }
  897. ],
  898. "translate": [
  899. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  900. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  901. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  902. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  903. { "time": 2, "x": 0, "y": 0 }
  904. ]
  905. },
  906. "bone32": {
  907. "rotate": [
  908. { "time": 0, "angle": 0 },
  909. { "time": 0.5, "angle": -5.83 },
  910. { "time": 1, "angle": 0 },
  911. { "time": 1.5, "angle": -5.83 },
  912. { "time": 2, "angle": 0 }
  913. ],
  914. "translate": [
  915. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  916. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  917. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  918. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  919. { "time": 2, "x": 0, "y": 0 }
  920. ]
  921. },
  922. "bone33": {
  923. "rotate": [
  924. { "time": 0, "angle": 0, "curve": "stepped" },
  925. { "time": 0.5, "angle": 0, "curve": "stepped" },
  926. { "time": 1, "angle": 0, "curve": "stepped" },
  927. { "time": 1.5, "angle": 0, "curve": "stepped" },
  928. { "time": 2, "angle": 0 }
  929. ],
  930. "translate": [
  931. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  932. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  933. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  934. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  935. { "time": 2, "x": 0, "y": 0 }
  936. ]
  937. },
  938. "bone34": {
  939. "rotate": [
  940. { "time": 0, "angle": 0 },
  941. { "time": 0.5, "angle": 6.58 },
  942. { "time": 1, "angle": 0 },
  943. { "time": 1.5, "angle": 6.58 },
  944. { "time": 2, "angle": 0 }
  945. ],
  946. "translate": [
  947. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  948. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  949. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  950. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  951. { "time": 2, "x": 0, "y": 0 }
  952. ]
  953. },
  954. "bone35": {
  955. "rotate": [
  956. { "time": 0, "angle": 0 },
  957. { "time": 0.5, "angle": 0.56 },
  958. { "time": 1, "angle": 0 },
  959. { "time": 1.5, "angle": 0.56 },
  960. { "time": 2, "angle": 0 }
  961. ],
  962. "translate": [
  963. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  964. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  965. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  966. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  967. { "time": 2, "x": 0, "y": 0 }
  968. ]
  969. },
  970. "bone36": {
  971. "rotate": [
  972. { "time": 0, "angle": 0, "curve": "stepped" },
  973. { "time": 0.5, "angle": 0, "curve": "stepped" },
  974. { "time": 1, "angle": 0, "curve": "stepped" },
  975. { "time": 1.5, "angle": 0, "curve": "stepped" },
  976. { "time": 2, "angle": 0 }
  977. ],
  978. "translate": [
  979. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  980. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  981. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  982. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  983. { "time": 2, "x": 0, "y": 0 }
  984. ]
  985. },
  986. "bone37": {
  987. "rotate": [
  988. { "time": 0, "angle": 0, "curve": "stepped" },
  989. { "time": 0.5, "angle": 0, "curve": "stepped" },
  990. { "time": 1, "angle": 0, "curve": "stepped" },
  991. { "time": 1.5, "angle": 0, "curve": "stepped" },
  992. { "time": 2, "angle": 0 }
  993. ],
  994. "translate": [
  995. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  996. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  997. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  998. { "time": 1.1667, "x": 0, "y": 0 },
  999. { "time": 1.2667, "x": -2, "y": -0.06 },
  1000. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1001. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1002. { "time": 2, "x": 0, "y": 0 }
  1003. ],
  1004. "scale": [
  1005. { "time": 1.1667, "x": 1, "y": 1 },
  1006. { "time": 1.2667, "x": 0.464, "y": 1 },
  1007. { "time": 1.3667, "x": 1, "y": 1 }
  1008. ]
  1009. },
  1010. "bone38": {
  1011. "rotate": [
  1012. { "time": 0, "angle": 0, "curve": "stepped" },
  1013. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1014. { "time": 1, "angle": 0, "curve": "stepped" },
  1015. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1016. { "time": 2, "angle": 0 }
  1017. ],
  1018. "translate": [
  1019. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1020. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1021. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1022. { "time": 1.1667, "x": 0, "y": 0 },
  1023. { "time": 1.2667, "x": -1.98, "y": 0.09 },
  1024. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1025. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1026. { "time": 2, "x": 0, "y": 0 }
  1027. ],
  1028. "scale": [
  1029. { "time": 1.1667, "x": 1, "y": 1 },
  1030. { "time": 1.2667, "x": 0.453, "y": 1 },
  1031. { "time": 1.3667, "x": 1, "y": 1 }
  1032. ]
  1033. },
  1034. "bone39": {
  1035. "rotate": [
  1036. { "time": 0, "angle": 0, "curve": "stepped" },
  1037. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1038. { "time": 1, "angle": 0, "curve": "stepped" },
  1039. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1040. { "time": 2, "angle": 0 }
  1041. ],
  1042. "translate": [
  1043. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1044. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1045. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1046. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1047. { "time": 2, "x": 0, "y": 0 }
  1048. ]
  1049. },
  1050. "bone40": {
  1051. "rotate": [
  1052. { "time": 0, "angle": 0, "curve": "stepped" },
  1053. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1054. { "time": 1, "angle": 0, "curve": "stepped" },
  1055. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1056. { "time": 2, "angle": 0 }
  1057. ],
  1058. "translate": [
  1059. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1060. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1061. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1062. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1063. { "time": 2, "x": 0, "y": 0 }
  1064. ]
  1065. },
  1066. "bone41": {
  1067. "rotate": [
  1068. { "time": 0, "angle": 0 },
  1069. { "time": 0.5, "angle": -14.58 },
  1070. { "time": 1, "angle": 0 },
  1071. { "time": 1.5, "angle": -14.58 },
  1072. { "time": 2, "angle": 0 }
  1073. ],
  1074. "translate": [
  1075. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1076. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1077. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1078. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1079. { "time": 2, "x": 0, "y": 0 }
  1080. ]
  1081. },
  1082. "bone42": {
  1083. "rotate": [
  1084. { "time": 0, "angle": 0 },
  1085. { "time": 0.5, "angle": -0.94 },
  1086. { "time": 1, "angle": 0 },
  1087. { "time": 1.5, "angle": -0.94 },
  1088. { "time": 2, "angle": 0 }
  1089. ],
  1090. "translate": [
  1091. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1092. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1093. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1094. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1095. { "time": 2, "x": 0, "y": 0 }
  1096. ]
  1097. },
  1098. "bone43": {
  1099. "rotate": [
  1100. { "time": 0, "angle": 0 },
  1101. { "time": 0.5, "angle": -12.06 },
  1102. { "time": 1, "angle": 0 },
  1103. { "time": 1.5, "angle": -12.06 },
  1104. { "time": 2, "angle": 0 }
  1105. ],
  1106. "translate": [
  1107. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1108. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1109. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1110. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1111. { "time": 2, "x": 0, "y": 0 }
  1112. ]
  1113. },
  1114. "bone44": {
  1115. "rotate": [
  1116. { "time": 0, "angle": 0, "curve": "stepped" },
  1117. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1118. { "time": 1, "angle": 0, "curve": "stepped" },
  1119. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1120. { "time": 2, "angle": 0 }
  1121. ],
  1122. "translate": [
  1123. { "time": 0, "x": 0, "y": 0 },
  1124. { "time": 0.5, "x": 0.6, "y": -0.01 },
  1125. { "time": 1, "x": 0, "y": 0 },
  1126. { "time": 1.5, "x": 0.6, "y": -0.01 },
  1127. { "time": 2, "x": 0, "y": 0 }
  1128. ],
  1129. "scale": [
  1130. { "time": 0, "x": 1, "y": 1 },
  1131. { "time": 0.5, "x": 1.02, "y": 1.02 },
  1132. { "time": 1, "x": 1, "y": 1 },
  1133. { "time": 1.5, "x": 1.02, "y": 1.02 },
  1134. { "time": 2, "x": 1, "y": 1 }
  1135. ]
  1136. },
  1137. "bone45": {
  1138. "rotate": [
  1139. { "time": 0, "angle": 0, "curve": "stepped" },
  1140. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1141. { "time": 1, "angle": 0, "curve": "stepped" },
  1142. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1143. { "time": 2, "angle": 0 }
  1144. ],
  1145. "translate": [
  1146. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1147. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1148. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1149. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1150. { "time": 2, "x": 0, "y": 0 }
  1151. ]
  1152. },
  1153. "bone46": {
  1154. "rotate": [
  1155. { "time": 0, "angle": 0, "curve": "stepped" },
  1156. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1157. { "time": 1, "angle": 0, "curve": "stepped" },
  1158. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1159. { "time": 2, "angle": 0 }
  1160. ],
  1161. "translate": [
  1162. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1163. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1164. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1165. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1166. { "time": 2, "x": 0, "y": 0 }
  1167. ]
  1168. },
  1169. "bone47": {
  1170. "rotate": [
  1171. { "time": 0, "angle": 0, "curve": "stepped" },
  1172. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1173. { "time": 1, "angle": 0, "curve": "stepped" },
  1174. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1175. { "time": 2, "angle": 0 }
  1176. ],
  1177. "translate": [
  1178. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1179. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1180. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1181. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1182. { "time": 2, "x": 0, "y": 0 }
  1183. ]
  1184. }
  1185. },
  1186. "deform": {
  1187. "default": {
  1188. "houmiantoufa": {
  1189. "houmiantoufa": [
  1190. {
  1191. "time": 0,
  1192. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  1193. },
  1194. {
  1195. "time": 0.5,
  1196. "vertices": [ 0.8366, 1.94949, 0, 0, 0, 0, 0, 0, 0, 0, -1.30902, 2.21617 ]
  1197. },
  1198. {
  1199. "time": 1,
  1200. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  1201. },
  1202. {
  1203. "time": 1.5,
  1204. "vertices": [ 0.8366, 1.94949, 0, 0, 0, 0, 0, 0, 0, 0, -1.30902, 2.21617 ]
  1205. },
  1206. {
  1207. "time": 2,
  1208. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  1209. }
  1210. ]
  1211. }
  1212. }
  1213. }
  1214. },
  1215. "stand2": {
  1216. "slots": {
  1217. "biyan": {
  1218. "attachment": [
  1219. { "time": 0, "name": null },
  1220. { "time": 0.4333, "name": null },
  1221. { "time": 1.1667, "name": null },
  1222. { "time": 1.5, "name": "biyan" },
  1223. { "time": 1.6333, "name": null },
  1224. { "time": 1.8667, "name": null },
  1225. { "time": 2.1667, "name": null }
  1226. ]
  1227. },
  1228. "maozi2": {
  1229. "attachment": [
  1230. { "time": 0, "name": null },
  1231. { "time": 0.4333, "name": null },
  1232. { "time": 1.1667, "name": null },
  1233. { "time": 1.8667, "name": null },
  1234. { "time": 2.1667, "name": null }
  1235. ]
  1236. },
  1237. "star": {
  1238. "color": [
  1239. { "time": 0, "color": "ffffff00" },
  1240. { "time": 0.3, "color": "ffffffff", "curve": "stepped" },
  1241. { "time": 0.6333, "color": "ffffffff" },
  1242. { "time": 1.0333, "color": "ffffff00" }
  1243. ]
  1244. },
  1245. "star2": {
  1246. "color": [
  1247. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1248. { "time": 0.6667, "color": "ffffff00" },
  1249. { "time": 0.8667, "color": "ffffffff", "curve": "stepped" },
  1250. { "time": 1.1667, "color": "ffffffff" },
  1251. { "time": 1.5, "color": "ffffff00" }
  1252. ]
  1253. },
  1254. "star3": {
  1255. "color": [
  1256. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1257. { "time": 0.4333, "color": "ffffff00" },
  1258. { "time": 0.7, "color": "ffffffff", "curve": "stepped" },
  1259. { "time": 0.9, "color": "ffffffff" },
  1260. { "time": 1.1667, "color": "ffffff00" }
  1261. ]
  1262. },
  1263. "star4": {
  1264. "color": [
  1265. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1266. { "time": 0.9667, "color": "ffffff00" },
  1267. { "time": 1.1, "color": "ffffffff", "curve": "stepped" },
  1268. { "time": 1.2667, "color": "ffffffff" },
  1269. { "time": 1.4333, "color": "ffffff00" }
  1270. ]
  1271. },
  1272. "youyan": {
  1273. "attachment": [
  1274. { "time": 1.5, "name": null },
  1275. { "time": 1.6333, "name": "youyan" }
  1276. ]
  1277. },
  1278. "zuoyan": {
  1279. "attachment": [
  1280. { "time": 1.5, "name": null },
  1281. { "time": 1.6333, "name": "zuoyan" }
  1282. ]
  1283. }
  1284. },
  1285. "bones": {
  1286. "root": {
  1287. "rotate": [
  1288. { "time": 0, "angle": 0, "curve": "stepped" },
  1289. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1290. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1291. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1292. { "time": 2.1667, "angle": 0 }
  1293. ],
  1294. "translate": [
  1295. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1296. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1297. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1298. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1299. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1300. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1301. { "time": 2.1667, "x": 0, "y": 0 }
  1302. ],
  1303. "scale": [
  1304. { "time": 0, "x": 0.65, "y": 0.65 }
  1305. ]
  1306. },
  1307. "bone": {
  1308. "rotate": [
  1309. { "time": 0, "angle": 0, "curve": "stepped" },
  1310. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1311. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1312. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1313. { "time": 2.1667, "angle": 0 }
  1314. ],
  1315. "translate": [
  1316. { "time": 0, "x": 0, "y": 0 },
  1317. { "time": 0.3333, "x": 2.14, "y": -1.26, "curve": "stepped" },
  1318. { "time": 0.6667, "x": 2.14, "y": -1.26, "curve": "stepped" },
  1319. { "time": 1.1667, "x": 2.14, "y": -1.26, "curve": "stepped" },
  1320. { "time": 1.4667, "x": 2.14, "y": -1.26, "curve": "stepped" },
  1321. { "time": 1.8667, "x": 2.14, "y": -1.26 },
  1322. { "time": 2.1667, "x": 0, "y": 0 }
  1323. ],
  1324. "scale": [
  1325. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1326. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1327. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1328. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1329. { "time": 1.8667, "x": 1, "y": 1 }
  1330. ]
  1331. },
  1332. "bone2": {
  1333. "rotate": [
  1334. { "time": 0, "angle": 0 },
  1335. { "time": 0.3333, "angle": -36.54, "curve": "stepped" },
  1336. { "time": 1.1667, "angle": -36.54, "curve": "stepped" },
  1337. { "time": 1.9333, "angle": -36.54 },
  1338. { "time": 2.1667, "angle": 0 }
  1339. ],
  1340. "translate": [
  1341. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1342. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1343. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1344. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1345. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1346. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1347. { "time": 2.1667, "x": 0, "y": 0 }
  1348. ],
  1349. "scale": [
  1350. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1351. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1352. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1353. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1354. { "time": 1.9333, "x": 1, "y": 1 }
  1355. ]
  1356. },
  1357. "bone3": {
  1358. "rotate": [
  1359. { "time": 0, "angle": 0 },
  1360. { "time": 0.3333, "angle": 71.84, "curve": "stepped" },
  1361. { "time": 1.1667, "angle": 71.84, "curve": "stepped" },
  1362. { "time": 1.9333, "angle": 71.84 },
  1363. { "time": 2.1667, "angle": 0 }
  1364. ],
  1365. "translate": [
  1366. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1367. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1368. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1369. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1370. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1371. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1372. { "time": 2.1667, "x": 0, "y": 0 }
  1373. ],
  1374. "scale": [
  1375. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1376. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1377. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1378. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1379. { "time": 1.9333, "x": 1, "y": 1 }
  1380. ]
  1381. },
  1382. "bone4": {
  1383. "rotate": [
  1384. { "time": 0, "angle": 0 },
  1385. { "time": 0.3333, "angle": 12.57, "curve": "stepped" },
  1386. { "time": 1.1667, "angle": 12.57, "curve": "stepped" },
  1387. { "time": 1.9333, "angle": 12.57 },
  1388. { "time": 2.1667, "angle": 0 }
  1389. ],
  1390. "translate": [
  1391. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1392. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1393. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1394. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1395. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1396. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1397. { "time": 2.1667, "x": 0, "y": 0 }
  1398. ],
  1399. "scale": [
  1400. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1401. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1402. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1403. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1404. { "time": 1.9333, "x": 1, "y": 1 }
  1405. ]
  1406. },
  1407. "bone5": {
  1408. "rotate": [
  1409. { "time": 0, "angle": 0 },
  1410. { "time": 0.1333, "angle": -0.43, "curve": "stepped" },
  1411. { "time": 2.0667, "angle": -0.43 },
  1412. { "time": 2.1667, "angle": 0 }
  1413. ],
  1414. "translate": [
  1415. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1416. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1417. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  1418. { "time": 2.1667, "x": 0, "y": 0 }
  1419. ],
  1420. "scale": [
  1421. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1422. { "time": 2.0667, "x": 1, "y": 1 }
  1423. ]
  1424. },
  1425. "bone6": {
  1426. "rotate": [
  1427. { "time": 0, "angle": 0 },
  1428. { "time": 0.1333, "angle": 6.75, "curve": "stepped" },
  1429. { "time": 1.9333, "angle": 6.75, "curve": "stepped" },
  1430. { "time": 2.0667, "angle": 6.75 },
  1431. { "time": 2.1667, "angle": 0 }
  1432. ],
  1433. "translate": [
  1434. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1435. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1436. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1437. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  1438. { "time": 2.1667, "x": 0, "y": 0 }
  1439. ],
  1440. "scale": [
  1441. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1442. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1443. { "time": 2.0667, "x": 1, "y": 1 }
  1444. ]
  1445. },
  1446. "bone7": {
  1447. "rotate": [
  1448. { "time": 0, "angle": 0, "curve": "stepped" },
  1449. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1450. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1451. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  1452. { "time": 2.1667, "angle": 0 }
  1453. ],
  1454. "translate": [
  1455. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1456. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1457. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1458. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1459. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1460. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1461. { "time": 2.1667, "x": 0, "y": 0 }
  1462. ],
  1463. "scale": [
  1464. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1465. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1466. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1467. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1468. { "time": 1.9333, "x": 1, "y": 1 }
  1469. ]
  1470. },
  1471. "bone8": {
  1472. "rotate": [
  1473. { "time": 0, "angle": 0, "curve": "stepped" },
  1474. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1475. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  1476. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1477. { "time": 2.1667, "angle": 0 }
  1478. ],
  1479. "translate": [
  1480. { "time": 0, "x": 0, "y": 0 },
  1481. { "time": 0.5333, "x": -0.05, "y": -0.91 },
  1482. { "time": 1.0333, "x": 0, "y": 0 },
  1483. { "time": 1.8667, "x": -0.05, "y": -0.91 },
  1484. { "time": 2.1667, "x": 0, "y": 0 }
  1485. ],
  1486. "scale": [
  1487. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1488. { "time": 0.1333, "x": 1, "y": 1 },
  1489. { "time": 0.5333, "x": 1.06, "y": 1 },
  1490. { "time": 1.0333, "x": 1, "y": 1 },
  1491. { "time": 1.5667, "x": 1.06, "y": 1 },
  1492. { "time": 2.1667, "x": 1, "y": 1 }
  1493. ]
  1494. },
  1495. "bone9": {
  1496. "rotate": [
  1497. { "time": 0, "angle": 0, "curve": "stepped" },
  1498. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1499. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1500. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1501. { "time": 2.1667, "angle": 0 }
  1502. ],
  1503. "translate": [
  1504. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1505. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1506. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1507. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1508. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1509. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1510. { "time": 2.1667, "x": 0, "y": 0 }
  1511. ],
  1512. "scale": [
  1513. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1514. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1515. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1516. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1517. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1518. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  1519. { "time": 2.1667, "x": 1, "y": 1 }
  1520. ]
  1521. },
  1522. "bone10": {
  1523. "rotate": [
  1524. { "time": 0, "angle": 0 },
  1525. { "time": 0.4333, "angle": 5.26 },
  1526. { "time": 0.7667, "angle": -3.99 },
  1527. { "time": 1.1667, "angle": 0 },
  1528. { "time": 1.4667, "angle": -6.34 },
  1529. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1530. { "time": 2.1667, "angle": 0 }
  1531. ],
  1532. "translate": [
  1533. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1534. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1535. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1536. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1537. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1538. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1539. { "time": 2.1667, "x": 0, "y": 0 }
  1540. ],
  1541. "scale": [
  1542. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1543. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1544. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1545. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1546. { "time": 1.8667, "x": 1, "y": 1 }
  1547. ]
  1548. },
  1549. "bone11": {
  1550. "rotate": [
  1551. { "time": 0, "angle": 2.42 },
  1552. { "time": 0.4333, "angle": -15.5 },
  1553. { "time": 0.7667, "angle": -12.33 },
  1554. { "time": 1.1667, "angle": 2.42 },
  1555. { "time": 1.4667, "angle": -12.03 },
  1556. { "time": 1.8667, "angle": -6.11 },
  1557. { "time": 2.1667, "angle": 2.42 }
  1558. ],
  1559. "translate": [
  1560. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1561. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1562. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1563. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1564. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1565. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1566. { "time": 2.1667, "x": 0, "y": 0 }
  1567. ],
  1568. "scale": [
  1569. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1570. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1571. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1572. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1573. { "time": 1.8667, "x": 1, "y": 1 }
  1574. ]
  1575. },
  1576. "bone12": {
  1577. "rotate": [
  1578. { "time": 0, "angle": 2.42 },
  1579. { "time": 0.4333, "angle": 5.35 },
  1580. { "time": 0.7667, "angle": -4.47 },
  1581. { "time": 1.1667, "angle": 2.42 },
  1582. { "time": 1.4667, "angle": -4.47 },
  1583. { "time": 1.8667, "angle": -6.22 },
  1584. { "time": 2.1667, "angle": 2.42 }
  1585. ],
  1586. "translate": [
  1587. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1588. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1589. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1590. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1591. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1592. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1593. { "time": 2.1667, "x": 0, "y": 0 }
  1594. ],
  1595. "scale": [
  1596. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1597. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1598. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1599. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1600. { "time": 1.8667, "x": 1, "y": 1 }
  1601. ]
  1602. },
  1603. "bone13": {
  1604. "rotate": [
  1605. { "time": 0, "angle": 0, "curve": "stepped" },
  1606. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1607. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1608. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1609. { "time": 2.1667, "angle": 0 }
  1610. ],
  1611. "translate": [
  1612. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1613. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1614. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1615. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1616. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1617. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1618. { "time": 2.1667, "x": 0, "y": 0 }
  1619. ],
  1620. "scale": [
  1621. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1622. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1623. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1624. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1625. { "time": 1.8667, "x": 1, "y": 1 }
  1626. ]
  1627. },
  1628. "bone14": {
  1629. "rotate": [
  1630. { "time": 0, "angle": 0, "curve": "stepped" },
  1631. { "time": 0.4333, "angle": 0 },
  1632. { "time": 0.7667, "angle": 9.51 },
  1633. { "time": 1.1667, "angle": 0 },
  1634. { "time": 1.4667, "angle": 9.51 },
  1635. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1636. { "time": 2.1667, "angle": 0 }
  1637. ],
  1638. "translate": [
  1639. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1640. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1641. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1642. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1643. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1644. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1645. { "time": 2.1667, "x": 0, "y": 0 }
  1646. ],
  1647. "scale": [
  1648. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1649. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1650. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1651. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1652. { "time": 1.8667, "x": 1, "y": 1 }
  1653. ]
  1654. },
  1655. "bone15": {
  1656. "rotate": [
  1657. { "time": 0, "angle": 0, "curve": "stepped" },
  1658. { "time": 0.4333, "angle": 0 },
  1659. { "time": 0.7667, "angle": 16.3 },
  1660. { "time": 1.1667, "angle": 0 },
  1661. { "time": 1.4667, "angle": 16.3 },
  1662. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1663. { "time": 2.1667, "angle": 0 }
  1664. ],
  1665. "translate": [
  1666. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1667. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1668. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1669. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1670. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1671. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1672. { "time": 2.1667, "x": 0, "y": 0 }
  1673. ],
  1674. "scale": [
  1675. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1676. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1677. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1678. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1679. { "time": 1.8667, "x": 1, "y": 1 }
  1680. ]
  1681. },
  1682. "bone16": {
  1683. "rotate": [
  1684. { "time": 0, "angle": 15.96 },
  1685. { "time": 0.2, "angle": -5.27 },
  1686. { "time": 0.4333, "angle": -31.61, "curve": "stepped" },
  1687. { "time": 1.8667, "angle": -31.61 },
  1688. { "time": 2.1667, "angle": 15.96 }
  1689. ],
  1690. "translate": [
  1691. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1692. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1693. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1694. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1695. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1696. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1697. { "time": 2.1667, "x": 0, "y": 0 }
  1698. ],
  1699. "scale": [
  1700. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1701. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1702. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1703. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1704. { "time": 1.8667, "x": 1, "y": 1 }
  1705. ]
  1706. },
  1707. "bone17": {
  1708. "rotate": [
  1709. { "time": 0, "angle": 0 },
  1710. { "time": 0.2, "angle": -41.62 },
  1711. { "time": 0.4333, "angle": -65.54, "curve": "stepped" },
  1712. { "time": 1.8667, "angle": -65.54 },
  1713. { "time": 2.1667, "angle": 0 }
  1714. ],
  1715. "translate": [
  1716. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1717. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1718. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1719. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1720. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1721. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1722. { "time": 2.1667, "x": 0, "y": 0 }
  1723. ],
  1724. "scale": [
  1725. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1726. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1727. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1728. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1729. { "time": 1.8667, "x": 1, "y": 1 }
  1730. ]
  1731. },
  1732. "bone18": {
  1733. "rotate": [
  1734. { "time": 0, "angle": 0 },
  1735. { "time": 0.2, "angle": -3.21 },
  1736. { "time": 0.4333, "angle": -7.07, "curve": "stepped" },
  1737. { "time": 1.8667, "angle": -7.07 },
  1738. { "time": 2.1667, "angle": 0 }
  1739. ],
  1740. "translate": [
  1741. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1742. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1743. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1744. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1745. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1746. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1747. { "time": 2.1667, "x": 0, "y": 0 }
  1748. ],
  1749. "scale": [
  1750. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1751. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1752. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1753. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1754. { "time": 1.8667, "x": 1, "y": 1 }
  1755. ]
  1756. },
  1757. "bone19": {
  1758. "rotate": [
  1759. { "time": 0, "angle": -15.4 },
  1760. { "time": 0.4333, "angle": 6.97, "curve": "stepped" },
  1761. { "time": 1.1667, "angle": 6.97, "curve": "stepped" },
  1762. { "time": 1.8667, "angle": 6.97 },
  1763. { "time": 2.1667, "angle": -15.4 }
  1764. ],
  1765. "translate": [
  1766. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1767. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1768. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1769. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1770. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1771. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1772. { "time": 2.1667, "x": 0, "y": 0 }
  1773. ],
  1774. "scale": [
  1775. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1776. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1777. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1778. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1779. { "time": 1.8667, "x": 1, "y": 1 }
  1780. ]
  1781. },
  1782. "bone20": {
  1783. "rotate": [
  1784. { "time": 0, "angle": 0 },
  1785. { "time": 0.4333, "angle": -50.64, "curve": "stepped" },
  1786. { "time": 1.1667, "angle": -50.64, "curve": "stepped" },
  1787. { "time": 1.8667, "angle": -50.64 },
  1788. { "time": 2.1667, "angle": 0 }
  1789. ],
  1790. "translate": [
  1791. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1792. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1793. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1794. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1795. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1796. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1797. { "time": 2.1667, "x": 0, "y": 0 }
  1798. ],
  1799. "scale": [
  1800. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1801. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1802. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1803. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1804. { "time": 1.8667, "x": 1, "y": 1 }
  1805. ]
  1806. },
  1807. "bone21": {
  1808. "rotate": [
  1809. { "time": 0, "angle": 0, "curve": "stepped" },
  1810. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1811. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1812. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1813. { "time": 2.1667, "angle": 0 }
  1814. ],
  1815. "translate": [
  1816. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1817. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1818. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1819. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1820. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1821. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1822. { "time": 2.1667, "x": 0, "y": 0 }
  1823. ],
  1824. "scale": [
  1825. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1826. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1827. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1828. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1829. { "time": 1.8667, "x": 1, "y": 1 }
  1830. ]
  1831. },
  1832. "bone22": {
  1833. "rotate": [
  1834. { "time": 0, "angle": 0 },
  1835. { "time": 0.4333, "angle": 8.23, "curve": "stepped" },
  1836. { "time": 1.8667, "angle": 8.23 },
  1837. { "time": 2.1667, "angle": 0 }
  1838. ],
  1839. "translate": [
  1840. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1841. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1842. { "time": 1.8667, "x": 0, "y": 0 }
  1843. ],
  1844. "scale": [
  1845. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1846. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1847. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1848. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  1849. { "time": 2.1667, "x": 1, "y": 1 }
  1850. ]
  1851. },
  1852. "bone23": {
  1853. "rotate": [
  1854. { "time": 0, "angle": 0, "curve": "stepped" },
  1855. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1856. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1857. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1858. { "time": 2.1667, "angle": 0 }
  1859. ],
  1860. "translate": [
  1861. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1862. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1863. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1864. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1865. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1866. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1867. { "time": 2.1667, "x": 0, "y": 0 }
  1868. ],
  1869. "scale": [
  1870. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1871. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1872. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1873. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1874. { "time": 1.8667, "x": 1, "y": 1 }
  1875. ]
  1876. },
  1877. "bone24": {
  1878. "rotate": [
  1879. { "time": 0, "angle": 0 }
  1880. ],
  1881. "translate": [
  1882. { "time": 0, "x": 0, "y": 0 }
  1883. ],
  1884. "scale": [
  1885. { "time": 0, "x": 1, "y": 1 },
  1886. { "time": 0.1667, "x": 1.068, "y": 1 },
  1887. { "time": 0.5333, "x": 1, "y": 1 },
  1888. { "time": 1.0333, "x": 1.068, "y": 1 },
  1889. { "time": 1.5667, "x": 1, "y": 1 },
  1890. { "time": 2, "x": 1.068, "y": 1 },
  1891. { "time": 2.1667, "x": 1, "y": 1 }
  1892. ]
  1893. },
  1894. "bone25": {
  1895. "rotate": [
  1896. { "time": 0, "angle": 0, "curve": "stepped" },
  1897. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1898. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1899. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1900. { "time": 2.1667, "angle": 0 }
  1901. ],
  1902. "translate": [
  1903. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1904. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1905. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1906. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1907. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1908. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1909. { "time": 2.1667, "x": 0, "y": 0 }
  1910. ],
  1911. "scale": [
  1912. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1913. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1914. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1915. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1916. { "time": 1.8667, "x": 1, "y": 1 }
  1917. ]
  1918. },
  1919. "bone26": {
  1920. "rotate": [
  1921. { "time": 0, "angle": 0 },
  1922. { "time": 0.5333, "angle": -11.54 },
  1923. { "time": 1, "angle": 0 },
  1924. { "time": 1.5667, "angle": -11.54 },
  1925. { "time": 2.1667, "angle": 0 }
  1926. ],
  1927. "translate": [
  1928. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1929. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1930. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1931. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1932. { "time": 2.1667, "x": 0, "y": 0 }
  1933. ],
  1934. "scale": [
  1935. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1936. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1937. { "time": 1.5667, "x": 1, "y": 1 }
  1938. ]
  1939. },
  1940. "bone27": {
  1941. "rotate": [
  1942. { "time": 0, "angle": 0 },
  1943. { "time": 0.5333, "angle": -15.43 },
  1944. { "time": 1, "angle": 0 },
  1945. { "time": 1.5667, "angle": -15.43 },
  1946. { "time": 2.1667, "angle": 0 }
  1947. ],
  1948. "translate": [
  1949. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1950. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1951. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1952. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1953. { "time": 2.1667, "x": 0, "y": 0 }
  1954. ],
  1955. "scale": [
  1956. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1957. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1958. { "time": 1.5667, "x": 1, "y": 1 }
  1959. ]
  1960. },
  1961. "bone28": {
  1962. "rotate": [
  1963. { "time": 0, "angle": 0 },
  1964. { "time": 0.5333, "angle": -11.95 },
  1965. { "time": 1, "angle": 0 },
  1966. { "time": 1.5667, "angle": -11.95 },
  1967. { "time": 2.1667, "angle": 0 }
  1968. ],
  1969. "translate": [
  1970. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1971. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1972. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1973. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1974. { "time": 2.1667, "x": 0, "y": 0 }
  1975. ],
  1976. "scale": [
  1977. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1978. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1979. { "time": 1.5667, "x": 1, "y": 1 }
  1980. ]
  1981. },
  1982. "bone29": {
  1983. "rotate": [
  1984. { "time": 0, "angle": 0, "curve": "stepped" },
  1985. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1986. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1987. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1988. { "time": 2.1667, "angle": 0 }
  1989. ],
  1990. "translate": [
  1991. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1992. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1993. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1994. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1995. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1996. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1997. { "time": 2.1667, "x": 0, "y": 0 }
  1998. ],
  1999. "scale": [
  2000. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2001. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2002. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2003. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2004. { "time": 1.8667, "x": 1, "y": 1 }
  2005. ]
  2006. },
  2007. "bone30": {
  2008. "rotate": [
  2009. { "time": 0, "angle": 0 },
  2010. { "time": 0.5333, "angle": -12.87 },
  2011. { "time": 1, "angle": 0 },
  2012. { "time": 1.5667, "angle": -12.87 },
  2013. { "time": 2.1667, "angle": 0 }
  2014. ],
  2015. "translate": [
  2016. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2017. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2018. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2019. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2020. { "time": 2.1667, "x": 0, "y": 0 }
  2021. ],
  2022. "scale": [
  2023. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2024. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2025. { "time": 1.5667, "x": 1, "y": 1 }
  2026. ]
  2027. },
  2028. "bone31": {
  2029. "rotate": [
  2030. { "time": 0, "angle": 0 },
  2031. { "time": 0.5333, "angle": -8.17 },
  2032. { "time": 1, "angle": 0 },
  2033. { "time": 1.5667, "angle": -8.17 },
  2034. { "time": 2.1667, "angle": 0 }
  2035. ],
  2036. "translate": [
  2037. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2038. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2039. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2040. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2041. { "time": 2.1667, "x": 0, "y": 0 }
  2042. ],
  2043. "scale": [
  2044. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2045. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2046. { "time": 1.5667, "x": 1, "y": 1 }
  2047. ]
  2048. },
  2049. "bone32": {
  2050. "rotate": [
  2051. { "time": 0, "angle": 0 },
  2052. { "time": 0.5333, "angle": -10.36 },
  2053. { "time": 1, "angle": 0 },
  2054. { "time": 1.5667, "angle": -10.36 },
  2055. { "time": 2.1667, "angle": 0 }
  2056. ],
  2057. "translate": [
  2058. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2059. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2060. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2061. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2062. { "time": 2.1667, "x": 0, "y": 0 }
  2063. ],
  2064. "scale": [
  2065. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2066. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2067. { "time": 1.5667, "x": 1, "y": 1 }
  2068. ]
  2069. },
  2070. "bone33": {
  2071. "rotate": [
  2072. { "time": 0, "angle": 0, "curve": "stepped" },
  2073. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2074. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2075. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2076. { "time": 2.1667, "angle": 0 }
  2077. ],
  2078. "translate": [
  2079. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2080. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2081. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2082. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2083. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2084. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2085. { "time": 2.1667, "x": 0, "y": 0 }
  2086. ],
  2087. "scale": [
  2088. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2089. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2090. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2091. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2092. { "time": 1.8667, "x": 1, "y": 1 }
  2093. ]
  2094. },
  2095. "bone34": {
  2096. "rotate": [
  2097. { "time": 0, "angle": 0 },
  2098. { "time": 0.5333, "angle": 4.73 },
  2099. { "time": 1, "angle": 0 },
  2100. { "time": 1.5667, "angle": 4.73 },
  2101. { "time": 2.1667, "angle": 0 }
  2102. ],
  2103. "translate": [
  2104. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2105. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2106. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2107. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2108. { "time": 2.1667, "x": 0, "y": 0 }
  2109. ],
  2110. "scale": [
  2111. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2112. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2113. { "time": 1.5667, "x": 1, "y": 1 }
  2114. ]
  2115. },
  2116. "bone35": {
  2117. "rotate": [
  2118. { "time": 0, "angle": 0 },
  2119. { "time": 0.5333, "angle": 4.29 },
  2120. { "time": 1, "angle": 0 },
  2121. { "time": 1.5667, "angle": 4.29 },
  2122. { "time": 2.1667, "angle": 0 }
  2123. ],
  2124. "translate": [
  2125. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2126. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2127. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2128. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2129. { "time": 2.1667, "x": 0, "y": 0 }
  2130. ],
  2131. "scale": [
  2132. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2133. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2134. { "time": 1.5667, "x": 1, "y": 1 }
  2135. ]
  2136. },
  2137. "bone36": {
  2138. "rotate": [
  2139. { "time": 0, "angle": 0, "curve": "stepped" },
  2140. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2141. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2142. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2143. { "time": 2.1667, "angle": 0 }
  2144. ],
  2145. "translate": [
  2146. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2147. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2148. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2149. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2150. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2151. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2152. { "time": 2.1667, "x": 0, "y": 0 }
  2153. ],
  2154. "scale": [
  2155. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2156. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2157. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2158. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2159. { "time": 1.8667, "x": 1, "y": 1 }
  2160. ]
  2161. },
  2162. "bone37": {
  2163. "rotate": [
  2164. { "time": 0, "angle": 0, "curve": "stepped" },
  2165. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2166. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2167. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  2168. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2169. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2170. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2171. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2172. { "time": 2.1667, "angle": 0 }
  2173. ],
  2174. "translate": [
  2175. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2176. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2177. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2178. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2179. { "time": 1.3667, "x": 0, "y": 0 },
  2180. { "time": 1.5, "x": -1.52, "y": -0.05, "curve": "stepped" },
  2181. { "time": 1.6, "x": -1.52, "y": -0.05 },
  2182. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2183. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2184. { "time": 2.1667, "x": 0, "y": 0 }
  2185. ],
  2186. "scale": [
  2187. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2188. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2189. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2190. { "time": 1.3667, "x": 1, "y": 1 },
  2191. { "time": 1.5, "x": 0.49, "y": 1, "curve": "stepped" },
  2192. { "time": 1.6, "x": 0.49, "y": 1 },
  2193. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2194. { "time": 1.8667, "x": 1, "y": 1 }
  2195. ]
  2196. },
  2197. "bone38": {
  2198. "rotate": [
  2199. { "time": 0, "angle": 0, "curve": "stepped" },
  2200. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2201. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2202. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  2203. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2204. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2205. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2206. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2207. { "time": 2.1667, "angle": 0 }
  2208. ],
  2209. "translate": [
  2210. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2211. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2212. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2213. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2214. { "time": 1.3667, "x": 0, "y": 0 },
  2215. { "time": 1.5, "x": -1.27, "y": 0.06, "curve": "stepped" },
  2216. { "time": 1.6, "x": -1.27, "y": 0.06 },
  2217. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2218. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2219. { "time": 2.1667, "x": 0, "y": 0 }
  2220. ],
  2221. "scale": [
  2222. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2223. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2224. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2225. { "time": 1.3667, "x": 1, "y": 1 },
  2226. { "time": 1.5, "x": 0.431, "y": 1, "curve": "stepped" },
  2227. { "time": 1.6, "x": 0.431, "y": 1 },
  2228. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2229. { "time": 1.8667, "x": 1, "y": 1 }
  2230. ]
  2231. },
  2232. "bone39": {
  2233. "rotate": [
  2234. { "time": 0, "angle": 0, "curve": "stepped" },
  2235. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2236. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2237. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  2238. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  2239. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2240. { "time": 2.1667, "angle": 0 }
  2241. ],
  2242. "translate": [
  2243. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2244. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2245. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2246. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2247. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2248. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2249. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2250. { "time": 2.1667, "x": 0, "y": 0 }
  2251. ],
  2252. "scale": [
  2253. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2254. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2255. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2256. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2258. { "time": 1.8667, "x": 1, "y": 1 }
  2259. ]
  2260. },
  2261. "bone40": {
  2262. "rotate": [
  2263. { "time": 0, "angle": 0, "curve": "stepped" },
  2264. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2265. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2266. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2267. { "time": 2.1667, "angle": 0 }
  2268. ],
  2269. "translate": [
  2270. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2271. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2272. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2273. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2274. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2275. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2276. { "time": 2.1667, "x": 0, "y": 0 }
  2277. ],
  2278. "scale": [
  2279. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2280. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2281. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2282. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2283. { "time": 1.8667, "x": 1, "y": 1 }
  2284. ]
  2285. },
  2286. "bone41": {
  2287. "rotate": [
  2288. { "time": 0, "angle": 0, "curve": "stepped" },
  2289. { "time": 0.4333, "angle": 0 },
  2290. { "time": 0.7667, "angle": 11.32 },
  2291. { "time": 1.1667, "angle": 0 },
  2292. { "time": 1.4667, "angle": 11.32 },
  2293. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2294. { "time": 2.1667, "angle": 0 }
  2295. ],
  2296. "translate": [
  2297. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2298. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2299. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2300. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2301. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2302. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2303. { "time": 2.1667, "x": 0, "y": 0 }
  2304. ],
  2305. "scale": [
  2306. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2307. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2308. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2309. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2310. { "time": 1.8667, "x": 1, "y": 1 }
  2311. ]
  2312. },
  2313. "bone42": {
  2314. "rotate": [
  2315. { "time": 0, "angle": 0, "curve": "stepped" },
  2316. { "time": 0.4333, "angle": 0 },
  2317. { "time": 0.7667, "angle": 8.36 },
  2318. { "time": 1.1667, "angle": 0 },
  2319. { "time": 1.4667, "angle": 8.36 },
  2320. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2321. { "time": 2.1667, "angle": 0 }
  2322. ],
  2323. "translate": [
  2324. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2325. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2326. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2327. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2328. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2329. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2330. { "time": 2.1667, "x": 0, "y": 0 }
  2331. ],
  2332. "scale": [
  2333. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2334. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2335. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2336. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2337. { "time": 1.8667, "x": 1, "y": 1 }
  2338. ]
  2339. },
  2340. "bone43": {
  2341. "rotate": [
  2342. { "time": 0, "angle": 0, "curve": "stepped" },
  2343. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2344. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2345. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2346. { "time": 2.1667, "angle": 0 }
  2347. ],
  2348. "translate": [
  2349. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2350. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2351. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2352. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2353. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2354. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2355. { "time": 2.1667, "x": 0, "y": 0 }
  2356. ],
  2357. "scale": [
  2358. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2359. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2360. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2361. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2362. { "time": 1.8667, "x": 1, "y": 1 }
  2363. ]
  2364. },
  2365. "bone44": {
  2366. "rotate": [
  2367. { "time": 0, "angle": 0, "curve": "stepped" },
  2368. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2369. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2370. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2371. { "time": 2.1667, "angle": 0 }
  2372. ],
  2373. "translate": [
  2374. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2375. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2376. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2377. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2378. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2379. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2380. { "time": 2.1667, "x": 0, "y": 0 }
  2381. ],
  2382. "scale": [
  2383. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2384. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2385. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2386. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2387. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2388. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2389. { "time": 2.1667, "x": 1, "y": 1 }
  2390. ]
  2391. },
  2392. "bone45": {
  2393. "rotate": [
  2394. { "time": 0, "angle": 0, "curve": "stepped" },
  2395. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2396. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2397. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2398. { "time": 2.1667, "angle": 0 }
  2399. ],
  2400. "translate": [
  2401. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2402. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2403. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2404. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2405. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2406. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2407. { "time": 2.1667, "x": 0, "y": 0 }
  2408. ],
  2409. "scale": [
  2410. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2411. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2412. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2413. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2414. { "time": 1.8667, "x": 1, "y": 1 }
  2415. ]
  2416. },
  2417. "bone46": {
  2418. "rotate": [
  2419. { "time": 0, "angle": 0, "curve": "stepped" },
  2420. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2421. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2422. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2423. { "time": 2.1667, "angle": 0 }
  2424. ],
  2425. "translate": [
  2426. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2427. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2428. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2429. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2430. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2431. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2432. { "time": 2.1667, "x": 0, "y": 0 }
  2433. ],
  2434. "scale": [
  2435. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2436. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2437. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2438. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2439. { "time": 1.8667, "x": 1, "y": 1 }
  2440. ]
  2441. },
  2442. "bone47": {
  2443. "rotate": [
  2444. { "time": 0, "angle": 0, "curve": "stepped" },
  2445. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2446. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2447. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2448. { "time": 2.1667, "angle": 0 }
  2449. ],
  2450. "translate": [
  2451. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2452. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2453. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2454. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2455. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2456. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2457. { "time": 2.1667, "x": 0, "y": 0 }
  2458. ],
  2459. "scale": [
  2460. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2461. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2462. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2463. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2464. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2465. { "time": 1.8667, "x": 1, "y": 1 }
  2466. ]
  2467. },
  2468. "bone48": {
  2469. "rotate": [
  2470. { "time": 0, "angle": 0, "curve": "stepped" },
  2471. { "time": 0.3, "angle": 0, "curve": "stepped" },
  2472. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2473. { "time": 1.0333, "angle": 0 }
  2474. ],
  2475. "translate": [
  2476. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2477. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2478. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2479. { "time": 1.0333, "x": 0, "y": 0 }
  2480. ],
  2481. "scale": [
  2482. { "time": 0, "x": 0, "y": 0 },
  2483. { "time": 0.3, "x": 0.7, "y": 0.7 },
  2484. { "time": 0.6333, "x": 0.4, "y": 0.4 },
  2485. { "time": 1.0333, "x": 0, "y": 0 }
  2486. ]
  2487. },
  2488. "bone49": {
  2489. "rotate": [
  2490. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2491. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2492. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2493. { "time": 1.5, "angle": 0 }
  2494. ],
  2495. "translate": [
  2496. { "time": 0, "x": 97.77, "y": -21.12 }
  2497. ],
  2498. "scale": [
  2499. { "time": 0.6667, "x": 0, "y": 0 },
  2500. { "time": 0.8667, "x": 0.7, "y": 0.7 },
  2501. { "time": 1.1667, "x": 0.4, "y": 0.4 },
  2502. { "time": 1.5, "x": 0, "y": 0 }
  2503. ]
  2504. },
  2505. "bone50": {
  2506. "rotate": [
  2507. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2508. { "time": 0.7, "angle": 0, "curve": "stepped" },
  2509. { "time": 0.9, "angle": 0, "curve": "stepped" },
  2510. { "time": 1.1667, "angle": 0 }
  2511. ],
  2512. "translate": [
  2513. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2514. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2515. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2516. { "time": 1.1667, "x": 0, "y": 0 }
  2517. ],
  2518. "scale": [
  2519. { "time": 0.4333, "x": 0, "y": 0 },
  2520. { "time": 0.7, "x": 0.7, "y": 0.7 },
  2521. { "time": 0.9, "x": 0.4, "y": 0.4 },
  2522. { "time": 1.1667, "x": 0, "y": 0 }
  2523. ]
  2524. },
  2525. "bone51": {
  2526. "rotate": [
  2527. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2528. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2529. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  2530. { "time": 2.1667, "angle": 0 }
  2531. ],
  2532. "translate": [
  2533. { "time": 0, "x": 12.73, "y": -27.03 }
  2534. ],
  2535. "scale": [
  2536. { "time": 0.9667, "x": 0, "y": 0 },
  2537. { "time": 1.1, "x": 0.7, "y": 0.7 },
  2538. { "time": 1.2667, "x": 0.4, "y": 0.4 },
  2539. { "time": 1.4333, "x": 0, "y": 0 }
  2540. ]
  2541. }
  2542. },
  2543. "deform": {
  2544. "default": {
  2545. "houmiantoufa": {
  2546. "houmiantoufa": [
  2547. {
  2548. "time": 0,
  2549. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ],
  2550. "curve": "stepped"
  2551. },
  2552. {
  2553. "time": 0.4333,
  2554. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ],
  2555. "curve": "stepped"
  2556. },
  2557. {
  2558. "time": 1.1667,
  2559. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ],
  2560. "curve": "stepped"
  2561. },
  2562. {
  2563. "time": 1.8667,
  2564. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ],
  2565. "curve": "stepped"
  2566. },
  2567. {
  2568. "time": 2.1667,
  2569. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  2570. }
  2571. ]
  2572. }
  2573. }
  2574. }
  2575. },
  2576. "walk1": {
  2577. "slots": {
  2578. "biyan": {
  2579. "attachment": [
  2580. { "time": 0, "name": null },
  2581. { "time": 1, "name": null }
  2582. ]
  2583. },
  2584. "maozi2": {
  2585. "attachment": [
  2586. { "time": 0, "name": null }
  2587. ]
  2588. },
  2589. "star": {
  2590. "color": [
  2591. { "time": 0, "color": "ffffff00" }
  2592. ]
  2593. },
  2594. "star2": {
  2595. "color": [
  2596. { "time": 0, "color": "ffffff00" }
  2597. ]
  2598. },
  2599. "star3": {
  2600. "color": [
  2601. { "time": 0, "color": "ffffff00" }
  2602. ]
  2603. },
  2604. "star4": {
  2605. "color": [
  2606. { "time": 0, "color": "ffffff00" }
  2607. ]
  2608. }
  2609. },
  2610. "bones": {
  2611. "root": {
  2612. "rotate": [
  2613. { "time": 0, "angle": 0, "curve": "stepped" },
  2614. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2615. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2616. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2617. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2618. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2619. { "time": 1, "angle": 0 }
  2620. ],
  2621. "translate": [
  2622. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2623. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2624. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2625. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2626. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2627. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2628. { "time": 1, "x": 0, "y": 0 }
  2629. ],
  2630. "scale": [
  2631. { "time": 0, "x": 0.65, "y": 0.65 }
  2632. ]
  2633. },
  2634. "bone": {
  2635. "rotate": [
  2636. { "time": 0, "angle": 0, "curve": "stepped" },
  2637. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2638. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2639. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2640. { "time": 1, "angle": 0 }
  2641. ],
  2642. "translate": [
  2643. { "time": 0, "x": 0, "y": 3.13 },
  2644. { "time": 0.1667, "x": 0, "y": 1.1 },
  2645. { "time": 0.5, "x": 0, "y": 3.13 },
  2646. { "time": 0.6667, "x": 0, "y": 1.1 },
  2647. { "time": 1, "x": 0, "y": 3.13 }
  2648. ],
  2649. "scale": [
  2650. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2651. { "time": 1, "x": 1, "y": 1 }
  2652. ]
  2653. },
  2654. "bone2": {
  2655. "rotate": [
  2656. { "time": 0, "angle": -8.69 },
  2657. { "time": 0.1667, "angle": 1.52 },
  2658. { "time": 0.3333, "angle": 11.72 },
  2659. { "time": 0.5, "angle": 15.59 },
  2660. { "time": 0.6667, "angle": 7.5 },
  2661. { "time": 0.8333, "angle": -0.59 },
  2662. { "time": 1, "angle": -8.69 }
  2663. ],
  2664. "translate": [
  2665. { "time": 0, "x": 0, "y": 0 },
  2666. { "time": 0.1667, "x": 4.86, "y": 1.24 },
  2667. { "time": 0.3333, "x": 9.72, "y": 2.49 },
  2668. { "time": 0.5, "x": 14.59, "y": 3.73 },
  2669. { "time": 0.6667, "x": 3.34, "y": 1.82 },
  2670. { "time": 0.8333, "x": 1.67, "y": 0.91 },
  2671. { "time": 1, "x": 0, "y": 0 }
  2672. ],
  2673. "scale": [
  2674. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2675. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2676. { "time": 1, "x": 1, "y": 1 }
  2677. ]
  2678. },
  2679. "bone3": {
  2680. "rotate": [
  2681. { "time": 0, "angle": 0 },
  2682. { "time": 0.1667, "angle": 4.35 },
  2683. { "time": 0.3333, "angle": 8.69 },
  2684. { "time": 0.5, "angle": 21.87 },
  2685. { "time": 0.6667, "angle": 52.67 },
  2686. { "time": 0.8333, "angle": 37.41 },
  2687. { "time": 1, "angle": 0 }
  2688. ],
  2689. "translate": [
  2690. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2691. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2692. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2693. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2694. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2695. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2696. { "time": 1, "x": 0, "y": 0 }
  2697. ],
  2698. "scale": [
  2699. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2700. { "time": 1, "x": 1, "y": 1 }
  2701. ]
  2702. },
  2703. "bone4": {
  2704. "rotate": [
  2705. { "time": 0, "angle": 0 },
  2706. { "time": 0.1667, "angle": -8.17 },
  2707. { "time": 0.3333, "angle": -16.35 },
  2708. { "time": 0.5, "angle": 0 },
  2709. { "time": 0.6667, "angle": -6.15 },
  2710. { "time": 0.8333, "angle": -16.29 },
  2711. { "time": 1, "angle": 0 }
  2712. ],
  2713. "translate": [
  2714. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2715. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2716. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2717. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2718. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2719. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2720. { "time": 1, "x": 0, "y": 0 }
  2721. ],
  2722. "scale": [
  2723. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2724. { "time": 1, "x": 1, "y": 1 }
  2725. ]
  2726. },
  2727. "bone5": {
  2728. "rotate": [
  2729. { "time": 0, "angle": 17.71 },
  2730. { "time": 0.1667, "angle": -5.19 },
  2731. { "time": 0.3333, "angle": -21.78 },
  2732. { "time": 0.5, "angle": -24.21 },
  2733. { "time": 0.6667, "angle": -10.24 },
  2734. { "time": 0.8333, "angle": 3.74 },
  2735. { "time": 1, "angle": 17.71 }
  2736. ],
  2737. "translate": [
  2738. { "time": 0, "x": 0, "y": 0 },
  2739. { "time": 0.1667, "x": -8.45, "y": 1.02 },
  2740. { "time": 0.3333, "x": -10.25, "y": 0.56 },
  2741. { "time": 0.5, "x": -12.05, "y": 0.1 },
  2742. { "time": 0.6667, "x": -8.03, "y": 0.06 },
  2743. { "time": 0.8333, "x": -4.02, "y": 0.03 },
  2744. { "time": 1, "x": 0, "y": 0 }
  2745. ],
  2746. "scale": [
  2747. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2748. { "time": 1, "x": 1, "y": 1 }
  2749. ]
  2750. },
  2751. "bone6": {
  2752. "rotate": [
  2753. { "time": 0, "angle": 15.82 },
  2754. { "time": 0.1667, "angle": 63.38 },
  2755. { "time": 0.3333, "angle": 40.64 },
  2756. { "time": 0.5, "angle": 6.8 },
  2757. { "time": 0.6667, "angle": 3.84 },
  2758. { "time": 0.8333, "angle": 5.46 },
  2759. { "time": 1, "angle": 15.82 }
  2760. ],
  2761. "translate": [
  2762. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2763. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2764. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2765. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2766. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2767. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2768. { "time": 1, "x": 0, "y": 0 }
  2769. ],
  2770. "scale": [
  2771. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2772. { "time": 1, "x": 1, "y": 1 }
  2773. ]
  2774. },
  2775. "bone7": {
  2776. "rotate": [
  2777. { "time": 0, "angle": 0 },
  2778. { "time": 0.1667, "angle": 4.29 },
  2779. { "time": 0.3333, "angle": 8.59 },
  2780. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2781. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2782. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2783. { "time": 1, "angle": 0 }
  2784. ],
  2785. "translate": [
  2786. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2787. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2788. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2789. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2790. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2791. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2792. { "time": 1, "x": 0, "y": 0 }
  2793. ],
  2794. "scale": [
  2795. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2796. { "time": 1, "x": 1, "y": 1 }
  2797. ]
  2798. },
  2799. "bone8": {
  2800. "rotate": [
  2801. { "time": 0, "angle": 0, "curve": "stepped" },
  2802. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2803. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2804. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2805. { "time": 1, "angle": 0 }
  2806. ],
  2807. "translate": [
  2808. { "time": 0, "x": 0.07, "y": 1.31 },
  2809. { "time": 0.1667, "x": -0.04, "y": -0.77 },
  2810. { "time": 0.5, "x": 0.07, "y": 1.31 },
  2811. { "time": 0.6667, "x": -0.04, "y": -0.77 },
  2812. { "time": 1, "x": 0.07, "y": 1.31 }
  2813. ],
  2814. "scale": [
  2815. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2816. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2817. { "time": 1, "x": 1, "y": 1 }
  2818. ]
  2819. },
  2820. "bone9": {
  2821. "rotate": [
  2822. { "time": 0, "angle": 0, "curve": "stepped" },
  2823. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2824. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2825. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2826. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2827. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2828. { "time": 1, "angle": 0 }
  2829. ],
  2830. "translate": [
  2831. { "time": 0, "x": 0.05, "y": 1.62 },
  2832. { "time": 0.1667, "x": 0, "y": 0 },
  2833. { "time": 0.5, "x": 0.05, "y": 1.62 },
  2834. { "time": 0.6667, "x": 0, "y": 0 },
  2835. { "time": 1, "x": 0.05, "y": 1.62 }
  2836. ],
  2837. "scale": [
  2838. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2839. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2840. { "time": 1, "x": 1, "y": 1 }
  2841. ]
  2842. },
  2843. "bone10": {
  2844. "rotate": [
  2845. { "time": 0, "angle": 4.63 },
  2846. { "time": 0.1667, "angle": 1.35 },
  2847. { "time": 0.5, "angle": 4.63 },
  2848. { "time": 0.6667, "angle": 0.67 },
  2849. { "time": 1, "angle": 4.63 }
  2850. ],
  2851. "translate": [
  2852. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2853. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2854. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2855. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2856. { "time": 1, "x": 0, "y": 0 }
  2857. ],
  2858. "scale": [
  2859. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2860. { "time": 1, "x": 1, "y": 1 }
  2861. ]
  2862. },
  2863. "bone11": {
  2864. "rotate": [
  2865. { "time": 0, "angle": 1.27 },
  2866. { "time": 0.1667, "angle": 0.4 },
  2867. { "time": 0.3333, "angle": -0.48 },
  2868. { "time": 0.5, "angle": -1.35 },
  2869. { "time": 0.6667, "angle": -0.48 },
  2870. { "time": 0.8333, "angle": 0.4 },
  2871. { "time": 1, "angle": 1.27 }
  2872. ],
  2873. "translate": [
  2874. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2875. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2876. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2877. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2878. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2879. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2880. { "time": 1, "x": 0, "y": 0 }
  2881. ],
  2882. "scale": [
  2883. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2884. { "time": 1, "x": 1, "y": 1 }
  2885. ]
  2886. },
  2887. "bone12": {
  2888. "rotate": [
  2889. { "time": 0, "angle": -9.86 },
  2890. { "time": 0.1667, "angle": -9 },
  2891. { "time": 0.3333, "angle": -8.15 },
  2892. { "time": 0.5, "angle": -7.3 },
  2893. { "time": 0.6667, "angle": -8.15 },
  2894. { "time": 0.8333, "angle": -9 },
  2895. { "time": 1, "angle": -9.86 }
  2896. ],
  2897. "translate": [
  2898. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2899. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2900. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2901. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2902. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2903. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2904. { "time": 1, "x": 0, "y": 0 }
  2905. ],
  2906. "scale": [
  2907. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2908. { "time": 1, "x": 1, "y": 1 }
  2909. ]
  2910. },
  2911. "bone13": {
  2912. "rotate": [
  2913. { "time": 0, "angle": 347.99 },
  2914. { "time": 0.1667, "angle": 348.94 },
  2915. { "time": 0.5, "angle": 347.99 },
  2916. { "time": 0.6667, "angle": 348.94 },
  2917. { "time": 1, "angle": 347.99 }
  2918. ],
  2919. "translate": [
  2920. { "time": 0, "x": 0.76, "y": 1.03 },
  2921. { "time": 0.1667, "x": 0.8, "y": 1.02 },
  2922. { "time": 0.5, "x": 0.76, "y": 1.03 },
  2923. { "time": 0.6667, "x": 0.8, "y": 1.02 },
  2924. { "time": 1, "x": 0.76, "y": 1.03 }
  2925. ],
  2926. "scale": [
  2927. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2928. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2929. { "time": 1, "x": 1, "y": 1 }
  2930. ]
  2931. },
  2932. "bone14": {
  2933. "rotate": [
  2934. { "time": 0, "angle": 10.95 },
  2935. { "time": 0.1667, "angle": 7.3 },
  2936. { "time": 0.3333, "angle": 3.65 },
  2937. { "time": 0.5, "angle": 0 },
  2938. { "time": 0.6667, "angle": 3.65 },
  2939. { "time": 0.8333, "angle": 7.3 },
  2940. { "time": 1, "angle": 10.95 }
  2941. ],
  2942. "translate": [
  2943. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2944. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2945. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2946. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2947. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2948. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2949. { "time": 1, "x": 0, "y": 0 }
  2950. ],
  2951. "scale": [
  2952. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2953. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2954. { "time": 1, "x": 1, "y": 1 }
  2955. ]
  2956. },
  2957. "bone15": {
  2958. "rotate": [
  2959. { "time": 0, "angle": 0, "curve": "stepped" },
  2960. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2961. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2962. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2963. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2964. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2965. { "time": 1, "angle": 0 }
  2966. ],
  2967. "translate": [
  2968. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2969. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2970. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2971. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2972. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2973. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2974. { "time": 1, "x": 0, "y": 0 }
  2975. ],
  2976. "scale": [
  2977. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2978. { "time": 1, "x": 1, "y": 1 }
  2979. ]
  2980. },
  2981. "bone16": {
  2982. "rotate": [
  2983. { "time": 0, "angle": -320.21 },
  2984. { "time": 0.1667, "angle": 29.35 },
  2985. { "time": 0.3333, "angle": 18.92 },
  2986. { "time": 0.5, "angle": 18 },
  2987. { "time": 0.6667, "angle": 18.92 },
  2988. { "time": 0.8333, "angle": 29.35 },
  2989. { "time": 1, "angle": -320.21 }
  2990. ],
  2991. "translate": [
  2992. { "time": 0, "x": 0.62, "y": -3.97 },
  2993. { "time": 0.1667, "x": 0.41, "y": -2.65 },
  2994. { "time": 0.3333, "x": 0.21, "y": -1.32 },
  2995. { "time": 0.5, "x": 0, "y": 0 },
  2996. { "time": 0.6667, "x": 0.21, "y": -1.32 },
  2997. { "time": 0.8333, "x": 0.41, "y": -2.65 },
  2998. { "time": 1, "x": 0.62, "y": -3.97 }
  2999. ],
  3000. "scale": [
  3001. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3002. { "time": 1, "x": 1, "y": 1 }
  3003. ]
  3004. },
  3005. "bone17": {
  3006. "rotate": [
  3007. { "time": 0, "angle": 2.33 },
  3008. { "time": 0.1667, "angle": -3.39 },
  3009. { "time": 0.3333, "angle": -9.11 },
  3010. { "time": 0.5, "angle": -23.55 },
  3011. { "time": 0.6667, "angle": -9.11 },
  3012. { "time": 0.8333, "angle": -3.39 },
  3013. { "time": 1, "angle": 2.33 }
  3014. ],
  3015. "translate": [
  3016. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3017. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3018. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3019. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3020. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3021. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3022. { "time": 1, "x": 0, "y": 0 }
  3023. ],
  3024. "scale": [
  3025. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3026. { "time": 1, "x": 1, "y": 1 }
  3027. ]
  3028. },
  3029. "bone18": {
  3030. "rotate": [
  3031. { "time": 0, "angle": 0 },
  3032. { "time": 0.1667, "angle": -2.1 },
  3033. { "time": 0.3333, "angle": -4.2 },
  3034. { "time": 0.5, "angle": -6.3 },
  3035. { "time": 0.6667, "angle": -4.2 },
  3036. { "time": 0.8333, "angle": -2.1 },
  3037. { "time": 1, "angle": 0 }
  3038. ],
  3039. "translate": [
  3040. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3041. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3042. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3043. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3044. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3045. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3046. { "time": 1, "x": 0, "y": 0 }
  3047. ],
  3048. "scale": [
  3049. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3050. { "time": 1, "x": 1, "y": 1 }
  3051. ]
  3052. },
  3053. "bone19": {
  3054. "rotate": [
  3055. { "time": 0, "angle": 323.94 },
  3056. { "time": 0.1667, "angle": -25.46 },
  3057. { "time": 0.3333, "angle": -14.87 },
  3058. { "time": 0.5, "angle": -4.28 },
  3059. { "time": 0.6667, "angle": -14.87 },
  3060. { "time": 0.8333, "angle": -25.46 },
  3061. { "time": 1, "angle": 323.94 }
  3062. ],
  3063. "translate": [
  3064. { "time": 0, "x": 1.21, "y": 1.1 },
  3065. { "time": 0.1667, "x": 0.8, "y": 0.73 },
  3066. { "time": 0.3333, "x": 0.4, "y": 0.37 },
  3067. { "time": 0.5, "x": 0, "y": 0 },
  3068. { "time": 0.6667, "x": 0.4, "y": 0.37 },
  3069. { "time": 0.8333, "x": 0.8, "y": 0.73 },
  3070. { "time": 1, "x": 1.21, "y": 1.1 }
  3071. ],
  3072. "scale": [
  3073. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3074. { "time": 1, "x": 1, "y": 1 }
  3075. ]
  3076. },
  3077. "bone20": {
  3078. "rotate": [
  3079. { "time": 0, "angle": -18.15 },
  3080. { "time": 0.1667, "angle": -18.26 },
  3081. { "time": 0.3333, "angle": -18.37 },
  3082. { "time": 0.5, "angle": -18.48 },
  3083. { "time": 0.6667, "angle": -18.37 },
  3084. { "time": 0.8333, "angle": -18.26 },
  3085. { "time": 1, "angle": -18.15 }
  3086. ],
  3087. "translate": [
  3088. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3089. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3090. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3091. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3092. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3093. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3094. { "time": 1, "x": 0, "y": 0 }
  3095. ],
  3096. "scale": [
  3097. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3098. { "time": 1, "x": 1, "y": 1 }
  3099. ]
  3100. },
  3101. "bone21": {
  3102. "rotate": [
  3103. { "time": 0, "angle": -6.48, "curve": "stepped" },
  3104. { "time": 0.1667, "angle": -6.48, "curve": "stepped" },
  3105. { "time": 0.3333, "angle": -6.48, "curve": "stepped" },
  3106. { "time": 0.5, "angle": -6.48, "curve": "stepped" },
  3107. { "time": 0.6667, "angle": -6.48, "curve": "stepped" },
  3108. { "time": 0.8333, "angle": -6.48, "curve": "stepped" },
  3109. { "time": 1, "angle": -6.48 }
  3110. ],
  3111. "translate": [
  3112. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3113. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3114. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3115. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3116. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3117. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3118. { "time": 1, "x": 0, "y": 0 }
  3119. ],
  3120. "scale": [
  3121. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3122. { "time": 1, "x": 1, "y": 1 }
  3123. ]
  3124. },
  3125. "bone22": {
  3126. "rotate": [
  3127. { "time": 0, "angle": 0, "curve": "stepped" },
  3128. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3129. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3130. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3131. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3132. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3133. { "time": 1, "angle": 0 }
  3134. ],
  3135. "translate": [
  3136. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3137. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3138. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3139. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3140. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3141. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3142. { "time": 1, "x": 0, "y": 0 }
  3143. ],
  3144. "scale": [
  3145. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3146. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3147. { "time": 1, "x": 1, "y": 1 }
  3148. ]
  3149. },
  3150. "bone23": {
  3151. "rotate": [
  3152. { "time": 0, "angle": 0, "curve": "stepped" },
  3153. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3154. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3155. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3156. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3157. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3158. { "time": 1, "angle": 0 }
  3159. ],
  3160. "translate": [
  3161. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3162. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3163. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3164. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3165. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3166. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3167. { "time": 1, "x": 0, "y": 0 }
  3168. ],
  3169. "scale": [
  3170. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3171. { "time": 1, "x": 1, "y": 1 }
  3172. ]
  3173. },
  3174. "bone24": {
  3175. "rotate": [
  3176. { "time": 0, "angle": 0, "curve": "stepped" },
  3177. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3178. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3179. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3180. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3181. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3182. { "time": 1, "angle": 0 }
  3183. ],
  3184. "translate": [
  3185. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3186. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3187. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3188. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3189. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3190. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3191. { "time": 1, "x": 0, "y": 0 }
  3192. ],
  3193. "scale": [
  3194. { "time": 0, "x": 1.1, "y": 1 },
  3195. { "time": 0.1667, "x": 1, "y": 1 },
  3196. { "time": 0.5, "x": 1.1, "y": 1 },
  3197. { "time": 0.6667, "x": 1, "y": 1 },
  3198. { "time": 1, "x": 1.1, "y": 1 }
  3199. ]
  3200. },
  3201. "bone25": {
  3202. "rotate": [
  3203. { "time": 0, "angle": 0, "curve": "stepped" },
  3204. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3205. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3206. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3207. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3208. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3209. { "time": 1, "angle": 0 }
  3210. ],
  3211. "translate": [
  3212. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3213. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3214. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3215. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3216. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3217. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3218. { "time": 1, "x": 0, "y": 0 }
  3219. ],
  3220. "scale": [
  3221. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3222. { "time": 1, "x": 1, "y": 1 }
  3223. ]
  3224. },
  3225. "bone26": {
  3226. "rotate": [
  3227. {
  3228. "time": 0,
  3229. "angle": 0,
  3230. "curve": [ 0.25, 0, 0.75, 1 ]
  3231. },
  3232. {
  3233. "time": 0.5,
  3234. "angle": -3.57,
  3235. "curve": [ 0.25, 0, 0.75, 1 ]
  3236. },
  3237. { "time": 1, "angle": 0 }
  3238. ],
  3239. "translate": [
  3240. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3241. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3242. { "time": 1, "x": 0, "y": 0 }
  3243. ],
  3244. "scale": [
  3245. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3246. { "time": 1, "x": 1, "y": 1 }
  3247. ]
  3248. },
  3249. "bone27": {
  3250. "rotate": [
  3251. {
  3252. "time": 0,
  3253. "angle": 0,
  3254. "curve": [ 0.25, 0, 0.75, 1 ]
  3255. },
  3256. {
  3257. "time": 0.5,
  3258. "angle": -7.71,
  3259. "curve": [ 0.25, 0, 0.75, 1 ]
  3260. },
  3261. { "time": 1, "angle": 0 }
  3262. ],
  3263. "translate": [
  3264. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3265. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3266. { "time": 1, "x": 0, "y": 0 }
  3267. ],
  3268. "scale": [
  3269. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3270. { "time": 1, "x": 1, "y": 1 }
  3271. ]
  3272. },
  3273. "bone28": {
  3274. "rotate": [
  3275. { "time": 0, "angle": 0 },
  3276. { "time": 0.5, "angle": -11.04 },
  3277. { "time": 1, "angle": 0 }
  3278. ],
  3279. "translate": [
  3280. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3281. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3282. { "time": 1, "x": 0, "y": 0 }
  3283. ],
  3284. "scale": [
  3285. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3286. { "time": 1, "x": 1, "y": 1 }
  3287. ]
  3288. },
  3289. "bone29": {
  3290. "rotate": [
  3291. { "time": 0, "angle": -2.64 },
  3292. { "time": 0.5, "angle": 0 },
  3293. { "time": 1, "angle": -2.64 }
  3294. ],
  3295. "translate": [
  3296. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3297. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3298. { "time": 1, "x": 0, "y": 0 }
  3299. ],
  3300. "scale": [
  3301. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3302. { "time": 1, "x": 1, "y": 1 }
  3303. ]
  3304. },
  3305. "bone30": {
  3306. "rotate": [
  3307. { "time": 0, "angle": 0 },
  3308. { "time": 0.5, "angle": -7.04 },
  3309. { "time": 1, "angle": 0 }
  3310. ],
  3311. "translate": [
  3312. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3313. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3314. { "time": 1, "x": 0, "y": 0 }
  3315. ],
  3316. "scale": [
  3317. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3318. { "time": 1, "x": 1, "y": 1 }
  3319. ]
  3320. },
  3321. "bone31": {
  3322. "rotate": [
  3323. { "time": 0, "angle": 18.14 },
  3324. { "time": 0.5, "angle": 13.5 },
  3325. { "time": 1, "angle": 18.14 }
  3326. ],
  3327. "translate": [
  3328. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3329. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3330. { "time": 1, "x": 0, "y": 0 }
  3331. ],
  3332. "scale": [
  3333. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3334. { "time": 1, "x": 1, "y": 1 }
  3335. ]
  3336. },
  3337. "bone32": {
  3338. "rotate": [
  3339. { "time": 0, "angle": 18.75 },
  3340. { "time": 0.5, "angle": 0 },
  3341. { "time": 1, "angle": 18.75 }
  3342. ],
  3343. "translate": [
  3344. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3345. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3346. { "time": 1, "x": 0, "y": 0 }
  3347. ],
  3348. "scale": [
  3349. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3350. { "time": 1, "x": 1, "y": 1 }
  3351. ]
  3352. },
  3353. "bone33": {
  3354. "rotate": [
  3355. { "time": 0, "angle": 0, "curve": "stepped" },
  3356. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3357. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3358. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3359. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3360. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3361. { "time": 1, "angle": 0 }
  3362. ],
  3363. "translate": [
  3364. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3365. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3366. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3367. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3368. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3369. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3370. { "time": 1, "x": 0, "y": 0 }
  3371. ],
  3372. "scale": [
  3373. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3374. { "time": 1, "x": 1, "y": 1 }
  3375. ]
  3376. },
  3377. "bone34": {
  3378. "rotate": [
  3379. { "time": 0, "angle": 0 },
  3380. { "time": 0.5, "angle": 14.25 },
  3381. { "time": 1, "angle": 0 }
  3382. ],
  3383. "translate": [
  3384. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3385. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3386. { "time": 1, "x": 0, "y": 0 }
  3387. ],
  3388. "scale": [
  3389. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3390. { "time": 1, "x": 1, "y": 1 }
  3391. ]
  3392. },
  3393. "bone35": {
  3394. "rotate": [
  3395. { "time": 0, "angle": 0 },
  3396. { "time": 0.5, "angle": 3.87 },
  3397. { "time": 1, "angle": 0 }
  3398. ],
  3399. "translate": [
  3400. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3401. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3402. { "time": 1, "x": 0, "y": 0 }
  3403. ],
  3404. "scale": [
  3405. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3406. { "time": 1, "x": 1, "y": 1 }
  3407. ]
  3408. },
  3409. "bone36": {
  3410. "rotate": [
  3411. { "time": 0, "angle": 0, "curve": "stepped" },
  3412. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3413. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3414. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3415. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3416. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3417. { "time": 1, "angle": 0 }
  3418. ],
  3419. "translate": [
  3420. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3421. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3422. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3423. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3424. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3425. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3426. { "time": 1, "x": 0, "y": 0 }
  3427. ],
  3428. "scale": [
  3429. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3430. { "time": 1, "x": 1, "y": 1 }
  3431. ]
  3432. },
  3433. "bone37": {
  3434. "rotate": [
  3435. { "time": 0, "angle": 0, "curve": "stepped" },
  3436. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3437. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3438. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3439. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3440. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3441. { "time": 1, "angle": 0 }
  3442. ],
  3443. "translate": [
  3444. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3445. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3446. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3447. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3448. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3449. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3450. { "time": 1, "x": 0, "y": 0 }
  3451. ],
  3452. "scale": [
  3453. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3454. { "time": 1, "x": 1, "y": 1 }
  3455. ]
  3456. },
  3457. "bone38": {
  3458. "rotate": [
  3459. { "time": 0, "angle": 0, "curve": "stepped" },
  3460. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3461. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3462. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3463. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3464. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3465. { "time": 1, "angle": 0 }
  3466. ],
  3467. "translate": [
  3468. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3469. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3470. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3471. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3472. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3473. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3474. { "time": 1, "x": 0, "y": 0 }
  3475. ],
  3476. "scale": [
  3477. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3478. { "time": 1, "x": 1, "y": 1 }
  3479. ]
  3480. },
  3481. "bone39": {
  3482. "rotate": [
  3483. { "time": 0, "angle": 0, "curve": "stepped" },
  3484. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3485. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3486. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3487. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3488. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3489. { "time": 1, "angle": 0 }
  3490. ],
  3491. "translate": [
  3492. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3493. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3494. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3495. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3496. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3497. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3498. { "time": 1, "x": 0, "y": 0 }
  3499. ],
  3500. "scale": [
  3501. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3502. { "time": 1, "x": 1, "y": 1 }
  3503. ]
  3504. },
  3505. "bone40": {
  3506. "rotate": [
  3507. { "time": 0, "angle": 0, "curve": "stepped" },
  3508. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3509. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3510. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3511. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3512. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3513. { "time": 1, "angle": 0 }
  3514. ],
  3515. "translate": [
  3516. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3517. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3518. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3519. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3520. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3521. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3522. { "time": 1, "x": 0, "y": 0 }
  3523. ],
  3524. "scale": [
  3525. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3526. { "time": 1, "x": 1, "y": 1 }
  3527. ]
  3528. },
  3529. "bone41": {
  3530. "rotate": [
  3531. { "time": 0, "angle": 0 },
  3532. { "time": 0.1667, "angle": -12.34 },
  3533. { "time": 0.3333, "angle": -24.69 },
  3534. { "time": 0.5, "angle": -37.03 },
  3535. { "time": 0.6667, "angle": -24.69 },
  3536. { "time": 0.8333, "angle": -12.34 },
  3537. { "time": 1, "angle": 0 }
  3538. ],
  3539. "translate": [
  3540. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3541. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3542. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3543. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3544. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3545. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3546. { "time": 1, "x": 0, "y": 0 }
  3547. ],
  3548. "scale": [
  3549. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3550. { "time": 1, "x": 1, "y": 1 }
  3551. ]
  3552. },
  3553. "bone42": {
  3554. "rotate": [
  3555. { "time": 0, "angle": 9.19 },
  3556. { "time": 0.1667, "angle": 3.2 },
  3557. { "time": 0.3333, "angle": -2.8 },
  3558. { "time": 0.5, "angle": -8.79 },
  3559. { "time": 0.6667, "angle": -2.8 },
  3560. { "time": 0.8333, "angle": 3.2 },
  3561. { "time": 1, "angle": 9.19 }
  3562. ],
  3563. "translate": [
  3564. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3565. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3566. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3567. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3568. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3569. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3570. { "time": 1, "x": 0, "y": 0 }
  3571. ],
  3572. "scale": [
  3573. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3574. { "time": 1, "x": 1, "y": 1 }
  3575. ]
  3576. },
  3577. "bone43": {
  3578. "rotate": [
  3579. { "time": 0, "angle": 6.12 },
  3580. { "time": 0.1667, "angle": 4.08 },
  3581. { "time": 0.3333, "angle": 2.04 },
  3582. { "time": 0.5, "angle": 0 },
  3583. { "time": 0.6667, "angle": 2.04 },
  3584. { "time": 0.8333, "angle": 4.08 },
  3585. { "time": 1, "angle": 6.12 }
  3586. ],
  3587. "translate": [
  3588. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3589. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3590. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3591. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3592. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3593. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3594. { "time": 1, "x": 0, "y": 0 }
  3595. ],
  3596. "scale": [
  3597. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3598. { "time": 1, "x": 1, "y": 1 }
  3599. ]
  3600. },
  3601. "bone44": {
  3602. "rotate": [
  3603. { "time": 0, "angle": -6.47 },
  3604. { "time": 0.5, "angle": -356.73 },
  3605. { "time": 1, "angle": -6.47 }
  3606. ],
  3607. "translate": [
  3608. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3609. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3610. { "time": 1, "x": 0, "y": 0 }
  3611. ],
  3612. "scale": [
  3613. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3614. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3615. { "time": 1, "x": 1, "y": 1 }
  3616. ]
  3617. },
  3618. "bone45": {
  3619. "rotate": [
  3620. { "time": 0, "angle": -10.91 },
  3621. { "time": 0.1667, "angle": -7.27 },
  3622. { "time": 0.3333, "angle": -3.64 },
  3623. { "time": 0.5, "angle": 0 },
  3624. { "time": 0.6667, "angle": -3.64 },
  3625. { "time": 0.8333, "angle": -7.27 },
  3626. { "time": 1, "angle": -10.91 }
  3627. ],
  3628. "translate": [
  3629. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3630. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3631. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3632. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3633. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3634. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3635. { "time": 1, "x": 0, "y": 0 }
  3636. ],
  3637. "scale": [
  3638. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3639. { "time": 1, "x": 1, "y": 1 }
  3640. ]
  3641. },
  3642. "bone46": {
  3643. "rotate": [
  3644. { "time": 0, "angle": -12.25 },
  3645. { "time": 0.1667, "angle": -8.17 },
  3646. { "time": 0.3333, "angle": -4.08 },
  3647. { "time": 0.5, "angle": 0 },
  3648. { "time": 0.6667, "angle": -4.08 },
  3649. { "time": 0.8333, "angle": -8.17 },
  3650. { "time": 1, "angle": -12.25 }
  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, "curve": "stepped" },
  3656. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3657. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3658. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3659. { "time": 1, "x": 0, "y": 0 }
  3660. ],
  3661. "scale": [
  3662. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3663. { "time": 1, "x": 1, "y": 1 }
  3664. ]
  3665. },
  3666. "bone47": {
  3667. "rotate": [
  3668. { "time": 0, "angle": 0, "curve": "stepped" },
  3669. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3670. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3671. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3672. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3673. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3674. { "time": 1, "angle": 0 }
  3675. ],
  3676. "translate": [
  3677. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3678. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3679. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3680. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3681. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3682. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3683. { "time": 1, "x": 0, "y": 0 }
  3684. ],
  3685. "scale": [
  3686. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3687. { "time": 1, "x": 1, "y": 1 }
  3688. ]
  3689. }
  3690. },
  3691. "deform": {
  3692. "default": {
  3693. "chenshanhebozi": {
  3694. "chenshanhebozi": [
  3695. { "time": 0 },
  3696. {
  3697. "time": 0.1667,
  3698. "offset": 2,
  3699. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  3700. },
  3701. { "time": 0.5 },
  3702. {
  3703. "time": 0.6667,
  3704. "offset": 2,
  3705. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  3706. },
  3707. { "time": 1 }
  3708. ]
  3709. },
  3710. "houmiantoufa": {
  3711. "houmiantoufa": [
  3712. {
  3713. "time": 0,
  3714. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ],
  3715. "curve": "stepped"
  3716. },
  3717. {
  3718. "time": 1,
  3719. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  3720. }
  3721. ]
  3722. },
  3723. "sijiaoku": {
  3724. "sijiaoku": [
  3725. { "time": 0 },
  3726. {
  3727. "time": 0.1667,
  3728. "vertices": [ -0.57722, 6.32824, 0, 0, 1.35747, -4.10502 ]
  3729. },
  3730. {
  3731. "time": 0.5,
  3732. "offset": 2,
  3733. "vertices": [ -0.18699, -1.71517 ]
  3734. },
  3735. {
  3736. "time": 0.6667,
  3737. "vertices": [ -0.22771, 10.49018, -0.18699, -1.71517, -0.19918, -5.0114 ]
  3738. },
  3739. { "time": 1 }
  3740. ]
  3741. }
  3742. }
  3743. },
  3744. "drawOrder": [
  3745. {
  3746. "time": 0,
  3747. "offsets": [
  3748. { "slot": "zuoshou", "offset": -5 }
  3749. ]
  3750. },
  3751. {
  3752. "time": 0.5,
  3753. "offsets": [
  3754. { "slot": "zuoshou", "offset": -5 }
  3755. ]
  3756. },
  3757. {
  3758. "time": 1,
  3759. "offsets": [
  3760. { "slot": "zuoshou", "offset": -5 }
  3761. ]
  3762. }
  3763. ]
  3764. },
  3765. "walk2": {
  3766. "slots": {
  3767. "biyan": {
  3768. "attachment": [
  3769. { "time": 0, "name": null },
  3770. { "time": 1, "name": null },
  3771. { "time": 2, "name": null },
  3772. { "time": 3, "name": null },
  3773. { "time": 4, "name": null },
  3774. { "time": 5, "name": null }
  3775. ]
  3776. },
  3777. "maozi": {
  3778. "attachment": [
  3779. { "time": 0, "name": null },
  3780. { "time": 1, "name": null },
  3781. { "time": 2, "name": null },
  3782. { "time": 3, "name": null },
  3783. { "time": 4, "name": null },
  3784. { "time": 5, "name": null }
  3785. ]
  3786. },
  3787. "star": {
  3788. "color": [
  3789. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3790. { "time": 1, "color": "ffffff00", "curve": "stepped" },
  3791. { "time": 2, "color": "ffffff00", "curve": "stepped" },
  3792. { "time": 3, "color": "ffffff00", "curve": "stepped" },
  3793. { "time": 4, "color": "ffffff00" }
  3794. ]
  3795. },
  3796. "star2": {
  3797. "color": [
  3798. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3799. { "time": 1, "color": "ffffff00", "curve": "stepped" },
  3800. { "time": 2, "color": "ffffff00", "curve": "stepped" },
  3801. { "time": 3, "color": "ffffff00", "curve": "stepped" },
  3802. { "time": 4, "color": "ffffff00" }
  3803. ]
  3804. },
  3805. "star3": {
  3806. "color": [
  3807. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3808. { "time": 1, "color": "ffffff00", "curve": "stepped" },
  3809. { "time": 2, "color": "ffffff00", "curve": "stepped" },
  3810. { "time": 3, "color": "ffffff00", "curve": "stepped" },
  3811. { "time": 4, "color": "ffffff00" }
  3812. ]
  3813. },
  3814. "star4": {
  3815. "color": [
  3816. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3817. { "time": 1, "color": "ffffff00", "curve": "stepped" },
  3818. { "time": 2, "color": "ffffff00", "curve": "stepped" },
  3819. { "time": 3, "color": "ffffff00", "curve": "stepped" },
  3820. { "time": 4, "color": "ffffff00" }
  3821. ]
  3822. },
  3823. "yinying": {
  3824. "attachment": [
  3825. { "time": 0, "name": null },
  3826. { "time": 1, "name": null },
  3827. { "time": 2, "name": null },
  3828. { "time": 3, "name": null },
  3829. { "time": 4, "name": null },
  3830. { "time": 5, "name": null }
  3831. ]
  3832. }
  3833. },
  3834. "bones": {
  3835. "root": {
  3836. "rotate": [
  3837. { "time": 0, "angle": 0, "curve": "stepped" },
  3838. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3839. { "time": 0.3, "angle": 0, "curve": "stepped" },
  3840. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  3841. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  3842. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3843. { "time": 1, "angle": 0, "curve": "stepped" },
  3844. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  3845. { "time": 1.3, "angle": 0, "curve": "stepped" },
  3846. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  3847. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  3848. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3849. { "time": 2, "angle": 0, "curve": "stepped" },
  3850. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  3851. { "time": 2.3, "angle": 0, "curve": "stepped" },
  3852. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  3853. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  3854. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  3855. { "time": 3, "angle": 0, "curve": "stepped" },
  3856. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  3857. { "time": 3.3, "angle": 0, "curve": "stepped" },
  3858. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  3859. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  3860. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  3861. { "time": 4, "angle": 0, "curve": "stepped" },
  3862. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  3863. { "time": 4.3, "angle": 0, "curve": "stepped" },
  3864. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  3865. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  3866. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  3867. { "time": 5, "angle": 0 }
  3868. ],
  3869. "translate": [
  3870. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3871. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3872. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3873. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3874. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3875. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3876. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3877. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3878. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  3879. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  3880. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3881. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3882. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3883. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  3884. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3885. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  3886. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  3887. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3888. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3889. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3890. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  3891. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  3892. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  3893. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  3894. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3895. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  3896. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  3897. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  3898. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  3899. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  3900. { "time": 5, "x": 0, "y": 0 }
  3901. ],
  3902. "scale": [
  3903. { "time": 0, "x": 0.65, "y": 0.65, "curve": "stepped" },
  3904. { "time": 1, "x": 0.65, "y": 0.65, "curve": "stepped" },
  3905. { "time": 2, "x": 0.65, "y": 0.65, "curve": "stepped" },
  3906. { "time": 3, "x": 0.65, "y": 0.65, "curve": "stepped" },
  3907. { "time": 4, "x": 0.65, "y": 0.65 }
  3908. ]
  3909. },
  3910. "bone": {
  3911. "rotate": [
  3912. { "time": 0, "angle": 0, "curve": "stepped" },
  3913. { "time": 1, "angle": 0, "curve": "stepped" },
  3914. { "time": 2, "angle": 0, "curve": "stepped" },
  3915. { "time": 3, "angle": 0, "curve": "stepped" },
  3916. { "time": 4, "angle": 0, "curve": "stepped" },
  3917. { "time": 5, "angle": 0 }
  3918. ],
  3919. "translate": [
  3920. { "time": 0, "x": 0, "y": 0 },
  3921. { "time": 0.4667, "x": 1.31, "y": 0 },
  3922. { "time": 1, "x": 0, "y": 0 },
  3923. { "time": 1.4667, "x": 1.31, "y": 0 },
  3924. { "time": 2, "x": 0, "y": 0 },
  3925. { "time": 2.4667, "x": 1.31, "y": 0 },
  3926. { "time": 3, "x": 0, "y": 0 },
  3927. { "time": 3.4667, "x": 1.31, "y": 0 },
  3928. { "time": 4, "x": 0, "y": 0 },
  3929. { "time": 4.4667, "x": 1.31, "y": 0 },
  3930. { "time": 5, "x": 0, "y": 0 }
  3931. ],
  3932. "scale": [
  3933. { "time": 0, "x": -1, "y": 1, "curve": "stepped" },
  3934. { "time": 1, "x": -1, "y": 1, "curve": "stepped" },
  3935. { "time": 2, "x": -1, "y": 1, "curve": "stepped" },
  3936. { "time": 3, "x": -1, "y": 1, "curve": "stepped" },
  3937. { "time": 4, "x": -1, "y": 1 }
  3938. ]
  3939. },
  3940. "bone2": {
  3941. "rotate": [
  3942. { "time": 0, "angle": -24.24 },
  3943. { "time": 0.1333, "angle": -17.37 },
  3944. { "time": 0.3, "angle": 13.83 },
  3945. { "time": 0.4667, "angle": 20.98 },
  3946. { "time": 0.6333, "angle": 18.66 },
  3947. { "time": 0.8333, "angle": 1.52 },
  3948. { "time": 1, "angle": -24.24 },
  3949. { "time": 1.1333, "angle": -17.37 },
  3950. { "time": 1.3, "angle": 13.83 },
  3951. { "time": 1.4667, "angle": 20.98 },
  3952. { "time": 1.6333, "angle": 18.66 },
  3953. { "time": 1.8333, "angle": 1.52 },
  3954. { "time": 2, "angle": -24.24 },
  3955. { "time": 2.1333, "angle": -17.37 },
  3956. { "time": 2.3, "angle": 13.83 },
  3957. { "time": 2.4667, "angle": 20.98 },
  3958. { "time": 2.6333, "angle": 18.66 },
  3959. { "time": 2.8333, "angle": 1.52 },
  3960. { "time": 3, "angle": -24.24 },
  3961. { "time": 3.1333, "angle": -17.37 },
  3962. { "time": 3.3, "angle": 13.83 },
  3963. { "time": 3.4667, "angle": 20.98 },
  3964. { "time": 3.6333, "angle": 18.66 },
  3965. { "time": 3.8333, "angle": 1.52 },
  3966. { "time": 4, "angle": -24.24 },
  3967. { "time": 4.1333, "angle": -17.37 },
  3968. { "time": 4.3, "angle": 13.83 },
  3969. { "time": 4.4667, "angle": 20.98 },
  3970. { "time": 4.6333, "angle": 18.66 },
  3971. { "time": 4.8333, "angle": 1.52 },
  3972. { "time": 5, "angle": -24.24 }
  3973. ],
  3974. "translate": [
  3975. { "time": 0, "x": 0.87, "y": 3.42 },
  3976. { "time": 0.1333, "x": 3.79, "y": -0.77 },
  3977. { "time": 0.3, "x": 8.1, "y": 2.59 },
  3978. { "time": 0.4667, "x": 14.59, "y": 3.73 },
  3979. { "time": 0.6333, "x": 9.72, "y": 2.49 },
  3980. { "time": 0.8333, "x": 4.86, "y": 1.24 },
  3981. { "time": 1, "x": 0.87, "y": 3.42 },
  3982. { "time": 1.1333, "x": 3.79, "y": -0.77 },
  3983. { "time": 1.3, "x": 8.1, "y": 2.59 },
  3984. { "time": 1.4667, "x": 14.59, "y": 3.73 },
  3985. { "time": 1.6333, "x": 9.72, "y": 2.49 },
  3986. { "time": 1.8333, "x": 4.86, "y": 1.24 },
  3987. { "time": 2, "x": 0.87, "y": 3.42 },
  3988. { "time": 2.1333, "x": 3.79, "y": -0.77 },
  3989. { "time": 2.3, "x": 8.1, "y": 2.59 },
  3990. { "time": 2.4667, "x": 14.59, "y": 3.73 },
  3991. { "time": 2.6333, "x": 9.72, "y": 2.49 },
  3992. { "time": 2.8333, "x": 4.86, "y": 1.24 },
  3993. { "time": 3, "x": 0.87, "y": 3.42 },
  3994. { "time": 3.1333, "x": 3.79, "y": -0.77 },
  3995. { "time": 3.3, "x": 8.1, "y": 2.59 },
  3996. { "time": 3.4667, "x": 14.59, "y": 3.73 },
  3997. { "time": 3.6333, "x": 9.72, "y": 2.49 },
  3998. { "time": 3.8333, "x": 4.86, "y": 1.24 },
  3999. { "time": 4, "x": 0.87, "y": 3.42 },
  4000. { "time": 4.1333, "x": 3.79, "y": -0.77 },
  4001. { "time": 4.3, "x": 8.1, "y": 2.59 },
  4002. { "time": 4.4667, "x": 14.59, "y": 3.73 },
  4003. { "time": 4.6333, "x": 9.72, "y": 2.49 },
  4004. { "time": 4.8333, "x": 4.86, "y": 1.24 },
  4005. { "time": 5, "x": 0.87, "y": 3.42 }
  4006. ],
  4007. "scale": [
  4008. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4009. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4010. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4011. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4012. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4013. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4014. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4015. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4016. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4017. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4018. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4019. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4020. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4021. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4022. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4023. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4024. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4025. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4026. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4027. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4028. { "time": 5, "x": 1, "y": 1 }
  4029. ]
  4030. },
  4031. "bone3": {
  4032. "rotate": [
  4033. { "time": 0, "angle": 39.85 },
  4034. { "time": 0.1333, "angle": 50.61 },
  4035. { "time": 0.3, "angle": 35.53 },
  4036. { "time": 0.4667, "angle": 0.91 },
  4037. { "time": 0.6333, "angle": 7.51 },
  4038. { "time": 0.8333, "angle": 4.35 },
  4039. { "time": 1, "angle": 39.85 },
  4040. { "time": 1.1333, "angle": 50.61 },
  4041. { "time": 1.3, "angle": 35.53 },
  4042. { "time": 1.4667, "angle": 0.91 },
  4043. { "time": 1.6333, "angle": 7.51 },
  4044. { "time": 1.8333, "angle": 4.35 },
  4045. { "time": 2, "angle": 39.85 },
  4046. { "time": 2.1333, "angle": 50.61 },
  4047. { "time": 2.3, "angle": 35.53 },
  4048. { "time": 2.4667, "angle": 0.91 },
  4049. { "time": 2.6333, "angle": 7.51 },
  4050. { "time": 2.8333, "angle": 4.35 },
  4051. { "time": 3, "angle": 39.85 },
  4052. { "time": 3.1333, "angle": 50.61 },
  4053. { "time": 3.3, "angle": 35.53 },
  4054. { "time": 3.4667, "angle": 0.91 },
  4055. { "time": 3.6333, "angle": 7.51 },
  4056. { "time": 3.8333, "angle": 4.35 },
  4057. { "time": 4, "angle": 39.85 },
  4058. { "time": 4.1333, "angle": 50.61 },
  4059. { "time": 4.3, "angle": 35.53 },
  4060. { "time": 4.4667, "angle": 0.91 },
  4061. { "time": 4.6333, "angle": 7.51 },
  4062. { "time": 4.8333, "angle": 4.35 },
  4063. { "time": 5, "angle": 39.85 }
  4064. ],
  4065. "translate": [
  4066. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4067. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4068. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4069. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4070. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4071. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4072. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4073. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4074. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4075. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4076. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4077. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4078. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4079. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4080. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4081. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4082. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4083. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4084. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4085. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4086. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4087. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4088. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4089. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4090. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4091. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4092. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4093. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4094. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4095. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4096. { "time": 5, "x": 0, "y": 0 }
  4097. ],
  4098. "scale": [
  4099. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4100. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4101. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4102. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4103. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4104. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4105. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4106. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4107. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4108. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4109. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4110. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4111. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4112. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4113. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4114. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4115. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4116. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4117. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4118. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4119. { "time": 5, "x": 1, "y": 1 }
  4120. ]
  4121. },
  4122. "bone4": {
  4123. "rotate": [
  4124. { "time": 0, "angle": 10.12 },
  4125. { "time": 0.1333, "angle": -22.95 },
  4126. { "time": 0.3, "angle": -18.83 },
  4127. { "time": 0.4667, "angle": -17.58 },
  4128. { "time": 0.6333, "angle": -16.35 },
  4129. { "time": 0.8333, "angle": -8.17 },
  4130. { "time": 1, "angle": 10.12 },
  4131. { "time": 1.1333, "angle": -22.95 },
  4132. { "time": 1.3, "angle": -18.83 },
  4133. { "time": 1.4667, "angle": -17.58 },
  4134. { "time": 1.6333, "angle": -16.35 },
  4135. { "time": 1.8333, "angle": -8.17 },
  4136. { "time": 2, "angle": 10.12 },
  4137. { "time": 2.1333, "angle": -22.95 },
  4138. { "time": 2.3, "angle": -18.83 },
  4139. { "time": 2.4667, "angle": -17.58 },
  4140. { "time": 2.6333, "angle": -16.35 },
  4141. { "time": 2.8333, "angle": -8.17 },
  4142. { "time": 3, "angle": 10.12 },
  4143. { "time": 3.1333, "angle": -22.95 },
  4144. { "time": 3.3, "angle": -18.83 },
  4145. { "time": 3.4667, "angle": -17.58 },
  4146. { "time": 3.6333, "angle": -16.35 },
  4147. { "time": 3.8333, "angle": -8.17 },
  4148. { "time": 4, "angle": 10.12 },
  4149. { "time": 4.1333, "angle": -22.95 },
  4150. { "time": 4.3, "angle": -18.83 },
  4151. { "time": 4.4667, "angle": -17.58 },
  4152. { "time": 4.6333, "angle": -16.35 },
  4153. { "time": 4.8333, "angle": -8.17 },
  4154. { "time": 5, "angle": 10.12 }
  4155. ],
  4156. "translate": [
  4157. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4158. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4159. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4160. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4161. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4162. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4163. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4164. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4165. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4166. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4167. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4168. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4169. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4170. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4171. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4172. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4173. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4174. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4175. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4176. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4177. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4178. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4179. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4180. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4181. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4182. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4183. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4184. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4185. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4186. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4187. { "time": 5, "x": 0, "y": 0 }
  4188. ],
  4189. "scale": [
  4190. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4191. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4192. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4193. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4194. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4195. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4196. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4197. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4198. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4199. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4200. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4201. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4202. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4203. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4204. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4205. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4206. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4207. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4208. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4209. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4210. { "time": 5, "x": 1, "y": 1 }
  4211. ]
  4212. },
  4213. "bone5": {
  4214. "rotate": [
  4215. { "time": 0, "angle": 16.36 },
  4216. { "time": 0.1333, "angle": 5.83 },
  4217. { "time": 0.3, "angle": -10.24 },
  4218. { "time": 0.4667, "angle": -33.02 },
  4219. { "time": 0.6333, "angle": -17.79 },
  4220. { "time": 0.8333, "angle": 13.57 },
  4221. { "time": 1, "angle": 16.36 },
  4222. { "time": 1.1333, "angle": 5.83 },
  4223. { "time": 1.3, "angle": -10.24 },
  4224. { "time": 1.4667, "angle": -33.02 },
  4225. { "time": 1.6333, "angle": -17.79 },
  4226. { "time": 1.8333, "angle": 13.57 },
  4227. { "time": 2, "angle": 16.36 },
  4228. { "time": 2.1333, "angle": 5.83 },
  4229. { "time": 2.3, "angle": -10.24 },
  4230. { "time": 2.4667, "angle": -33.02 },
  4231. { "time": 2.6333, "angle": -17.79 },
  4232. { "time": 2.8333, "angle": 13.57 },
  4233. { "time": 3, "angle": 16.36 },
  4234. { "time": 3.1333, "angle": 5.83 },
  4235. { "time": 3.3, "angle": -10.24 },
  4236. { "time": 3.4667, "angle": -33.02 },
  4237. { "time": 3.6333, "angle": -17.79 },
  4238. { "time": 3.8333, "angle": 13.57 },
  4239. { "time": 4, "angle": 16.36 },
  4240. { "time": 4.1333, "angle": 5.83 },
  4241. { "time": 4.3, "angle": -10.24 },
  4242. { "time": 4.4667, "angle": -33.02 },
  4243. { "time": 4.6333, "angle": -17.79 },
  4244. { "time": 4.8333, "angle": 13.57 },
  4245. { "time": 5, "angle": 16.36 }
  4246. ],
  4247. "translate": [
  4248. { "time": 0, "x": 0, "y": 0 },
  4249. { "time": 0.1333, "x": -4.02, "y": 0.03 },
  4250. { "time": 0.3, "x": -8.03, "y": 0.06 },
  4251. { "time": 0.4667, "x": -12.05, "y": 0.1 },
  4252. { "time": 0.6333, "x": -10.25, "y": 0.56 },
  4253. { "time": 0.8333, "x": -8.45, "y": 1.02 },
  4254. { "time": 1, "x": 0, "y": 0 },
  4255. { "time": 1.1333, "x": -4.02, "y": 0.03 },
  4256. { "time": 1.3, "x": -8.03, "y": 0.06 },
  4257. { "time": 1.4667, "x": -12.05, "y": 0.1 },
  4258. { "time": 1.6333, "x": -10.25, "y": 0.56 },
  4259. { "time": 1.8333, "x": -8.45, "y": 1.02 },
  4260. { "time": 2, "x": 0, "y": 0 },
  4261. { "time": 2.1333, "x": -4.02, "y": 0.03 },
  4262. { "time": 2.3, "x": -8.03, "y": 0.06 },
  4263. { "time": 2.4667, "x": -12.05, "y": 0.1 },
  4264. { "time": 2.6333, "x": -10.25, "y": 0.56 },
  4265. { "time": 2.8333, "x": -8.45, "y": 1.02 },
  4266. { "time": 3, "x": 0, "y": 0 },
  4267. { "time": 3.1333, "x": -4.02, "y": 0.03 },
  4268. { "time": 3.3, "x": -8.03, "y": 0.06 },
  4269. { "time": 3.4667, "x": -12.05, "y": 0.1 },
  4270. { "time": 3.6333, "x": -10.25, "y": 0.56 },
  4271. { "time": 3.8333, "x": -8.45, "y": 1.02 },
  4272. { "time": 4, "x": 0, "y": 0 },
  4273. { "time": 4.1333, "x": -4.02, "y": 0.03 },
  4274. { "time": 4.3, "x": -8.03, "y": 0.06 },
  4275. { "time": 4.4667, "x": -12.05, "y": 0.1 },
  4276. { "time": 4.6333, "x": -10.25, "y": 0.56 },
  4277. { "time": 4.8333, "x": -8.45, "y": 1.02 },
  4278. { "time": 5, "x": 0, "y": 0 }
  4279. ],
  4280. "scale": [
  4281. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4282. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4283. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4284. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4285. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4286. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4287. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4288. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4289. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4290. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4291. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4292. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4293. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4294. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4295. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4296. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4297. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4298. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4299. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4300. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4301. { "time": 5, "x": 1, "y": 1 }
  4302. ]
  4303. },
  4304. "bone6": {
  4305. "rotate": [
  4306. { "time": 0, "angle": -1.17 },
  4307. { "time": 0.1333, "angle": 12.08 },
  4308. { "time": 0.3, "angle": 3.84 },
  4309. { "time": 0.4667, "angle": 32.15 },
  4310. { "time": 0.6333, "angle": 35.18 },
  4311. { "time": 0.8333, "angle": 26.47 },
  4312. { "time": 1, "angle": -1.17 },
  4313. { "time": 1.1333, "angle": 12.08 },
  4314. { "time": 1.3, "angle": 3.84 },
  4315. { "time": 1.4667, "angle": 32.15 },
  4316. { "time": 1.6333, "angle": 35.18 },
  4317. { "time": 1.8333, "angle": 26.47 },
  4318. { "time": 2, "angle": -1.17 },
  4319. { "time": 2.1333, "angle": 12.08 },
  4320. { "time": 2.3, "angle": 3.84 },
  4321. { "time": 2.4667, "angle": 32.15 },
  4322. { "time": 2.6333, "angle": 35.18 },
  4323. { "time": 2.8333, "angle": 26.47 },
  4324. { "time": 3, "angle": -1.17 },
  4325. { "time": 3.1333, "angle": 12.08 },
  4326. { "time": 3.3, "angle": 3.84 },
  4327. { "time": 3.4667, "angle": 32.15 },
  4328. { "time": 3.6333, "angle": 35.18 },
  4329. { "time": 3.8333, "angle": 26.47 },
  4330. { "time": 4, "angle": -1.17 },
  4331. { "time": 4.1333, "angle": 12.08 },
  4332. { "time": 4.3, "angle": 3.84 },
  4333. { "time": 4.4667, "angle": 32.15 },
  4334. { "time": 4.6333, "angle": 35.18 },
  4335. { "time": 4.8333, "angle": 26.47 },
  4336. { "time": 5, "angle": -1.17 }
  4337. ],
  4338. "translate": [
  4339. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4340. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4341. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4342. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4343. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4344. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4345. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4346. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4347. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4348. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4349. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4350. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4351. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4352. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4353. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4354. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4355. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4356. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4357. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4358. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4359. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4360. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4361. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4362. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4363. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4364. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4365. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4366. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4367. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4368. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4369. { "time": 5, "x": 0, "y": 0 }
  4370. ],
  4371. "scale": [
  4372. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4373. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4374. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4375. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4376. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4377. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4378. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4379. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4380. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4381. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4382. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4383. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4384. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4385. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4386. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4387. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4388. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4389. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4390. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4391. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4392. { "time": 5, "x": 1, "y": 1 }
  4393. ]
  4394. },
  4395. "bone7": {
  4396. "rotate": [
  4397. { "time": 0, "angle": -11.14 },
  4398. { "time": 0.1333, "angle": -11.39 },
  4399. { "time": 0.3, "angle": 11.3 },
  4400. { "time": 0.4667, "angle": 12.02 },
  4401. { "time": 0.6333, "angle": -11.71 },
  4402. { "time": 0.8333, "angle": -8.71 },
  4403. { "time": 1, "angle": -11.14 },
  4404. { "time": 1.1333, "angle": -11.39 },
  4405. { "time": 1.3, "angle": 11.3 },
  4406. { "time": 1.4667, "angle": 12.02 },
  4407. { "time": 1.6333, "angle": -11.71 },
  4408. { "time": 1.8333, "angle": -8.71 },
  4409. { "time": 2, "angle": -11.14 },
  4410. { "time": 2.1333, "angle": -11.39 },
  4411. { "time": 2.3, "angle": 11.3 },
  4412. { "time": 2.4667, "angle": 12.02 },
  4413. { "time": 2.6333, "angle": -11.71 },
  4414. { "time": 2.8333, "angle": -8.71 },
  4415. { "time": 3, "angle": -11.14 },
  4416. { "time": 3.1333, "angle": -11.39 },
  4417. { "time": 3.3, "angle": 11.3 },
  4418. { "time": 3.4667, "angle": 12.02 },
  4419. { "time": 3.6333, "angle": -11.71 },
  4420. { "time": 3.8333, "angle": -8.71 },
  4421. { "time": 4, "angle": -11.14 },
  4422. { "time": 4.1333, "angle": -11.39 },
  4423. { "time": 4.3, "angle": 11.3 },
  4424. { "time": 4.4667, "angle": 12.02 },
  4425. { "time": 4.6333, "angle": -11.71 },
  4426. { "time": 4.8333, "angle": -8.71 },
  4427. { "time": 5, "angle": -11.14 }
  4428. ],
  4429. "translate": [
  4430. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4431. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4432. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4433. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4434. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4435. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4436. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4437. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4438. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4439. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4440. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4441. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4442. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4443. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4444. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4445. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4446. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4447. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4448. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4449. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4450. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4451. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4452. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4453. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4454. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4455. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4456. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4457. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4458. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4459. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4460. { "time": 5, "x": 0, "y": 0 }
  4461. ],
  4462. "scale": [
  4463. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4464. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4465. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4466. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4467. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4468. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4469. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4470. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4471. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4472. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4473. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4474. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4475. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4476. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4477. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4478. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4479. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4480. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4481. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4482. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4483. { "time": 5, "x": 1, "y": 1 }
  4484. ]
  4485. },
  4486. "bone8": {
  4487. "rotate": [
  4488. { "time": 0, "angle": -0.06 },
  4489. { "time": 0.4667, "angle": -1.97 },
  4490. { "time": 1, "angle": -0.06 },
  4491. { "time": 1.4667, "angle": -1.97 },
  4492. { "time": 2, "angle": -0.06 },
  4493. { "time": 2.4667, "angle": -1.97 },
  4494. { "time": 3, "angle": -0.06 },
  4495. { "time": 3.4667, "angle": -1.97 },
  4496. { "time": 4, "angle": -0.06 },
  4497. { "time": 4.4667, "angle": -1.97 },
  4498. { "time": 5, "angle": -0.06 }
  4499. ],
  4500. "translate": [
  4501. { "time": 0, "x": 0, "y": 0 },
  4502. { "time": 0.1333, "x": -0.02, "y": -0.39 },
  4503. { "time": 0.4667, "x": 0, "y": 0 },
  4504. { "time": 0.6333, "x": -0.02, "y": -0.39 },
  4505. { "time": 1, "x": 0, "y": 0 },
  4506. { "time": 1.1333, "x": -0.02, "y": -0.39 },
  4507. { "time": 1.4667, "x": 0, "y": 0 },
  4508. { "time": 1.6333, "x": -0.02, "y": -0.39 },
  4509. { "time": 2, "x": 0, "y": 0 },
  4510. { "time": 2.1333, "x": -0.02, "y": -0.39 },
  4511. { "time": 2.4667, "x": 0, "y": 0 },
  4512. { "time": 2.6333, "x": -0.02, "y": -0.39 },
  4513. { "time": 3, "x": 0, "y": 0 },
  4514. { "time": 3.1333, "x": -0.02, "y": -0.39 },
  4515. { "time": 3.4667, "x": 0, "y": 0 },
  4516. { "time": 3.6333, "x": -0.02, "y": -0.39 },
  4517. { "time": 4, "x": 0, "y": 0 },
  4518. { "time": 4.1333, "x": -0.02, "y": -0.39 },
  4519. { "time": 4.4667, "x": 0, "y": 0 },
  4520. { "time": 4.6333, "x": -0.02, "y": -0.39 },
  4521. { "time": 5, "x": 0, "y": 0 }
  4522. ],
  4523. "scale": [
  4524. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4525. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4526. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4527. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4528. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4529. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4530. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4531. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4532. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4533. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4534. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4535. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4536. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4537. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4538. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4539. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4540. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4541. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4542. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4543. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4544. { "time": 5, "x": 1, "y": 1 }
  4545. ]
  4546. },
  4547. "bone9": {
  4548. "rotate": [
  4549. { "time": 0, "angle": 0, "curve": "stepped" },
  4550. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  4551. { "time": 0.3, "angle": 0, "curve": "stepped" },
  4552. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  4553. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  4554. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4555. { "time": 1, "angle": 0, "curve": "stepped" },
  4556. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4557. { "time": 1.3, "angle": 0, "curve": "stepped" },
  4558. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  4559. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  4560. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4561. { "time": 2, "angle": 0, "curve": "stepped" },
  4562. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  4563. { "time": 2.3, "angle": 0, "curve": "stepped" },
  4564. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  4565. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  4566. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  4567. { "time": 3, "angle": 0, "curve": "stepped" },
  4568. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  4569. { "time": 3.3, "angle": 0, "curve": "stepped" },
  4570. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  4571. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  4572. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  4573. { "time": 4, "angle": 0, "curve": "stepped" },
  4574. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  4575. { "time": 4.3, "angle": 0, "curve": "stepped" },
  4576. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  4577. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  4578. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  4579. { "time": 5, "angle": 0 }
  4580. ],
  4581. "translate": [
  4582. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4583. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4584. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4585. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4586. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4587. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4588. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4589. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4590. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4591. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4592. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4593. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4594. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4595. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4596. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4597. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4598. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4599. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4600. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4601. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4602. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4603. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4604. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4605. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4606. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4607. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4608. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4609. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4610. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4611. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4612. { "time": 5, "x": 0, "y": 0 }
  4613. ],
  4614. "scale": [
  4615. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4616. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4617. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4618. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4619. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4620. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4621. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4622. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4623. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4624. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4625. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4626. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4627. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4628. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4629. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4630. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4631. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4632. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4633. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4634. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4635. { "time": 5, "x": 1, "y": 1 }
  4636. ]
  4637. },
  4638. "bone10": {
  4639. "rotate": [
  4640. { "time": 0, "angle": 4.63 },
  4641. { "time": 0.1333, "angle": 2.65 },
  4642. { "time": 0.4667, "angle": -1.57 },
  4643. { "time": 0.6333, "angle": 2.99 },
  4644. { "time": 1, "angle": 4.63 },
  4645. { "time": 1.1333, "angle": 2.65 },
  4646. { "time": 1.4667, "angle": -1.57 },
  4647. { "time": 1.6333, "angle": 2.99 },
  4648. { "time": 2, "angle": 4.63 },
  4649. { "time": 2.1333, "angle": 2.65 },
  4650. { "time": 2.4667, "angle": -1.57 },
  4651. { "time": 2.6333, "angle": 2.99 },
  4652. { "time": 3, "angle": 4.63 },
  4653. { "time": 3.1333, "angle": 2.65 },
  4654. { "time": 3.4667, "angle": -1.57 },
  4655. { "time": 3.6333, "angle": 2.99 },
  4656. { "time": 4, "angle": 4.63 },
  4657. { "time": 4.1333, "angle": 2.65 },
  4658. { "time": 4.4667, "angle": -1.57 },
  4659. { "time": 4.6333, "angle": 2.99 },
  4660. { "time": 5, "angle": 4.63 }
  4661. ],
  4662. "translate": [
  4663. { "time": 0, "x": -0.91, "y": -1.18 },
  4664. { "time": 0.4667, "x": 0, "y": 0 },
  4665. { "time": 1, "x": -0.91, "y": -1.18 },
  4666. { "time": 1.4667, "x": 0, "y": 0 },
  4667. { "time": 2, "x": -0.91, "y": -1.18 },
  4668. { "time": 2.4667, "x": 0, "y": 0 },
  4669. { "time": 3, "x": -0.91, "y": -1.18 },
  4670. { "time": 3.4667, "x": 0, "y": 0 },
  4671. { "time": 4, "x": -0.91, "y": -1.18 },
  4672. { "time": 4.4667, "x": 0, "y": 0 },
  4673. { "time": 5, "x": -0.91, "y": -1.18 }
  4674. ],
  4675. "scale": [
  4676. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4677. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4678. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4679. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4680. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4681. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4682. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4683. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4684. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4685. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4686. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4687. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4688. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4689. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4690. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4691. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4692. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4693. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4694. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4695. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4696. { "time": 5, "x": 1, "y": 1 }
  4697. ]
  4698. },
  4699. "bone11": {
  4700. "rotate": [
  4701. { "time": 0, "angle": 1.27 },
  4702. { "time": 0.1333, "angle": 0.4 },
  4703. { "time": 0.3, "angle": -0.48 },
  4704. { "time": 0.4667, "angle": -1.35 },
  4705. { "time": 0.6333, "angle": -0.48 },
  4706. { "time": 0.8333, "angle": 0.4 },
  4707. { "time": 1, "angle": 1.27 },
  4708. { "time": 1.1333, "angle": 0.4 },
  4709. { "time": 1.3, "angle": -0.48 },
  4710. { "time": 1.4667, "angle": -1.35 },
  4711. { "time": 1.6333, "angle": -0.48 },
  4712. { "time": 1.8333, "angle": 0.4 },
  4713. { "time": 2, "angle": 1.27 },
  4714. { "time": 2.1333, "angle": 0.4 },
  4715. { "time": 2.3, "angle": -0.48 },
  4716. { "time": 2.4667, "angle": -1.35 },
  4717. { "time": 2.6333, "angle": -0.48 },
  4718. { "time": 2.8333, "angle": 0.4 },
  4719. { "time": 3, "angle": 1.27 },
  4720. { "time": 3.1333, "angle": 0.4 },
  4721. { "time": 3.3, "angle": -0.48 },
  4722. { "time": 3.4667, "angle": -1.35 },
  4723. { "time": 3.6333, "angle": -0.48 },
  4724. { "time": 3.8333, "angle": 0.4 },
  4725. { "time": 4, "angle": 1.27 },
  4726. { "time": 4.1333, "angle": 0.4 },
  4727. { "time": 4.3, "angle": -0.48 },
  4728. { "time": 4.4667, "angle": -1.35 },
  4729. { "time": 4.6333, "angle": -0.48 },
  4730. { "time": 4.8333, "angle": 0.4 },
  4731. { "time": 5, "angle": 1.27 }
  4732. ],
  4733. "translate": [
  4734. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4735. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4736. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4737. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4738. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4739. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4740. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4741. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4742. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4743. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4744. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4745. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4746. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4747. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4748. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4749. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4750. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4751. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4752. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4753. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4754. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4755. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4756. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4757. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4758. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4759. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4760. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4761. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4762. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4763. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4764. { "time": 5, "x": 0, "y": 0 }
  4765. ],
  4766. "scale": [
  4767. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4768. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4769. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4770. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4771. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4772. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4773. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4774. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4775. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4776. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4777. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4778. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4779. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4780. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4781. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4782. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4783. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4784. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4785. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4786. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4787. { "time": 5, "x": 1, "y": 1 }
  4788. ]
  4789. },
  4790. "bone12": {
  4791. "rotate": [
  4792. { "time": 0, "angle": -9.86 },
  4793. { "time": 0.1333, "angle": -9 },
  4794. { "time": 0.3, "angle": -8.15 },
  4795. { "time": 0.4667, "angle": -7.3 },
  4796. { "time": 0.6333, "angle": -8.15 },
  4797. { "time": 0.8333, "angle": -9 },
  4798. { "time": 1, "angle": -9.86 },
  4799. { "time": 1.1333, "angle": -9 },
  4800. { "time": 1.3, "angle": -8.15 },
  4801. { "time": 1.4667, "angle": -7.3 },
  4802. { "time": 1.6333, "angle": -8.15 },
  4803. { "time": 1.8333, "angle": -9 },
  4804. { "time": 2, "angle": -9.86 },
  4805. { "time": 2.1333, "angle": -9 },
  4806. { "time": 2.3, "angle": -8.15 },
  4807. { "time": 2.4667, "angle": -7.3 },
  4808. { "time": 2.6333, "angle": -8.15 },
  4809. { "time": 2.8333, "angle": -9 },
  4810. { "time": 3, "angle": -9.86 },
  4811. { "time": 3.1333, "angle": -9 },
  4812. { "time": 3.3, "angle": -8.15 },
  4813. { "time": 3.4667, "angle": -7.3 },
  4814. { "time": 3.6333, "angle": -8.15 },
  4815. { "time": 3.8333, "angle": -9 },
  4816. { "time": 4, "angle": -9.86 },
  4817. { "time": 4.1333, "angle": -9 },
  4818. { "time": 4.3, "angle": -8.15 },
  4819. { "time": 4.4667, "angle": -7.3 },
  4820. { "time": 4.6333, "angle": -8.15 },
  4821. { "time": 4.8333, "angle": -9 },
  4822. { "time": 5, "angle": -9.86 }
  4823. ],
  4824. "translate": [
  4825. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4826. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4827. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4828. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4829. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4830. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4831. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4832. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4833. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4834. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4835. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4836. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4837. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4838. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4839. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4840. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4841. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4842. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4843. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4844. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4845. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4846. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4847. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4848. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4849. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4850. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4851. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4852. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4853. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4854. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4855. { "time": 5, "x": 0, "y": 0 }
  4856. ],
  4857. "scale": [
  4858. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4859. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4860. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4861. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4862. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4863. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4864. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4865. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4866. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4867. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4868. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4869. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4870. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4871. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4872. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4873. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4874. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4875. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4876. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4877. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4878. { "time": 5, "x": 1, "y": 1 }
  4879. ]
  4880. },
  4881. "bone13": {
  4882. "rotate": [
  4883. { "time": 0, "angle": 347.99 },
  4884. { "time": 0.4667, "angle": -6.54 },
  4885. { "time": 1, "angle": 347.99 },
  4886. { "time": 1.4667, "angle": -6.54 },
  4887. { "time": 2, "angle": 347.99 },
  4888. { "time": 2.4667, "angle": -6.54 },
  4889. { "time": 3, "angle": 347.99 },
  4890. { "time": 3.4667, "angle": -6.54 },
  4891. { "time": 4, "angle": 347.99 },
  4892. { "time": 4.4667, "angle": -6.54 },
  4893. { "time": 5, "angle": 347.99 }
  4894. ],
  4895. "translate": [
  4896. { "time": 0, "x": 1, "y": 5.5 },
  4897. { "time": 0.4667, "x": 0.76, "y": 1.03 },
  4898. { "time": 1, "x": 1, "y": 5.5 },
  4899. { "time": 1.4667, "x": 0.76, "y": 1.03 },
  4900. { "time": 2, "x": 1, "y": 5.5 },
  4901. { "time": 2.4667, "x": 0.76, "y": 1.03 },
  4902. { "time": 3, "x": 1, "y": 5.5 },
  4903. { "time": 3.4667, "x": 0.76, "y": 1.03 },
  4904. { "time": 4, "x": 1, "y": 5.5 },
  4905. { "time": 4.4667, "x": 0.76, "y": 1.03 },
  4906. { "time": 5, "x": 1, "y": 5.5 }
  4907. ],
  4908. "scale": [
  4909. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4910. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4911. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4912. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4913. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4914. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4915. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4916. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4917. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4918. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4919. { "time": 5, "x": 1, "y": 1 }
  4920. ]
  4921. },
  4922. "bone14": {
  4923. "rotate": [
  4924. { "time": 0, "angle": 29.36 },
  4925. { "time": 0.1333, "angle": 0.05 },
  4926. { "time": 0.3, "angle": 3.65 },
  4927. { "time": 0.4667, "angle": 0 },
  4928. { "time": 0.6333, "angle": 0.05 },
  4929. { "time": 0.8333, "angle": 7.3 },
  4930. { "time": 1, "angle": 29.36 },
  4931. { "time": 1.1333, "angle": 0.05 },
  4932. { "time": 1.3, "angle": 3.65 },
  4933. { "time": 1.4667, "angle": 0 },
  4934. { "time": 1.6333, "angle": 0.05 },
  4935. { "time": 1.8333, "angle": 7.3 },
  4936. { "time": 2, "angle": 29.36 },
  4937. { "time": 2.1333, "angle": 0.05 },
  4938. { "time": 2.3, "angle": 3.65 },
  4939. { "time": 2.4667, "angle": 0 },
  4940. { "time": 2.6333, "angle": 0.05 },
  4941. { "time": 2.8333, "angle": 7.3 },
  4942. { "time": 3, "angle": 29.36 },
  4943. { "time": 3.1333, "angle": 0.05 },
  4944. { "time": 3.3, "angle": 3.65 },
  4945. { "time": 3.4667, "angle": 0 },
  4946. { "time": 3.6333, "angle": 0.05 },
  4947. { "time": 3.8333, "angle": 7.3 },
  4948. { "time": 4, "angle": 29.36 },
  4949. { "time": 4.1333, "angle": 0.05 },
  4950. { "time": 4.3, "angle": 3.65 },
  4951. { "time": 4.4667, "angle": 0 },
  4952. { "time": 4.6333, "angle": 0.05 },
  4953. { "time": 4.8333, "angle": 7.3 },
  4954. { "time": 5, "angle": 29.36 }
  4955. ],
  4956. "translate": [
  4957. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4958. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4959. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4960. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4961. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4962. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4963. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4964. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4965. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4966. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4967. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4968. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4969. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4970. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4971. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4972. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4973. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4974. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4975. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4976. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4977. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4978. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4979. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4980. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4981. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4982. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4983. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4984. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4985. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4986. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4987. { "time": 5, "x": 0, "y": 0 }
  4988. ],
  4989. "scale": [
  4990. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4991. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4992. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4993. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4994. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4995. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4996. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4997. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4998. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4999. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5000. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5001. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5002. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5003. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  5004. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  5005. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5006. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5007. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  5008. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  5009. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  5010. { "time": 5, "x": 1, "y": 1 }
  5011. ]
  5012. },
  5013. "bone15": {
  5014. "rotate": [
  5015. { "time": 0, "angle": 0, "curve": "stepped" },
  5016. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  5017. { "time": 0.3, "angle": 0, "curve": "stepped" },
  5018. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  5019. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  5020. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5021. { "time": 1, "angle": 0, "curve": "stepped" },
  5022. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  5023. { "time": 1.3, "angle": 0, "curve": "stepped" },
  5024. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  5025. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  5026. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5027. { "time": 2, "angle": 0, "curve": "stepped" },
  5028. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  5029. { "time": 2.3, "angle": 0, "curve": "stepped" },
  5030. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  5031. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  5032. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  5033. { "time": 3, "angle": 0, "curve": "stepped" },
  5034. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  5035. { "time": 3.3, "angle": 0, "curve": "stepped" },
  5036. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  5037. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  5038. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  5039. { "time": 4, "angle": 0, "curve": "stepped" },
  5040. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  5041. { "time": 4.3, "angle": 0, "curve": "stepped" },
  5042. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  5043. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  5044. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  5045. { "time": 5, "angle": 0 }
  5046. ],
  5047. "translate": [
  5048. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5049. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5050. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  5051. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5052. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  5053. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5054. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5055. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5056. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5057. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  5058. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5059. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5060. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5061. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5062. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5063. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  5064. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5065. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5066. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5067. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5068. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  5069. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  5070. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  5071. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5072. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5073. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  5074. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  5075. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  5076. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  5077. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  5078. { "time": 5, "x": 0, "y": 0 }
  5079. ],
  5080. "scale": [
  5081. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5082. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5083. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  5084. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5085. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5086. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  5087. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5088. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5089. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5090. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5091. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5092. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5093. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5094. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  5095. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  5096. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5097. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5098. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  5099. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  5100. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  5101. { "time": 5, "x": 1, "y": 1 }
  5102. ]
  5103. },
  5104. "bone16": {
  5105. "rotate": [
  5106. { "time": 0, "angle": -42.11 },
  5107. { "time": 0.4667, "angle": -49.29 },
  5108. { "time": 1, "angle": -42.11 },
  5109. { "time": 1.4667, "angle": -49.29 },
  5110. { "time": 2, "angle": -42.11 },
  5111. { "time": 2.4667, "angle": -49.29 },
  5112. { "time": 3, "angle": -42.11 },
  5113. { "time": 3.4667, "angle": -49.29 },
  5114. { "time": 4, "angle": -42.11 },
  5115. { "time": 4.4667, "angle": -49.29 },
  5116. { "time": 5, "angle": -42.11 }
  5117. ],
  5118. "translate": [
  5119. { "time": 0, "x": 0.62, "y": -3.97, "curve": "stepped" },
  5120. { "time": 1, "x": 0.62, "y": -3.97, "curve": "stepped" },
  5121. { "time": 2, "x": 0.62, "y": -3.97, "curve": "stepped" },
  5122. { "time": 3, "x": 0.62, "y": -3.97, "curve": "stepped" },
  5123. { "time": 4, "x": 0.62, "y": -3.97, "curve": "stepped" },
  5124. { "time": 5, "x": 0.62, "y": -3.97 }
  5125. ],
  5126. "scale": [
  5127. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5128. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5129. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5130. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5131. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5132. { "time": 5, "x": 1, "y": 1 }
  5133. ]
  5134. },
  5135. "bone17": {
  5136. "rotate": [
  5137. { "time": 0, "angle": -44.22 },
  5138. { "time": 0.4667, "angle": -42.89 },
  5139. { "time": 1, "angle": -44.22 },
  5140. { "time": 1.4667, "angle": -42.89 },
  5141. { "time": 2, "angle": -44.22 },
  5142. { "time": 2.4667, "angle": -42.89 },
  5143. { "time": 3, "angle": -44.22 },
  5144. { "time": 3.4667, "angle": -42.89 },
  5145. { "time": 4, "angle": -44.22 },
  5146. { "time": 4.4667, "angle": -42.89 },
  5147. { "time": 5, "angle": -44.22 }
  5148. ],
  5149. "translate": [
  5150. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5151. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5152. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5153. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5154. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5155. { "time": 5, "x": 0, "y": 0 }
  5156. ],
  5157. "scale": [
  5158. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5159. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5160. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5161. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5162. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5163. { "time": 5, "x": 1, "y": 1 }
  5164. ]
  5165. },
  5166. "bone18": {
  5167. "rotate": [
  5168. { "time": 0, "angle": -18.78, "curve": "stepped" },
  5169. { "time": 1, "angle": -18.78, "curve": "stepped" },
  5170. { "time": 2, "angle": -18.78, "curve": "stepped" },
  5171. { "time": 3, "angle": -18.78, "curve": "stepped" },
  5172. { "time": 4, "angle": -18.78, "curve": "stepped" },
  5173. { "time": 5, "angle": -18.78 }
  5174. ],
  5175. "translate": [
  5176. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5177. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5178. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5179. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5180. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5181. { "time": 5, "x": 0, "y": 0 }
  5182. ],
  5183. "scale": [
  5184. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5185. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5186. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5187. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5188. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5189. { "time": 5, "x": 1, "y": 1 }
  5190. ]
  5191. },
  5192. "bone19": {
  5193. "rotate": [
  5194. {
  5195. "time": 0,
  5196. "angle": 323.94,
  5197. "curve": [ 0.25, 0, 0.75, 1 ]
  5198. },
  5199. {
  5200. "time": 0.4667,
  5201. "angle": -4.28,
  5202. "curve": [ 0.25, 0, 0.75, 1 ]
  5203. },
  5204. {
  5205. "time": 1,
  5206. "angle": 323.94,
  5207. "curve": [ 0.25, 0, 0.75, 1 ]
  5208. },
  5209. {
  5210. "time": 1.4667,
  5211. "angle": -4.28,
  5212. "curve": [ 0.25, 0, 0.75, 1 ]
  5213. },
  5214. {
  5215. "time": 2,
  5216. "angle": 323.94,
  5217. "curve": [ 0.25, 0, 0.75, 1 ]
  5218. },
  5219. {
  5220. "time": 2.4667,
  5221. "angle": -4.28,
  5222. "curve": [ 0.25, 0, 0.75, 1 ]
  5223. },
  5224. {
  5225. "time": 3,
  5226. "angle": 323.94,
  5227. "curve": [ 0.25, 0, 0.75, 1 ]
  5228. },
  5229. {
  5230. "time": 3.4667,
  5231. "angle": -4.28,
  5232. "curve": [ 0.25, 0, 0.75, 1 ]
  5233. },
  5234. {
  5235. "time": 4,
  5236. "angle": 323.94,
  5237. "curve": [ 0.25, 0, 0.75, 1 ]
  5238. },
  5239. {
  5240. "time": 4.4667,
  5241. "angle": -4.28,
  5242. "curve": [ 0.25, 0, 0.75, 1 ]
  5243. },
  5244. { "time": 5, "angle": 323.94 }
  5245. ],
  5246. "translate": [
  5247. {
  5248. "time": 0,
  5249. "x": 1.67,
  5250. "y": 5.57,
  5251. "curve": [ 0.25, 0, 0.75, 1 ]
  5252. },
  5253. {
  5254. "time": 0.4667,
  5255. "x": 0,
  5256. "y": 0,
  5257. "curve": [ 0.25, 0, 0.75, 1 ]
  5258. },
  5259. {
  5260. "time": 1,
  5261. "x": 1.67,
  5262. "y": 5.57,
  5263. "curve": [ 0.25, 0, 0.75, 1 ]
  5264. },
  5265. {
  5266. "time": 1.4667,
  5267. "x": 0,
  5268. "y": 0,
  5269. "curve": [ 0.25, 0, 0.75, 1 ]
  5270. },
  5271. {
  5272. "time": 2,
  5273. "x": 1.67,
  5274. "y": 5.57,
  5275. "curve": [ 0.25, 0, 0.75, 1 ]
  5276. },
  5277. {
  5278. "time": 2.4667,
  5279. "x": 0,
  5280. "y": 0,
  5281. "curve": [ 0.25, 0, 0.75, 1 ]
  5282. },
  5283. {
  5284. "time": 3,
  5285. "x": 1.67,
  5286. "y": 5.57,
  5287. "curve": [ 0.25, 0, 0.75, 1 ]
  5288. },
  5289. {
  5290. "time": 3.4667,
  5291. "x": 0,
  5292. "y": 0,
  5293. "curve": [ 0.25, 0, 0.75, 1 ]
  5294. },
  5295. {
  5296. "time": 4,
  5297. "x": 1.67,
  5298. "y": 5.57,
  5299. "curve": [ 0.25, 0, 0.75, 1 ]
  5300. },
  5301. {
  5302. "time": 4.4667,
  5303. "x": 0,
  5304. "y": 0,
  5305. "curve": [ 0.25, 0, 0.75, 1 ]
  5306. },
  5307. { "time": 5, "x": 1.67, "y": 5.57 }
  5308. ],
  5309. "scale": [
  5310. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5311. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5312. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5313. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  5314. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5315. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5316. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5317. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  5318. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5319. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  5320. { "time": 5, "x": 1, "y": 1 }
  5321. ]
  5322. },
  5323. "bone20": {
  5324. "rotate": [
  5325. { "time": 0, "angle": -18.15 },
  5326. { "time": 0.1333, "angle": -18.26 },
  5327. { "time": 0.3, "angle": -18.37 },
  5328. { "time": 0.4667, "angle": -18.48 },
  5329. { "time": 0.6333, "angle": -18.37 },
  5330. { "time": 0.8333, "angle": -18.26 },
  5331. { "time": 1, "angle": -18.15 },
  5332. { "time": 1.1333, "angle": -18.26 },
  5333. { "time": 1.3, "angle": -18.37 },
  5334. { "time": 1.4667, "angle": -18.48 },
  5335. { "time": 1.6333, "angle": -18.37 },
  5336. { "time": 1.8333, "angle": -18.26 },
  5337. { "time": 2, "angle": -18.15 },
  5338. { "time": 2.1333, "angle": -18.26 },
  5339. { "time": 2.3, "angle": -18.37 },
  5340. { "time": 2.4667, "angle": -18.48 },
  5341. { "time": 2.6333, "angle": -18.37 },
  5342. { "time": 2.8333, "angle": -18.26 },
  5343. { "time": 3, "angle": -18.15 },
  5344. { "time": 3.1333, "angle": -18.26 },
  5345. { "time": 3.3, "angle": -18.37 },
  5346. { "time": 3.4667, "angle": -18.48 },
  5347. { "time": 3.6333, "angle": -18.37 },
  5348. { "time": 3.8333, "angle": -18.26 },
  5349. { "time": 4, "angle": -18.15 },
  5350. { "time": 4.1333, "angle": -18.26 },
  5351. { "time": 4.3, "angle": -18.37 },
  5352. { "time": 4.4667, "angle": -18.48 },
  5353. { "time": 4.6333, "angle": -18.37 },
  5354. { "time": 4.8333, "angle": -18.26 },
  5355. { "time": 5, "angle": -18.15 }
  5356. ],
  5357. "translate": [
  5358. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5359. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5360. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  5361. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5362. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  5363. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5364. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5365. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5366. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5367. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  5368. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5369. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5370. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5371. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5372. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5373. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  5374. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5375. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5376. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5377. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5378. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  5379. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  5380. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  5381. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5382. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5383. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  5384. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  5385. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  5386. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  5387. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  5388. { "time": 5, "x": 0, "y": 0 }
  5389. ],
  5390. "scale": [
  5391. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5392. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5393. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  5394. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5395. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5396. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  5397. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5398. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5399. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5400. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5401. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5402. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5403. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5404. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  5405. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  5406. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5407. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5408. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  5409. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  5410. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  5411. { "time": 5, "x": 1, "y": 1 }
  5412. ]
  5413. },
  5414. "bone21": {
  5415. "rotate": [
  5416. { "time": 0, "angle": -6.48, "curve": "stepped" },
  5417. { "time": 0.1333, "angle": -6.48, "curve": "stepped" },
  5418. { "time": 0.3, "angle": -6.48, "curve": "stepped" },
  5419. { "time": 0.4667, "angle": -6.48, "curve": "stepped" },
  5420. { "time": 0.6333, "angle": -6.48, "curve": "stepped" },
  5421. { "time": 0.8333, "angle": -6.48, "curve": "stepped" },
  5422. { "time": 1, "angle": -6.48, "curve": "stepped" },
  5423. { "time": 1.1333, "angle": -6.48, "curve": "stepped" },
  5424. { "time": 1.3, "angle": -6.48, "curve": "stepped" },
  5425. { "time": 1.4667, "angle": -6.48, "curve": "stepped" },
  5426. { "time": 1.6333, "angle": -6.48, "curve": "stepped" },
  5427. { "time": 1.8333, "angle": -6.48, "curve": "stepped" },
  5428. { "time": 2, "angle": -6.48, "curve": "stepped" },
  5429. { "time": 2.1333, "angle": -6.48, "curve": "stepped" },
  5430. { "time": 2.3, "angle": -6.48, "curve": "stepped" },
  5431. { "time": 2.4667, "angle": -6.48, "curve": "stepped" },
  5432. { "time": 2.6333, "angle": -6.48, "curve": "stepped" },
  5433. { "time": 2.8333, "angle": -6.48, "curve": "stepped" },
  5434. { "time": 3, "angle": -6.48, "curve": "stepped" },
  5435. { "time": 3.1333, "angle": -6.48, "curve": "stepped" },
  5436. { "time": 3.3, "angle": -6.48, "curve": "stepped" },
  5437. { "time": 3.4667, "angle": -6.48, "curve": "stepped" },
  5438. { "time": 3.6333, "angle": -6.48, "curve": "stepped" },
  5439. { "time": 3.8333, "angle": -6.48, "curve": "stepped" },
  5440. { "time": 4, "angle": -6.48, "curve": "stepped" },
  5441. { "time": 4.1333, "angle": -6.48, "curve": "stepped" },
  5442. { "time": 4.3, "angle": -6.48, "curve": "stepped" },
  5443. { "time": 4.4667, "angle": -6.48, "curve": "stepped" },
  5444. { "time": 4.6333, "angle": -6.48, "curve": "stepped" },
  5445. { "time": 4.8333, "angle": -6.48, "curve": "stepped" },
  5446. { "time": 5, "angle": -6.48 }
  5447. ],
  5448. "translate": [
  5449. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5450. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5451. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  5452. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5453. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  5454. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5455. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5456. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5457. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5458. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  5459. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5460. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5461. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5462. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5463. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5464. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  5465. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5466. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5467. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5468. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5469. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  5470. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  5471. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  5472. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5473. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5474. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  5475. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  5476. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  5477. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  5478. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  5479. { "time": 5, "x": 0, "y": 0 }
  5480. ],
  5481. "scale": [
  5482. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5483. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5484. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  5485. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5486. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5487. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  5488. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5489. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5490. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5491. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5492. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5493. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5494. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5495. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  5496. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  5497. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5498. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5499. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  5500. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  5501. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  5502. { "time": 5, "x": 1, "y": 1 }
  5503. ]
  5504. },
  5505. "bone22": {
  5506. "rotate": [
  5507. { "time": 0, "angle": 9.27 },
  5508. { "time": 0.4667, "angle": 5.51 },
  5509. { "time": 1, "angle": 9.27 },
  5510. { "time": 1.4667, "angle": 5.51 },
  5511. { "time": 2, "angle": 9.27 },
  5512. { "time": 2.4667, "angle": 5.51 },
  5513. { "time": 3, "angle": 9.27 },
  5514. { "time": 3.4667, "angle": 5.51 },
  5515. { "time": 4, "angle": 9.27 },
  5516. { "time": 4.4667, "angle": 5.51 },
  5517. { "time": 5, "angle": 9.27 }
  5518. ],
  5519. "translate": [
  5520. { "time": 0, "x": -0.37, "y": 1.52 },
  5521. { "time": 0.1667, "x": -1.3, "y": 0.75 },
  5522. { "time": 0.4667, "x": -0.67, "y": -0.12 },
  5523. { "time": 0.6667, "x": -1.3, "y": 0.75 },
  5524. { "time": 1, "x": -0.37, "y": 1.52 },
  5525. { "time": 1.1667, "x": -1.3, "y": 0.75 },
  5526. { "time": 1.4667, "x": -0.67, "y": -0.12 },
  5527. { "time": 1.6667, "x": -1.3, "y": 0.75 },
  5528. { "time": 2, "x": -0.37, "y": 1.52 },
  5529. { "time": 2.1667, "x": -1.3, "y": 0.75 },
  5530. { "time": 2.4667, "x": -0.67, "y": -0.12 },
  5531. { "time": 2.6667, "x": -1.3, "y": 0.75 },
  5532. { "time": 3, "x": -0.37, "y": 1.52 },
  5533. { "time": 3.1667, "x": -1.3, "y": 0.75 },
  5534. { "time": 3.4667, "x": -0.67, "y": -0.12 },
  5535. { "time": 3.6667, "x": -1.3, "y": 0.75 },
  5536. { "time": 4, "x": -0.37, "y": 1.52 },
  5537. { "time": 4.1667, "x": -1.3, "y": 0.75 },
  5538. { "time": 4.4667, "x": -0.67, "y": -0.12 },
  5539. { "time": 4.6667, "x": -1.3, "y": 0.75 },
  5540. { "time": 5, "x": -0.37, "y": 1.52 }
  5541. ],
  5542. "scale": [
  5543. { "time": 0, "x": 1.05, "y": 1 },
  5544. { "time": 0.1667, "x": 1, "y": 1 },
  5545. { "time": 0.4667, "x": 1.05, "y": 1 },
  5546. { "time": 0.6667, "x": 1, "y": 1 },
  5547. { "time": 1, "x": 1.05, "y": 1 },
  5548. { "time": 1.1667, "x": 1, "y": 1 },
  5549. { "time": 1.4667, "x": 1.05, "y": 1 },
  5550. { "time": 1.6667, "x": 1, "y": 1 },
  5551. { "time": 2, "x": 1.05, "y": 1 },
  5552. { "time": 2.1667, "x": 1, "y": 1 },
  5553. { "time": 2.4667, "x": 1.05, "y": 1 },
  5554. { "time": 2.6667, "x": 1, "y": 1 },
  5555. { "time": 3, "x": 1.05, "y": 1 },
  5556. { "time": 3.1667, "x": 1, "y": 1 },
  5557. { "time": 3.4667, "x": 1.05, "y": 1 },
  5558. { "time": 3.6667, "x": 1, "y": 1 },
  5559. { "time": 4, "x": 1.05, "y": 1 },
  5560. { "time": 4.1667, "x": 1, "y": 1 },
  5561. { "time": 4.4667, "x": 1.05, "y": 1 },
  5562. { "time": 4.6667, "x": 1, "y": 1 },
  5563. { "time": 5, "x": 1.05, "y": 1 }
  5564. ]
  5565. },
  5566. "bone23": {
  5567. "rotate": [
  5568. { "time": 0, "angle": 0, "curve": "stepped" },
  5569. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  5570. { "time": 0.3, "angle": 0, "curve": "stepped" },
  5571. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  5572. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  5573. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5574. { "time": 1, "angle": 0, "curve": "stepped" },
  5575. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  5576. { "time": 1.3, "angle": 0, "curve": "stepped" },
  5577. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  5578. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  5579. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5580. { "time": 2, "angle": 0, "curve": "stepped" },
  5581. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  5582. { "time": 2.3, "angle": 0, "curve": "stepped" },
  5583. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  5584. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  5585. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  5586. { "time": 3, "angle": 0, "curve": "stepped" },
  5587. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  5588. { "time": 3.3, "angle": 0, "curve": "stepped" },
  5589. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  5590. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  5591. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  5592. { "time": 4, "angle": 0, "curve": "stepped" },
  5593. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  5594. { "time": 4.3, "angle": 0, "curve": "stepped" },
  5595. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  5596. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  5597. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  5598. { "time": 5, "angle": 0 }
  5599. ],
  5600. "translate": [
  5601. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5602. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5603. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  5604. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5605. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  5606. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5607. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5608. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5609. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5610. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  5611. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5612. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5613. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5614. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5615. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5616. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  5617. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5618. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5619. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5620. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5621. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  5622. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  5623. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  5624. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5625. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5626. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  5627. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  5628. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  5629. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  5630. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  5631. { "time": 5, "x": 0, "y": 0 }
  5632. ],
  5633. "scale": [
  5634. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5635. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5636. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  5637. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5638. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5639. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  5640. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5641. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5642. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5643. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5644. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5645. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5646. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5647. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  5648. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  5649. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5650. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5651. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  5652. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  5653. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  5654. { "time": 5, "x": 1, "y": 1 }
  5655. ]
  5656. },
  5657. "bone24": {
  5658. "rotate": [
  5659. { "time": 0, "angle": 58.06, "curve": "stepped" },
  5660. { "time": 1, "angle": 58.06, "curve": "stepped" },
  5661. { "time": 2, "angle": 58.06, "curve": "stepped" },
  5662. { "time": 3, "angle": 58.06, "curve": "stepped" },
  5663. { "time": 4, "angle": 58.06, "curve": "stepped" },
  5664. { "time": 5, "angle": 58.06 }
  5665. ],
  5666. "translate": [
  5667. { "time": 0, "x": -12.17, "y": 28.11, "curve": "stepped" },
  5668. { "time": 1, "x": -12.17, "y": 28.11, "curve": "stepped" },
  5669. { "time": 2, "x": -12.17, "y": 28.11, "curve": "stepped" },
  5670. { "time": 3, "x": -12.17, "y": 28.11, "curve": "stepped" },
  5671. { "time": 4, "x": -12.17, "y": 28.11, "curve": "stepped" },
  5672. { "time": 5, "x": -12.17, "y": 28.11 }
  5673. ],
  5674. "scale": [
  5675. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5676. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5677. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5678. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5679. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5680. { "time": 5, "x": 1, "y": 1 }
  5681. ]
  5682. },
  5683. "bone25": {
  5684. "rotate": [
  5685. { "time": 0, "angle": 0, "curve": "stepped" },
  5686. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  5687. { "time": 0.3, "angle": 0, "curve": "stepped" },
  5688. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  5689. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  5690. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5691. { "time": 1, "angle": 0, "curve": "stepped" },
  5692. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  5693. { "time": 1.3, "angle": 0, "curve": "stepped" },
  5694. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  5695. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  5696. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5697. { "time": 2, "angle": 0, "curve": "stepped" },
  5698. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  5699. { "time": 2.3, "angle": 0, "curve": "stepped" },
  5700. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  5701. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  5702. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  5703. { "time": 3, "angle": 0, "curve": "stepped" },
  5704. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  5705. { "time": 3.3, "angle": 0, "curve": "stepped" },
  5706. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  5707. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  5708. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  5709. { "time": 4, "angle": 0, "curve": "stepped" },
  5710. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  5711. { "time": 4.3, "angle": 0, "curve": "stepped" },
  5712. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  5713. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  5714. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  5715. { "time": 5, "angle": 0 }
  5716. ],
  5717. "translate": [
  5718. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5719. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5720. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  5721. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5722. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  5723. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5724. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5725. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5726. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5727. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  5728. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5729. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5730. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5731. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5732. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5733. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  5734. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5735. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5736. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5737. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5738. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  5739. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  5740. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  5741. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5742. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5743. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  5744. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  5745. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  5746. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  5747. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  5748. { "time": 5, "x": 0, "y": 0 }
  5749. ],
  5750. "scale": [
  5751. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5752. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5753. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  5754. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5755. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5756. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  5757. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5758. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5759. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5760. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5761. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5762. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5763. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5764. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  5765. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  5766. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5767. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5768. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  5769. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  5770. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  5771. { "time": 5, "x": 1, "y": 1 }
  5772. ]
  5773. },
  5774. "bone26": {
  5775. "rotate": [
  5776. {
  5777. "time": 0,
  5778. "angle": 0,
  5779. "curve": [ 0.25, 0, 0.75, 1 ]
  5780. },
  5781. {
  5782. "time": 0.1333,
  5783. "angle": -1.01,
  5784. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5785. },
  5786. {
  5787. "time": 0.3,
  5788. "angle": -2.55,
  5789. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5790. },
  5791. {
  5792. "time": 0.4667,
  5793. "angle": -3.57,
  5794. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5795. },
  5796. {
  5797. "time": 0.6333,
  5798. "angle": -2.56,
  5799. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5800. },
  5801. {
  5802. "time": 0.8333,
  5803. "angle": -1.02,
  5804. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5805. },
  5806. {
  5807. "time": 1,
  5808. "angle": 0,
  5809. "curve": [ 0.25, 0, 0.75, 1 ]
  5810. },
  5811. {
  5812. "time": 1.1333,
  5813. "angle": -1.01,
  5814. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5815. },
  5816. {
  5817. "time": 1.3,
  5818. "angle": -2.55,
  5819. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5820. },
  5821. {
  5822. "time": 1.4667,
  5823. "angle": -3.57,
  5824. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5825. },
  5826. {
  5827. "time": 1.6333,
  5828. "angle": -2.56,
  5829. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5830. },
  5831. {
  5832. "time": 1.8333,
  5833. "angle": -1.02,
  5834. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5835. },
  5836. {
  5837. "time": 2,
  5838. "angle": 0,
  5839. "curve": [ 0.25, 0, 0.75, 1 ]
  5840. },
  5841. {
  5842. "time": 2.1333,
  5843. "angle": -1.01,
  5844. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5845. },
  5846. {
  5847. "time": 2.3,
  5848. "angle": -2.55,
  5849. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5850. },
  5851. {
  5852. "time": 2.4667,
  5853. "angle": -3.57,
  5854. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5855. },
  5856. {
  5857. "time": 2.6333,
  5858. "angle": -2.56,
  5859. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5860. },
  5861. {
  5862. "time": 2.8333,
  5863. "angle": -1.02,
  5864. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5865. },
  5866. {
  5867. "time": 3,
  5868. "angle": 0,
  5869. "curve": [ 0.25, 0, 0.75, 1 ]
  5870. },
  5871. {
  5872. "time": 3.1333,
  5873. "angle": -1.01,
  5874. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5875. },
  5876. {
  5877. "time": 3.3,
  5878. "angle": -2.55,
  5879. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5880. },
  5881. {
  5882. "time": 3.4667,
  5883. "angle": -3.57,
  5884. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5885. },
  5886. {
  5887. "time": 3.6333,
  5888. "angle": -2.56,
  5889. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5890. },
  5891. {
  5892. "time": 3.8333,
  5893. "angle": -1.02,
  5894. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5895. },
  5896. {
  5897. "time": 4,
  5898. "angle": 0,
  5899. "curve": [ 0.25, 0, 0.75, 1 ]
  5900. },
  5901. {
  5902. "time": 4.1333,
  5903. "angle": -1.01,
  5904. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5905. },
  5906. {
  5907. "time": 4.3,
  5908. "angle": -2.55,
  5909. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5910. },
  5911. {
  5912. "time": 4.4667,
  5913. "angle": -3.57,
  5914. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5915. },
  5916. {
  5917. "time": 4.6333,
  5918. "angle": -2.56,
  5919. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5920. },
  5921. {
  5922. "time": 4.8333,
  5923. "angle": -1.02,
  5924. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5925. },
  5926. { "time": 5, "angle": 0 }
  5927. ],
  5928. "translate": [
  5929. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5930. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5931. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  5932. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5933. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  5934. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5935. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5936. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5937. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5938. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  5939. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5940. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5941. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5942. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5943. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5944. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  5945. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5946. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5947. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5948. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5949. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  5950. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  5951. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  5952. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5953. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5954. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  5955. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  5956. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  5957. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  5958. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  5959. { "time": 5, "x": 0, "y": 0 }
  5960. ],
  5961. "scale": [
  5962. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5963. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5964. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  5965. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5966. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5967. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  5968. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5969. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5970. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5971. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5972. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5973. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5974. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5975. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  5976. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  5977. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5978. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5979. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  5980. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  5981. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  5982. { "time": 5, "x": 1, "y": 1 }
  5983. ]
  5984. },
  5985. "bone27": {
  5986. "rotate": [
  5987. {
  5988. "time": 0,
  5989. "angle": 0,
  5990. "curve": [ 0.25, 0, 0.75, 1 ]
  5991. },
  5992. {
  5993. "time": 0.1333,
  5994. "angle": -2.19,
  5995. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5996. },
  5997. {
  5998. "time": 0.3,
  5999. "angle": -5.52,
  6000. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  6001. },
  6002. {
  6003. "time": 0.4667,
  6004. "angle": -7.71,
  6005. "curve": [ 0.265, 0, 0.618, 0.43 ]
  6006. },
  6007. {
  6008. "time": 0.6333,
  6009. "angle": -5.52,
  6010. "curve": [ 0.382, 0.57, 0.735, 1 ]
  6011. },
  6012. {
  6013. "time": 0.8333,
  6014. "angle": -2.2,
  6015. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  6016. },
  6017. {
  6018. "time": 1,
  6019. "angle": 0,
  6020. "curve": [ 0.25, 0, 0.75, 1 ]
  6021. },
  6022. {
  6023. "time": 1.1333,
  6024. "angle": -2.19,
  6025. "curve": [ 0.382, 0.57, 0.735, 1 ]
  6026. },
  6027. {
  6028. "time": 1.3,
  6029. "angle": -5.52,
  6030. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  6031. },
  6032. {
  6033. "time": 1.4667,
  6034. "angle": -7.71,
  6035. "curve": [ 0.265, 0, 0.618, 0.43 ]
  6036. },
  6037. {
  6038. "time": 1.6333,
  6039. "angle": -5.52,
  6040. "curve": [ 0.382, 0.57, 0.735, 1 ]
  6041. },
  6042. {
  6043. "time": 1.8333,
  6044. "angle": -2.2,
  6045. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  6046. },
  6047. {
  6048. "time": 2,
  6049. "angle": 0,
  6050. "curve": [ 0.25, 0, 0.75, 1 ]
  6051. },
  6052. {
  6053. "time": 2.1333,
  6054. "angle": -2.19,
  6055. "curve": [ 0.382, 0.57, 0.735, 1 ]
  6056. },
  6057. {
  6058. "time": 2.3,
  6059. "angle": -5.52,
  6060. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  6061. },
  6062. {
  6063. "time": 2.4667,
  6064. "angle": -7.71,
  6065. "curve": [ 0.265, 0, 0.618, 0.43 ]
  6066. },
  6067. {
  6068. "time": 2.6333,
  6069. "angle": -5.52,
  6070. "curve": [ 0.382, 0.57, 0.735, 1 ]
  6071. },
  6072. {
  6073. "time": 2.8333,
  6074. "angle": -2.2,
  6075. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  6076. },
  6077. {
  6078. "time": 3,
  6079. "angle": 0,
  6080. "curve": [ 0.25, 0, 0.75, 1 ]
  6081. },
  6082. {
  6083. "time": 3.1333,
  6084. "angle": -2.19,
  6085. "curve": [ 0.382, 0.57, 0.735, 1 ]
  6086. },
  6087. {
  6088. "time": 3.3,
  6089. "angle": -5.52,
  6090. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  6091. },
  6092. {
  6093. "time": 3.4667,
  6094. "angle": -7.71,
  6095. "curve": [ 0.265, 0, 0.618, 0.43 ]
  6096. },
  6097. {
  6098. "time": 3.6333,
  6099. "angle": -5.52,
  6100. "curve": [ 0.382, 0.57, 0.735, 1 ]
  6101. },
  6102. {
  6103. "time": 3.8333,
  6104. "angle": -2.2,
  6105. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  6106. },
  6107. {
  6108. "time": 4,
  6109. "angle": 0,
  6110. "curve": [ 0.25, 0, 0.75, 1 ]
  6111. },
  6112. {
  6113. "time": 4.1333,
  6114. "angle": -2.19,
  6115. "curve": [ 0.382, 0.57, 0.735, 1 ]
  6116. },
  6117. {
  6118. "time": 4.3,
  6119. "angle": -5.52,
  6120. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  6121. },
  6122. {
  6123. "time": 4.4667,
  6124. "angle": -7.71,
  6125. "curve": [ 0.265, 0, 0.618, 0.43 ]
  6126. },
  6127. {
  6128. "time": 4.6333,
  6129. "angle": -5.52,
  6130. "curve": [ 0.382, 0.57, 0.735, 1 ]
  6131. },
  6132. {
  6133. "time": 4.8333,
  6134. "angle": -2.2,
  6135. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  6136. },
  6137. { "time": 5, "angle": 0 }
  6138. ],
  6139. "translate": [
  6140. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6141. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6142. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6143. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6144. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6145. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6146. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6147. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6148. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6149. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6150. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6151. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6152. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6153. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6154. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6155. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6156. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6157. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6158. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6159. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6160. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6161. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6162. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6163. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6164. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6165. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6166. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6167. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6168. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6169. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6170. { "time": 5, "x": 0, "y": 0 }
  6171. ],
  6172. "scale": [
  6173. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6174. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6175. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6176. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6177. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6178. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6179. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6180. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6181. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6182. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6183. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6184. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6185. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6186. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6187. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6188. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6189. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6190. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6191. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6192. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6193. { "time": 5, "x": 1, "y": 1 }
  6194. ]
  6195. },
  6196. "bone28": {
  6197. "rotate": [
  6198. { "time": 0, "angle": 0 },
  6199. { "time": 0.1333, "angle": -3.68 },
  6200. { "time": 0.3, "angle": -7.36 },
  6201. { "time": 0.4667, "angle": -11.04 },
  6202. { "time": 0.6333, "angle": -7.36 },
  6203. { "time": 0.8333, "angle": -3.68 },
  6204. { "time": 1, "angle": 0 },
  6205. { "time": 1.1333, "angle": -3.68 },
  6206. { "time": 1.3, "angle": -7.36 },
  6207. { "time": 1.4667, "angle": -11.04 },
  6208. { "time": 1.6333, "angle": -7.36 },
  6209. { "time": 1.8333, "angle": -3.68 },
  6210. { "time": 2, "angle": 0 },
  6211. { "time": 2.1333, "angle": -3.68 },
  6212. { "time": 2.3, "angle": -7.36 },
  6213. { "time": 2.4667, "angle": -11.04 },
  6214. { "time": 2.6333, "angle": -7.36 },
  6215. { "time": 2.8333, "angle": -3.68 },
  6216. { "time": 3, "angle": 0 },
  6217. { "time": 3.1333, "angle": -3.68 },
  6218. { "time": 3.3, "angle": -7.36 },
  6219. { "time": 3.4667, "angle": -11.04 },
  6220. { "time": 3.6333, "angle": -7.36 },
  6221. { "time": 3.8333, "angle": -3.68 },
  6222. { "time": 4, "angle": 0 },
  6223. { "time": 4.1333, "angle": -3.68 },
  6224. { "time": 4.3, "angle": -7.36 },
  6225. { "time": 4.4667, "angle": -11.04 },
  6226. { "time": 4.6333, "angle": -7.36 },
  6227. { "time": 4.8333, "angle": -3.68 },
  6228. { "time": 5, "angle": 0 }
  6229. ],
  6230. "translate": [
  6231. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6232. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6233. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6234. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6235. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6236. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6237. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6238. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6239. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6240. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6241. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6242. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6243. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6244. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6245. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6246. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6247. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6248. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6249. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6250. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6251. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6252. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6253. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6254. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6255. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6256. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6257. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6258. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6259. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6260. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6261. { "time": 5, "x": 0, "y": 0 }
  6262. ],
  6263. "scale": [
  6264. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6265. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6266. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6267. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6268. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6269. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6270. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6271. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6272. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6273. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6274. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6275. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6276. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6277. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6278. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6279. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6280. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6281. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6282. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6283. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6284. { "time": 5, "x": 1, "y": 1 }
  6285. ]
  6286. },
  6287. "bone29": {
  6288. "rotate": [
  6289. { "time": 0, "angle": 0, "curve": "stepped" },
  6290. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  6291. { "time": 0.3, "angle": 0, "curve": "stepped" },
  6292. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  6293. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  6294. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6295. { "time": 1, "angle": 0, "curve": "stepped" },
  6296. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  6297. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6298. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  6299. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  6300. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6301. { "time": 2, "angle": 0, "curve": "stepped" },
  6302. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  6303. { "time": 2.3, "angle": 0, "curve": "stepped" },
  6304. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  6305. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  6306. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  6307. { "time": 3, "angle": 0, "curve": "stepped" },
  6308. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  6309. { "time": 3.3, "angle": 0, "curve": "stepped" },
  6310. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  6311. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  6312. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  6313. { "time": 4, "angle": 0, "curve": "stepped" },
  6314. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  6315. { "time": 4.3, "angle": 0, "curve": "stepped" },
  6316. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  6317. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  6318. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  6319. { "time": 5, "angle": 0 }
  6320. ],
  6321. "translate": [
  6322. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6323. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6324. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6325. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6326. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6327. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6328. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6329. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6330. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6331. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6332. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6333. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6334. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6335. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6336. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6337. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6338. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6339. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6340. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6341. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6342. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6343. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6344. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6345. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6346. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6347. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6348. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6349. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6350. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6351. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6352. { "time": 5, "x": 0, "y": 0 }
  6353. ],
  6354. "scale": [
  6355. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6356. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6357. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6358. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6359. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6360. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6361. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6362. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6363. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6364. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6365. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6366. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6367. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6368. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6369. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6370. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6371. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6372. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6373. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6374. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6375. { "time": 5, "x": 1, "y": 1 }
  6376. ]
  6377. },
  6378. "bone30": {
  6379. "rotate": [
  6380. { "time": 0, "angle": 0 },
  6381. { "time": 0.1333, "angle": -2.35 },
  6382. { "time": 0.3, "angle": -4.7 },
  6383. { "time": 0.4667, "angle": -7.04 },
  6384. { "time": 0.6333, "angle": -4.7 },
  6385. { "time": 0.8333, "angle": -2.35 },
  6386. { "time": 1, "angle": 0 },
  6387. { "time": 1.1333, "angle": -2.35 },
  6388. { "time": 1.3, "angle": -4.7 },
  6389. { "time": 1.4667, "angle": -7.04 },
  6390. { "time": 1.6333, "angle": -4.7 },
  6391. { "time": 1.8333, "angle": -2.35 },
  6392. { "time": 2, "angle": 0 },
  6393. { "time": 2.1333, "angle": -2.35 },
  6394. { "time": 2.3, "angle": -4.7 },
  6395. { "time": 2.4667, "angle": -7.04 },
  6396. { "time": 2.6333, "angle": -4.7 },
  6397. { "time": 2.8333, "angle": -2.35 },
  6398. { "time": 3, "angle": 0 },
  6399. { "time": 3.1333, "angle": -2.35 },
  6400. { "time": 3.3, "angle": -4.7 },
  6401. { "time": 3.4667, "angle": -7.04 },
  6402. { "time": 3.6333, "angle": -4.7 },
  6403. { "time": 3.8333, "angle": -2.35 },
  6404. { "time": 4, "angle": 0 },
  6405. { "time": 4.1333, "angle": -2.35 },
  6406. { "time": 4.3, "angle": -4.7 },
  6407. { "time": 4.4667, "angle": -7.04 },
  6408. { "time": 4.6333, "angle": -4.7 },
  6409. { "time": 4.8333, "angle": -2.35 },
  6410. { "time": 5, "angle": 0 }
  6411. ],
  6412. "translate": [
  6413. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6414. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6415. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6416. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6417. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6418. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6419. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6420. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6421. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6422. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6423. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6424. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6425. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6426. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6427. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6428. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6429. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6430. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6431. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6432. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6433. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6434. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6435. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6436. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6437. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6438. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6439. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6440. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6441. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6442. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6443. { "time": 5, "x": 0, "y": 0 }
  6444. ],
  6445. "scale": [
  6446. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6447. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6448. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6449. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6450. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6451. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6452. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6453. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6454. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6455. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6456. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6457. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6458. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6459. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6460. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6461. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6462. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6463. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6464. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6465. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6466. { "time": 5, "x": 1, "y": 1 }
  6467. ]
  6468. },
  6469. "bone31": {
  6470. "rotate": [
  6471. { "time": 0, "angle": 18.14 },
  6472. { "time": 0.1333, "angle": 16.6 },
  6473. { "time": 0.3, "angle": 15.05 },
  6474. { "time": 0.4667, "angle": 13.5 },
  6475. { "time": 0.6333, "angle": 15.05 },
  6476. { "time": 0.8333, "angle": 16.6 },
  6477. { "time": 1, "angle": 18.14 },
  6478. { "time": 1.1333, "angle": 16.6 },
  6479. { "time": 1.3, "angle": 15.05 },
  6480. { "time": 1.4667, "angle": 13.5 },
  6481. { "time": 1.6333, "angle": 15.05 },
  6482. { "time": 1.8333, "angle": 16.6 },
  6483. { "time": 2, "angle": 18.14 },
  6484. { "time": 2.1333, "angle": 16.6 },
  6485. { "time": 2.3, "angle": 15.05 },
  6486. { "time": 2.4667, "angle": 13.5 },
  6487. { "time": 2.6333, "angle": 15.05 },
  6488. { "time": 2.8333, "angle": 16.6 },
  6489. { "time": 3, "angle": 18.14 },
  6490. { "time": 3.1333, "angle": 16.6 },
  6491. { "time": 3.3, "angle": 15.05 },
  6492. { "time": 3.4667, "angle": 13.5 },
  6493. { "time": 3.6333, "angle": 15.05 },
  6494. { "time": 3.8333, "angle": 16.6 },
  6495. { "time": 4, "angle": 18.14 },
  6496. { "time": 4.1333, "angle": 16.6 },
  6497. { "time": 4.3, "angle": 15.05 },
  6498. { "time": 4.4667, "angle": 13.5 },
  6499. { "time": 4.6333, "angle": 15.05 },
  6500. { "time": 4.8333, "angle": 16.6 },
  6501. { "time": 5, "angle": 18.14 }
  6502. ],
  6503. "translate": [
  6504. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6505. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6506. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6507. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6508. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6509. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6510. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6511. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6512. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6513. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6514. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6515. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6516. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6517. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6518. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6519. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6520. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6521. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6522. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6523. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6524. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6525. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6526. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6527. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6528. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6529. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6530. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6531. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6532. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6533. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6534. { "time": 5, "x": 0, "y": 0 }
  6535. ],
  6536. "scale": [
  6537. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6538. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6539. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6540. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6541. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6542. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6543. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6544. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6545. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6546. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6547. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6548. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6549. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6550. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6551. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6552. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6553. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6554. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6555. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6556. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6557. { "time": 5, "x": 1, "y": 1 }
  6558. ]
  6559. },
  6560. "bone32": {
  6561. "rotate": [
  6562. { "time": 0, "angle": 18.75 },
  6563. { "time": 0.1333, "angle": 12.5 },
  6564. { "time": 0.3, "angle": 6.25 },
  6565. { "time": 0.4667, "angle": 0 },
  6566. { "time": 0.6333, "angle": 6.25 },
  6567. { "time": 0.8333, "angle": 12.5 },
  6568. { "time": 1, "angle": 18.75 },
  6569. { "time": 1.1333, "angle": 12.5 },
  6570. { "time": 1.3, "angle": 6.25 },
  6571. { "time": 1.4667, "angle": 0 },
  6572. { "time": 1.6333, "angle": 6.25 },
  6573. { "time": 1.8333, "angle": 12.5 },
  6574. { "time": 2, "angle": 18.75 },
  6575. { "time": 2.1333, "angle": 12.5 },
  6576. { "time": 2.3, "angle": 6.25 },
  6577. { "time": 2.4667, "angle": 0 },
  6578. { "time": 2.6333, "angle": 6.25 },
  6579. { "time": 2.8333, "angle": 12.5 },
  6580. { "time": 3, "angle": 18.75 },
  6581. { "time": 3.1333, "angle": 12.5 },
  6582. { "time": 3.3, "angle": 6.25 },
  6583. { "time": 3.4667, "angle": 0 },
  6584. { "time": 3.6333, "angle": 6.25 },
  6585. { "time": 3.8333, "angle": 12.5 },
  6586. { "time": 4, "angle": 18.75 },
  6587. { "time": 4.1333, "angle": 12.5 },
  6588. { "time": 4.3, "angle": 6.25 },
  6589. { "time": 4.4667, "angle": 0 },
  6590. { "time": 4.6333, "angle": 6.25 },
  6591. { "time": 4.8333, "angle": 12.5 },
  6592. { "time": 5, "angle": 18.75 }
  6593. ],
  6594. "translate": [
  6595. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6596. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6597. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6598. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6599. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6600. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6601. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6602. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6603. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6604. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6605. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6606. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6607. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6608. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6609. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6610. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6611. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6612. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6613. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6614. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6615. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6616. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6617. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6618. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6619. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6620. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6621. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6622. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6623. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6624. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6625. { "time": 5, "x": 0, "y": 0 }
  6626. ],
  6627. "scale": [
  6628. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6629. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6630. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6631. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6632. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6633. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6634. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6635. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6636. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6637. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6638. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6639. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6640. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6641. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6642. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6643. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6644. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6645. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6646. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6647. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6648. { "time": 5, "x": 1, "y": 1 }
  6649. ]
  6650. },
  6651. "bone33": {
  6652. "rotate": [
  6653. { "time": 0, "angle": 0, "curve": "stepped" },
  6654. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  6655. { "time": 0.3, "angle": 0, "curve": "stepped" },
  6656. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  6657. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  6658. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6659. { "time": 1, "angle": 0, "curve": "stepped" },
  6660. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  6661. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6662. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  6663. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  6664. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6665. { "time": 2, "angle": 0, "curve": "stepped" },
  6666. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  6667. { "time": 2.3, "angle": 0, "curve": "stepped" },
  6668. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  6669. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  6670. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  6671. { "time": 3, "angle": 0, "curve": "stepped" },
  6672. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  6673. { "time": 3.3, "angle": 0, "curve": "stepped" },
  6674. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  6675. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  6676. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  6677. { "time": 4, "angle": 0, "curve": "stepped" },
  6678. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  6679. { "time": 4.3, "angle": 0, "curve": "stepped" },
  6680. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  6681. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  6682. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  6683. { "time": 5, "angle": 0 }
  6684. ],
  6685. "translate": [
  6686. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6687. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6688. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6689. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6690. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6691. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6692. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6693. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6694. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6695. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6696. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6697. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6698. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6699. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6700. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6701. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6702. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6703. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6704. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6705. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6706. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6707. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6708. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6709. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6710. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6711. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6712. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6713. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6714. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6715. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6716. { "time": 5, "x": 0, "y": 0 }
  6717. ],
  6718. "scale": [
  6719. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6720. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6721. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6722. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6723. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6724. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6725. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6726. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6727. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6728. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6729. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6730. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6731. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6732. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6733. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6734. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6735. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6736. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6737. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6738. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6739. { "time": 5, "x": 1, "y": 1 }
  6740. ]
  6741. },
  6742. "bone34": {
  6743. "rotate": [
  6744. { "time": 0, "angle": 0 },
  6745. { "time": 0.1333, "angle": 2.24 },
  6746. { "time": 0.3, "angle": 4.48 },
  6747. { "time": 0.4667, "angle": 6.72 },
  6748. { "time": 0.6333, "angle": 4.48 },
  6749. { "time": 0.8333, "angle": 2.24 },
  6750. { "time": 1, "angle": 0 },
  6751. { "time": 1.1333, "angle": 2.24 },
  6752. { "time": 1.3, "angle": 4.48 },
  6753. { "time": 1.4667, "angle": 6.72 },
  6754. { "time": 1.6333, "angle": 4.48 },
  6755. { "time": 1.8333, "angle": 2.24 },
  6756. { "time": 2, "angle": 0 },
  6757. { "time": 2.1333, "angle": 2.24 },
  6758. { "time": 2.3, "angle": 4.48 },
  6759. { "time": 2.4667, "angle": 6.72 },
  6760. { "time": 2.6333, "angle": 4.48 },
  6761. { "time": 2.8333, "angle": 2.24 },
  6762. { "time": 3, "angle": 0 },
  6763. { "time": 3.1333, "angle": 2.24 },
  6764. { "time": 3.3, "angle": 4.48 },
  6765. { "time": 3.4667, "angle": 6.72 },
  6766. { "time": 3.6333, "angle": 4.48 },
  6767. { "time": 3.8333, "angle": 2.24 },
  6768. { "time": 4, "angle": 0 },
  6769. { "time": 4.1333, "angle": 2.24 },
  6770. { "time": 4.3, "angle": 4.48 },
  6771. { "time": 4.4667, "angle": 6.72 },
  6772. { "time": 4.6333, "angle": 4.48 },
  6773. { "time": 4.8333, "angle": 2.24 },
  6774. { "time": 5, "angle": 0 }
  6775. ],
  6776. "translate": [
  6777. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6778. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6779. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6780. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6781. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6782. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6783. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6784. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6785. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6786. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6787. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6788. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6789. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6790. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6791. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6792. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6793. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6794. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6795. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6796. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6797. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6798. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6799. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6800. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6801. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6802. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6803. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6804. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6805. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6806. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6807. { "time": 5, "x": 0, "y": 0 }
  6808. ],
  6809. "scale": [
  6810. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6811. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6812. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6813. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6814. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6815. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6816. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6817. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6818. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6819. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6820. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6821. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6822. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6823. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6824. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6825. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6826. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6827. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6828. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6829. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6830. { "time": 5, "x": 1, "y": 1 }
  6831. ]
  6832. },
  6833. "bone35": {
  6834. "rotate": [
  6835. { "time": 0, "angle": 0 },
  6836. { "time": 0.1333, "angle": 1.29 },
  6837. { "time": 0.3, "angle": 2.58 },
  6838. { "time": 0.4667, "angle": 3.87 },
  6839. { "time": 0.6333, "angle": 2.58 },
  6840. { "time": 0.8333, "angle": 1.29 },
  6841. { "time": 1, "angle": 0 },
  6842. { "time": 1.1333, "angle": 1.29 },
  6843. { "time": 1.3, "angle": 2.58 },
  6844. { "time": 1.4667, "angle": 3.87 },
  6845. { "time": 1.6333, "angle": 2.58 },
  6846. { "time": 1.8333, "angle": 1.29 },
  6847. { "time": 2, "angle": 0 },
  6848. { "time": 2.1333, "angle": 1.29 },
  6849. { "time": 2.3, "angle": 2.58 },
  6850. { "time": 2.4667, "angle": 3.87 },
  6851. { "time": 2.6333, "angle": 2.58 },
  6852. { "time": 2.8333, "angle": 1.29 },
  6853. { "time": 3, "angle": 0 },
  6854. { "time": 3.1333, "angle": 1.29 },
  6855. { "time": 3.3, "angle": 2.58 },
  6856. { "time": 3.4667, "angle": 3.87 },
  6857. { "time": 3.6333, "angle": 2.58 },
  6858. { "time": 3.8333, "angle": 1.29 },
  6859. { "time": 4, "angle": 0 },
  6860. { "time": 4.1333, "angle": 1.29 },
  6861. { "time": 4.3, "angle": 2.58 },
  6862. { "time": 4.4667, "angle": 3.87 },
  6863. { "time": 4.6333, "angle": 2.58 },
  6864. { "time": 4.8333, "angle": 1.29 },
  6865. { "time": 5, "angle": 0 }
  6866. ],
  6867. "translate": [
  6868. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6869. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6870. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6871. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6872. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6873. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6874. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6875. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6876. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6877. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6878. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6879. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6880. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6881. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6882. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6883. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6884. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6885. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6886. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6887. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6888. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6889. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6890. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6891. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6892. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6893. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6894. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6895. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6896. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6897. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6898. { "time": 5, "x": 0, "y": 0 }
  6899. ],
  6900. "scale": [
  6901. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6902. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6903. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6904. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6905. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6906. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6907. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6908. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6909. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6910. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6911. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6912. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6913. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6914. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6915. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6916. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6917. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6918. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6919. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6920. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6921. { "time": 5, "x": 1, "y": 1 }
  6922. ]
  6923. },
  6924. "bone36": {
  6925. "rotate": [
  6926. { "time": 0, "angle": 0, "curve": "stepped" },
  6927. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  6928. { "time": 0.3, "angle": 0, "curve": "stepped" },
  6929. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  6930. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  6931. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6932. { "time": 1, "angle": 0, "curve": "stepped" },
  6933. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  6934. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6935. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  6936. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  6937. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6938. { "time": 2, "angle": 0, "curve": "stepped" },
  6939. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  6940. { "time": 2.3, "angle": 0, "curve": "stepped" },
  6941. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  6942. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  6943. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  6944. { "time": 3, "angle": 0, "curve": "stepped" },
  6945. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  6946. { "time": 3.3, "angle": 0, "curve": "stepped" },
  6947. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  6948. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  6949. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  6950. { "time": 4, "angle": 0, "curve": "stepped" },
  6951. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  6952. { "time": 4.3, "angle": 0, "curve": "stepped" },
  6953. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  6954. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  6955. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  6956. { "time": 5, "angle": 0 }
  6957. ],
  6958. "translate": [
  6959. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6960. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6961. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6962. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6963. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6964. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6965. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6966. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6967. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6968. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6969. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6970. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6971. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6972. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6973. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6974. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6975. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6976. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6977. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6978. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6979. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6980. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6981. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6982. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6983. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6984. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6985. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6986. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6987. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6988. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6989. { "time": 5, "x": 0, "y": 0 }
  6990. ],
  6991. "scale": [
  6992. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6993. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6994. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6995. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6996. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6997. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6998. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6999. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7000. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7001. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7002. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7003. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7004. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7005. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7006. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7007. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7008. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7009. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7010. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7011. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7012. { "time": 5, "x": 1, "y": 1 }
  7013. ]
  7014. },
  7015. "bone37": {
  7016. "rotate": [
  7017. { "time": 0, "angle": 0, "curve": "stepped" },
  7018. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  7019. { "time": 0.3, "angle": 0, "curve": "stepped" },
  7020. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  7021. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  7022. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7023. { "time": 1, "angle": 0, "curve": "stepped" },
  7024. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  7025. { "time": 1.3, "angle": 0, "curve": "stepped" },
  7026. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  7027. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  7028. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7029. { "time": 2, "angle": 0, "curve": "stepped" },
  7030. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  7031. { "time": 2.3, "angle": 0, "curve": "stepped" },
  7032. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  7033. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  7034. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  7035. { "time": 3, "angle": 0, "curve": "stepped" },
  7036. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  7037. { "time": 3.3, "angle": 0, "curve": "stepped" },
  7038. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  7039. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  7040. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  7041. { "time": 4, "angle": 0, "curve": "stepped" },
  7042. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  7043. { "time": 4.3, "angle": 0, "curve": "stepped" },
  7044. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  7045. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  7046. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  7047. { "time": 5, "angle": 0 }
  7048. ],
  7049. "translate": [
  7050. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7051. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7052. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7053. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7054. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7055. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7056. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7057. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7058. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7059. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7060. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7061. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7062. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7063. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7064. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7065. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7066. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7067. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7068. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7069. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7070. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7071. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7072. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7073. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7074. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7075. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7076. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7077. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7078. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7079. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7080. { "time": 5, "x": 0, "y": 0 }
  7081. ],
  7082. "scale": [
  7083. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7084. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7085. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7086. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7087. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7088. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7089. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7090. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7091. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7092. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7093. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7094. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7095. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7096. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7097. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7098. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7099. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7100. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7101. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7102. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7103. { "time": 5, "x": 1, "y": 1 }
  7104. ]
  7105. },
  7106. "bone38": {
  7107. "rotate": [
  7108. { "time": 0, "angle": 0, "curve": "stepped" },
  7109. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  7110. { "time": 0.3, "angle": 0, "curve": "stepped" },
  7111. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  7112. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  7113. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7114. { "time": 1, "angle": 0, "curve": "stepped" },
  7115. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  7116. { "time": 1.3, "angle": 0, "curve": "stepped" },
  7117. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  7118. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  7119. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7120. { "time": 2, "angle": 0, "curve": "stepped" },
  7121. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  7122. { "time": 2.3, "angle": 0, "curve": "stepped" },
  7123. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  7124. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  7125. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  7126. { "time": 3, "angle": 0, "curve": "stepped" },
  7127. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  7128. { "time": 3.3, "angle": 0, "curve": "stepped" },
  7129. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  7130. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  7131. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  7132. { "time": 4, "angle": 0, "curve": "stepped" },
  7133. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  7134. { "time": 4.3, "angle": 0, "curve": "stepped" },
  7135. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  7136. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  7137. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  7138. { "time": 5, "angle": 0 }
  7139. ],
  7140. "translate": [
  7141. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7142. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7143. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7144. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7145. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7146. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7147. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7148. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7149. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7150. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7151. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7152. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7153. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7154. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7155. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7156. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7157. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7158. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7159. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7160. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7161. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7162. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7163. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7164. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7165. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7166. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7167. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7168. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7169. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7170. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7171. { "time": 5, "x": 0, "y": 0 }
  7172. ],
  7173. "scale": [
  7174. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7175. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7176. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7177. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7178. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7179. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7180. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7181. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7182. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7183. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7184. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7185. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7186. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7187. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7188. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7189. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7190. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7191. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7192. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7193. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7194. { "time": 5, "x": 1, "y": 1 }
  7195. ]
  7196. },
  7197. "bone39": {
  7198. "rotate": [
  7199. { "time": 0, "angle": 0, "curve": "stepped" },
  7200. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  7201. { "time": 0.3, "angle": 0, "curve": "stepped" },
  7202. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  7203. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  7204. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7205. { "time": 1, "angle": 0, "curve": "stepped" },
  7206. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  7207. { "time": 1.3, "angle": 0, "curve": "stepped" },
  7208. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  7209. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  7210. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7211. { "time": 2, "angle": 0, "curve": "stepped" },
  7212. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  7213. { "time": 2.3, "angle": 0, "curve": "stepped" },
  7214. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  7215. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  7216. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  7217. { "time": 3, "angle": 0, "curve": "stepped" },
  7218. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  7219. { "time": 3.3, "angle": 0, "curve": "stepped" },
  7220. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  7221. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  7222. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  7223. { "time": 4, "angle": 0, "curve": "stepped" },
  7224. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  7225. { "time": 4.3, "angle": 0, "curve": "stepped" },
  7226. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  7227. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  7228. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  7229. { "time": 5, "angle": 0 }
  7230. ],
  7231. "translate": [
  7232. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7233. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7234. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7235. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7236. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7237. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7238. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7239. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7240. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7241. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7242. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7243. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7244. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7245. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7246. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7247. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7248. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7249. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7250. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7251. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7252. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7253. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7254. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7255. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7256. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7257. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7258. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7259. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7260. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7261. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7262. { "time": 5, "x": 0, "y": 0 }
  7263. ],
  7264. "scale": [
  7265. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7266. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7267. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7268. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7269. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7270. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7271. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7272. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7273. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7274. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7275. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7276. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7277. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7278. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7279. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7280. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7281. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7282. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7283. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7284. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7285. { "time": 5, "x": 1, "y": 1 }
  7286. ]
  7287. },
  7288. "bone40": {
  7289. "rotate": [
  7290. { "time": 0, "angle": 0, "curve": "stepped" },
  7291. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  7292. { "time": 0.3, "angle": 0, "curve": "stepped" },
  7293. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  7294. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  7295. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7296. { "time": 1, "angle": 0, "curve": "stepped" },
  7297. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  7298. { "time": 1.3, "angle": 0, "curve": "stepped" },
  7299. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  7300. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  7301. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7302. { "time": 2, "angle": 0, "curve": "stepped" },
  7303. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  7304. { "time": 2.3, "angle": 0, "curve": "stepped" },
  7305. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  7306. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  7307. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  7308. { "time": 3, "angle": 0, "curve": "stepped" },
  7309. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  7310. { "time": 3.3, "angle": 0, "curve": "stepped" },
  7311. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  7312. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  7313. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  7314. { "time": 4, "angle": 0, "curve": "stepped" },
  7315. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  7316. { "time": 4.3, "angle": 0, "curve": "stepped" },
  7317. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  7318. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  7319. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  7320. { "time": 5, "angle": 0 }
  7321. ],
  7322. "translate": [
  7323. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7324. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7325. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7326. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7327. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7328. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7329. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7330. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7331. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7332. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7333. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7334. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7335. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7336. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7337. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7338. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7339. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7340. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7341. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7342. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7343. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7344. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7345. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7346. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7347. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7348. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7349. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7350. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7351. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7352. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7353. { "time": 5, "x": 0, "y": 0 }
  7354. ],
  7355. "scale": [
  7356. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7357. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7358. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7359. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7360. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7361. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7362. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7363. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7364. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7365. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7366. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7367. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7368. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7369. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7370. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7371. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7372. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7373. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7374. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7375. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7376. { "time": 5, "x": 1, "y": 1 }
  7377. ]
  7378. },
  7379. "bone41": {
  7380. "rotate": [
  7381. { "time": 0, "angle": 0 },
  7382. { "time": 0.1333, "angle": -12.34 },
  7383. { "time": 0.3, "angle": -24.69 },
  7384. { "time": 0.4667, "angle": -37.03 },
  7385. { "time": 0.6333, "angle": -24.69 },
  7386. { "time": 0.8333, "angle": -12.34 },
  7387. { "time": 1, "angle": 0 },
  7388. { "time": 1.1333, "angle": -12.34 },
  7389. { "time": 1.3, "angle": -24.69 },
  7390. { "time": 1.4667, "angle": -37.03 },
  7391. { "time": 1.6333, "angle": -24.69 },
  7392. { "time": 1.8333, "angle": -12.34 },
  7393. { "time": 2, "angle": 0 },
  7394. { "time": 2.1333, "angle": -12.34 },
  7395. { "time": 2.3, "angle": -24.69 },
  7396. { "time": 2.4667, "angle": -37.03 },
  7397. { "time": 2.6333, "angle": -24.69 },
  7398. { "time": 2.8333, "angle": -12.34 },
  7399. { "time": 3, "angle": 0 },
  7400. { "time": 3.1333, "angle": -12.34 },
  7401. { "time": 3.3, "angle": -24.69 },
  7402. { "time": 3.4667, "angle": -37.03 },
  7403. { "time": 3.6333, "angle": -24.69 },
  7404. { "time": 3.8333, "angle": -12.34 },
  7405. { "time": 4, "angle": 0 },
  7406. { "time": 4.1333, "angle": -12.34 },
  7407. { "time": 4.3, "angle": -24.69 },
  7408. { "time": 4.4667, "angle": -37.03 },
  7409. { "time": 4.6333, "angle": -24.69 },
  7410. { "time": 4.8333, "angle": -12.34 },
  7411. { "time": 5, "angle": 0 }
  7412. ],
  7413. "translate": [
  7414. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7415. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7416. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7417. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7418. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7419. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7420. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7421. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7422. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7423. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7424. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7425. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7426. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7427. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7428. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7429. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7430. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7431. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7432. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7433. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7434. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7435. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7436. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7437. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7438. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7439. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7440. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7441. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7442. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7443. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7444. { "time": 5, "x": 0, "y": 0 }
  7445. ],
  7446. "scale": [
  7447. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7448. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7449. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7450. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7451. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7452. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7453. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7454. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7455. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7456. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7457. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7458. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7459. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7460. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7461. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7462. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7463. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7464. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7465. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7466. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7467. { "time": 5, "x": 1, "y": 1 }
  7468. ]
  7469. },
  7470. "bone42": {
  7471. "rotate": [
  7472. { "time": 0, "angle": 9.19 },
  7473. { "time": 0.1333, "angle": 3.2 },
  7474. { "time": 0.3, "angle": -2.8 },
  7475. { "time": 0.4667, "angle": -8.79 },
  7476. { "time": 0.6333, "angle": -2.8 },
  7477. { "time": 0.8333, "angle": 3.2 },
  7478. { "time": 1, "angle": 9.19 },
  7479. { "time": 1.1333, "angle": 3.2 },
  7480. { "time": 1.3, "angle": -2.8 },
  7481. { "time": 1.4667, "angle": -8.79 },
  7482. { "time": 1.6333, "angle": -2.8 },
  7483. { "time": 1.8333, "angle": 3.2 },
  7484. { "time": 2, "angle": 9.19 },
  7485. { "time": 2.1333, "angle": 3.2 },
  7486. { "time": 2.3, "angle": -2.8 },
  7487. { "time": 2.4667, "angle": -8.79 },
  7488. { "time": 2.6333, "angle": -2.8 },
  7489. { "time": 2.8333, "angle": 3.2 },
  7490. { "time": 3, "angle": 9.19 },
  7491. { "time": 3.1333, "angle": 3.2 },
  7492. { "time": 3.3, "angle": -2.8 },
  7493. { "time": 3.4667, "angle": -8.79 },
  7494. { "time": 3.6333, "angle": -2.8 },
  7495. { "time": 3.8333, "angle": 3.2 },
  7496. { "time": 4, "angle": 9.19 },
  7497. { "time": 4.1333, "angle": 3.2 },
  7498. { "time": 4.3, "angle": -2.8 },
  7499. { "time": 4.4667, "angle": -8.79 },
  7500. { "time": 4.6333, "angle": -2.8 },
  7501. { "time": 4.8333, "angle": 3.2 },
  7502. { "time": 5, "angle": 9.19 }
  7503. ],
  7504. "translate": [
  7505. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7506. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7507. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7508. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7509. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7510. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7511. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7512. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7513. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7514. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7515. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7516. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7517. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7518. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7519. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7520. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7521. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7522. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7523. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7524. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7525. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7526. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7527. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7528. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7529. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7530. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7531. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7532. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7533. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7534. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7535. { "time": 5, "x": 0, "y": 0 }
  7536. ],
  7537. "scale": [
  7538. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7539. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7540. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7541. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7542. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7543. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7544. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7545. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7546. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7547. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7548. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7549. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7550. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7551. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7552. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7553. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7554. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7555. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7556. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7557. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7558. { "time": 5, "x": 1, "y": 1 }
  7559. ]
  7560. },
  7561. "bone43": {
  7562. "rotate": [
  7563. { "time": 0, "angle": 6.12 },
  7564. { "time": 0.1333, "angle": 4.08 },
  7565. { "time": 0.3, "angle": 2.04 },
  7566. { "time": 0.4667, "angle": 0 },
  7567. { "time": 0.6333, "angle": 2.04 },
  7568. { "time": 0.8333, "angle": 4.08 },
  7569. { "time": 1, "angle": 6.12 },
  7570. { "time": 1.1333, "angle": 4.08 },
  7571. { "time": 1.3, "angle": 2.04 },
  7572. { "time": 1.4667, "angle": 0 },
  7573. { "time": 1.6333, "angle": 2.04 },
  7574. { "time": 1.8333, "angle": 4.08 },
  7575. { "time": 2, "angle": 6.12 },
  7576. { "time": 2.1333, "angle": 4.08 },
  7577. { "time": 2.3, "angle": 2.04 },
  7578. { "time": 2.4667, "angle": 0 },
  7579. { "time": 2.6333, "angle": 2.04 },
  7580. { "time": 2.8333, "angle": 4.08 },
  7581. { "time": 3, "angle": 6.12 },
  7582. { "time": 3.1333, "angle": 4.08 },
  7583. { "time": 3.3, "angle": 2.04 },
  7584. { "time": 3.4667, "angle": 0 },
  7585. { "time": 3.6333, "angle": 2.04 },
  7586. { "time": 3.8333, "angle": 4.08 },
  7587. { "time": 4, "angle": 6.12 },
  7588. { "time": 4.1333, "angle": 4.08 },
  7589. { "time": 4.3, "angle": 2.04 },
  7590. { "time": 4.4667, "angle": 0 },
  7591. { "time": 4.6333, "angle": 2.04 },
  7592. { "time": 4.8333, "angle": 4.08 },
  7593. { "time": 5, "angle": 6.12 }
  7594. ],
  7595. "translate": [
  7596. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7597. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7598. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7599. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7600. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7601. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7602. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7603. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7604. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7605. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7606. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7607. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7608. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7609. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7610. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7611. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7612. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7613. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7614. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7615. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7616. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7617. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7618. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7619. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7620. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7621. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7622. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7623. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7624. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7625. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7626. { "time": 5, "x": 0, "y": 0 }
  7627. ],
  7628. "scale": [
  7629. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7630. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7631. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7632. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7633. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7634. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7635. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7636. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7637. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7638. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7639. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7640. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7641. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7642. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7643. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7644. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7645. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7646. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7647. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7648. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7649. { "time": 5, "x": 1, "y": 1 }
  7650. ]
  7651. },
  7652. "bone44": {
  7653. "rotate": [
  7654. { "time": 0, "angle": -12.46 },
  7655. { "time": 0.4667, "angle": -355.52 },
  7656. { "time": 1, "angle": -12.46 },
  7657. { "time": 1.4667, "angle": -355.52 },
  7658. { "time": 2, "angle": -12.46 },
  7659. { "time": 2.4667, "angle": -355.52 },
  7660. { "time": 3, "angle": -12.46 },
  7661. { "time": 3.4667, "angle": -355.52 },
  7662. { "time": 4, "angle": -12.46 },
  7663. { "time": 4.4667, "angle": -355.52 },
  7664. { "time": 5, "angle": -12.46 }
  7665. ],
  7666. "translate": [
  7667. { "time": 0, "x": 0.12, "y": 0.51 },
  7668. { "time": 0.1333, "x": -0.81, "y": 0.38 },
  7669. { "time": 0.4667, "x": 0.05, "y": -0.77 },
  7670. { "time": 0.6, "x": -0.81, "y": 0.38 },
  7671. { "time": 1, "x": 0.12, "y": 0.51 },
  7672. { "time": 1.1333, "x": -0.81, "y": 0.38 },
  7673. { "time": 1.4667, "x": 0.05, "y": -0.77 },
  7674. { "time": 1.6, "x": -0.81, "y": 0.38 },
  7675. { "time": 2, "x": 0.12, "y": 0.51 },
  7676. { "time": 2.1333, "x": -0.81, "y": 0.38 },
  7677. { "time": 2.4667, "x": 0.05, "y": -0.77 },
  7678. { "time": 2.6, "x": -0.81, "y": 0.38 },
  7679. { "time": 3, "x": 0.12, "y": 0.51 },
  7680. { "time": 3.1333, "x": -0.81, "y": 0.38 },
  7681. { "time": 3.4667, "x": 0.05, "y": -0.77 },
  7682. { "time": 3.6, "x": -0.81, "y": 0.38 },
  7683. { "time": 4, "x": 0.12, "y": 0.51 },
  7684. { "time": 4.1333, "x": -0.81, "y": 0.38 },
  7685. { "time": 4.4667, "x": 0.05, "y": -0.77 },
  7686. { "time": 4.6, "x": -0.81, "y": 0.38 },
  7687. { "time": 5, "x": 0.12, "y": 0.51 }
  7688. ],
  7689. "scale": [
  7690. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7691. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7692. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7693. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7694. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7695. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7696. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7697. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7698. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7699. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7700. { "time": 5, "x": 1, "y": 1 }
  7701. ]
  7702. },
  7703. "bone45": {
  7704. "rotate": [
  7705. { "time": 0, "angle": -10.91 },
  7706. { "time": 0.1333, "angle": -7.27 },
  7707. { "time": 0.3, "angle": -3.64 },
  7708. { "time": 0.4667, "angle": 0 },
  7709. { "time": 0.6333, "angle": -3.64 },
  7710. { "time": 0.8333, "angle": -7.27 },
  7711. { "time": 1, "angle": -10.91 },
  7712. { "time": 1.1333, "angle": -7.27 },
  7713. { "time": 1.3, "angle": -3.64 },
  7714. { "time": 1.4667, "angle": 0 },
  7715. { "time": 1.6333, "angle": -3.64 },
  7716. { "time": 1.8333, "angle": -7.27 },
  7717. { "time": 2, "angle": -10.91 },
  7718. { "time": 2.1333, "angle": -7.27 },
  7719. { "time": 2.3, "angle": -3.64 },
  7720. { "time": 2.4667, "angle": 0 },
  7721. { "time": 2.6333, "angle": -3.64 },
  7722. { "time": 2.8333, "angle": -7.27 },
  7723. { "time": 3, "angle": -10.91 },
  7724. { "time": 3.1333, "angle": -7.27 },
  7725. { "time": 3.3, "angle": -3.64 },
  7726. { "time": 3.4667, "angle": 0 },
  7727. { "time": 3.6333, "angle": -3.64 },
  7728. { "time": 3.8333, "angle": -7.27 },
  7729. { "time": 4, "angle": -10.91 },
  7730. { "time": 4.1333, "angle": -7.27 },
  7731. { "time": 4.3, "angle": -3.64 },
  7732. { "time": 4.4667, "angle": 0 },
  7733. { "time": 4.6333, "angle": -3.64 },
  7734. { "time": 4.8333, "angle": -7.27 },
  7735. { "time": 5, "angle": -10.91 }
  7736. ],
  7737. "translate": [
  7738. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7739. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7740. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7741. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7742. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7743. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7744. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7745. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7746. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7747. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7748. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7749. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7750. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7751. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7752. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7753. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7754. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7755. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7756. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7757. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7758. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7759. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7760. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7761. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7762. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7763. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7764. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7765. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7766. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7767. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7768. { "time": 5, "x": 0, "y": 0 }
  7769. ],
  7770. "scale": [
  7771. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7772. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7773. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7774. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7775. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7776. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7777. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7778. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7779. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7780. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7781. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7782. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7783. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7784. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7785. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7786. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7787. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7788. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7789. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7790. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7791. { "time": 5, "x": 1, "y": 1 }
  7792. ]
  7793. },
  7794. "bone46": {
  7795. "rotate": [
  7796. { "time": 0, "angle": -12.25 },
  7797. { "time": 0.1333, "angle": -8.17 },
  7798. { "time": 0.3, "angle": -4.08 },
  7799. { "time": 0.4667, "angle": 0 },
  7800. { "time": 0.6333, "angle": -4.08 },
  7801. { "time": 0.8333, "angle": -8.17 },
  7802. { "time": 1, "angle": -12.25 },
  7803. { "time": 1.1333, "angle": -8.17 },
  7804. { "time": 1.3, "angle": -4.08 },
  7805. { "time": 1.4667, "angle": 0 },
  7806. { "time": 1.6333, "angle": -4.08 },
  7807. { "time": 1.8333, "angle": -8.17 },
  7808. { "time": 2, "angle": -12.25 },
  7809. { "time": 2.1333, "angle": -8.17 },
  7810. { "time": 2.3, "angle": -4.08 },
  7811. { "time": 2.4667, "angle": 0 },
  7812. { "time": 2.6333, "angle": -4.08 },
  7813. { "time": 2.8333, "angle": -8.17 },
  7814. { "time": 3, "angle": -12.25 },
  7815. { "time": 3.1333, "angle": -8.17 },
  7816. { "time": 3.3, "angle": -4.08 },
  7817. { "time": 3.4667, "angle": 0 },
  7818. { "time": 3.6333, "angle": -4.08 },
  7819. { "time": 3.8333, "angle": -8.17 },
  7820. { "time": 4, "angle": -12.25 },
  7821. { "time": 4.1333, "angle": -8.17 },
  7822. { "time": 4.3, "angle": -4.08 },
  7823. { "time": 4.4667, "angle": 0 },
  7824. { "time": 4.6333, "angle": -4.08 },
  7825. { "time": 4.8333, "angle": -8.17 },
  7826. { "time": 5, "angle": -12.25 }
  7827. ],
  7828. "translate": [
  7829. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7830. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7831. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7832. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7833. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7834. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7835. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7836. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7837. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7838. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7839. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7840. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7841. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7842. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7843. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7844. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7845. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7846. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7847. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7848. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7849. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7850. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7851. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7852. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7853. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7854. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7855. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7856. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7857. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7858. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7859. { "time": 5, "x": 0, "y": 0 }
  7860. ],
  7861. "scale": [
  7862. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7863. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7864. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7865. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7866. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7867. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7868. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7869. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7870. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7871. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7872. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7873. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7874. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7875. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7876. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7877. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7878. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7879. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7880. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7881. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7882. { "time": 5, "x": 1, "y": 1 }
  7883. ]
  7884. },
  7885. "bone47": {
  7886. "rotate": [
  7887. { "time": 0, "angle": 63.15 },
  7888. { "time": 0.4667, "angle": 62.6 },
  7889. { "time": 1, "angle": 63.15 },
  7890. { "time": 1.4667, "angle": 62.6 },
  7891. { "time": 2, "angle": 63.15 },
  7892. { "time": 2.4667, "angle": 62.6 },
  7893. { "time": 3, "angle": 63.15 },
  7894. { "time": 3.4667, "angle": 62.6 },
  7895. { "time": 4, "angle": 63.15 },
  7896. { "time": 4.4667, "angle": 62.6 },
  7897. { "time": 5, "angle": 63.15 }
  7898. ],
  7899. "translate": [
  7900. { "time": 0, "x": -12.88, "y": 27.96 },
  7901. { "time": 0.4667, "x": -10.41, "y": 24.25 },
  7902. { "time": 1, "x": -12.88, "y": 27.96 },
  7903. { "time": 1.4667, "x": -10.41, "y": 24.25 },
  7904. { "time": 2, "x": -12.88, "y": 27.96 },
  7905. { "time": 2.4667, "x": -10.41, "y": 24.25 },
  7906. { "time": 3, "x": -12.88, "y": 27.96 },
  7907. { "time": 3.4667, "x": -10.41, "y": 24.25 },
  7908. { "time": 4, "x": -12.88, "y": 27.96 },
  7909. { "time": 4.4667, "x": -10.41, "y": 24.25 },
  7910. { "time": 5, "x": -12.88, "y": 27.96 }
  7911. ],
  7912. "scale": [
  7913. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7914. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7915. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7916. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7917. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7918. { "time": 5, "x": 1, "y": 1 }
  7919. ]
  7920. }
  7921. },
  7922. "deform": {
  7923. "default": {
  7924. "chenshanhebozi": {
  7925. "chenshanhebozi": [
  7926. { "time": 0 },
  7927. {
  7928. "time": 0.3,
  7929. "offset": 2,
  7930. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7931. },
  7932. { "time": 0.4667 },
  7933. {
  7934. "time": 0.8333,
  7935. "offset": 2,
  7936. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7937. },
  7938. { "time": 1 },
  7939. {
  7940. "time": 1.3,
  7941. "offset": 2,
  7942. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7943. },
  7944. { "time": 1.4667 },
  7945. {
  7946. "time": 1.8333,
  7947. "offset": 2,
  7948. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7949. },
  7950. { "time": 2 },
  7951. {
  7952. "time": 2.3,
  7953. "offset": 2,
  7954. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7955. },
  7956. { "time": 2.4667 },
  7957. {
  7958. "time": 2.8333,
  7959. "offset": 2,
  7960. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7961. },
  7962. { "time": 3 },
  7963. {
  7964. "time": 3.3,
  7965. "offset": 2,
  7966. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7967. },
  7968. { "time": 3.4667 },
  7969. {
  7970. "time": 3.8333,
  7971. "offset": 2,
  7972. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7973. },
  7974. { "time": 4 },
  7975. {
  7976. "time": 4.3,
  7977. "offset": 2,
  7978. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7979. },
  7980. { "time": 4.4667 },
  7981. {
  7982. "time": 4.8333,
  7983. "offset": 2,
  7984. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7985. },
  7986. { "time": 5 }
  7987. ]
  7988. },
  7989. "houmiantoufa": {
  7990. "houmiantoufa": [
  7991. {
  7992. "time": 0,
  7993. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  7994. },
  7995. {
  7996. "time": 0.4667,
  7997. "vertices": [ -2.70268, -7.2263, -4.33129, -1.84835, 0, 0, 0, 0, -0.36943, -1.78879, -0.26545, -0.99104 ]
  7998. },
  7999. {
  8000. "time": 1,
  8001. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  8002. },
  8003. {
  8004. "time": 1.4667,
  8005. "vertices": [ -2.70268, -7.2263, -4.33129, -1.84835, 0, 0, 0, 0, -0.36943, -1.78879, -0.26545, -0.99104 ]
  8006. },
  8007. {
  8008. "time": 2,
  8009. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  8010. },
  8011. {
  8012. "time": 2.4667,
  8013. "vertices": [ -2.70268, -7.2263, -4.33129, -1.84835, 0, 0, 0, 0, -0.36943, -1.78879, -0.26545, -0.99104 ]
  8014. },
  8015. {
  8016. "time": 3,
  8017. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  8018. },
  8019. {
  8020. "time": 3.4667,
  8021. "vertices": [ -2.70268, -7.2263, -4.33129, -1.84835, 0, 0, 0, 0, -0.36943, -1.78879, -0.26545, -0.99104 ]
  8022. },
  8023. {
  8024. "time": 4,
  8025. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  8026. },
  8027. {
  8028. "time": 4.4667,
  8029. "vertices": [ -2.70268, -7.2263, -4.33129, -1.84835, 0, 0, 0, 0, -0.36943, -1.78879, -0.26545, -0.99104 ]
  8030. },
  8031. {
  8032. "time": 5,
  8033. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  8034. }
  8035. ]
  8036. },
  8037. "sijiaoku": {
  8038. "sijiaoku": [
  8039. { "time": 0 },
  8040. {
  8041. "time": 0.3,
  8042. "vertices": [ -0.22771, 10.49018, -0.18699, -1.71517, -0.19918, -5.0114 ]
  8043. },
  8044. {
  8045. "time": 0.4667,
  8046. "offset": 2,
  8047. "vertices": [ -0.18699, -1.71517 ]
  8048. },
  8049. {
  8050. "time": 0.8333,
  8051. "vertices": [ -0.57722, 6.32824, 0, 0, 1.35747, -4.10502 ]
  8052. },
  8053. { "time": 1 },
  8054. {
  8055. "time": 1.3,
  8056. "vertices": [ -0.22771, 10.49018, -0.18699, -1.71517, -0.19918, -5.0114 ]
  8057. },
  8058. {
  8059. "time": 1.4667,
  8060. "offset": 2,
  8061. "vertices": [ -0.18699, -1.71517 ]
  8062. },
  8063. {
  8064. "time": 1.8333,
  8065. "vertices": [ -0.57722, 6.32824, 0, 0, 1.35747, -4.10502 ]
  8066. },
  8067. { "time": 2 },
  8068. {
  8069. "time": 2.3,
  8070. "vertices": [ -0.22771, 10.49018, -0.18699, -1.71517, -0.19918, -5.0114 ]
  8071. },
  8072. {
  8073. "time": 2.4667,
  8074. "offset": 2,
  8075. "vertices": [ -0.18699, -1.71517 ]
  8076. },
  8077. {
  8078. "time": 2.8333,
  8079. "vertices": [ -0.57722, 6.32824, 0, 0, 1.35747, -4.10502 ]
  8080. },
  8081. { "time": 3 },
  8082. {
  8083. "time": 3.3,
  8084. "vertices": [ -0.22771, 10.49018, -0.18699, -1.71517, -0.19918, -5.0114 ]
  8085. },
  8086. {
  8087. "time": 3.4667,
  8088. "offset": 2,
  8089. "vertices": [ -0.18699, -1.71517 ]
  8090. },
  8091. {
  8092. "time": 3.8333,
  8093. "vertices": [ -0.57722, 6.32824, 0, 0, 1.35747, -4.10502 ]
  8094. },
  8095. { "time": 4 },
  8096. {
  8097. "time": 4.3,
  8098. "vertices": [ -0.22771, 10.49018, -0.18699, -1.71517, -0.19918, -5.0114 ]
  8099. },
  8100. {
  8101. "time": 4.4667,
  8102. "offset": 2,
  8103. "vertices": [ -0.18699, -1.71517 ]
  8104. },
  8105. {
  8106. "time": 4.8333,
  8107. "vertices": [ -0.57722, 6.32824, 0, 0, 1.35747, -4.10502 ]
  8108. },
  8109. { "time": 5 }
  8110. ]
  8111. }
  8112. }
  8113. },
  8114. "drawOrder": [
  8115. {
  8116. "time": 0,
  8117. "offsets": [
  8118. { "slot": "zuoshou", "offset": -5 }
  8119. ]
  8120. },
  8121. {
  8122. "time": 1,
  8123. "offsets": [
  8124. { "slot": "zuoshou", "offset": -5 }
  8125. ]
  8126. },
  8127. {
  8128. "time": 2,
  8129. "offsets": [
  8130. { "slot": "zuoshou", "offset": -5 }
  8131. ]
  8132. },
  8133. {
  8134. "time": 3,
  8135. "offsets": [
  8136. { "slot": "zuoshou", "offset": -5 }
  8137. ]
  8138. },
  8139. {
  8140. "time": 4,
  8141. "offsets": [
  8142. { "slot": "zuoshou", "offset": -5 }
  8143. ]
  8144. },
  8145. {
  8146. "time": 5,
  8147. "offsets": [
  8148. { "slot": "zuoshou", "offset": -5 }
  8149. ]
  8150. }
  8151. ]
  8152. }
  8153. }
  8154. }