42103.json 395 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028
  1. {
  2. "skeleton": { "hash": "ptA09HMjtN9zrnH0/QIKx5t8Fow", "spine": "3.6.53", "width": 186, "height": 218.05, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "length": 6, "rotation": 91.74, "x": 2.73, "y": 61.65 },
  6. { "name": "bone2", "parent": "bone", "length": 10, "rotation": -4, "x": 7.26, "y": -0.04 },
  7. { "name": "bone3", "parent": "bone", "length": 6.42, "rotation": 178.26, "x": -1.52, "y": 0.3 },
  8. { "name": "bone4", "parent": "bone", "length": 18.45, "rotation": 175.11, "x": -10.21, "y": 9.53 },
  9. { "name": "bone5", "parent": "bone4", "length": 21.13, "rotation": 2.69, "x": 18.45 },
  10. { "name": "bone6", "parent": "bone5", "length": 12.07, "rotation": -83.11, "x": 24.51, "y": -0.82 },
  11. { "name": "bone7", "parent": "bone", "length": 19.81, "rotation": -178.31, "x": -11.15, "y": -10.4, "color": "faa144ff" },
  12. { "name": "bone8", "parent": "bone7", "length": 18.48, "rotation": 1.3, "x": 22, "y": -0.13, "color": "faa144ff" },
  13. { "name": "bone9", "parent": "bone8", "length": 11.42, "rotation": -87.07, "x": 20.15, "y": -0.31, "color": "faa144ff" },
  14. { "name": "bone42", "parent": "bone2", "length": 16.66, "rotation": -2.01, "x": 11.15, "y": 0.27 },
  15. { "name": "bone10", "parent": "bone42", "length": 10.78, "rotation": 173.23, "x": 14.99, "y": 7.05 },
  16. { "name": "bone11", "parent": "bone10", "length": 7.88, "rotation": -2.84, "x": 12.09, "y": -0.46 },
  17. { "name": "bone12", "parent": "bone11", "length": 9.18, "rotation": 0.89, "x": 9.39, "y": 0.02 },
  18. { "name": "bone13", "parent": "bone42", "length": 12.66, "rotation": -170.02, "x": 16.78, "y": -8.9 },
  19. { "name": "bone14", "parent": "bone13", "length": 8.13, "rotation": 1.41, "x": 13.57, "y": 0.16 },
  20. { "name": "bone15", "parent": "bone14", "length": 7.34, "rotation": 8.82, "x": 9.28, "y": 0.11 },
  21. { "name": "bone16", "parent": "bone42", "length": 6.32, "rotation": 155.66, "x": 18.55, "y": 8.02 },
  22. { "name": "bone17", "parent": "bone16", "length": 6.83, "rotation": -1.27, "x": 6.54, "y": 0.12 },
  23. { "name": "bone18", "parent": "bone42", "length": 6.87, "rotation": 133.93, "x": 21.81, "y": -14.78 },
  24. { "name": "bone19", "parent": "bone42", "length": 18.91, "rotation": -140.77, "x": 17.58, "y": -11.13 },
  25. { "name": "bone20", "parent": "bone19", "length": 14.68, "rotation": -2.23, "x": 18.91 },
  26. { "name": "bone21", "parent": "bone20", "length": 9.31, "rotation": -9.64, "x": 18.68, "y": -1.23 },
  27. { "name": "bone22", "parent": "bone42", "length": 15.19, "rotation": 153.87, "x": 14.85, "y": 10.23, "color": "fc6f2aff" },
  28. { "name": "bone23", "parent": "bone22", "length": 14.89, "rotation": -3.57, "x": 15.19, "color": "fc6f2aff" },
  29. { "name": "bone24", "parent": "bone23", "length": 10.91, "rotation": -6.36, "x": 18.59, "y": -0.09, "color": "fc6f2aff" },
  30. { "name": "bone25", "parent": "bone42", "length": 47.61, "rotation": 3.06, "x": 19.76, "y": -0.42 },
  31. { "name": "bone26", "parent": "bone25", "length": 10.71, "rotation": 1.21, "x": 16.22, "y": 13.97 },
  32. { "name": "bone27", "parent": "bone25", "length": 10.93, "rotation": -1.52, "x": 17.64, "y": -8.78 },
  33. { "name": "bone28", "parent": "bone25", "length": 6.86, "rotation": 1.21, "x": 18.2, "y": 3.93 },
  34. { "name": "bone29", "parent": "bone25", "length": 6.14, "rotation": 1.21, "x": 28.39, "y": 4.35 },
  35. { "name": "bone30", "parent": "bone25", "length": 14.56, "rotation": 139.97, "x": 73.96, "y": -8.71 },
  36. { "name": "bone31", "parent": "bone30", "length": 10.87, "rotation": -2.39, "x": 15.07, "y": -0.21 },
  37. { "name": "bone32", "parent": "bone31", "length": 12.19, "rotation": 12.66, "x": 11.4, "y": 0.16 },
  38. { "name": "bone33", "parent": "bone32", "length": 10.34, "rotation": 5.62, "x": 12.19 },
  39. { "name": "bone34", "parent": "bone33", "length": 8.79, "rotation": 7.42, "x": 10.34 },
  40. { "name": "bone35", "parent": "bone25", "length": 12.05, "rotation": -178.79, "x": 62.73, "y": -24.19 },
  41. { "name": "bone36", "parent": "bone35", "length": 9.78, "rotation": -6.5, "x": 13.04 },
  42. { "name": "bone37", "parent": "bone36", "length": 10.7, "rotation": -2.1, "x": 10.15, "y": 0.04 },
  43. { "name": "bone38", "parent": "bone37", "length": 9.38, "rotation": -8.18, "x": 10.7 },
  44. { "name": "bone39", "parent": "bone25", "length": 12.22, "rotation": -158.17, "x": 62.87, "y": -31.08 },
  45. { "name": "bone40", "parent": "bone39", "length": 11.89, "rotation": -9.89, "x": 12.88, "y": 0.01 },
  46. { "name": "bone41", "parent": "bone40", "length": 8.65, "rotation": 4.1, "x": 11.89 },
  47. { "name": "bone43", "parent": "bone", "length": 7.52, "rotation": -3.31, "x": -2.48, "y": 2.99 },
  48. { "name": "bone44", "parent": "bone25", "length": 6.85, "rotation": -1.97, "x": 5.07, "y": 3.03 },
  49. { "name": "bone45", "parent": "bone25", "length": 12.57, "rotation": 107.69, "x": 76.39, "y": -1.09 },
  50. { "name": "bone46", "parent": "bone45", "length": 11.45, "rotation": 7.6, "x": 13.38, "y": 0.14 },
  51. { "name": "bone47", "parent": "bone46", "length": 10.24, "rotation": 0.01, "x": 11.68, "y": -0.1 },
  52. { "name": "bone48", "parent": "bone25", "length": 13.01, "rotation": 165.86, "x": 53.63, "y": 27.84 },
  53. { "name": "bone49", "parent": "bone48", "length": 11.82, "rotation": 18.33, "x": 13.33, "y": 0.22 },
  54. { "name": "bone50", "parent": "bone49", "length": 10.59, "rotation": -0.32, "x": 11.95, "y": -0.01 },
  55. { "name": "bone51", "parent": "bone25", "length": 12.72, "rotation": -8.26, "x": 69.73, "y": -26.26 },
  56. { "name": "bone52", "parent": "bone51", "length": 9.75, "rotation": 56.51, "x": 12.72 },
  57. { "name": "bone53", "parent": "bone52", "length": 10.47, "rotation": 66.51, "x": 9.84, "y": 0.08 },
  58. { "name": "bone54", "parent": "bone25", "length": 15.01, "rotation": 50.86, "x": 76.06, "y": -11.49 },
  59. { "name": "bone55", "parent": "root", "length": 23.67, "rotation": 112.8, "x": 87.99, "y": 94.95 },
  60. { "name": "bone56", "parent": "root", "length": 36.05, "rotation": 93.95, "x": -46.92, "y": 28.24 },
  61. { "name": "bone57", "parent": "root", "length": 27.24, "rotation": 79.51, "x": -64.28, "y": 114.79 },
  62. { "name": "bone58", "parent": "bone24", "length": 46.62, "rotation": -139.69, "x": 42.44, "y": -12.88 },
  63. { "name": "bone59", "parent": "bone42", "length": 8.5, "rotation": -103.3, "x": 17.62, "y": -16.49 },
  64. { "name": "bone61", "parent": "bone18", "length": 8.19, "rotation": 35.55, "x": 6.43, "y": -0.06 },
  65. { "name": "bone62", "parent": "root", "length": 56.55, "rotation": 132.06, "x": -66.28, "y": 146.56 }
  66. ],
  67. "slots": [
  68. { "name": "yin3", "bone": "bone55" },
  69. { "name": "yin2", "bone": "bone57" },
  70. { "name": "yin1", "bone": "bone56" },
  71. { "name": "zuoshou", "bone": "bone22", "attachment": "zuoshou" },
  72. { "name": "maikefeng", "bone": "bone58", "attachment": "maikefeng" },
  73. { "name": "dangbu", "bone": "bone3", "attachment": "dangbu" },
  74. { "name": "zuotui", "bone": "bone4", "attachment": "zuotui" },
  75. { "name": "youtui", "bone": "bone7", "attachment": "youtui" },
  76. { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
  77. { "name": "yaodia", "bone": "bone3", "attachment": "yaodia" },
  78. { "name": "kou", "bone": "bone43", "attachment": "kou" },
  79. { "name": "youwaitao", "bone": "bone13", "attachment": "youwaitao" },
  80. { "name": "zuowaitao", "bone": "bone10", "attachment": "zuowaitao" },
  81. { "name": "mao3", "bone": "bone59", "attachment": "mao3" },
  82. { "name": "youshou", "bone": "bone19", "attachment": "youshou" },
  83. { "name": "toufa1", "bone": "bone25", "attachment": "toufa1" },
  84. { "name": "mao1", "bone": "bone16", "attachment": "mao1" },
  85. { "name": "toufa2", "bone": "bone48", "attachment": "toufa2" },
  86. { "name": "lian", "bone": "bone25", "attachment": "lian" },
  87. { "name": "zuiba", "bone": "bone44", "attachment": "zuiba" },
  88. { "name": "bizui", "bone": "bone44" },
  89. { "name": "meimao", "bone": "bone29", "attachment": "meimao" },
  90. { "name": "toufa3", "bone": "bone51", "attachment": "toufa3" },
  91. { "name": "toufa4", "bone": "bone54", "attachment": "toufa4" },
  92. { "name": "youyan", "bone": "bone27", "attachment": "youyan" },
  93. { "name": "zuoyan", "bone": "bone26", "attachment": "zuoyan" },
  94. { "name": "toufa5", "bone": "bone39", "attachment": "toufa5" },
  95. { "name": "toufa6", "bone": "bone35", "attachment": "toufa6" },
  96. { "name": "toufa7", "bone": "bone30", "attachment": "toufa7" },
  97. { "name": "mao2", "bone": "bone18", "attachment": "mao2" },
  98. { "name": "biyan", "bone": "bone28" },
  99. { "name": "biaoqing_4", "bone": "bone62", "attachment": "biaoqing_4" }
  100. ],
  101. "skins": {
  102. "default": {
  103. "biaoqing_4": {
  104. "biaoqing_4": { "x": 38.04, "y": -2.6, "rotation": -132.06, "width": 87, "height": 83 }
  105. },
  106. "biyan": {
  107. "biyan": { "x": 2.84, "y": -1.67, "rotation": -90, "width": 40, "height": 8 }
  108. },
  109. "bizui": {
  110. "bizui": { "x": 1.19, "y": -0.91, "rotation": -86.82, "width": 12, "height": 6 }
  111. },
  112. "dangbu": {
  113. "dangbu": {
  114. "type": "mesh",
  115. "uvs": [ 1, 0.15295, 1, 1, 0, 1, 0, 0.16928 ],
  116. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  117. "vertices": [ -12.29, 20.19, 13.12, 20.19, 13.12, -16.81, -11.8, -16.81 ],
  118. "hull": 4,
  119. "edges": [ 2, 4, 4, 6, 2, 0, 6, 0 ],
  120. "width": 37,
  121. "height": 30
  122. }
  123. },
  124. "kou": {
  125. "kou": {
  126. "type": "mesh",
  127. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  128. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  129. "vertices": [ -1.84, -8.9, -2.22, 5.09, 8.78, 5.39, 9.16, -8.6 ],
  130. "hull": 4,
  131. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  132. "width": 14,
  133. "height": 11
  134. }
  135. },
  136. "lian": {
  137. "lian": { "x": 29.41, "y": -5.93, "rotation": -88.79, "width": 65, "height": 64 }
  138. },
  139. "maikefeng": {
  140. "maikefeng": { "x": 11.88, "y": -4.46, "rotation": -90, "width": 38, "height": 104 }
  141. },
  142. "mao1": {
  143. "mao1": {
  144. "type": "mesh",
  145. "uvs": [ 1, 0.61413, 0.9437, 0.66363, 0.83207, 0.76178, 0.68513, 0.89097, 0.56112, 1, 0.17034, 1, 0, 1, 2.0E-5, 0.75163, 0, 0.51635, 1.0E-5, 0.03972, 0.31797, 0.00917, 0.55533, 0, 0.70296, 0, 1, 0, 0.45981, 0.42469, 0.56126, 0.24749, 0.33479, 0.65879, 0.64389, 0.10317, 0.25286, 0.836 ],
  146. "triangles": [ 0, 1, 15, 7, 8, 16, 2, 14, 1, 3, 16, 14, 18, 7, 16, 2, 3, 14, 4, 18, 16, 5, 6, 7, 18, 5, 7, 3, 4, 16, 5, 18, 4, 17, 11, 12, 15, 11, 17, 10, 11, 15, 14, 10, 15, 9, 10, 14, 8, 9, 14, 17, 12, 13, 0, 17, 13, 15, 17, 0, 1, 14, 15, 16, 8, 14 ],
  147. "vertices": [ 2, 17, 3.58, 10.57, 0.25157, 18, -3.19, 10.38, 0.74843, 2, 17, 4.87, 10.06, 0.19903, 18, -1.88, 9.9, 0.80097, 2, 17, 7.44, 9.04, 0.0689, 18, 0.71, 8.94, 0.9311, 2, 17, 10.82, 7.7, 7.6E-4, 18, 4.12, 7.68, 0.99924, 1, 18, 6.99, 6.61, 1, 2, 17, 17.23, 0.06, 1.0E-5, 18, 10.69, 0.17, 0.99999, 2, 17, 18.78, -2.78, 2.3E-4, 18, 12.3, -2.63, 0.99977, 2, 17, 14.85, -4.92, 0.09854, 18, 8.42, -4.86, 0.90146, 2, 17, 11.13, -6.95, 0.49854, 18, 4.75, -6.97, 0.50146, 2, 17, 3.6, -11.06, 0.99877, 18, -2.69, -11.24, 0.00123, 1, 17, 0.23, -6.02, 1, 1, 17, -2.08, -2.14, 1, 2, 17, -3.42, 0.32, 0.98707, 18, -9.96, -0.02, 0.01293, 2, 17, -6.12, 5.28, 0.91753, 18, -12.77, 4.87, 0.08247, 1, 17, 5.5, -0.07, 1, 2, 17, 1.78, 0.09, 0.99779, 18, -4.76, -0.13, 0.00221, 2, 17, 10.34, -0.14, 0.00684, 18, 3.81, -0.18, 0.99316, 2, 17, -1.25, 0.23, 0.99345, 18, -7.79, -0.07, 0.00655, 1, 18, 7.35, 0.06, 1 ],
  148. "hull": 14,
  149. "edges": [ 0, 26, 24, 26, 8, 10, 10, 12, 4, 28, 28, 18, 0, 2, 2, 4, 30, 28, 2, 30, 18, 20, 30, 20, 4, 6, 6, 8, 32, 28, 6, 32, 16, 18, 32, 16, 24, 34, 34, 30, 0, 34, 20, 22, 22, 24, 34, 22, 10, 36, 36, 32, 8, 36, 12, 14, 14, 16, 36, 14 ],
  150. "width": 19,
  151. "height": 18
  152. }
  153. },
  154. "mao2": {
  155. "mao2": {
  156. "type": "mesh",
  157. "uvs": [ 1, 0.37387, 0.94299, 0.38813, 0.68248, 0.45332, 0.61274, 0.54533, 0.55943, 0.61568, 0.56284, 0.7365, 0.56488, 0.80871, 0.57029, 1, 0.31695, 1, 0, 1, 0, 0.79877, 0, 0.53968, 0, 0, 0.20115, 0, 0.49067, 0, 0.77657, 0, 1, 0, 0.60286, 0.1666, 0.26991, 0.3635, 0.41627, 0.27694, 0.28593, 0.5803, 0.30219, 0.80025 ],
  158. "triangles": [ 8, 6, 7, 9, 21, 8, 8, 21, 6, 9, 10, 21, 21, 5, 6, 10, 20, 21, 21, 20, 5, 10, 11, 20, 20, 4, 5, 11, 18, 20, 4, 20, 18, 11, 12, 18, 12, 13, 18, 3, 4, 19, 19, 4, 18, 3, 19, 2, 19, 17, 2, 2, 17, 1, 16, 0, 1, 1, 17, 15, 1, 15, 16, 18, 13, 19, 19, 14, 17, 19, 13, 14, 17, 14, 15 ],
  159. "vertices": [ 2, 19, -3.45, 9.27, 0.99982, 60, -2.62, 13.34, 1.8E-4, 2, 19, -2.33, 8.75, 0.99786, 60, -2.01, 12.26, 0.00214, 2, 19, 2.8, 6.36, 0.79371, 60, 0.77, 7.34, 0.20629, 2, 19, 5.21, 6.98, 0.43545, 60, 3.1, 6.44, 0.56455, 2, 19, 7.06, 7.46, 0.17078, 60, 4.89, 5.75, 0.82922, 2, 19, 8.71, 9.55, 0.02218, 60, 7.44, 6.5, 0.97782, 2, 19, 9.69, 10.8, 0.00374, 60, 8.96, 6.95, 0.99626, 1, 60, 13, 8.13, 1, 1, 60, 14.36, 2.99, 1, 1, 60, 16.06, -3.45, 1, 2, 19, 18.68, 3.06, 0.01223, 60, 11.78, -4.58, 0.98777, 2, 19, 15.04, -1.32, 0.18218, 60, 6.27, -6.03, 0.81782, 1, 60, -5.21, -9.06, 1, 2, 19, 4.21, -7.77, 0.04365, 60, -6.29, -4.98, 0.95635, 2, 19, -0.47, -3.89, 0.78054, 60, -7.84, 0.9, 0.21946, 1, 19, -5.09, -0.06, 1, 1, 19, -8.7, 2.94, 1, 1, 19, 0.06, 0.44, 1, 2, 19, 8.2, -0.69, 0.65803, 60, 1.07, -1.54, 0.34197, 2, 19, 4.62, -0.19, 0.9417, 60, -1.55, 0.94, 0.0583, 2, 19, 10.99, 3.2, 1.0E-5, 60, 5.6, 0, 0.99999, 1, 60, 10.19, 1.56, 1 ],
  160. "hull": 17,
  161. "edges": [ 0, 32, 30, 32, 30, 34, 14, 16, 16, 18, 4, 34, 28, 30, 34, 28, 0, 2, 2, 4, 2, 30, 8, 36, 36, 24, 4, 6, 6, 8, 34, 38, 38, 36, 6, 38, 24, 26, 26, 28, 38, 26, 8, 10, 40, 36, 10, 40, 22, 24, 40, 22, 10, 12, 12, 14, 16, 42, 42, 40, 12, 42, 18, 20, 20, 22, 42, 20 ],
  162. "width": 21,
  163. "height": 22
  164. }
  165. },
  166. "mao3": {
  167. "mao3": {
  168. "type": "mesh",
  169. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  170. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  171. "vertices": [ 12.55, -5.88, 1.11, -9.51, -2.51, 1.93, 8.93, 5.56 ],
  172. "hull": 4,
  173. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  174. "width": 12,
  175. "height": 12
  176. }
  177. },
  178. "meimao": {
  179. "meimao": { "x": 2.3, "y": -2.8, "rotation": -90, "width": 34, "height": 7 }
  180. },
  181. "shenti": {
  182. "shenti": {
  183. "type": "mesh",
  184. "uvs": [ 0.91599, 0.38819, 0.92726, 0.46901, 0.93967, 0.54852, 0.94842, 0.62437, 0.95958, 0.70564, 0.97144, 0.79198, 1, 1, 0.41274, 1, 0, 1, 0, 0.79782, 0, 0.71488, 0, 0.636, 0, 0.547, 0.0115, 0.46932, 0.05019, 0.39194, 0.24216, 0, 0.46219, 0, 0.86269, 0, 0.41027, 0.80995, 0.42263, 0.55348, 0.42699, 0.4814, 0.43371, 0.38941, 0.41447, 0.7186, 0.41799, 0.64192 ],
  185. "triangles": [ 21, 15, 16, 21, 16, 17, 21, 17, 0, 14, 15, 21, 20, 14, 21, 13, 14, 20, 20, 21, 0, 20, 0, 1, 19, 13, 20, 12, 13, 19, 19, 20, 1, 19, 1, 2, 23, 11, 12, 19, 23, 12, 23, 19, 2, 23, 2, 3, 22, 10, 11, 23, 22, 11, 22, 23, 3, 22, 3, 4, 18, 9, 10, 22, 18, 10, 18, 22, 4, 18, 4, 5, 8, 9, 18, 7, 18, 5, 8, 18, 7, 7, 5, 6 ],
  186. "vertices": [ 2, 2, 17.71, -17.4, 0.45638, 10, 7.18, -17.43, 0.54362, 2, 2, 14.18, -17.95, 0.63089, 10, 3.67, -18.1, 0.36911, 2, 2, 10.7, -18.53, 0.78256, 10, 0.21, -18.81, 0.21744, 2, 2, 7.38, -18.98, 0.889, 10, -3.1, -19.37, 0.111, 2, 2, 3.82, -19.52, 0.95815, 10, -6.63, -20.04, 0.04185, 2, 2, 0.04, -20.1, 0.99063, 10, -10.39, -20.75, 0.00937, 1, 2, -9.07, -21.48, 1, 1, 2, -9.9, -0.36, 1, 2, 2, -10.49, 14.49, 0.99988, 10, -22.12, 13.45, 1.2E-4, 2, 2, -1.6, 14.84, 0.93549, 10, -13.25, 14.11, 0.06451, 2, 2, 2.05, 14.98, 0.84413, 10, -9.61, 14.38, 0.15587, 2, 2, 5.52, 15.12, 0.70607, 10, -6.15, 14.64, 0.29393, 2, 2, 9.43, 15.27, 0.5127, 10, -2.24, 14.93, 0.4873, 2, 2, 12.86, 14.99, 0.3492, 10, 1.2, 14.77, 0.6508, 2, 2, 16.32, 13.74, 0.1889, 10, 4.7, 13.64, 0.8111, 1, 10, 22.41, 8.03, 1, 1, 10, 23, 0.13, 1, 2, 2, 34.7, -14.81, 0.02687, 10, 24.07, -14.25, 0.97313, 1, 2, -1.55, 0.06, 1, 1, 2, 9.75, 0.06, 1, 2, 2, 12.92, 0.03, 0.01081, 10, 1.78, -0.18, 0.98919, 2, 2, 16.98, -0.05, 0.00182, 10, 5.84, -0.12, 0.99818, 2, 2, 2.47, 0.07, 0.99985, 10, -8.66, -0.51, 1.5E-4, 2, 2, 5.85, 0.07, 0.99945, 10, -5.29, -0.39, 5.5E-4 ],
  187. "hull": 18,
  188. "edges": [ 12, 14, 14, 16, 14, 36, 30, 32, 32, 34, 40, 38, 26, 40, 40, 2, 24, 26, 24, 38, 2, 4, 38, 4, 26, 28, 28, 30, 32, 42, 42, 40, 28, 42, 2, 0, 0, 34, 16, 18, 10, 12, 36, 10, 18, 36, 18, 20, 36, 44, 20, 44, 8, 10, 44, 8, 20, 22, 22, 24, 38, 46, 46, 44, 22, 46, 4, 6, 6, 8, 46, 6, 42, 0 ],
  189. "width": 36,
  190. "height": 44
  191. }
  192. },
  193. "toufa1": {
  194. "toufa1": {
  195. "type": "mesh",
  196. "uvs": [ 1, 0.60805, 0.48474, 1, 0, 1, 0, 0.76972, 0.58437, 0, 1, 0 ],
  197. "triangles": [ 4, 5, 0, 1, 3, 4, 1, 2, 3, 4, 0, 1 ],
  198. "vertices": [ 11.4, -39.82, -4.28, -21.08, -4.66, -3.15, 4.32, -2.96, 34.79, -23.95, 35.11, -39.32 ],
  199. "hull": 6,
  200. "edges": [ 4, 6, 8, 10, 6, 8, 0, 10, 2, 4, 0, 2 ],
  201. "width": 37,
  202. "height": 39
  203. }
  204. },
  205. "toufa2": {
  206. "toufa2": {
  207. "type": "mesh",
  208. "uvs": [ 1, 0.24391, 1, 0.34387, 0.95519, 0.4736, 0.92206, 0.56951, 0.88312, 0.68221, 0.83429, 0.82356, 0.8028, 0.91473, 0.77335, 1, 0.42105, 1, 0.2761, 1, 0.21791, 0.90135, 0.16481, 0.81132, 0.07926, 0.66627, 0, 0.53189, 0, 0.41051, 0, 0.27009, 0.18632, 0.12563, 0.34835, 0, 0.56105, 0, 1, 0, 0.35605, 0.43009, 0.36605, 0.67369, 0.41925, 0.2975, 0.36148, 0.56228, 0.39076, 0.82032, 0.40506, 0.90511, 0.48131, 0.1673 ],
  209. "triangles": [ 6, 7, 25, 9, 25, 8, 7, 8, 25, 9, 10, 25, 5, 6, 24, 10, 24, 25, 6, 25, 24, 10, 11, 24, 11, 21, 24, 5, 24, 21, 11, 12, 21, 4, 5, 21, 3, 4, 23, 12, 23, 21, 4, 21, 23, 12, 13, 23, 2, 3, 20, 3, 23, 20, 13, 20, 23, 13, 14, 20, 20, 22, 2, 2, 22, 1, 22, 20, 15, 20, 14, 15, 22, 26, 1, 26, 0, 1, 15, 16, 22, 22, 16, 26, 26, 18, 0, 18, 19, 0, 16, 17, 26, 26, 17, 18 ],
  210. "vertices": [ 2, 48, -1.85, 14.79, 0.7813, 49, -9.83, 18.61, 0.2187, 2, 48, 2.97, 16.11, 0.57751, 49, -4.84, 18.35, 0.42249, 2, 48, 9.55, 16.62, 0.25961, 49, 1.57, 16.76, 0.74039, 3, 48, 14.42, 16.99, 0.08276, 49, 6.31, 15.58, 0.90555, 50, -5.72, 15.56, 0.01169, 3, 48, 20.15, 17.43, 0.00572, 49, 11.88, 14.2, 0.85671, 50, -0.14, 14.21, 0.13757, 2, 49, 18.87, 12.47, 0.44401, 50, 6.85, 12.51, 0.55599, 2, 49, 23.38, 11.35, 0.20218, 50, 11.37, 11.42, 0.79782, 2, 49, 27.59, 10.3, 0.11312, 50, 15.59, 10.4, 0.88688, 2, 49, 27.08, 0.45, 0.00424, 50, 15.13, 0.54, 0.99576, 1, 50, 14.94, -3.51, 1, 1, 50, 9.94, -4.91, 1, 3, 48, 31.7, -0.25, 0.00261, 49, 17.28, -6.22, 0.00193, 50, 5.37, -6.18, 0.99545, 3, 48, 25.34, -4.48, 0.14373, 49, 9.92, -8.24, 0.35292, 50, -1.98, -8.24, 0.50335, 3, 48, 19.45, -8.4, 0.6361, 49, 3.09, -10.1, 0.26848, 50, -8.8, -10.14, 0.09542, 3, 48, 13.59, -10.01, 0.96563, 49, -2.97, -9.79, 0.02392, 50, -14.86, -9.86, 0.01045, 1, 48, 6.82, -11.87, 1, 1, 48, -1.52, -8.75, 1, 1, 48, -8.78, -6.04, 1, 1, 48, -10.36, -0.29, 1, 2, 48, -13.61, 11.56, 0.98347, 49, -22.01, 19.24, 0.01653, 2, 48, 11.9, -0.13, 0.99999, 50, -13.42, 0.05, 1.0E-5, 3, 48, 23.57, 3.36, 8.4E-4, 49, 10.71, -0.24, 0.95619, 50, -1.24, -0.24, 0.04297, 1, 48, 5.04, -0.18, 1, 3, 48, 18.23, 1.76, 0.0022, 49, 5.14, -0.07, 0.99713, 50, -6.81, -0.11, 6.7E-4, 2, 49, 18.06, 0.07, 0.00142, 50, 6.12, 0.11, 0.99858, 2, 49, 22.32, 0.25, 0.00205, 50, 10.37, 0.32, 0.99795, 2, 48, -1.7, -0.23, 0.99912, 49, -14.41, 4.3, 8.8E-4 ],
  211. "hull": 20,
  212. "edges": [ 36, 38, 34, 36, 16, 18, 14, 16, 44, 40, 30, 44, 44, 2, 26, 28, 28, 30, 28, 40, 2, 4, 40, 4, 40, 46, 46, 42, 26, 46, 4, 6, 46, 6, 24, 26, 24, 42, 6, 8, 42, 8, 22, 24, 48, 42, 22, 48, 8, 10, 48, 10, 18, 20, 20, 22, 16, 50, 50, 48, 20, 50, 10, 12, 12, 14, 50, 12, 30, 32, 32, 34, 36, 52, 52, 44, 32, 52, 2, 0, 0, 38, 52, 0 ],
  213. "width": 28,
  214. "height": 50
  215. }
  216. },
  217. "toufa3": {
  218. "toufa3": {
  219. "type": "mesh",
  220. "uvs": [ 0.7886, 0.07997, 1, 0.22213, 1, 0.4723, 0.97179, 0.7409, 0.77689, 1, 0.62453, 1, 0.44961, 1, 0.49696, 0.76492, 0.53143, 0.6382, 0.51778, 0.54106, 0.4355, 0.46176, 0.33519, 0.4281, 0.23657, 0.42675, 0.1138, 0.42017, 0, 0.40647, 0, 0.3538, 0, 0.15367, 0.29725, 0, 0.66968, 0, 0.74585, 0.40647, 0.49193, 0.16157, 0.67579, 0.74926, 0.71941, 0.53581, 0.58335, 0.24974, 0.26794, 0.24909, 0.09537, 0.31653 ],
  221. "triangles": [ 12, 24, 11, 11, 24, 20, 24, 12, 25, 13, 15, 25, 12, 13, 25, 13, 14, 15, 15, 16, 25, 25, 16, 24, 24, 17, 20, 24, 16, 17, 9, 10, 23, 23, 10, 20, 10, 11, 20, 19, 0, 1, 19, 23, 0, 23, 18, 0, 23, 20, 18, 20, 17, 18, 5, 21, 4, 4, 21, 3, 6, 7, 5, 5, 7, 21, 7, 8, 21, 21, 22, 3, 21, 8, 22, 3, 22, 2, 8, 9, 22, 22, 9, 19, 22, 19, 2, 23, 19, 9, 19, 1, 2 ],
  222. "vertices": [ 2, 51, 21.98, 0.21, 0.00123, 52, 5.28, -7.61, 0.99877, 2, 51, 18.75, -6.33, 0.2227, 52, -1.96, -8.52, 0.7773, 2, 51, 11.34, -7.57, 0.86395, 52, -7.07, -3.03, 0.13605, 1, 51, 3.26, -8.11, 1, 1, 51, -5.3, -4.01, 1, 1, 51, -6, 0.2, 1, 1, 51, -6.81, 5.03, 1, 3, 51, 0.37, 4.88, 0.99998, 52, -2.74, 12.99, 1.0E-5, 53, 6.83, 16.69, 1.0E-5, 3, 51, 4.28, 4.56, 0.96351, 52, -0.86, 9.55, 0.02605, 53, 4.42, 13.59, 0.01044, 3, 51, 7.09, 5.41, 0.73547, 52, 1.41, 7.68, 0.18167, 53, 3.61, 10.76, 0.08286, 3, 51, 9.06, 8.07, 0.28716, 52, 4.71, 7.51, 0.34275, 53, 4.77, 7.66, 0.37009, 3, 51, 9.59, 11.01, 0.07447, 52, 7.46, 8.69, 0.16656, 53, 6.94, 5.61, 0.75898, 3, 51, 9.18, 13.74, 0.01427, 52, 9.51, 10.54, 0.03701, 53, 9.45, 4.47, 0.94872, 3, 51, 8.81, 17.17, 2.8E-4, 52, 12.16, 12.74, 7.5E-4, 53, 12.53, 2.92, 0.99897, 1, 53, 15.28, 1.27, 1, 1, 53, 14.65, -0.18, 1, 1, 53, 12.25, -5.68, 1, 1, 53, 2.78, -6.59, 1, 2, 52, 9.35, -7.1, 0.93932, 53, -6.78, -2.42, 0.06068, 1, 51, 12.12, -0.22, 1, 1, 52, 9.69, -0.16, 1, 1, 51, 1.65, 0.02, 1, 1, 51, 8.17, -0.13, 1, 3, 51, 16.01, 5.04, 2.8E-4, 52, 6.02, 0.03, 0.99852, 53, -1.57, 3.48, 0.0012, 1, 53, 6.52, -0.06, 1, 1, 53, 11.76, -0.14, 1 ],
  223. "hull": 19,
  224. "edges": [ 34, 36, 30, 32, 34, 32, 8, 10, 8, 6, 10, 12, 28, 30, 12, 14, 14, 16, 10, 42, 14, 42, 42, 6, 38, 44, 44, 42, 16, 44, 2, 4, 4, 6, 44, 4, 2, 38, 16, 18, 18, 20, 38, 18, 38, 46, 46, 40, 20, 46, 2, 0, 0, 36, 46, 0, 36, 40, 20, 22, 40, 22, 22, 24, 48, 40, 24, 48, 48, 34, 30, 50, 50, 48, 32, 50, 24, 26, 26, 28, 50, 26 ],
  225. "width": 28,
  226. "height": 30
  227. }
  228. },
  229. "toufa4": {
  230. "toufa4": {
  231. "type": "mesh",
  232. "uvs": [ 1, 0.69891, 1, 1, 0, 1, 0, 0, 0.23854, 0 ],
  233. "triangles": [ 2, 3, 4, 2, 4, 0, 2, 0, 1 ],
  234. "vertices": [ -1.35, -4.54, -4.66, -0.64, 9.06, 11.01, 20.06, -1.94, 16.79, -4.72 ],
  235. "hull": 5,
  236. "edges": [ 2, 4, 4, 6, 2, 0, 6, 8, 0, 8 ],
  237. "width": 18,
  238. "height": 17
  239. }
  240. },
  241. "toufa5": {
  242. "toufa5": {
  243. "type": "mesh",
  244. "uvs": [ 0.75601, 0.2194, 0.8743, 0.32646, 0.94639, 0.46111, 1, 0.56124, 1, 0.75472, 1, 1, 0, 1, 0, 0.83515, 0, 0.6808, 0, 0.55472, 0, 0.32428, 0, 0, 0.31716, 0, 0.51359, 0, 0.58145, 0.41124, 0.67073, 0.65472, 0.62372, 0.52652, 0.46987, 0.23763, 0.79182, 0.7817 ],
  245. "triangles": [ 6, 18, 5, 18, 4, 5, 6, 15, 18, 4, 18, 3, 6, 7, 15, 15, 8, 16, 15, 7, 8, 18, 15, 3, 16, 9, 14, 16, 8, 9, 15, 2, 3, 15, 16, 2, 16, 1, 2, 9, 17, 14, 9, 10, 17, 16, 14, 1, 14, 0, 1, 14, 17, 0, 10, 12, 17, 10, 11, 12, 17, 13, 0, 17, 12, 13 ],
  246. "vertices": [ 2, 40, 5, 7.55, 0.97874, 41, -9.06, 6.07, 0.02126, 2, 40, 10.78, 8.92, 0.61946, 41, -3.61, 8.41, 0.38054, 3, 40, 17.28, 8.62, 0.06185, 41, 2.86, 9.24, 0.91293, 42, -8.35, 9.86, 0.02522, 2, 41, 7.66, 9.85, 0.83224, 42, -3.52, 10.13, 0.16776, 2, 41, 16.4, 8.2, 0.14123, 42, 5.09, 7.85, 0.85877, 1, 42, 15.99, 4.97, 1, 3, 40, 31.15, -24.91, 0, 41, 22.28, -21.41, 0.27739, 42, 8.83, -22.1, 0.72261, 3, 40, 24.05, -22.24, 0.01998, 41, 14.83, -20, 0.37774, 42, 1.5, -20.16, 0.60228, 3, 40, 17.41, -19.74, 0.11969, 41, 7.85, -18.68, 0.54235, 42, -5.37, -18.34, 0.33796, 3, 40, 11.98, -17.69, 0.3133, 41, 2.15, -17.6, 0.54491, 42, -10.97, -16.86, 0.1418, 3, 40, 2.06, -13.96, 0.80217, 41, -8.26, -15.63, 0.19183, 42, -21.22, -14.15, 0.006, 2, 40, -11.9, -8.71, 0.99998, 41, -22.92, -12.85, 2.0E-5, 1, 40, -8.77, -0.4, 1, 1, 40, -6.84, 4.75, 1, 2, 40, 11.54, -0.13, 0.97887, 41, -1.3, -0.38, 0.02113, 2, 40, 22.9, -1.74, 0, 41, 10.17, 0, 1, 3, 40, 16.92, -0.89, 0.00145, 41, 4.13, -0.2, 0.99834, 42, -7.76, 0.36, 2.1E-4, 2, 40, 2.96, -0.24, 0.99916, 41, -9.73, -1.96, 8.4E-4, 2, 41, 16.54, 2.24, 0.01449, 42, 4.79, 1.9, 0.98551 ],
  247. "hull": 14,
  248. "edges": [ 10, 12, 22, 24, 24, 26, 18, 28, 28, 2, 12, 14, 14, 30, 30, 6, 14, 16, 16, 18, 28, 32, 32, 30, 16, 32, 2, 4, 4, 6, 32, 4, 18, 20, 20, 22, 24, 34, 34, 28, 20, 34, 2, 0, 0, 26, 34, 0, 10, 36, 36, 30, 12, 36, 6, 8, 8, 10, 36, 8 ],
  249. "width": 28,
  250. "height": 46
  251. }
  252. },
  253. "toufa6": {
  254. "toufa6": {
  255. "type": "mesh",
  256. "uvs": [ 1, 0.26366, 1, 0.3507, 1, 0.42292, 1, 0.53773, 1, 0.61551, 1, 0.66921, 1, 0.72847, 0.77702, 0.8544, 0.44974, 1, 0.27702, 1, 0, 1, 0, 0.81921, 0, 0.71366, 0, 0.6544, 0, 0.59699, 0, 0.51366, 0, 0.41922, 0, 0.34144, 0, 0.25996, 0, 0, 0.57702, 0, 1, 0, 0.57702, 0.34514, 0.51793, 0.52847, 0.45884, 0.72662, 0.55191, 0.42303, 0.57702, 0.26366, 0.49624, 0.6012, 0.47693, 0.66596, 0.38753, 0.83384 ],
  257. "triangles": [ 29, 11, 12, 24, 29, 12, 29, 24, 7, 9, 10, 11, 29, 9, 11, 8, 29, 7, 9, 29, 8, 27, 14, 15, 23, 3, 4, 27, 23, 4, 28, 13, 14, 27, 28, 14, 27, 4, 5, 28, 27, 5, 24, 12, 13, 28, 24, 13, 28, 5, 6, 24, 28, 6, 7, 24, 6, 25, 16, 17, 22, 1, 2, 22, 25, 17, 25, 22, 2, 23, 15, 16, 25, 23, 16, 25, 2, 3, 23, 25, 3, 23, 27, 15, 18, 19, 20, 26, 20, 21, 18, 20, 26, 26, 21, 0, 17, 18, 26, 22, 26, 0, 17, 26, 22, 22, 0, 1 ],
  258. "vertices": [ 3, 36, 8.17, 9.55, 0.85247, 37, -5.92, 8.93, 0.1312, 38, -16.38, 8.3, 0.01633, 3, 36, 12.87, 9.55, 0.49866, 37, -1.25, 9.47, 0.4014, 38, -11.73, 9, 0.09994, 3, 36, 16.77, 9.55, 0.1964, 37, 2.62, 9.91, 0.52154, 38, -7.88, 9.58, 0.28206, 4, 36, 22.97, 9.55, 0.01207, 37, 8.78, 10.61, 0.23399, 38, -1.75, 10.51, 0.74521, 39, -13.81, 8.63, 0.00874, 4, 36, 27.17, 9.55, 5.0E-5, 37, 12.96, 11.09, 0.04494, 38, 2.4, 11.14, 0.89036, 39, -9.79, 9.85, 0.06466, 3, 37, 15.84, 11.41, 0.00512, 38, 5.27, 11.57, 0.84212, 39, -7.02, 10.68, 0.15275, 2, 38, 8.44, 12.05, 0.72821, 39, -3.95, 11.61, 0.27179, 2, 38, 15.89, 8.22, 0.16476, 39, 3.97, 8.87, 0.83524, 1, 39, 13.58, 4.25, 1, 1, 39, 14.68, 0.61, 1, 1, 39, 16.43, -5.23, 1, 3, 37, 26.38, -9.53, 0.02075, 38, 16.57, -8.97, 0.0773, 39, 7.09, -8.04, 0.90195, 3, 37, 20.71, -10.17, 0.15024, 38, 10.93, -9.82, 0.37819, 39, 1.63, -9.69, 0.47156, 4, 36, 29.27, -12.45, 4.9E-4, 37, 17.53, -10.54, 0.31674, 38, 7.77, -10.3, 0.47053, 39, -1.43, -10.61, 0.21224, 4, 36, 26.17, -12.45, 0.00839, 37, 14.45, -10.89, 0.53565, 38, 4.7, -10.76, 0.38691, 39, -4.4, -11.51, 0.06906, 4, 36, 21.67, -12.45, 0.06307, 37, 9.98, -11.4, 0.78922, 38, 0.25, -11.44, 0.14303, 39, -8.71, -12.8, 0.00468, 3, 36, 16.57, -12.45, 0.24687, 37, 4.92, -11.97, 0.74285, 38, -4.79, -12.2, 0.01028, 2, 36, 12.37, -12.45, 0.51022, 37, 0.74, -12.45, 0.48978, 2, 36, 7.97, -12.45, 0.78325, 37, -3.63, -12.95, 0.21675, 1, 36, -6.07, -12.45, 1, 1, 36, -6.07, 0.24, 1, 1, 36, -6.07, 9.55, 1, 3, 36, 12.57, 0.24, 0.45071, 37, -0.5, 0.19, 0.54863, 38, -10.64, -0.24, 6.6E-4, 1, 37, 9.49, 0.02, 1, 2, 38, 10.12, 0.26, 0.9248, 39, -0.61, 0.18, 0.0752, 2, 37, 3.75, 0.11, 0.99863, 38, -6.4, -0.16, 0.00137, 3, 36, 8.17, 0.24, 0.99965, 37, -4.87, -0.31, 3.0E-4, 38, -14.99, -0.9, 5.0E-5, 2, 38, 3.3, 0.07, 0.99999, 39, -7.34, -0.99, 1.0E-5, 2, 38, 6.82, 0.17, 0.99951, 39, -3.86, -0.39, 4.9E-4, 1, 39, 5.38, 0.35, 1 ],
  259. "hull": 22,
  260. "edges": [ 38, 40, 40, 42, 18, 20, 34, 44, 44, 2, 32, 34, 44, 50, 50, 46, 32, 50, 2, 4, 50, 4, 34, 36, 36, 38, 40, 52, 52, 44, 36, 52, 2, 0, 0, 42, 52, 0, 30, 32, 30, 46, 4, 6, 46, 6, 28, 30, 46, 54, 28, 54, 6, 8, 54, 8, 24, 48, 48, 12, 24, 26, 26, 28, 48, 56, 56, 54, 26, 56, 8, 10, 10, 12, 56, 10, 20, 22, 22, 24, 18, 58, 58, 48, 22, 58, 58, 14, 12, 14, 16, 18, 14, 16 ],
  261. "width": 22,
  262. "height": 54
  263. }
  264. },
  265. "toufa7": {
  266. "toufa7": {
  267. "type": "mesh",
  268. "uvs": [ 0.91341, 0.04318, 0.99999, 0.2159, 1, 0.3959, 1, 0.55772, 0.9312, 0.66176, 0.83216, 0.78863, 0.66966, 0.87954, 0.50403, 0.96499, 0.3681, 1, 0.19153, 1, 0.08281, 0.99999, 0.02812, 0.80136, 0, 0.57954, 0, 0.48136, 0, 0.34499, 0, 0.265, 0.07903, 0.16136, 0.16409, 0.11048, 0.24622, 0.06136, 0.40091, 0, 0.65247, 0, 0.80091, 0, 0.81497, 0.07045, 0.58216, 0.25409, 0.46653, 0.3959, 0.32747, 0.61227, 0.24935, 0.79772, 0.39153, 0.11227, 0.20247, 0.20681, 0.52273, 0.05483, 0.70746, 0.15614, 0.28505, 0.15821, 0.51445, 0.33557, 0.05834, 0.30518, 0.3933, 0.5059, 0.29231, 0.69531 ],
  269. "triangles": [ 28, 17, 31, 16, 17, 28, 33, 15, 16, 33, 16, 28, 14, 15, 33, 28, 31, 24, 25, 13, 14, 33, 28, 34, 33, 25, 14, 31, 18, 27, 17, 18, 31, 29, 19, 20, 27, 18, 19, 27, 19, 29, 27, 29, 23, 31, 27, 32, 9, 10, 11, 26, 9, 11, 8, 9, 26, 13, 35, 12, 25, 35, 13, 26, 12, 35, 11, 12, 26, 7, 26, 35, 7, 8, 26, 34, 28, 24, 33, 34, 25, 34, 24, 5, 6, 25, 34, 5, 6, 34, 7, 35, 25, 25, 6, 7, 24, 31, 32, 4, 24, 32, 22, 21, 0, 20, 21, 22, 30, 20, 22, 29, 20, 30, 22, 0, 1, 23, 29, 30, 32, 27, 23, 30, 22, 1, 2, 30, 1, 23, 30, 2, 3, 23, 2, 3, 32, 23, 4, 32, 3, 5, 24, 4 ],
  270. "vertices": [ 2, 31, -11.75, 8.65, 0.97406, 33, -35.96, 15.84, 0.02594, 3, 31, -8.26, 19.08, 0.90319, 33, -30.67, 25.48, 0.0945, 34, -40.16, 29.55, 0.00231, 3, 31, -0.81, 25.6, 0.79033, 33, -22.18, 30.57, 0.19705, 34, -31.22, 33.79, 0.01261, 3, 31, 5.88, 31.47, 0.68467, 33, -14.55, 35.15, 0.28767, 34, -23.17, 37.6, 0.02766, 4, 31, 13.09, 31.93, 0.59713, 33, -7.38, 34.32, 0.35627, 34, -16.12, 36.07, 0.04651, 35, -21.58, 39.18, 8.0E-5, 4, 31, 22.51, 31.76, 0.45189, 33, 1.87, 32.47, 0.45234, 34, -7.1, 33.33, 0.09097, 35, -12.99, 35.3, 0.0048, 4, 31, 33.13, 27.24, 0.25429, 33, 11.51, 26.13, 0.50327, 34, 1.87, 26.07, 0.19695, 35, -5.03, 26.94, 0.04548, 4, 31, 43.65, 22.36, 0.08847, 33, 20.99, 19.46, 0.33942, 34, 10.66, 18.5, 0.33767, 35, 2.7, 18.3, 0.23443, 4, 31, 50.83, 17.09, 0.02264, 33, 27.12, 12.99, 0.11964, 34, 16.12, 11.46, 0.24906, 35, 7.21, 10.62, 0.60866, 5, 31, 58.28, 8.59, 1.0E-5, 33, 32.93, 3.3, 1.0E-4, 34, 20.96, 1.25, 1.2E-4, 35, 10.69, -0.13, 0.99977, 47, 18.57, 39.31, 1.0E-5, 3, 34, 23.94, -5.04, 1.4E-4, 35, 12.83, -6.75, 0.99547, 47, 24.92, 36.47, 0.00439, 4, 33, 28.94, -11.29, 0.01005, 34, 15.56, -12.88, 0.25463, 35, 3.51, -13.44, 0.64284, 47, 23.65, 25.07, 0.09248, 4, 33, 19.41, -19.11, 0.10978, 34, 5.31, -19.73, 0.35137, 35, -7.54, -18.91, 0.12254, 47, 20.31, 13.19, 0.41631, 5, 32, 30.62, -17.96, 1.0E-5, 33, 14.78, -21.89, 0.11077, 34, 0.43, -22.04, 0.21945, 35, -12.68, -20.57, 0.04441, 47, 18.11, 8.26, 0.62537, 4, 33, 8.35, -25.75, 0.02878, 34, -6.35, -25.25, 0.04091, 35, -19.81, -22.88, 0.00417, 47, 15.04, 1.42, 0.92613, 4, 33, 4.57, -28.01, 2.0E-4, 34, -10.32, -27.13, 0.00109, 35, -24, -24.24, 6.0E-5, 47, 13.25, -2.6, 0.99866, 1, 47, 6.3, -5.74, 1, 2, 46, 11.87, -6.17, 0.16161, 47, 0.19, -6.07, 0.83839, 3, 45, 20.16, -5.5, 0.03217, 46, 5.97, -6.49, 0.74129, 47, -5.71, -6.39, 0.22654, 2, 45, 9.71, -5.92, 0.85635, 46, -4.45, -5.53, 0.14365, 2, 31, -2.53, -5.48, 0.57664, 45, -5.73, -1.36, 0.42336, 3, 31, -8.79, 1.67, 0.99456, 33, -34.3, 8.44, 0.0052, 45, -14.84, 1.34, 2.5E-4, 2, 31, -6.47, 4.9, 0.98745, 33, -31.44, 11.21, 0.01255, 3, 31, 10.95, 0.35, 0.99877, 33, -15.11, 3.63, 0.00119, 34, -26.82, 6.28, 4.0E-5, 4, 31, 21.69, -0.07, 0.00623, 32, 6.61, 0.41, 0.97507, 33, -4.61, 1.29, 0.01842, 34, -16.6, 2.93, 2.8E-4, 3, 33, 10.17, -0.22, 0.99889, 46, 13.59, 23.3, 1.5E-4, 47, 1.92, 23.4, 9.6E-4, 2, 34, 9.32, -0.17, 0.99943, 47, 10.64, 30.66, 5.7E-4, 2, 45, 12.03, -0.17, 0.99996, 47, -13.06, -0.03, 4.0E-5, 1, 47, 0.11, -0.23, 1, 1, 45, 3.09, -0.82, 1, 3, 31, 1.61, 2.83, 0.99114, 33, -23.86, 7.73, 0.00879, 34, -35.12, 11.22, 7.0E-5, 3, 45, 19.28, 0.32, 0.00147, 46, 5.87, -0.61, 0.98566, 47, -5.8, -0.51, 0.01287, 4, 31, 17.17, 0.05, 0.007, 32, 2.1, 0.34, 0.98932, 33, -9.04, 2.22, 0.00357, 34, -20.91, 4.28, 1.0E-4, 5, 32, 21.03, -21.94, 3.7E-4, 33, 4.55, -23.68, 0.00832, 34, -9.93, -22.81, 0.00794, 35, -23.05, -20.01, 5.7E-4, 47, 10.74, 0.94, 0.98281, 3, 31, 29.33, 0.39, 0.00145, 33, 2.98, 0.39, 0.99781, 34, -9.13, 1.29, 7.4E-4, 3, 34, 3.06, -0.09, 0.99945, 46, 17.5, 26.55, 0, 47, 5.83, 26.65, 5.5E-4 ],
  271. "hull": 22,
  272. "edges": [ 18, 20, 52, 18, 10, 12, 12, 14, 16, 18, 14, 16, 38, 40, 38, 36, 28, 30, 32, 30, 2, 0, 40, 42, 0, 42, 2, 44, 44, 0, 44, 40, 40, 58, 58, 54, 38, 58, 44, 60, 60, 46, 58, 60, 2, 4, 4, 6, 60, 4, 36, 54, 54, 46, 46, 6, 32, 34, 34, 36, 54, 62, 62, 56, 34, 62, 46, 64, 64, 48, 62, 64, 6, 8, 8, 10, 64, 8, 32, 56, 56, 48, 48, 10, 28, 66, 66, 56, 30, 66, 48, 68, 68, 50, 66, 68, 68, 12, 28, 50, 50, 14, 24, 52, 52, 16, 24, 26, 26, 28, 50, 70, 70, 52, 26, 70, 20, 22, 22, 24, 22, 18 ],
  273. "width": 64,
  274. "height": 55
  275. }
  276. },
  277. "yaodia": {
  278. "yaodia": {
  279. "type": "mesh",
  280. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  281. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  282. "vertices": [ 2.12, 19.19, 2.12, -15.81, -7.88, -15.81, -7.88, 19.19 ],
  283. "hull": 4,
  284. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  285. "width": 35,
  286. "height": 10
  287. }
  288. },
  289. "yin1": {
  290. "yin1": { "x": 21.41, "y": 1.45, "rotation": -93.95, "width": 19, "height": 49 }
  291. },
  292. "yin2": {
  293. "yin2": { "x": 15.09, "y": -0.71, "rotation": -79.51, "width": 29, "height": 37 }
  294. },
  295. "yin3": {
  296. "yin3": { "x": 11.94, "y": -1.41, "rotation": -112.8, "width": 32, "height": 35 }
  297. },
  298. "youshou": {
  299. "youshou": {
  300. "type": "mesh",
  301. "uvs": [ 0.67049, 0.2278, 0.71048, 0.26687, 0.74629, 0.30185, 0.92813, 0.47949, 0.95923, 0.50987, 1, 0.54971, 1, 1, 0.61432, 1, 0.46618, 0.79615, 0.42846, 0.74425, 0.3857, 0.68541, 0.24301, 0.48906, 0.2078, 0.44061, 0.17724, 0.39856, 0, 0.15466, 0, 0, 0.13494, 0, 0.43732, 0, 0.47788, 0.35475, 0.74707, 0.6754, 0.70112, 0.62067, 0.67299, 0.58717, 0.50934, 0.39222, 0.43539, 0.3108 ],
  302. "triangles": [ 7, 19, 6, 19, 5, 6, 7, 8, 19, 8, 20, 19, 8, 9, 20, 9, 21, 20, 9, 10, 21, 10, 22, 21, 10, 11, 22, 19, 4, 5, 19, 20, 4, 20, 3, 4, 20, 21, 3, 21, 2, 3, 21, 22, 2, 11, 18, 22, 11, 12, 18, 22, 1, 2, 22, 18, 1, 18, 0, 1, 12, 23, 18, 12, 13, 23, 23, 13, 16, 18, 23, 0, 13, 14, 16, 23, 17, 0, 23, 16, 17, 14, 15, 16 ],
  303. "vertices": [ 2, 20, 18.13, 8.06, 0.54826, 21, -1.1, 8.03, 0.45174, 2, 20, 20.33, 8.08, 0.3143, 21, 1.11, 8.13, 0.6857, 2, 20, 22.31, 8.1, 0.15136, 21, 3.08, 8.22, 0.84864, 2, 21, 13.1, 8.7, 0.93302, 22, -7.17, 8.85, 0.06698, 2, 21, 14.81, 8.78, 0.86186, 22, -5.49, 9.22, 0.13814, 2, 21, 17.06, 8.89, 0.75216, 22, -3.29, 9.7, 0.24784, 1, 22, 15.76, 1.57, 1, 2, 21, 27.81, -12.69, 7.0E-5, 22, 10.92, -9.78, 0.99993, 2, 21, 17.36, -11.61, 0.25658, 22, 0.43, -10.46, 0.74342, 3, 20, 33.16, -11.9, 0.00149, 21, 14.7, -11.34, 0.44934, 22, -2.24, -10.63, 0.54918, 3, 20, 30.16, -11.47, 0.01424, 21, 11.68, -11.02, 0.66099, 22, -5.26, -10.83, 0.32478, 3, 20, 20.14, -10.03, 0.43719, 21, 1.62, -9.98, 0.55294, 22, -15.36, -11.49, 0.00988, 3, 20, 17.66, -9.68, 0.65358, 21, -0.87, -9.72, 0.34496, 22, -17.85, -11.65, 0.00146, 3, 20, 15.52, -9.37, 0.81639, 21, -3.02, -9.5, 0.18359, 22, -20.02, -11.79, 2.0E-5, 1, 20, 3.07, -7.59, 1, 1, 20, -2.76, -3.52, 1, 1, 20, -0.28, 0.02, 1, 1, 20, 5.26, 7.95, 1, 2, 20, 19.38, -0.33, 0.11044, 21, 0.48, -0.32, 0.88956, 2, 21, 17.55, -1.05, 0.21071, 22, -1.15, -0.01, 0.78929, 2, 21, 14.63, -0.92, 0.91563, 22, -4.04, -0.38, 0.08437, 2, 21, 12.85, -0.85, 0.97483, 22, -5.81, -0.6, 0.02517, 3, 20, 21.37, -0.5, 0.00537, 21, 2.48, -0.4, 0.99462, 22, -16.12, -1.9, 1.0E-5, 1, 20, 16.94, -0.29, 1 ],
  304. "hull": 18,
  305. "edges": [ 30, 32, 38, 12, 32, 34, 12, 10, 28, 30, 12, 14, 24, 36, 36, 2, 14, 16, 16, 38, 38, 10, 16, 18, 40, 38, 18, 40, 8, 10, 40, 8, 18, 20, 42, 40, 20, 42, 6, 8, 42, 6, 20, 22, 22, 24, 36, 44, 44, 42, 22, 44, 2, 4, 4, 6, 44, 4, 24, 26, 26, 28, 32, 46, 46, 36, 26, 46, 2, 0, 0, 34, 46, 0 ],
  306. "width": 32,
  307. "height": 46
  308. }
  309. },
  310. "youtui": {
  311. "youtui": {
  312. "type": "mesh",
  313. "uvs": [ 1, 0.12369, 1, 0.41445, 1, 0.4714, 1, 0.52518, 0.99999, 0.69443, 0.99999, 0.72954, 0.99999, 0.75929, 1, 1, 0, 1, 0, 0.90165, 0, 0.79533, 0.27671, 0.75407, 0.27239, 0.73155, 0.26804, 0.7089, 0.23375, 0.53023, 0.22052, 0.47153, 0.20833, 0.41742, 0.14522, 0.13742, 0.11425, 0, 0.5812, 0, 1, 0, 0.62136, 0.47772, 0.67489, 0.83996, 0.62838, 0.52528, 0.61637, 0.41846, 0.65738, 0.74993, 0.65123, 0.70225, 0.65464, 0.72867 ],
  314. "triangles": [ 8, 22, 7, 22, 6, 7, 8, 9, 22, 22, 11, 25, 22, 9, 11, 9, 10, 11, 22, 25, 6, 6, 25, 5, 11, 27, 25, 11, 12, 27, 25, 27, 5, 12, 26, 27, 12, 13, 26, 5, 27, 4, 27, 26, 4, 13, 23, 26, 13, 14, 23, 4, 26, 3, 3, 26, 23, 14, 21, 23, 14, 15, 21, 3, 23, 2, 23, 21, 2, 15, 24, 21, 2, 21, 1, 15, 16, 24, 21, 24, 1, 0, 1, 24, 24, 16, 19, 16, 17, 19, 24, 19, 0, 17, 18, 19, 19, 20, 0 ],
  315. "vertices": [ 2, 7, 3.29, 11.03, 0.90465, 8, -18.45, 11.58, 0.09535, 2, 7, 19.25, 10.07, 0.68053, 8, -2.52, 10.26, 0.31947, 2, 7, 22.38, 9.89, 0.42656, 8, 0.6, 10.01, 0.57344, 2, 7, 25.33, 9.71, 0.21272, 8, 3.55, 9.76, 0.78728, 3, 7, 34.62, 9.15, 8.4E-4, 8, 12.83, 9, 0.98751, 9, -9.67, -6.84, 0.01164, 2, 8, 14.75, 8.84, 0.951, 9, -9.41, -4.93, 0.049, 2, 8, 16.39, 8.7, 0.88501, 9, -9.19, -3.3, 0.11499, 2, 8, 29.58, 7.61, 0.0281, 9, -7.43, 9.82, 0.9719, 1, 9, 18.34, 6.36, 1, 1, 9, 17.62, 1, 1, 2, 8, 16.22, -17.37, 0.00371, 9, 16.84, -4.8, 0.99629, 2, 8, 14.55, -10.01, 0.31558, 9, 9.41, -6.09, 0.68442, 2, 8, 13.31, -10.02, 0.49341, 9, 9.35, -7.33, 0.50659, 2, 8, 12.06, -10.03, 0.6211, 9, 9.3, -8.58, 0.3789, 3, 7, 24.42, -10.19, 0.17712, 8, 2.19, -10.11, 0.80464, 9, 8.88, -18.44, 0.01824, 3, 7, 21.18, -10.34, 0.40689, 8, -1.06, -10.19, 0.59018, 9, 8.79, -21.69, 0.00293, 3, 7, 18.19, -10.48, 0.64132, 8, -4.05, -10.26, 0.35859, 9, 8.7, -24.68, 9.0E-5, 3, 7, 2.72, -11.2, 0.88191, 8, -19.53, -10.63, 0.11806, 9, 8.28, -40.16, 3.0E-5, 1, 7, -4.88, -11.55, 1, 1, 7, -4.15, 0.57, 1, 1, 7, -3.5, 11.44, 1, 2, 7, 22.14, 0.04, 0.00163, 8, 0.14, 0.17, 0.99837, 2, 8, 20.11, -0.09, 0.04766, 9, -0.22, -0.03, 0.95234, 2, 7, 24.76, 0.07, 0.00128, 8, 2.76, 0.13, 0.99872, 1, 7, 18.88, 0.1, 1, 2, 8, 15.14, -0.13, 0.99379, 9, -0.43, -5, 0.00621, 2, 8, 12.51, -0.08, 0.99902, 9, -0.62, -7.62, 9.8E-4, 2, 8, 13.97, -0.11, 0.99815, 9, -0.52, -6.17, 0.00185 ],
  316. "hull": 21,
  317. "edges": [ 14, 16, 22, 20, 36, 38, 38, 40, 16, 18, 18, 20, 44, 18, 30, 42, 42, 4, 28, 30, 42, 46, 28, 46, 4, 6, 46, 6, 30, 32, 38, 48, 48, 42, 32, 48, 4, 2, 48, 2, 44, 50, 22, 50, 12, 14, 50, 12, 26, 28, 46, 52, 26, 52, 6, 8, 52, 8, 22, 24, 24, 26, 50, 54, 54, 52, 24, 54, 8, 10, 10, 12, 54, 10, 32, 34, 34, 36, 2, 0, 0, 40 ],
  318. "width": 26,
  319. "height": 55
  320. }
  321. },
  322. "youwaitao": {
  323. "youwaitao": {
  324. "type": "mesh",
  325. "uvs": [ 0.77602, 0.27286, 0.82719, 0.38081, 0.87969, 0.49155, 0.91275, 0.56128, 0.95009, 0.64005, 1, 0.74534, 1, 0.87147, 1, 1, 0.55722, 1, 0, 1, 0, 0.94537, 0, 0.83376, 0, 0.68008, 0, 0.58598, 0, 0.51481, 0, 0.4226, 0, 0.27891, 0, 0, 0.23028, 0, 0.64667, 0, 0.30666, 0.41128, 0.3975, 0.69583, 0.34669, 0.50695, 0.36923, 0.59795, 0.45826, 0.81782, 0.50431, 0.90498, 0.28085, 0.27229 ],
  326. "triangles": [ 8, 6, 7, 9, 25, 8, 8, 25, 6, 9, 10, 25, 10, 24, 25, 10, 11, 24, 6, 25, 5, 25, 24, 5, 11, 21, 24, 11, 12, 21, 24, 4, 5, 24, 21, 4, 21, 3, 4, 12, 23, 21, 21, 23, 3, 12, 13, 23, 23, 2, 3, 13, 22, 23, 23, 22, 2, 13, 14, 22, 14, 20, 22, 14, 15, 20, 22, 1, 2, 22, 20, 1, 20, 0, 1, 15, 26, 20, 15, 16, 26, 20, 26, 0, 16, 18, 26, 16, 17, 18, 26, 19, 0, 26, 18, 19 ],
  327. "vertices": [ 3, 14, 9.34, 8.9, 0.65713, 15, -4.01, 8.84, 0.33972, 16, -11.8, 10.67, 0.00315, 3, 14, 13.08, 9.45, 0.30999, 15, -0.26, 9.3, 0.64653, 16, -8.02, 10.54, 0.04349, 3, 14, 16.92, 10.02, 0.07039, 15, 3.6, 9.77, 0.74069, 16, -4.14, 10.42, 0.18892, 3, 14, 19.34, 10.37, 0.01608, 15, 6.02, 10.07, 0.63042, 16, -1.69, 10.34, 0.3535, 3, 14, 22.07, 10.78, 5.0E-4, 15, 8.76, 10.4, 0.42771, 16, 1.06, 10.25, 0.57179, 2, 15, 12.43, 10.85, 0.19192, 16, 4.75, 10.13, 0.80808, 2, 15, 16.68, 10.32, 0.04222, 16, 8.88, 8.95, 0.95778, 2, 15, 21.02, 9.77, 4.8E-4, 16, 13.08, 7.75, 0.99952, 1, 16, 10.89, 0.09, 1, 1, 16, 8.13, -9.56, 1, 2, 15, 16.94, -7.86, 0.0058, 16, 6.35, -9.05, 0.9942, 2, 15, 13.18, -7.39, 0.09863, 16, 2.7, -8, 0.90137, 3, 14, 21.72, -6.38, 0.00412, 15, 7.99, -6.74, 0.60456, 16, -2.32, -6.57, 0.39131, 3, 14, 18.54, -6.06, 0.06369, 15, 4.82, -6.34, 0.84692, 16, -5.4, -5.69, 0.08939, 3, 14, 16.13, -5.82, 0.22102, 15, 2.42, -6.04, 0.76808, 16, -7.73, -5.02, 0.0109, 2, 14, 13.01, -5.5, 0.6224, 15, -0.69, -5.65, 0.3776, 2, 14, 8.15, -5.02, 0.99447, 15, -5.54, -5.05, 0.00553, 1, 14, -1.29, -4.07, 1, 1, 14, -0.87, 0.05, 1, 2, 14, -0.13, 7.51, 0.99694, 15, -13.51, 7.68, 0.00306, 2, 14, 13.18, 0.03, 0.41503, 15, -0.39, -0.13, 0.58497, 1, 16, 0.16, 0.16, 1, 2, 15, 2.93, 0.18, 0.99963, 16, -6.27, 1.05, 3.7E-4, 2, 15, 6.05, 0.2, 0.99723, 16, -3.18, 0.59, 0.00277, 2, 15, 13.66, 0.87, 1.5E-4, 16, 4.44, 0.08, 0.99985, 2, 15, 16.71, 1.32, 0, 16, 7.52, 0.06, 1, 2, 14, 8.43, 0.03, 0.99977, 15, -5.14, 0, 2.3E-4 ],
  328. "hull": 20,
  329. "edges": [ 34, 36, 36, 38, 14, 16, 16, 18, 30, 40, 28, 30, 40, 44, 28, 44, 2, 4, 44, 4, 26, 28, 42, 46, 46, 44, 26, 46, 4, 6, 46, 6, 24, 26, 24, 42, 6, 8, 8, 10, 42, 8, 22, 24, 48, 42, 22, 48, 48, 10, 18, 20, 20, 22, 16, 50, 50, 48, 20, 50, 40, 2, 30, 32, 32, 34, 36, 52, 52, 40, 32, 52, 2, 0, 0, 38, 52, 0, 10, 12, 12, 14, 50, 12 ],
  330. "width": 18,
  331. "height": 34
  332. }
  333. },
  334. "youyan": {
  335. "youyan": {
  336. "type": "mesh",
  337. "uvs": [ 1, 1, 0.53213, 1, 0.52736, 0, 1, 0 ],
  338. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  339. "vertices": [ -6.07, -13.52, -7.11, 8.45, 12.85, 9.62, 13.91, -12.56 ],
  340. "hull": 4,
  341. "edges": [ 0, 6, 4, 6, 0, 2, 4, 2 ],
  342. "width": 47,
  343. "height": 20
  344. }
  345. },
  346. "zuiba": {
  347. "zuiba": { "x": 1.67, "y": -0.38, "rotation": -86.82, "width": 13, "height": 9 }
  348. },
  349. "zuoshou": {
  350. "zuoshou": {
  351. "type": "mesh",
  352. "uvs": [ 1, 0.20839, 0.85522, 0.403, 0.81988, 0.45051, 0.77965, 0.50459, 0.60641, 0.73745, 0.57557, 0.77892, 0.53661, 0.83128, 0.4111, 1, 0.05792, 1, 0, 1, 0, 0.75886, 0.1779, 0.55952, 0.21006, 0.52348, 0.24677, 0.48235, 0.45414, 0.24997, 0.49821, 0.2006, 0.53302, 0.16159, 0.67722, 0, 0.86376, 0, 1, 0, 0.64986, 0.29812, 0.36633, 0.68369, 0.6734, 0.26532, 0.60793, 0.35514, 0.39203, 0.64874, 0.42312, 0.60646 ],
  353. "triangles": [ 8, 21, 7, 7, 21, 6, 21, 8, 10, 21, 10, 11, 10, 8, 9, 6, 21, 5, 5, 21, 24, 11, 12, 21, 21, 12, 24, 12, 13, 24, 24, 25, 5, 5, 25, 4, 4, 25, 3, 24, 13, 25, 25, 23, 3, 25, 14, 23, 25, 13, 14, 3, 23, 2, 23, 20, 2, 2, 20, 1, 14, 15, 23, 23, 15, 20, 15, 16, 20, 20, 22, 1, 0, 22, 18, 0, 1, 22, 20, 16, 22, 22, 17, 18, 22, 16, 17, 18, 19, 0 ],
  354. "vertices": [ 2, 23, 5.54, 10.24, 0.98381, 24, -10.27, 9.62, 0.01619, 2, 23, 15.11, 9.31, 0.4908, 24, -0.66, 9.29, 0.5092, 2, 23, 17.44, 9.09, 0.27972, 24, 1.68, 9.21, 0.72028, 3, 23, 20.1, 8.83, 0.10688, 24, 4.35, 9.11, 0.89312, 25, -15.17, 7.57, 1.0E-5, 2, 24, 15.85, 8.71, 0.6012, 25, -3.7, 8.44, 0.3988, 2, 24, 17.9, 8.64, 0.40176, 25, -1.65, 8.6, 0.59824, 2, 24, 20.49, 8.55, 0.18725, 25, 0.93, 8.8, 0.81275, 1, 25, 9.24, 9.43, 1, 1, 25, 18.15, -1.07, 1, 1, 25, 19.61, -2.79, 1, 1, 25, 12.26, -9.04, 1, 2, 24, 19.28, -9.12, 0.2343, 25, 1.69, -8.9, 0.7657, 2, 24, 17.39, -8.89, 0.3922, 25, -0.22, -8.88, 0.6078, 2, 24, 15.22, -8.62, 0.59974, 25, -2.4, -8.85, 0.40026, 2, 23, 17.74, -7.28, 0.11718, 24, 3, -7.1, 0.88282, 2, 23, 15.17, -6.79, 0.3607, 24, 0.4, -6.78, 0.6393, 2, 23, 13.13, -6.41, 0.62128, 24, -1.65, -6.53, 0.37872, 1, 23, 4.71, -4.83, 1, 1, 23, 1.03, 1.44, 1, 1, 23, -1.65, 6.03, 1, 2, 23, 15.54, 0.28, 0.19481, 24, 0.33, 0.3, 0.80519, 2, 24, 19.3, -0.25, 0.00138, 25, 0.72, -0.09, 0.99862, 2, 23, 13.94, 0.41, 0.99426, 24, -1.27, 0.33, 0.00574, 1, 24, 3.14, 0.22, 1, 2, 24, 17.58, -0.2, 0.24024, 25, -0.99, -0.23, 0.75976, 2, 24, 15.5, -0.14, 0.88389, 25, -3.07, -0.4, 0.11611 ],
  355. "hull": 20,
  356. "edges": [ 36, 38, 16, 18, 42, 16, 34, 36, 18, 20, 0, 38, 14, 16, 30, 40, 40, 4, 30, 32, 32, 34, 36, 44, 44, 40, 32, 44, 0, 2, 2, 4, 44, 2, 28, 30, 40, 46, 28, 46, 4, 6, 46, 6, 20, 22, 22, 42, 12, 14, 42, 12, 22, 24, 42, 48, 24, 48, 10, 12, 48, 10, 24, 26, 26, 28, 46, 50, 50, 48, 26, 50, 6, 8, 8, 10, 50, 8 ],
  357. "width": 39,
  358. "height": 40
  359. }
  360. },
  361. "zuotui": {
  362. "zuotui": {
  363. "type": "mesh",
  364. "uvs": [ 1, 0.10867, 1, 0.348, 1, 0.38338, 1, 0.4223, 1, 0.69353, 1, 0.73495, 1, 0.78291, 1, 1, 0, 1, 0, 0.93365, 0, 0.79803, 0.25157, 0.75504, 0.25316, 0.7168, 0.25476, 0.67846, 0.26568, 0.41697, 0.26727, 0.379, 0.2689, 0.33991, 0.27957, 0.08446, 0.2831, 0, 0.6357, 0, 1, 0, 0.6099, 0.37631, 0.58983, 0.76661, 0.59174, 0.72945, 0.59404, 0.68468, 0.60786, 0.41588, 0.61181, 0.34845 ],
  365. "triangles": [ 8, 22, 7, 8, 9, 22, 9, 11, 22, 9, 10, 11, 22, 6, 7, 6, 22, 5, 22, 23, 5, 11, 12, 22, 22, 12, 23, 23, 24, 5, 24, 4, 5, 12, 13, 23, 23, 13, 24, 24, 25, 4, 25, 3, 4, 13, 14, 24, 24, 14, 25, 25, 21, 3, 21, 2, 3, 14, 15, 25, 25, 15, 21, 21, 26, 2, 15, 16, 21, 26, 1, 2, 21, 16, 26, 16, 17, 26, 26, 17, 19, 1, 26, 0, 19, 17, 18, 26, 19, 0, 19, 20, 0 ],
  366. "vertices": [ 2, 4, 4.19, 11.4, 0.81729, 5, -13.71, 12.05, 0.18271, 2, 4, 16.62, 12.08, 0.41493, 5, -1.26, 12.15, 0.58507, 2, 4, 18.45, 12.18, 0.28914, 5, 0.58, 12.17, 0.71086, 2, 4, 20.48, 12.29, 0.17393, 5, 2.6, 12.18, 0.82607, 2, 5, 16.71, 12.3, 0.92976, 6, -13.96, -6.18, 0.07024, 2, 5, 18.86, 12.31, 0.86141, 6, -13.71, -4.04, 0.13859, 2, 5, 21.35, 12.33, 0.7485, 6, -13.43, -1.56, 0.2515, 2, 5, 32.64, 12.42, 0.27678, 6, -12.17, 9.66, 0.72322, 1, 6, 17.64, 6.3, 1, 1, 6, 17.25, 2.87, 1, 2, 5, 22.38, -17.66, 1.6E-4, 6, 16.46, -4.14, 0.99984, 2, 5, 20.08, -10.13, 0.27083, 6, 8.71, -5.51, 0.72917, 2, 5, 18.09, -10.1, 0.5285, 6, 8.44, -7.48, 0.4715, 2, 5, 16.1, -10.07, 0.70142, 6, 8.17, -9.46, 0.29858, 3, 4, 21.41, -9.72, 0.28706, 5, 2.5, -9.85, 0.71278, 6, 6.33, -22.94, 1.6E-4, 2, 4, 19.44, -9.78, 0.45116, 5, 0.53, -9.82, 0.54884, 2, 4, 17.4, -9.84, 0.63092, 5, -1.51, -9.78, 0.36908, 2, 4, 4.12, -10.25, 0.9083, 5, -14.79, -9.57, 0.0917, 1, 4, -0.27, -10.39, 1, 1, 4, -0.85, 0.17, 1, 1, 4, -1.45, 11.08, 1, 2, 4, 18.73, 0.47, 0.19864, 5, 0.3, 0.46, 0.80136, 1, 5, 20.6, 0.02, 1, 1, 5, 18.67, 0.06, 1, 1, 5, 16.34, 0.11, 1, 2, 4, 20.79, 0.53, 0.00566, 5, 2.36, 0.42, 0.99434, 1, 4, 17.28, 0.45, 1 ],
  367. "hull": 21,
  368. "edges": [ 14, 16, 22, 20, 36, 38, 38, 40, 16, 18, 18, 20, 44, 18, 22, 44, 14, 12, 44, 12, 22, 24, 46, 44, 24, 46, 12, 10, 46, 10, 24, 26, 48, 46, 26, 48, 10, 8, 48, 8, 30, 42, 42, 4, 26, 28, 28, 30, 42, 50, 50, 48, 28, 50, 4, 6, 6, 8, 50, 6, 30, 32, 38, 52, 52, 42, 32, 52, 4, 2, 52, 2, 32, 34, 34, 36, 2, 0, 0, 40 ],
  369. "width": 30,
  370. "height": 52
  371. }
  372. },
  373. "zuowaitao": {
  374. "zuowaitao": {
  375. "type": "mesh",
  376. "uvs": [ 1, 0.18744, 0.96167, 0.3088, 0.93377, 0.39711, 0.89939, 0.50597, 0.86521, 0.61417, 0.84838, 0.66745, 0.80614, 0.80116, 0.77645, 0.89516, 0.74333, 1, 0.29198, 1, 0, 1, 0, 0.85304, 0, 0.7166, 0.05191, 0.59873, 0.08465, 0.52439, 0.1183, 0.44798, 0.17055, 0.32933, 0.21552, 0.22722, 0.31558, 0, 0.66663, 0, 1, 0, 0.54273, 0.36813, 0.42178, 0.62626, 0.57432, 0.27428, 0.49421, 0.47168, 0.37884, 0.74989, 0.33432, 0.8781, 0.45136, 0.56314 ],
  377. "triangles": [ 9, 26, 8, 8, 26, 7, 26, 9, 11, 9, 10, 11, 26, 25, 7, 7, 25, 6, 25, 26, 12, 26, 11, 12, 25, 22, 6, 12, 13, 25, 25, 13, 22, 6, 22, 5, 22, 27, 5, 5, 27, 4, 13, 14, 22, 22, 14, 27, 27, 24, 4, 4, 24, 3, 14, 15, 27, 27, 15, 24, 24, 21, 3, 15, 16, 24, 24, 16, 21, 16, 17, 21, 3, 21, 2, 21, 23, 2, 2, 23, 1, 21, 17, 23, 0, 1, 19, 17, 18, 23, 1, 23, 19, 23, 18, 19, 19, 20, 0 ],
  378. "vertices": [ 1, 11, 4.11, 7.79, 1, 2, 11, 8.07, 7.78, 0.96088, 12, -4.43, 8.04, 0.03912, 3, 11, 10.95, 7.78, 0.80354, 12, -1.55, 8.17, 0.1945, 13, -10.81, 8.32, 0.00196, 3, 11, 14.5, 7.77, 0.45927, 12, 2, 8.34, 0.4956, 13, -7.26, 8.43, 0.04513, 3, 11, 18.03, 7.76, 0.17971, 12, 5.52, 8.51, 0.59975, 13, -3.73, 8.55, 0.22054, 3, 11, 19.77, 7.76, 0.09869, 12, 7.26, 8.59, 0.53064, 13, -1.99, 8.6, 0.37067, 3, 11, 24.13, 7.75, 0.01258, 12, 11.61, 8.8, 0.21062, 13, 2.36, 8.74, 0.77681, 3, 11, 27.19, 7.74, 8.6E-4, 12, 14.68, 8.94, 0.06151, 13, 5.43, 8.84, 0.93762, 2, 12, 18.09, 9.11, 0.0096, 13, 8.85, 8.95, 0.9904, 1, 13, 10.88, 0.15, 1, 1, 13, 12.19, -5.54, 1, 2, 12, 17.1, -6.45, 0.01217, 13, 7.61, -6.6, 0.98783, 2, 12, 12.86, -7.5, 0.15607, 13, 3.35, -7.58, 0.84393, 2, 12, 8.95, -7.4, 0.51106, 13, -0.56, -7.41, 0.48894, 3, 11, 18.2, -8.11, 9.0E-5, 12, 6.48, -7.33, 0.77083, 13, -3.02, -7.31, 0.22909, 3, 11, 15.67, -7.92, 0.01937, 12, 3.94, -7.27, 0.91325, 13, -5.55, -7.21, 0.06738, 3, 11, 11.74, -7.62, 0.23758, 12, 0.01, -7.16, 0.76122, 13, -9.49, -7.04, 0.00121, 2, 11, 8.36, -7.36, 0.61071, 12, -3.38, -7.08, 0.38929, 2, 11, 0.84, -6.79, 0.98506, 12, -10.92, -6.88, 0.01494, 1, 11, -0.5, 0.1, 1, 1, 11, -1.78, 6.64, 1, 2, 11, 11.54, -0.08, 0.48722, 12, -0.57, 0.36, 0.51278, 2, 12, 8.03, -0.01, 0.97422, 13, -1.36, -0.01, 0.02578, 2, 11, 8.47, -0.03, 0.99928, 12, -3.64, 0.25, 7.2E-4, 2, 11, 14.97, -0.39, 0.00478, 12, 2.88, 0.21, 0.99522, 2, 11, 24.15, -0.95, 0, 13, 2.69, 0.04, 1, 1, 13, 6.89, 0.1, 1, 3, 11, 18.01, -0.67, 4.4E-4, 12, 5.92, 0.08, 0.9994, 13, -3.46, 0.11, 1.5E-4 ],
  379. "hull": 21,
  380. "edges": [ 0, 40, 36, 38, 38, 40, 16, 18, 18, 20, 32, 42, 42, 4, 32, 34, 34, 36, 38, 46, 46, 42, 34, 46, 0, 2, 2, 4, 46, 2, 30, 32, 42, 48, 30, 48, 4, 6, 48, 6, 24, 26, 26, 44, 44, 10, 50, 44, 24, 50, 10, 12, 50, 12, 20, 22, 22, 24, 18, 52, 52, 50, 22, 52, 12, 14, 14, 16, 52, 14, 26, 28, 28, 30, 44, 54, 54, 48, 28, 54, 6, 8, 8, 10, 54, 8 ],
  381. "width": 20,
  382. "height": 32
  383. }
  384. },
  385. "zuoyan": {
  386. "zuoyan": {
  387. "type": "mesh",
  388. "uvs": [ 0.42202, 1, 0, 1, 0, 0, 0.4244, 0 ],
  389. "triangles": [ 0, 1, 2, 3, 0, 2 ],
  390. "vertices": [ -5.5, -8.96, -5.5, 10.88, 14.5, 10.88, 14.5, -9.07 ],
  391. "hull": 4,
  392. "edges": [ 2, 4, 4, 6, 0, 2, 6, 0 ],
  393. "width": 47,
  394. "height": 20
  395. }
  396. }
  397. }
  398. },
  399. "animations": {
  400. "stand1": {
  401. "slots": {
  402. "biaoqing_4": {
  403. "color": [
  404. { "time": 0, "color": "ffffff00" }
  405. ]
  406. },
  407. "biyan": {
  408. "attachment": [
  409. { "time": 1.4667, "name": "biyan" },
  410. { "time": 1.5667, "name": null }
  411. ]
  412. },
  413. "meimao": {
  414. "attachment": [
  415. { "time": 0, "name": "meimao" },
  416. { "time": 1.3333, "name": "meimao" },
  417. { "time": 1.4667, "name": "meimao" },
  418. { "time": 1.5667, "name": "meimao" }
  419. ]
  420. },
  421. "youyan": {
  422. "attachment": [
  423. { "time": 1.4667, "name": null },
  424. { "time": 1.5667, "name": "youyan" }
  425. ]
  426. },
  427. "zuoyan": {
  428. "attachment": [
  429. { "time": 1.4667, "name": null },
  430. { "time": 1.5667, "name": "zuoyan" }
  431. ]
  432. }
  433. },
  434. "bones": {
  435. "root": {
  436. "rotate": [
  437. { "time": 0, "angle": 0 }
  438. ],
  439. "translate": [
  440. { "time": 0, "x": 0, "y": 0 }
  441. ],
  442. "scale": [
  443. { "time": 0, "x": 0.65, "y": 0.65 }
  444. ]
  445. },
  446. "bone": {
  447. "rotate": [
  448. { "time": 0, "angle": 0 }
  449. ],
  450. "translate": [
  451. { "time": 0, "x": 0, "y": 0 }
  452. ],
  453. "scale": [
  454. { "time": 0, "x": 1, "y": 1 }
  455. ]
  456. },
  457. "bone2": {
  458. "rotate": [
  459. { "time": 0, "angle": 0, "curve": "stepped" },
  460. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  461. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  462. { "time": 2, "angle": 0, "curve": "stepped" },
  463. { "time": 2.6667, "angle": 0 }
  464. ],
  465. "translate": [
  466. { "time": 0, "x": 0, "y": 0 },
  467. { "time": 0.6667, "x": 0.86, "y": -0.06 },
  468. { "time": 1.3333, "x": 0, "y": 0 },
  469. { "time": 2, "x": 0.86, "y": -0.06 },
  470. { "time": 2.6667, "x": 0, "y": 0 }
  471. ],
  472. "scale": [
  473. { "time": 0, "x": 1, "y": 1 },
  474. { "time": 0.6667, "x": 1.05, "y": 1 },
  475. { "time": 1.3333, "x": 1, "y": 1 },
  476. { "time": 2, "x": 1.05, "y": 1 },
  477. { "time": 2.6667, "x": 1, "y": 1 }
  478. ]
  479. },
  480. "bone3": {
  481. "rotate": [
  482. { "time": 0, "angle": 0, "curve": "stepped" },
  483. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  484. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  485. { "time": 2, "angle": 0, "curve": "stepped" },
  486. { "time": 2.6667, "angle": 0 }
  487. ],
  488. "translate": [
  489. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  490. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  491. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  492. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  493. { "time": 2.6667, "x": 0, "y": 0 }
  494. ],
  495. "scale": [
  496. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  497. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  498. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  499. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  500. { "time": 2.6667, "x": 1, "y": 1 }
  501. ]
  502. },
  503. "bone4": {
  504. "rotate": [
  505. { "time": 0, "angle": 0, "curve": "stepped" },
  506. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  507. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  508. { "time": 2, "angle": 0, "curve": "stepped" },
  509. { "time": 2.6667, "angle": 0 }
  510. ],
  511. "translate": [
  512. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  513. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  514. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  515. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  516. { "time": 2.6667, "x": 0, "y": 0 }
  517. ],
  518. "scale": [
  519. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  520. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  521. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  522. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  523. { "time": 2.6667, "x": 1, "y": 1 }
  524. ]
  525. },
  526. "bone5": {
  527. "rotate": [
  528. { "time": 0, "angle": 0, "curve": "stepped" },
  529. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  530. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  531. { "time": 2, "angle": 0, "curve": "stepped" },
  532. { "time": 2.6667, "angle": 0 }
  533. ],
  534. "translate": [
  535. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  536. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  537. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  538. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  539. { "time": 2.6667, "x": 0, "y": 0 }
  540. ],
  541. "scale": [
  542. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  543. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  544. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  545. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  546. { "time": 2.6667, "x": 1, "y": 1 }
  547. ]
  548. },
  549. "bone6": {
  550. "rotate": [
  551. { "time": 0, "angle": 0, "curve": "stepped" },
  552. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  553. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  554. { "time": 2, "angle": 0, "curve": "stepped" },
  555. { "time": 2.6667, "angle": 0 }
  556. ],
  557. "translate": [
  558. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  559. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  560. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  561. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  562. { "time": 2.6667, "x": 0, "y": 0 }
  563. ],
  564. "scale": [
  565. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  566. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  567. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  568. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  569. { "time": 2.6667, "x": 1, "y": 1 }
  570. ]
  571. },
  572. "bone7": {
  573. "rotate": [
  574. { "time": 0, "angle": 0, "curve": "stepped" },
  575. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  576. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  577. { "time": 2, "angle": 0, "curve": "stepped" },
  578. { "time": 2.6667, "angle": 0 }
  579. ],
  580. "translate": [
  581. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  582. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  583. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  584. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  585. { "time": 2.6667, "x": 0, "y": 0 }
  586. ],
  587. "scale": [
  588. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  589. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  590. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  591. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  592. { "time": 2.6667, "x": 1, "y": 1 }
  593. ]
  594. },
  595. "bone8": {
  596. "rotate": [
  597. { "time": 0, "angle": 0, "curve": "stepped" },
  598. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  599. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  600. { "time": 2, "angle": 0, "curve": "stepped" },
  601. { "time": 2.6667, "angle": 0 }
  602. ],
  603. "translate": [
  604. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  605. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  606. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  607. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  608. { "time": 2.6667, "x": 0, "y": 0 }
  609. ],
  610. "scale": [
  611. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  612. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  613. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  614. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  615. { "time": 2.6667, "x": 1, "y": 1 }
  616. ]
  617. },
  618. "bone9": {
  619. "rotate": [
  620. { "time": 0, "angle": 0, "curve": "stepped" },
  621. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  622. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  623. { "time": 2, "angle": 0, "curve": "stepped" },
  624. { "time": 2.6667, "angle": 0 }
  625. ],
  626. "translate": [
  627. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  628. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  629. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  630. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  631. { "time": 2.6667, "x": 0, "y": 0 }
  632. ],
  633. "scale": [
  634. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  635. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  636. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  637. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  638. { "time": 2.6667, "x": 1, "y": 1 }
  639. ]
  640. },
  641. "bone10": {
  642. "rotate": [
  643. { "time": 0, "angle": 0 },
  644. { "time": 0.6667, "angle": -3.78 },
  645. { "time": 1.3333, "angle": 0 },
  646. { "time": 2, "angle": -3.78 },
  647. { "time": 2.6667, "angle": 0 }
  648. ],
  649. "translate": [
  650. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  651. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  652. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  653. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  654. { "time": 2.6667, "x": 0, "y": 0 }
  655. ],
  656. "scale": [
  657. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  658. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  659. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  660. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  661. { "time": 2.6667, "x": 1, "y": 1 }
  662. ]
  663. },
  664. "bone11": {
  665. "rotate": [
  666. { "time": 0, "angle": 0 },
  667. { "time": 0.6667, "angle": -8.75 },
  668. { "time": 1.3333, "angle": 0 },
  669. { "time": 2, "angle": -8.75 },
  670. { "time": 2.6667, "angle": 0 }
  671. ],
  672. "translate": [
  673. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  674. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  675. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  676. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  677. { "time": 2.6667, "x": 0, "y": 0 }
  678. ],
  679. "scale": [
  680. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  681. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  682. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  683. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  684. { "time": 2.6667, "x": 1, "y": 1 }
  685. ]
  686. },
  687. "bone12": {
  688. "rotate": [
  689. { "time": 0, "angle": 0 },
  690. { "time": 0.6667, "angle": -8.88 },
  691. { "time": 1.3333, "angle": 0 },
  692. { "time": 2, "angle": -8.88 },
  693. { "time": 2.6667, "angle": 0 }
  694. ],
  695. "translate": [
  696. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  697. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  698. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  699. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  700. { "time": 2.6667, "x": 0, "y": 0 }
  701. ],
  702. "scale": [
  703. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  704. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  705. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  706. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  707. { "time": 2.6667, "x": 1, "y": 1 }
  708. ]
  709. },
  710. "bone13": {
  711. "rotate": [
  712. { "time": 0, "angle": 0 },
  713. { "time": 0.6667, "angle": 5.43 },
  714. { "time": 1.3333, "angle": 0 },
  715. { "time": 2, "angle": 5.43 },
  716. { "time": 2.6667, "angle": 0 }
  717. ],
  718. "translate": [
  719. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  720. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  721. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  722. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  723. { "time": 2.6667, "x": 0, "y": 0 }
  724. ],
  725. "scale": [
  726. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  727. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  728. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  729. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  730. { "time": 2.6667, "x": 1, "y": 1 }
  731. ]
  732. },
  733. "bone14": {
  734. "rotate": [
  735. { "time": 0, "angle": 0 },
  736. { "time": 0.6667, "angle": 10.74 },
  737. { "time": 1.3333, "angle": 0 },
  738. { "time": 2, "angle": 10.74 },
  739. { "time": 2.6667, "angle": 0 }
  740. ],
  741. "translate": [
  742. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  743. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  744. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  745. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  746. { "time": 2.6667, "x": 0, "y": 0 }
  747. ],
  748. "scale": [
  749. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  750. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  751. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  752. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  753. { "time": 2.6667, "x": 1, "y": 1 }
  754. ]
  755. },
  756. "bone15": {
  757. "rotate": [
  758. { "time": 0, "angle": 0 },
  759. { "time": 0.6667, "angle": 8.94 },
  760. { "time": 1.3333, "angle": 0 },
  761. { "time": 2, "angle": 8.94 },
  762. { "time": 2.6667, "angle": 0 }
  763. ],
  764. "translate": [
  765. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  766. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  767. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  768. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  769. { "time": 2.6667, "x": 0, "y": 0 }
  770. ],
  771. "scale": [
  772. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  773. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  774. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  775. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  776. { "time": 2.6667, "x": 1, "y": 1 }
  777. ]
  778. },
  779. "bone16": {
  780. "rotate": [
  781. { "time": 0, "angle": 0 },
  782. { "time": 0.6667, "angle": -23.1 },
  783. { "time": 1.3333, "angle": 0 },
  784. { "time": 2, "angle": -23.1 },
  785. { "time": 2.6667, "angle": 0 }
  786. ],
  787. "translate": [
  788. { "time": 0, "x": 0, "y": 0 },
  789. { "time": 0.6667, "x": -0.78, "y": -0.5 },
  790. { "time": 1.3333, "x": 0, "y": 0 },
  791. { "time": 2, "x": -0.78, "y": -0.5 },
  792. { "time": 2.6667, "x": 0, "y": 0 }
  793. ],
  794. "scale": [
  795. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  796. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  797. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  798. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  799. { "time": 2.6667, "x": 1, "y": 1 }
  800. ]
  801. },
  802. "bone17": {
  803. "rotate": [
  804. { "time": 0, "angle": 0, "curve": "stepped" },
  805. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  806. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  807. { "time": 2, "angle": 0, "curve": "stepped" },
  808. { "time": 2.6667, "angle": 0 }
  809. ],
  810. "translate": [
  811. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  812. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  813. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  814. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  815. { "time": 2.6667, "x": 0, "y": 0 }
  816. ],
  817. "scale": [
  818. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  819. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  820. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  821. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  822. { "time": 2.6667, "x": 1, "y": 1 }
  823. ]
  824. },
  825. "bone18": {
  826. "rotate": [
  827. { "time": 0, "angle": 0 },
  828. { "time": 0.6667, "angle": -4.95 },
  829. { "time": 1.3333, "angle": 0 },
  830. { "time": 2, "angle": -4.95 },
  831. { "time": 2.6667, "angle": 0 }
  832. ],
  833. "translate": [
  834. { "time": 0, "x": 0, "y": 0 },
  835. { "time": 0.6667, "x": 0.81, "y": -0.53 },
  836. { "time": 1.3333, "x": 0, "y": 0 },
  837. { "time": 2, "x": 0.81, "y": -0.53 },
  838. { "time": 2.6667, "x": 0, "y": 0 }
  839. ],
  840. "scale": [
  841. { "time": 0, "x": 1, "y": 1 },
  842. { "time": 0.6667, "x": 1.03, "y": 1 },
  843. { "time": 1.3333, "x": 1, "y": 1 },
  844. { "time": 2, "x": 1.03, "y": 1 },
  845. { "time": 2.6667, "x": 1, "y": 1 }
  846. ]
  847. },
  848. "bone19": {
  849. "rotate": [
  850. { "time": 0, "angle": -10.22 },
  851. { "time": 0.6667, "angle": -5.18 },
  852. { "time": 1.3333, "angle": -10.22 },
  853. { "time": 2, "angle": -5.18 },
  854. { "time": 2.6667, "angle": -10.22 }
  855. ],
  856. "translate": [
  857. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  858. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  859. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  860. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  861. { "time": 2.6667, "x": 0, "y": 0 }
  862. ],
  863. "scale": [
  864. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  865. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  866. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  867. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  868. { "time": 2.6667, "x": 1, "y": 1 }
  869. ]
  870. },
  871. "bone20": {
  872. "rotate": [
  873. { "time": 0, "angle": -6.6 },
  874. { "time": 0.6667, "angle": 0 },
  875. { "time": 1.3333, "angle": -6.6 },
  876. { "time": 2, "angle": 0 },
  877. { "time": 2.6667, "angle": -6.6 }
  878. ],
  879. "translate": [
  880. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  881. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  882. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  883. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  884. { "time": 2.6667, "x": 0, "y": 0 }
  885. ],
  886. "scale": [
  887. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  888. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  889. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  890. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  891. { "time": 2.6667, "x": 1, "y": 1 }
  892. ]
  893. },
  894. "bone21": {
  895. "rotate": [
  896. { "time": 0, "angle": 0, "curve": "stepped" },
  897. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  898. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  899. { "time": 2, "angle": 0, "curve": "stepped" },
  900. { "time": 2.6667, "angle": 0 }
  901. ],
  902. "translate": [
  903. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  904. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  905. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  906. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  907. { "time": 2.6667, "x": 0, "y": 0 }
  908. ],
  909. "scale": [
  910. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  911. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  912. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  913. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  914. { "time": 2.6667, "x": 1, "y": 1 }
  915. ]
  916. },
  917. "bone22": {
  918. "rotate": [
  919. { "time": 0, "angle": 3.93 },
  920. { "time": 0.6667, "angle": 5.71 },
  921. { "time": 1.3333, "angle": 3.93 },
  922. { "time": 2, "angle": 5.71 },
  923. { "time": 2.6667, "angle": 3.93 }
  924. ],
  925. "translate": [
  926. { "time": 0, "x": -0.49, "y": -1.08 },
  927. { "time": 0.6667, "x": -0.69, "y": 1.59 },
  928. { "time": 1.3333, "x": -0.49, "y": -1.08 },
  929. { "time": 2, "x": -0.69, "y": 1.59 },
  930. { "time": 2.6667, "x": -0.49, "y": -1.08 }
  931. ],
  932. "scale": [
  933. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  934. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  935. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  936. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  937. { "time": 2.6667, "x": 1, "y": 1 }
  938. ]
  939. },
  940. "bone23": {
  941. "rotate": [
  942. { "time": 0, "angle": 4.47 },
  943. { "time": 0.6667, "angle": -2.36 },
  944. { "time": 1.3333, "angle": 4.47 },
  945. { "time": 2, "angle": -2.36 },
  946. { "time": 2.6667, "angle": 4.47 }
  947. ],
  948. "translate": [
  949. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  950. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  951. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  952. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  953. { "time": 2.6667, "x": 0, "y": 0 }
  954. ],
  955. "scale": [
  956. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  957. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  958. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  959. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  960. { "time": 2.6667, "x": 1, "y": 1 }
  961. ]
  962. },
  963. "bone24": {
  964. "rotate": [
  965. { "time": 0, "angle": 13.83 },
  966. { "time": 0.6667, "angle": 0 },
  967. { "time": 1.3333, "angle": 13.83 },
  968. { "time": 2, "angle": 0 },
  969. { "time": 2.6667, "angle": 13.83 }
  970. ],
  971. "translate": [
  972. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  973. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  974. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  975. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  976. { "time": 2.6667, "x": 0, "y": 0 }
  977. ],
  978. "scale": [
  979. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  980. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  981. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  982. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  983. { "time": 2.6667, "x": 1, "y": 1 }
  984. ]
  985. },
  986. "bone25": {
  987. "rotate": [
  988. { "time": 0, "angle": 0, "curve": "stepped" },
  989. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  990. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  991. { "time": 2, "angle": 0, "curve": "stepped" },
  992. { "time": 2.6667, "angle": 0 }
  993. ],
  994. "translate": [
  995. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  996. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  997. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  998. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  999. { "time": 2.6667, "x": 0, "y": 0 }
  1000. ],
  1001. "scale": [
  1002. { "time": 0, "x": 1, "y": 1 },
  1003. { "time": 0.6667, "x": 1.01, "y": 1 },
  1004. { "time": 1.3333, "x": 1, "y": 1 },
  1005. { "time": 2, "x": 1.01, "y": 1 },
  1006. { "time": 2.6667, "x": 1, "y": 1 }
  1007. ]
  1008. },
  1009. "bone26": {
  1010. "rotate": [
  1011. { "time": 0, "angle": 0, "curve": "stepped" },
  1012. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1013. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  1014. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1015. { "time": 1.7, "angle": 0 }
  1016. ],
  1017. "translate": [
  1018. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1019. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1020. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1021. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1022. { "time": 1.7, "x": 0, "y": 0 }
  1023. ],
  1024. "scale": [
  1025. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1026. { "time": 1.3333, "x": 1, "y": 1 },
  1027. { "time": 1.4667, "x": 0.494, "y": 1, "curve": "stepped" },
  1028. { "time": 1.5667, "x": 0.494, "y": 1 },
  1029. { "time": 1.7, "x": 1, "y": 1 }
  1030. ]
  1031. },
  1032. "bone27": {
  1033. "rotate": [
  1034. { "time": 0, "angle": 0, "curve": "stepped" },
  1035. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1036. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  1037. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1038. { "time": 1.7, "angle": 0 }
  1039. ],
  1040. "translate": [
  1041. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1042. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1043. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1044. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1045. { "time": 1.7, "x": 0, "y": 0 }
  1046. ],
  1047. "scale": [
  1048. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1049. { "time": 1.3333, "x": 1, "y": 1 },
  1050. { "time": 1.4667, "x": 0.493, "y": 1, "curve": "stepped" },
  1051. { "time": 1.5667, "x": 0.493, "y": 1 },
  1052. { "time": 1.7, "x": 1, "y": 1 }
  1053. ]
  1054. },
  1055. "bone28": {
  1056. "rotate": [
  1057. { "time": 0, "angle": 0, "curve": "stepped" },
  1058. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1059. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1060. { "time": 2, "angle": 0, "curve": "stepped" },
  1061. { "time": 2.6667, "angle": 0 }
  1062. ],
  1063. "translate": [
  1064. { "time": 0, "x": -1.17, "y": -0.02 }
  1065. ],
  1066. "scale": [
  1067. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1068. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1069. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1070. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1071. { "time": 2.6667, "x": 1, "y": 1 }
  1072. ]
  1073. },
  1074. "bone29": {
  1075. "rotate": [
  1076. { "time": 0, "angle": 0, "curve": "stepped" },
  1077. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1078. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  1079. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1080. { "time": 1.7, "angle": 0 }
  1081. ],
  1082. "translate": [
  1083. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1084. { "time": 1.3333, "x": 0, "y": 0 },
  1085. { "time": 1.4667, "x": -1.99, "y": -0.04, "curve": "stepped" },
  1086. { "time": 1.5667, "x": -1.99, "y": -0.04 },
  1087. { "time": 1.7, "x": 0, "y": 0 }
  1088. ],
  1089. "scale": [
  1090. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1091. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1092. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1093. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1094. { "time": 1.7, "x": 1, "y": 1 }
  1095. ]
  1096. },
  1097. "bone30": {
  1098. "rotate": [
  1099. { "time": 0, "angle": 0, "curve": "stepped" },
  1100. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1101. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1102. { "time": 2, "angle": 0, "curve": "stepped" },
  1103. { "time": 2.6667, "angle": 0 }
  1104. ],
  1105. "translate": [
  1106. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1107. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1108. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1109. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1110. { "time": 2.6667, "x": 0, "y": 0 }
  1111. ],
  1112. "scale": [
  1113. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1114. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1115. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1116. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1117. { "time": 2.6667, "x": 1, "y": 1 }
  1118. ]
  1119. },
  1120. "bone31": {
  1121. "rotate": [
  1122. { "time": 0, "angle": 0 },
  1123. { "time": 0.6667, "angle": -1.93 },
  1124. { "time": 1.3333, "angle": 0 },
  1125. { "time": 2, "angle": -1.93 },
  1126. { "time": 2.6667, "angle": 0 }
  1127. ],
  1128. "translate": [
  1129. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1130. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1131. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1132. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1133. { "time": 2.6667, "x": 0, "y": 0 }
  1134. ],
  1135. "scale": [
  1136. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1137. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1138. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1139. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1140. { "time": 2.6667, "x": 1, "y": 1 }
  1141. ]
  1142. },
  1143. "bone32": {
  1144. "rotate": [
  1145. { "time": 0, "angle": 0 },
  1146. { "time": 0.6667, "angle": -17.39 },
  1147. { "time": 1.3333, "angle": 0 },
  1148. { "time": 2, "angle": -17.39 },
  1149. { "time": 2.6667, "angle": 0 }
  1150. ],
  1151. "translate": [
  1152. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1153. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1154. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1155. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1156. { "time": 2.6667, "x": 0, "y": 0 }
  1157. ],
  1158. "scale": [
  1159. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1160. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1161. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1162. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1163. { "time": 2.6667, "x": 1, "y": 1 }
  1164. ]
  1165. },
  1166. "bone33": {
  1167. "rotate": [
  1168. { "time": 0, "angle": 0 },
  1169. { "time": 0.6667, "angle": -4.1 },
  1170. { "time": 1.3333, "angle": 0 },
  1171. { "time": 2, "angle": -4.1 },
  1172. { "time": 2.6667, "angle": 0 }
  1173. ],
  1174. "translate": [
  1175. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1176. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1177. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1178. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1179. { "time": 2.6667, "x": 0, "y": 0 }
  1180. ],
  1181. "scale": [
  1182. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1183. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1184. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1185. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1186. { "time": 2.6667, "x": 1, "y": 1 }
  1187. ]
  1188. },
  1189. "bone34": {
  1190. "rotate": [
  1191. { "time": 0, "angle": 0 },
  1192. { "time": 0.6667, "angle": -4.44 },
  1193. { "time": 1.3333, "angle": 0 },
  1194. { "time": 2, "angle": -4.44 },
  1195. { "time": 2.6667, "angle": 0 }
  1196. ],
  1197. "translate": [
  1198. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1199. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1200. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1201. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1202. { "time": 2.6667, "x": 0, "y": 0 }
  1203. ],
  1204. "scale": [
  1205. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1206. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1207. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1208. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1209. { "time": 2.6667, "x": 1, "y": 1 }
  1210. ]
  1211. },
  1212. "bone35": {
  1213. "rotate": [
  1214. { "time": 0, "angle": 0 },
  1215. { "time": 0.6667, "angle": 3.41 },
  1216. { "time": 1.3333, "angle": 0 },
  1217. { "time": 2, "angle": 3.41 },
  1218. { "time": 2.6667, "angle": 0 }
  1219. ],
  1220. "translate": [
  1221. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1222. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1223. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1224. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1225. { "time": 2.6667, "x": 0, "y": 0 }
  1226. ],
  1227. "scale": [
  1228. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1229. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1230. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1231. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1232. { "time": 2.6667, "x": 1, "y": 1 }
  1233. ]
  1234. },
  1235. "bone36": {
  1236. "rotate": [
  1237. { "time": 0, "angle": 0, "curve": "stepped" },
  1238. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1239. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1240. { "time": 2, "angle": 0, "curve": "stepped" },
  1241. { "time": 2.6667, "angle": 0 }
  1242. ],
  1243. "translate": [
  1244. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1245. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1246. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1247. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1248. { "time": 2.6667, "x": 0, "y": 0 }
  1249. ],
  1250. "scale": [
  1251. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1252. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1253. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1254. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1255. { "time": 2.6667, "x": 1, "y": 1 }
  1256. ]
  1257. },
  1258. "bone37": {
  1259. "rotate": [
  1260. { "time": 0, "angle": 0 },
  1261. { "time": 0.6667, "angle": -13.78 },
  1262. { "time": 1.3333, "angle": 0 },
  1263. { "time": 2, "angle": -13.78 },
  1264. { "time": 2.6667, "angle": 0 }
  1265. ],
  1266. "translate": [
  1267. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1268. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1269. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1270. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1271. { "time": 2.6667, "x": 0, "y": 0 }
  1272. ],
  1273. "scale": [
  1274. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1275. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1276. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1277. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1278. { "time": 2.6667, "x": 1, "y": 1 }
  1279. ]
  1280. },
  1281. "bone38": {
  1282. "rotate": [
  1283. { "time": 0, "angle": 0 },
  1284. { "time": 0.6667, "angle": -12.53 },
  1285. { "time": 1.3333, "angle": 0 },
  1286. { "time": 2, "angle": -12.53 },
  1287. { "time": 2.6667, "angle": 0 }
  1288. ],
  1289. "translate": [
  1290. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1291. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1292. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1293. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1294. { "time": 2.6667, "x": 0, "y": 0 }
  1295. ],
  1296. "scale": [
  1297. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1298. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1299. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1300. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1301. { "time": 2.6667, "x": 1, "y": 1 }
  1302. ]
  1303. },
  1304. "bone39": {
  1305. "rotate": [
  1306. { "time": 0, "angle": 0, "curve": "stepped" },
  1307. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1308. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1309. { "time": 2, "angle": 0, "curve": "stepped" },
  1310. { "time": 2.6667, "angle": 0 }
  1311. ],
  1312. "translate": [
  1313. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1314. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1315. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1316. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1317. { "time": 2.6667, "x": 0, "y": 0 }
  1318. ],
  1319. "scale": [
  1320. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1321. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1322. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1323. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1324. { "time": 2.6667, "x": 1, "y": 1 }
  1325. ]
  1326. },
  1327. "bone40": {
  1328. "rotate": [
  1329. { "time": 0, "angle": 0 },
  1330. { "time": 0.6667, "angle": 3.02 },
  1331. { "time": 1.3333, "angle": 0 },
  1332. { "time": 2, "angle": 3.02 },
  1333. { "time": 2.6667, "angle": 0 }
  1334. ],
  1335. "translate": [
  1336. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1337. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1338. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1339. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1340. { "time": 2.6667, "x": 0, "y": 0 }
  1341. ],
  1342. "scale": [
  1343. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1344. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1345. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1346. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1347. { "time": 2.6667, "x": 1, "y": 1 }
  1348. ]
  1349. },
  1350. "bone41": {
  1351. "rotate": [
  1352. { "time": 0, "angle": 0 },
  1353. { "time": 0.6667, "angle": 11.53 },
  1354. { "time": 1.3333, "angle": 0 },
  1355. { "time": 2, "angle": 11.53 },
  1356. { "time": 2.6667, "angle": 0 }
  1357. ],
  1358. "translate": [
  1359. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1360. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1361. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1362. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1363. { "time": 2.6667, "x": 0, "y": 0 }
  1364. ],
  1365. "scale": [
  1366. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1367. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1368. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1369. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1370. { "time": 2.6667, "x": 1, "y": 1 }
  1371. ]
  1372. },
  1373. "bone45": {
  1374. "rotate": [
  1375. { "time": 0, "angle": 0 },
  1376. { "time": 0.6667, "angle": -9.75 },
  1377. { "time": 1.3333, "angle": 0 },
  1378. { "time": 2, "angle": -9.75 },
  1379. { "time": 2.6667, "angle": 0 }
  1380. ],
  1381. "translate": [
  1382. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1383. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1384. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1385. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1386. { "time": 2.6667, "x": 0, "y": 0 }
  1387. ],
  1388. "scale": [
  1389. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1390. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1391. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1392. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1393. { "time": 2.6667, "x": 1, "y": 1 }
  1394. ]
  1395. },
  1396. "bone46": {
  1397. "rotate": [
  1398. { "time": 0, "angle": 0 },
  1399. { "time": 0.6667, "angle": 6.19 },
  1400. { "time": 1.3333, "angle": 0 },
  1401. { "time": 2, "angle": 6.19 },
  1402. { "time": 2.6667, "angle": 0 }
  1403. ],
  1404. "translate": [
  1405. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1406. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1407. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1408. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1409. { "time": 2.6667, "x": 0, "y": 0 }
  1410. ],
  1411. "scale": [
  1412. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1413. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1414. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1415. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1416. { "time": 2.6667, "x": 1, "y": 1 }
  1417. ]
  1418. },
  1419. "bone47": {
  1420. "rotate": [
  1421. { "time": 0, "angle": 0 },
  1422. { "time": 0.6667, "angle": 9.54 },
  1423. { "time": 1.3333, "angle": 0 },
  1424. { "time": 2, "angle": 9.54 },
  1425. { "time": 2.6667, "angle": 0 }
  1426. ],
  1427. "translate": [
  1428. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1429. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1430. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1431. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1432. { "time": 2.6667, "x": 0, "y": 0 }
  1433. ],
  1434. "scale": [
  1435. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1436. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1437. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1438. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1439. { "time": 2.6667, "x": 1, "y": 1 }
  1440. ]
  1441. },
  1442. "bone48": {
  1443. "rotate": [
  1444. { "time": 0, "angle": 0 },
  1445. { "time": 0.6667, "angle": -2.53 },
  1446. { "time": 1.3333, "angle": 0 },
  1447. { "time": 2, "angle": -2.53 },
  1448. { "time": 2.6667, "angle": 0 }
  1449. ],
  1450. "translate": [
  1451. { "time": 0, "x": 0, "y": 0 },
  1452. { "time": 0.6667, "x": 5.01, "y": 0.35 },
  1453. { "time": 1.3333, "x": 0, "y": 0 },
  1454. { "time": 2, "x": 5.01, "y": 0.35 },
  1455. { "time": 2.6667, "x": 0, "y": 0 }
  1456. ],
  1457. "scale": [
  1458. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1459. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1460. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1461. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1462. { "time": 2.6667, "x": 1, "y": 1 }
  1463. ]
  1464. },
  1465. "bone49": {
  1466. "rotate": [
  1467. { "time": 0, "angle": 0 },
  1468. { "time": 0.6667, "angle": -6.21 },
  1469. { "time": 1.3333, "angle": 0 },
  1470. { "time": 2, "angle": -6.21 },
  1471. { "time": 2.6667, "angle": 0 }
  1472. ],
  1473. "translate": [
  1474. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1475. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1476. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1477. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1478. { "time": 2.6667, "x": 0, "y": 0 }
  1479. ],
  1480. "scale": [
  1481. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1482. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1483. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1484. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1485. { "time": 2.6667, "x": 1, "y": 1 }
  1486. ]
  1487. },
  1488. "bone50": {
  1489. "rotate": [
  1490. { "time": 0, "angle": 0 },
  1491. { "time": 0.6667, "angle": -10 },
  1492. { "time": 1.3333, "angle": 0 },
  1493. { "time": 2, "angle": -10 },
  1494. { "time": 2.6667, "angle": 0 }
  1495. ],
  1496. "translate": [
  1497. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1498. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1499. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1500. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1501. { "time": 2.6667, "x": 0, "y": 0 }
  1502. ],
  1503. "scale": [
  1504. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1505. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1506. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1507. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1508. { "time": 2.6667, "x": 1, "y": 1 }
  1509. ]
  1510. },
  1511. "bone51": {
  1512. "rotate": [
  1513. { "time": 0, "angle": -10.65 },
  1514. { "time": 0.6667, "angle": 14.57 },
  1515. { "time": 1.3333, "angle": -10.65 },
  1516. { "time": 2, "angle": 14.57 },
  1517. { "time": 2.6667, "angle": -10.65 }
  1518. ],
  1519. "translate": [
  1520. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1521. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1522. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1523. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1524. { "time": 2.6667, "x": 0, "y": 0 }
  1525. ],
  1526. "scale": [
  1527. { "time": 0, "x": 1, "y": 1 },
  1528. { "time": 0.6667, "x": 1.03, "y": 1 },
  1529. { "time": 1.3333, "x": 1, "y": 1 },
  1530. { "time": 2, "x": 1.03, "y": 1 },
  1531. { "time": 2.6667, "x": 1, "y": 1 }
  1532. ]
  1533. },
  1534. "bone52": {
  1535. "rotate": [
  1536. { "time": 0, "angle": 13.69 },
  1537. { "time": 0.6667, "angle": 10.21 },
  1538. { "time": 1.3333, "angle": 13.69 },
  1539. { "time": 2, "angle": 16.91 },
  1540. { "time": 2.6667, "angle": 13.69 }
  1541. ],
  1542. "translate": [
  1543. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1544. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1545. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1546. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1547. { "time": 2.6667, "x": 0, "y": 0 }
  1548. ],
  1549. "scale": [
  1550. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1551. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1552. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1553. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1554. { "time": 2.6667, "x": 1, "y": 1 }
  1555. ]
  1556. },
  1557. "bone53": {
  1558. "rotate": [
  1559. { "time": 0, "angle": 0 },
  1560. { "time": 0.6667, "angle": 4.12 },
  1561. { "time": 1.3333, "angle": 0 },
  1562. { "time": 2, "angle": 4.12 },
  1563. { "time": 2.6667, "angle": 0 }
  1564. ],
  1565. "translate": [
  1566. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1567. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1568. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1569. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1570. { "time": 2.6667, "x": 0, "y": 0 }
  1571. ],
  1572. "scale": [
  1573. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1574. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1575. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1576. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1577. { "time": 2.6667, "x": 1, "y": 1 }
  1578. ]
  1579. },
  1580. "bone54": {
  1581. "rotate": [
  1582. { "time": 0, "angle": 0, "curve": "stepped" },
  1583. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1584. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1585. { "time": 2, "angle": 0, "curve": "stepped" },
  1586. { "time": 2.6667, "angle": 0 }
  1587. ],
  1588. "translate": [
  1589. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1590. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1591. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1592. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1593. { "time": 2.6667, "x": 0, "y": 0 }
  1594. ],
  1595. "scale": [
  1596. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1597. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1598. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1599. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1600. { "time": 2.6667, "x": 1, "y": 1 }
  1601. ]
  1602. },
  1603. "bone55": {
  1604. "rotate": [
  1605. { "time": 0, "angle": 0, "curve": "stepped" },
  1606. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1607. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1608. { "time": 2, "angle": 0, "curve": "stepped" },
  1609. { "time": 2.6667, "angle": 0 }
  1610. ],
  1611. "translate": [
  1612. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1613. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1614. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1615. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1616. { "time": 2.6667, "x": 0, "y": 0 }
  1617. ],
  1618. "scale": [
  1619. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1620. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1621. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1622. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1623. { "time": 2.6667, "x": 1, "y": 1 }
  1624. ]
  1625. },
  1626. "bone56": {
  1627. "rotate": [
  1628. { "time": 0, "angle": 0, "curve": "stepped" },
  1629. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1630. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1631. { "time": 2, "angle": 0, "curve": "stepped" },
  1632. { "time": 2.6667, "angle": 0 }
  1633. ],
  1634. "translate": [
  1635. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1636. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1637. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1638. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1639. { "time": 2.6667, "x": 0, "y": 0 }
  1640. ],
  1641. "scale": [
  1642. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1643. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1644. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1645. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1646. { "time": 2.6667, "x": 1, "y": 1 }
  1647. ]
  1648. },
  1649. "bone57": {
  1650. "rotate": [
  1651. { "time": 0, "angle": 0, "curve": "stepped" },
  1652. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1653. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1654. { "time": 2, "angle": 0, "curve": "stepped" },
  1655. { "time": 2.6667, "angle": 0 }
  1656. ],
  1657. "translate": [
  1658. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1659. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1660. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1661. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1662. { "time": 2.6667, "x": 0, "y": 0 }
  1663. ],
  1664. "scale": [
  1665. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1666. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1667. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1668. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1669. { "time": 2.6667, "x": 1, "y": 1 }
  1670. ]
  1671. },
  1672. "bone58": {
  1673. "rotate": [
  1674. { "time": 0, "angle": 26.26 },
  1675. { "time": 0.6667, "angle": 42.87 },
  1676. { "time": 1.3333, "angle": 26.26 },
  1677. { "time": 2, "angle": 42.87 },
  1678. { "time": 2.6667, "angle": 26.26 }
  1679. ],
  1680. "translate": [
  1681. { "time": 0, "x": -34.16, "y": 14.46, "curve": "stepped" },
  1682. { "time": 0.6667, "x": -34.16, "y": 14.46, "curve": "stepped" },
  1683. { "time": 1.3333, "x": -34.16, "y": 14.46, "curve": "stepped" },
  1684. { "time": 2, "x": -34.16, "y": 14.46, "curve": "stepped" },
  1685. { "time": 2.6667, "x": -34.16, "y": 14.46 }
  1686. ],
  1687. "scale": [
  1688. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1689. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1690. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1691. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1692. { "time": 2.6667, "x": 1, "y": 1 }
  1693. ]
  1694. },
  1695. "bone42": {
  1696. "rotate": [
  1697. { "time": 0, "angle": 0, "curve": "stepped" },
  1698. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1699. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1700. { "time": 2, "angle": 0, "curve": "stepped" },
  1701. { "time": 2.6667, "angle": 0 }
  1702. ],
  1703. "translate": [
  1704. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1705. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1706. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1707. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1708. { "time": 2.6667, "x": 0, "y": 0 }
  1709. ],
  1710. "scale": [
  1711. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1712. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1713. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1714. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1715. { "time": 2.6667, "x": 1, "y": 1 }
  1716. ]
  1717. },
  1718. "bone43": {
  1719. "rotate": [
  1720. { "time": 0, "angle": 0, "curve": "stepped" },
  1721. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1722. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1723. { "time": 2, "angle": 0, "curve": "stepped" },
  1724. { "time": 2.6667, "angle": 0 }
  1725. ],
  1726. "translate": [
  1727. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1728. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1729. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1730. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1731. { "time": 2.6667, "x": 0, "y": 0 }
  1732. ],
  1733. "scale": [
  1734. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1735. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1736. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1737. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1738. { "time": 2.6667, "x": 1, "y": 1 }
  1739. ]
  1740. },
  1741. "bone44": {
  1742. "rotate": [
  1743. { "time": 0, "angle": 0, "curve": "stepped" },
  1744. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1745. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1746. { "time": 2, "angle": 0, "curve": "stepped" },
  1747. { "time": 2.6667, "angle": 0 }
  1748. ],
  1749. "translate": [
  1750. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1751. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1752. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1753. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1754. { "time": 2.6667, "x": 0, "y": 0 }
  1755. ],
  1756. "scale": [
  1757. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1758. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1759. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1760. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1761. { "time": 2.6667, "x": 1, "y": 1 }
  1762. ]
  1763. },
  1764. "bone59": {
  1765. "rotate": [
  1766. { "time": 0, "angle": 0, "curve": "stepped" },
  1767. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1768. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1769. { "time": 2, "angle": 0, "curve": "stepped" },
  1770. { "time": 2.6667, "angle": 0 }
  1771. ],
  1772. "translate": [
  1773. { "time": 0, "x": 0, "y": 0 },
  1774. { "time": 0.6667, "x": 0.3, "y": 1.26 },
  1775. { "time": 1.3333, "x": 0, "y": 0 },
  1776. { "time": 2, "x": 0.3, "y": 1.26 },
  1777. { "time": 2.6667, "x": 0, "y": 0 }
  1778. ],
  1779. "scale": [
  1780. { "time": 0, "x": 1, "y": 1 },
  1781. { "time": 0.6667, "x": 1.3, "y": 1 },
  1782. { "time": 1.3333, "x": 1, "y": 1 },
  1783. { "time": 2, "x": 1.3, "y": 1 },
  1784. { "time": 2.6667, "x": 1, "y": 1 }
  1785. ]
  1786. },
  1787. "bone61": {
  1788. "rotate": [
  1789. { "time": 0, "angle": 0 },
  1790. { "time": 0.6667, "angle": -14.21 },
  1791. { "time": 1.3333, "angle": 0 },
  1792. { "time": 2, "angle": -14.21 },
  1793. { "time": 2.6667, "angle": 0 }
  1794. ],
  1795. "translate": [
  1796. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1797. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1798. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1799. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1800. { "time": 2.6667, "x": 0, "y": 0 }
  1801. ],
  1802. "scale": [
  1803. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1804. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1805. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1806. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1807. { "time": 2.6667, "x": 1, "y": 1 }
  1808. ]
  1809. }
  1810. },
  1811. "deform": {
  1812. "default": {
  1813. "shenti": {
  1814. "shenti": [
  1815. { "time": 0 },
  1816. {
  1817. "time": 0.6667,
  1818. "offset": 26,
  1819. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ]
  1820. },
  1821. { "time": 1.3333 },
  1822. {
  1823. "time": 2,
  1824. "offset": 26,
  1825. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ]
  1826. },
  1827. { "time": 2.6667 }
  1828. ]
  1829. },
  1830. "toufa1": {
  1831. "toufa1": [
  1832. { "time": 0 },
  1833. {
  1834. "time": 0.6667,
  1835. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  1836. },
  1837. { "time": 1.3333 },
  1838. {
  1839. "time": 2,
  1840. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  1841. },
  1842. { "time": 2.6667 }
  1843. ]
  1844. },
  1845. "youyan": {
  1846. "youyan": [
  1847. { "time": 1.4667 }
  1848. ]
  1849. },
  1850. "zuoyan": {
  1851. "zuoyan": [
  1852. { "time": 1.4667 }
  1853. ]
  1854. }
  1855. }
  1856. }
  1857. },
  1858. "stand2": {
  1859. "slots": {
  1860. "biaoqing_4": {
  1861. "color": [
  1862. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1863. { "time": 0.3, "color": "ffffff00" },
  1864. { "time": 0.5, "color": "ffffffff", "curve": "stepped" },
  1865. { "time": 2, "color": "ffffffff" },
  1866. { "time": 2.1667, "color": "ffffff00" }
  1867. ]
  1868. },
  1869. "biyan": {
  1870. "attachment": [
  1871. { "time": 1.4667, "name": "biyan" },
  1872. { "time": 1.5667, "name": null }
  1873. ]
  1874. },
  1875. "meimao": {
  1876. "attachment": [
  1877. { "time": 0, "name": "meimao" },
  1878. { "time": 1.3333, "name": "meimao" },
  1879. { "time": 1.4667, "name": "meimao" },
  1880. { "time": 1.5667, "name": "meimao" }
  1881. ]
  1882. },
  1883. "youyan": {
  1884. "attachment": [
  1885. { "time": 1.4667, "name": null },
  1886. { "time": 1.5667, "name": "youyan" }
  1887. ]
  1888. },
  1889. "zuoyan": {
  1890. "attachment": [
  1891. { "time": 1.4667, "name": null },
  1892. { "time": 1.5667, "name": "zuoyan" }
  1893. ]
  1894. }
  1895. },
  1896. "bones": {
  1897. "root": {
  1898. "rotate": [
  1899. { "time": 0, "angle": 0 }
  1900. ],
  1901. "translate": [
  1902. { "time": 0, "x": 0, "y": 0 }
  1903. ],
  1904. "scale": [
  1905. { "time": 0, "x": 0.65, "y": 0.65 }
  1906. ]
  1907. },
  1908. "bone": {
  1909. "rotate": [
  1910. { "time": 0, "angle": 0 }
  1911. ],
  1912. "translate": [
  1913. { "time": 0, "x": 0, "y": 0 }
  1914. ],
  1915. "scale": [
  1916. { "time": 0, "x": 1, "y": 1 }
  1917. ]
  1918. },
  1919. "bone2": {
  1920. "rotate": [
  1921. { "time": 0, "angle": 0, "curve": "stepped" },
  1922. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1923. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1924. { "time": 2, "angle": 0, "curve": "stepped" },
  1925. { "time": 2.6667, "angle": 0 }
  1926. ],
  1927. "translate": [
  1928. { "time": 0, "x": 0, "y": 0 },
  1929. { "time": 0.6667, "x": 0.86, "y": -0.06 },
  1930. { "time": 1.3333, "x": 0, "y": 0 },
  1931. { "time": 2, "x": 0.86, "y": -0.06 },
  1932. { "time": 2.6667, "x": 0, "y": 0 }
  1933. ],
  1934. "scale": [
  1935. { "time": 0, "x": 1, "y": 1 },
  1936. { "time": 0.6667, "x": 1.05, "y": 1 },
  1937. { "time": 1.3333, "x": 1, "y": 1 },
  1938. { "time": 2, "x": 1.05, "y": 1 },
  1939. { "time": 2.6667, "x": 1, "y": 1 }
  1940. ]
  1941. },
  1942. "bone3": {
  1943. "rotate": [
  1944. { "time": 0, "angle": 0, "curve": "stepped" },
  1945. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1946. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1947. { "time": 2, "angle": 0, "curve": "stepped" },
  1948. { "time": 2.6667, "angle": 0 }
  1949. ],
  1950. "translate": [
  1951. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1952. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1953. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1954. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1955. { "time": 2.6667, "x": 0, "y": 0 }
  1956. ],
  1957. "scale": [
  1958. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1959. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1960. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1961. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1962. { "time": 2.6667, "x": 1, "y": 1 }
  1963. ]
  1964. },
  1965. "bone4": {
  1966. "rotate": [
  1967. { "time": 0, "angle": 0, "curve": "stepped" },
  1968. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1969. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1970. { "time": 2, "angle": 0, "curve": "stepped" },
  1971. { "time": 2.6667, "angle": 0 }
  1972. ],
  1973. "translate": [
  1974. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1975. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1976. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1977. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1978. { "time": 2.6667, "x": 0, "y": 0 }
  1979. ],
  1980. "scale": [
  1981. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1982. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1983. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1984. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1985. { "time": 2.6667, "x": 1, "y": 1 }
  1986. ]
  1987. },
  1988. "bone5": {
  1989. "rotate": [
  1990. { "time": 0, "angle": 0, "curve": "stepped" },
  1991. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1992. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1993. { "time": 2, "angle": 0, "curve": "stepped" },
  1994. { "time": 2.6667, "angle": 0 }
  1995. ],
  1996. "translate": [
  1997. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1998. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1999. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2000. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2001. { "time": 2.6667, "x": 0, "y": 0 }
  2002. ],
  2003. "scale": [
  2004. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2005. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2006. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2007. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2008. { "time": 2.6667, "x": 1, "y": 1 }
  2009. ]
  2010. },
  2011. "bone6": {
  2012. "rotate": [
  2013. { "time": 0, "angle": 0, "curve": "stepped" },
  2014. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2015. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2016. { "time": 2, "angle": 0, "curve": "stepped" },
  2017. { "time": 2.6667, "angle": 0 }
  2018. ],
  2019. "translate": [
  2020. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2021. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2022. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2023. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2024. { "time": 2.6667, "x": 0, "y": 0 }
  2025. ],
  2026. "scale": [
  2027. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2028. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2029. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2030. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2031. { "time": 2.6667, "x": 1, "y": 1 }
  2032. ]
  2033. },
  2034. "bone7": {
  2035. "rotate": [
  2036. { "time": 0, "angle": 0, "curve": "stepped" },
  2037. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2038. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2039. { "time": 2, "angle": 0, "curve": "stepped" },
  2040. { "time": 2.6667, "angle": 0 }
  2041. ],
  2042. "translate": [
  2043. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2044. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2045. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2046. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2047. { "time": 2.6667, "x": 0, "y": 0 }
  2048. ],
  2049. "scale": [
  2050. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2051. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2052. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2053. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2054. { "time": 2.6667, "x": 1, "y": 1 }
  2055. ]
  2056. },
  2057. "bone8": {
  2058. "rotate": [
  2059. { "time": 0, "angle": 0, "curve": "stepped" },
  2060. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2061. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2062. { "time": 2, "angle": 0, "curve": "stepped" },
  2063. { "time": 2.6667, "angle": 0 }
  2064. ],
  2065. "translate": [
  2066. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2067. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2068. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2069. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2070. { "time": 2.6667, "x": 0, "y": 0 }
  2071. ],
  2072. "scale": [
  2073. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2074. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2075. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2076. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2077. { "time": 2.6667, "x": 1, "y": 1 }
  2078. ]
  2079. },
  2080. "bone9": {
  2081. "rotate": [
  2082. { "time": 0, "angle": 0, "curve": "stepped" },
  2083. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2084. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2085. { "time": 2, "angle": 0, "curve": "stepped" },
  2086. { "time": 2.6667, "angle": 0 }
  2087. ],
  2088. "translate": [
  2089. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2090. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2091. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2092. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2093. { "time": 2.6667, "x": 0, "y": 0 }
  2094. ],
  2095. "scale": [
  2096. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2097. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2098. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2099. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2100. { "time": 2.6667, "x": 1, "y": 1 }
  2101. ]
  2102. },
  2103. "bone10": {
  2104. "rotate": [
  2105. { "time": 0, "angle": 0 },
  2106. { "time": 0.6667, "angle": -3.78 },
  2107. { "time": 1.3333, "angle": 0 },
  2108. { "time": 2, "angle": -3.78 },
  2109. { "time": 2.6667, "angle": 0 }
  2110. ],
  2111. "translate": [
  2112. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2113. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2114. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2115. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2116. { "time": 2.6667, "x": 0, "y": 0 }
  2117. ],
  2118. "scale": [
  2119. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2120. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2121. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2122. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2123. { "time": 2.6667, "x": 1, "y": 1 }
  2124. ]
  2125. },
  2126. "bone11": {
  2127. "rotate": [
  2128. { "time": 0, "angle": 0 },
  2129. { "time": 0.6667, "angle": -8.75 },
  2130. { "time": 1.3333, "angle": 0 },
  2131. { "time": 2, "angle": -8.75 },
  2132. { "time": 2.6667, "angle": 0 }
  2133. ],
  2134. "translate": [
  2135. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2136. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2137. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2138. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2139. { "time": 2.6667, "x": 0, "y": 0 }
  2140. ],
  2141. "scale": [
  2142. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2143. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2144. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2145. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2146. { "time": 2.6667, "x": 1, "y": 1 }
  2147. ]
  2148. },
  2149. "bone12": {
  2150. "rotate": [
  2151. { "time": 0, "angle": 0 },
  2152. { "time": 0.6667, "angle": -8.88 },
  2153. { "time": 1.3333, "angle": 0 },
  2154. { "time": 2, "angle": -8.88 },
  2155. { "time": 2.6667, "angle": 0 }
  2156. ],
  2157. "translate": [
  2158. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2159. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2160. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2161. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2162. { "time": 2.6667, "x": 0, "y": 0 }
  2163. ],
  2164. "scale": [
  2165. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2166. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2167. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2168. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2169. { "time": 2.6667, "x": 1, "y": 1 }
  2170. ]
  2171. },
  2172. "bone13": {
  2173. "rotate": [
  2174. { "time": 0, "angle": 0 },
  2175. { "time": 0.6667, "angle": 5.43 },
  2176. { "time": 1.3333, "angle": 0 },
  2177. { "time": 2, "angle": 5.43 },
  2178. { "time": 2.6667, "angle": 0 }
  2179. ],
  2180. "translate": [
  2181. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2182. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2183. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2184. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2185. { "time": 2.6667, "x": 0, "y": 0 }
  2186. ],
  2187. "scale": [
  2188. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2189. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2190. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2191. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2192. { "time": 2.6667, "x": 1, "y": 1 }
  2193. ]
  2194. },
  2195. "bone14": {
  2196. "rotate": [
  2197. { "time": 0, "angle": 0 },
  2198. { "time": 0.6667, "angle": 10.74 },
  2199. { "time": 1.3333, "angle": 0 },
  2200. { "time": 2, "angle": 10.74 },
  2201. { "time": 2.6667, "angle": 0 }
  2202. ],
  2203. "translate": [
  2204. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2205. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2206. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2207. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2208. { "time": 2.6667, "x": 0, "y": 0 }
  2209. ],
  2210. "scale": [
  2211. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2212. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2213. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2214. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2215. { "time": 2.6667, "x": 1, "y": 1 }
  2216. ]
  2217. },
  2218. "bone15": {
  2219. "rotate": [
  2220. { "time": 0, "angle": 0 },
  2221. { "time": 0.6667, "angle": 8.94 },
  2222. { "time": 1.3333, "angle": 0 },
  2223. { "time": 2, "angle": 8.94 },
  2224. { "time": 2.6667, "angle": 0 }
  2225. ],
  2226. "translate": [
  2227. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2228. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2229. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2230. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2231. { "time": 2.6667, "x": 0, "y": 0 }
  2232. ],
  2233. "scale": [
  2234. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2235. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2236. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2237. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2238. { "time": 2.6667, "x": 1, "y": 1 }
  2239. ]
  2240. },
  2241. "bone16": {
  2242. "rotate": [
  2243. { "time": 0, "angle": 0 },
  2244. { "time": 0.6667, "angle": -23.1 },
  2245. { "time": 1.3333, "angle": 0 },
  2246. { "time": 2, "angle": -23.1 },
  2247. { "time": 2.6667, "angle": 0 }
  2248. ],
  2249. "translate": [
  2250. { "time": 0, "x": 0, "y": 0 },
  2251. { "time": 0.6667, "x": -0.78, "y": -0.5 },
  2252. { "time": 1.3333, "x": 0, "y": 0 },
  2253. { "time": 2, "x": -0.78, "y": -0.5 },
  2254. { "time": 2.6667, "x": 0, "y": 0 }
  2255. ],
  2256. "scale": [
  2257. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2258. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2259. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2260. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2261. { "time": 2.6667, "x": 1, "y": 1 }
  2262. ]
  2263. },
  2264. "bone17": {
  2265. "rotate": [
  2266. { "time": 0, "angle": 0, "curve": "stepped" },
  2267. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2268. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2269. { "time": 2, "angle": 0, "curve": "stepped" },
  2270. { "time": 2.6667, "angle": 0 }
  2271. ],
  2272. "translate": [
  2273. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2274. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2275. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2276. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2277. { "time": 2.6667, "x": 0, "y": 0 }
  2278. ],
  2279. "scale": [
  2280. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2281. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2282. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2283. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2284. { "time": 2.6667, "x": 1, "y": 1 }
  2285. ]
  2286. },
  2287. "bone18": {
  2288. "rotate": [
  2289. { "time": 0, "angle": 0 },
  2290. { "time": 0.6667, "angle": -4.95 },
  2291. { "time": 1.3333, "angle": 0 },
  2292. { "time": 2, "angle": -4.95 },
  2293. { "time": 2.6667, "angle": 0 }
  2294. ],
  2295. "translate": [
  2296. { "time": 0, "x": 0, "y": 0 },
  2297. { "time": 0.6667, "x": 0.81, "y": -0.53 },
  2298. { "time": 1.3333, "x": 0, "y": 0 },
  2299. { "time": 2, "x": 0.81, "y": -0.53 },
  2300. { "time": 2.6667, "x": 0, "y": 0 }
  2301. ],
  2302. "scale": [
  2303. { "time": 0, "x": 1, "y": 1 },
  2304. { "time": 0.6667, "x": 1.03, "y": 1 },
  2305. { "time": 1.3333, "x": 1, "y": 1 },
  2306. { "time": 2, "x": 1.03, "y": 1 },
  2307. { "time": 2.6667, "x": 1, "y": 1 }
  2308. ]
  2309. },
  2310. "bone19": {
  2311. "rotate": [
  2312. { "time": 0, "angle": -10.22 },
  2313. { "time": 0.6667, "angle": -5.18 },
  2314. { "time": 1.3333, "angle": -10.22 },
  2315. { "time": 2, "angle": -5.18 },
  2316. { "time": 2.6667, "angle": -10.22 }
  2317. ],
  2318. "translate": [
  2319. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2320. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2321. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2322. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2323. { "time": 2.6667, "x": 0, "y": 0 }
  2324. ],
  2325. "scale": [
  2326. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2327. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2328. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2329. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2330. { "time": 2.6667, "x": 1, "y": 1 }
  2331. ]
  2332. },
  2333. "bone20": {
  2334. "rotate": [
  2335. { "time": 0, "angle": -6.6 },
  2336. { "time": 0.6667, "angle": 0 },
  2337. { "time": 1.3333, "angle": -6.6 },
  2338. { "time": 2, "angle": 0 },
  2339. { "time": 2.6667, "angle": -6.6 }
  2340. ],
  2341. "translate": [
  2342. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2343. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2344. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2345. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2346. { "time": 2.6667, "x": 0, "y": 0 }
  2347. ],
  2348. "scale": [
  2349. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2350. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2351. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2352. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2353. { "time": 2.6667, "x": 1, "y": 1 }
  2354. ]
  2355. },
  2356. "bone21": {
  2357. "rotate": [
  2358. { "time": 0, "angle": 0, "curve": "stepped" },
  2359. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2360. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2361. { "time": 2, "angle": 0, "curve": "stepped" },
  2362. { "time": 2.6667, "angle": 0 }
  2363. ],
  2364. "translate": [
  2365. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2366. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2367. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2368. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2369. { "time": 2.6667, "x": 0, "y": 0 }
  2370. ],
  2371. "scale": [
  2372. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2373. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2374. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2375. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2376. { "time": 2.6667, "x": 1, "y": 1 }
  2377. ]
  2378. },
  2379. "bone22": {
  2380. "rotate": [
  2381. { "time": 0, "angle": 3.93 },
  2382. { "time": 0.6667, "angle": 5.71 },
  2383. { "time": 1.3333, "angle": 3.93 },
  2384. { "time": 2, "angle": 5.71 },
  2385. { "time": 2.6667, "angle": 3.93 }
  2386. ],
  2387. "translate": [
  2388. { "time": 0, "x": -0.49, "y": -1.08 },
  2389. { "time": 0.6667, "x": -0.69, "y": 1.59 },
  2390. { "time": 1.3333, "x": -0.49, "y": -1.08 },
  2391. { "time": 2, "x": -0.69, "y": 1.59 },
  2392. { "time": 2.6667, "x": -0.49, "y": -1.08 }
  2393. ],
  2394. "scale": [
  2395. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2396. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2397. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2398. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2399. { "time": 2.6667, "x": 1, "y": 1 }
  2400. ]
  2401. },
  2402. "bone23": {
  2403. "rotate": [
  2404. { "time": 0, "angle": 4.47 },
  2405. { "time": 0.6667, "angle": -2.36 },
  2406. { "time": 1.3333, "angle": 4.47 },
  2407. { "time": 2, "angle": -2.36 },
  2408. { "time": 2.6667, "angle": 4.47 }
  2409. ],
  2410. "translate": [
  2411. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2412. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2413. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2414. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2415. { "time": 2.6667, "x": 0, "y": 0 }
  2416. ],
  2417. "scale": [
  2418. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2419. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2420. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2421. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2422. { "time": 2.6667, "x": 1, "y": 1 }
  2423. ]
  2424. },
  2425. "bone24": {
  2426. "rotate": [
  2427. { "time": 0, "angle": 13.83 },
  2428. { "time": 0.6667, "angle": 0 },
  2429. { "time": 1.3333, "angle": 13.83 },
  2430. { "time": 2, "angle": 0 },
  2431. { "time": 2.6667, "angle": 13.83 }
  2432. ],
  2433. "translate": [
  2434. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2435. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2436. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2437. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2438. { "time": 2.6667, "x": 0, "y": 0 }
  2439. ],
  2440. "scale": [
  2441. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2442. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2443. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2444. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2445. { "time": 2.6667, "x": 1, "y": 1 }
  2446. ]
  2447. },
  2448. "bone25": {
  2449. "rotate": [
  2450. { "time": 0, "angle": 0, "curve": "stepped" },
  2451. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2452. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2453. { "time": 2, "angle": 0, "curve": "stepped" },
  2454. { "time": 2.6667, "angle": 0 }
  2455. ],
  2456. "translate": [
  2457. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2458. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2459. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2460. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2461. { "time": 2.6667, "x": 0, "y": 0 }
  2462. ],
  2463. "scale": [
  2464. { "time": 0, "x": 1, "y": 1 },
  2465. { "time": 0.6667, "x": 1.01, "y": 1 },
  2466. { "time": 1.3333, "x": 1, "y": 1 },
  2467. { "time": 2, "x": 1.01, "y": 1 },
  2468. { "time": 2.6667, "x": 1, "y": 1 }
  2469. ]
  2470. },
  2471. "bone26": {
  2472. "rotate": [
  2473. { "time": 0, "angle": 0, "curve": "stepped" },
  2474. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2475. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  2476. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  2477. { "time": 1.7, "angle": 0 }
  2478. ],
  2479. "translate": [
  2480. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2481. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2482. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2483. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2484. { "time": 1.7, "x": 0, "y": 0 }
  2485. ],
  2486. "scale": [
  2487. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2488. { "time": 1.3333, "x": 1, "y": 1 },
  2489. { "time": 1.4667, "x": 0.494, "y": 1, "curve": "stepped" },
  2490. { "time": 1.5667, "x": 0.494, "y": 1 },
  2491. { "time": 1.7, "x": 1, "y": 1 }
  2492. ]
  2493. },
  2494. "bone27": {
  2495. "rotate": [
  2496. { "time": 0, "angle": 0, "curve": "stepped" },
  2497. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2498. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  2499. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  2500. { "time": 1.7, "angle": 0 }
  2501. ],
  2502. "translate": [
  2503. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2504. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2505. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2506. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2507. { "time": 1.7, "x": 0, "y": 0 }
  2508. ],
  2509. "scale": [
  2510. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2511. { "time": 1.3333, "x": 1, "y": 1 },
  2512. { "time": 1.4667, "x": 0.493, "y": 1, "curve": "stepped" },
  2513. { "time": 1.5667, "x": 0.493, "y": 1 },
  2514. { "time": 1.7, "x": 1, "y": 1 }
  2515. ]
  2516. },
  2517. "bone28": {
  2518. "rotate": [
  2519. { "time": 0, "angle": 0, "curve": "stepped" },
  2520. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2521. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2522. { "time": 2, "angle": 0, "curve": "stepped" },
  2523. { "time": 2.6667, "angle": 0 }
  2524. ],
  2525. "translate": [
  2526. { "time": 0, "x": -1.17, "y": -0.02 }
  2527. ],
  2528. "scale": [
  2529. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2530. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2531. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2532. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2533. { "time": 2.6667, "x": 1, "y": 1 }
  2534. ]
  2535. },
  2536. "bone29": {
  2537. "rotate": [
  2538. { "time": 0, "angle": 0, "curve": "stepped" },
  2539. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2540. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  2541. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  2542. { "time": 1.7, "angle": 0 }
  2543. ],
  2544. "translate": [
  2545. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2546. { "time": 1.3333, "x": 0, "y": 0 },
  2547. { "time": 1.4667, "x": -1.99, "y": -0.04, "curve": "stepped" },
  2548. { "time": 1.5667, "x": -1.99, "y": -0.04 },
  2549. { "time": 1.7, "x": 0, "y": 0 }
  2550. ],
  2551. "scale": [
  2552. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2553. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2554. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2555. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2556. { "time": 1.7, "x": 1, "y": 1 }
  2557. ]
  2558. },
  2559. "bone30": {
  2560. "rotate": [
  2561. { "time": 0, "angle": 0, "curve": "stepped" },
  2562. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2563. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2564. { "time": 2, "angle": 0, "curve": "stepped" },
  2565. { "time": 2.6667, "angle": 0 }
  2566. ],
  2567. "translate": [
  2568. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2569. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2570. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2571. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2572. { "time": 2.6667, "x": 0, "y": 0 }
  2573. ],
  2574. "scale": [
  2575. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2576. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2577. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2578. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2579. { "time": 2.6667, "x": 1, "y": 1 }
  2580. ]
  2581. },
  2582. "bone31": {
  2583. "rotate": [
  2584. { "time": 0, "angle": 0 },
  2585. { "time": 0.6667, "angle": -1.93 },
  2586. { "time": 1.3333, "angle": 0 },
  2587. { "time": 2, "angle": -1.93 },
  2588. { "time": 2.6667, "angle": 0 }
  2589. ],
  2590. "translate": [
  2591. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2592. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2593. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2594. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2595. { "time": 2.6667, "x": 0, "y": 0 }
  2596. ],
  2597. "scale": [
  2598. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2599. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2600. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2601. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2602. { "time": 2.6667, "x": 1, "y": 1 }
  2603. ]
  2604. },
  2605. "bone32": {
  2606. "rotate": [
  2607. { "time": 0, "angle": 0 },
  2608. { "time": 0.6667, "angle": -17.39 },
  2609. { "time": 1.3333, "angle": 0 },
  2610. { "time": 2, "angle": -17.39 },
  2611. { "time": 2.6667, "angle": 0 }
  2612. ],
  2613. "translate": [
  2614. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2615. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2616. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2617. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2618. { "time": 2.6667, "x": 0, "y": 0 }
  2619. ],
  2620. "scale": [
  2621. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2622. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2623. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2624. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2625. { "time": 2.6667, "x": 1, "y": 1 }
  2626. ]
  2627. },
  2628. "bone33": {
  2629. "rotate": [
  2630. { "time": 0, "angle": 0 },
  2631. { "time": 0.6667, "angle": -4.1 },
  2632. { "time": 1.3333, "angle": 0 },
  2633. { "time": 2, "angle": -4.1 },
  2634. { "time": 2.6667, "angle": 0 }
  2635. ],
  2636. "translate": [
  2637. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2638. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2639. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2640. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2641. { "time": 2.6667, "x": 0, "y": 0 }
  2642. ],
  2643. "scale": [
  2644. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2645. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2646. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2647. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2648. { "time": 2.6667, "x": 1, "y": 1 }
  2649. ]
  2650. },
  2651. "bone34": {
  2652. "rotate": [
  2653. { "time": 0, "angle": 0 },
  2654. { "time": 0.6667, "angle": -4.44 },
  2655. { "time": 1.3333, "angle": 0 },
  2656. { "time": 2, "angle": -4.44 },
  2657. { "time": 2.6667, "angle": 0 }
  2658. ],
  2659. "translate": [
  2660. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2661. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2662. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2663. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2664. { "time": 2.6667, "x": 0, "y": 0 }
  2665. ],
  2666. "scale": [
  2667. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2668. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2669. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2670. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2671. { "time": 2.6667, "x": 1, "y": 1 }
  2672. ]
  2673. },
  2674. "bone35": {
  2675. "rotate": [
  2676. { "time": 0, "angle": 0 },
  2677. { "time": 0.6667, "angle": 3.41 },
  2678. { "time": 1.3333, "angle": 0 },
  2679. { "time": 2, "angle": 3.41 },
  2680. { "time": 2.6667, "angle": 0 }
  2681. ],
  2682. "translate": [
  2683. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2684. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2685. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2686. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2687. { "time": 2.6667, "x": 0, "y": 0 }
  2688. ],
  2689. "scale": [
  2690. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2691. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2692. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2693. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2694. { "time": 2.6667, "x": 1, "y": 1 }
  2695. ]
  2696. },
  2697. "bone36": {
  2698. "rotate": [
  2699. { "time": 0, "angle": 0, "curve": "stepped" },
  2700. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2701. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2702. { "time": 2, "angle": 0, "curve": "stepped" },
  2703. { "time": 2.6667, "angle": 0 }
  2704. ],
  2705. "translate": [
  2706. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2707. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2708. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2709. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2710. { "time": 2.6667, "x": 0, "y": 0 }
  2711. ],
  2712. "scale": [
  2713. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2714. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2715. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2716. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2717. { "time": 2.6667, "x": 1, "y": 1 }
  2718. ]
  2719. },
  2720. "bone37": {
  2721. "rotate": [
  2722. { "time": 0, "angle": 0 },
  2723. { "time": 0.6667, "angle": -13.78 },
  2724. { "time": 1.3333, "angle": 0 },
  2725. { "time": 2, "angle": -13.78 },
  2726. { "time": 2.6667, "angle": 0 }
  2727. ],
  2728. "translate": [
  2729. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2730. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2731. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2732. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2733. { "time": 2.6667, "x": 0, "y": 0 }
  2734. ],
  2735. "scale": [
  2736. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2737. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2738. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2739. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2740. { "time": 2.6667, "x": 1, "y": 1 }
  2741. ]
  2742. },
  2743. "bone38": {
  2744. "rotate": [
  2745. { "time": 0, "angle": 0 },
  2746. { "time": 0.6667, "angle": -12.53 },
  2747. { "time": 1.3333, "angle": 0 },
  2748. { "time": 2, "angle": -12.53 },
  2749. { "time": 2.6667, "angle": 0 }
  2750. ],
  2751. "translate": [
  2752. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2753. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2754. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2755. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2756. { "time": 2.6667, "x": 0, "y": 0 }
  2757. ],
  2758. "scale": [
  2759. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2760. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2761. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2762. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2763. { "time": 2.6667, "x": 1, "y": 1 }
  2764. ]
  2765. },
  2766. "bone39": {
  2767. "rotate": [
  2768. { "time": 0, "angle": 0, "curve": "stepped" },
  2769. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2770. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2771. { "time": 2, "angle": 0, "curve": "stepped" },
  2772. { "time": 2.6667, "angle": 0 }
  2773. ],
  2774. "translate": [
  2775. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2776. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2777. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2778. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2779. { "time": 2.6667, "x": 0, "y": 0 }
  2780. ],
  2781. "scale": [
  2782. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2783. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2784. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2785. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2786. { "time": 2.6667, "x": 1, "y": 1 }
  2787. ]
  2788. },
  2789. "bone40": {
  2790. "rotate": [
  2791. { "time": 0, "angle": 0 },
  2792. { "time": 0.6667, "angle": 3.02 },
  2793. { "time": 1.3333, "angle": 0 },
  2794. { "time": 2, "angle": 3.02 },
  2795. { "time": 2.6667, "angle": 0 }
  2796. ],
  2797. "translate": [
  2798. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2799. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2800. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2801. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2802. { "time": 2.6667, "x": 0, "y": 0 }
  2803. ],
  2804. "scale": [
  2805. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2806. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2807. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2808. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2809. { "time": 2.6667, "x": 1, "y": 1 }
  2810. ]
  2811. },
  2812. "bone41": {
  2813. "rotate": [
  2814. { "time": 0, "angle": 0 },
  2815. { "time": 0.6667, "angle": 11.53 },
  2816. { "time": 1.3333, "angle": 0 },
  2817. { "time": 2, "angle": 11.53 },
  2818. { "time": 2.6667, "angle": 0 }
  2819. ],
  2820. "translate": [
  2821. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2822. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2823. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2824. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2825. { "time": 2.6667, "x": 0, "y": 0 }
  2826. ],
  2827. "scale": [
  2828. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2829. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2830. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2831. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2832. { "time": 2.6667, "x": 1, "y": 1 }
  2833. ]
  2834. },
  2835. "bone45": {
  2836. "rotate": [
  2837. { "time": 0, "angle": 0 },
  2838. { "time": 0.6667, "angle": -9.75 },
  2839. { "time": 1.3333, "angle": 0 },
  2840. { "time": 2, "angle": -9.75 },
  2841. { "time": 2.6667, "angle": 0 }
  2842. ],
  2843. "translate": [
  2844. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2845. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2846. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2847. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2848. { "time": 2.6667, "x": 0, "y": 0 }
  2849. ],
  2850. "scale": [
  2851. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2852. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2853. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2854. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2855. { "time": 2.6667, "x": 1, "y": 1 }
  2856. ]
  2857. },
  2858. "bone46": {
  2859. "rotate": [
  2860. { "time": 0, "angle": 0 },
  2861. { "time": 0.6667, "angle": 6.19 },
  2862. { "time": 1.3333, "angle": 0 },
  2863. { "time": 2, "angle": 6.19 },
  2864. { "time": 2.6667, "angle": 0 }
  2865. ],
  2866. "translate": [
  2867. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2868. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2869. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2870. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2871. { "time": 2.6667, "x": 0, "y": 0 }
  2872. ],
  2873. "scale": [
  2874. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2875. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2876. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2877. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2878. { "time": 2.6667, "x": 1, "y": 1 }
  2879. ]
  2880. },
  2881. "bone47": {
  2882. "rotate": [
  2883. { "time": 0, "angle": 0 },
  2884. { "time": 0.6667, "angle": 9.54 },
  2885. { "time": 1.3333, "angle": 0 },
  2886. { "time": 2, "angle": 9.54 },
  2887. { "time": 2.6667, "angle": 0 }
  2888. ],
  2889. "translate": [
  2890. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2891. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2892. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2893. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2894. { "time": 2.6667, "x": 0, "y": 0 }
  2895. ],
  2896. "scale": [
  2897. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2898. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2899. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2900. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2901. { "time": 2.6667, "x": 1, "y": 1 }
  2902. ]
  2903. },
  2904. "bone48": {
  2905. "rotate": [
  2906. { "time": 0, "angle": 0 },
  2907. { "time": 0.6667, "angle": -2.53 },
  2908. { "time": 1.3333, "angle": 0 },
  2909. { "time": 2, "angle": -2.53 },
  2910. { "time": 2.6667, "angle": 0 }
  2911. ],
  2912. "translate": [
  2913. { "time": 0, "x": 0, "y": 0 },
  2914. { "time": 0.6667, "x": 5.01, "y": 0.35 },
  2915. { "time": 1.3333, "x": 0, "y": 0 },
  2916. { "time": 2, "x": 5.01, "y": 0.35 },
  2917. { "time": 2.6667, "x": 0, "y": 0 }
  2918. ],
  2919. "scale": [
  2920. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2921. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2922. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2923. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2924. { "time": 2.6667, "x": 1, "y": 1 }
  2925. ]
  2926. },
  2927. "bone49": {
  2928. "rotate": [
  2929. { "time": 0, "angle": 0 },
  2930. { "time": 0.6667, "angle": -6.21 },
  2931. { "time": 1.3333, "angle": 0 },
  2932. { "time": 2, "angle": -6.21 },
  2933. { "time": 2.6667, "angle": 0 }
  2934. ],
  2935. "translate": [
  2936. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2937. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2938. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2939. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2940. { "time": 2.6667, "x": 0, "y": 0 }
  2941. ],
  2942. "scale": [
  2943. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2944. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2945. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2946. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2947. { "time": 2.6667, "x": 1, "y": 1 }
  2948. ]
  2949. },
  2950. "bone50": {
  2951. "rotate": [
  2952. { "time": 0, "angle": 0 },
  2953. { "time": 0.6667, "angle": -10 },
  2954. { "time": 1.3333, "angle": 0 },
  2955. { "time": 2, "angle": -10 },
  2956. { "time": 2.6667, "angle": 0 }
  2957. ],
  2958. "translate": [
  2959. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2960. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2961. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2962. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2963. { "time": 2.6667, "x": 0, "y": 0 }
  2964. ],
  2965. "scale": [
  2966. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2967. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2968. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2969. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2970. { "time": 2.6667, "x": 1, "y": 1 }
  2971. ]
  2972. },
  2973. "bone51": {
  2974. "rotate": [
  2975. { "time": 0, "angle": -10.65 },
  2976. { "time": 0.6667, "angle": 14.57 },
  2977. { "time": 1.3333, "angle": -10.65 },
  2978. { "time": 2, "angle": 14.57 },
  2979. { "time": 2.6667, "angle": -10.65 }
  2980. ],
  2981. "translate": [
  2982. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2983. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2984. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2985. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2986. { "time": 2.6667, "x": 0, "y": 0 }
  2987. ],
  2988. "scale": [
  2989. { "time": 0, "x": 1, "y": 1 },
  2990. { "time": 0.6667, "x": 1.03, "y": 1 },
  2991. { "time": 1.3333, "x": 1, "y": 1 },
  2992. { "time": 2, "x": 1.03, "y": 1 },
  2993. { "time": 2.6667, "x": 1, "y": 1 }
  2994. ]
  2995. },
  2996. "bone52": {
  2997. "rotate": [
  2998. { "time": 0, "angle": 13.69 },
  2999. { "time": 0.6667, "angle": 10.21 },
  3000. { "time": 1.3333, "angle": 13.69 },
  3001. { "time": 2, "angle": 16.91 },
  3002. { "time": 2.6667, "angle": 13.69 }
  3003. ],
  3004. "translate": [
  3005. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3006. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3007. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3008. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3009. { "time": 2.6667, "x": 0, "y": 0 }
  3010. ],
  3011. "scale": [
  3012. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3013. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3014. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3015. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3016. { "time": 2.6667, "x": 1, "y": 1 }
  3017. ]
  3018. },
  3019. "bone53": {
  3020. "rotate": [
  3021. { "time": 0, "angle": 0 },
  3022. { "time": 0.6667, "angle": 4.12 },
  3023. { "time": 1.3333, "angle": 0 },
  3024. { "time": 2, "angle": 4.12 },
  3025. { "time": 2.6667, "angle": 0 }
  3026. ],
  3027. "translate": [
  3028. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3029. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3030. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3031. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3032. { "time": 2.6667, "x": 0, "y": 0 }
  3033. ],
  3034. "scale": [
  3035. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3036. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3037. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3038. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3039. { "time": 2.6667, "x": 1, "y": 1 }
  3040. ]
  3041. },
  3042. "bone54": {
  3043. "rotate": [
  3044. { "time": 0, "angle": 0, "curve": "stepped" },
  3045. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3046. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3047. { "time": 2, "angle": 0, "curve": "stepped" },
  3048. { "time": 2.6667, "angle": 0 }
  3049. ],
  3050. "translate": [
  3051. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3052. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3053. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3054. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3055. { "time": 2.6667, "x": 0, "y": 0 }
  3056. ],
  3057. "scale": [
  3058. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3059. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3060. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3061. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3062. { "time": 2.6667, "x": 1, "y": 1 }
  3063. ]
  3064. },
  3065. "bone55": {
  3066. "rotate": [
  3067. { "time": 0, "angle": 0, "curve": "stepped" },
  3068. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3069. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3070. { "time": 2, "angle": 0, "curve": "stepped" },
  3071. { "time": 2.6667, "angle": 0 }
  3072. ],
  3073. "translate": [
  3074. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3075. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3076. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3077. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3078. { "time": 2.6667, "x": 0, "y": 0 }
  3079. ],
  3080. "scale": [
  3081. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3082. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3083. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3084. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3085. { "time": 2.6667, "x": 1, "y": 1 }
  3086. ]
  3087. },
  3088. "bone56": {
  3089. "rotate": [
  3090. { "time": 0, "angle": 0, "curve": "stepped" },
  3091. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3092. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3093. { "time": 2, "angle": 0, "curve": "stepped" },
  3094. { "time": 2.6667, "angle": 0 }
  3095. ],
  3096. "translate": [
  3097. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3098. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3099. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3100. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3101. { "time": 2.6667, "x": 0, "y": 0 }
  3102. ],
  3103. "scale": [
  3104. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3105. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3106. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3107. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3108. { "time": 2.6667, "x": 1, "y": 1 }
  3109. ]
  3110. },
  3111. "bone57": {
  3112. "rotate": [
  3113. { "time": 0, "angle": 0, "curve": "stepped" },
  3114. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3115. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3116. { "time": 2, "angle": 0, "curve": "stepped" },
  3117. { "time": 2.6667, "angle": 0 }
  3118. ],
  3119. "translate": [
  3120. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3121. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3122. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3123. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3124. { "time": 2.6667, "x": 0, "y": 0 }
  3125. ],
  3126. "scale": [
  3127. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3128. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3129. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3130. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3131. { "time": 2.6667, "x": 1, "y": 1 }
  3132. ]
  3133. },
  3134. "bone58": {
  3135. "rotate": [
  3136. { "time": 0, "angle": 26.26 },
  3137. { "time": 0.6667, "angle": 42.87 },
  3138. { "time": 1.3333, "angle": 26.26 },
  3139. { "time": 2, "angle": 42.87 },
  3140. { "time": 2.6667, "angle": 26.26 }
  3141. ],
  3142. "translate": [
  3143. { "time": 0, "x": -34.16, "y": 14.46, "curve": "stepped" },
  3144. { "time": 0.6667, "x": -34.16, "y": 14.46, "curve": "stepped" },
  3145. { "time": 1.3333, "x": -34.16, "y": 14.46, "curve": "stepped" },
  3146. { "time": 2, "x": -34.16, "y": 14.46, "curve": "stepped" },
  3147. { "time": 2.6667, "x": -34.16, "y": 14.46 }
  3148. ],
  3149. "scale": [
  3150. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3151. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3152. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3153. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3154. { "time": 2.6667, "x": 1, "y": 1 }
  3155. ]
  3156. },
  3157. "bone42": {
  3158. "rotate": [
  3159. { "time": 0, "angle": 0, "curve": "stepped" },
  3160. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3161. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3162. { "time": 2, "angle": 0, "curve": "stepped" },
  3163. { "time": 2.6667, "angle": 0 }
  3164. ],
  3165. "translate": [
  3166. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3167. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3168. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3169. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3170. { "time": 2.6667, "x": 0, "y": 0 }
  3171. ],
  3172. "scale": [
  3173. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3174. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3175. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3176. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3177. { "time": 2.6667, "x": 1, "y": 1 }
  3178. ]
  3179. },
  3180. "bone43": {
  3181. "rotate": [
  3182. { "time": 0, "angle": 0, "curve": "stepped" },
  3183. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3184. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3185. { "time": 2, "angle": 0, "curve": "stepped" },
  3186. { "time": 2.6667, "angle": 0 }
  3187. ],
  3188. "translate": [
  3189. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3190. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3191. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3192. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3193. { "time": 2.6667, "x": 0, "y": 0 }
  3194. ],
  3195. "scale": [
  3196. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3197. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3198. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3199. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3200. { "time": 2.6667, "x": 1, "y": 1 }
  3201. ]
  3202. },
  3203. "bone44": {
  3204. "rotate": [
  3205. { "time": 0, "angle": 0, "curve": "stepped" },
  3206. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3207. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3208. { "time": 2, "angle": 0, "curve": "stepped" },
  3209. { "time": 2.6667, "angle": 0 }
  3210. ],
  3211. "translate": [
  3212. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3213. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3214. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3215. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3216. { "time": 2.6667, "x": 0, "y": 0 }
  3217. ],
  3218. "scale": [
  3219. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3220. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3221. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3222. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3223. { "time": 2.6667, "x": 1, "y": 1 }
  3224. ]
  3225. },
  3226. "bone59": {
  3227. "rotate": [
  3228. { "time": 0, "angle": 0, "curve": "stepped" },
  3229. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3230. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3231. { "time": 2, "angle": 0, "curve": "stepped" },
  3232. { "time": 2.6667, "angle": 0 }
  3233. ],
  3234. "translate": [
  3235. { "time": 0, "x": 0, "y": 0 },
  3236. { "time": 0.6667, "x": 0.3, "y": 1.26 },
  3237. { "time": 1.3333, "x": 0, "y": 0 },
  3238. { "time": 2, "x": 0.3, "y": 1.26 },
  3239. { "time": 2.6667, "x": 0, "y": 0 }
  3240. ],
  3241. "scale": [
  3242. { "time": 0, "x": 1, "y": 1 },
  3243. { "time": 0.6667, "x": 1.3, "y": 1 },
  3244. { "time": 1.3333, "x": 1, "y": 1 },
  3245. { "time": 2, "x": 1.3, "y": 1 },
  3246. { "time": 2.6667, "x": 1, "y": 1 }
  3247. ]
  3248. },
  3249. "bone61": {
  3250. "rotate": [
  3251. { "time": 0, "angle": 0 },
  3252. { "time": 0.6667, "angle": -14.21 },
  3253. { "time": 1.3333, "angle": 0 },
  3254. { "time": 2, "angle": -14.21 },
  3255. { "time": 2.6667, "angle": 0 }
  3256. ],
  3257. "translate": [
  3258. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3259. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3260. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3261. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3262. { "time": 2.6667, "x": 0, "y": 0 }
  3263. ],
  3264. "scale": [
  3265. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3266. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3267. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3268. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3269. { "time": 2.6667, "x": 1, "y": 1 }
  3270. ]
  3271. },
  3272. "bone62": {
  3273. "translate": [
  3274. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3275. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3276. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3277. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3278. { "time": 2.1667, "x": 0, "y": 0 }
  3279. ],
  3280. "scale": [
  3281. { "time": 0, "x": 0.3, "y": 0.3, "curve": "stepped" },
  3282. { "time": 0.3, "x": 0.3, "y": 0.3 },
  3283. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3284. { "time": 2, "x": 1, "y": 1 },
  3285. { "time": 2.1667, "x": 0.5, "y": 0.5 }
  3286. ]
  3287. }
  3288. },
  3289. "deform": {
  3290. "default": {
  3291. "shenti": {
  3292. "shenti": [
  3293. { "time": 0 },
  3294. {
  3295. "time": 0.6667,
  3296. "offset": 26,
  3297. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ]
  3298. },
  3299. { "time": 1.3333 },
  3300. {
  3301. "time": 2,
  3302. "offset": 26,
  3303. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ]
  3304. },
  3305. { "time": 2.6667 }
  3306. ]
  3307. },
  3308. "toufa1": {
  3309. "toufa1": [
  3310. { "time": 0 },
  3311. {
  3312. "time": 0.6667,
  3313. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  3314. },
  3315. { "time": 1.3333 },
  3316. {
  3317. "time": 2,
  3318. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  3319. },
  3320. { "time": 2.6667 }
  3321. ]
  3322. },
  3323. "youyan": {
  3324. "youyan": [
  3325. { "time": 1.4667 }
  3326. ]
  3327. },
  3328. "zuoyan": {
  3329. "zuoyan": [
  3330. { "time": 1.4667 }
  3331. ]
  3332. }
  3333. }
  3334. }
  3335. },
  3336. "stand3": {
  3337. "slots": {
  3338. "biaoqing_4": {
  3339. "color": [
  3340. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3341. { "time": 4.1667, "color": "ffffff00" }
  3342. ]
  3343. },
  3344. "biyan": {
  3345. "attachment": [
  3346. { "time": 0.2667, "name": "biyan" },
  3347. { "time": 3.8333, "name": null }
  3348. ]
  3349. },
  3350. "bizui": {
  3351. "attachment": [
  3352. { "time": 0.2667, "name": "bizui" },
  3353. { "time": 0.4333, "name": null },
  3354. { "time": 0.6, "name": "bizui" },
  3355. { "time": 0.8, "name": null },
  3356. { "time": 0.9667, "name": "bizui" },
  3357. { "time": 1.2333, "name": null },
  3358. { "time": 1.4333, "name": "bizui" },
  3359. { "time": 1.6, "name": null },
  3360. { "time": 1.7667, "name": "bizui" },
  3361. { "time": 1.9667, "name": null },
  3362. { "time": 2.1333, "name": "bizui" },
  3363. { "time": 2.4, "name": null },
  3364. { "time": 2.6, "name": "bizui" },
  3365. { "time": 2.7667, "name": null },
  3366. { "time": 2.9333, "name": "bizui" },
  3367. { "time": 3.1333, "name": null },
  3368. { "time": 3.3, "name": "bizui" },
  3369. { "time": 3.5667, "name": null },
  3370. { "time": 3.8, "name": "bizui" },
  3371. { "time": 4.1667, "name": null }
  3372. ]
  3373. },
  3374. "meimao": {
  3375. "attachment": [
  3376. { "time": 0, "name": "meimao" },
  3377. { "time": 0.1667, "name": "meimao" },
  3378. { "time": 0.9, "name": "meimao" },
  3379. { "time": 1.3333, "name": "meimao" },
  3380. { "time": 1.7667, "name": "meimao" },
  3381. { "time": 2.2333, "name": "meimao" },
  3382. { "time": 2.6667, "name": "meimao" },
  3383. { "time": 3.1333, "name": "meimao" },
  3384. { "time": 3.5667, "name": "meimao" },
  3385. { "time": 4.1667, "name": "meimao" }
  3386. ]
  3387. },
  3388. "yin1": {
  3389. "color": [
  3390. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3391. { "time": 1.3333, "color": "ffffff00" },
  3392. { "time": 1.5333, "color": "ffffffff", "curve": "stepped" },
  3393. { "time": 2.6667, "color": "ffffffff" },
  3394. { "time": 2.9, "color": "ffffff00" }
  3395. ],
  3396. "attachment": [
  3397. { "time": 0, "name": "yin1" }
  3398. ]
  3399. },
  3400. "yin2": {
  3401. "color": [
  3402. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3403. { "time": 0.2667, "color": "ffffff00" },
  3404. { "time": 0.6667, "color": "ffffffff", "curve": "stepped" },
  3405. { "time": 1.4667, "color": "ffffffff" },
  3406. { "time": 1.9333, "color": "ffffff00", "curve": "stepped" },
  3407. { "time": 2.2, "color": "ffffff00" },
  3408. { "time": 2.6, "color": "ffffffff", "curve": "stepped" },
  3409. { "time": 3.4, "color": "ffffffff" },
  3410. { "time": 3.8667, "color": "ffffff00" }
  3411. ],
  3412. "attachment": [
  3413. { "time": 0, "name": "yin2" }
  3414. ]
  3415. },
  3416. "yin3": {
  3417. "color": [
  3418. { "time": 0, "color": "ffffff00" },
  3419. { "time": 0.2667, "color": "ffffffff", "curve": "stepped" },
  3420. { "time": 2, "color": "ffffffff" },
  3421. { "time": 2.4333, "color": "ffffff00" }
  3422. ],
  3423. "attachment": [
  3424. { "time": 0, "name": "yin3" }
  3425. ]
  3426. },
  3427. "youyan": {
  3428. "attachment": [
  3429. { "time": 0.2667, "name": null },
  3430. { "time": 3.8333, "name": "youyan" }
  3431. ]
  3432. },
  3433. "zuiba": {
  3434. "attachment": [
  3435. { "time": 0.2667, "name": null },
  3436. { "time": 0.4333, "name": "zuiba" },
  3437. { "time": 0.6, "name": null },
  3438. { "time": 0.8, "name": "zuiba" },
  3439. { "time": 0.9667, "name": null },
  3440. { "time": 1.2333, "name": "zuiba" },
  3441. { "time": 1.4333, "name": null },
  3442. { "time": 1.6, "name": "zuiba" },
  3443. { "time": 1.7667, "name": null },
  3444. { "time": 1.9667, "name": "zuiba" },
  3445. { "time": 2.1333, "name": null },
  3446. { "time": 2.4, "name": "zuiba" },
  3447. { "time": 2.6, "name": null },
  3448. { "time": 2.7667, "name": "zuiba" },
  3449. { "time": 2.9333, "name": null },
  3450. { "time": 3.1333, "name": "zuiba" },
  3451. { "time": 3.3, "name": null },
  3452. { "time": 3.5667, "name": "zuiba" },
  3453. { "time": 3.8, "name": null },
  3454. { "time": 4.1667, "name": "zuiba" }
  3455. ]
  3456. },
  3457. "zuoyan": {
  3458. "attachment": [
  3459. { "time": 0.2667, "name": null },
  3460. { "time": 3.8333, "name": "zuoyan" }
  3461. ]
  3462. }
  3463. },
  3464. "bones": {
  3465. "root": {
  3466. "rotate": [
  3467. { "time": 0, "angle": 0 }
  3468. ],
  3469. "translate": [
  3470. { "time": 0, "x": 0, "y": 0 }
  3471. ],
  3472. "scale": [
  3473. { "time": 0, "x": 0.65, "y": 0.65 }
  3474. ]
  3475. },
  3476. "bone2": {
  3477. "rotate": [
  3478. { "time": 0, "angle": 0 },
  3479. { "time": 0.2667, "angle": -5.71 },
  3480. { "time": 0.4667, "angle": -8.99 },
  3481. { "time": 0.6667, "angle": -5.71 },
  3482. { "time": 0.9, "angle": -11.51 },
  3483. { "time": 1.1, "angle": -5.71 },
  3484. { "time": 1.3333, "angle": -11.51 },
  3485. { "time": 1.5333, "angle": -5.71 },
  3486. { "time": 1.7667, "angle": -11.51 },
  3487. { "time": 2, "angle": -5.71 },
  3488. { "time": 2.2333, "angle": -11.51 },
  3489. { "time": 2.4333, "angle": -5.71 },
  3490. { "time": 2.6667, "angle": -11.51 },
  3491. { "time": 2.9, "angle": -5.71 },
  3492. { "time": 3.1333, "angle": -11.51 },
  3493. { "time": 3.3333, "angle": -5.71 },
  3494. { "time": 3.5667, "angle": -11.51 },
  3495. { "time": 3.8, "angle": -5.71 },
  3496. { "time": 4.1667, "angle": 0 }
  3497. ],
  3498. "translate": [
  3499. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3500. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3501. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3502. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3503. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3504. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3505. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3506. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3507. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3508. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3509. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3510. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3511. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3512. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3513. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3514. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3515. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3516. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3517. { "time": 4.1667, "x": 0, "y": 0 }
  3518. ],
  3519. "scale": [
  3520. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3521. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3522. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3523. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3524. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3525. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3526. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3527. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3528. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3529. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3530. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3531. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3532. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3533. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3534. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3535. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3536. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3537. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3538. { "time": 4.1667, "x": 1, "y": 1 }
  3539. ]
  3540. },
  3541. "bone3": {
  3542. "rotate": [
  3543. { "time": 0, "angle": 0, "curve": "stepped" },
  3544. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3545. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  3546. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3547. { "time": 0.9, "angle": 0, "curve": "stepped" },
  3548. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3549. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3550. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  3551. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3552. { "time": 2, "angle": 0, "curve": "stepped" },
  3553. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  3554. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  3555. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  3556. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3557. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  3558. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  3559. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  3560. { "time": 3.8, "angle": 0, "curve": "stepped" },
  3561. { "time": 4.1667, "angle": 0 }
  3562. ],
  3563. "translate": [
  3564. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3565. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3566. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3567. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3568. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3569. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3570. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3571. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3572. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3573. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3574. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3575. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3576. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3577. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3578. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3579. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3580. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3581. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3582. { "time": 4.1667, "x": 0, "y": 0 }
  3583. ],
  3584. "scale": [
  3585. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3586. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3587. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3588. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3589. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3590. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3591. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3592. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3593. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3594. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3595. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3596. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3597. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3598. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3599. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3600. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3601. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3602. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3603. { "time": 4.1667, "x": 1, "y": 1 }
  3604. ]
  3605. },
  3606. "bone4": {
  3607. "rotate": [
  3608. { "time": 0, "angle": 0 },
  3609. { "time": 0.2667, "angle": -20.36 },
  3610. { "time": 0.4667, "angle": -27.31 },
  3611. { "time": 0.6667, "angle": -15.63 },
  3612. { "time": 0.9, "angle": -27.31 },
  3613. { "time": 1.1, "angle": -20.36 },
  3614. { "time": 1.3333, "angle": -27.31 },
  3615. { "time": 1.5333, "angle": -15.63 },
  3616. { "time": 1.7667, "angle": -27.31 },
  3617. { "time": 2, "angle": -20.36 },
  3618. { "time": 2.2333, "angle": -27.31 },
  3619. { "time": 2.4333, "angle": -15.63 },
  3620. { "time": 2.6667, "angle": -27.31 },
  3621. { "time": 2.9, "angle": -20.36 },
  3622. { "time": 3.1333, "angle": -27.31 },
  3623. { "time": 3.3333, "angle": -15.63 },
  3624. { "time": 3.5667, "angle": -27.31 },
  3625. { "time": 3.8, "angle": -20.36 },
  3626. { "time": 4.1667, "angle": 0 }
  3627. ],
  3628. "translate": [
  3629. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3630. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3631. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3632. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3633. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3634. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3635. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3636. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3637. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3638. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3639. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3640. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3641. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3642. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3643. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3644. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3645. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3646. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3647. { "time": 4.1667, "x": 0, "y": 0 }
  3648. ],
  3649. "scale": [
  3650. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3651. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3652. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3653. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3654. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3655. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3656. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3657. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3658. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3659. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3660. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3661. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3662. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3663. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3664. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3665. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3666. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3667. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3668. { "time": 4.1667, "x": 1, "y": 1 }
  3669. ]
  3670. },
  3671. "bone5": {
  3672. "rotate": [
  3673. { "time": 0, "angle": 0 },
  3674. { "time": 0.2667, "angle": 29.64 },
  3675. { "time": 0.4667, "angle": 47.11 },
  3676. { "time": 0.6667, "angle": 19.65 },
  3677. { "time": 0.9, "angle": 47.11 },
  3678. { "time": 1.1, "angle": 22.28 },
  3679. { "time": 1.3333, "angle": 34.36 },
  3680. { "time": 1.5333, "angle": 19.65 },
  3681. { "time": 1.7667, "angle": 47.11 },
  3682. { "time": 2, "angle": 22.28 },
  3683. { "time": 2.2333, "angle": 34.36 },
  3684. { "time": 2.4333, "angle": 19.65 },
  3685. { "time": 2.6667, "angle": 47.11 },
  3686. { "time": 2.9, "angle": 22.28 },
  3687. { "time": 3.1333, "angle": 34.36 },
  3688. { "time": 3.3333, "angle": 19.65 },
  3689. { "time": 3.5667, "angle": 47.11 },
  3690. { "time": 3.8, "angle": 22.28 },
  3691. { "time": 4.1667, "angle": 0 }
  3692. ],
  3693. "translate": [
  3694. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3695. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3696. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3697. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3698. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3699. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3700. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3701. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3702. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3703. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3704. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3705. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3706. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3707. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3708. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3709. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3710. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3711. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3712. { "time": 4.1667, "x": 0, "y": 0 }
  3713. ],
  3714. "scale": [
  3715. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3716. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3717. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3718. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3719. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3720. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3721. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3722. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3723. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3724. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3725. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3726. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3727. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3728. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3729. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3730. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3731. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3732. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3733. { "time": 4.1667, "x": 1, "y": 1 }
  3734. ]
  3735. },
  3736. "bone6": {
  3737. "rotate": [
  3738. { "time": 0, "angle": 0, "curve": "stepped" },
  3739. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3740. { "time": 0.4667, "angle": 0 },
  3741. { "time": 0.6667, "angle": -14.43 },
  3742. { "time": 0.9, "angle": 0 },
  3743. { "time": 1.1, "angle": 10.08 },
  3744. { "time": 1.3333, "angle": -27.33 },
  3745. { "time": 1.5333, "angle": -14.43 },
  3746. { "time": 1.7667, "angle": 0 },
  3747. { "time": 2, "angle": 10.08 },
  3748. { "time": 2.2333, "angle": -27.33 },
  3749. { "time": 2.4333, "angle": -14.43 },
  3750. { "time": 2.6667, "angle": 0 },
  3751. { "time": 2.9, "angle": 10.08 },
  3752. { "time": 3.1333, "angle": -27.33 },
  3753. { "time": 3.3333, "angle": -14.43 },
  3754. { "time": 3.5667, "angle": 0 },
  3755. { "time": 3.8, "angle": 10.08 },
  3756. { "time": 4.1667, "angle": 0 }
  3757. ],
  3758. "translate": [
  3759. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3760. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3761. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3762. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3763. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3764. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3765. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3766. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3767. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3768. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3769. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3770. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3771. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3772. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3773. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3774. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3775. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3776. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3777. { "time": 4.1667, "x": 0, "y": 0 }
  3778. ],
  3779. "scale": [
  3780. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3781. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3782. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3783. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3784. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3785. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3786. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3787. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3788. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3789. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3790. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3791. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3792. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3793. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3794. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3795. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3796. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3797. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3798. { "time": 4.1667, "x": 1, "y": 1 }
  3799. ]
  3800. },
  3801. "bone7": {
  3802. "rotate": [
  3803. { "time": 0, "angle": 0, "curve": "stepped" },
  3804. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3805. { "time": 0.4667, "angle": 0 },
  3806. { "time": 0.6667, "angle": 355.32 },
  3807. { "time": 0.9, "angle": 0 },
  3808. { "time": 1.1, "angle": 355.32 },
  3809. { "time": 1.3333, "angle": 0 },
  3810. { "time": 1.5333, "angle": 355.32 },
  3811. { "time": 1.7667, "angle": 0 },
  3812. { "time": 2, "angle": 355.32 },
  3813. { "time": 2.2333, "angle": 0 },
  3814. { "time": 2.4333, "angle": 355.32 },
  3815. { "time": 2.6667, "angle": 0 },
  3816. { "time": 2.9, "angle": 355.32 },
  3817. { "time": 3.1333, "angle": 0 },
  3818. { "time": 3.3333, "angle": 355.32 },
  3819. { "time": 3.5667, "angle": 0 },
  3820. { "time": 3.8, "angle": 355.32 },
  3821. { "time": 4.1667, "angle": 0 }
  3822. ],
  3823. "translate": [
  3824. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3825. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3826. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3827. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3828. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3829. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3830. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3831. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3832. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3833. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3834. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3835. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3836. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3837. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3838. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3839. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3840. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3841. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3842. { "time": 4.1667, "x": 0, "y": 0 }
  3843. ],
  3844. "scale": [
  3845. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3846. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3847. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3848. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3849. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3850. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3851. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3852. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3853. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3854. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3855. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3856. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3857. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3858. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3859. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3860. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3861. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3862. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3863. { "time": 4.1667, "x": 1, "y": 1 }
  3864. ]
  3865. },
  3866. "bone8": {
  3867. "rotate": [
  3868. { "time": 0, "angle": 0, "curve": "stepped" },
  3869. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3870. { "time": 0.4667, "angle": 0 },
  3871. { "time": 0.6667, "angle": 8.02 },
  3872. { "time": 0.9, "angle": 0 },
  3873. { "time": 1.1, "angle": 8.02 },
  3874. { "time": 1.3333, "angle": 0 },
  3875. { "time": 1.5333, "angle": 8.02 },
  3876. { "time": 1.7667, "angle": 0 },
  3877. { "time": 2, "angle": 8.02 },
  3878. { "time": 2.2333, "angle": 0 },
  3879. { "time": 2.4333, "angle": 8.02 },
  3880. { "time": 2.6667, "angle": 0 },
  3881. { "time": 2.9, "angle": 8.02 },
  3882. { "time": 3.1333, "angle": 0 },
  3883. { "time": 3.3333, "angle": 8.02 },
  3884. { "time": 3.5667, "angle": 0 },
  3885. { "time": 3.8, "angle": 8.02 },
  3886. { "time": 4.1667, "angle": 0 }
  3887. ],
  3888. "translate": [
  3889. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3890. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3891. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3892. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3893. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3894. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3895. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3896. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3897. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3898. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3899. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  3900. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3901. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3902. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3903. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3904. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3905. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3906. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  3907. { "time": 4.1667, "x": 0, "y": 0 }
  3908. ],
  3909. "scale": [
  3910. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3911. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3912. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3913. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3914. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3915. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3916. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3917. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3918. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3919. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3920. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  3921. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3922. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3923. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3924. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3925. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3926. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3927. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  3928. { "time": 4.1667, "x": 1, "y": 1 }
  3929. ]
  3930. },
  3931. "bone9": {
  3932. "rotate": [
  3933. { "time": 0, "angle": 0, "curve": "stepped" },
  3934. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3935. { "time": 0.4667, "angle": 0 },
  3936. { "time": 0.6667, "angle": -2.87 },
  3937. { "time": 0.9, "angle": 0 },
  3938. { "time": 1.1, "angle": -2.87, "curve": "stepped" },
  3939. { "time": 2, "angle": -2.87, "curve": "stepped" },
  3940. { "time": 2.9, "angle": -2.87 },
  3941. { "time": 4.1667, "angle": 0 }
  3942. ],
  3943. "translate": [
  3944. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3945. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3946. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3947. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3948. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3949. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3950. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3951. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3952. { "time": 4.1667, "x": 0, "y": 0 }
  3953. ],
  3954. "scale": [
  3955. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3956. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3957. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3958. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3959. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3960. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3961. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3962. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3963. { "time": 4.1667, "x": 1, "y": 1 }
  3964. ]
  3965. },
  3966. "bone10": {
  3967. "rotate": [
  3968. { "time": 0, "angle": 0 },
  3969. { "time": 0.2667, "angle": 3.13 },
  3970. { "time": 0.4667, "angle": -3.78 },
  3971. { "time": 0.6667, "angle": 3.13 },
  3972. { "time": 0.9, "angle": -3.78 },
  3973. { "time": 1.1, "angle": 3.13 },
  3974. { "time": 1.3333, "angle": -3.78 },
  3975. { "time": 1.5333, "angle": 3.13 },
  3976. { "time": 1.7667, "angle": -3.78 },
  3977. { "time": 2, "angle": 3.13 },
  3978. { "time": 2.2333, "angle": -3.78 },
  3979. { "time": 2.4333, "angle": 3.13 },
  3980. { "time": 2.6667, "angle": -3.78 },
  3981. { "time": 2.9, "angle": 3.13 },
  3982. { "time": 3.1333, "angle": -3.78 },
  3983. { "time": 3.3333, "angle": 3.13 },
  3984. { "time": 3.5667, "angle": -3.78 },
  3985. { "time": 3.8, "angle": 3.13 },
  3986. { "time": 4.1667, "angle": 0 }
  3987. ],
  3988. "translate": [
  3989. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3990. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3991. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3992. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3993. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3994. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3995. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3996. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3997. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3998. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3999. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  4000. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4001. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4002. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4003. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4004. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4005. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4006. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  4007. { "time": 4.1667, "x": 0, "y": 0 }
  4008. ],
  4009. "scale": [
  4010. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4011. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4012. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4013. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4014. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4015. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4016. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4017. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4018. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4019. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4020. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4021. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4022. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4023. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4024. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4025. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4026. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4027. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4028. { "time": 4.1667, "x": 1, "y": 1 }
  4029. ]
  4030. },
  4031. "bone11": {
  4032. "rotate": [
  4033. { "time": 0, "angle": 0 },
  4034. { "time": 0.2667, "angle": 0.8 },
  4035. { "time": 0.4667, "angle": -8.75 },
  4036. { "time": 0.6667, "angle": 0.8 },
  4037. { "time": 0.9, "angle": -8.75 },
  4038. { "time": 1.1, "angle": 0.8 },
  4039. { "time": 1.3333, "angle": -8.75 },
  4040. { "time": 1.5333, "angle": 0.8 },
  4041. { "time": 1.7667, "angle": -8.75 },
  4042. { "time": 2, "angle": 0.8 },
  4043. { "time": 2.2333, "angle": -8.75 },
  4044. { "time": 2.4333, "angle": 0.8 },
  4045. { "time": 2.6667, "angle": -8.75 },
  4046. { "time": 2.9, "angle": 0.8 },
  4047. { "time": 3.1333, "angle": -8.75 },
  4048. { "time": 3.3333, "angle": 0.8 },
  4049. { "time": 3.5667, "angle": -8.75 },
  4050. { "time": 3.8, "angle": 0.8 },
  4051. { "time": 4.1667, "angle": 0 }
  4052. ],
  4053. "translate": [
  4054. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4055. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4056. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4057. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4058. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4059. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4060. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4061. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4062. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4063. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4064. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  4065. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4066. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4067. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4068. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4069. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4070. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4071. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  4072. { "time": 4.1667, "x": 0, "y": 0 }
  4073. ],
  4074. "scale": [
  4075. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4076. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4077. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4078. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4079. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4080. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4081. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4082. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4083. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4084. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4085. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4086. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4087. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4088. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4089. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4090. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4091. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4092. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4093. { "time": 4.1667, "x": 1, "y": 1 }
  4094. ]
  4095. },
  4096. "bone12": {
  4097. "rotate": [
  4098. { "time": 0, "angle": 0 },
  4099. { "time": 0.2667, "angle": -8.88, "curve": "stepped" },
  4100. { "time": 0.4667, "angle": -8.88, "curve": "stepped" },
  4101. { "time": 0.6667, "angle": -8.88, "curve": "stepped" },
  4102. { "time": 0.9, "angle": -8.88, "curve": "stepped" },
  4103. { "time": 1.1, "angle": -8.88, "curve": "stepped" },
  4104. { "time": 1.3333, "angle": -8.88, "curve": "stepped" },
  4105. { "time": 1.5333, "angle": -8.88, "curve": "stepped" },
  4106. { "time": 1.7667, "angle": -8.88, "curve": "stepped" },
  4107. { "time": 2, "angle": -8.88, "curve": "stepped" },
  4108. { "time": 2.2333, "angle": -8.88, "curve": "stepped" },
  4109. { "time": 2.4333, "angle": -8.88, "curve": "stepped" },
  4110. { "time": 2.6667, "angle": -8.88, "curve": "stepped" },
  4111. { "time": 2.9, "angle": -8.88, "curve": "stepped" },
  4112. { "time": 3.1333, "angle": -8.88, "curve": "stepped" },
  4113. { "time": 3.3333, "angle": -8.88, "curve": "stepped" },
  4114. { "time": 3.5667, "angle": -8.88, "curve": "stepped" },
  4115. { "time": 3.8, "angle": -8.88 },
  4116. { "time": 4.1667, "angle": 0 }
  4117. ],
  4118. "translate": [
  4119. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4120. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4121. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4122. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4123. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4124. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4125. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4126. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4127. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4128. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4129. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  4130. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4131. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4132. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4133. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4134. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4135. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4136. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  4137. { "time": 4.1667, "x": 0, "y": 0 }
  4138. ],
  4139. "scale": [
  4140. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4141. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4142. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4143. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4144. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4145. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4146. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4147. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4148. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4149. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4150. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4151. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4152. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4153. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4154. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4155. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4156. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4157. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4158. { "time": 4.1667, "x": 1, "y": 1 }
  4159. ]
  4160. },
  4161. "bone13": {
  4162. "rotate": [
  4163. { "time": 0, "angle": 0 },
  4164. { "time": 0.2667, "angle": 1.46 },
  4165. { "time": 0.4667, "angle": 13.61 },
  4166. { "time": 0.6667, "angle": 1.46 },
  4167. { "time": 0.9, "angle": 13.61 },
  4168. { "time": 1.1, "angle": 1.46 },
  4169. { "time": 1.3333, "angle": 13.61 },
  4170. { "time": 1.5333, "angle": 1.46 },
  4171. { "time": 1.7667, "angle": 13.61 },
  4172. { "time": 2, "angle": 1.46 },
  4173. { "time": 2.2333, "angle": 13.61 },
  4174. { "time": 2.4333, "angle": 1.46 },
  4175. { "time": 2.6667, "angle": 13.61 },
  4176. { "time": 2.9, "angle": 1.46 },
  4177. { "time": 3.1333, "angle": 13.61 },
  4178. { "time": 3.3333, "angle": 1.46 },
  4179. { "time": 3.5667, "angle": 13.61 },
  4180. { "time": 3.8, "angle": 1.46 },
  4181. { "time": 4.1667, "angle": 0 }
  4182. ],
  4183. "translate": [
  4184. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4185. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4186. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4187. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4188. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4189. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4190. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4191. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4192. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4193. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4194. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  4195. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4196. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4197. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4198. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4199. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4200. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4201. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  4202. { "time": 4.1667, "x": 0, "y": 0 }
  4203. ],
  4204. "scale": [
  4205. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4206. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4207. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4208. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4209. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4210. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4211. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4212. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4213. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4214. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4215. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4216. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4217. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4218. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4219. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4220. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4221. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4222. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4223. { "time": 4.1667, "x": 1, "y": 1 }
  4224. ]
  4225. },
  4226. "bone14": {
  4227. "rotate": [
  4228. { "time": 0, "angle": 0 },
  4229. { "time": 0.2667, "angle": 0.46 },
  4230. { "time": 0.4667, "angle": 10.74 },
  4231. { "time": 0.6667, "angle": 0.46 },
  4232. { "time": 0.9, "angle": 10.74 },
  4233. { "time": 1.1, "angle": 0.46 },
  4234. { "time": 1.3333, "angle": 10.74 },
  4235. { "time": 1.5333, "angle": 0.46 },
  4236. { "time": 1.7667, "angle": 10.74 },
  4237. { "time": 2, "angle": 0.46 },
  4238. { "time": 2.2333, "angle": 10.74 },
  4239. { "time": 2.4333, "angle": 0.46 },
  4240. { "time": 2.6667, "angle": 10.74 },
  4241. { "time": 2.9, "angle": 0.46 },
  4242. { "time": 3.1333, "angle": 10.74 },
  4243. { "time": 3.3333, "angle": 0.46 },
  4244. { "time": 3.5667, "angle": 10.74 },
  4245. { "time": 3.8, "angle": 0.46 },
  4246. { "time": 4.1667, "angle": 0 }
  4247. ],
  4248. "translate": [
  4249. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4250. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4251. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4252. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4253. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4254. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4255. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4256. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4257. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4258. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4259. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  4260. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4261. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4262. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4263. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4264. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4265. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4266. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  4267. { "time": 4.1667, "x": 0, "y": 0 }
  4268. ],
  4269. "scale": [
  4270. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4271. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4272. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4273. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4274. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4275. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4276. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4277. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4278. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4279. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4280. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4281. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4282. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4283. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4284. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4285. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4286. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4287. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4288. { "time": 4.1667, "x": 1, "y": 1 }
  4289. ]
  4290. },
  4291. "bone15": {
  4292. "rotate": [
  4293. { "time": 0, "angle": 0 },
  4294. { "time": 0.2667, "angle": -6.07 },
  4295. { "time": 0.4667, "angle": 8.94 },
  4296. { "time": 0.6667, "angle": -6.07 },
  4297. { "time": 0.9, "angle": 8.94 },
  4298. { "time": 1.1, "angle": -6.07 },
  4299. { "time": 1.3333, "angle": 8.94 },
  4300. { "time": 1.5333, "angle": -6.07 },
  4301. { "time": 1.7667, "angle": 8.94 },
  4302. { "time": 2, "angle": -6.07 },
  4303. { "time": 2.2333, "angle": 8.94 },
  4304. { "time": 2.4333, "angle": -6.07 },
  4305. { "time": 2.6667, "angle": 8.94 },
  4306. { "time": 2.9, "angle": -6.07 },
  4307. { "time": 3.1333, "angle": 8.94 },
  4308. { "time": 3.3333, "angle": -6.07 },
  4309. { "time": 3.5667, "angle": 8.94 },
  4310. { "time": 3.8, "angle": -6.07 },
  4311. { "time": 4.1667, "angle": 0 }
  4312. ],
  4313. "translate": [
  4314. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4315. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4316. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4317. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4318. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4319. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4320. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4321. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4322. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4323. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4324. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  4325. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4326. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4327. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4328. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4329. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4330. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4331. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  4332. { "time": 4.1667, "x": 0, "y": 0 }
  4333. ],
  4334. "scale": [
  4335. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4336. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4337. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4338. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4339. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4340. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4341. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4342. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4343. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4344. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4345. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4346. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4347. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4348. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4349. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4350. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4351. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4352. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4353. { "time": 4.1667, "x": 1, "y": 1 }
  4354. ]
  4355. },
  4356. "bone16": {
  4357. "rotate": [
  4358. { "time": 0, "angle": 0 },
  4359. { "time": 0.2667, "angle": -23.1, "curve": "stepped" },
  4360. { "time": 0.4667, "angle": -23.1, "curve": "stepped" },
  4361. { "time": 0.6667, "angle": -23.1, "curve": "stepped" },
  4362. { "time": 0.9, "angle": -23.1, "curve": "stepped" },
  4363. { "time": 1.1, "angle": -23.1, "curve": "stepped" },
  4364. { "time": 1.3333, "angle": -23.1, "curve": "stepped" },
  4365. { "time": 1.5333, "angle": -23.1, "curve": "stepped" },
  4366. { "time": 1.7667, "angle": -23.1, "curve": "stepped" },
  4367. { "time": 2, "angle": -23.1, "curve": "stepped" },
  4368. { "time": 2.2333, "angle": -23.1, "curve": "stepped" },
  4369. { "time": 2.4333, "angle": -23.1, "curve": "stepped" },
  4370. { "time": 2.6667, "angle": -23.1, "curve": "stepped" },
  4371. { "time": 2.9, "angle": -23.1, "curve": "stepped" },
  4372. { "time": 3.1333, "angle": -23.1, "curve": "stepped" },
  4373. { "time": 3.3333, "angle": -23.1, "curve": "stepped" },
  4374. { "time": 3.5667, "angle": -23.1, "curve": "stepped" },
  4375. { "time": 3.8, "angle": -23.1 },
  4376. { "time": 4.1667, "angle": 0 }
  4377. ],
  4378. "translate": [
  4379. { "time": 0, "x": 0, "y": 0 },
  4380. { "time": 0.2667, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4381. { "time": 0.4667, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4382. { "time": 0.6667, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4383. { "time": 0.9, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4384. { "time": 1.1, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4385. { "time": 1.3333, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4386. { "time": 1.5333, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4387. { "time": 1.7667, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4388. { "time": 2, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4389. { "time": 2.2333, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4390. { "time": 2.4333, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4391. { "time": 2.6667, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4392. { "time": 2.9, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4393. { "time": 3.1333, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4394. { "time": 3.3333, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4395. { "time": 3.5667, "x": -0.78, "y": -0.5, "curve": "stepped" },
  4396. { "time": 3.8, "x": -0.78, "y": -0.5 },
  4397. { "time": 4.1667, "x": 0, "y": 0 }
  4398. ],
  4399. "scale": [
  4400. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4401. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4402. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4403. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4404. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4405. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4406. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4407. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4408. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4409. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4410. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4411. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4412. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4413. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4414. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4415. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4416. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4417. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4418. { "time": 4.1667, "x": 1, "y": 1 }
  4419. ]
  4420. },
  4421. "bone17": {
  4422. "rotate": [
  4423. { "time": 0, "angle": 0, "curve": "stepped" },
  4424. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4425. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  4426. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4427. { "time": 0.9, "angle": 0, "curve": "stepped" },
  4428. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4429. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4430. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  4431. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4432. { "time": 2, "angle": 0, "curve": "stepped" },
  4433. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  4434. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  4435. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  4436. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4437. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  4438. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  4439. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  4440. { "time": 3.8, "angle": 0, "curve": "stepped" },
  4441. { "time": 4.1667, "angle": 0 }
  4442. ],
  4443. "translate": [
  4444. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4445. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4446. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4447. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4448. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4449. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4450. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4451. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4452. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4453. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4454. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  4455. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4456. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4457. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4458. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4459. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4460. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4461. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  4462. { "time": 4.1667, "x": 0, "y": 0 }
  4463. ],
  4464. "scale": [
  4465. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4466. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4467. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4468. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4469. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4470. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4471. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4472. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4473. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4474. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4475. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4476. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4477. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4478. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4479. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4480. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4481. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4482. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4483. { "time": 4.1667, "x": 1, "y": 1 }
  4484. ]
  4485. },
  4486. "bone18": {
  4487. "rotate": [
  4488. { "time": 0, "angle": 0 },
  4489. { "time": 0.2667, "angle": -4.95 },
  4490. { "time": 0.4667, "angle": -27.99 },
  4491. { "time": 0.6667, "angle": -41.37 },
  4492. { "time": 3.8, "angle": -27.99 },
  4493. { "time": 4.1667, "angle": 0 }
  4494. ],
  4495. "translate": [
  4496. { "time": 0, "x": 0, "y": 0 },
  4497. { "time": 0.2667, "x": -4.51, "y": 4.97, "curve": "stepped" },
  4498. { "time": 0.4667, "x": -4.51, "y": 4.97 },
  4499. { "time": 0.6667, "x": -4.39, "y": 2.21 },
  4500. { "time": 3.8, "x": -4.51, "y": 4.97 },
  4501. { "time": 4.1667, "x": 0, "y": 0 }
  4502. ],
  4503. "scale": [
  4504. { "time": 0, "x": 1, "y": 1 },
  4505. { "time": 0.2667, "x": 1.03, "y": 1, "curve": "stepped" },
  4506. { "time": 0.4667, "x": 1.03, "y": 1, "curve": "stepped" },
  4507. { "time": 3.8, "x": 1.03, "y": 1 },
  4508. { "time": 4.1667, "x": 1, "y": 1 }
  4509. ]
  4510. },
  4511. "bone19": {
  4512. "rotate": [
  4513. { "time": 0, "angle": -10.22 },
  4514. { "time": 0.2667, "angle": -52.95 },
  4515. { "time": 0.4667, "angle": -63.54 },
  4516. { "time": 0.6667, "angle": 288.28 },
  4517. { "time": 0.9, "angle": -63.54 },
  4518. { "time": 1.1, "angle": 288.28 },
  4519. { "time": 1.3333, "angle": -63.54 },
  4520. { "time": 1.5333, "angle": 307.44 },
  4521. { "time": 1.7667, "angle": -63.54 },
  4522. { "time": 2, "angle": 288.28 },
  4523. { "time": 2.2333, "angle": -63.54 },
  4524. { "time": 2.4333, "angle": 288.28 },
  4525. { "time": 2.6667, "angle": -63.54 },
  4526. { "time": 2.9, "angle": 288.28 },
  4527. { "time": 3.1333, "angle": -63.54 },
  4528. { "time": 3.3333, "angle": 288.28 },
  4529. { "time": 3.5667, "angle": -63.54 },
  4530. { "time": 3.8, "angle": 288.28 },
  4531. { "time": 4.1667, "angle": -10.22 }
  4532. ],
  4533. "translate": [
  4534. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4535. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4536. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4537. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4538. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4539. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4540. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4541. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4542. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4543. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4544. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  4545. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4546. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4547. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4548. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4549. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4550. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4551. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  4552. { "time": 4.1667, "x": 0, "y": 0 }
  4553. ],
  4554. "scale": [
  4555. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4556. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4557. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4558. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4559. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4560. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4561. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4562. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4563. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4564. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4565. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4566. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4567. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4568. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4569. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4570. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4571. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4572. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4573. { "time": 4.1667, "x": 1, "y": 1 }
  4574. ]
  4575. },
  4576. "bone20": {
  4577. "rotate": [
  4578. { "time": 0, "angle": -6.6 },
  4579. { "time": 0.2667, "angle": -22.14 },
  4580. { "time": 0.4667, "angle": -39.11 },
  4581. { "time": 0.6667, "angle": -42.59 },
  4582. { "time": 0.9, "angle": -9.67 },
  4583. { "time": 1.1, "angle": -42.59 },
  4584. { "time": 1.3333, "angle": -9.67 },
  4585. { "time": 1.5333, "angle": -42.59 },
  4586. { "time": 1.7667, "angle": -9.67 },
  4587. { "time": 2, "angle": -42.59 },
  4588. { "time": 2.2333, "angle": -9.67 },
  4589. { "time": 2.4333, "angle": -42.59 },
  4590. { "time": 2.6667, "angle": -9.67 },
  4591. { "time": 2.9, "angle": -42.59 },
  4592. { "time": 3.1333, "angle": -9.67 },
  4593. { "time": 3.3333, "angle": -42.59 },
  4594. { "time": 3.5667, "angle": -9.67 },
  4595. { "time": 3.8, "angle": -42.59 },
  4596. { "time": 4.1667, "angle": -6.6 }
  4597. ],
  4598. "translate": [
  4599. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4600. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4601. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4602. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4603. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4604. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4605. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4606. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4607. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4608. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4609. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  4610. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4611. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4612. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4613. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4614. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4615. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4616. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  4617. { "time": 4.1667, "x": 0, "y": 0 }
  4618. ],
  4619. "scale": [
  4620. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4621. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4622. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4623. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4624. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4625. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4626. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4627. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4628. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4629. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4630. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4631. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4632. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4633. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4634. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4635. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4636. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4637. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4638. { "time": 4.1667, "x": 1, "y": 1 }
  4639. ]
  4640. },
  4641. "bone21": {
  4642. "rotate": [
  4643. { "time": 0, "angle": 0, "curve": "stepped" },
  4644. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4645. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  4646. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4647. { "time": 0.9, "angle": 0, "curve": "stepped" },
  4648. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4649. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4650. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  4651. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4652. { "time": 2, "angle": 0, "curve": "stepped" },
  4653. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  4654. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  4655. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  4656. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4657. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  4658. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  4659. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  4660. { "time": 3.8, "angle": 0, "curve": "stepped" },
  4661. { "time": 4.1667, "angle": 0 }
  4662. ],
  4663. "translate": [
  4664. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4665. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4666. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4667. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4668. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4669. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4670. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4671. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4672. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4673. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4674. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  4675. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4676. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4677. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4678. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4679. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4680. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4681. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  4682. { "time": 4.1667, "x": 0, "y": 0 }
  4683. ],
  4684. "scale": [
  4685. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4686. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4687. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4688. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4689. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4690. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4691. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4692. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4693. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4694. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4695. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4696. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4697. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4698. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4699. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4700. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4701. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4702. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4703. { "time": 4.1667, "x": 1, "y": 1 }
  4704. ]
  4705. },
  4706. "bone22": {
  4707. "rotate": [
  4708. { "time": 0, "angle": 3.93 },
  4709. { "time": 0.2667, "angle": -2.45, "curve": "stepped" },
  4710. { "time": 0.4667, "angle": -2.45, "curve": "stepped" },
  4711. { "time": 0.6667, "angle": -2.45, "curve": "stepped" },
  4712. { "time": 0.9, "angle": -2.45, "curve": "stepped" },
  4713. { "time": 1.1, "angle": -2.45, "curve": "stepped" },
  4714. { "time": 1.3333, "angle": -2.45, "curve": "stepped" },
  4715. { "time": 1.5333, "angle": -2.45, "curve": "stepped" },
  4716. { "time": 1.7667, "angle": -2.45, "curve": "stepped" },
  4717. { "time": 2, "angle": -2.45, "curve": "stepped" },
  4718. { "time": 2.2333, "angle": -2.45, "curve": "stepped" },
  4719. { "time": 2.4333, "angle": -2.45, "curve": "stepped" },
  4720. { "time": 2.6667, "angle": -2.45, "curve": "stepped" },
  4721. { "time": 2.9, "angle": -2.45, "curve": "stepped" },
  4722. { "time": 3.1333, "angle": -2.45, "curve": "stepped" },
  4723. { "time": 3.3333, "angle": -2.45, "curve": "stepped" },
  4724. { "time": 3.5667, "angle": -2.45, "curve": "stepped" },
  4725. { "time": 3.8, "angle": -2.45 },
  4726. { "time": 4.1667, "angle": 3.93 }
  4727. ],
  4728. "translate": [
  4729. { "time": 0, "x": -0.49, "y": -1.08 },
  4730. { "time": 0.2667, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4731. { "time": 0.4667, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4732. { "time": 0.6667, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4733. { "time": 0.9, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4734. { "time": 1.1, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4735. { "time": 1.3333, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4736. { "time": 1.5333, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4737. { "time": 1.7667, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4738. { "time": 2, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4739. { "time": 2.2333, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4740. { "time": 2.4333, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4741. { "time": 2.6667, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4742. { "time": 2.9, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4743. { "time": 3.1333, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4744. { "time": 3.3333, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4745. { "time": 3.5667, "x": -0.69, "y": 1.59, "curve": "stepped" },
  4746. { "time": 3.8, "x": -0.69, "y": 1.59 },
  4747. { "time": 4.1667, "x": -0.49, "y": -1.08 }
  4748. ],
  4749. "scale": [
  4750. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4751. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4752. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4753. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4754. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4755. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4756. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4757. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4758. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4759. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4760. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4761. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4762. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4763. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4764. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4765. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4766. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4767. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4768. { "time": 4.1667, "x": 1, "y": 1 }
  4769. ]
  4770. },
  4771. "bone23": {
  4772. "rotate": [
  4773. { "time": 0, "angle": 4.47 },
  4774. { "time": 0.2667, "angle": -46.55 },
  4775. { "time": 0.4667, "angle": -42.92 },
  4776. { "time": 0.6667, "angle": -46.55 },
  4777. { "time": 0.9, "angle": -34.45 },
  4778. { "time": 1.1, "angle": -46.55 },
  4779. { "time": 1.3333, "angle": -34.45 },
  4780. { "time": 1.5333, "angle": -46.55 },
  4781. { "time": 1.7667, "angle": -34.45 },
  4782. { "time": 2, "angle": -46.55 },
  4783. { "time": 2.2333, "angle": -34.45 },
  4784. { "time": 2.4333, "angle": -46.55 },
  4785. { "time": 2.6667, "angle": -34.45 },
  4786. { "time": 2.9, "angle": -46.55 },
  4787. { "time": 3.1333, "angle": -34.45 },
  4788. { "time": 3.3333, "angle": -46.55 },
  4789. { "time": 3.5667, "angle": -34.45 },
  4790. { "time": 3.8, "angle": -46.55 },
  4791. { "time": 4.1667, "angle": 4.47 }
  4792. ],
  4793. "translate": [
  4794. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4795. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4796. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4797. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4798. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4799. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4800. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4801. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4802. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4803. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4804. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  4805. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4806. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4807. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4808. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4809. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4810. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4811. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  4812. { "time": 4.1667, "x": 0, "y": 0 }
  4813. ],
  4814. "scale": [
  4815. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4816. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4817. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4818. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4819. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4820. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4821. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4822. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4823. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4824. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4825. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4826. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4827. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4828. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4829. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4830. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4831. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4832. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4833. { "time": 4.1667, "x": 1, "y": 1 }
  4834. ]
  4835. },
  4836. "bone24": {
  4837. "rotate": [
  4838. { "time": 0, "angle": 13.83 },
  4839. { "time": 0.2667, "angle": 0 },
  4840. { "time": 0.4667, "angle": -16.02 },
  4841. { "time": 0.6667, "angle": 0 },
  4842. { "time": 0.9, "angle": -16.02 },
  4843. { "time": 1.1, "angle": 0 },
  4844. { "time": 1.3333, "angle": -16.02 },
  4845. { "time": 1.5333, "angle": 0 },
  4846. { "time": 1.7667, "angle": -16.02 },
  4847. { "time": 2, "angle": 0 },
  4848. { "time": 2.2333, "angle": -16.02 },
  4849. { "time": 2.4333, "angle": 0 },
  4850. { "time": 2.6667, "angle": -16.02 },
  4851. { "time": 2.9, "angle": 0 },
  4852. { "time": 3.1333, "angle": -16.02 },
  4853. { "time": 3.3333, "angle": 0 },
  4854. { "time": 3.5667, "angle": -16.02 },
  4855. { "time": 3.8, "angle": 0 },
  4856. { "time": 4.1667, "angle": 13.83 }
  4857. ],
  4858. "translate": [
  4859. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4860. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4861. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4862. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4863. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4864. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4865. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4866. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4867. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4868. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4869. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  4870. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4871. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4872. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4873. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4874. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4875. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4876. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  4877. { "time": 4.1667, "x": 0, "y": 0 }
  4878. ],
  4879. "scale": [
  4880. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4881. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4882. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4883. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4884. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4885. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4886. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4887. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4888. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4889. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4890. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4891. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4892. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4893. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4894. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4895. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4896. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4897. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4898. { "time": 4.1667, "x": 1, "y": 1 }
  4899. ]
  4900. },
  4901. "bone25": {
  4902. "rotate": [
  4903. { "time": 0, "angle": 0 },
  4904. { "time": 0.2667, "angle": 3.47, "curve": "stepped" },
  4905. { "time": 0.4667, "angle": 3.47, "curve": "stepped" },
  4906. { "time": 0.6667, "angle": 3.47, "curve": "stepped" },
  4907. { "time": 0.9, "angle": 3.47, "curve": "stepped" },
  4908. { "time": 1.1, "angle": 3.47, "curve": "stepped" },
  4909. { "time": 1.3333, "angle": 3.47, "curve": "stepped" },
  4910. { "time": 1.5333, "angle": 3.47, "curve": "stepped" },
  4911. { "time": 1.7667, "angle": 3.47, "curve": "stepped" },
  4912. { "time": 2, "angle": 3.47, "curve": "stepped" },
  4913. { "time": 2.2333, "angle": 3.47, "curve": "stepped" },
  4914. { "time": 2.4333, "angle": 3.47, "curve": "stepped" },
  4915. { "time": 2.6667, "angle": 3.47, "curve": "stepped" },
  4916. { "time": 2.9, "angle": 3.47, "curve": "stepped" },
  4917. { "time": 3.1333, "angle": 3.47, "curve": "stepped" },
  4918. { "time": 3.3333, "angle": 3.47, "curve": "stepped" },
  4919. { "time": 3.5667, "angle": 3.47, "curve": "stepped" },
  4920. { "time": 3.8, "angle": 3.47 },
  4921. { "time": 4.1667, "angle": 0 }
  4922. ],
  4923. "translate": [
  4924. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4925. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4926. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4927. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4928. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4929. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4930. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4931. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4932. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4933. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4934. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  4935. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4936. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4937. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4938. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4939. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4940. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4941. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  4942. { "time": 4.1667, "x": 0, "y": 0 }
  4943. ],
  4944. "scale": [
  4945. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4946. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4947. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4948. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4949. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4950. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4951. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4952. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4953. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4954. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4955. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4956. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4957. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4958. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4959. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  4960. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4961. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4962. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  4963. { "time": 4.1667, "x": 1, "y": 1 }
  4964. ]
  4965. },
  4966. "bone26": {
  4967. "rotate": [
  4968. { "time": 0, "angle": 0, "curve": "stepped" },
  4969. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4970. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4971. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  4972. { "time": 3.9333, "angle": 0, "curve": "stepped" },
  4973. { "time": 4.1667, "angle": 0 }
  4974. ],
  4975. "translate": [
  4976. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4977. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4978. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4979. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4980. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  4981. { "time": 4.1667, "x": 0, "y": 0 }
  4982. ],
  4983. "scale": [
  4984. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4985. { "time": 0.1667, "x": 1, "y": 1 },
  4986. { "time": 0.2667, "x": 0.299, "y": 1, "curve": "stepped" },
  4987. { "time": 3.8333, "x": 0.299, "y": 1 },
  4988. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  4989. { "time": 4.1667, "x": 1, "y": 1 }
  4990. ]
  4991. },
  4992. "bone27": {
  4993. "rotate": [
  4994. { "time": 0, "angle": 0, "curve": "stepped" },
  4995. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4996. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4997. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  4998. { "time": 3.9333, "angle": 0, "curve": "stepped" },
  4999. { "time": 4.1667, "angle": 0 }
  5000. ],
  5001. "translate": [
  5002. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5003. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5004. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5005. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5006. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  5007. { "time": 4.1667, "x": 0, "y": 0 }
  5008. ],
  5009. "scale": [
  5010. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5011. { "time": 0.1667, "x": 1, "y": 1 },
  5012. { "time": 0.2667, "x": 0.261, "y": 1, "curve": "stepped" },
  5013. { "time": 3.8333, "x": 0.261, "y": 1 },
  5014. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  5015. { "time": 4.1667, "x": 1, "y": 1 }
  5016. ]
  5017. },
  5018. "bone28": {
  5019. "rotate": [
  5020. { "time": 0, "angle": 0, "curve": "stepped" },
  5021. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  5022. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  5023. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5024. { "time": 0.9, "angle": 0, "curve": "stepped" },
  5025. { "time": 1.1, "angle": 0, "curve": "stepped" },
  5026. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5027. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  5028. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  5029. { "time": 2, "angle": 0, "curve": "stepped" },
  5030. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  5031. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  5032. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  5033. { "time": 2.9, "angle": 0, "curve": "stepped" },
  5034. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  5035. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  5036. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  5037. { "time": 3.8, "angle": 0, "curve": "stepped" },
  5038. { "time": 4.1667, "angle": 0 }
  5039. ],
  5040. "translate": [
  5041. { "time": 0, "x": -1.17, "y": -0.02 },
  5042. { "time": 0.2667, "x": -1.76, "y": -0.04 },
  5043. { "time": 0.4667, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5044. { "time": 0.6667, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5045. { "time": 0.9, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5046. { "time": 1.1, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5047. { "time": 1.3333, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5048. { "time": 1.5333, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5049. { "time": 1.7667, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5050. { "time": 2, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5051. { "time": 2.2333, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5052. { "time": 2.4333, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5053. { "time": 2.6667, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5054. { "time": 2.9, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5055. { "time": 3.1333, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5056. { "time": 3.3333, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5057. { "time": 3.5667, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5058. { "time": 3.8, "x": -1.17, "y": -0.02, "curve": "stepped" },
  5059. { "time": 4.1667, "x": -1.17, "y": -0.02 }
  5060. ],
  5061. "scale": [
  5062. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5063. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5064. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5065. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5066. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5067. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5068. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5069. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5070. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5071. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5072. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5073. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5074. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5075. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5076. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5077. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5078. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5079. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5080. { "time": 4.1667, "x": 1, "y": 1 }
  5081. ]
  5082. },
  5083. "bone29": {
  5084. "rotate": [
  5085. { "time": 0, "angle": 0, "curve": "stepped" },
  5086. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5087. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  5088. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  5089. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5090. { "time": 0.9, "angle": 0, "curve": "stepped" },
  5091. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5092. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  5093. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  5094. { "time": 2, "angle": 0, "curve": "stepped" },
  5095. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  5096. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  5097. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  5098. { "time": 2.9, "angle": 0, "curve": "stepped" },
  5099. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  5100. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  5101. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  5102. { "time": 3.8, "angle": 0, "curve": "stepped" },
  5103. { "time": 4.1667, "angle": 0 }
  5104. ],
  5105. "translate": [
  5106. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5107. { "time": 0.1667, "x": 0, "y": 0 },
  5108. { "time": 0.2667, "x": -1.78, "y": -0.04, "curve": "stepped" },
  5109. { "time": 0.3667, "x": -1.78, "y": -0.04 },
  5110. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5111. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5112. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5113. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5114. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  5115. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5116. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  5117. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5118. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5119. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5120. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5121. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  5122. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5123. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  5124. { "time": 4.1667, "x": 0, "y": 0 }
  5125. ],
  5126. "scale": [
  5127. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5128. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5129. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5130. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5131. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5132. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5133. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5134. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5135. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5136. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5137. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5138. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5139. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5140. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5141. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5142. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5143. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5144. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5145. { "time": 4.1667, "x": 1, "y": 1 }
  5146. ]
  5147. },
  5148. "bone30": {
  5149. "rotate": [
  5150. { "time": 0, "angle": 0, "curve": "stepped" },
  5151. { "time": 0.2667, "angle": 0 },
  5152. { "time": 0.4667, "angle": 5.41 },
  5153. { "time": 0.6667, "angle": 0 },
  5154. { "time": 0.9, "angle": 5.41 },
  5155. { "time": 1.1, "angle": 0 },
  5156. { "time": 1.3333, "angle": 5.41 },
  5157. { "time": 1.5333, "angle": 0 },
  5158. { "time": 1.7667, "angle": 5.41 },
  5159. { "time": 2, "angle": 0 },
  5160. { "time": 2.2333, "angle": 5.41 },
  5161. { "time": 2.4333, "angle": 0 },
  5162. { "time": 2.6667, "angle": 5.41 },
  5163. { "time": 2.9, "angle": 0 },
  5164. { "time": 3.1333, "angle": 5.41 },
  5165. { "time": 3.3333, "angle": 0 },
  5166. { "time": 3.5667, "angle": 5.41 },
  5167. { "time": 3.8, "angle": 0, "curve": "stepped" },
  5168. { "time": 4.1667, "angle": 0 }
  5169. ],
  5170. "translate": [
  5171. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5172. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5173. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5174. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5175. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5176. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5177. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5178. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5179. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  5180. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5181. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  5182. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5183. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5184. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5185. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5186. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  5187. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5188. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  5189. { "time": 4.1667, "x": 0, "y": 0 }
  5190. ],
  5191. "scale": [
  5192. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5193. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5194. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5195. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5196. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5197. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5198. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5199. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5200. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5201. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5202. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5203. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5204. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5205. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5206. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5207. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5208. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5209. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5210. { "time": 4.1667, "x": 1, "y": 1 }
  5211. ]
  5212. },
  5213. "bone31": {
  5214. "rotate": [
  5215. { "time": 0, "angle": 0 },
  5216. { "time": 0.2667, "angle": -1.93 },
  5217. { "time": 0.4667, "angle": -10.01 },
  5218. { "time": 0.6667, "angle": -1.93 },
  5219. { "time": 0.9, "angle": -10.01 },
  5220. { "time": 1.1, "angle": -1.93 },
  5221. { "time": 1.3333, "angle": -10.01 },
  5222. { "time": 1.5333, "angle": -1.93 },
  5223. { "time": 1.7667, "angle": -10.01 },
  5224. { "time": 2, "angle": -1.93 },
  5225. { "time": 2.2333, "angle": -10.01 },
  5226. { "time": 2.4333, "angle": -1.93 },
  5227. { "time": 2.6667, "angle": -10.01 },
  5228. { "time": 2.9, "angle": -1.93 },
  5229. { "time": 3.1333, "angle": -10.01 },
  5230. { "time": 3.3333, "angle": -1.93 },
  5231. { "time": 3.5667, "angle": -10.01 },
  5232. { "time": 3.8, "angle": -1.93 },
  5233. { "time": 4.1667, "angle": 0 }
  5234. ],
  5235. "translate": [
  5236. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5237. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5238. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5239. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5240. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5241. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5242. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5243. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5244. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  5245. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5246. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  5247. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5248. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5249. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5250. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5251. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  5252. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5253. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  5254. { "time": 4.1667, "x": 0, "y": 0 }
  5255. ],
  5256. "scale": [
  5257. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5258. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5259. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5260. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5261. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5262. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5263. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5264. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5265. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5266. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5267. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5268. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5269. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5270. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5271. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5272. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5273. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5274. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5275. { "time": 4.1667, "x": 1, "y": 1 }
  5276. ]
  5277. },
  5278. "bone32": {
  5279. "rotate": [
  5280. { "time": 0, "angle": 0 },
  5281. { "time": 0.2667, "angle": -17.39, "curve": "stepped" },
  5282. { "time": 0.4667, "angle": -17.39, "curve": "stepped" },
  5283. { "time": 0.6667, "angle": -17.39, "curve": "stepped" },
  5284. { "time": 0.9, "angle": -17.39, "curve": "stepped" },
  5285. { "time": 1.1, "angle": -17.39, "curve": "stepped" },
  5286. { "time": 1.3333, "angle": -17.39, "curve": "stepped" },
  5287. { "time": 1.5333, "angle": -17.39, "curve": "stepped" },
  5288. { "time": 1.7667, "angle": -17.39, "curve": "stepped" },
  5289. { "time": 2, "angle": -17.39, "curve": "stepped" },
  5290. { "time": 2.2333, "angle": -17.39, "curve": "stepped" },
  5291. { "time": 2.4333, "angle": -17.39, "curve": "stepped" },
  5292. { "time": 2.6667, "angle": -17.39, "curve": "stepped" },
  5293. { "time": 2.9, "angle": -17.39, "curve": "stepped" },
  5294. { "time": 3.1333, "angle": -17.39, "curve": "stepped" },
  5295. { "time": 3.3333, "angle": -17.39, "curve": "stepped" },
  5296. { "time": 3.5667, "angle": -17.39, "curve": "stepped" },
  5297. { "time": 3.8, "angle": -17.39 },
  5298. { "time": 4.1667, "angle": 0 }
  5299. ],
  5300. "translate": [
  5301. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5302. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5303. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5304. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5305. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5306. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5307. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5308. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5309. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  5310. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5311. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  5312. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5313. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5314. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5315. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5316. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  5317. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5318. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  5319. { "time": 4.1667, "x": 0, "y": 0 }
  5320. ],
  5321. "scale": [
  5322. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5323. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5324. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5325. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5326. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5327. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5328. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5329. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5330. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5331. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5332. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5333. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5334. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5335. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5336. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5337. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5338. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5339. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5340. { "time": 4.1667, "x": 1, "y": 1 }
  5341. ]
  5342. },
  5343. "bone33": {
  5344. "rotate": [
  5345. { "time": 0, "angle": 0 },
  5346. { "time": 0.2667, "angle": -4.1 },
  5347. { "time": 0.4667, "angle": -5.75 },
  5348. { "time": 0.6667, "angle": -4.1 },
  5349. { "time": 0.9, "angle": -5.75 },
  5350. { "time": 1.1, "angle": -4.1 },
  5351. { "time": 1.3333, "angle": -5.75 },
  5352. { "time": 1.5333, "angle": -4.1 },
  5353. { "time": 1.7667, "angle": -5.75 },
  5354. { "time": 2, "angle": -4.1 },
  5355. { "time": 2.2333, "angle": -5.75 },
  5356. { "time": 2.4333, "angle": -4.1 },
  5357. { "time": 2.6667, "angle": -5.75 },
  5358. { "time": 2.9, "angle": -4.1 },
  5359. { "time": 3.1333, "angle": -5.75 },
  5360. { "time": 3.3333, "angle": -4.1 },
  5361. { "time": 3.5667, "angle": -5.75 },
  5362. { "time": 3.8, "angle": -4.1 },
  5363. { "time": 4.1667, "angle": 0 }
  5364. ],
  5365. "translate": [
  5366. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5367. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5368. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5369. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5370. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5371. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5372. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5373. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5374. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  5375. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5376. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  5377. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5378. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5379. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5380. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5381. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  5382. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5383. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  5384. { "time": 4.1667, "x": 0, "y": 0 }
  5385. ],
  5386. "scale": [
  5387. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5388. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5389. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5390. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5391. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5392. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5393. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5394. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5395. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5396. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5397. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5398. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5399. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5400. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5401. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5402. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5403. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5404. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5405. { "time": 4.1667, "x": 1, "y": 1 }
  5406. ]
  5407. },
  5408. "bone34": {
  5409. "rotate": [
  5410. { "time": 0, "angle": 0 },
  5411. { "time": 0.2667, "angle": -4.44 },
  5412. { "time": 0.4667, "angle": -13.89 },
  5413. { "time": 0.6667, "angle": -4.44 },
  5414. { "time": 0.9, "angle": -13.89 },
  5415. { "time": 1.1, "angle": -4.44 },
  5416. { "time": 1.3333, "angle": -13.89 },
  5417. { "time": 1.5333, "angle": -4.44 },
  5418. { "time": 1.7667, "angle": -13.89 },
  5419. { "time": 2, "angle": -4.44 },
  5420. { "time": 2.2333, "angle": -13.89 },
  5421. { "time": 2.4333, "angle": -4.44 },
  5422. { "time": 2.6667, "angle": -13.89 },
  5423. { "time": 2.9, "angle": -4.44 },
  5424. { "time": 3.1333, "angle": -13.89 },
  5425. { "time": 3.3333, "angle": -4.44 },
  5426. { "time": 3.5667, "angle": -13.89 },
  5427. { "time": 3.8, "angle": -4.44 },
  5428. { "time": 4.1667, "angle": 0 }
  5429. ],
  5430. "translate": [
  5431. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5432. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5433. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5434. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5435. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5436. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5437. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5438. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5439. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  5440. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5441. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  5442. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5443. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5444. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5445. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5446. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  5447. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5448. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  5449. { "time": 4.1667, "x": 0, "y": 0 }
  5450. ],
  5451. "scale": [
  5452. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5453. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5454. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5455. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5456. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5457. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5458. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5459. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5460. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5461. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5462. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5463. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5464. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5465. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5466. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5467. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5468. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5469. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5470. { "time": 4.1667, "x": 1, "y": 1 }
  5471. ]
  5472. },
  5473. "bone35": {
  5474. "rotate": [
  5475. { "time": 0, "angle": 0 },
  5476. { "time": 0.2667, "angle": 3.41 },
  5477. { "time": 0.4667, "angle": 11.64 },
  5478. { "time": 0.6667, "angle": 3.41 },
  5479. { "time": 0.9, "angle": 11.64 },
  5480. { "time": 1.1, "angle": 3.41 },
  5481. { "time": 1.3333, "angle": 11.64 },
  5482. { "time": 1.5333, "angle": 3.41 },
  5483. { "time": 1.7667, "angle": 11.64 },
  5484. { "time": 2, "angle": 3.41 },
  5485. { "time": 2.2333, "angle": 11.64 },
  5486. { "time": 2.4333, "angle": 3.41 },
  5487. { "time": 2.6667, "angle": 11.64 },
  5488. { "time": 2.9, "angle": 3.41 },
  5489. { "time": 3.1333, "angle": 11.64 },
  5490. { "time": 3.3333, "angle": 3.41 },
  5491. { "time": 3.5667, "angle": 11.64 },
  5492. { "time": 3.8, "angle": 3.41 },
  5493. { "time": 4.1667, "angle": 0 }
  5494. ],
  5495. "translate": [
  5496. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5497. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5498. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5499. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5500. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5501. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5502. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5503. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5504. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  5505. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5506. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  5507. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5508. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5509. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5510. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5511. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  5512. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5513. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  5514. { "time": 4.1667, "x": 0, "y": 0 }
  5515. ],
  5516. "scale": [
  5517. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5518. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5519. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5520. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5521. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5522. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5523. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5524. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5525. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5526. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5527. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5528. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5529. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5530. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5531. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5532. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5533. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5534. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5535. { "time": 4.1667, "x": 1, "y": 1 }
  5536. ]
  5537. },
  5538. "bone36": {
  5539. "rotate": [
  5540. { "time": 0, "angle": 0, "curve": "stepped" },
  5541. { "time": 0.2667, "angle": 0 },
  5542. { "time": 0.4667, "angle": -12.08 },
  5543. { "time": 0.6667, "angle": 0 },
  5544. { "time": 0.9, "angle": -12.08 },
  5545. { "time": 1.1, "angle": 0 },
  5546. { "time": 1.3333, "angle": -12.08 },
  5547. { "time": 1.5333, "angle": 0 },
  5548. { "time": 1.7667, "angle": -12.08 },
  5549. { "time": 2, "angle": 0 },
  5550. { "time": 2.2333, "angle": -12.08 },
  5551. { "time": 2.4333, "angle": 0 },
  5552. { "time": 2.6667, "angle": -12.08 },
  5553. { "time": 2.9, "angle": 0 },
  5554. { "time": 3.1333, "angle": -12.08 },
  5555. { "time": 3.3333, "angle": 0 },
  5556. { "time": 3.5667, "angle": -12.08 },
  5557. { "time": 3.8, "angle": 0, "curve": "stepped" },
  5558. { "time": 4.1667, "angle": 0 }
  5559. ],
  5560. "translate": [
  5561. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5562. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5563. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5564. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5565. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5566. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5567. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5568. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5569. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  5570. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5571. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  5572. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5573. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5574. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5575. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5576. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  5577. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5578. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  5579. { "time": 4.1667, "x": 0, "y": 0 }
  5580. ],
  5581. "scale": [
  5582. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5583. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5584. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5585. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5586. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5587. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5588. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5589. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5590. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5591. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5592. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5593. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5594. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5595. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5596. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5597. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5598. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5599. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5600. { "time": 4.1667, "x": 1, "y": 1 }
  5601. ]
  5602. },
  5603. "bone37": {
  5604. "rotate": [
  5605. { "time": 0, "angle": 0 },
  5606. { "time": 0.2667, "angle": -13.78 },
  5607. { "time": 0.4667, "angle": -23.43 },
  5608. { "time": 0.6667, "angle": -13.78 },
  5609. { "time": 0.9, "angle": -23.43 },
  5610. { "time": 1.1, "angle": -13.78 },
  5611. { "time": 1.3333, "angle": -23.43 },
  5612. { "time": 1.5333, "angle": -13.78 },
  5613. { "time": 1.7667, "angle": -23.43 },
  5614. { "time": 2, "angle": -13.78 },
  5615. { "time": 2.2333, "angle": -23.43 },
  5616. { "time": 2.4333, "angle": -13.78 },
  5617. { "time": 2.6667, "angle": -23.43 },
  5618. { "time": 2.9, "angle": -13.78 },
  5619. { "time": 3.1333, "angle": -23.43 },
  5620. { "time": 3.3333, "angle": -13.78 },
  5621. { "time": 3.5667, "angle": -23.43 },
  5622. { "time": 3.8, "angle": -13.78 },
  5623. { "time": 4.1667, "angle": 0 }
  5624. ],
  5625. "translate": [
  5626. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5627. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5628. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5629. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5630. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5631. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5632. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5633. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5634. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  5635. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5636. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  5637. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5638. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5639. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5640. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5641. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  5642. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5643. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  5644. { "time": 4.1667, "x": 0, "y": 0 }
  5645. ],
  5646. "scale": [
  5647. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5648. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5649. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5650. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5651. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5652. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5653. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5654. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5655. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5656. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5657. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5658. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5659. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5660. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5661. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5662. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5663. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5664. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5665. { "time": 4.1667, "x": 1, "y": 1 }
  5666. ]
  5667. },
  5668. "bone38": {
  5669. "rotate": [
  5670. { "time": 0, "angle": 0 },
  5671. { "time": 0.2667, "angle": -12.53, "curve": "stepped" },
  5672. { "time": 0.4667, "angle": -12.53, "curve": "stepped" },
  5673. { "time": 0.6667, "angle": -12.53, "curve": "stepped" },
  5674. { "time": 0.9, "angle": -12.53, "curve": "stepped" },
  5675. { "time": 1.1, "angle": -12.53, "curve": "stepped" },
  5676. { "time": 1.3333, "angle": -12.53, "curve": "stepped" },
  5677. { "time": 1.5333, "angle": -12.53, "curve": "stepped" },
  5678. { "time": 1.7667, "angle": -12.53, "curve": "stepped" },
  5679. { "time": 2, "angle": -12.53, "curve": "stepped" },
  5680. { "time": 2.2333, "angle": -12.53, "curve": "stepped" },
  5681. { "time": 2.4333, "angle": -12.53, "curve": "stepped" },
  5682. { "time": 2.6667, "angle": -12.53, "curve": "stepped" },
  5683. { "time": 2.9, "angle": -12.53, "curve": "stepped" },
  5684. { "time": 3.1333, "angle": -12.53, "curve": "stepped" },
  5685. { "time": 3.3333, "angle": -12.53, "curve": "stepped" },
  5686. { "time": 3.5667, "angle": -12.53, "curve": "stepped" },
  5687. { "time": 3.8, "angle": -12.53 },
  5688. { "time": 4.1667, "angle": 0 }
  5689. ],
  5690. "translate": [
  5691. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5692. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5693. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5694. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5695. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5696. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5697. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5698. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5699. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  5700. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5701. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  5702. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5703. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5704. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5705. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5706. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  5707. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5708. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  5709. { "time": 4.1667, "x": 0, "y": 0 }
  5710. ],
  5711. "scale": [
  5712. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5713. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5714. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5715. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5716. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5717. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5718. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5719. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5720. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5721. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5722. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5723. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5724. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5725. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5726. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5727. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5728. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5729. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5730. { "time": 4.1667, "x": 1, "y": 1 }
  5731. ]
  5732. },
  5733. "bone39": {
  5734. "rotate": [
  5735. { "time": 0, "angle": 0, "curve": "stepped" },
  5736. { "time": 0.2667, "angle": 0 },
  5737. { "time": 0.4667, "angle": 4.8 },
  5738. { "time": 0.6667, "angle": 0 },
  5739. { "time": 0.9, "angle": 4.8 },
  5740. { "time": 1.1, "angle": 0 },
  5741. { "time": 1.3333, "angle": 4.8 },
  5742. { "time": 1.5333, "angle": 0 },
  5743. { "time": 1.7667, "angle": 4.8 },
  5744. { "time": 2, "angle": 0 },
  5745. { "time": 2.2333, "angle": 4.8 },
  5746. { "time": 2.4333, "angle": 0 },
  5747. { "time": 2.6667, "angle": 4.8 },
  5748. { "time": 2.9, "angle": 0 },
  5749. { "time": 3.1333, "angle": 4.8 },
  5750. { "time": 3.3333, "angle": 0 },
  5751. { "time": 3.5667, "angle": 4.8 },
  5752. { "time": 3.8, "angle": 0, "curve": "stepped" },
  5753. { "time": 4.1667, "angle": 0 }
  5754. ],
  5755. "translate": [
  5756. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5757. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5758. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5759. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5760. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5761. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5762. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5763. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5764. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  5765. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5766. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  5767. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5768. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5769. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5770. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5771. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  5772. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5773. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  5774. { "time": 4.1667, "x": 0, "y": 0 }
  5775. ],
  5776. "scale": [
  5777. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5778. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5779. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5780. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5781. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5782. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5783. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5784. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5785. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5786. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5787. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5788. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5789. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5790. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5791. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5792. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5793. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5794. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5795. { "time": 4.1667, "x": 1, "y": 1 }
  5796. ]
  5797. },
  5798. "bone40": {
  5799. "rotate": [
  5800. { "time": 0, "angle": 0 },
  5801. { "time": 0.2667, "angle": 3.02 },
  5802. { "time": 0.4667, "angle": 10.95 },
  5803. { "time": 0.6667, "angle": 3.02 },
  5804. { "time": 0.9, "angle": 10.95 },
  5805. { "time": 1.1, "angle": 3.02 },
  5806. { "time": 1.3333, "angle": 10.95 },
  5807. { "time": 1.5333, "angle": 3.02 },
  5808. { "time": 1.7667, "angle": 10.95 },
  5809. { "time": 2, "angle": 3.02 },
  5810. { "time": 2.2333, "angle": 10.95 },
  5811. { "time": 2.4333, "angle": 3.02 },
  5812. { "time": 2.6667, "angle": 10.95 },
  5813. { "time": 2.9, "angle": 3.02 },
  5814. { "time": 3.1333, "angle": 10.95 },
  5815. { "time": 3.3333, "angle": 3.02 },
  5816. { "time": 3.5667, "angle": 10.95 },
  5817. { "time": 3.8, "angle": 3.02 },
  5818. { "time": 4.1667, "angle": 0 }
  5819. ],
  5820. "translate": [
  5821. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5822. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5823. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5824. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5825. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5826. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5827. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5828. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5829. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  5830. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5831. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  5832. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5833. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5834. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5835. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5836. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  5837. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5838. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  5839. { "time": 4.1667, "x": 0, "y": 0 }
  5840. ],
  5841. "scale": [
  5842. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5843. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5844. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5845. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5846. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5847. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5848. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5849. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5850. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5851. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5852. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5853. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5854. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5855. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5856. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5857. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5858. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5859. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5860. { "time": 4.1667, "x": 1, "y": 1 }
  5861. ]
  5862. },
  5863. "bone41": {
  5864. "rotate": [
  5865. { "time": 0, "angle": 0 },
  5866. { "time": 0.2667, "angle": 11.53 },
  5867. { "time": 0.4667, "angle": 2.79 },
  5868. { "time": 0.6667, "angle": 11.53 },
  5869. { "time": 0.9, "angle": 2.79 },
  5870. { "time": 1.1, "angle": 11.53 },
  5871. { "time": 1.3333, "angle": 2.79 },
  5872. { "time": 1.5333, "angle": 11.53 },
  5873. { "time": 1.7667, "angle": 2.79 },
  5874. { "time": 2, "angle": 11.53 },
  5875. { "time": 2.2333, "angle": 2.79 },
  5876. { "time": 2.4333, "angle": 11.53 },
  5877. { "time": 2.6667, "angle": 2.79 },
  5878. { "time": 2.9, "angle": 11.53 },
  5879. { "time": 3.1333, "angle": 2.79 },
  5880. { "time": 3.3333, "angle": 11.53 },
  5881. { "time": 3.5667, "angle": 2.79 },
  5882. { "time": 3.8, "angle": 11.53 },
  5883. { "time": 4.1667, "angle": 0 }
  5884. ],
  5885. "translate": [
  5886. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5887. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5888. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5889. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5890. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5891. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5892. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5893. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5894. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  5895. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5896. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  5897. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5898. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5899. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5900. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5901. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  5902. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5903. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  5904. { "time": 4.1667, "x": 0, "y": 0 }
  5905. ],
  5906. "scale": [
  5907. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5908. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5909. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5910. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5911. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5912. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5913. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5914. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5915. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5916. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5917. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5918. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5919. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5920. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5921. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5922. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5923. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5924. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5925. { "time": 4.1667, "x": 1, "y": 1 }
  5926. ]
  5927. },
  5928. "bone45": {
  5929. "rotate": [
  5930. { "time": 0, "angle": 0 },
  5931. { "time": 0.2667, "angle": -9.75 },
  5932. { "time": 0.4667, "angle": -13.34 },
  5933. { "time": 0.6667, "angle": -9.75 },
  5934. { "time": 0.9, "angle": -13.34 },
  5935. { "time": 1.1, "angle": -9.75 },
  5936. { "time": 1.3333, "angle": -13.34 },
  5937. { "time": 1.5333, "angle": -9.75 },
  5938. { "time": 1.7667, "angle": -13.34 },
  5939. { "time": 2, "angle": -9.75 },
  5940. { "time": 2.2333, "angle": -13.34 },
  5941. { "time": 2.4333, "angle": -9.75 },
  5942. { "time": 2.6667, "angle": -13.34 },
  5943. { "time": 2.9, "angle": -9.75 },
  5944. { "time": 3.1333, "angle": -13.34 },
  5945. { "time": 3.3333, "angle": -9.75 },
  5946. { "time": 3.5667, "angle": -13.34 },
  5947. { "time": 3.8, "angle": -9.75 },
  5948. { "time": 4.1667, "angle": 0 }
  5949. ],
  5950. "translate": [
  5951. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5952. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5953. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5954. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5955. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5956. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5957. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5958. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5959. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  5960. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5961. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  5962. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5963. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5964. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5965. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5966. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  5967. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5968. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  5969. { "time": 4.1667, "x": 0, "y": 0 }
  5970. ],
  5971. "scale": [
  5972. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5973. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5974. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5975. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5976. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5977. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5978. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5979. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5980. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  5981. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5982. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  5983. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5984. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5985. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5986. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  5987. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  5988. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5989. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  5990. { "time": 4.1667, "x": 1, "y": 1 }
  5991. ]
  5992. },
  5993. "bone46": {
  5994. "rotate": [
  5995. { "time": 0, "angle": 0 },
  5996. { "time": 0.2667, "angle": 6.19, "curve": "stepped" },
  5997. { "time": 0.4667, "angle": 6.19, "curve": "stepped" },
  5998. { "time": 0.6667, "angle": 6.19, "curve": "stepped" },
  5999. { "time": 0.9, "angle": 6.19, "curve": "stepped" },
  6000. { "time": 1.1, "angle": 6.19, "curve": "stepped" },
  6001. { "time": 1.3333, "angle": 6.19, "curve": "stepped" },
  6002. { "time": 1.5333, "angle": 6.19, "curve": "stepped" },
  6003. { "time": 1.7667, "angle": 6.19, "curve": "stepped" },
  6004. { "time": 2, "angle": 6.19, "curve": "stepped" },
  6005. { "time": 2.2333, "angle": 6.19, "curve": "stepped" },
  6006. { "time": 2.4333, "angle": 6.19, "curve": "stepped" },
  6007. { "time": 2.6667, "angle": 6.19, "curve": "stepped" },
  6008. { "time": 2.9, "angle": 6.19, "curve": "stepped" },
  6009. { "time": 3.1333, "angle": 6.19, "curve": "stepped" },
  6010. { "time": 3.3333, "angle": 6.19, "curve": "stepped" },
  6011. { "time": 3.5667, "angle": 6.19, "curve": "stepped" },
  6012. { "time": 3.8, "angle": 6.19 },
  6013. { "time": 4.1667, "angle": 0 }
  6014. ],
  6015. "translate": [
  6016. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6017. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  6018. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6019. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6020. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  6021. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6022. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6023. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6024. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  6025. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6026. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  6027. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  6028. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6029. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6030. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6031. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  6032. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6033. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  6034. { "time": 4.1667, "x": 0, "y": 0 }
  6035. ],
  6036. "scale": [
  6037. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6038. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  6039. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6040. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6041. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6042. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6043. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6044. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6045. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  6046. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6047. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  6048. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6049. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6050. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6051. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  6052. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  6053. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6054. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  6055. { "time": 4.1667, "x": 1, "y": 1 }
  6056. ]
  6057. },
  6058. "bone47": {
  6059. "rotate": [
  6060. { "time": 0, "angle": 0 },
  6061. { "time": 0.2667, "angle": 9.54 },
  6062. { "time": 0.4667, "angle": -0.76 },
  6063. { "time": 0.6667, "angle": 9.54 },
  6064. { "time": 0.9, "angle": -0.76 },
  6065. { "time": 1.1, "angle": 9.54 },
  6066. { "time": 1.3333, "angle": -0.76 },
  6067. { "time": 1.5333, "angle": 9.54 },
  6068. { "time": 1.7667, "angle": -0.76 },
  6069. { "time": 2, "angle": 9.54 },
  6070. { "time": 2.2333, "angle": -0.76 },
  6071. { "time": 2.4333, "angle": 9.54 },
  6072. { "time": 2.6667, "angle": -0.76 },
  6073. { "time": 2.9, "angle": 9.54 },
  6074. { "time": 3.1333, "angle": -0.76 },
  6075. { "time": 3.3333, "angle": 9.54 },
  6076. { "time": 3.5667, "angle": -0.76 },
  6077. { "time": 3.8, "angle": 9.54 },
  6078. { "time": 4.1667, "angle": 0 }
  6079. ],
  6080. "translate": [
  6081. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6082. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  6083. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6084. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6085. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  6086. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6087. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6088. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6089. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  6090. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6091. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  6092. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  6093. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6094. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6095. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6096. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  6097. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6098. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  6099. { "time": 4.1667, "x": 0, "y": 0 }
  6100. ],
  6101. "scale": [
  6102. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6103. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  6104. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6105. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6106. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6107. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6108. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6109. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6110. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  6111. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6112. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  6113. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6114. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6115. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6116. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  6117. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  6118. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6119. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  6120. { "time": 4.1667, "x": 1, "y": 1 }
  6121. ]
  6122. },
  6123. "bone48": {
  6124. "rotate": [
  6125. { "time": 0, "angle": 0 },
  6126. { "time": 0.2667, "angle": -2.53 },
  6127. { "time": 0.4667, "angle": -5.6 },
  6128. { "time": 0.6667, "angle": -2.53 },
  6129. { "time": 0.9, "angle": -5.6 },
  6130. { "time": 1.1, "angle": -2.53 },
  6131. { "time": 1.3333, "angle": -5.6 },
  6132. { "time": 1.5333, "angle": -2.53 },
  6133. { "time": 1.7667, "angle": -5.6 },
  6134. { "time": 2, "angle": -2.53 },
  6135. { "time": 2.2333, "angle": -5.6 },
  6136. { "time": 2.4333, "angle": -2.53 },
  6137. { "time": 2.6667, "angle": -5.6 },
  6138. { "time": 2.9, "angle": -2.53 },
  6139. { "time": 3.1333, "angle": -5.6 },
  6140. { "time": 3.3333, "angle": -2.53 },
  6141. { "time": 3.5667, "angle": -5.6 },
  6142. { "time": 3.8, "angle": -2.53 },
  6143. { "time": 4.1667, "angle": 0 }
  6144. ],
  6145. "translate": [
  6146. { "time": 0, "x": 0, "y": 0 },
  6147. { "time": 0.2667, "x": 5.01, "y": 0.35 },
  6148. { "time": 0.4667, "x": 4.13, "y": -2.1 },
  6149. { "time": 0.6667, "x": 5.01, "y": 0.35 },
  6150. { "time": 0.9, "x": 4.13, "y": -2.1 },
  6151. { "time": 1.1, "x": 5.01, "y": 0.35 },
  6152. { "time": 1.3333, "x": 4.13, "y": -2.1 },
  6153. { "time": 1.5333, "x": 5.01, "y": 0.35 },
  6154. { "time": 1.7667, "x": 4.13, "y": -2.1 },
  6155. { "time": 2, "x": 5.01, "y": 0.35 },
  6156. { "time": 2.2333, "x": 4.13, "y": -2.1 },
  6157. { "time": 2.4333, "x": 5.01, "y": 0.35 },
  6158. { "time": 2.6667, "x": 4.13, "y": -2.1 },
  6159. { "time": 2.9, "x": 5.01, "y": 0.35 },
  6160. { "time": 3.1333, "x": 4.13, "y": -2.1 },
  6161. { "time": 3.3333, "x": 5.01, "y": 0.35 },
  6162. { "time": 3.5667, "x": 4.13, "y": -2.1 },
  6163. { "time": 3.8, "x": 5.01, "y": 0.35 },
  6164. { "time": 4.1667, "x": 0, "y": 0 }
  6165. ],
  6166. "scale": [
  6167. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6168. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  6169. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6170. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6171. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6172. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6173. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6174. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6175. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  6176. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6177. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  6178. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6179. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6180. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6181. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  6182. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  6183. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6184. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  6185. { "time": 4.1667, "x": 1, "y": 1 }
  6186. ]
  6187. },
  6188. "bone49": {
  6189. "rotate": [
  6190. { "time": 0, "angle": 0 },
  6191. { "time": 0.2667, "angle": -6.21 },
  6192. { "time": 0.4667, "angle": -12.44 },
  6193. { "time": 0.6667, "angle": -6.21 },
  6194. { "time": 0.9, "angle": -12.44 },
  6195. { "time": 1.1, "angle": -6.21 },
  6196. { "time": 1.3333, "angle": -12.44 },
  6197. { "time": 1.5333, "angle": -6.21 },
  6198. { "time": 1.7667, "angle": -12.44 },
  6199. { "time": 2, "angle": -6.21 },
  6200. { "time": 2.2333, "angle": -12.44 },
  6201. { "time": 2.4333, "angle": -6.21 },
  6202. { "time": 2.6667, "angle": -12.44 },
  6203. { "time": 2.9, "angle": -6.21 },
  6204. { "time": 3.1333, "angle": -12.44 },
  6205. { "time": 3.3333, "angle": -6.21 },
  6206. { "time": 3.5667, "angle": -12.44 },
  6207. { "time": 3.8, "angle": -6.21 },
  6208. { "time": 4.1667, "angle": 0 }
  6209. ],
  6210. "translate": [
  6211. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6212. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  6213. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6214. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6215. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  6216. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6217. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6218. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6219. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  6220. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6221. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  6222. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  6223. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6224. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6225. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6226. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  6227. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6228. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  6229. { "time": 4.1667, "x": 0, "y": 0 }
  6230. ],
  6231. "scale": [
  6232. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6233. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  6234. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6235. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6236. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6237. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6238. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6239. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6240. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  6241. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6242. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  6243. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6244. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6245. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6246. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  6247. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  6248. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6249. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  6250. { "time": 4.1667, "x": 1, "y": 1 }
  6251. ]
  6252. },
  6253. "bone50": {
  6254. "rotate": [
  6255. { "time": 0, "angle": 0 },
  6256. { "time": 0.2667, "angle": -10, "curve": "stepped" },
  6257. { "time": 0.4667, "angle": -10, "curve": "stepped" },
  6258. { "time": 0.6667, "angle": -10, "curve": "stepped" },
  6259. { "time": 0.9, "angle": -10, "curve": "stepped" },
  6260. { "time": 1.1, "angle": -10, "curve": "stepped" },
  6261. { "time": 1.3333, "angle": -10, "curve": "stepped" },
  6262. { "time": 1.5333, "angle": -10, "curve": "stepped" },
  6263. { "time": 1.7667, "angle": -10, "curve": "stepped" },
  6264. { "time": 2, "angle": -10, "curve": "stepped" },
  6265. { "time": 2.2333, "angle": -10, "curve": "stepped" },
  6266. { "time": 2.4333, "angle": -10, "curve": "stepped" },
  6267. { "time": 2.6667, "angle": -10, "curve": "stepped" },
  6268. { "time": 2.9, "angle": -10, "curve": "stepped" },
  6269. { "time": 3.1333, "angle": -10, "curve": "stepped" },
  6270. { "time": 3.3333, "angle": -10, "curve": "stepped" },
  6271. { "time": 3.5667, "angle": -10, "curve": "stepped" },
  6272. { "time": 3.8, "angle": -10 },
  6273. { "time": 4.1667, "angle": 0 }
  6274. ],
  6275. "translate": [
  6276. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6277. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  6278. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6279. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6280. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  6281. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6282. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6283. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6284. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  6285. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6286. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  6287. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  6288. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6289. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6290. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6291. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  6292. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6293. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  6294. { "time": 4.1667, "x": 0, "y": 0 }
  6295. ],
  6296. "scale": [
  6297. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6298. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  6299. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6300. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6301. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6302. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6303. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6304. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6305. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  6306. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6307. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  6308. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6309. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6310. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6311. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  6312. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  6313. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6314. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  6315. { "time": 4.1667, "x": 1, "y": 1 }
  6316. ]
  6317. },
  6318. "bone51": {
  6319. "rotate": [
  6320. { "time": 0, "angle": -10.65 },
  6321. { "time": 0.2667, "angle": 14.57 },
  6322. { "time": 0.4667, "angle": -14.15 },
  6323. { "time": 0.6667, "angle": 14.57 },
  6324. { "time": 0.9, "angle": -14.15 },
  6325. { "time": 1.1, "angle": 14.57 },
  6326. { "time": 1.3333, "angle": -14.15 },
  6327. { "time": 1.5333, "angle": 14.57 },
  6328. { "time": 1.7667, "angle": -14.15 },
  6329. { "time": 2, "angle": 14.57 },
  6330. { "time": 2.2333, "angle": -14.15 },
  6331. { "time": 2.4333, "angle": 14.57 },
  6332. { "time": 2.6667, "angle": -14.15 },
  6333. { "time": 2.9, "angle": 14.57 },
  6334. { "time": 3.1333, "angle": -14.15 },
  6335. { "time": 3.3333, "angle": 14.57 },
  6336. { "time": 3.5667, "angle": -14.15 },
  6337. { "time": 3.8, "angle": 14.57 },
  6338. { "time": 4.1667, "angle": -10.65 }
  6339. ],
  6340. "translate": [
  6341. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6342. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  6343. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6344. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6345. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  6346. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6347. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6348. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6349. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  6350. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6351. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  6352. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  6353. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6354. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6355. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6356. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  6357. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6358. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  6359. { "time": 4.1667, "x": 0, "y": 0 }
  6360. ],
  6361. "scale": [
  6362. { "time": 0, "x": 1, "y": 1 },
  6363. { "time": 0.2667, "x": 1.03, "y": 1, "curve": "stepped" },
  6364. { "time": 0.4667, "x": 1.03, "y": 1, "curve": "stepped" },
  6365. { "time": 0.6667, "x": 1.03, "y": 1, "curve": "stepped" },
  6366. { "time": 0.9, "x": 1.03, "y": 1, "curve": "stepped" },
  6367. { "time": 1.1, "x": 1.03, "y": 1, "curve": "stepped" },
  6368. { "time": 1.3333, "x": 1.03, "y": 1, "curve": "stepped" },
  6369. { "time": 1.5333, "x": 1.03, "y": 1, "curve": "stepped" },
  6370. { "time": 1.7667, "x": 1.03, "y": 1, "curve": "stepped" },
  6371. { "time": 2, "x": 1.03, "y": 1, "curve": "stepped" },
  6372. { "time": 2.2333, "x": 1.03, "y": 1, "curve": "stepped" },
  6373. { "time": 2.4333, "x": 1.03, "y": 1, "curve": "stepped" },
  6374. { "time": 2.6667, "x": 1.03, "y": 1, "curve": "stepped" },
  6375. { "time": 2.9, "x": 1.03, "y": 1, "curve": "stepped" },
  6376. { "time": 3.1333, "x": 1.03, "y": 1, "curve": "stepped" },
  6377. { "time": 3.3333, "x": 1.03, "y": 1, "curve": "stepped" },
  6378. { "time": 3.5667, "x": 1.03, "y": 1, "curve": "stepped" },
  6379. { "time": 3.8, "x": 1.03, "y": 1 },
  6380. { "time": 4.1667, "x": 1, "y": 1 }
  6381. ]
  6382. },
  6383. "bone52": {
  6384. "rotate": [
  6385. { "time": 0, "angle": 13.69 },
  6386. { "time": 0.2667, "angle": 10.21 },
  6387. { "time": 0.4667, "angle": 2.65 },
  6388. { "time": 0.6667, "angle": 10.21 },
  6389. { "time": 0.9, "angle": 2.65 },
  6390. { "time": 1.1, "angle": 10.21 },
  6391. { "time": 1.3333, "angle": 2.65 },
  6392. { "time": 1.5333, "angle": 10.21 },
  6393. { "time": 1.7667, "angle": 2.65 },
  6394. { "time": 2, "angle": 10.21 },
  6395. { "time": 2.2333, "angle": 2.65 },
  6396. { "time": 2.4333, "angle": 10.21 },
  6397. { "time": 2.6667, "angle": 2.65 },
  6398. { "time": 2.9, "angle": 10.21 },
  6399. { "time": 3.1333, "angle": 2.65 },
  6400. { "time": 3.3333, "angle": 10.21 },
  6401. { "time": 3.5667, "angle": 2.65 },
  6402. { "time": 3.8, "angle": 10.21 },
  6403. { "time": 4.1667, "angle": 13.69 }
  6404. ],
  6405. "translate": [
  6406. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6407. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  6408. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6409. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6410. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  6411. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6412. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6413. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6414. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  6415. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6416. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  6417. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  6418. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6419. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6420. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6421. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  6422. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6423. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  6424. { "time": 4.1667, "x": 0, "y": 0 }
  6425. ],
  6426. "scale": [
  6427. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6428. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  6429. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6430. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6431. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6432. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6433. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6434. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6435. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  6436. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6437. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  6438. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6439. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6440. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6441. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  6442. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  6443. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6444. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  6445. { "time": 4.1667, "x": 1, "y": 1 }
  6446. ]
  6447. },
  6448. "bone53": {
  6449. "rotate": [
  6450. { "time": 0, "angle": 0 },
  6451. { "time": 0.2667, "angle": 4.12, "curve": "stepped" },
  6452. { "time": 0.4667, "angle": 4.12, "curve": "stepped" },
  6453. { "time": 0.6667, "angle": 4.12, "curve": "stepped" },
  6454. { "time": 0.9, "angle": 4.12, "curve": "stepped" },
  6455. { "time": 1.1, "angle": 4.12, "curve": "stepped" },
  6456. { "time": 1.3333, "angle": 4.12, "curve": "stepped" },
  6457. { "time": 1.5333, "angle": 4.12, "curve": "stepped" },
  6458. { "time": 1.7667, "angle": 4.12, "curve": "stepped" },
  6459. { "time": 2, "angle": 4.12, "curve": "stepped" },
  6460. { "time": 2.2333, "angle": 4.12, "curve": "stepped" },
  6461. { "time": 2.4333, "angle": 4.12, "curve": "stepped" },
  6462. { "time": 2.6667, "angle": 4.12, "curve": "stepped" },
  6463. { "time": 2.9, "angle": 4.12, "curve": "stepped" },
  6464. { "time": 3.1333, "angle": 4.12, "curve": "stepped" },
  6465. { "time": 3.3333, "angle": 4.12, "curve": "stepped" },
  6466. { "time": 3.5667, "angle": 4.12, "curve": "stepped" },
  6467. { "time": 3.8, "angle": 4.12 },
  6468. { "time": 4.1667, "angle": 0 }
  6469. ],
  6470. "translate": [
  6471. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6472. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  6473. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6474. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6475. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  6476. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6477. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6478. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6479. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  6480. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6481. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  6482. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  6483. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6484. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6485. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6486. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  6487. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6488. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  6489. { "time": 4.1667, "x": 0, "y": 0 }
  6490. ],
  6491. "scale": [
  6492. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6493. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  6494. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6495. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6496. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6497. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6498. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6499. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6500. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  6501. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6502. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  6503. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6504. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6505. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6506. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  6507. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  6508. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6509. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  6510. { "time": 4.1667, "x": 1, "y": 1 }
  6511. ]
  6512. },
  6513. "bone54": {
  6514. "rotate": [
  6515. { "time": 0, "angle": 0, "curve": "stepped" },
  6516. { "time": 0.2667, "angle": 0 },
  6517. { "time": 0.4667, "angle": -3.41 },
  6518. { "time": 0.6667, "angle": 0 },
  6519. { "time": 0.9, "angle": -3.41 },
  6520. { "time": 1.1, "angle": 0 },
  6521. { "time": 1.3333, "angle": -3.41 },
  6522. { "time": 1.5333, "angle": 0 },
  6523. { "time": 1.7667, "angle": -3.41 },
  6524. { "time": 2, "angle": 0 },
  6525. { "time": 2.2333, "angle": -3.41 },
  6526. { "time": 2.4333, "angle": 0 },
  6527. { "time": 2.6667, "angle": -3.41 },
  6528. { "time": 2.9, "angle": 0 },
  6529. { "time": 3.1333, "angle": -3.41 },
  6530. { "time": 3.3333, "angle": 0 },
  6531. { "time": 3.5667, "angle": -3.41 },
  6532. { "time": 3.8, "angle": 0, "curve": "stepped" },
  6533. { "time": 4.1667, "angle": 0 }
  6534. ],
  6535. "translate": [
  6536. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6537. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  6538. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6539. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6540. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  6541. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6542. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6543. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6544. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  6545. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6546. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  6547. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  6548. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6549. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6550. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6551. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  6552. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6553. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  6554. { "time": 4.1667, "x": 0, "y": 0 }
  6555. ],
  6556. "scale": [
  6557. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6558. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  6559. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6560. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6561. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6562. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6563. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6564. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6565. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  6566. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6567. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  6568. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6569. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6570. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6571. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  6572. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  6573. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6574. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  6575. { "time": 4.1667, "x": 1, "y": 1 }
  6576. ]
  6577. },
  6578. "bone55": {
  6579. "rotate": [
  6580. { "time": 0, "angle": 0, "curve": "stepped" },
  6581. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6582. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  6583. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  6584. { "time": 2, "angle": 0, "curve": "stepped" },
  6585. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  6586. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  6587. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  6588. { "time": 2.9, "angle": 0, "curve": "stepped" },
  6589. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  6590. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  6591. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  6592. { "time": 3.8, "angle": 0, "curve": "stepped" },
  6593. { "time": 4.1667, "angle": 0 }
  6594. ],
  6595. "translate": [
  6596. { "time": 0, "x": 0, "y": 0 },
  6597. { "time": 0.8333, "x": 66.02, "y": 53.68 },
  6598. { "time": 2.4333, "x": 90.08, "y": 102.42 }
  6599. ],
  6600. "scale": [
  6601. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6602. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  6603. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6604. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6605. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6606. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6607. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6608. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6609. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  6610. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6611. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  6612. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6613. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6614. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6615. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  6616. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  6617. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6618. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  6619. { "time": 4.1667, "x": 1, "y": 1 }
  6620. ]
  6621. },
  6622. "bone56": {
  6623. "rotate": [
  6624. { "time": 0, "angle": 0, "curve": "stepped" },
  6625. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  6626. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  6627. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6628. { "time": 0.9, "angle": 0, "curve": "stepped" },
  6629. { "time": 1.1, "angle": 0, "curve": "stepped" },
  6630. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6631. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  6632. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  6633. { "time": 2, "angle": 0, "curve": "stepped" },
  6634. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  6635. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  6636. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  6637. { "time": 2.9, "angle": 0 }
  6638. ],
  6639. "translate": [
  6640. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6641. { "time": 1.3333, "x": 0, "y": 0 },
  6642. { "time": 2.1667, "x": -77.57, "y": 63.14 },
  6643. { "time": 2.9, "x": -155.14, "y": 129.89 }
  6644. ],
  6645. "scale": [
  6646. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6647. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6648. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6649. { "time": 2.9, "x": 1, "y": 1 }
  6650. ]
  6651. },
  6652. "bone57": {
  6653. "rotate": [
  6654. { "time": 0, "angle": 0, "curve": "stepped" },
  6655. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  6656. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  6657. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6658. { "time": 0.9, "angle": 0, "curve": "stepped" },
  6659. { "time": 1.1, "angle": 0, "curve": "stepped" },
  6660. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6661. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  6662. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  6663. { "time": 2, "angle": 0, "curve": "stepped" },
  6664. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  6665. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  6666. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  6667. { "time": 2.9, "angle": 0, "curve": "stepped" },
  6668. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  6669. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  6670. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  6671. { "time": 3.8, "angle": 0, "curve": "stepped" },
  6672. { "time": 4.1667, "angle": 0 }
  6673. ],
  6674. "translate": [
  6675. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6676. { "time": 0.2667, "x": 0, "y": 0 },
  6677. { "time": 1.2, "x": -48.13, "y": 27.15 },
  6678. { "time": 1.9333, "x": -99.34, "y": 59.23 },
  6679. { "time": 2.2, "x": 26.73, "y": -9.72 },
  6680. { "time": 3.1333, "x": -23.83, "y": 72.1 },
  6681. { "time": 3.8667, "x": -59.24, "y": 161.29 }
  6682. ],
  6683. "scale": [
  6684. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6685. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  6686. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  6687. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  6688. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6689. { "time": 3.7, "x": 1, "y": 1, "curve": "stepped" },
  6690. { "time": 3.8667, "x": 1, "y": 1 }
  6691. ]
  6692. },
  6693. "bone58": {
  6694. "rotate": [
  6695. { "time": 0, "angle": 26.26 },
  6696. { "time": 0.2667, "angle": 34.42 },
  6697. { "time": 0.4667, "angle": 26.42 },
  6698. { "time": 0.6667, "angle": 16.09 },
  6699. { "time": 0.9, "angle": 26.42 },
  6700. { "time": 1.1, "angle": 16.09 },
  6701. { "time": 1.3333, "angle": 26.42 },
  6702. { "time": 1.5333, "angle": 16.09 },
  6703. { "time": 1.7667, "angle": 26.42 },
  6704. { "time": 2, "angle": 16.09 },
  6705. { "time": 2.2333, "angle": 26.42 },
  6706. { "time": 2.4333, "angle": 16.09 },
  6707. { "time": 2.6667, "angle": 26.42 },
  6708. { "time": 2.9, "angle": 16.09 },
  6709. { "time": 3.1333, "angle": 26.42 },
  6710. { "time": 3.3333, "angle": 16.09 },
  6711. { "time": 3.5667, "angle": 26.42 },
  6712. { "time": 3.8, "angle": 16.09 },
  6713. { "time": 4.1667, "angle": 26.26 }
  6714. ],
  6715. "translate": [
  6716. { "time": 0, "x": -34.16, "y": 14.46 },
  6717. { "time": 0.2667, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6718. { "time": 0.4667, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6719. { "time": 0.6667, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6720. { "time": 0.9, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6721. { "time": 1.1, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6722. { "time": 1.3333, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6723. { "time": 1.5333, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6724. { "time": 1.7667, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6725. { "time": 2, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6726. { "time": 2.2333, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6727. { "time": 2.4333, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6728. { "time": 2.6667, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6729. { "time": 2.9, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6730. { "time": 3.1333, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6731. { "time": 3.3333, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6732. { "time": 3.5667, "x": -26.55, "y": 23.25, "curve": "stepped" },
  6733. { "time": 3.8, "x": -26.55, "y": 23.25 },
  6734. { "time": 4.1667, "x": -34.16, "y": 14.46 }
  6735. ],
  6736. "scale": [
  6737. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6738. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  6739. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6740. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6741. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6742. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6743. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6744. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6745. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  6746. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6747. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  6748. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6749. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6750. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6751. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  6752. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  6753. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6754. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  6755. { "time": 4.1667, "x": 1, "y": 1 }
  6756. ]
  6757. },
  6758. "bone42": {
  6759. "rotate": [
  6760. { "time": 0, "angle": 0 },
  6761. { "time": 0.2667, "angle": 8.53 },
  6762. { "time": 0.4667, "angle": 1.83 },
  6763. { "time": 0.6667, "angle": 8.53 },
  6764. { "time": 0.9, "angle": 1.83 },
  6765. { "time": 1.1, "angle": 8.53 },
  6766. { "time": 1.3333, "angle": 1.83 },
  6767. { "time": 1.5333, "angle": 8.53 },
  6768. { "time": 1.7667, "angle": 1.83 },
  6769. { "time": 2, "angle": 8.53 },
  6770. { "time": 2.2333, "angle": 1.83 },
  6771. { "time": 2.4333, "angle": 8.53 },
  6772. { "time": 2.6667, "angle": 1.83 },
  6773. { "time": 2.9, "angle": 8.53 },
  6774. { "time": 3.1333, "angle": 1.83 },
  6775. { "time": 3.3333, "angle": 8.53 },
  6776. { "time": 3.5667, "angle": 1.83 },
  6777. { "time": 3.8, "angle": 8.53 },
  6778. { "time": 4.1667, "angle": 0 }
  6779. ],
  6780. "translate": [
  6781. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6782. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  6783. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6784. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6785. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  6786. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6787. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6788. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6789. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  6790. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6791. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  6792. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  6793. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6794. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6795. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6796. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  6797. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6798. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  6799. { "time": 4.1667, "x": 0, "y": 0 }
  6800. ],
  6801. "scale": [
  6802. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6803. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  6804. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6805. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6806. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6807. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6808. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6809. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6810. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  6811. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6812. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  6813. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6814. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6815. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6816. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  6817. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  6818. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6819. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  6820. { "time": 4.1667, "x": 1, "y": 1 }
  6821. ]
  6822. },
  6823. "bone43": {
  6824. "rotate": [
  6825. { "time": 0, "angle": 0, "curve": "stepped" },
  6826. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  6827. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  6828. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6829. { "time": 0.9, "angle": 0, "curve": "stepped" },
  6830. { "time": 1.1, "angle": 0, "curve": "stepped" },
  6831. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6832. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  6833. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  6834. { "time": 2, "angle": 0, "curve": "stepped" },
  6835. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  6836. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  6837. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  6838. { "time": 2.9, "angle": 0, "curve": "stepped" },
  6839. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  6840. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  6841. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  6842. { "time": 3.8, "angle": 0, "curve": "stepped" },
  6843. { "time": 4.1667, "angle": 0 }
  6844. ],
  6845. "translate": [
  6846. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6847. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  6848. { "time": 0.4667, "x": 0, "y": 0 },
  6849. { "time": 0.6667, "x": 0.09, "y": 1.47 },
  6850. { "time": 0.9, "x": 0, "y": 0 },
  6851. { "time": 1.1, "x": 0.09, "y": 1.47 },
  6852. { "time": 1.3333, "x": 0, "y": 0 },
  6853. { "time": 1.5333, "x": 0.09, "y": 1.47 },
  6854. { "time": 1.7667, "x": 0, "y": 0 },
  6855. { "time": 2, "x": 0.09, "y": 1.47 },
  6856. { "time": 2.2333, "x": 0, "y": 0 },
  6857. { "time": 2.4333, "x": 0.09, "y": 1.47 },
  6858. { "time": 2.6667, "x": 0, "y": 0 },
  6859. { "time": 2.9, "x": 0.09, "y": 1.47 },
  6860. { "time": 3.1333, "x": 0, "y": 0 },
  6861. { "time": 3.3333, "x": 0.09, "y": 1.47 },
  6862. { "time": 3.5667, "x": 0, "y": 0 },
  6863. { "time": 3.8, "x": 0.09, "y": 1.47 },
  6864. { "time": 4.1667, "x": 0, "y": 0 }
  6865. ],
  6866. "scale": [
  6867. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6868. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  6869. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6870. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6871. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6872. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6873. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6874. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6875. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  6876. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6877. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  6878. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6879. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6880. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6881. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  6882. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  6883. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6884. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  6885. { "time": 4.1667, "x": 1, "y": 1 }
  6886. ]
  6887. },
  6888. "bone44": {
  6889. "rotate": [
  6890. { "time": 0, "angle": 0, "curve": "stepped" },
  6891. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  6892. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  6893. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6894. { "time": 0.9, "angle": 0, "curve": "stepped" },
  6895. { "time": 1.1, "angle": 0, "curve": "stepped" },
  6896. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6897. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  6898. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  6899. { "time": 2, "angle": 0, "curve": "stepped" },
  6900. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  6901. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  6902. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  6903. { "time": 2.9, "angle": 0, "curve": "stepped" },
  6904. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  6905. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  6906. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  6907. { "time": 3.8, "angle": 0, "curve": "stepped" },
  6908. { "time": 4.1667, "angle": 0 }
  6909. ],
  6910. "translate": [
  6911. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6912. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  6913. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6914. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6915. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  6916. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6917. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6918. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6919. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  6920. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6921. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  6922. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  6923. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6924. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6925. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6926. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  6927. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6928. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  6929. { "time": 4.1667, "x": 0, "y": 0 }
  6930. ],
  6931. "scale": [
  6932. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6933. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  6934. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6935. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6936. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6937. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6938. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6939. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6940. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  6941. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6942. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  6943. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6944. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6945. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6946. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  6947. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  6948. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6949. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  6950. { "time": 4.1667, "x": 1, "y": 1 }
  6951. ]
  6952. },
  6953. "bone59": {
  6954. "rotate": [
  6955. { "time": 0, "angle": 0, "curve": "stepped" },
  6956. { "time": 0.2667, "angle": 0 },
  6957. { "time": 0.4667, "angle": -35.15, "curve": "stepped" },
  6958. { "time": 3.8, "angle": -35.15 },
  6959. { "time": 4.1667, "angle": 0 }
  6960. ],
  6961. "translate": [
  6962. { "time": 0, "x": 0, "y": 0 },
  6963. { "time": 0.2667, "x": -3.2, "y": 6.76, "curve": "stepped" },
  6964. { "time": 0.4667, "x": -3.2, "y": 6.76 },
  6965. { "time": 0.6667, "x": -1.62, "y": 6.1 },
  6966. { "time": 3.8, "x": -3.2, "y": 6.76 },
  6967. { "time": 4.1667, "x": 0, "y": 0 }
  6968. ],
  6969. "scale": [
  6970. { "time": 0, "x": 1, "y": 1 },
  6971. { "time": 0.2667, "x": 1.3, "y": 1, "curve": "stepped" },
  6972. { "time": 0.4667, "x": 1.3, "y": 1, "curve": "stepped" },
  6973. { "time": 3.8, "x": 1.3, "y": 1 },
  6974. { "time": 4.1667, "x": 1, "y": 1 }
  6975. ]
  6976. },
  6977. "bone61": {
  6978. "rotate": [
  6979. { "time": 0, "angle": 0 },
  6980. { "time": 0.2667, "angle": -14.21, "curve": "stepped" },
  6981. { "time": 0.4667, "angle": -14.21, "curve": "stepped" },
  6982. { "time": 0.6667, "angle": -14.21, "curve": "stepped" },
  6983. { "time": 0.9, "angle": -14.21, "curve": "stepped" },
  6984. { "time": 1.1, "angle": -14.21, "curve": "stepped" },
  6985. { "time": 1.3333, "angle": -14.21, "curve": "stepped" },
  6986. { "time": 1.5333, "angle": -14.21, "curve": "stepped" },
  6987. { "time": 1.7667, "angle": -14.21, "curve": "stepped" },
  6988. { "time": 2, "angle": -14.21, "curve": "stepped" },
  6989. { "time": 2.2333, "angle": -14.21, "curve": "stepped" },
  6990. { "time": 2.4333, "angle": -14.21, "curve": "stepped" },
  6991. { "time": 2.6667, "angle": -14.21, "curve": "stepped" },
  6992. { "time": 2.9, "angle": -14.21, "curve": "stepped" },
  6993. { "time": 3.1333, "angle": -14.21, "curve": "stepped" },
  6994. { "time": 3.3333, "angle": -14.21, "curve": "stepped" },
  6995. { "time": 3.5667, "angle": -14.21, "curve": "stepped" },
  6996. { "time": 3.8, "angle": -14.21 },
  6997. { "time": 4.1667, "angle": 0 }
  6998. ],
  6999. "translate": [
  7000. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7001. { "time": 0.2667, "x": 0, "y": 0 },
  7002. { "time": 0.4667, "x": -1.52, "y": -0.59 },
  7003. { "time": 0.6667, "x": 0, "y": 0 },
  7004. { "time": 0.9, "x": -1.48, "y": -0.58 },
  7005. { "time": 1.1, "x": 0, "y": 0 },
  7006. { "time": 1.3333, "x": -1.66, "y": -0.65 },
  7007. { "time": 1.5333, "x": -3.12, "y": 1.27 },
  7008. { "time": 1.7667, "x": -1.59, "y": -0.62 },
  7009. { "time": 2, "x": 0, "y": 0 },
  7010. { "time": 2.2333, "x": -1.59, "y": -0.62 },
  7011. { "time": 2.4333, "x": 0, "y": 0 },
  7012. { "time": 2.6667, "x": -1.59, "y": -0.62 },
  7013. { "time": 2.9, "x": 0, "y": 0 },
  7014. { "time": 3.1333, "x": -1.59, "y": -0.62 },
  7015. { "time": 3.3333, "x": 0, "y": 0 },
  7016. { "time": 3.5667, "x": -1.59, "y": -0.62 },
  7017. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  7018. { "time": 4.1667, "x": 0, "y": 0 }
  7019. ],
  7020. "scale": [
  7021. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7022. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  7023. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7024. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7025. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  7026. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  7027. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7028. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  7029. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  7030. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7031. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  7032. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  7033. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  7034. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  7035. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  7036. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  7037. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  7038. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  7039. { "time": 4.1667, "x": 1, "y": 1 }
  7040. ]
  7041. },
  7042. "bone62": {
  7043. "rotate": [
  7044. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  7045. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  7046. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7047. { "time": 0.9, "angle": 0, "curve": "stepped" },
  7048. { "time": 1.1, "angle": 0, "curve": "stepped" },
  7049. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7050. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  7051. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  7052. { "time": 2, "angle": 0, "curve": "stepped" },
  7053. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  7054. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  7055. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  7056. { "time": 2.9, "angle": 0, "curve": "stepped" },
  7057. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  7058. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  7059. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  7060. { "time": 3.8, "angle": 0 }
  7061. ],
  7062. "translate": [
  7063. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  7064. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7065. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7066. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  7067. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  7068. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7069. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  7070. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  7071. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7072. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  7073. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  7074. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  7075. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  7076. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7077. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  7078. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  7079. { "time": 3.8, "x": 0, "y": 0 }
  7080. ],
  7081. "scale": [
  7082. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  7083. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7084. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7085. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  7086. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  7087. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7088. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  7089. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  7090. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7091. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  7092. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  7093. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  7094. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  7095. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  7096. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  7097. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  7098. { "time": 3.8, "x": 1, "y": 1 }
  7099. ]
  7100. }
  7101. },
  7102. "deform": {
  7103. "default": {
  7104. "shenti": {
  7105. "shenti": [
  7106. { "time": 0 },
  7107. {
  7108. "time": 0.2667,
  7109. "offset": 26,
  7110. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7111. "curve": "stepped"
  7112. },
  7113. {
  7114. "time": 0.4667,
  7115. "offset": 26,
  7116. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7117. "curve": "stepped"
  7118. },
  7119. {
  7120. "time": 0.6667,
  7121. "offset": 26,
  7122. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7123. "curve": "stepped"
  7124. },
  7125. {
  7126. "time": 0.9,
  7127. "offset": 26,
  7128. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7129. "curve": "stepped"
  7130. },
  7131. {
  7132. "time": 1.1,
  7133. "offset": 26,
  7134. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7135. "curve": "stepped"
  7136. },
  7137. {
  7138. "time": 1.3333,
  7139. "offset": 26,
  7140. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7141. "curve": "stepped"
  7142. },
  7143. {
  7144. "time": 1.5333,
  7145. "offset": 26,
  7146. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7147. "curve": "stepped"
  7148. },
  7149. {
  7150. "time": 1.7667,
  7151. "offset": 26,
  7152. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7153. "curve": "stepped"
  7154. },
  7155. {
  7156. "time": 2,
  7157. "offset": 26,
  7158. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7159. "curve": "stepped"
  7160. },
  7161. {
  7162. "time": 2.2333,
  7163. "offset": 26,
  7164. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7165. "curve": "stepped"
  7166. },
  7167. {
  7168. "time": 2.4333,
  7169. "offset": 26,
  7170. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7171. "curve": "stepped"
  7172. },
  7173. {
  7174. "time": 2.6667,
  7175. "offset": 26,
  7176. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7177. "curve": "stepped"
  7178. },
  7179. {
  7180. "time": 2.9,
  7181. "offset": 26,
  7182. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7183. "curve": "stepped"
  7184. },
  7185. {
  7186. "time": 3.1333,
  7187. "offset": 26,
  7188. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7189. "curve": "stepped"
  7190. },
  7191. {
  7192. "time": 3.3333,
  7193. "offset": 26,
  7194. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7195. "curve": "stepped"
  7196. },
  7197. {
  7198. "time": 3.5667,
  7199. "offset": 26,
  7200. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ],
  7201. "curve": "stepped"
  7202. },
  7203. {
  7204. "time": 3.8,
  7205. "offset": 26,
  7206. "vertices": [ -0.05646, 1.42884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10651, 1.42599, 0, 0, 0, 0, -0.05646, 1.42884, -0.05646, 1.42884, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599, -0.05646, 1.42884, -0.10651, 1.42599 ]
  7207. },
  7208. { "time": 4.1667 }
  7209. ]
  7210. },
  7211. "toufa1": {
  7212. "toufa1": [
  7213. { "time": 0 },
  7214. {
  7215. "time": 0.2667,
  7216. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  7217. },
  7218. { "time": 0.4667 },
  7219. {
  7220. "time": 0.6667,
  7221. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  7222. },
  7223. { "time": 0.9 },
  7224. {
  7225. "time": 1.1,
  7226. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  7227. },
  7228. { "time": 1.3333 },
  7229. {
  7230. "time": 1.5333,
  7231. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  7232. },
  7233. { "time": 1.7667 },
  7234. {
  7235. "time": 2,
  7236. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  7237. },
  7238. { "time": 2.2333 },
  7239. {
  7240. "time": 2.4333,
  7241. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  7242. },
  7243. { "time": 2.6667 },
  7244. {
  7245. "time": 2.9,
  7246. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  7247. },
  7248. { "time": 3.1333 },
  7249. {
  7250. "time": 3.3333,
  7251. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  7252. },
  7253. { "time": 3.5667 },
  7254. {
  7255. "time": 3.8,
  7256. "vertices": [ 0.93288, 1.29994, 1.27299, 0.34692 ]
  7257. },
  7258. { "time": 4.1667 }
  7259. ]
  7260. },
  7261. "zuotui": {
  7262. "zuotui": [
  7263. { "time": 0 },
  7264. {
  7265. "time": 0.6667,
  7266. "offset": 66,
  7267. "vertices": [ -2.27049, -0.06641, -2.1253, 0.80157, -4.37656, -1.13522, -1.53685, 0.88858, -4.17417, 0.34468 ],
  7268. "curve": "stepped"
  7269. },
  7270. {
  7271. "time": 1.5333,
  7272. "offset": 66,
  7273. "vertices": [ -2.27049, -0.06641, -2.1253, 0.80157, -4.37656, -1.13522, -1.53685, 0.88858, -4.17417, 0.34468 ],
  7274. "curve": "stepped"
  7275. },
  7276. {
  7277. "time": 2.4333,
  7278. "offset": 66,
  7279. "vertices": [ -2.27049, -0.06641, -2.1253, 0.80157, -4.37656, -1.13522, -1.53685, 0.88858, -4.17417, 0.34468 ],
  7280. "curve": "stepped"
  7281. },
  7282. {
  7283. "time": 3.3333,
  7284. "offset": 66,
  7285. "vertices": [ -2.27049, -0.06641, -2.1253, 0.80157, -4.37656, -1.13522, -1.53685, 0.88858, -4.17417, 0.34468 ]
  7286. },
  7287. { "time": 4.1667 }
  7288. ]
  7289. }
  7290. }
  7291. },
  7292. "drawOrder": [
  7293. {
  7294. "time": 0.1667,
  7295. "offsets": [
  7296. { "slot": "maikefeng", "offset": 27 }
  7297. ]
  7298. }
  7299. ]
  7300. },
  7301. "walk1": {
  7302. "slots": {
  7303. "biaoqing_4": {
  7304. "color": [
  7305. { "time": 0, "color": "ffffff00" }
  7306. ]
  7307. },
  7308. "biyan": {
  7309. "attachment": [
  7310. { "time": 1.1, "name": "biyan" },
  7311. { "time": 1.2, "name": null }
  7312. ]
  7313. },
  7314. "youyan": {
  7315. "attachment": [
  7316. { "time": 1.1, "name": null },
  7317. { "time": 1.2, "name": "youyan" }
  7318. ]
  7319. },
  7320. "zuoyan": {
  7321. "attachment": [
  7322. { "time": 1.1, "name": null },
  7323. { "time": 1.2, "name": "zuoyan" }
  7324. ]
  7325. }
  7326. },
  7327. "bones": {
  7328. "root": {
  7329. "rotate": [
  7330. { "time": 0, "angle": 0 }
  7331. ],
  7332. "translate": [
  7333. { "time": 0, "x": 0, "y": 0 }
  7334. ],
  7335. "scale": [
  7336. { "time": 0, "x": 0.65, "y": 0.65 }
  7337. ]
  7338. },
  7339. "bone": {
  7340. "rotate": [
  7341. { "time": 0, "angle": 0, "curve": "stepped" },
  7342. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7343. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7344. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7345. { "time": 1, "angle": 0, "curve": "stepped" },
  7346. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7347. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7348. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7349. { "time": 2, "angle": 0 }
  7350. ],
  7351. "translate": [
  7352. { "time": 0, "x": -0.1, "y": 3.2 },
  7353. { "time": 0.1667, "x": 0, "y": 0 },
  7354. { "time": 0.5, "x": -0.1, "y": 3.2 },
  7355. { "time": 0.6667, "x": 0, "y": 0 },
  7356. { "time": 1, "x": -0.1, "y": 3.2 },
  7357. { "time": 1.1667, "x": 0, "y": 0 },
  7358. { "time": 1.5, "x": -0.1, "y": 3.2 },
  7359. { "time": 1.6667, "x": 0, "y": 0 },
  7360. { "time": 2, "x": -0.1, "y": 3.2 }
  7361. ],
  7362. "scale": [
  7363. { "time": 0, "x": 1, "y": 1 }
  7364. ]
  7365. },
  7366. "bone2": {
  7367. "rotate": [
  7368. { "time": 0, "angle": 4.57, "curve": "stepped" },
  7369. { "time": 0.5, "angle": 4.57, "curve": "stepped" },
  7370. { "time": 1, "angle": 4.57, "curve": "stepped" },
  7371. { "time": 1.5, "angle": 4.57, "curve": "stepped" },
  7372. { "time": 2, "angle": 4.57 }
  7373. ],
  7374. "translate": [
  7375. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7376. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7377. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7378. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7379. { "time": 2, "x": 0, "y": 0 }
  7380. ],
  7381. "scale": [
  7382. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7383. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7384. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7385. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7386. { "time": 2, "x": 1, "y": 1 }
  7387. ]
  7388. },
  7389. "bone3": {
  7390. "rotate": [
  7391. { "time": 0, "angle": 0, "curve": "stepped" },
  7392. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7393. { "time": 1, "angle": 0, "curve": "stepped" },
  7394. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7395. { "time": 2, "angle": 0 }
  7396. ],
  7397. "translate": [
  7398. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7399. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7400. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7401. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7402. { "time": 2, "x": 0, "y": 0 }
  7403. ],
  7404. "scale": [
  7405. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7406. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7407. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7408. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7409. { "time": 2, "x": 1, "y": 1 }
  7410. ]
  7411. },
  7412. "bone4": {
  7413. "rotate": [
  7414. { "time": 0, "angle": -20.94 },
  7415. { "time": 0.1667, "angle": -2.15 },
  7416. { "time": 0.3333, "angle": -353.14 },
  7417. { "time": 0.5, "angle": -333.09 },
  7418. { "time": 0.6667, "angle": 12.38 },
  7419. { "time": 0.8333, "angle": -9.46 },
  7420. { "time": 1, "angle": -20.94 },
  7421. { "time": 1.1667, "angle": -2.15 },
  7422. { "time": 1.3333, "angle": -353.14 },
  7423. { "time": 1.5, "angle": -333.09 },
  7424. { "time": 1.6667, "angle": 12.38 },
  7425. { "time": 1.8333, "angle": -9.46 },
  7426. { "time": 2, "angle": -20.94 }
  7427. ],
  7428. "translate": [
  7429. { "time": 0, "x": 0, "y": 0 },
  7430. { "time": 0.1667, "x": 0.22, "y": -3.86 },
  7431. { "time": 0.2667, "x": -0.62, "y": -15.64 },
  7432. { "time": 0.3333, "x": -0.83, "y": -15.93 },
  7433. { "time": 0.5, "x": -0.13, "y": -17.95 },
  7434. { "time": 0.6667, "x": 0.53, "y": -13.63 },
  7435. { "time": 0.8333, "x": 3.41, "y": -3.32 },
  7436. { "time": 1, "x": 0, "y": 0 },
  7437. { "time": 1.1667, "x": 0.22, "y": -3.86 },
  7438. { "time": 1.2667, "x": -0.62, "y": -15.64 },
  7439. { "time": 1.3333, "x": -0.83, "y": -15.93 },
  7440. { "time": 1.5, "x": -0.13, "y": -17.95 },
  7441. { "time": 1.6667, "x": 0.53, "y": -13.63 },
  7442. { "time": 1.8333, "x": 3.41, "y": -3.32 },
  7443. { "time": 2, "x": 0, "y": 0 }
  7444. ],
  7445. "scale": [
  7446. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7447. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7448. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7449. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7450. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7451. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7452. { "time": 2, "x": 1, "y": 1 }
  7453. ]
  7454. },
  7455. "bone5": {
  7456. "rotate": [
  7457. { "time": 0, "angle": 8.7 },
  7458. { "time": 0.3333, "angle": 1.87 },
  7459. { "time": 0.5, "angle": 8.7 },
  7460. { "time": 0.6667, "angle": 34.31 },
  7461. { "time": 0.8333, "angle": 30.08 },
  7462. { "time": 1, "angle": 8.7 },
  7463. { "time": 1.3333, "angle": 1.87 },
  7464. { "time": 1.5, "angle": 8.7 },
  7465. { "time": 1.6667, "angle": 34.31 },
  7466. { "time": 1.8333, "angle": 30.08 },
  7467. { "time": 2, "angle": 8.7 }
  7468. ],
  7469. "translate": [
  7470. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7471. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7472. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7473. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7474. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7475. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7476. { "time": 2, "x": 0, "y": 0 }
  7477. ],
  7478. "scale": [
  7479. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7480. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7481. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7482. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7483. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7484. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7485. { "time": 2, "x": 1, "y": 1 }
  7486. ]
  7487. },
  7488. "bone6": {
  7489. "rotate": [
  7490. { "time": 0, "angle": -6.79 },
  7491. { "time": 0.1667, "angle": -2.27 },
  7492. { "time": 0.5, "angle": 0 },
  7493. { "time": 1, "angle": -6.79 },
  7494. { "time": 1.1667, "angle": -2.27 },
  7495. { "time": 1.5, "angle": 0 },
  7496. { "time": 2, "angle": -6.79 }
  7497. ],
  7498. "translate": [
  7499. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7500. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7501. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7502. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7503. { "time": 2, "x": 0, "y": 0 }
  7504. ],
  7505. "scale": [
  7506. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7507. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7508. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7509. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7510. { "time": 2, "x": 1, "y": 1 }
  7511. ]
  7512. },
  7513. "bone7": {
  7514. "rotate": [
  7515. { "time": 0, "angle": 26.22 },
  7516. { "time": 0.1667, "angle": 17.14 },
  7517. { "time": 0.3333, "angle": 346.49 },
  7518. { "time": 0.5, "angle": 333.91 },
  7519. { "time": 0.7333, "angle": 353 },
  7520. { "time": 1, "angle": 26.22 },
  7521. { "time": 1.1667, "angle": 17.14 },
  7522. { "time": 1.3333, "angle": 346.49 },
  7523. { "time": 1.5, "angle": 333.91 },
  7524. { "time": 1.7333, "angle": 353 },
  7525. { "time": 2, "angle": 26.22 }
  7526. ],
  7527. "translate": [
  7528. { "time": 0, "x": 0.75, "y": -1.42 },
  7529. { "time": 0.1667, "x": 1.7, "y": 5.18 },
  7530. { "time": 0.3333, "x": -0.03, "y": 13.02 },
  7531. { "time": 0.5, "x": -0.53, "y": 17.23 },
  7532. { "time": 1, "x": 0.75, "y": -1.42 },
  7533. { "time": 1.1667, "x": 1.7, "y": 5.18 },
  7534. { "time": 1.3333, "x": -0.03, "y": 13.02 },
  7535. { "time": 1.5, "x": -0.53, "y": 17.23 },
  7536. { "time": 2, "x": 0.75, "y": -1.42 }
  7537. ],
  7538. "scale": [
  7539. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7540. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7541. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7542. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7543. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7544. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7545. { "time": 2, "x": 1, "y": 1 }
  7546. ]
  7547. },
  7548. "bone8": {
  7549. "rotate": [
  7550. { "time": 0, "angle": 7.36 },
  7551. { "time": 0.1667, "angle": 33.43 },
  7552. { "time": 0.3333, "angle": 57.2 },
  7553. { "time": 0.5, "angle": 7.36, "curve": "stepped" },
  7554. { "time": 1, "angle": 7.36 },
  7555. { "time": 1.1667, "angle": 33.43 },
  7556. { "time": 1.3333, "angle": 57.2 },
  7557. { "time": 1.5, "angle": 7.36, "curve": "stepped" },
  7558. { "time": 2, "angle": 7.36 }
  7559. ],
  7560. "translate": [
  7561. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7562. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7563. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7564. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7565. { "time": 2, "x": 0, "y": 0 }
  7566. ],
  7567. "scale": [
  7568. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7569. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7570. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7571. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7572. { "time": 2, "x": 1, "y": 1 }
  7573. ]
  7574. },
  7575. "bone9": {
  7576. "rotate": [
  7577. { "time": 0, "angle": 0, "curve": "stepped" },
  7578. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7579. { "time": 1, "angle": 0, "curve": "stepped" },
  7580. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7581. { "time": 2, "angle": 0 }
  7582. ],
  7583. "translate": [
  7584. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7585. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7586. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7587. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7588. { "time": 2, "x": 0, "y": 0 }
  7589. ],
  7590. "scale": [
  7591. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7592. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7593. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7594. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7595. { "time": 2, "x": 1, "y": 1 }
  7596. ]
  7597. },
  7598. "bone10": {
  7599. "rotate": [
  7600. { "time": 0, "angle": -11.64 },
  7601. { "time": 0.5, "angle": -0.99 },
  7602. { "time": 1, "angle": -11.64 },
  7603. { "time": 1.5, "angle": -0.99 },
  7604. { "time": 2, "angle": -11.64 }
  7605. ],
  7606. "translate": [
  7607. { "time": 0, "x": -0.34, "y": -0.93 },
  7608. { "time": 0.5, "x": 0.28, "y": 1.65 },
  7609. { "time": 1, "x": -0.34, "y": -0.93 },
  7610. { "time": 1.5, "x": 0.28, "y": 1.65 },
  7611. { "time": 2, "x": -0.34, "y": -0.93 }
  7612. ],
  7613. "scale": [
  7614. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7615. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7616. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7617. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7618. { "time": 2, "x": 1, "y": 1 }
  7619. ]
  7620. },
  7621. "bone11": {
  7622. "rotate": [
  7623. { "time": 0, "angle": 1.16 },
  7624. { "time": 0.5, "angle": 0.22 },
  7625. { "time": 1, "angle": 1.16 },
  7626. { "time": 1.5, "angle": 0.22 },
  7627. { "time": 2, "angle": 1.16 }
  7628. ],
  7629. "translate": [
  7630. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7631. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7632. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7633. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7634. { "time": 2, "x": 0, "y": 0 }
  7635. ],
  7636. "scale": [
  7637. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7638. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7639. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7640. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7641. { "time": 2, "x": 1, "y": 1 }
  7642. ]
  7643. },
  7644. "bone12": {
  7645. "rotate": [
  7646. { "time": 0, "angle": -10.69 },
  7647. { "time": 0.5, "angle": -3.2 },
  7648. { "time": 1, "angle": -10.69 },
  7649. { "time": 1.5, "angle": -3.2 },
  7650. { "time": 2, "angle": -10.69 }
  7651. ],
  7652. "translate": [
  7653. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7654. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7655. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7656. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7657. { "time": 2, "x": 0, "y": 0 }
  7658. ],
  7659. "scale": [
  7660. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7661. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7662. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7663. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7664. { "time": 2, "x": 1, "y": 1 }
  7665. ]
  7666. },
  7667. "bone13": {
  7668. "rotate": [
  7669. { "time": 0, "angle": 8.3 },
  7670. { "time": 0.5, "angle": -3.7 },
  7671. { "time": 1, "angle": 8.3 },
  7672. { "time": 1.5, "angle": -3.7 },
  7673. { "time": 2, "angle": 8.3 }
  7674. ],
  7675. "translate": [
  7676. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7677. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7678. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7679. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7680. { "time": 2, "x": 0, "y": 0 }
  7681. ],
  7682. "scale": [
  7683. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7684. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7685. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7686. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7687. { "time": 2, "x": 1, "y": 1 }
  7688. ]
  7689. },
  7690. "bone14": {
  7691. "rotate": [
  7692. { "time": 0, "angle": 6.7 },
  7693. { "time": 0.5, "angle": 7.04 },
  7694. { "time": 1, "angle": 6.7 },
  7695. { "time": 1.5, "angle": 7.04 },
  7696. { "time": 2, "angle": 6.7 }
  7697. ],
  7698. "translate": [
  7699. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7700. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7701. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7702. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7703. { "time": 2, "x": 0, "y": 0 }
  7704. ],
  7705. "scale": [
  7706. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7707. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7708. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7709. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7710. { "time": 2, "x": 1, "y": 1 }
  7711. ]
  7712. },
  7713. "bone15": {
  7714. "rotate": [
  7715. { "time": 0, "angle": 9.96 },
  7716. { "time": 0.5, "angle": 0 },
  7717. { "time": 1, "angle": 9.96 },
  7718. { "time": 1.5, "angle": 0 },
  7719. { "time": 2, "angle": 9.96 }
  7720. ],
  7721. "translate": [
  7722. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7723. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7724. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7725. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7726. { "time": 2, "x": 0, "y": 0 }
  7727. ],
  7728. "scale": [
  7729. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7730. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7731. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7732. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7733. { "time": 2, "x": 1, "y": 1 }
  7734. ]
  7735. },
  7736. "bone16": {
  7737. "rotate": [
  7738. {
  7739. "time": 0,
  7740. "angle": 0,
  7741. "curve": [ 0.25, 0, 0.75, 1 ]
  7742. },
  7743. {
  7744. "time": 0.5,
  7745. "angle": -8.99,
  7746. "curve": [ 0.25, 0, 0.75, 1 ]
  7747. },
  7748. {
  7749. "time": 1,
  7750. "angle": 0,
  7751. "curve": [ 0.25, 0, 0.75, 1 ]
  7752. },
  7753. {
  7754. "time": 1.5,
  7755. "angle": -8.99,
  7756. "curve": [ 0.25, 0, 0.75, 1 ]
  7757. },
  7758. { "time": 2, "angle": 0 }
  7759. ],
  7760. "translate": [
  7761. {
  7762. "time": 0,
  7763. "x": 0,
  7764. "y": 0,
  7765. "curve": [ 0.25, 0, 0.75, 1 ]
  7766. },
  7767. {
  7768. "time": 0.5,
  7769. "x": 2.07,
  7770. "y": -3.85,
  7771. "curve": [ 0.25, 0, 0.75, 1 ]
  7772. },
  7773. {
  7774. "time": 1,
  7775. "x": 0,
  7776. "y": 0,
  7777. "curve": [ 0.25, 0, 0.75, 1 ]
  7778. },
  7779. {
  7780. "time": 1.5,
  7781. "x": 2.07,
  7782. "y": -3.85,
  7783. "curve": [ 0.25, 0, 0.75, 1 ]
  7784. },
  7785. { "time": 2, "x": 0, "y": 0 }
  7786. ],
  7787. "scale": [
  7788. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7789. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7790. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7791. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7792. { "time": 2, "x": 1, "y": 1 }
  7793. ]
  7794. },
  7795. "bone17": {
  7796. "rotate": [
  7797. { "time": 0, "angle": 0 },
  7798. { "time": 0.1667, "angle": 13.7 },
  7799. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7800. { "time": 1, "angle": 0 },
  7801. { "time": 1.1667, "angle": 13.7 },
  7802. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7803. { "time": 2, "angle": 0 }
  7804. ],
  7805. "translate": [
  7806. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7807. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7808. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7809. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7810. { "time": 2, "x": 0, "y": 0 }
  7811. ],
  7812. "scale": [
  7813. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7814. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7815. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7816. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7817. { "time": 2, "x": 1, "y": 1 }
  7818. ]
  7819. },
  7820. "bone18": {
  7821. "rotate": [
  7822. { "time": 0, "angle": 0 },
  7823. { "time": 0.5, "angle": -35.33 },
  7824. { "time": 1, "angle": 0 },
  7825. { "time": 1.5, "angle": -35.33 },
  7826. { "time": 2, "angle": 0 }
  7827. ],
  7828. "translate": [
  7829. { "time": 0, "x": 0, "y": 0 },
  7830. { "time": 0.5, "x": -6.05, "y": 4.27 },
  7831. { "time": 1, "x": 0, "y": 0 },
  7832. { "time": 1.5, "x": -6.05, "y": 4.27 },
  7833. { "time": 2, "x": 0, "y": 0 }
  7834. ],
  7835. "scale": [
  7836. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7837. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7838. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7839. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7840. { "time": 2, "x": 1, "y": 1 }
  7841. ]
  7842. },
  7843. "bone19": {
  7844. "rotate": [
  7845. { "time": 0, "angle": 0 },
  7846. { "time": 0.5, "angle": 306.24 },
  7847. { "time": 1, "angle": 0 },
  7848. { "time": 1.5, "angle": 306.24 },
  7849. { "time": 2, "angle": 0 }
  7850. ],
  7851. "translate": [
  7852. { "time": 0, "x": 0, "y": 0 },
  7853. { "time": 0.5, "x": -3.81, "y": 3.74 },
  7854. { "time": 1, "x": 0, "y": 0 },
  7855. { "time": 1.5, "x": -3.81, "y": 3.74 },
  7856. { "time": 2, "x": 0, "y": 0 }
  7857. ],
  7858. "scale": [
  7859. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7860. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7861. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7862. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7863. { "time": 2, "x": 1, "y": 1 }
  7864. ]
  7865. },
  7866. "bone20": {
  7867. "rotate": [
  7868. { "time": 0, "angle": -6.31 },
  7869. { "time": 0.1667, "angle": -15.67 },
  7870. { "time": 0.5, "angle": -33.18 },
  7871. { "time": 1, "angle": -6.31 },
  7872. { "time": 1.1667, "angle": -15.67 },
  7873. { "time": 1.5, "angle": -33.18 },
  7874. { "time": 2, "angle": -6.31 }
  7875. ],
  7876. "translate": [
  7877. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7878. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7879. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7880. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7881. { "time": 2, "x": 0, "y": 0 }
  7882. ],
  7883. "scale": [
  7884. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7885. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7886. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7887. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7888. { "time": 2, "x": 1, "y": 1 }
  7889. ]
  7890. },
  7891. "bone21": {
  7892. "rotate": [
  7893. { "time": 0, "angle": -3.74 },
  7894. { "time": 0.5, "angle": -0.23 },
  7895. { "time": 1, "angle": -3.74 },
  7896. { "time": 1.5, "angle": -0.23 },
  7897. { "time": 2, "angle": -3.74 }
  7898. ],
  7899. "translate": [
  7900. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7901. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7902. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7903. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7904. { "time": 2, "x": 0, "y": 0 }
  7905. ],
  7906. "scale": [
  7907. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7908. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7909. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7910. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7911. { "time": 2, "x": 1, "y": 1 }
  7912. ]
  7913. },
  7914. "bone22": {
  7915. "rotate": [
  7916. { "time": 0, "angle": 0 },
  7917. { "time": 0.5, "angle": -326.07 },
  7918. { "time": 1, "angle": 0 },
  7919. { "time": 1.5, "angle": -326.07 },
  7920. { "time": 2, "angle": 0 }
  7921. ],
  7922. "translate": [
  7923. { "time": 0, "x": 0, "y": 0 },
  7924. { "time": 0.5, "x": -2.51, "y": -10.45 },
  7925. { "time": 1, "x": 0, "y": 0 },
  7926. { "time": 1.5, "x": -2.51, "y": -10.45 },
  7927. { "time": 2, "x": 0, "y": 0 }
  7928. ],
  7929. "scale": [
  7930. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7931. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7932. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7933. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7934. { "time": 2, "x": 1, "y": 1 }
  7935. ]
  7936. },
  7937. "bone23": {
  7938. "rotate": [
  7939. { "time": 0, "angle": -18.02 },
  7940. { "time": 0.5, "angle": -29.71 },
  7941. { "time": 1, "angle": -18.02 },
  7942. { "time": 1.5, "angle": -29.71 },
  7943. { "time": 2, "angle": -18.02 }
  7944. ],
  7945. "translate": [
  7946. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7947. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7948. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7949. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7950. { "time": 2, "x": 0, "y": 0 }
  7951. ],
  7952. "scale": [
  7953. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7954. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7955. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7956. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7957. { "time": 2, "x": 1, "y": 1 }
  7958. ]
  7959. },
  7960. "bone24": {
  7961. "rotate": [
  7962. { "time": 0, "angle": 0, "curve": "stepped" },
  7963. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7964. { "time": 1, "angle": 0, "curve": "stepped" },
  7965. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7966. { "time": 2, "angle": 0 }
  7967. ],
  7968. "translate": [
  7969. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7970. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7971. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7972. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7973. { "time": 2, "x": 0, "y": 0 }
  7974. ],
  7975. "scale": [
  7976. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7977. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7978. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7979. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7980. { "time": 2, "x": 1, "y": 1 }
  7981. ]
  7982. },
  7983. "bone25": {
  7984. "rotate": [
  7985. { "time": 0, "angle": -4.19, "curve": "stepped" },
  7986. { "time": 1, "angle": -4.19, "curve": "stepped" },
  7987. { "time": 2, "angle": -4.19 }
  7988. ],
  7989. "translate": [
  7990. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7991. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7992. { "time": 2, "x": 0, "y": 0 }
  7993. ],
  7994. "scale": [
  7995. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7996. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7997. { "time": 2, "x": 1, "y": 1 }
  7998. ]
  7999. },
  8000. "bone26": {
  8001. "rotate": [
  8002. { "time": 0, "angle": 0, "curve": "stepped" },
  8003. { "time": 1, "angle": 0, "curve": "stepped" },
  8004. { "time": 1.1, "angle": 0, "curve": "stepped" },
  8005. { "time": 1.2, "angle": 0, "curve": "stepped" },
  8006. { "time": 1.3, "angle": 0 }
  8007. ],
  8008. "translate": [
  8009. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8010. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8011. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  8012. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  8013. { "time": 1.3, "x": 0, "y": 0 }
  8014. ],
  8015. "scale": [
  8016. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8017. { "time": 1, "x": 1, "y": 1 },
  8018. { "time": 1.1, "x": 0.462, "y": 1, "curve": "stepped" },
  8019. { "time": 1.2, "x": 0.462, "y": 1 },
  8020. { "time": 1.3, "x": 1, "y": 1 }
  8021. ]
  8022. },
  8023. "bone27": {
  8024. "rotate": [
  8025. { "time": 0, "angle": 0, "curve": "stepped" },
  8026. { "time": 1, "angle": 0, "curve": "stepped" },
  8027. { "time": 1.1, "angle": 0, "curve": "stepped" },
  8028. { "time": 1.2, "angle": 0, "curve": "stepped" },
  8029. { "time": 1.3, "angle": 0 }
  8030. ],
  8031. "translate": [
  8032. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8033. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8034. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  8035. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  8036. { "time": 1.3, "x": 0, "y": 0 }
  8037. ],
  8038. "scale": [
  8039. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8040. { "time": 1, "x": 1, "y": 1 },
  8041. { "time": 1.1, "x": 0.444, "y": 1, "curve": "stepped" },
  8042. { "time": 1.2, "x": 0.444, "y": 1 },
  8043. { "time": 1.3, "x": 1, "y": 1 }
  8044. ]
  8045. },
  8046. "bone28": {
  8047. "rotate": [
  8048. { "time": 0, "angle": 0, "curve": "stepped" },
  8049. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8050. { "time": 1, "angle": 0, "curve": "stepped" },
  8051. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8052. { "time": 2, "angle": 0 }
  8053. ],
  8054. "translate": [
  8055. { "time": 0, "x": -2.66, "y": -0.06 }
  8056. ],
  8057. "scale": [
  8058. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8059. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8060. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8061. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8062. { "time": 2, "x": 1, "y": 1 }
  8063. ]
  8064. },
  8065. "bone29": {
  8066. "rotate": [
  8067. { "time": 0, "angle": 0, "curve": "stepped" },
  8068. { "time": 1, "angle": 0, "curve": "stepped" },
  8069. { "time": 1.1, "angle": 0, "curve": "stepped" },
  8070. { "time": 1.2, "angle": 0, "curve": "stepped" },
  8071. { "time": 1.3, "angle": 0 }
  8072. ],
  8073. "translate": [
  8074. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8075. { "time": 1, "x": 0, "y": 0 },
  8076. { "time": 1.1, "x": -0.73, "y": -0.02, "curve": "stepped" },
  8077. { "time": 1.2, "x": -0.73, "y": -0.02 },
  8078. { "time": 1.3, "x": 0, "y": 0 }
  8079. ],
  8080. "scale": [
  8081. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8082. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8083. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  8084. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  8085. { "time": 1.3, "x": 1, "y": 1 }
  8086. ]
  8087. },
  8088. "bone30": {
  8089. "rotate": [
  8090. { "time": 0, "angle": 0 },
  8091. { "time": 0.5, "angle": -4.11 },
  8092. { "time": 1, "angle": 0 },
  8093. { "time": 1.5, "angle": -4.11 },
  8094. { "time": 2, "angle": 0 }
  8095. ],
  8096. "translate": [
  8097. { "time": 0, "x": 0, "y": 0 },
  8098. { "time": 0.5, "x": -0.46, "y": 1.71 },
  8099. { "time": 1, "x": 0, "y": 0 },
  8100. { "time": 1.5, "x": -0.46, "y": 1.71 },
  8101. { "time": 2, "x": 0, "y": 0 }
  8102. ],
  8103. "scale": [
  8104. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8105. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8106. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8107. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8108. { "time": 2, "x": 1, "y": 1 }
  8109. ]
  8110. },
  8111. "bone31": {
  8112. "rotate": [
  8113. { "time": 0, "angle": 0 },
  8114. { "time": 0.5, "angle": 0.68 },
  8115. { "time": 1, "angle": 0 },
  8116. { "time": 1.5, "angle": 0.68 },
  8117. { "time": 2, "angle": 0 }
  8118. ],
  8119. "translate": [
  8120. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8121. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8122. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8123. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8124. { "time": 2, "x": 0, "y": 0 }
  8125. ],
  8126. "scale": [
  8127. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8128. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8129. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8130. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8131. { "time": 2, "x": 1, "y": 1 }
  8132. ]
  8133. },
  8134. "bone32": {
  8135. "rotate": [
  8136. { "time": 0, "angle": 0 },
  8137. { "time": 0.5, "angle": 2.96 },
  8138. { "time": 1, "angle": 0 },
  8139. { "time": 1.5, "angle": 2.96 },
  8140. { "time": 2, "angle": 0 }
  8141. ],
  8142. "translate": [
  8143. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8144. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8145. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8146. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8147. { "time": 2, "x": 0, "y": 0 }
  8148. ],
  8149. "scale": [
  8150. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8151. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8152. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8153. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8154. { "time": 2, "x": 1, "y": 1 }
  8155. ]
  8156. },
  8157. "bone33": {
  8158. "rotate": [
  8159. { "time": 0, "angle": 0 },
  8160. { "time": 0.5, "angle": -7.72 },
  8161. { "time": 1, "angle": 0 },
  8162. { "time": 1.5, "angle": -7.72 },
  8163. { "time": 2, "angle": 0 }
  8164. ],
  8165. "translate": [
  8166. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8167. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8168. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8169. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8170. { "time": 2, "x": 0, "y": 0 }
  8171. ],
  8172. "scale": [
  8173. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8174. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8175. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8176. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8177. { "time": 2, "x": 1, "y": 1 }
  8178. ]
  8179. },
  8180. "bone34": {
  8181. "rotate": [
  8182. { "time": 0, "angle": 0, "curve": "stepped" },
  8183. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8184. { "time": 1, "angle": 0, "curve": "stepped" },
  8185. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8186. { "time": 2, "angle": 0 }
  8187. ],
  8188. "translate": [
  8189. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8190. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8191. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8192. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8193. { "time": 2, "x": 0, "y": 0 }
  8194. ],
  8195. "scale": [
  8196. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8197. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8198. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8199. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8200. { "time": 2, "x": 1, "y": 1 }
  8201. ]
  8202. },
  8203. "bone35": {
  8204. "rotate": [
  8205. { "time": 0, "angle": 0 },
  8206. { "time": 0.5, "angle": 9.24 },
  8207. { "time": 1, "angle": 0 },
  8208. { "time": 1.5, "angle": 9.24 },
  8209. { "time": 2, "angle": 0 }
  8210. ],
  8211. "translate": [
  8212. { "time": 0, "x": 0, "y": 0 },
  8213. { "time": 0.5, "x": 1.1, "y": -0.19 },
  8214. { "time": 1, "x": 0, "y": 0 },
  8215. { "time": 1.5, "x": 1.1, "y": -0.19 },
  8216. { "time": 2, "x": 0, "y": 0 }
  8217. ],
  8218. "scale": [
  8219. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8220. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8221. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8222. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8223. { "time": 2, "x": 1, "y": 1 }
  8224. ]
  8225. },
  8226. "bone36": {
  8227. "rotate": [
  8228. { "time": 0, "angle": 0 },
  8229. { "time": 0.5, "angle": -16.74 },
  8230. { "time": 1, "angle": 0 },
  8231. { "time": 1.5, "angle": -16.74 },
  8232. { "time": 2, "angle": 0 }
  8233. ],
  8234. "translate": [
  8235. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8236. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8237. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8238. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8239. { "time": 2, "x": 0, "y": 0 }
  8240. ],
  8241. "scale": [
  8242. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8243. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8244. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8245. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8246. { "time": 2, "x": 1, "y": 1 }
  8247. ]
  8248. },
  8249. "bone37": {
  8250. "rotate": [
  8251. { "time": 0, "angle": 0 },
  8252. { "time": 0.5, "angle": -19.31 },
  8253. { "time": 1, "angle": 0 },
  8254. { "time": 1.5, "angle": -19.31 },
  8255. { "time": 2, "angle": 0 }
  8256. ],
  8257. "translate": [
  8258. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8259. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8260. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8261. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8262. { "time": 2, "x": 0, "y": 0 }
  8263. ],
  8264. "scale": [
  8265. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8266. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8267. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8268. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8269. { "time": 2, "x": 1, "y": 1 }
  8270. ]
  8271. },
  8272. "bone38": {
  8273. "rotate": [
  8274. { "time": 0, "angle": 0 },
  8275. { "time": 0.5, "angle": 5.43 },
  8276. { "time": 1, "angle": 0 },
  8277. { "time": 1.5, "angle": 5.43 },
  8278. { "time": 2, "angle": 0 }
  8279. ],
  8280. "translate": [
  8281. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8282. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8283. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8284. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8285. { "time": 2, "x": 0, "y": 0 }
  8286. ],
  8287. "scale": [
  8288. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8289. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8290. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8291. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8292. { "time": 2, "x": 1, "y": 1 }
  8293. ]
  8294. },
  8295. "bone39": {
  8296. "rotate": [
  8297. { "time": 0, "angle": 0 },
  8298. { "time": 0.5, "angle": 2.98 },
  8299. { "time": 1, "angle": 0 },
  8300. { "time": 1.5, "angle": 2.98 },
  8301. { "time": 2, "angle": 0 }
  8302. ],
  8303. "translate": [
  8304. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8305. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8306. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8307. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8308. { "time": 2, "x": 0, "y": 0 }
  8309. ],
  8310. "scale": [
  8311. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8312. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8313. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8314. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8315. { "time": 2, "x": 1, "y": 1 }
  8316. ]
  8317. },
  8318. "bone40": {
  8319. "rotate": [
  8320. { "time": 0, "angle": 0 },
  8321. { "time": 0.5, "angle": 1.5 },
  8322. { "time": 1, "angle": 0 },
  8323. { "time": 1.5, "angle": 1.5 },
  8324. { "time": 2, "angle": 0 }
  8325. ],
  8326. "translate": [
  8327. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8328. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8329. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8330. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8331. { "time": 2, "x": 0, "y": 0 }
  8332. ],
  8333. "scale": [
  8334. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8335. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8336. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8337. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8338. { "time": 2, "x": 1, "y": 1 }
  8339. ]
  8340. },
  8341. "bone41": {
  8342. "rotate": [
  8343. { "time": 0, "angle": 0 },
  8344. { "time": 0.5, "angle": 11.6 },
  8345. { "time": 1, "angle": 0 },
  8346. { "time": 1.5, "angle": 11.6 },
  8347. { "time": 2, "angle": 0 }
  8348. ],
  8349. "translate": [
  8350. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8351. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8352. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8353. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8354. { "time": 2, "x": 0, "y": 0 }
  8355. ],
  8356. "scale": [
  8357. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8358. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8359. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8360. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8361. { "time": 2, "x": 1, "y": 1 }
  8362. ]
  8363. },
  8364. "bone45": {
  8365. "rotate": [
  8366. { "time": 0, "angle": 0 },
  8367. { "time": 0.5, "angle": -3.16 },
  8368. { "time": 1, "angle": 0 },
  8369. { "time": 1.5, "angle": -3.16 },
  8370. { "time": 2, "angle": 0 }
  8371. ],
  8372. "translate": [
  8373. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8374. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8375. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8376. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8377. { "time": 2, "x": 0, "y": 0 }
  8378. ],
  8379. "scale": [
  8380. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8381. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8382. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8383. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8384. { "time": 2, "x": 1, "y": 1 }
  8385. ]
  8386. },
  8387. "bone46": {
  8388. "rotate": [
  8389. { "time": 0, "angle": 0 },
  8390. { "time": 0.5, "angle": -1.28 },
  8391. { "time": 1, "angle": 0 },
  8392. { "time": 1.5, "angle": -1.28 },
  8393. { "time": 2, "angle": 0 }
  8394. ],
  8395. "translate": [
  8396. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8397. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8398. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8399. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8400. { "time": 2, "x": 0, "y": 0 }
  8401. ],
  8402. "scale": [
  8403. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8404. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8405. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8406. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8407. { "time": 2, "x": 1, "y": 1 }
  8408. ]
  8409. },
  8410. "bone47": {
  8411. "rotate": [
  8412. { "time": 0, "angle": 0 },
  8413. { "time": 0.5, "angle": -5.21 },
  8414. { "time": 1, "angle": 0 },
  8415. { "time": 1.5, "angle": -5.21 },
  8416. { "time": 2, "angle": 0 }
  8417. ],
  8418. "translate": [
  8419. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8420. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8421. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8422. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8423. { "time": 2, "x": 0, "y": 0 }
  8424. ],
  8425. "scale": [
  8426. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8427. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8428. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8429. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8430. { "time": 2, "x": 1, "y": 1 }
  8431. ]
  8432. },
  8433. "bone48": {
  8434. "rotate": [
  8435. { "time": 0, "angle": 0, "curve": "stepped" },
  8436. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8437. { "time": 1, "angle": 0, "curve": "stepped" },
  8438. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8439. { "time": 2, "angle": 0 }
  8440. ],
  8441. "translate": [
  8442. { "time": 0, "x": 0, "y": 0 },
  8443. { "time": 0.5, "x": -0.54, "y": -2.14 },
  8444. { "time": 1, "x": 0, "y": 0 },
  8445. { "time": 1.5, "x": -0.54, "y": -2.14 },
  8446. { "time": 2, "x": 0, "y": 0 }
  8447. ],
  8448. "scale": [
  8449. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8450. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8451. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8452. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8453. { "time": 2, "x": 1, "y": 1 }
  8454. ]
  8455. },
  8456. "bone49": {
  8457. "rotate": [
  8458. { "time": 0, "angle": 0 },
  8459. { "time": 0.5, "angle": -10.51 },
  8460. { "time": 1, "angle": 0 },
  8461. { "time": 1.5, "angle": -10.51 },
  8462. { "time": 2, "angle": 0 }
  8463. ],
  8464. "translate": [
  8465. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8466. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8467. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8468. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8469. { "time": 2, "x": 0, "y": 0 }
  8470. ],
  8471. "scale": [
  8472. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8473. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8474. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8475. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8476. { "time": 2, "x": 1, "y": 1 }
  8477. ]
  8478. },
  8479. "bone50": {
  8480. "rotate": [
  8481. { "time": 0, "angle": 0 },
  8482. { "time": 0.5, "angle": -18.64 },
  8483. { "time": 1, "angle": 0 },
  8484. { "time": 1.5, "angle": -18.64 },
  8485. { "time": 2, "angle": 0 }
  8486. ],
  8487. "translate": [
  8488. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8489. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8490. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8491. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8492. { "time": 2, "x": 0, "y": 0 }
  8493. ],
  8494. "scale": [
  8495. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8496. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8497. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8498. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8499. { "time": 2, "x": 1, "y": 1 }
  8500. ]
  8501. },
  8502. "bone51": {
  8503. "rotate": [
  8504. { "time": 0, "angle": -4.22 },
  8505. { "time": 0.5, "angle": 9.56 },
  8506. { "time": 1, "angle": -4.22 },
  8507. { "time": 1.5, "angle": 9.56 },
  8508. { "time": 2, "angle": -4.22 }
  8509. ],
  8510. "translate": [
  8511. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8512. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8513. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8514. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8515. { "time": 2, "x": 0, "y": 0 }
  8516. ],
  8517. "scale": [
  8518. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8519. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8520. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8521. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8522. { "time": 2, "x": 1, "y": 1 }
  8523. ]
  8524. },
  8525. "bone52": {
  8526. "rotate": [
  8527. { "time": 0, "angle": 0 },
  8528. { "time": 0.5, "angle": 8.36 },
  8529. { "time": 1, "angle": 0 },
  8530. { "time": 1.5, "angle": 8.36 },
  8531. { "time": 2, "angle": 0 }
  8532. ],
  8533. "translate": [
  8534. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8535. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8536. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8537. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8538. { "time": 2, "x": 0, "y": 0 }
  8539. ],
  8540. "scale": [
  8541. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8542. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8543. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8544. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8545. { "time": 2, "x": 1, "y": 1 }
  8546. ]
  8547. },
  8548. "bone53": {
  8549. "rotate": [
  8550. { "time": 0, "angle": 0 },
  8551. { "time": 0.5, "angle": 4.85 },
  8552. { "time": 1, "angle": 0 },
  8553. { "time": 1.5, "angle": 4.85 },
  8554. { "time": 2, "angle": 0 }
  8555. ],
  8556. "translate": [
  8557. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8558. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8559. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8560. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8561. { "time": 2, "x": 0, "y": 0 }
  8562. ],
  8563. "scale": [
  8564. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8565. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8566. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8567. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8568. { "time": 2, "x": 1, "y": 1 }
  8569. ]
  8570. },
  8571. "bone54": {
  8572. "rotate": [
  8573. { "time": 0, "angle": 11.42 },
  8574. { "time": 0.5, "angle": -4.12 },
  8575. { "time": 1, "angle": 11.42 },
  8576. { "time": 1.5, "angle": -4.12 },
  8577. { "time": 2, "angle": 11.42 }
  8578. ],
  8579. "translate": [
  8580. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8581. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8582. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8583. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8584. { "time": 2, "x": 0, "y": 0 }
  8585. ],
  8586. "scale": [
  8587. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8588. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8589. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8590. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8591. { "time": 2, "x": 1, "y": 1 }
  8592. ]
  8593. },
  8594. "bone55": {
  8595. "rotate": [
  8596. { "time": 0, "angle": 0, "curve": "stepped" },
  8597. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8598. { "time": 1, "angle": 0, "curve": "stepped" },
  8599. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8600. { "time": 2, "angle": 0 }
  8601. ],
  8602. "translate": [
  8603. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8604. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8605. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8606. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8607. { "time": 2, "x": 0, "y": 0 }
  8608. ],
  8609. "scale": [
  8610. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8611. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8612. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8613. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8614. { "time": 2, "x": 1, "y": 1 }
  8615. ]
  8616. },
  8617. "bone56": {
  8618. "rotate": [
  8619. { "time": 0, "angle": 0, "curve": "stepped" },
  8620. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8621. { "time": 1, "angle": 0, "curve": "stepped" },
  8622. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8623. { "time": 2, "angle": 0 }
  8624. ],
  8625. "translate": [
  8626. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8627. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8628. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8629. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8630. { "time": 2, "x": 0, "y": 0 }
  8631. ],
  8632. "scale": [
  8633. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8634. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8635. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8636. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8637. { "time": 2, "x": 1, "y": 1 }
  8638. ]
  8639. },
  8640. "bone57": {
  8641. "rotate": [
  8642. { "time": 0, "angle": 0, "curve": "stepped" },
  8643. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8644. { "time": 1, "angle": 0, "curve": "stepped" },
  8645. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8646. { "time": 2, "angle": 0 }
  8647. ],
  8648. "translate": [
  8649. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8650. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8651. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8652. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8653. { "time": 2, "x": 0, "y": 0 }
  8654. ],
  8655. "scale": [
  8656. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8657. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8658. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8659. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8660. { "time": 2, "x": 1, "y": 1 }
  8661. ]
  8662. },
  8663. "bone58": {
  8664. "rotate": [
  8665. { "time": 0, "angle": 54.47 },
  8666. { "time": 0.5, "angle": 34.13 },
  8667. { "time": 1, "angle": 54.47 },
  8668. { "time": 1.5, "angle": 34.13 },
  8669. { "time": 2, "angle": 54.47 }
  8670. ],
  8671. "translate": [
  8672. { "time": 0, "x": -34.16, "y": 14.46, "curve": "stepped" },
  8673. { "time": 0.5, "x": -34.16, "y": 14.46, "curve": "stepped" },
  8674. { "time": 1, "x": -34.16, "y": 14.46, "curve": "stepped" },
  8675. { "time": 1.5, "x": -34.16, "y": 14.46, "curve": "stepped" },
  8676. { "time": 2, "x": -34.16, "y": 14.46 }
  8677. ],
  8678. "scale": [
  8679. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8680. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8681. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8682. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8683. { "time": 2, "x": 1, "y": 1 }
  8684. ]
  8685. },
  8686. "bone42": {
  8687. "rotate": [
  8688. { "time": 0, "angle": 0, "curve": "stepped" },
  8689. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8690. { "time": 1, "angle": 0, "curve": "stepped" },
  8691. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8692. { "time": 2, "angle": 0 }
  8693. ],
  8694. "translate": [
  8695. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8696. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8697. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8698. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8699. { "time": 2, "x": 0, "y": 0 }
  8700. ],
  8701. "scale": [
  8702. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8703. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8704. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8705. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8706. { "time": 2, "x": 1, "y": 1 }
  8707. ]
  8708. },
  8709. "bone43": {
  8710. "rotate": [
  8711. { "time": 0, "angle": 0, "curve": "stepped" },
  8712. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8713. { "time": 1, "angle": 0, "curve": "stepped" },
  8714. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8715. { "time": 2, "angle": 0 }
  8716. ],
  8717. "translate": [
  8718. { "time": 0, "x": 0, "y": 0 },
  8719. { "time": 0.5, "x": 0.22, "y": 3.73 },
  8720. { "time": 1, "x": 0, "y": 0 },
  8721. { "time": 1.5, "x": 0.22, "y": 3.73 },
  8722. { "time": 2, "x": 0, "y": 0 }
  8723. ],
  8724. "scale": [
  8725. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8726. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8727. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8728. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8729. { "time": 2, "x": 1, "y": 1 }
  8730. ]
  8731. },
  8732. "bone44": {
  8733. "rotate": [
  8734. { "time": 0, "angle": 0, "curve": "stepped" },
  8735. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8736. { "time": 1, "angle": 0, "curve": "stepped" },
  8737. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8738. { "time": 2, "angle": 0 }
  8739. ],
  8740. "translate": [
  8741. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8742. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8743. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8744. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8745. { "time": 2, "x": 0, "y": 0 }
  8746. ],
  8747. "scale": [
  8748. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8749. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8750. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8751. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8752. { "time": 2, "x": 1, "y": 1 }
  8753. ]
  8754. },
  8755. "bone59": {
  8756. "rotate": [
  8757. { "time": 0, "angle": 0, "curve": "stepped" },
  8758. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8759. { "time": 1, "angle": 0, "curve": "stepped" },
  8760. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8761. { "time": 2, "angle": 0 }
  8762. ],
  8763. "translate": [
  8764. { "time": 0, "x": 0, "y": 0 },
  8765. { "time": 0.5, "x": -3.98, "y": 6 },
  8766. { "time": 1, "x": 0, "y": 0 },
  8767. { "time": 1.5, "x": -3.98, "y": 6 },
  8768. { "time": 2, "x": 0, "y": 0 }
  8769. ],
  8770. "scale": [
  8771. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8772. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8773. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8774. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8775. { "time": 2, "x": 1, "y": 1 }
  8776. ]
  8777. }
  8778. },
  8779. "deform": {
  8780. "default": {
  8781. "dangbu": {
  8782. "dangbu": [
  8783. {
  8784. "time": 0,
  8785. "offset": 2,
  8786. "vertices": [ -1.41, 1.69201, 0, -1.69201 ]
  8787. },
  8788. {
  8789. "time": 0.1667,
  8790. "offset": 2,
  8791. "vertices": [ 1.04, -3.328, -1.86199, 2.8, 2.32299, 2.89002 ]
  8792. },
  8793. {
  8794. "time": 0.2,
  8795. "vertices": [ -0.54233, 0.86766, 0.77467, -3.59286, -0.73732, 7.00732, 2.59959, 1.64579 ]
  8796. },
  8797. {
  8798. "time": 0.2667,
  8799. "vertices": [ -1.62699, 2.60297, 0.244, -4.12258, -0.36299, 7.54696, 6.90278, 0.2824 ]
  8800. },
  8801. {
  8802. "time": 0.3,
  8803. "vertices": [ -0.8135, 1.30149, 0.382, -2.89329, -0.44149, 6.26947, 6.9614, -0.38879 ]
  8804. },
  8805. {
  8806. "time": 0.3333,
  8807. "offset": 2,
  8808. "vertices": [ 0.52, -1.664, -0.51999, 4.99199, 0.97001, 4.022 ]
  8809. },
  8810. { "time": 0.5 },
  8811. {
  8812. "time": 0.6667,
  8813. "offset": 2,
  8814. "vertices": [ 1.04, -3.328, -1.03999, 4.99198, 1.03999, 5.2 ]
  8815. },
  8816. {
  8817. "time": 0.7333,
  8818. "vertices": [ 2.55501, -1.82499, 0.96601, -8.04257, -0.36299, 9.72497, 5.69279, -2.13762 ]
  8819. },
  8820. {
  8821. "time": 0.8333,
  8822. "vertices": [ 0.832, -2.91199, 1.144, -4.368, -1.14399, 2.49599, 1.45399, 0.15001 ]
  8823. },
  8824. {
  8825. "time": 1,
  8826. "offset": 2,
  8827. "vertices": [ -1.41, 1.69201, 0, -1.69201 ]
  8828. },
  8829. {
  8830. "time": 1.1667,
  8831. "offset": 2,
  8832. "vertices": [ 1.04, -3.328, -1.86199, 2.8, 2.32299, 2.89002 ]
  8833. },
  8834. {
  8835. "time": 1.2,
  8836. "vertices": [ -0.54233, 0.86766, 0.77467, -3.59286, -0.73732, 7.00732, 2.59959, 1.64579 ]
  8837. },
  8838. {
  8839. "time": 1.2667,
  8840. "vertices": [ -1.62699, 2.60297, 0.244, -4.12258, -0.36299, 7.54696, 6.90278, 0.2824 ]
  8841. },
  8842. {
  8843. "time": 1.3,
  8844. "vertices": [ -0.8135, 1.30149, 0.382, -2.89329, -0.44149, 6.26947, 6.9614, -0.38879 ]
  8845. },
  8846. {
  8847. "time": 1.3333,
  8848. "offset": 2,
  8849. "vertices": [ 0.52, -1.664, -0.51999, 4.99199, 0.97001, 4.022 ]
  8850. },
  8851. { "time": 1.5 },
  8852. {
  8853. "time": 1.6667,
  8854. "offset": 2,
  8855. "vertices": [ 1.04, -3.328, -1.03999, 4.99198, 1.03999, 5.2 ]
  8856. },
  8857. {
  8858. "time": 1.7333,
  8859. "vertices": [ 2.55501, -1.82499, 0.96601, -8.04257, -0.36299, 9.72497, 5.69279, -2.13762 ]
  8860. },
  8861. {
  8862. "time": 1.8333,
  8863. "vertices": [ 0.832, -2.91199, 1.144, -4.368, -1.14399, 2.49599, 1.45399, 0.15001 ]
  8864. },
  8865. {
  8866. "time": 2,
  8867. "offset": 2,
  8868. "vertices": [ -1.41, 1.69201, 0, -1.69201 ]
  8869. }
  8870. ]
  8871. },
  8872. "mao2": {
  8873. "mao2": [
  8874. { "time": 0 },
  8875. {
  8876. "time": 0.5,
  8877. "offset": 44,
  8878. "vertices": [ -1.32783, -2.86702, -2.74734, -1.56043, -1.22708, -2.22385, -2.2914, -1.09575, -1.1263, -1.5807, -1.72302, -2.58544 ]
  8879. },
  8880. { "time": 1 },
  8881. {
  8882. "time": 1.5,
  8883. "offset": 44,
  8884. "vertices": [ -1.32783, -2.86702, -2.74734, -1.56043, -1.22708, -2.22385, -2.2914, -1.09575, -1.1263, -1.5807, -1.72302, -2.58544 ]
  8885. },
  8886. { "time": 2 }
  8887. ]
  8888. },
  8889. "shenti": {
  8890. "shenti": [
  8891. { "time": 0 },
  8892. {
  8893. "time": 0.5,
  8894. "vertices": [ -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.12409, 3.14318, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0, 0, -0.23415, 3.13691, -0.14154, 3.58575, -0.267, 3.57859, -0.12409, 3.14318, -0.12409, 3.14318, -0.12409, 3.14318, -0.23415, 3.13691, -0.12409, 3.14318, -0.23415, 3.13691, -0.12409, 3.14318, -0.23415, 3.13691, -0.12409, 3.14318, -0.23415, 3.13691 ]
  8895. },
  8896. { "time": 1 },
  8897. {
  8898. "time": 1.5,
  8899. "vertices": [ -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.267, 3.57859, -0.14154, 3.58575, -0.12409, 3.14318, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0.03625, -0.91798, 0.0684, -0.91615, 0, 0, -0.23415, 3.13691, -0.14154, 3.58575, -0.267, 3.57859, -0.12409, 3.14318, -0.12409, 3.14318, -0.12409, 3.14318, -0.23415, 3.13691, -0.12409, 3.14318, -0.23415, 3.13691, -0.12409, 3.14318, -0.23415, 3.13691, -0.12409, 3.14318, -0.23415, 3.13691 ]
  8900. },
  8901. { "time": 2 }
  8902. ]
  8903. },
  8904. "toufa1": {
  8905. "toufa1": [
  8906. { "time": 0 },
  8907. {
  8908. "time": 0.5,
  8909. "vertices": [ 1.36891, 1.05775, 2.07329, 0.20283, 1.25812, -3.26926, 0, 0, 0, 0, 0.66957, 1.56671 ]
  8910. },
  8911. { "time": 1 },
  8912. {
  8913. "time": 1.5,
  8914. "vertices": [ 1.36891, 1.05775, 2.07329, 0.20283, 1.25812, -3.26926, 0, 0, 0, 0, 0.66957, 1.56671 ]
  8915. },
  8916. { "time": 2 }
  8917. ]
  8918. },
  8919. "youtui": {
  8920. "youtui": [
  8921. {
  8922. "time": 0,
  8923. "offset": 78,
  8924. "vertices": [ -5.41272, -1.48596 ]
  8925. },
  8926. {
  8927. "time": 0.2,
  8928. "vertices": [ 1.38607, 3.02599, 2.99385, 1.45416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.57829, -0.67412, -0.80765, 3.37963, 1.61161, 2.08953 ]
  8929. },
  8930. {
  8931. "time": 0.3333,
  8932. "offset": 78,
  8933. "vertices": [ -0.68867, -0.1329, -4.54354, -0.04957, -6.43407, 0.62575 ]
  8934. },
  8935. {
  8936. "time": 0.5,
  8937. "vertices": [ -6.98553, 0.81479, -6.78326, 1.85742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.67336, 0.54363, -4.48808, 0.12826, -7.73885, 0.29864 ]
  8938. },
  8939. {
  8940. "time": 0.6667,
  8941. "vertices": [ -4.65702, 0.5432, -4.52217, 1.23828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.26052, -1.57235, -0.49429, -1.51519, 1.48793, -0.57113, -1.39421, -2.11618, -2.99205, 0.08551, -5.15923, 0.1991 ]
  8942. },
  8943. {
  8944. "time": 1,
  8945. "offset": 78,
  8946. "vertices": [ -5.41272, -1.48596 ]
  8947. },
  8948. {
  8949. "time": 1.2,
  8950. "vertices": [ 1.38607, 3.02599, 2.99385, 1.45416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.57829, -0.67412, -0.80765, 3.37963, 1.61161, 2.08953 ]
  8951. },
  8952. {
  8953. "time": 1.3333,
  8954. "offset": 78,
  8955. "vertices": [ -0.68867, -0.1329, -4.54354, -0.04957, -6.43407, 0.62575 ]
  8956. },
  8957. {
  8958. "time": 1.5,
  8959. "vertices": [ -6.98553, 0.81479, -6.78326, 1.85742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.67336, 0.54363, -4.48808, 0.12826, -7.73885, 0.29864 ]
  8960. },
  8961. {
  8962. "time": 1.6667,
  8963. "vertices": [ -4.65702, 0.5432, -4.52217, 1.23828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.26052, -1.57235, -0.49429, -1.51519, 1.48793, -0.57113, -1.39421, -2.11618, -2.99205, 0.08551, -5.15923, 0.1991 ]
  8964. },
  8965. {
  8966. "time": 2,
  8967. "offset": 78,
  8968. "vertices": [ -5.41272, -1.48596 ]
  8969. }
  8970. ]
  8971. },
  8972. "zuotui": {
  8973. "zuotui": [
  8974. {
  8975. "time": 0,
  8976. "vertices": [ -2.8166, 0.94912, -2.57348, 1.48698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.76686, -0.34282, -5.63393, 0.57962 ]
  8977. },
  8978. {
  8979. "time": 0.2,
  8980. "offset": 67,
  8981. "vertices": [ -1.43046, -0.17823, -1.41932, -2.17308, -3.21509, -0.34499, 0.52683, -2.40757, -0.18352 ]
  8982. },
  8983. {
  8984. "time": 0.5,
  8985. "offset": 66,
  8986. "vertices": [ -2.09449, -1.00544, -2.25189, -0.57174, -9.07353, -4.90213, -1.92042, 1.4156, 2.43197, -1.32824 ]
  8987. },
  8988. {
  8989. "time": 0.6667,
  8990. "vertices": [ 0.5159, 2.12881, 1.69329, 1.38962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.47216, 0.95892, -0.5812, 0.96565, -6.04902, -3.26808, -0.73319, 2.21648, 1.85231, 0.24169 ]
  8991. },
  8992. {
  8993. "time": 0.8,
  8994. "vertices": [ 0.30954, 1.27729, 1.01597, 0.83377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.54431, -0.49084, 0.24988, -1.09895, 0.13916, -3.36676, -0.61704, 0.79496, -1.14219, 0.37686 ]
  8995. },
  8996. {
  8997. "time": 1,
  8998. "vertices": [ -2.8166, 0.94912, -2.57348, 1.48698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.76686, -0.34282, -5.63393, 0.57962 ]
  8999. },
  9000. {
  9001. "time": 1.2,
  9002. "offset": 67,
  9003. "vertices": [ -1.43046, -0.17823, -1.41932, -2.17308, -3.21509, -0.34499, 0.52683, -2.40757, -0.18352 ]
  9004. },
  9005. {
  9006. "time": 1.5,
  9007. "offset": 66,
  9008. "vertices": [ -2.09449, -1.00544, -2.25189, -0.57174, -9.07353, -4.90213, -1.92042, 1.4156, 2.43197, -1.32824 ]
  9009. },
  9010. {
  9011. "time": 1.6667,
  9012. "vertices": [ 0.5159, 2.12881, 1.69329, 1.38962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.47216, 0.95892, -0.5812, 0.96565, -6.04902, -3.26808, -0.73319, 2.21648, 1.85231, 0.24169 ]
  9013. },
  9014. {
  9015. "time": 1.8,
  9016. "vertices": [ 0.30954, 1.27729, 1.01597, 0.83377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.54431, -0.49084, 0.24988, -1.09895, 0.13916, -3.36676, -0.61704, 0.79496, -1.14219, 0.37686 ]
  9017. },
  9018. {
  9019. "time": 2,
  9020. "vertices": [ -2.8166, 0.94912, -2.57348, 1.48698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.76686, -0.34282, -5.63393, 0.57962 ]
  9021. }
  9022. ]
  9023. }
  9024. }
  9025. }
  9026. }
  9027. }
  9028. }