42203.json 376 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815
  1. {
  2. "skeleton": { "hash": "qHuK5P0SjRSDktSHra4gc4lRjeM", "spine": "3.6.53", "width": 179.81, "height": 205, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -0.05, "y": -0.59 },
  6. { "name": "bone2", "parent": "bone", "x": -3.53, "y": 72.22 },
  7. { "name": "bone3", "parent": "bone2", "length": 14.5, "rotation": 84.92, "x": 0.64 },
  8. { "name": "bone4", "parent": "bone3", "length": 17.09, "rotation": -0.31, "x": 14.5 },
  9. { "name": "bone5", "parent": "bone4", "length": 45.77, "rotation": 10.62, "x": 19.58, "y": 0.88 },
  10. { "name": "bone6", "parent": "bone5", "length": 11.1, "rotation": 138.74, "x": 76.35, "y": 13.31 },
  11. { "name": "bone7", "parent": "bone6", "length": 11.63, "rotation": 20.77, "x": 11.1 },
  12. { "name": "bone8", "parent": "bone7", "length": 9.42, "rotation": 10.29, "x": 11.63 },
  13. { "name": "bone9", "parent": "bone8", "length": 10.88, "rotation": 11.43, "x": 9.42 },
  14. { "name": "bone10", "parent": "bone5", "length": 10.59, "rotation": 149.69, "x": 75.68, "y": 1.49 },
  15. { "name": "bone11", "parent": "bone10", "length": 11.84, "rotation": 14.16, "x": 10.59 },
  16. { "name": "bone12", "parent": "bone11", "length": 14.09, "rotation": 13.41, "x": 11.84 },
  17. { "name": "bone13", "parent": "bone12", "length": 10.22, "rotation": 23.56, "x": 14.09 },
  18. { "name": "bone14", "parent": "bone5", "length": 10.7, "rotation": 167.1, "x": 75.35, "y": -15.48 },
  19. { "name": "bone15", "parent": "bone14", "length": 10.41, "rotation": 6.54, "x": 10.91, "y": 0.03 },
  20. { "name": "bone16", "parent": "bone15", "length": 14.33, "rotation": 6.02, "x": 10.41 },
  21. { "name": "bone17", "parent": "bone16", "length": 9.78, "rotation": 18.46, "x": 14.33 },
  22. { "name": "bone18", "parent": "bone5", "length": 14.25, "rotation": -171.99, "x": 64.91, "y": -31.12 },
  23. { "name": "bone19", "parent": "bone18", "length": 14.08, "rotation": -12.41, "x": 14.3, "y": 0.2 },
  24. { "name": "bone20", "parent": "bone19", "length": 13.92, "rotation": -11.81, "x": 14.08 },
  25. { "name": "bone21", "parent": "bone20", "length": 14.64, "rotation": -7.71, "x": 13.92 },
  26. { "name": "bone22", "parent": "bone21", "length": 13.23, "rotation": -1.14, "x": 14.64 },
  27. { "name": "bone23", "parent": "bone22", "length": 12.5, "rotation": 14.21, "x": 13.23 },
  28. { "name": "bone24", "parent": "bone5", "length": 12.24, "rotation": 174.77, "x": 32.81, "y": 26.52 },
  29. { "name": "bone25", "parent": "bone24", "length": 9.79, "x": 12.44, "y": 0.2 },
  30. { "name": "bone26", "parent": "bone25", "length": 9.46, "rotation": -7.43, "x": 9.79 },
  31. { "name": "bone27", "parent": "bone26", "length": 8.78, "rotation": 4.77, "x": 9.67, "y": 0.03 },
  32. { "name": "bone28", "parent": "bone27", "length": 8.2, "rotation": 8.37, "x": 9.19, "y": 0.02 },
  33. { "name": "bone29", "parent": "bone", "length": 18.95, "rotation": 105.26, "x": -71.27, "y": 139.8 },
  34. { "name": "bone30", "parent": "bone", "length": 27.7, "rotation": 106.26, "x": 82.75, "y": 92.15 },
  35. { "name": "bone31", "parent": "bone", "length": 37.67, "rotation": 90, "x": 80.53, "y": 158.63 },
  36. { "name": "bone41", "parent": "bone5", "length": 8.31, "rotation": -160.55, "x": 12.13, "y": -40.94 },
  37. { "name": "bone42", "parent": "bone41", "length": 9.22, "rotation": 0.19, "x": 8.31, "y": -0.12 },
  38. { "name": "bone43", "parent": "bone42", "length": 6.33, "rotation": -9.93, "x": 9.22 },
  39. { "name": "bone44", "parent": "bone43", "length": 7.37, "rotation": -10.17, "x": 6.33 },
  40. { "name": "bone45", "parent": "bone44", "length": 5.3, "rotation": -20.41, "x": 7.37 },
  41. { "name": "bone46", "parent": "bone4", "length": 22.09, "rotation": -132.23, "x": 12.8, "y": -13.47 },
  42. { "name": "bone47", "parent": "bone46", "length": 16.02, "rotation": 4.17, "x": 22.09 },
  43. { "name": "bone48", "parent": "bone47", "length": 12.71, "rotation": -4.15, "x": 16.02 },
  44. { "name": "bone49", "parent": "bone4", "length": 15, "rotation": 150.68, "x": 12.21, "y": 4, "color": "2760ffff" },
  45. { "name": "bone50", "parent": "bone49", "length": 18, "rotation": -2.97, "x": 17.86, "y": -0.65, "color": "2760ffff" },
  46. { "name": "bone51", "parent": "bone50", "length": 12, "rotation": -2.13, "x": 19.75, "y": -0.81, "color": "2760ffff" },
  47. { "name": "bone52", "parent": "bone2", "length": 8.38, "rotation": -103.24, "x": -5, "y": -4.08 },
  48. { "name": "bone53", "parent": "bone52", "length": 7.16, "rotation": 2.94, "x": 8.38 },
  49. { "name": "bone54", "parent": "bone53", "length": 10.05, "rotation": -3.51, "x": 7.34, "y": -0.13 },
  50. { "name": "bone55", "parent": "bone2", "length": 12.39, "rotation": -39.24, "x": 14.44, "y": -0.2 },
  51. { "name": "bone56", "parent": "bone55", "length": 11.12, "rotation": -1.1, "x": 12.39 },
  52. { "name": "bone57", "parent": "bone56", "length": 10.43, "rotation": -0.94, "x": 11.12 },
  53. { "name": "bone58", "parent": "bone2", "length": 17.28, "rotation": -91.06, "x": -5.58, "y": -24.43, "color": "3663f0ff" },
  54. { "name": "bone59", "parent": "bone58", "length": 15.2, "rotation": 2.27, "x": 18.56, "y": 0.09, "color": "3663f0ff" },
  55. { "name": "bone60", "parent": "bone59", "length": 11.89, "rotation": -80.35, "x": 19.52, "y": 0.02, "color": "3663f0ff" },
  56. { "name": "bone61", "parent": "bone2", "length": 16.33, "rotation": -88.32, "x": 12.36, "y": -23.31, "color": "ffffffff" },
  57. { "name": "bone62", "parent": "bone61", "length": 17.77, "rotation": -0.14, "x": 18.89, "y": -0.08, "color": "ffffffff" },
  58. { "name": "bone63", "parent": "bone62", "length": 10.67, "rotation": -78.55, "x": 22.28, "y": 1.16, "color": "ffffffff" },
  59. { "name": "bone64", "parent": "bone51", "length": 23.31, "rotation": -91.83, "x": 12.15, "y": 0.75, "color": "2760ffff" },
  60. { "name": "bone65", "parent": "bone2", "length": 14.88, "rotation": 87.98, "x": -1.65, "y": -3.54 },
  61. { "name": "bone66", "parent": "bone5", "length": 22.01, "rotation": -16.36, "x": 72.46, "y": -22.39 },
  62. { "name": "bone67", "parent": "bone5", "length": 5.81, "rotation": -5.23, "x": 17.8, "y": 6.36 },
  63. { "name": "bone68", "parent": "bone5", "length": 13.51, "rotation": -7.23, "x": 15.98, "y": -10.03 },
  64. { "name": "bone69", "parent": "bone5", "length": 10.07, "rotation": -1.65, "x": 19.2, "y": 18.21 },
  65. { "name": "bone70", "parent": "bone5", "length": 7.38, "rotation": -5.23, "x": 35.28, "y": 4.44 },
  66. { "name": "bone71", "parent": "bone5", "length": 9.3, "rotation": -0.39, "x": 3.98, "y": 5.26 }
  67. ],
  68. "slots": [
  69. { "name": "toufa6", "bone": "bone5", "attachment": "toufa6" },
  70. { "name": "toufa7", "bone": "bone24", "attachment": "toufa7" },
  71. { "name": "toufa5", "bone": "bone41", "attachment": "toufa5" },
  72. { "name": "zuoshou", "bone": "bone49", "attachment": "zuoshou" },
  73. { "name": "maikefeng", "bone": "bone64", "attachment": "maikefeng" },
  74. { "name": "youtui", "bone": "bone61", "attachment": "youtui" },
  75. { "name": "zuotui", "bone": "bone58", "attachment": "zuotui" },
  76. { "name": "yifu4", "bone": "bone54", "attachment": "yifu4" },
  77. { "name": "yifu3", "bone": "bone53", "attachment": "yifu3" },
  78. { "name": "yifu2", "bone": "bone52", "attachment": "yifu2" },
  79. { "name": "yifu1", "bone": "bone55", "attachment": "yifu1" },
  80. { "name": "shenti2", "bone": "bone3", "attachment": "shenti2" },
  81. { "name": "caidai", "bone": "bone65", "attachment": "caidai" },
  82. { "name": "youshou", "bone": "bone46", "attachment": "youshou" },
  83. { "name": "lian", "bone": "bone5", "attachment": "lian" },
  84. { "name": "xiao", "bone": "bone71", "attachment": "xiao" },
  85. { "name": "zuiba", "bone": "bone71" },
  86. { "name": "zuoyan", "bone": "bone69", "attachment": "zuoyan" },
  87. { "name": "youyan", "bone": "bone68", "attachment": "youyan" },
  88. { "name": "biyan", "bone": "bone67" },
  89. { "name": "meimao", "bone": "bone70", "attachment": "meimao" },
  90. { "name": "toufa4", "bone": "bone6", "attachment": "toufa4" },
  91. { "name": "toufa3", "bone": "bone10", "attachment": "toufa3" },
  92. { "name": "toufa2", "bone": "bone14", "attachment": "toufa2" },
  93. { "name": "toufa1", "bone": "bone18", "attachment": "toufa1" },
  94. { "name": "maozi", "bone": "bone66", "attachment": "maozi" },
  95. { "name": "yin1", "bone": "bone31", "attachment": "yin1" },
  96. { "name": "yin2", "bone": "bone29", "attachment": "yin2" },
  97. { "name": "yin3", "bone": "bone30", "attachment": "yin3" }
  98. ],
  99. "skins": {
  100. "default": {
  101. "biyan": {
  102. "biyan": { "x": 3.19, "y": -3.81, "rotation": -90, "width": 48, "height": 10 }
  103. },
  104. "caidai": {
  105. "caidai": { "x": 1.95, "y": -1.33, "rotation": -87.98, "width": 26, "height": 26 }
  106. },
  107. "lian": {
  108. "lian": { "x": 28.23, "y": -7.96, "rotation": -95.23, "width": 77, "height": 63 }
  109. },
  110. "maikefeng": {
  111. "maikefeng": {
  112. "type": "mesh",
  113. "uvs": [ 0.6461, 0.15978, 0.64843, 0.35002, 1, 0.69878, 1, 0.89128, 0.87476, 1, 0.7231, 1, 0.31477, 0.61952, 0, 0.5244, 0, 0.15978, 0.1211, 0, 0.49677, 0 ],
  114. "triangles": [ 6, 7, 8, 10, 8, 9, 1, 6, 10, 1, 10, 0, 10, 6, 8, 5, 6, 1, 1, 2, 5, 2, 4, 5, 3, 4, 2 ],
  115. "vertices": [ 15.3, -12.1, 10.95, -7.31, -5.6, -6.16, -9.95, -1.27, -9.32, 4.24, -5.58, 7.57, 13.09, 6.85, 23, 11.34, 31.24, 2.07, 31.86, -4.65, 22.59, -12.88 ],
  116. "hull": 11,
  117. "edges": [ 4, 2, 2, 0, 0, 20, 14, 12, 12, 10, 4, 6, 8, 10, 6, 8, 14, 16, 18, 20, 16, 18 ],
  118. "width": 33,
  119. "height": 34
  120. }
  121. },
  122. "maozi": {
  123. "maozi": {
  124. "type": "mesh",
  125. "uvs": [ 1, 0.27065, 1, 0.52463, 0.86579, 1, 0.60843, 1, 0.32172, 0.88697, 0.27657, 0.67363, 0.09185, 0.61482, 0, 0.58558, 0, 0, 0.49616, 0, 0.71002, 0, 0.3327, 0.2674, 0.13825, 0.15326, 0.63143, 0.59713 ],
  126. "triangles": [ 12, 8, 9, 11, 12, 9, 11, 9, 10, 13, 11, 10, 10, 0, 13, 7, 8, 12, 6, 7, 12, 1, 13, 0, 11, 6, 12, 11, 5, 6, 13, 5, 11, 4, 5, 13, 3, 4, 13, 2, 13, 1, 3, 13, 2 ],
  127. "vertices": [ 19.77, -31.95, 8.8, -34.11, -13.43, -29.45, -16.71, -12.79, -15.48, 6.74, -6.85, 11.48, -6.66, 23.94, -6.57, 30.13, 18.71, 35.11, 25.03, 2.98, 27.76, -10.87, 11.41, 11.29, 13.86, 24.85, 0.98, -10.86 ],
  128. "hull": 11,
  129. "edges": [ 14, 16, 10, 8, 8, 6, 4, 6, 4, 2, 2, 0, 0, 20, 10, 22, 22, 20, 10, 12, 12, 14, 12, 24, 16, 18, 18, 20, 24, 18 ],
  130. "width": 66,
  131. "height": 44
  132. }
  133. },
  134. "meimao": {
  135. "meimao": { "x": 1.61, "y": -2.49, "rotation": -90, "width": 42, "height": 8 }
  136. },
  137. "shenti2": {
  138. "shenti2": {
  139. "type": "mesh",
  140. "uvs": [ 1, 0.33575, 1, 0.76045, 0.72493, 1, 0.62418, 1, 0.37618, 0.82555, 0, 0.91855, 0.0645, 0.36779, 0.4343, 0, 0.5327, 0, 0.79468, 0, 0.89155, 0.54655, 0.89543, 0.69535, 0.39328, 0.51461, 0.4469, 0.30583, 0.75078, 0.50889, 0.75078, 0.28867, 0.2035, 0.56312, 0.29702, 0.56828, 0.3325, 0.24578 ],
  141. "triangles": [ 15, 8, 9, 13, 7, 8, 13, 8, 15, 18, 7, 13, 15, 9, 0, 18, 6, 7, 10, 14, 15, 13, 15, 14, 12, 18, 13, 16, 6, 18, 0, 10, 15, 1, 10, 0, 12, 13, 14, 18, 17, 16, 12, 17, 18, 1, 11, 10, 4, 17, 12, 5, 6, 16, 4, 5, 16, 4, 16, 17, 14, 4, 12, 14, 2, 3, 11, 14, 10, 3, 4, 14, 11, 2, 14, 2, 11, 1 ],
  142. "vertices": [ 2, 3, 25.53, -20.93, 0.1771, 4, 11.14, -20.87, 0.8229, 2, 3, 4.38, -22.81, 0.79497, 4, -10, -22.86, 0.20503, 2, 3, -8.53, -12.91, 0.99251, 4, -22.96, -13.03, 0.00749, 2, 3, -8.89, -8.89, 0.99886, 4, -23.34, -9.02, 0.00114, 1, 3, -1.08, 1.76, 1, 1, 3, -7.04, 16.34, 1, 2, 3, 20.62, 16.21, 0.32464, 4, 6.03, 16.24, 0.67536, 1, 4, 25.73, 3.24, 1, 2, 3, 40.59, -0.82, 5.0E-5, 4, 26.1, -0.68, 0.99995, 2, 3, 41.52, -11.26, 1.9E-4, 4, 27.08, -11.11, 0.99981, 2, 3, 14.64, -17.54, 0.49823, 4, 0.24, -17.54, 0.50177, 2, 3, 7.25, -18.35, 0.75381, 4, -7.15, -18.39, 0.24619, 2, 3, 14.47, 2.46, 0.63247, 4, -0.04, 2.46, 0.36753, 2, 3, 25.06, 1.24, 0.36572, 4, 10.55, 1.3, 0.63428, 2, 3, 16.02, -11.76, 0.50211, 4, 1.58, -11.75, 0.49789, 2, 3, 26.99, -10.79, 0.28868, 4, 12.55, -10.72, 0.71132, 2, 3, 11.38, 9.8, 0.62859, 4, -3.17, 9.79, 0.37141, 2, 3, 11.46, 6.05, 0.66538, 4, -3.08, 6.04, 0.33462, 2, 3, 27.64, 6.07, 0.26371, 4, 13.11, 6.14, 0.73629 ],
  143. "hull": 10,
  144. "edges": [ 12, 14, 0, 20, 20, 22, 0, 2, 22, 2, 10, 12, 10, 8, 8, 6, 4, 6, 4, 2, 18, 0, 8, 24, 24, 26, 14, 16, 16, 18, 26, 16, 4, 28, 28, 30, 30, 18, 32, 34, 34, 36 ],
  145. "width": 40,
  146. "height": 50
  147. }
  148. },
  149. "toufa1": {
  150. "toufa1": {
  151. "type": "mesh",
  152. "uvs": [ 0.81897, 0.12566, 1, 0.19691, 1, 0.30904, 0.99506, 0.38641, 0.97021, 0.49449, 0.89236, 0.59649, 0.76551, 0.69172, 0.67408, 0.76037, 0.49843, 0.8617, 0.49547, 0.91989, 0.49139, 1, 0.28879, 1, 0.19139, 1, 0.08794, 0.8954, 0.12519, 0.77225, 0.19304, 0.70136, 0.2545, 0.63716, 0.30666, 0.56839, 0.3586, 0.50037, 0.41339, 0.42873, 0.39855, 0.35645, 0.38272, 0.30914, 0.36167, 0.24625, 0.18263, 0.16557, 0, 0.08328, 0.38313, 0, 0.60229, 0.04036, 0.63917, 0.18328, 0.7273, 0.33728, 0.73848, 0.40264, 0.58641, 0.59182, 0.52062, 0.66564, 0.31238, 0.82591, 0.52758, 0.1034, 0.69149, 0.24925, 0.66401, 0.49646, 0.42703, 0.73767, 0.30081, 0.91131 ],
  153. "triangles": [ 37, 32, 8, 13, 14, 37, 9, 37, 8, 12, 13, 37, 11, 12, 37, 10, 37, 9, 11, 37, 10, 15, 16, 36, 36, 31, 7, 32, 15, 36, 14, 15, 32, 8, 36, 7, 32, 36, 8, 37, 14, 32, 17, 18, 30, 30, 35, 5, 31, 17, 30, 16, 17, 31, 6, 30, 5, 31, 30, 6, 36, 16, 31, 7, 31, 6, 35, 19, 29, 35, 29, 4, 18, 19, 35, 30, 18, 35, 5, 35, 4, 2, 28, 1, 20, 34, 28, 3, 28, 2, 29, 28, 3, 19, 20, 28, 19, 28, 29, 4, 29, 3, 33, 25, 26, 23, 24, 25, 23, 25, 33, 27, 26, 0, 33, 26, 27, 22, 23, 33, 22, 33, 27, 34, 27, 0, 34, 0, 1, 28, 34, 1, 21, 22, 27, 21, 27, 34, 20, 21, 34 ],
  154. "vertices": [ 2, 18, -0.86, 6.92, 0.95243, 19, -16.25, 3.3, 0.04757, 2, 18, 7.21, 10.41, 0.55057, 19, -9.12, 8.45, 0.44943, 1, 19, 1.98, 8.29, 1, 2, 19, 9.64, 8.03, 0.92784, 20, -5.99, 6.96, 0.07216, 3, 19, 20.33, 7.16, 0.05953, 20, 4.65, 8.29, 0.94005, 21, -10.3, 6.97, 4.2E-4, 2, 20, 14.99, 7.99, 0.47183, 21, -0.01, 8.07, 0.52817, 2, 21, 10.1, 7.6, 0.93314, 22, -4.7, 7.51, 0.06686, 2, 21, 17.39, 7.27, 0.25866, 22, 2.6, 7.32, 0.74134, 2, 22, 13.76, 5.93, 0.33458, 23, 1.97, 5.62, 0.66542, 2, 22, 19.21, 7.81, 0.00215, 23, 7.71, 6.1, 0.99785, 1, 23, 15.62, 6.76, 1, 1, 23, 16.19, 0.91, 1, 1, 23, 16.47, -1.9, 1, 2, 22, 20.94, -4.13, 0.00138, 23, 6.46, -5.9, 0.99862, 3, 21, 23.6, -7.43, 0.00628, 22, 9.1, -7.25, 0.95594, 23, -5.78, -6.02, 0.03778, 2, 21, 16.32, -7.82, 0.35718, 22, 1.83, -7.78, 0.64282, 3, 20, 22.47, -9.4, 0.02064, 21, 9.73, -8.17, 0.89961, 22, -4.75, -8.26, 0.07975, 2, 20, 15.5, -9.21, 0.33804, 21, 2.8, -8.92, 0.66196, 3, 19, 20.65, -10.58, 0.02383, 20, 8.6, -9.01, 0.85635, 21, -4.07, -9.65, 0.11983, 4, 18, 25.65, -11.41, 0.01573, 19, 13.58, -8.89, 0.42929, 20, 1.34, -8.81, 0.55477, 21, -11.29, -10.41, 2.1E-4, 3, 18, 18.59, -10.19, 0.24579, 19, 6.42, -9.22, 0.69753, 20, -5.61, -10.59, 0.05668, 3, 18, 13.92, -9.56, 0.62695, 19, 1.73, -9.61, 0.37096, 20, -10.12, -11.93, 0.00209, 2, 18, 7.72, -8.73, 0.97231, 19, -4.5, -10.13, 0.02769, 1, 18, -1.24, -11.95, 1, 1, 18, -10.39, -15.24, 1, 1, 18, -15.87, -2.54, 1, 1, 18, -10.52, 2.73, 1, 2, 18, 3.5, 0.53, 0.99525, 19, -10.62, -1.99, 0.00475, 1, 19, 4.66, 0.34, 1, 1, 19, 11.14, 0.57, 1, 2, 20, 16.23, -0.8, 0.01175, 21, 2.39, -0.49, 0.98825, 1, 21, 9.93, 0.05, 1, 2, 22, 12.26, -0.35, 0.9712, 23, -1.02, -0.1, 0.0288, 1, 18, -4.94, -0.8, 1, 2, 18, 10.2, 0.52, 0.96275, 19, -4.07, -0.57, 0.03725, 3, 19, 20.39, -1.72, 1.2E-4, 20, 6.53, -0.39, 0.99983, 21, -7.27, -1.38, 5.0E-5, 2, 21, 17.55, -0.24, 0.00179, 22, 2.91, -0.18, 0.99821, 1, 23, 7.42, 0.4, 1 ],
  155. "hull": 27,
  156. "edges": [ 56, 58, 60, 62, 50, 52, 28, 26, 22, 24, 26, 24, 2, 4, 8, 10, 14, 16, 20, 22, 48, 50, 44, 54, 2, 0, 0, 52, 54, 0, 44, 46, 46, 48, 50, 66, 66, 54, 46, 66, 66, 52, 42, 44, 54, 68, 68, 56, 42, 68, 38, 40, 40, 42, 40, 56, 56, 4, 68, 2, 38, 58, 4, 6, 6, 8, 58, 6, 36, 38, 58, 70, 70, 60, 36, 70, 70, 8, 32, 34, 34, 36, 34, 60, 60, 10, 32, 62, 10, 12, 12, 14, 62, 12, 28, 30, 30, 32, 62, 72, 72, 64, 30, 72, 72, 14, 28, 64, 64, 16, 22, 74, 74, 64, 26, 74, 16, 18, 18, 20, 74, 18 ],
  157. "width": 29,
  158. "height": 99
  159. }
  160. },
  161. "toufa2": {
  162. "toufa2": {
  163. "type": "mesh",
  164. "uvs": [ 0.8457, 0.2148, 0.90043, 0.31912, 0.95206, 0.41752, 0.97571, 0.53622, 1, 0.65815, 1, 0.76034, 1, 0.85263, 1, 1, 0.7046, 1, 0.46365, 1, 0.24875, 0.92186, 0.10548, 0.76693, 0.05853, 0.65689, 0, 0.51971, 0, 0.40269, 0, 0.28567, 0, 0, 0.56567, 0, 0.70243, 0, 0.51792, 0.2593, 0.52009, 0.48015, 0.5418, 0.73891, 0.51892, 0.36152, 0.53058, 0.60522, 0.60887, 0.84647, 0.66864, 0.94234 ],
  165. "triangles": [ 4, 21, 23, 24, 21, 4, 5, 24, 4, 25, 24, 5, 10, 11, 21, 10, 21, 24, 6, 25, 5, 9, 10, 24, 9, 24, 25, 8, 25, 6, 9, 25, 8, 8, 6, 7, 20, 1, 2, 13, 14, 20, 3, 23, 20, 3, 20, 2, 12, 13, 20, 12, 20, 23, 4, 23, 3, 11, 12, 23, 21, 11, 23, 15, 19, 22, 22, 0, 1, 14, 15, 22, 20, 22, 1, 14, 22, 20, 19, 16, 17, 19, 17, 18, 19, 18, 0, 15, 16, 19, 22, 19, 0 ],
  166. "vertices": [ 4, 14, 6.05, 12.9, 0.81717, 15, -3.36, 13.35, 0.16721, 16, -12.29, 14.72, 0.01503, 17, -20.59, 22.39, 6.0E-4, 4, 14, 11.33, 15.88, 0.52171, 15, 2.23, 15.7, 0.35801, 16, -6.49, 16.47, 0.10427, 17, -14.53, 22.22, 0.01602, 4, 14, 16.31, 18.69, 0.29442, 15, 7.5, 17.92, 0.38393, 16, -1.01, 18.13, 0.25195, 17, -8.82, 22.05, 0.0697, 4, 14, 22.54, 20.5, 0.13075, 15, 13.89, 19.02, 0.26754, 16, 5.46, 18.55, 0.38225, 17, -2.55, 20.4, 0.21947, 4, 14, 28.93, 22.37, 0.04445, 15, 20.45, 20.14, 0.12738, 16, 12.1, 18.98, 0.33818, 17, 3.89, 18.71, 0.48999, 4, 14, 34.4, 23.1, 0.01376, 15, 25.97, 20.25, 0.05374, 16, 17.6, 18.51, 0.1992, 17, 8.96, 16.52, 0.73331, 4, 14, 39.34, 23.77, 0.00276, 15, 30.95, 20.35, 0.01726, 16, 22.57, 18.08, 0.07673, 17, 13.53, 14.54, 0.90325, 3, 15, 38.91, 20.5, 3.5E-4, 16, 30.49, 17.4, 0.00412, 17, 20.84, 11.39, 0.99554, 1, 17, 16.04, 0.27, 1, 2, 16, 28.62, -4.51, 0.0101, 17, 12.12, -8.8, 0.9899, 3, 15, 35.29, -10.37, 0.00261, 16, 23.66, -12.93, 0.22248, 17, 4.76, -15.22, 0.77491, 3, 15, 27.04, -16.41, 0.0731, 16, 14.82, -18.07, 0.57554, 17, -5.25, -17.29, 0.35136, 3, 15, 21.14, -18.45, 0.20036, 16, 8.74, -19.48, 0.64594, 17, -11.47, -16.7, 0.1537, 4, 14, 26.99, -19.26, 0.00577, 15, 13.78, -21, 0.43079, 16, 1.15, -21.24, 0.53005, 17, -19.22, -15.97, 0.03339, 4, 14, 20.73, -20.11, 0.04924, 15, 7.46, -21.12, 0.59342, 16, -5.14, -20.7, 0.35248, 17, -25.03, -13.47, 0.00486, 3, 14, 14.46, -20.95, 0.16905, 15, 1.14, -21.24, 0.65874, 16, -11.44, -20.16, 0.17221, 3, 14, -0.82, -23.01, 0.47673, 15, -14.28, -21.55, 0.51638, 16, -26.81, -18.84, 0.0069, 2, 14, -3.92, -0.02, 0.99672, 15, -14.73, 1.64, 0.00328, 1, 14, -4.67, 5.54, 1, 2, 14, 10.22, -0.09, 0.99998, 16, -11.04, 1.12, 2.0E-5, 3, 14, 22.03, 1.59, 7.9E-4, 16, 0.85, 0.19, 0.99917, 17, -12.73, 4.45, 4.0E-5, 2, 16, 14.84, -0.11, 0.07368, 17, 0.45, -0.27, 0.92632, 2, 14, 15.68, 0.68, 0.0015, 15, 4.82, 0.11, 0.9985, 4, 14, 28.66, 2.91, 4.0E-5, 15, 17.97, 0.84, 1.7E-4, 16, 7.61, 0.04, 0.99971, 17, -6.36, 2.17, 8.0E-5, 1, 17, 6.87, -0.05, 1, 1, 17, 12.6, 0.15, 1 ],
  167. "hull": 19,
  168. "edges": [ 32, 34, 34, 38, 14, 16, 34, 36, 36, 0, 22, 20, 16, 18, 20, 18, 30, 32, 30, 38, 38, 0, 26, 28, 28, 30, 38, 44, 44, 40, 28, 44, 0, 2, 2, 4, 44, 2, 26, 40, 40, 4, 22, 24, 24, 26, 40, 46, 46, 42, 24, 46, 4, 6, 6, 8, 46, 6, 22, 42, 42, 8, 48, 42, 20, 48, 8, 10, 48, 10, 16, 50, 50, 48, 18, 50, 10, 12, 12, 14, 50, 12 ],
  169. "width": 41,
  170. "height": 54
  171. }
  172. },
  173. "toufa3": {
  174. "toufa3": {
  175. "type": "mesh",
  176. "uvs": [ 1, 0.22627, 0.95506, 0.33839, 0.89996, 0.47588, 0.8591, 0.57412, 0.82921, 0.64597, 0.78996, 0.74031, 0.76163, 0.82781, 0.77394, 0.90261, 0.78996, 1, 0.60205, 1, 0.4233, 1, 0.1208, 0.83761, 0.05359, 0.73876, 0, 0.65992, 0, 0.55859, 0, 0.44204, 0.0933, 0.28127, 0.23997, 0.15435, 0.48288, 0, 0.69371, 0, 1, 0, 0.4783, 0.20723, 0.35913, 0.49492, 0.37538, 0.77358, 0.64414, 0.04795, 0.40485, 0.35415, 0.36265, 0.67687, 0.36093, 0.58815, 0.48219, 0.88027 ],
  177. "triangles": [ 23, 26, 5, 6, 23, 5, 11, 12, 23, 28, 23, 6, 11, 23, 28, 28, 6, 7, 10, 11, 28, 9, 28, 7, 10, 28, 9, 9, 7, 8, 14, 15, 22, 4, 27, 22, 14, 22, 27, 3, 4, 22, 13, 14, 27, 5, 26, 27, 13, 27, 26, 12, 13, 26, 4, 5, 27, 12, 26, 23, 16, 17, 25, 25, 21, 2, 22, 16, 25, 15, 16, 22, 3, 25, 2, 22, 25, 3, 24, 18, 19, 21, 17, 18, 21, 18, 24, 19, 20, 0, 24, 19, 0, 1, 24, 0, 21, 24, 1, 25, 17, 21, 2, 21, 1 ],
  178. "vertices": [ 3, 10, 3.02, 11.61, 0.86166, 11, -4.5, 13.11, 0.12967, 12, -12.85, 16.55, 0.00868, 3, 10, 8.75, 13.11, 0.55125, 11, 1.43, 13.16, 0.37306, 12, -7.08, 15.22, 0.07569, 4, 10, 15.79, 14.94, 0.16533, 11, 8.7, 13.22, 0.45827, 12, 0.01, 13.58, 0.36356, 13, -7.48, 18.08, 0.01285, 4, 10, 20.83, 16.22, 0.0427, 11, 13.9, 13.22, 0.24909, 12, 5.07, 12.38, 0.62557, 13, -3.32, 14.96, 0.08264, 4, 10, 24.52, 17.15, 0.01021, 11, 17.71, 13.22, 0.10453, 12, 8.77, 11.5, 0.66477, 13, -0.28, 12.67, 0.22049, 4, 10, 29.36, 18.38, 2.2E-4, 11, 22.7, 13.23, 0.01639, 12, 13.63, 10.35, 0.41516, 13, 3.72, 9.67, 0.56823, 3, 11, 27.3, 13.42, 4.0E-4, 12, 18.15, 9.47, 0.10337, 13, 7.51, 7.06, 0.89623, 2, 12, 22.05, 9.6, 0.00812, 13, 11.13, 5.62, 0.99188, 1, 13, 15.85, 3.74, 1, 1, 13, 13.87, -0.31, 1, 1, 13, 11.98, -4.17, 1, 2, 12, 17.99, -5.91, 0.24991, 13, 1.21, -6.98, 0.75009, 2, 12, 12.78, -7.3, 0.84014, 13, -4.12, -6.17, 0.15986, 3, 11, 22.19, -6.18, 2.9E-4, 12, 8.63, -8.41, 0.99331, 13, -8.36, -5.53, 0.00639, 2, 11, 17.02, -7.18, 0.09684, 12, 3.37, -8.18, 0.90316, 2, 11, 11.07, -8.33, 0.62426, 12, -2.69, -7.92, 0.37574, 3, 10, 14.83, -6.88, 0.12215, 11, 2.43, -7.71, 0.87595, 12, -10.94, -5.32, 0.0019, 2, 10, 7.36, -6.49, 0.88655, 11, -4.71, -5.51, 0.11345, 1, 10, -2.38, -4.61, 1, 1, 10, -4.52, -0.03, 1, 1, 10, -7.64, 6.63, 1, 1, 10, 7.43, -0.14, 1, 4, 10, 22.19, 3.61, 5.5E-4, 11, 12.13, 0.66, 0.20152, 12, 0.43, 0.57, 0.79789, 13, -12.29, 5.98, 3.0E-5, 1, 13, 0.9, -0.03, 1, 1, 10, -1.76, -0.05, 1, 3, 10, 15.09, 1.5, 0.00509, 11, 4.74, 0.35, 0.99401, 12, -6.83, 1.99, 9.0E-4, 3, 11, 21.41, 2.53, 9.0E-5, 12, 9.89, 0.25, 0.99755, 13, -3.75, 1.9, 0.00236, 4, 10, 26.56, 5.7, 6.0E-5, 11, 16.88, 1.62, 0.00144, 12, 5.28, 0.41, 0.99768, 13, -7.91, 3.89, 8.1E-4, 1, 13, 7.01, -0.16, 1 ],
  179. "hull": 21,
  180. "edges": [ 38, 40, 36, 38, 36, 34, 34, 32, 32, 30, 18, 20, 22, 20, 0, 40, 10, 12, 16, 18, 38, 48, 48, 42, 36, 48, 48, 0, 34, 42, 0, 2, 2, 4, 42, 2, 42, 50, 50, 44, 4, 50, 30, 44, 4, 6, 44, 6, 52, 46, 26, 52, 52, 10, 22, 24, 24, 26, 24, 46, 46, 12, 26, 28, 28, 30, 44, 54, 54, 52, 28, 54, 6, 8, 8, 10, 54, 8, 18, 56, 56, 46, 22, 56, 12, 14, 14, 16, 56, 14 ],
  181. "width": 24,
  182. "height": 52
  183. }
  184. },
  185. "toufa4": {
  186. "toufa4": {
  187. "type": "mesh",
  188. "uvs": [ 1, 0.2496, 0.94253, 0.31298, 0.86152, 0.40231, 0.78817, 0.52952, 0.6699, 0.61991, 0.62014, 0.64555, 0.55222, 0.68054, 0.53876, 0.73128, 0.52169, 0.79564, 0.53897, 0.89271, 0.56054, 1, 0.31635, 1, 0, 1, 0, 0.86725, 1.0E-5, 0.72386, 0.00101, 0.61726, 0.00228, 0.4807, 0.04091, 0.38913, 0.08325, 0.28878, 0.18592, 0.17778, 0.333, 0.07984, 0.42135, 0.03445, 0.48839, 0, 0.66044, 0, 1, 0, 0.2618, 0.56035, 0.26157, 0.7445, 0.61448, 0.04269, 0.49411, 0.15449, 0.41381, 0.27137, 0.33195, 0.40539, 0.29964, 0.88536, 0.26165, 0.67575, 0.29092, 0.49601, 0.55586, 0.09713 ],
  189. "triangles": [ 26, 14, 32, 26, 32, 7, 8, 26, 7, 13, 14, 26, 31, 26, 8, 13, 26, 31, 31, 8, 9, 12, 13, 31, 11, 31, 9, 12, 31, 11, 11, 9, 10, 25, 16, 17, 15, 16, 25, 6, 25, 33, 32, 15, 25, 6, 32, 25, 14, 15, 32, 7, 32, 6, 30, 19, 29, 18, 19, 30, 17, 18, 30, 33, 17, 30, 4, 30, 29, 33, 25, 17, 5, 33, 30, 4, 5, 30, 33, 5, 6, 27, 22, 23, 34, 22, 27, 21, 22, 34, 28, 21, 34, 20, 21, 28, 23, 24, 0, 27, 23, 0, 29, 20, 28, 19, 20, 29, 1, 27, 0, 34, 27, 1, 2, 34, 1, 28, 34, 2, 2, 29, 28, 3, 29, 2, 3, 4, 29 ],
  190. "vertices": [ 3, 6, -5.39, 19.67, 0.83775, 7, -8.44, 24.23, 0.15011, 8, -15.42, 27.43, 0.01214, 3, 6, -1.42, 19.71, 0.75722, 7, -4.72, 22.87, 0.21717, 8, -12, 25.42, 0.0256, 3, 6, 4.17, 19.77, 0.55431, 7, 0.53, 20.94, 0.37162, 8, -7.18, 22.58, 0.07407, 4, 6, 11.14, 21.21, 0.28716, 7, 7.56, 19.82, 0.51768, 8, -0.46, 20.22, 0.18849, 9, -5.68, 21.78, 0.00667, 4, 6, 17.65, 20.1, 0.12006, 7, 13.26, 16.47, 0.48096, 8, 4.54, 15.91, 0.33406, 9, -1.63, 16.56, 0.06491, 4, 6, 19.88, 19.26, 0.07637, 7, 15.04, 14.89, 0.41432, 8, 6.01, 14.04, 0.38765, 9, -0.56, 14.44, 0.12166, 4, 6, 22.92, 18.11, 0.02654, 7, 17.48, 12.74, 0.24878, 8, 8.03, 11.49, 0.41802, 9, 0.91, 11.54, 0.30666, 4, 6, 25.33, 19.19, 0.00662, 7, 20.12, 12.9, 0.11697, 8, 10.65, 11.18, 0.31852, 9, 3.42, 10.71, 0.55788, 4, 6, 28.39, 20.57, 5.0E-4, 7, 23.46, 13.1, 0.03633, 8, 13.98, 10.78, 0.14697, 9, 6.61, 9.66, 0.8162, 3, 7, 28.06, 15.07, 0.00251, 8, 18.85, 11.9, 0.02034, 9, 11.61, 9.79, 0.97714, 1, 9, 17.14, 10.03, 1, 1, 9, 16.04, 0.33, 1, 1, 9, 14.62, -12.25, 1, 2, 8, 19.43, -9.69, 0.05498, 9, 7.89, -11.48, 0.94502, 3, 7, 25.42, -7.99, 0.00279, 8, 12.14, -10.33, 0.41459, 9, 0.62, -10.66, 0.58263, 3, 7, 20.16, -9.38, 0.07968, 8, 6.72, -10.76, 0.73146, 9, -4.77, -10.01, 0.18886, 3, 7, 13.43, -11.17, 0.45692, 8, -0.22, -11.31, 0.53588, 9, -11.69, -9.18, 0.00719, 3, 6, 22.93, -7.17, 0.00329, 7, 8.52, -10.9, 0.77334, 8, -5.01, -10.17, 0.22337, 3, 6, 17.8, -8.81, 0.0886, 7, 3.14, -10.62, 0.8775, 8, -10.25, -8.93, 0.0339, 2, 6, 10.8, -8.82, 0.5671, 7, -3.4, -8.15, 0.4329, 2, 6, 3.3, -7, 0.98943, 7, -9.77, -3.78, 0.01057, 1, 6, -0.65, -5.51, 1, 1, 6, -3.64, -4.37, 1, 2, 6, -7.69, 1.19, 0.99539, 7, -17.15, 7.78, 0.00461, 2, 6, -15.68, 12.18, 0.96674, 7, -20.72, 20.89, 0.03326, 1, 8, 2.93, -0.62, 1, 1, 9, 2.85, -0.38, 1, 2, 6, -4.85, 0.99, 0.99684, 7, -14.56, 6.58, 0.00316, 3, 6, 2.59, 0.45, 0.99706, 7, -7.79, 3.44, 0.00288, 8, -18.5, 6.85, 6.0E-5, 3, 6, 9.3, 1.36, 0.80954, 7, -1.2, 1.91, 0.18967, 8, -12.28, 4.17, 7.9E-4, 3, 6, 16.76, 2.73, 0.0015, 7, 6.26, 0.54, 0.99599, 8, -5.19, 1.49, 0.00252, 2, 8, 19.31, 2.33, 1.5E-4, 9, 10.16, 0.32, 0.99985, 2, 8, 8.79, -0.11, 0.96579, 9, -0.64, 0.01, 0.03421, 3, 6, 21.46, 4.12, 8.0E-5, 7, 11.15, 0.18, 0.843, 8, -0.44, 0.26, 0.15693, 3, 6, -1.23, 0.73, 0.99678, 7, -11.27, 5.05, 0.00322, 8, -21.63, 9.06, 1.0E-5 ],
  191. "hull": 25,
  192. "edges": [ 0, 48, 4, 6, 40, 38, 38, 36, 44, 46, 46, 48, 20, 22, 22, 24, 46, 54, 44, 54, 54, 0, 40, 56, 56, 4, 58, 6, 36, 60, 6, 8, 60, 8, 32, 50, 50, 12, 28, 52, 52, 16, 24, 26, 26, 28, 22, 62, 62, 52, 26, 62, 16, 18, 18, 20, 62, 18, 56, 58, 58, 60, 58, 38, 28, 30, 30, 32, 50, 64, 64, 52, 30, 64, 12, 14, 14, 16, 64, 14, 32, 34, 34, 36, 50, 66, 66, 60, 34, 66, 8, 10, 10, 12, 66, 10, 40, 42, 42, 44, 54, 68, 68, 56, 42, 68, 0, 2, 2, 4, 68, 2 ],
  193. "width": 40,
  194. "height": 51
  195. }
  196. },
  197. "toufa5": {
  198. "toufa5": {
  199. "type": "mesh",
  200. "uvs": [ 0.51926, 0.09104, 0.57611, 0.17345, 0.66414, 0.23177, 0.74665, 0.28643, 0.82205, 0.33638, 0.91102, 0.42178, 1, 0.5072, 1, 0.60889, 1, 0.68408, 1, 0.80857, 1, 0.92766, 0.4897, 0.94343, 0.52733, 0.8554, 0.56946, 0.75685, 0.55747, 0.69246, 0.54099, 0.60392, 0.46582, 0.5369, 0.40329, 0.47303, 0.28843, 0.39323, 0.18393, 0.32062, 0.11243, 0.26443, 0, 0.17608, 0, 0, 0.45646, 0, 0.37005, 0.22864, 0.57611, 0.42836, 0.70076, 0.57782, 0.74228, 0.73057, 0.63593, 0.93817, 0.42814, 0.28494, 0.49167, 0.34651, 0.62605, 0.50075, 0.72446, 0.66503, 0.68106, 0.85008, 0.21388, 0.13215 ],
  201. "triangles": [ 11, 28, 10, 11, 12, 28, 28, 33, 10, 28, 12, 33, 33, 9, 10, 12, 13, 33, 33, 27, 9, 33, 13, 27, 27, 8, 9, 13, 32, 27, 13, 14, 32, 27, 32, 8, 14, 26, 32, 14, 15, 26, 32, 7, 8, 32, 26, 7, 26, 6, 7, 15, 31, 26, 15, 16, 31, 26, 5, 6, 26, 31, 5, 16, 25, 31, 16, 17, 25, 31, 4, 5, 31, 25, 4, 17, 30, 25, 17, 18, 30, 25, 3, 4, 25, 30, 3, 18, 29, 30, 18, 19, 29, 30, 2, 3, 30, 29, 2, 19, 24, 29, 19, 20, 24, 29, 1, 2, 29, 24, 1, 20, 34, 24, 20, 21, 34, 24, 0, 1, 24, 34, 0, 21, 22, 34, 34, 23, 0, 34, 22, 23 ],
  202. "vertices": [ 1, 32, 3.78, 4.89, 1, 2, 32, 7.41, 4.29, 0.97668, 33, -0.89, 4.41, 0.02332, 2, 32, 10.31, 4.6, 0.5815, 33, 2.02, 4.71, 0.4185, 3, 32, 13.03, 4.9, 0.1976, 33, 4.74, 5, 0.78005, 34, -5.27, 4.15, 0.02236, 3, 32, 15.52, 5.16, 0.05178, 33, 7.23, 5.26, 0.76834, 34, -2.87, 4.83, 0.17988, 4, 32, 19.48, 5.01, 9.5E-4, 33, 11.2, 5.08, 0.2294, 34, 1.07, 5.35, 0.75752, 35, -6.13, 4.34, 0.01214, 3, 33, 15.16, 4.91, 0.00522, 34, 5.01, 5.86, 0.75833, 35, -2.34, 5.54, 0.23645, 3, 34, 9.23, 4.74, 0.1731, 35, 2.02, 5.18, 0.82619, 36, -6.82, 2.98, 7.1E-4, 3, 34, 12.36, 3.9, 0.00558, 35, 5.24, 4.91, 0.88896, 36, -3.71, 3.86, 0.10545, 2, 35, 10.57, 4.46, 0.11744, 36, 1.45, 5.3, 0.88256, 1, 36, 6.38, 6.68, 1, 1, 36, 9.37, -1.49, 1, 1, 36, 5.55, -1.9, 1, 2, 35, 7.75, -2.65, 0.25637, 36, 1.28, -2.35, 0.74363, 2, 35, 4.97, -2.62, 0.95078, 36, -1.33, -3.29, 0.04922, 2, 34, 7.02, -2.75, 0.27477, 35, 1.16, -2.58, 0.72523, 3, 33, 12.5, -3.86, 0.01213, 34, 3.9, -3.24, 0.9422, 35, -1.82, -3.62, 0.04568, 2, 33, 9.57, -3.67, 0.35302, 34, 0.98, -3.56, 0.64698, 2, 33, 5.63, -4, 0.96549, 34, -2.84, -4.56, 0.03451, 2, 32, 10.37, -4.41, 0.01408, 33, 2.05, -4.3, 0.98592, 2, 32, 7.67, -4.51, 0.30007, 33, -0.65, -4.39, 0.69993, 2, 32, 3.42, -4.66, 0.88336, 33, -4.9, -4.53, 0.11664, 1, 32, -3.46, -1.5, 1, 1, 32, -0.22, 5.56, 1, 1, 32, 8.1, 0.12, 1, 2, 33, 9.06, -0.2, 0.65336, 34, -0.12, -0.22, 0.34664, 2, 34, 6.63, 0.17, 0.19199, 35, 0.26, 0.22, 0.80801, 2, 35, 6.87, 0.37, 0.9753, 36, -0.6, 0.18, 0.0247, 1, 36, 8.48, 0.84, 1, 2, 32, 10.71, 0, 0.01149, 33, 2.4, 0.11, 0.98851, 2, 33, 5.26, -0.02, 1, 34, -3.89, -0.71, 0, 2, 34, 3.1, -0.21, 0.99995, 35, -3.14, -0.77, 5.0E-5, 1, 35, 4.03, 0.31, 1, 1, 36, 4.63, 0.56, 1, 2, 32, 3.22, -0.56, 0.9946, 33, -5.09, -0.43, 0.0054 ],
  203. "hull": 24,
  204. "edges": [ 44, 46, 42, 44, 22, 56, 56, 20, 20, 22, 38, 40, 40, 42, 40, 48, 48, 2, 48, 58, 38, 58, 2, 4, 58, 4, 34, 36, 36, 38, 50, 60, 60, 58, 36, 60, 4, 6, 6, 8, 60, 6, 34, 50, 50, 8, 30, 32, 32, 34, 50, 62, 62, 52, 32, 62, 8, 10, 10, 12, 62, 10, 30, 52, 52, 12, 26, 28, 28, 30, 52, 64, 64, 54, 28, 64, 12, 14, 64, 14, 26, 54, 14, 16, 54, 16, 22, 24, 24, 26, 54, 66, 66, 56, 24, 66, 16, 18, 18, 20, 66, 18, 44, 68, 68, 48, 42, 68, 2, 0, 0, 46, 68, 0 ],
  205. "width": 17,
  206. "height": 43
  207. }
  208. },
  209. "toufa6": {
  210. "toufa6": {
  211. "type": "mesh",
  212. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0, 0.28888, 0.62768, 0.77774, 0.60936 ],
  213. "triangles": [ 3, 4, 2, 5, 4, 3, 1, 2, 4, 5, 3, 0, 4, 5, 0, 1, 4, 0 ],
  214. "vertices": [ -33.81, -43.96, -26.15, 39.69, 87.37, 29.3, 79.71, -54.35, 13.9, 11.66, 12.24, -29.43 ],
  215. "hull": 4,
  216. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  217. "width": 84,
  218. "height": 114
  219. }
  220. },
  221. "toufa7": {
  222. "toufa7": {
  223. "type": "mesh",
  224. "uvs": [ 1, 0.22099, 1, 0.28411, 1, 0.3354, 1, 0.40543, 1, 0.44685, 1, 0.51589, 1, 0.59085, 1, 0.65561, 1, 0.72564, 1, 0.78679, 1, 0.83314, 1, 0.89922, 1, 0.96272, 1, 1, 0.52948, 1, 0, 1, 0, 0.9637, 0, 0.90613, 0, 0.84202, 0, 0.79073, 0, 0.72761, 0, 0.6635, 0, 0.59381, 0, 0.51392, 0, 0.45079, 0, 0.40641, 0, 0.3354, 0, 0.29397, 0, 0.22592, 0, 0, 0.48948, 0, 1, 0, 0.56148, 0.28971, 0.59348, 0.44467, 0.57748, 0.58582, 0.48148, 0.72237, 0.43348, 0.83744, 0.57095, 0.33558, 0.54552, 0.22548, 0.58582, 0.40759, 0.5856, 0.51413, 0.52233, 0.66427, 0.45232, 0.79228, 0.47079, 0.90062, 0.50725, 0.96235 ],
  225. "triangles": [ 14, 12, 13, 15, 44, 14, 14, 44, 12, 15, 16, 44, 16, 43, 44, 16, 17, 43, 44, 11, 12, 44, 43, 11, 17, 36, 43, 17, 18, 36, 11, 43, 10, 43, 36, 10, 18, 19, 36, 36, 42, 10, 36, 19, 42, 42, 9, 10, 42, 35, 9, 35, 42, 20, 42, 19, 20, 35, 8, 9, 20, 21, 35, 35, 41, 8, 41, 7, 8, 35, 21, 41, 41, 34, 7, 34, 41, 22, 41, 21, 22, 34, 6, 7, 22, 23, 34, 34, 40, 6, 40, 5, 6, 34, 23, 40, 40, 33, 5, 33, 4, 5, 40, 23, 24, 33, 40, 24, 24, 39, 33, 24, 25, 39, 33, 3, 4, 33, 39, 3, 25, 37, 39, 3, 39, 2, 25, 26, 37, 39, 37, 2, 26, 32, 37, 2, 37, 1, 37, 32, 1, 26, 27, 32, 27, 38, 32, 27, 28, 38, 1, 32, 0, 32, 38, 0, 28, 30, 38, 28, 29, 30, 0, 38, 31, 38, 30, 31 ],
  226. "vertices": [ 1, 24, -4.95, 6.25, 1, 2, 24, -0.35, 6.25, 0.99952, 25, -12.79, 6.05, 4.8E-4, 2, 24, 3.4, 6.25, 0.97029, 25, -9.05, 6.05, 0.02971, 2, 24, 8.51, 6.25, 0.66858, 25, -3.93, 6.05, 0.33142, 2, 24, 11.53, 6.25, 0.27566, 25, -0.91, 6.05, 0.72434, 2, 25, 4.13, 6.05, 0.98705, 26, -6.4, 5.27, 0.01295, 3, 25, 9.6, 6.05, 0.55961, 26, -0.97, 5.97, 0.42455, 27, -10.1, 6.81, 0.01584, 3, 25, 14.33, 6.05, 0.06117, 26, 3.72, 6.59, 0.74612, 27, -5.38, 7.03, 0.19271, 2, 26, 8.79, 7.25, 0.25175, 27, -0.28, 7.27, 0.74825, 3, 26, 13.21, 7.82, 0.00607, 27, 4.18, 7.48, 0.9349, 28, -3.87, 8.11, 0.05903, 2, 27, 7.56, 7.63, 0.69601, 28, -0.5, 7.77, 0.30399, 2, 27, 12.38, 7.86, 0.17992, 28, 4.3, 7.29, 0.82008, 2, 27, 17.01, 8.07, 0.01053, 28, 8.91, 6.83, 0.98947, 1, 28, 11.62, 6.56, 1, 1, 28, 10.97, 0, 1, 1, 28, 10.23, -7.37, 1, 1, 28, 7.59, -7.11, 1, 2, 27, 13.54, -6.1, 0.0312, 28, 3.41, -6.69, 0.9688, 3, 26, 19.02, -5.54, 0.00321, 27, 8.86, -6.32, 0.45599, 28, -1.25, -6.23, 0.5408, 3, 26, 15.31, -6.02, 0.07884, 27, 5.12, -6.5, 0.80505, 28, -4.97, -5.85, 0.11611, 4, 25, 19.59, -7.95, 5.8E-4, 26, 10.74, -6.62, 0.48787, 27, 0.52, -6.71, 0.51025, 28, -9.56, -5.39, 0.0013, 4, 24, 27.35, -7.75, 0.00593, 25, 14.91, -7.95, 0.0582, 26, 6.1, -7.22, 0.86283, 27, -4.16, -6.93, 0.07305, 3, 24, 22.26, -7.75, 0.08326, 25, 9.82, -7.95, 0.35699, 26, 1.06, -7.88, 0.55976, 3, 24, 16.43, -7.75, 0.47782, 25, 3.99, -7.95, 0.43433, 26, -4.73, -8.64, 0.08785, 3, 24, 11.82, -7.75, 0.90607, 25, -0.62, -7.95, 0.09081, 26, -9.3, -9.23, 0.00313, 2, 24, 8.58, -7.75, 0.99681, 25, -3.86, -7.95, 0.00319, 1, 24, 3.4, -7.75, 1, 1, 24, 0.37, -7.75, 1, 1, 24, -4.59, -7.75, 1, 1, 24, -21.09, -7.75, 1, 1, 24, -21.09, -0.89, 1, 1, 24, -21.09, 6.25, 1, 1, 24, 0.06, 0.11, 1, 2, 24, 11.38, 0.56, 0.82248, 25, -1.07, 0.36, 0.17752, 3, 25, 9.24, 0.13, 0.89392, 26, -0.57, 0.06, 0.10601, 27, -10.2, 0.88, 7.0E-5, 2, 26, 9.49, 0.02, 0.89965, 27, -0.18, 0.01, 0.10035, 1, 27, 8.25, -0.28, 1, 2, 24, 3.41, 0.25, 0.9998, 25, -9.03, 0.04, 2.0E-4, 1, 24, -4.62, -0.11, 1, 2, 24, 8.67, 0.45, 0.98079, 25, -3.78, 0.25, 0.01921, 1, 25, 4, 0.25, 1, 2, 26, 5.21, 0.04, 0.9997, 27, -4.44, 0.38, 3.0E-4, 3, 26, 14.6, 0.27, 6.4E-4, 27, 4.94, -0.17, 0.99902, 28, -4.23, 0.44, 3.4E-4, 1, 28, 3.67, -0.09, 1, 1, 28, 8.2, -0.03, 1 ],
  227. "hull": 32,
  228. "edges": [ 58, 60, 60, 62, 26, 28, 28, 30, 54, 64, 64, 2, 52, 54, 64, 74, 52, 74, 2, 4, 74, 4, 54, 56, 56, 58, 60, 76, 76, 64, 56, 76, 2, 0, 0, 62, 76, 0, 50, 52, 66, 78, 78, 74, 50, 78, 4, 6, 78, 6, 48, 50, 48, 66, 6, 8, 66, 8, 46, 48, 66, 80, 80, 68, 46, 80, 8, 10, 80, 10, 44, 46, 44, 68, 10, 12, 68, 12, 42, 44, 68, 82, 82, 70, 42, 82, 12, 14, 82, 14, 40, 42, 40, 70, 14, 16, 38, 40, 70, 84, 84, 72, 38, 84, 16, 18, 84, 18, 36, 38, 36, 72, 18, 20, 72, 20, 34, 36, 86, 72, 34, 86, 20, 22, 86, 22, 30, 32, 32, 34, 28, 88, 88, 86, 32, 88, 22, 24, 24, 26, 88, 24, 70, 16 ],
  229. "width": 14,
  230. "height": 73
  231. }
  232. },
  233. "xiao": {
  234. "xiao": { "x": 3.72, "y": -1.77, "rotation": -94.84, "width": 16, "height": 12 }
  235. },
  236. "yifu1": {
  237. "yifu1": {
  238. "type": "mesh",
  239. "uvs": [ 0.42143, 0.12427, 0.48258, 0.17043, 0.55677, 0.22645, 0.59343, 0.25413, 0.65913, 0.30373, 0.74103, 0.36556, 0.80475, 0.41367, 0.87672, 0.46801, 1, 0.56108, 1, 0.73483, 0.87901, 0.87431, 0.75874, 1, 0.59917, 1, 0.58001, 1, 0.48583, 0.89506, 0.40118, 0.80073, 0.34109, 0.73378, 0.28919, 0.67594, 0.25248, 0.63504, 0.21055, 0.58832, 0.15385, 0.52514, 0.09132, 0.45547, 0, 0.35371, 0, 0, 0.25683, 0, 0.40226, 0.4011, 0.6231, 0.60848, 0.43509, 0.43194, 0.48215, 0.47612, 0.54772, 0.53769, 0.2784, 0.2776, 0.33621, 0.33524, 0.70252, 0.69098, 0.78151, 0.77303 ],
  240. "triangles": [ 10, 11, 33, 33, 11, 12, 33, 12, 14, 33, 14, 32, 14, 12, 13, 14, 26, 32, 14, 15, 26, 10, 33, 9, 9, 33, 8, 7, 8, 33, 33, 32, 7, 7, 26, 6, 7, 32, 26, 26, 5, 6, 26, 29, 5, 15, 29, 26, 15, 16, 29, 29, 17, 28, 29, 16, 17, 17, 18, 28, 18, 27, 28, 27, 19, 25, 27, 18, 19, 29, 4, 5, 29, 28, 4, 28, 3, 4, 28, 27, 3, 27, 2, 3, 27, 25, 2, 19, 20, 25, 20, 31, 25, 31, 21, 30, 31, 20, 21, 21, 22, 30, 25, 1, 2, 25, 31, 1, 22, 23, 30, 31, 0, 1, 31, 30, 0, 23, 24, 30, 30, 24, 0 ],
  241. "vertices": [ 2, 46, 5.36, 9.01, 0.94627, 47, -7.21, 8.87, 0.05373, 3, 46, 8.61, 9.28, 0.79961, 47, -3.96, 9.21, 0.19995, 48, -15.24, 8.96, 4.5E-4, 3, 46, 12.55, 9.61, 0.4776, 47, -0.03, 9.61, 0.50257, 48, -11.31, 9.43, 0.01983, 3, 46, 14.5, 9.77, 0.3132, 47, 1.92, 9.81, 0.63491, 48, -9.36, 9.66, 0.05189, 3, 46, 18, 10.07, 0.10869, 47, 5.41, 10.17, 0.70928, 48, -5.88, 10.08, 0.18203, 3, 46, 22.35, 10.43, 0.01351, 47, 9.76, 10.62, 0.49291, 48, -1.54, 10.59, 0.49358, 3, 46, 25.74, 10.71, 4.0E-4, 47, 13.14, 10.97, 0.24764, 48, 1.84, 11, 0.75196, 2, 47, 16.96, 11.36, 0.07135, 48, 5.65, 11.45, 0.92865, 2, 47, 23.5, 12.03, 5.4E-4, 48, 12.18, 12.23, 0.99946, 1, 48, 16.77, 7.01, 1, 1, 48, 16.44, -0.7, 1, 2, 47, 26.78, -8.22, 0.01236, 48, 15.78, -7.97, 0.98764, 2, 47, 21.42, -12.77, 0.10466, 48, 10.51, -12.6, 0.89534, 2, 47, 20.78, -13.31, 0.11541, 48, 9.87, -13.15, 0.88459, 2, 47, 14.9, -12.79, 0.32715, 48, 3.99, -12.73, 0.67285, 3, 46, 21.78, -12.51, 0.00322, 47, 9.62, -12.33, 0.65895, 48, -1.3, -12.35, 0.33782, 3, 46, 18.04, -12.11, 0.04305, 47, 5.87, -12, 0.81849, 48, -5.05, -12.08, 0.13846, 3, 46, 14.81, -11.76, 0.1528, 47, 2.64, -11.71, 0.80425, 48, -8.3, -11.85, 0.04296, 3, 46, 12.52, -11.52, 0.28675, 47, 0.35, -11.51, 0.70016, 48, -10.59, -11.69, 0.01309, 3, 46, 9.91, -11.24, 0.47787, 47, -2.27, -11.28, 0.52067, 48, -13.21, -11.5, 0.00146, 2, 46, 6.38, -10.86, 0.7251, 47, -5.81, -10.97, 0.2749, 2, 46, 2.49, -10.44, 0.90177, 47, -9.71, -10.63, 0.09823, 2, 46, -3.2, -9.83, 0.98903, 47, -15.41, -10.12, 0.01097, 1, 46, -12.15, 1.13, 1, 1, 46, -3.4, 8.28, 1, 1, 46, 11.71, -0.1, 1, 1, 48, 0.97, -0.13, 1, 1, 47, 1.21, -0.12, 1, 1, 47, 3.94, -0.13, 1, 1, 47, 7.73, -0.14, 1, 1, 46, 4.36, 0.28, 1, 1, 46, 7.79, 0.1, 1, 2, 47, 16.89, -0.4, 0.00135, 48, 5.77, -0.31, 0.99865, 2, 47, 21.66, -0.65, 2.7E-4, 48, 10.55, -0.48, 0.99973 ],
  242. "hull": 25,
  243. "edges": [ 46, 48, 44, 46, 38, 50, 50, 4, 36, 38, 50, 54, 36, 54, 4, 6, 54, 6, 34, 36, 56, 54, 34, 56, 6, 8, 56, 8, 32, 34, 52, 58, 58, 56, 32, 58, 8, 10, 58, 10, 42, 44, 46, 60, 42, 60, 0, 48, 60, 0, 38, 40, 40, 42, 50, 62, 62, 60, 40, 62, 0, 2, 2, 4, 62, 2, 30, 32, 30, 52, 10, 12, 52, 12, 26, 28, 28, 30, 64, 52, 28, 64, 12, 14, 14, 16, 64, 14, 24, 26, 66, 64, 24, 66, 66, 16, 22, 24, 20, 66, 22, 20, 16, 18, 20, 18 ],
  244. "width": 44,
  245. "height": 40
  246. }
  247. },
  248. "yifu2": {
  249. "yifu2": {
  250. "type": "mesh",
  251. "uvs": [ 1, 0.26502, 1, 1, 0, 1, 0, 0.56077, 0.49398, 0, 0.69147, 0 ],
  252. "triangles": [ 0, 2, 3, 4, 5, 0, 4, 0, 3, 1, 2, 0 ],
  253. "vertices": [ -11.08, 24.87, 6.09, 28.91, 16.86, -16.84, 6.6, -19.25, -11.82, 0.26, -13.95, 9.3 ],
  254. "hull": 6,
  255. "edges": [ 2, 4, 4, 6, 8, 6, 8, 10, 2, 0, 10, 0 ],
  256. "width": 47,
  257. "height": 24
  258. }
  259. },
  260. "yifu3": {
  261. "yifu3": {
  262. "type": "mesh",
  263. "uvs": [ 1, 0.5317, 0.82179, 1, 0, 1, 0, 0.59328, 0.21224, 0, 1, 0 ],
  264. "triangles": [ 4, 5, 0, 3, 4, 0, 1, 2, 3, 0, 1, 3 ],
  265. "vertices": [ -4.19, 31.42, 6.28, 23.55, 14.22, -20.11, 6.62, -21.5, -6.52, -12.24, -14.13, 29.62 ],
  266. "hull": 6,
  267. "edges": [ 4, 6, 8, 10, 6, 8, 0, 10, 2, 4, 0, 2 ],
  268. "width": 54,
  269. "height": 19
  270. }
  271. },
  272. "yifu4": {
  273. "yifu4": {
  274. "type": "mesh",
  275. "uvs": [ 1, 0.34688, 1, 0.56831, 0.72686, 1, 0.32467, 1, 0, 0.80809, 0, 0.46244, 0.10664, 0.19246, 0.55258, 0.22743, 0.75367, 0, 0.83083, 0 ],
  276. "triangles": [ 8, 9, 0, 5, 3, 4, 7, 5, 6, 7, 3, 5, 0, 7, 8, 1, 7, 0, 2, 3, 7, 1, 2, 7 ],
  277. "vertices": [ -12.92, 38.12, -7.11, 39.55, 8.38, 25.36, 14.53, 0.36, 14.46, -21.05, 5.4, -23.28, -3.31, -18.39, -9.21, 9.55, -18.25, 20.58, -19.43, 25.37 ],
  278. "hull": 10,
  279. "edges": [ 14, 16, 2, 4, 4, 6, 8, 6, 2, 0, 16, 18, 0, 18, 8, 10, 12, 14, 10, 12 ],
  280. "width": 64,
  281. "height": 27
  282. }
  283. },
  284. "yin1": {
  285. "yin1": { "x": 16.08, "y": 1.04, "rotation": -90, "width": 19, "height": 49 }
  286. },
  287. "yin2": {
  288. "yin2": { "x": 8.63, "y": -2.57, "rotation": -105.26, "width": 29, "height": 37 }
  289. },
  290. "yin3": {
  291. "yin3": { "x": 10.62, "y": 1.58, "rotation": -106.26, "width": 32, "height": 35 }
  292. },
  293. "youshou": {
  294. "youshou": {
  295. "type": "mesh",
  296. "uvs": [ 0.51253, 0.24993, 0.54611, 0.28107, 0.58605, 0.31809, 0.72805, 0.44974, 0.75081, 0.47083, 0.77922, 0.49717, 1, 0.70185, 1, 1, 0.71212, 1, 0.48032, 0.7628, 0.44969, 0.73146, 0.41556, 0.69653, 0.24266, 0.5196, 0.20324, 0.47927, 0.17275, 0.44806, 0, 0.27129, 0, 0, 0.24293, 0, 0.39933, 0.42861, 0.63852, 0.64113, 0.36331, 0.38996, 0.60545, 0.61174, 0.56533, 0.5761, 0.32701, 0.35099 ],
  297. "triangles": [ 7, 19, 6, 19, 7, 8, 9, 19, 8, 6, 19, 5, 9, 21, 19, 9, 10, 21, 10, 22, 21, 10, 11, 22, 12, 18, 11, 11, 18, 22, 19, 4, 5, 19, 21, 4, 21, 3, 4, 21, 22, 3, 22, 2, 3, 22, 18, 2, 12, 20, 18, 12, 13, 20, 13, 23, 20, 13, 14, 23, 14, 15, 23, 18, 1, 2, 18, 20, 1, 20, 0, 1, 20, 23, 0, 0, 23, 17, 17, 23, 16, 23, 15, 16 ],
  298. "vertices": [ 2, 37, 18.88, 10.22, 0.80547, 38, -2.46, 10.42, 0.19453, 2, 37, 21.05, 10.28, 0.65442, 38, -0.29, 10.33, 0.34558, 3, 37, 23.63, 10.36, 0.44535, 38, 2.28, 10.22, 0.55445, 39, -14.44, 9.2, 2.0E-4, 3, 37, 32.8, 10.65, 0.02802, 38, 11.45, 9.84, 0.80527, 39, -5.27, 9.48, 0.16671, 3, 37, 34.27, 10.69, 0.01309, 38, 12.92, 9.78, 0.72982, 39, -3.8, 9.53, 0.25709, 3, 37, 36.1, 10.75, 0.00363, 38, 14.75, 9.7, 0.59662, 39, -1.96, 9.59, 0.39975, 2, 38, 29, 9.11, 1.0E-5, 39, 12.29, 10.02, 0.99999, 1, 39, 23.3, -0.03, 1, 1, 39, 14.57, -9.6, 1, 2, 38, 14.12, -9.19, 0.68937, 39, -1.23, -9.3, 0.31063, 2, 38, 12.04, -9, 0.84378, 39, -3.31, -9.26, 0.15622, 3, 37, 32.43, -8.06, 5.1E-4, 38, 9.73, -8.79, 0.94521, 39, -5.64, -9.22, 0.05427, 2, 37, 20.65, -7.84, 0.67887, 38, -2.01, -7.72, 0.32113, 2, 37, 17.97, -7.79, 0.89484, 38, -4.68, -7.47, 0.10516, 2, 37, 15.89, -7.76, 0.97248, 38, -6.75, -7.28, 0.02752, 1, 37, 4.12, -7.54, 1, 1, 37, -5.9, 1.6, 1, 1, 37, 1.47, 9.68, 1, 2, 37, 22.05, 0.43, 0.53097, 38, -0.02, 0.43, 0.46903, 1, 38, 15.11, 0.12, 1, 1, 37, 19.53, 0.54, 1, 3, 37, 35.06, 1.11, 0, 38, 13.01, 0.17, 0.99808, 39, -3.01, -0.05, 0.00192, 3, 37, 32.53, 0.98, 1.0E-4, 38, 10.48, 0.22, 0.99956, 39, -5.54, -0.18, 3.4E-4, 1, 37, 16.98, 0.64, 1 ],
  299. "hull": 18,
  300. "edges": [ 38, 14, 32, 34, 14, 12, 30, 32, 14, 16, 24, 36, 36, 4, 24, 26, 40, 36, 26, 40, 4, 2, 40, 2, 16, 18, 18, 38, 10, 12, 38, 10, 18, 20, 38, 42, 20, 42, 8, 10, 42, 8, 20, 22, 44, 42, 22, 44, 6, 8, 44, 6, 22, 24, 4, 6, 26, 28, 28, 30, 32, 46, 46, 40, 28, 46, 2, 0, 0, 34, 46, 0 ],
  301. "width": 45,
  302. "height": 48
  303. }
  304. },
  305. "youtui": {
  306. "youtui": {
  307. "type": "mesh",
  308. "uvs": [ 0.90831, 0.40339, 0.91987, 0.45581, 0.92877, 0.49613, 0.98065, 0.72112, 0.98774, 0.75187, 0.99999, 0.79072, 1, 1, 0, 1, 0, 0.96753, 0, 0.86529, 0.27242, 0.78829, 0.26921, 0.75485, 0.26767, 0.73313, 0.25089, 0.49606, 0.24886, 0.46856, 0.24501, 0.41625, 0.21434, 0, 0.50039, 0, 0.81934, 0, 0.56439, 0.46135, 0.58999, 0.84971, 0.55799, 0.41525, 0.5667, 0.4964, 0.5857, 0.78473, 0.5835, 0.75128, 0.58187, 0.7266 ],
  309. "triangles": [ 7, 20, 6, 20, 5, 6, 7, 8, 20, 20, 8, 10, 8, 9, 10, 20, 10, 23, 20, 23, 5, 23, 4, 5, 10, 24, 23, 10, 11, 24, 23, 24, 4, 11, 25, 24, 11, 12, 25, 24, 3, 4, 24, 25, 3, 12, 22, 25, 12, 13, 22, 25, 2, 3, 25, 22, 2, 22, 1, 2, 13, 19, 22, 22, 19, 1, 13, 14, 19, 14, 21, 19, 14, 15, 21, 19, 0, 1, 19, 21, 0, 15, 17, 21, 15, 16, 17, 21, 18, 0, 21, 17, 18 ],
  310. "vertices": [ 2, 52, 14.77, 8.66, 0.76934, 53, -4.14, 8.73, 0.23066, 2, 52, 17.66, 8.87, 0.50867, 53, -1.25, 8.94, 0.49133, 2, 52, 19.89, 9.02, 0.30535, 53, 0.98, 9.1, 0.69465, 2, 53, 13.38, 10.06, 0.88116, 54, -10.49, -6.95, 0.11884, 2, 53, 15.08, 10.19, 0.7943, 54, -10.29, -5.27, 0.2057, 2, 53, 17.22, 10.44, 0.65218, 54, -10.1, -3.11, 0.34782, 2, 53, 28.73, 10.13, 0.00722, 54, -7.52, 8.1, 0.99278, 1, 54, 16.84, 2.48, 1, 1, 54, 16.44, 0.74, 1, 2, 53, 20.65, -14.66, 0.01971, 54, 15.18, -4.74, 0.98029, 2, 53, 16.6, -7.74, 0.55446, 54, 7.59, -7.33, 0.44554, 2, 53, 14.76, -7.77, 0.78663, 54, 7.26, -9.14, 0.21337, 2, 53, 13.56, -7.77, 0.87497, 54, 7.02, -10.32, 0.12503, 2, 52, 19.38, -7.92, 0.28394, 53, 0.52, -7.84, 0.71606, 2, 52, 17.87, -7.92, 0.43893, 53, -1, -7.85, 0.56107, 2, 52, 14.99, -7.93, 0.73327, 53, -3.88, -7.87, 0.26673, 1, 52, -7.92, -8.03, 1, 1, 52, -7.71, -0.88, 1, 1, 52, -7.47, 7.09, 1, 2, 52, 17.71, -0.03, 0.44813, 53, -1.18, 0.05, 0.55187, 2, 53, 20.19, 0.11, 0.47229, 54, 0.61, -2.26, 0.52771, 2, 52, 15.17, -0.11, 0.9974, 53, -3.72, -0.05, 0.0026, 2, 52, 19.63, -0.03, 2.6E-4, 53, 0.75, 0.05, 0.99974, 2, 53, 16.61, 0.1, 0.9997, 54, -0.09, -5.76, 3.0E-4, 1, 53, 14.77, 0.09, 1, 1, 53, 13.41, 0.09, 1 ],
  311. "hull": 19,
  312. "edges": [ 12, 14, 20, 18, 12, 10, 32, 34, 34, 36, 14, 16, 16, 18, 40, 16, 28, 38, 38, 2, 28, 30, 30, 32, 34, 42, 42, 38, 30, 42, 2, 0, 0, 36, 42, 0, 26, 28, 38, 44, 26, 44, 2, 4, 44, 4, 40, 46, 20, 46, 46, 10, 20, 22, 48, 46, 22, 48, 8, 10, 48, 8, 22, 24, 24, 26, 44, 50, 50, 48, 24, 50, 4, 6, 6, 8, 50, 6 ],
  313. "width": 25,
  314. "height": 55
  315. }
  316. },
  317. "youyan": {
  318. "youyan": { "x": 5.5, "y": 0.37, "rotation": -88, "width": 23, "height": 18 }
  319. },
  320. "zuiba": {
  321. "zuiba": { "x": 3.72, "y": -1.77, "rotation": -94.84, "width": 14, "height": 8 }
  322. },
  323. "zuoshou": {
  324. "zuoshou": {
  325. "type": "mesh",
  326. "uvs": [ 1, 0.31712, 0.88223, 0.44382, 0.84751, 0.48117, 0.80035, 0.5319, 0.62206, 0.72371, 0.58029, 0.76864, 0.53822, 0.8139, 0.36523, 1, 0, 1, 0, 0.6928, 0.24937, 0.48943, 0.28488, 0.46047, 0.33477, 0.41978, 0.53524, 0.2563, 0.57976, 0.22, 0.62458, 0.18345, 0.84952, 0, 1, 0, 0.7191, 0.35741, 0.42073, 0.6937, 0.76116, 0.30389, 0.68232, 0.40245, 0.4606, 0.66177, 0.50422, 0.62053 ],
  327. "triangles": [ 7, 19, 6, 7, 8, 19, 19, 9, 10, 19, 8, 9, 19, 22, 6, 6, 22, 5, 22, 23, 5, 5, 23, 4, 4, 23, 3, 10, 11, 19, 19, 11, 22, 22, 11, 23, 23, 11, 12, 23, 21, 3, 21, 12, 13, 21, 23, 12, 3, 21, 2, 21, 18, 2, 13, 14, 21, 21, 14, 18, 2, 18, 1, 18, 20, 1, 1, 20, 0, 14, 15, 18, 18, 15, 20, 20, 17, 0, 20, 16, 17, 20, 15, 16 ],
  328. "vertices": [ 2, 40, 7.93, 9.94, 0.9895, 41, -11.87, 8.53, 0.0105, 2, 40, 16.72, 9.08, 0.65815, 41, -3.02, 8.8, 0.34185, 2, 40, 19.51, 8.82, 0.42449, 41, -0.24, 8.89, 0.57551, 2, 40, 23.23, 8.3, 0.15147, 41, 3.49, 8.84, 0.84853, 2, 41, 16.43, 7.86, 0.98246, 42, -7.04, 8.55, 0.01754, 2, 41, 19.74, 7.61, 0.88163, 42, -3.72, 8.42, 0.11837, 2, 41, 23.55, 7.34, 0.64191, 42, 0.09, 8.28, 0.35809, 2, 41, 38.01, 6.26, 0.00277, 42, 14.58, 7.74, 0.99723, 1, 42, 25.82, -5.72, 1, 2, 41, 36.82, -16.82, 4.2E-4, 42, 14.25, -15.36, 0.99958, 2, 41, 20.02, -13.38, 0.47111, 42, -2.67, -12.54, 0.52889, 2, 41, 17.36, -12.88, 0.61524, 42, -5.34, -12.14, 0.38476, 2, 41, 13.74, -12.18, 0.78525, 42, -8.98, -11.58, 0.21475, 3, 40, 18.16, -9.65, 0.31228, 41, 0.81, -9.64, 0.68662, 42, -22, -9.53, 0.00111, 2, 40, 15.49, -8.97, 0.56124, 41, -1.91, -9.33, 0.43876, 2, 40, 12.8, -8.39, 0.79391, 41, -4.65, -9.11, 0.20609, 1, 40, -0.75, -4.86, 1, 1, 40, -4.86, 1.08, 1, 2, 40, 17.28, 0.04, 0.89679, 41, -1.26, -0.13, 0.10321, 2, 41, 22.1, -0.72, 0.70863, 42, -1.05, 0.18, 0.29137, 1, 40, 13.91, 0.13, 1, 1, 41, 2.14, 0.53, 1, 2, 41, 18.72, -0.12, 0.99637, 42, -4.46, 0.65, 0.00363, 1, 41, 15.83, 0.3, 1 ],
  329. "hull": 18,
  330. "edges": [ 0, 34, 14, 16, 32, 34, 16, 18, 38, 16, 28, 36, 36, 4, 28, 30, 30, 32, 34, 40, 40, 36, 30, 40, 0, 2, 2, 4, 40, 2, 26, 28, 36, 42, 26, 42, 4, 6, 42, 6, 18, 20, 20, 38, 12, 14, 38, 12, 20, 22, 38, 44, 22, 44, 10, 12, 44, 10, 22, 24, 24, 26, 42, 46, 46, 44, 24, 46, 6, 8, 8, 10, 46, 8 ],
  331. "width": 48,
  332. "height": 49
  333. }
  334. },
  335. "zuotui": {
  336. "zuotui": {
  337. "type": "mesh",
  338. "uvs": [ 0.94015, 0.428, 0.94411, 0.45164, 0.94705, 0.46918, 0.98497, 0.69525, 0.99244, 0.73983, 0.99999, 0.78485, 1, 1, 0, 1, 0, 0.89515, 0, 0.83851, 0.30725, 0.76398, 0.30879, 0.72809, 0.31065, 0.68494, 0.31932, 0.48366, 0.3205, 0.45645, 0.32144, 0.43464, 0.34016, 0, 0.64629, 0, 0.86837, 0, 0.64958, 0.45395, 0.67262, 0.82509, 0.66955, 0.77559, 0.66724, 0.73844, 0.66399, 0.68606, 0.65098, 0.47654, 0.64943, 0.43307 ],
  339. "triangles": [ 7, 20, 6, 20, 5, 6, 7, 8, 20, 20, 10, 21, 20, 8, 10, 8, 9, 10, 20, 21, 5, 21, 4, 5, 21, 10, 22, 10, 11, 22, 21, 22, 4, 22, 3, 4, 22, 11, 23, 11, 12, 23, 22, 23, 3, 23, 2, 3, 23, 12, 24, 12, 13, 24, 23, 24, 2, 24, 14, 19, 24, 13, 14, 24, 1, 2, 24, 19, 1, 19, 14, 15, 19, 0, 1, 19, 15, 25, 19, 25, 0, 15, 16, 25, 16, 17, 25, 25, 18, 0, 25, 17, 18 ],
  340. "vertices": [ 2, 49, 16.76, 7.2, 0.6468, 50, -1.52, 7.17, 0.3532, 2, 49, 18.01, 7.32, 0.51287, 50, -0.27, 7.24, 0.48713, 2, 49, 18.94, 7.4, 0.41232, 50, 0.66, 7.29, 0.58768, 2, 50, 12.66, 7.95, 0.90024, 51, -8.97, -5.44, 0.09976, 2, 50, 15.03, 8.08, 0.74406, 51, -8.7, -3.08, 0.25594, 2, 50, 17.42, 8.21, 0.52228, 51, -8.43, -0.7, 0.47772, 1, 51, -6.28, 10.49, 1, 1, 51, 17.29, 5.97, 1, 1, 51, 16.24, 0.52, 1, 1, 51, 15.68, -2.43, 1, 2, 50, 15.96, -8.39, 0.30533, 51, 7.69, -4.92, 0.69467, 2, 50, 14.06, -8.31, 0.59027, 51, 7.3, -6.78, 0.40973, 2, 50, 11.77, -8.22, 0.80589, 51, 6.82, -9.02, 0.19411, 2, 49, 19.98, -7.65, 0.30626, 50, 1.11, -7.78, 0.69374, 2, 49, 18.54, -7.64, 0.46644, 50, -0.33, -7.73, 0.53356, 2, 49, 17.38, -7.64, 0.60162, 50, -1.48, -7.68, 0.39838, 1, 49, -5.66, -7.62, 1, 1, 49, -5.79, -0.27, 1, 1, 49, -5.89, 5.05, 1, 2, 49, 18.26, 0.25, 0.18619, 50, -0.3, 0.17, 0.81381, 2, 50, 19.38, 0.31, 0.03013, 51, -0.31, -0.09, 0.96987, 2, 50, 16.76, 0.29, 0.65867, 51, -0.73, -2.68, 0.34133, 1, 50, 14.79, 0.28, 1, 1, 50, 12.01, 0.26, 1, 2, 49, 19.46, 0.31, 0.00733, 50, 0.9, 0.18, 0.99267, 1, 49, 17.16, 0.23, 1 ],
  341. "hull": 19,
  342. "edges": [ 12, 14, 14, 16, 40, 16, 32, 34, 16, 18, 20, 18, 34, 36, 12, 10, 42, 40, 20, 42, 42, 10, 20, 22, 44, 42, 22, 44, 10, 8, 44, 8, 22, 24, 46, 44, 24, 46, 8, 6, 46, 6, 28, 38, 38, 2, 24, 26, 26, 28, 38, 48, 48, 46, 26, 48, 2, 4, 4, 6, 48, 4, 28, 30, 30, 32, 34, 50, 50, 38, 30, 50, 2, 0, 0, 36, 50, 0 ],
  343. "width": 24,
  344. "height": 53
  345. }
  346. },
  347. "zuoyan": {
  348. "zuoyan": { "x": 5.48, "y": 1.42, "rotation": -93.58, "width": 23, "height": 17 }
  349. }
  350. }
  351. },
  352. "animations": {
  353. "stand1": {
  354. "slots": {
  355. "biyan": {
  356. "attachment": [
  357. { "time": 1.4333, "name": "biyan" },
  358. { "time": 1.5333, "name": null }
  359. ]
  360. },
  361. "xiao": {
  362. "attachment": [
  363. { "time": 0, "name": null },
  364. { "time": 1.3333, "name": null }
  365. ]
  366. },
  367. "yin1": {
  368. "color": [
  369. { "time": 0, "color": "ffffff00" }
  370. ]
  371. },
  372. "yin2": {
  373. "color": [
  374. { "time": 0, "color": "ffffff00" }
  375. ]
  376. },
  377. "yin3": {
  378. "color": [
  379. { "time": 0, "color": "ffffff00" }
  380. ]
  381. },
  382. "youyan": {
  383. "attachment": [
  384. { "time": 1.4333, "name": null },
  385. { "time": 1.5333, "name": "youyan" }
  386. ]
  387. },
  388. "zuiba": {
  389. "attachment": [
  390. { "time": 0, "name": "zuiba" },
  391. { "time": 1.3333, "name": "zuiba" }
  392. ]
  393. },
  394. "zuoyan": {
  395. "attachment": [
  396. { "time": 1.4333, "name": null },
  397. { "time": 1.5333, "name": "zuoyan" }
  398. ]
  399. }
  400. },
  401. "bones": {
  402. "root": {
  403. "rotate": [
  404. { "time": 0, "angle": 0 }
  405. ],
  406. "translate": [
  407. { "time": 0, "x": 0, "y": 0 }
  408. ],
  409. "scale": [
  410. { "time": 0, "x": 0.65, "y": 0.65 }
  411. ]
  412. },
  413. "bone": {
  414. "rotate": [
  415. { "time": 0, "angle": 0 }
  416. ],
  417. "translate": [
  418. { "time": 0, "x": 0, "y": 0 }
  419. ],
  420. "scale": [
  421. { "time": 0, "x": 1, "y": 1 }
  422. ]
  423. },
  424. "bone2": {
  425. "rotate": [
  426. { "time": 0, "angle": 0 }
  427. ],
  428. "translate": [
  429. { "time": 0, "x": 0, "y": 0 }
  430. ],
  431. "scale": [
  432. { "time": 0, "x": 1, "y": 1 }
  433. ]
  434. },
  435. "bone3": {
  436. "rotate": [
  437. { "time": 0, "angle": 0, "curve": "stepped" },
  438. { "time": 0.7, "angle": 0, "curve": "stepped" },
  439. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  440. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  441. { "time": 2.6667, "angle": 0 }
  442. ],
  443. "translate": [
  444. { "time": 0, "x": 0, "y": 0 },
  445. { "time": 0.7, "x": -0.03, "y": 0.4 },
  446. { "time": 1.3333, "x": 0, "y": 0 },
  447. { "time": 2.0333, "x": -0.03, "y": 0.4 },
  448. { "time": 2.6667, "x": 0, "y": 0 }
  449. ],
  450. "scale": [
  451. { "time": 0, "x": 1, "y": 1 },
  452. { "time": 0.7, "x": 1.04, "y": 1 },
  453. { "time": 1.3333, "x": 1, "y": 1 },
  454. { "time": 2.0333, "x": 1.04, "y": 1 },
  455. { "time": 2.6667, "x": 1, "y": 1 }
  456. ]
  457. },
  458. "bone4": {
  459. "rotate": [
  460. { "time": 0, "angle": 0, "curve": "stepped" },
  461. { "time": 0.7, "angle": 0, "curve": "stepped" },
  462. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  463. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  464. { "time": 2.6667, "angle": 0 }
  465. ],
  466. "translate": [
  467. { "time": 0, "x": 0, "y": 0 },
  468. { "time": 0.7, "x": 0.75, "y": 0 },
  469. { "time": 1.3333, "x": 0, "y": 0 },
  470. { "time": 2.0333, "x": 0.75, "y": 0 },
  471. { "time": 2.6667, "x": 0, "y": 0 }
  472. ],
  473. "scale": [
  474. { "time": 0, "x": 1, "y": 1 },
  475. { "time": 0.7, "x": 1.016, "y": 1 },
  476. { "time": 1.3333, "x": 1, "y": 1 },
  477. { "time": 2.0333, "x": 1.016, "y": 1 },
  478. { "time": 2.6667, "x": 1, "y": 1 }
  479. ]
  480. },
  481. "bone5": {
  482. "rotate": [
  483. { "time": 0, "angle": 0, "curve": "stepped" },
  484. { "time": 0.7, "angle": 0, "curve": "stepped" },
  485. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  486. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  487. { "time": 2.6667, "angle": 0 }
  488. ],
  489. "translate": [
  490. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  491. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  492. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  493. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  494. { "time": 2.6667, "x": 0, "y": 0 }
  495. ],
  496. "scale": [
  497. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  498. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  499. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  500. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  501. { "time": 2.6667, "x": 1, "y": 1 }
  502. ]
  503. },
  504. "bone6": {
  505. "rotate": [
  506. { "time": 0, "angle": 0, "curve": "stepped" },
  507. { "time": 0.7, "angle": 0, "curve": "stepped" },
  508. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  509. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  510. { "time": 2.6667, "angle": 0 }
  511. ],
  512. "translate": [
  513. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  514. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  515. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  516. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  517. { "time": 2.6667, "x": 0, "y": 0 }
  518. ],
  519. "scale": [
  520. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  521. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  522. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  523. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  524. { "time": 2.6667, "x": 1, "y": 1 }
  525. ]
  526. },
  527. "bone7": {
  528. "rotate": [
  529. { "time": 0, "angle": 0 },
  530. { "time": 0.7, "angle": -5.87 },
  531. { "time": 1.3333, "angle": 0 },
  532. { "time": 2.0333, "angle": -5.87 },
  533. { "time": 2.6667, "angle": 0 }
  534. ],
  535. "translate": [
  536. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  537. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  538. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  539. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  540. { "time": 2.6667, "x": 0, "y": 0 }
  541. ],
  542. "scale": [
  543. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  544. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  545. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  546. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  547. { "time": 2.6667, "x": 1, "y": 1 }
  548. ]
  549. },
  550. "bone8": {
  551. "rotate": [
  552. { "time": 0, "angle": 0 },
  553. { "time": 0.7, "angle": -5.87 },
  554. { "time": 1.3333, "angle": 0 },
  555. { "time": 2.0333, "angle": -5.87 },
  556. { "time": 2.6667, "angle": 0 }
  557. ],
  558. "translate": [
  559. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  560. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  561. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  562. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  563. { "time": 2.6667, "x": 0, "y": 0 }
  564. ],
  565. "scale": [
  566. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  567. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  568. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  569. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  570. { "time": 2.6667, "x": 1, "y": 1 }
  571. ]
  572. },
  573. "bone9": {
  574. "rotate": [
  575. { "time": 0, "angle": 0 },
  576. { "time": 0.7, "angle": -5.87 },
  577. { "time": 1.3333, "angle": 0 },
  578. { "time": 2.0333, "angle": -5.87 },
  579. { "time": 2.6667, "angle": 0 }
  580. ],
  581. "translate": [
  582. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  583. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  584. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  585. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  586. { "time": 2.6667, "x": 0, "y": 0 }
  587. ],
  588. "scale": [
  589. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  590. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  591. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  592. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  593. { "time": 2.6667, "x": 1, "y": 1 }
  594. ]
  595. },
  596. "bone10": {
  597. "rotate": [
  598. { "time": 0, "angle": 0, "curve": "stepped" },
  599. { "time": 0.7, "angle": 0, "curve": "stepped" },
  600. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  601. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  602. { "time": 2.6667, "angle": 0 }
  603. ],
  604. "translate": [
  605. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  606. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  607. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  608. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  609. { "time": 2.6667, "x": 0, "y": 0 }
  610. ],
  611. "scale": [
  612. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  613. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  614. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  615. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  616. { "time": 2.6667, "x": 1, "y": 1 }
  617. ]
  618. },
  619. "bone11": {
  620. "rotate": [
  621. { "time": 0, "angle": 0 },
  622. { "time": 0.7, "angle": -8.83 },
  623. { "time": 1.3333, "angle": 0 },
  624. { "time": 2.0333, "angle": -8.83 },
  625. { "time": 2.6667, "angle": 0 }
  626. ],
  627. "translate": [
  628. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  629. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  630. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  631. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  632. { "time": 2.6667, "x": 0, "y": 0 }
  633. ],
  634. "scale": [
  635. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  636. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  637. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  638. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  639. { "time": 2.6667, "x": 1, "y": 1 }
  640. ]
  641. },
  642. "bone12": {
  643. "rotate": [
  644. { "time": 0, "angle": 0 },
  645. { "time": 0.7, "angle": 4.71 },
  646. { "time": 1.3333, "angle": 0 },
  647. { "time": 2.0333, "angle": 4.71 },
  648. { "time": 2.6667, "angle": 0 }
  649. ],
  650. "translate": [
  651. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  652. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  653. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  654. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  655. { "time": 2.6667, "x": 0, "y": 0 }
  656. ],
  657. "scale": [
  658. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  659. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  660. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  661. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  662. { "time": 2.6667, "x": 1, "y": 1 }
  663. ]
  664. },
  665. "bone13": {
  666. "rotate": [
  667. { "time": 0, "angle": 0 },
  668. { "time": 0.7, "angle": -4.41 },
  669. { "time": 1.3333, "angle": 0 },
  670. { "time": 2.0333, "angle": -4.41 },
  671. { "time": 2.6667, "angle": 0 }
  672. ],
  673. "translate": [
  674. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  675. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  676. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  677. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  678. { "time": 2.6667, "x": 0, "y": 0 }
  679. ],
  680. "scale": [
  681. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  682. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  683. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  684. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  685. { "time": 2.6667, "x": 1, "y": 1 }
  686. ]
  687. },
  688. "bone14": {
  689. "rotate": [
  690. { "time": 0, "angle": 0, "curve": "stepped" },
  691. { "time": 0.7, "angle": 0, "curve": "stepped" },
  692. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  693. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  694. { "time": 2.6667, "angle": 0 }
  695. ],
  696. "translate": [
  697. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  698. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  699. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  700. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  701. { "time": 2.6667, "x": 0, "y": 0 }
  702. ],
  703. "scale": [
  704. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  705. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  706. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  707. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  708. { "time": 2.6667, "x": 1, "y": 1 }
  709. ]
  710. },
  711. "bone15": {
  712. "rotate": [
  713. { "time": 0, "angle": 0 },
  714. { "time": 0.7, "angle": -2.5 },
  715. { "time": 1.3333, "angle": 0 },
  716. { "time": 2.0333, "angle": -2.5 },
  717. { "time": 2.6667, "angle": 0 }
  718. ],
  719. "translate": [
  720. { "time": 0, "x": 0, "y": 0 },
  721. { "time": 0.7, "x": 0.05, "y": -0.69 },
  722. { "time": 1.3333, "x": 0, "y": 0 },
  723. { "time": 2.0333, "x": 0.05, "y": -0.69 },
  724. { "time": 2.6667, "x": 0, "y": 0 }
  725. ],
  726. "scale": [
  727. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  728. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  729. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  730. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  731. { "time": 2.6667, "x": 1, "y": 1 }
  732. ]
  733. },
  734. "bone16": {
  735. "rotate": [
  736. { "time": 0, "angle": 0 },
  737. { "time": 0.7, "angle": -0.15 },
  738. { "time": 1.3333, "angle": 0 },
  739. { "time": 2.0333, "angle": -0.15 },
  740. { "time": 2.6667, "angle": 0 }
  741. ],
  742. "translate": [
  743. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  744. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  745. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  746. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  747. { "time": 2.6667, "x": 0, "y": 0 }
  748. ],
  749. "scale": [
  750. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  751. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  752. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  753. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  754. { "time": 2.6667, "x": 1, "y": 1 }
  755. ]
  756. },
  757. "bone17": {
  758. "rotate": [
  759. { "time": 0, "angle": 0 },
  760. { "time": 0.7, "angle": -8.86 },
  761. { "time": 1.3333, "angle": 0 },
  762. { "time": 2.0333, "angle": -8.86 },
  763. { "time": 2.6667, "angle": 0 }
  764. ],
  765. "translate": [
  766. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  767. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  768. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  769. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  770. { "time": 2.6667, "x": 0, "y": 0 }
  771. ],
  772. "scale": [
  773. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  774. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  775. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  776. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  777. { "time": 2.6667, "x": 1, "y": 1 }
  778. ]
  779. },
  780. "bone18": {
  781. "rotate": [
  782. { "time": 0, "angle": 0, "curve": "stepped" },
  783. { "time": 0.3333, "angle": 0 },
  784. { "time": 0.6667, "angle": 0.97 },
  785. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  786. { "time": 1.6667, "angle": 0 },
  787. { "time": 2, "angle": 0.97 },
  788. { "time": 2.6667, "angle": 0 }
  789. ],
  790. "translate": [
  791. { "time": 0, "x": 0, "y": 0 },
  792. { "time": 0.3333, "x": 0.01, "y": -0.08 },
  793. { "time": 0.6667, "x": -0.14, "y": 1.11 },
  794. { "time": 1.3333, "x": 0, "y": 0 },
  795. { "time": 1.6667, "x": 0.01, "y": -0.08 },
  796. { "time": 2, "x": -0.14, "y": 1.11 },
  797. { "time": 2.6667, "x": 0, "y": 0 }
  798. ],
  799. "scale": [
  800. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  801. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  802. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  803. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  804. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  805. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  806. { "time": 2.6667, "x": 1, "y": 1 }
  807. ]
  808. },
  809. "bone19": {
  810. "rotate": [
  811. { "time": 0, "angle": 0 },
  812. { "time": 0.3333, "angle": -1.22 },
  813. { "time": 0.6667, "angle": 0.16 },
  814. { "time": 1.3333, "angle": 0 },
  815. { "time": 1.6667, "angle": -1.22 },
  816. { "time": 2, "angle": 0.16 },
  817. { "time": 2.6667, "angle": 0 }
  818. ],
  819. "translate": [
  820. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  821. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  822. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  823. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  824. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  825. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  826. { "time": 2.6667, "x": 0, "y": 0 }
  827. ],
  828. "scale": [
  829. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  830. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  831. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  832. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  833. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  834. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  835. { "time": 2.6667, "x": 1, "y": 1 }
  836. ]
  837. },
  838. "bone20": {
  839. "rotate": [
  840. { "time": 0, "angle": 0 },
  841. { "time": 0.3333, "angle": -1.22 },
  842. { "time": 0.6667, "angle": 1.21 },
  843. { "time": 1.3333, "angle": 0 },
  844. { "time": 1.6667, "angle": -1.22 },
  845. { "time": 2, "angle": 1.21 },
  846. { "time": 2.6667, "angle": 0 }
  847. ],
  848. "translate": [
  849. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  850. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  851. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  852. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  853. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  854. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  855. { "time": 2.6667, "x": 0, "y": 0 }
  856. ],
  857. "scale": [
  858. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  859. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  860. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  861. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  862. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  863. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  864. { "time": 2.6667, "x": 1, "y": 1 }
  865. ]
  866. },
  867. "bone21": {
  868. "rotate": [
  869. { "time": 0, "angle": 0 },
  870. { "time": 0.3333, "angle": -1.22 },
  871. { "time": 0.6667, "angle": -7.67 },
  872. { "time": 1.3333, "angle": 0 },
  873. { "time": 1.6667, "angle": -1.22 },
  874. { "time": 2, "angle": -7.67 },
  875. { "time": 2.6667, "angle": 0 }
  876. ],
  877. "translate": [
  878. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  879. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  880. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  881. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  882. { "time": 1.6667, "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.3333, "x": 1, "y": 1, "curve": "stepped" },
  889. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  890. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  891. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  892. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  893. { "time": 2.6667, "x": 1, "y": 1 }
  894. ]
  895. },
  896. "bone22": {
  897. "rotate": [
  898. { "time": 0, "angle": 0 },
  899. { "time": 0.3333, "angle": -9.16 },
  900. { "time": 0.6667, "angle": -19.84 },
  901. { "time": 1.3333, "angle": 0 },
  902. { "time": 1.6667, "angle": -9.16 },
  903. { "time": 2, "angle": -19.84 },
  904. { "time": 2.6667, "angle": 0 }
  905. ],
  906. "translate": [
  907. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  908. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  909. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  910. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  911. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  912. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  913. { "time": 2.6667, "x": 0, "y": 0 }
  914. ],
  915. "scale": [
  916. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  917. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  918. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  919. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  920. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  921. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  922. { "time": 2.6667, "x": 1, "y": 1 }
  923. ]
  924. },
  925. "bone23": {
  926. "rotate": [
  927. { "time": 0, "angle": 0 },
  928. { "time": 0.3333, "angle": -9.16 },
  929. { "time": 0.6667, "angle": -19.84 },
  930. { "time": 1.3333, "angle": 0 },
  931. { "time": 1.6667, "angle": -9.16 },
  932. { "time": 2, "angle": -19.84 },
  933. { "time": 2.6667, "angle": 0 }
  934. ],
  935. "translate": [
  936. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  937. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  938. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  939. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  940. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  941. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  942. { "time": 2.6667, "x": 0, "y": 0 }
  943. ],
  944. "scale": [
  945. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  946. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  947. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  948. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  949. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  950. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  951. { "time": 2.6667, "x": 1, "y": 1 }
  952. ]
  953. },
  954. "bone24": {
  955. "rotate": [
  956. { "time": 0, "angle": 0 },
  957. { "time": 0.7, "angle": -11.62 },
  958. { "time": 1.3333, "angle": 0 },
  959. { "time": 2.0333, "angle": -11.62 },
  960. { "time": 2.6667, "angle": 0 }
  961. ],
  962. "translate": [
  963. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  964. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  965. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  966. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  967. { "time": 2.6667, "x": 0, "y": 0 }
  968. ],
  969. "scale": [
  970. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  971. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  972. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  973. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  974. { "time": 2.6667, "x": 1, "y": 1 }
  975. ]
  976. },
  977. "bone25": {
  978. "rotate": [
  979. { "time": 0, "angle": 0 },
  980. { "time": 0.7, "angle": -5.98 },
  981. { "time": 1.3333, "angle": 0 },
  982. { "time": 2.0333, "angle": -5.98 },
  983. { "time": 2.6667, "angle": 0 }
  984. ],
  985. "translate": [
  986. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  987. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  988. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  989. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  990. { "time": 2.6667, "x": 0, "y": 0 }
  991. ],
  992. "scale": [
  993. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  994. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  995. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  996. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  997. { "time": 2.6667, "x": 1, "y": 1 }
  998. ]
  999. },
  1000. "bone26": {
  1001. "rotate": [
  1002. { "time": 0, "angle": 0 },
  1003. { "time": 0.7, "angle": 4.09 },
  1004. { "time": 1.3333, "angle": 0 },
  1005. { "time": 2.0333, "angle": 4.09 },
  1006. { "time": 2.6667, "angle": 0 }
  1007. ],
  1008. "translate": [
  1009. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1010. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1011. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1012. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1013. { "time": 2.6667, "x": 0, "y": 0 }
  1014. ],
  1015. "scale": [
  1016. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1017. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1018. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1019. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1020. { "time": 2.6667, "x": 1, "y": 1 }
  1021. ]
  1022. },
  1023. "bone27": {
  1024. "rotate": [
  1025. { "time": 0, "angle": 0 },
  1026. { "time": 0.7, "angle": 4.09 },
  1027. { "time": 1.3333, "angle": 0 },
  1028. { "time": 2.0333, "angle": 4.09 },
  1029. { "time": 2.6667, "angle": 0 }
  1030. ],
  1031. "translate": [
  1032. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1033. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1034. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1035. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1036. { "time": 2.6667, "x": 0, "y": 0 }
  1037. ],
  1038. "scale": [
  1039. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1040. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1041. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1042. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1043. { "time": 2.6667, "x": 1, "y": 1 }
  1044. ]
  1045. },
  1046. "bone28": {
  1047. "rotate": [
  1048. { "time": 0, "angle": 0 },
  1049. { "time": 0.7, "angle": 4.09 },
  1050. { "time": 1.3333, "angle": 0 },
  1051. { "time": 2.0333, "angle": 4.09 },
  1052. { "time": 2.6667, "angle": 0 }
  1053. ],
  1054. "translate": [
  1055. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1056. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1057. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1058. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1059. { "time": 2.6667, "x": 0, "y": 0 }
  1060. ],
  1061. "scale": [
  1062. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1063. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1064. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1065. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1066. { "time": 2.6667, "x": 1, "y": 1 }
  1067. ]
  1068. },
  1069. "bone41": {
  1070. "rotate": [
  1071. { "time": 0, "angle": 0 },
  1072. { "time": 0.7, "angle": -7.12 },
  1073. { "time": 1.3333, "angle": 0 },
  1074. { "time": 2.0333, "angle": -7.12 },
  1075. { "time": 2.6667, "angle": 0 }
  1076. ],
  1077. "translate": [
  1078. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1079. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1080. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1081. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1082. { "time": 2.6667, "x": 0, "y": 0 }
  1083. ],
  1084. "scale": [
  1085. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1086. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1087. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1088. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1089. { "time": 2.6667, "x": 1, "y": 1 }
  1090. ]
  1091. },
  1092. "bone42": {
  1093. "rotate": [
  1094. { "time": 0, "angle": 0 },
  1095. { "time": 0.7, "angle": -12.6 },
  1096. { "time": 1.3333, "angle": 0 },
  1097. { "time": 2.0333, "angle": -12.6 },
  1098. { "time": 2.6667, "angle": 0 }
  1099. ],
  1100. "translate": [
  1101. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1102. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1103. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1104. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1105. { "time": 2.6667, "x": 0, "y": 0 }
  1106. ],
  1107. "scale": [
  1108. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1109. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1110. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1111. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1112. { "time": 2.6667, "x": 1, "y": 1 }
  1113. ]
  1114. },
  1115. "bone43": {
  1116. "rotate": [
  1117. { "time": 0, "angle": 0 },
  1118. { "time": 0.7, "angle": -12.6 },
  1119. { "time": 1.3333, "angle": 0 },
  1120. { "time": 2.0333, "angle": -12.6 },
  1121. { "time": 2.6667, "angle": 0 }
  1122. ],
  1123. "translate": [
  1124. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1125. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1126. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1127. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1128. { "time": 2.6667, "x": 0, "y": 0 }
  1129. ],
  1130. "scale": [
  1131. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1132. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1133. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1134. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1135. { "time": 2.6667, "x": 1, "y": 1 }
  1136. ]
  1137. },
  1138. "bone44": {
  1139. "rotate": [
  1140. { "time": 0, "angle": 0 },
  1141. { "time": 0.7, "angle": 5.8 },
  1142. { "time": 1.3333, "angle": 0 },
  1143. { "time": 2.0333, "angle": 5.8 },
  1144. { "time": 2.6667, "angle": 0 }
  1145. ],
  1146. "translate": [
  1147. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1148. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1149. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1150. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1151. { "time": 2.6667, "x": 0, "y": 0 }
  1152. ],
  1153. "scale": [
  1154. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1155. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1156. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1157. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1158. { "time": 2.6667, "x": 1, "y": 1 }
  1159. ]
  1160. },
  1161. "bone45": {
  1162. "rotate": [
  1163. { "time": 0, "angle": 0 },
  1164. { "time": 0.7, "angle": -12.6 },
  1165. { "time": 1.3333, "angle": 0 },
  1166. { "time": 2.0333, "angle": -12.6 },
  1167. { "time": 2.6667, "angle": 0 }
  1168. ],
  1169. "translate": [
  1170. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1171. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1172. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1173. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1174. { "time": 2.6667, "x": 0, "y": 0 }
  1175. ],
  1176. "scale": [
  1177. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1178. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1179. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1180. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1181. { "time": 2.6667, "x": 1, "y": 1 }
  1182. ]
  1183. },
  1184. "bone46": {
  1185. "rotate": [
  1186. { "time": 0, "angle": -27.92 },
  1187. { "time": 0.7, "angle": -17.99 },
  1188. { "time": 1.3333, "angle": -27.92 },
  1189. { "time": 2.0333, "angle": -17.99 },
  1190. { "time": 2.6667, "angle": -27.92 }
  1191. ],
  1192. "translate": [
  1193. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1194. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1195. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1196. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1197. { "time": 2.6667, "x": 0, "y": 0 }
  1198. ],
  1199. "scale": [
  1200. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1201. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1202. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1203. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1204. { "time": 2.6667, "x": 1, "y": 1 }
  1205. ]
  1206. },
  1207. "bone47": {
  1208. "rotate": [
  1209. { "time": 0, "angle": -5.62 },
  1210. { "time": 0.7, "angle": -10.27 },
  1211. { "time": 1.3333, "angle": -5.62 },
  1212. { "time": 2.0333, "angle": -10.27 },
  1213. { "time": 2.6667, "angle": -5.62 }
  1214. ],
  1215. "translate": [
  1216. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1217. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1218. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1219. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1220. { "time": 2.6667, "x": 0, "y": 0 }
  1221. ],
  1222. "scale": [
  1223. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1224. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1225. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1226. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1227. { "time": 2.6667, "x": 1, "y": 1 }
  1228. ]
  1229. },
  1230. "bone48": {
  1231. "rotate": [
  1232. { "time": 0, "angle": 0, "curve": "stepped" },
  1233. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1234. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1235. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1236. { "time": 2.6667, "angle": 0 }
  1237. ],
  1238. "translate": [
  1239. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1240. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1241. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1242. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1243. { "time": 2.6667, "x": 0, "y": 0 }
  1244. ],
  1245. "scale": [
  1246. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1247. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1248. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1249. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1250. { "time": 2.6667, "x": 1, "y": 1 }
  1251. ]
  1252. },
  1253. "bone49": {
  1254. "rotate": [
  1255. { "time": 0, "angle": 13.5 },
  1256. { "time": 0.7, "angle": 4.76 },
  1257. { "time": 1.3333, "angle": 13.5 },
  1258. { "time": 2.0333, "angle": 4.76 },
  1259. { "time": 2.6667, "angle": 13.5 }
  1260. ],
  1261. "translate": [
  1262. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1263. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1264. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1265. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1266. { "time": 2.6667, "x": 0, "y": 0 }
  1267. ],
  1268. "scale": [
  1269. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1270. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1271. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1272. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1273. { "time": 2.6667, "x": 1, "y": 1 }
  1274. ]
  1275. },
  1276. "bone50": {
  1277. "rotate": [
  1278. { "time": 0, "angle": 3.51 },
  1279. { "time": 0.7, "angle": 16.19 },
  1280. { "time": 1.3333, "angle": 3.51 },
  1281. { "time": 2.0333, "angle": 16.19 },
  1282. { "time": 2.6667, "angle": 3.51 }
  1283. ],
  1284. "translate": [
  1285. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1286. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1287. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1288. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1289. { "time": 2.6667, "x": 0, "y": 0 }
  1290. ],
  1291. "scale": [
  1292. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1293. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1294. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1295. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1296. { "time": 2.6667, "x": 1, "y": 1 }
  1297. ]
  1298. },
  1299. "bone51": {
  1300. "rotate": [
  1301. { "time": 0, "angle": 9 },
  1302. { "time": 0.7, "angle": 0 },
  1303. { "time": 1.3333, "angle": 9 },
  1304. { "time": 2.0333, "angle": 0 },
  1305. { "time": 2.6667, "angle": 9 }
  1306. ],
  1307. "translate": [
  1308. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1309. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1310. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1311. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1312. { "time": 2.6667, "x": 0, "y": 0 }
  1313. ],
  1314. "scale": [
  1315. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1316. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1317. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1318. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1319. { "time": 2.6667, "x": 1, "y": 1 }
  1320. ]
  1321. },
  1322. "bone52": {
  1323. "rotate": [
  1324. { "time": 0, "angle": 0, "curve": "stepped" },
  1325. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1326. { "time": 2.6667, "angle": 0 }
  1327. ],
  1328. "translate": [
  1329. { "time": 0, "x": 0, "y": 0 },
  1330. { "time": 0.6667, "x": 0.43, "y": 1.85 },
  1331. { "time": 1.3333, "x": 0, "y": 0 },
  1332. { "time": 2, "x": 0.43, "y": 1.85 },
  1333. { "time": 2.6667, "x": 0, "y": 0 }
  1334. ],
  1335. "scale": [
  1336. { "time": 0, "x": 1, "y": 1 },
  1337. { "time": 0.6667, "x": 1, "y": 1.05 },
  1338. { "time": 1.3333, "x": 1, "y": 1 },
  1339. { "time": 2, "x": 1, "y": 1.05 },
  1340. { "time": 2.6667, "x": 1, "y": 1 }
  1341. ]
  1342. },
  1343. "bone53": {
  1344. "rotate": [
  1345. { "time": 0, "angle": 0, "curve": "stepped" },
  1346. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1347. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1348. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1349. { "time": 2.6667, "angle": 0 }
  1350. ],
  1351. "translate": [
  1352. { "time": 0, "x": 0, "y": 0 },
  1353. { "time": 0.7, "x": -1.32, "y": -0.07 },
  1354. { "time": 1.3333, "x": 0, "y": 0 },
  1355. { "time": 2.0333, "x": -1.32, "y": -0.07 },
  1356. { "time": 2.6667, "x": 0, "y": 0 }
  1357. ],
  1358. "scale": [
  1359. { "time": 0, "x": 1, "y": 1 },
  1360. { "time": 0.7, "x": 1.03, "y": 1.03 },
  1361. { "time": 1.3333, "x": 1, "y": 1 },
  1362. { "time": 2.0333, "x": 1.03, "y": 1.03 },
  1363. { "time": 2.6667, "x": 1, "y": 1 }
  1364. ]
  1365. },
  1366. "bone54": {
  1367. "rotate": [
  1368. { "time": 0, "angle": 0, "curve": "stepped" },
  1369. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1370. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1371. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1372. { "time": 2.6667, "angle": 0 }
  1373. ],
  1374. "translate": [
  1375. { "time": 0, "x": 0, "y": 0 },
  1376. { "time": 0.7, "x": 0.06, "y": 0 },
  1377. { "time": 1.3333, "x": 0, "y": 0 },
  1378. { "time": 2.0333, "x": 0.06, "y": 0 },
  1379. { "time": 2.6667, "x": 0, "y": 0 }
  1380. ],
  1381. "scale": [
  1382. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1383. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1384. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1385. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1386. { "time": 2.6667, "x": 1, "y": 1 }
  1387. ]
  1388. },
  1389. "bone55": {
  1390. "rotate": [
  1391. { "time": 0, "angle": 0 },
  1392. { "time": 0.7, "angle": -4.43 },
  1393. { "time": 1.3333, "angle": 0 },
  1394. { "time": 2.0333, "angle": -4.43 },
  1395. { "time": 2.6667, "angle": 0 }
  1396. ],
  1397. "translate": [
  1398. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1399. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1400. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1401. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1402. { "time": 2.6667, "x": 0, "y": 0 }
  1403. ],
  1404. "scale": [
  1405. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1406. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1407. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1408. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1409. { "time": 2.6667, "x": 1, "y": 1 }
  1410. ]
  1411. },
  1412. "bone56": {
  1413. "rotate": [
  1414. { "time": 0, "angle": 0 },
  1415. { "time": 0.7, "angle": -9.79 },
  1416. { "time": 1.3333, "angle": 0 },
  1417. { "time": 2.0333, "angle": -9.79 },
  1418. { "time": 2.6667, "angle": 0 }
  1419. ],
  1420. "translate": [
  1421. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1422. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1423. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1424. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1425. { "time": 2.6667, "x": 0, "y": 0 }
  1426. ],
  1427. "scale": [
  1428. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1429. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1430. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1431. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1432. { "time": 2.6667, "x": 1, "y": 1 }
  1433. ]
  1434. },
  1435. "bone57": {
  1436. "rotate": [
  1437. { "time": 0, "angle": 0 },
  1438. { "time": 0.7, "angle": -9.79 },
  1439. { "time": 1.3333, "angle": 0 },
  1440. { "time": 2.0333, "angle": -9.79 },
  1441. { "time": 2.6667, "angle": 0 }
  1442. ],
  1443. "translate": [
  1444. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1445. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1446. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1447. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1448. { "time": 2.6667, "x": 0, "y": 0 }
  1449. ],
  1450. "scale": [
  1451. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1452. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1453. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1454. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1455. { "time": 2.6667, "x": 1, "y": 1 }
  1456. ]
  1457. },
  1458. "bone58": {
  1459. "rotate": [
  1460. { "time": 0, "angle": 0, "curve": "stepped" },
  1461. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1462. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1463. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1464. { "time": 2.6667, "angle": 0 }
  1465. ],
  1466. "translate": [
  1467. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1468. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1469. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1470. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1471. { "time": 2.6667, "x": 0, "y": 0 }
  1472. ],
  1473. "scale": [
  1474. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1475. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1476. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1477. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1478. { "time": 2.6667, "x": 1, "y": 1 }
  1479. ]
  1480. },
  1481. "bone59": {
  1482. "rotate": [
  1483. { "time": 0, "angle": 0, "curve": "stepped" },
  1484. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1485. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1486. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1487. { "time": 2.6667, "angle": 0 }
  1488. ],
  1489. "translate": [
  1490. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1491. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1492. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1493. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1494. { "time": 2.6667, "x": 0, "y": 0 }
  1495. ],
  1496. "scale": [
  1497. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1498. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1499. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1500. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1501. { "time": 2.6667, "x": 1, "y": 1 }
  1502. ]
  1503. },
  1504. "bone60": {
  1505. "rotate": [
  1506. { "time": 0, "angle": 0, "curve": "stepped" },
  1507. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1508. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1509. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1510. { "time": 2.6667, "angle": 0 }
  1511. ],
  1512. "translate": [
  1513. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1514. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1515. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1516. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1517. { "time": 2.6667, "x": 0, "y": 0 }
  1518. ],
  1519. "scale": [
  1520. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1521. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1522. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1523. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1524. { "time": 2.6667, "x": 1, "y": 1 }
  1525. ]
  1526. },
  1527. "bone61": {
  1528. "rotate": [
  1529. { "time": 0, "angle": 0, "curve": "stepped" },
  1530. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1531. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1532. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1533. { "time": 2.6667, "angle": 0 }
  1534. ],
  1535. "translate": [
  1536. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1537. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1538. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1539. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1540. { "time": 2.6667, "x": 0, "y": 0 }
  1541. ],
  1542. "scale": [
  1543. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1544. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1545. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1546. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1547. { "time": 2.6667, "x": 1, "y": 1 }
  1548. ]
  1549. },
  1550. "bone62": {
  1551. "rotate": [
  1552. { "time": 0, "angle": 0, "curve": "stepped" },
  1553. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1554. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1555. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1556. { "time": 2.6667, "angle": 0 }
  1557. ],
  1558. "translate": [
  1559. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1560. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1561. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1562. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1563. { "time": 2.6667, "x": 0, "y": 0 }
  1564. ],
  1565. "scale": [
  1566. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1567. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1568. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1569. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1570. { "time": 2.6667, "x": 1, "y": 1 }
  1571. ]
  1572. },
  1573. "bone63": {
  1574. "rotate": [
  1575. { "time": 0, "angle": 0, "curve": "stepped" },
  1576. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1577. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1578. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1579. { "time": 2.6667, "angle": 0 }
  1580. ],
  1581. "translate": [
  1582. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1583. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1584. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1585. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1586. { "time": 2.6667, "x": 0, "y": 0 }
  1587. ],
  1588. "scale": [
  1589. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1590. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1591. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1592. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1593. { "time": 2.6667, "x": 1, "y": 1 }
  1594. ]
  1595. },
  1596. "bone64": {
  1597. "rotate": [
  1598. { "time": 0, "angle": 0, "curve": "stepped" },
  1599. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1600. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1601. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1602. { "time": 2.6667, "angle": 0 }
  1603. ],
  1604. "translate": [
  1605. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1606. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1607. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1608. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1609. { "time": 2.6667, "x": 0, "y": 0 }
  1610. ],
  1611. "scale": [
  1612. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1613. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1614. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1615. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1616. { "time": 2.6667, "x": 1, "y": 1 }
  1617. ]
  1618. },
  1619. "bone65": {
  1620. "rotate": [
  1621. { "time": 0, "angle": 0, "curve": "stepped" },
  1622. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1623. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1624. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1625. { "time": 2.6667, "angle": 0 }
  1626. ],
  1627. "translate": [
  1628. { "time": 0, "x": 0, "y": 0 },
  1629. { "time": 0.7, "x": 0.03, "y": 0.97 },
  1630. { "time": 1.3333, "x": 0, "y": 0 },
  1631. { "time": 2.0333, "x": 0.03, "y": 0.97 },
  1632. { "time": 2.6667, "x": 0, "y": 0 }
  1633. ],
  1634. "scale": [
  1635. { "time": 0, "x": 1, "y": 1 },
  1636. { "time": 0.7, "x": 1.1, "y": 1.1 },
  1637. { "time": 1.3333, "x": 1, "y": 1 },
  1638. { "time": 2.0333, "x": 1.1, "y": 1.1 },
  1639. { "time": 2.6667, "x": 1, "y": 1 }
  1640. ]
  1641. },
  1642. "bone66": {
  1643. "rotate": [
  1644. { "time": 0, "angle": 0, "curve": "stepped" },
  1645. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1646. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1647. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1648. { "time": 2.6667, "angle": 0 }
  1649. ],
  1650. "translate": [
  1651. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1652. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1653. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1654. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1655. { "time": 2.6667, "x": 0, "y": 0 }
  1656. ],
  1657. "scale": [
  1658. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1659. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1660. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1661. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1662. { "time": 2.6667, "x": 1, "y": 1 }
  1663. ]
  1664. },
  1665. "bone67": {
  1666. "rotate": [
  1667. { "time": 0, "angle": 0, "curve": "stepped" },
  1668. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1669. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1670. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1671. { "time": 1.6667, "angle": 0 }
  1672. ],
  1673. "translate": [
  1674. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1675. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1676. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1677. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1678. { "time": 1.6667, "x": 0, "y": 0 }
  1679. ],
  1680. "scale": [
  1681. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1682. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1683. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1684. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1685. { "time": 1.6667, "x": 1, "y": 1 }
  1686. ]
  1687. },
  1688. "bone68": {
  1689. "rotate": [
  1690. { "time": 0, "angle": 0, "curve": "stepped" },
  1691. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1692. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1693. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1694. { "time": 1.6667, "angle": 0 }
  1695. ],
  1696. "translate": [
  1697. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1698. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1699. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1700. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1701. { "time": 1.6667, "x": 0, "y": 0 }
  1702. ],
  1703. "scale": [
  1704. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1705. { "time": 1.3333, "x": 1, "y": 1 },
  1706. { "time": 1.4333, "x": 0.611, "y": 1, "curve": "stepped" },
  1707. { "time": 1.5333, "x": 0.611, "y": 1 },
  1708. { "time": 1.6667, "x": 1, "y": 1 }
  1709. ]
  1710. },
  1711. "bone69": {
  1712. "rotate": [
  1713. { "time": 0, "angle": 0, "curve": "stepped" },
  1714. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1715. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1716. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1717. { "time": 1.6667, "angle": 0 }
  1718. ],
  1719. "translate": [
  1720. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1721. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1722. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1723. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1724. { "time": 1.6667, "x": 0, "y": 0 }
  1725. ],
  1726. "scale": [
  1727. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1728. { "time": 1.3333, "x": 1, "y": 1 },
  1729. { "time": 1.4333, "x": 0.515, "y": 1, "curve": "stepped" },
  1730. { "time": 1.5333, "x": 0.515, "y": 1 },
  1731. { "time": 1.6667, "x": 1, "y": 1 }
  1732. ]
  1733. },
  1734. "bone70": {
  1735. "rotate": [
  1736. { "time": 0, "angle": 0, "curve": "stepped" },
  1737. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1738. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1739. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1740. { "time": 1.6667, "angle": 0 }
  1741. ],
  1742. "translate": [
  1743. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1744. { "time": 1.3333, "x": 0, "y": 0 },
  1745. { "time": 1.4333, "x": -3.72, "y": 0.34, "curve": "stepped" },
  1746. { "time": 1.5333, "x": -3.72, "y": 0.34 },
  1747. { "time": 1.6667, "x": 0, "y": 0 }
  1748. ],
  1749. "scale": [
  1750. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1751. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1752. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1753. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1754. { "time": 1.6667, "x": 1, "y": 1 }
  1755. ]
  1756. },
  1757. "bone71": {
  1758. "rotate": [
  1759. { "time": 0, "angle": 0, "curve": "stepped" },
  1760. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1761. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1762. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1763. { "time": 2.6667, "angle": 0 }
  1764. ],
  1765. "translate": [
  1766. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1767. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1768. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1769. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1770. { "time": 2.6667, "x": 0, "y": 0 }
  1771. ],
  1772. "scale": [
  1773. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1774. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1775. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1776. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1777. { "time": 2.6667, "x": 1, "y": 1 }
  1778. ]
  1779. }
  1780. },
  1781. "deform": {
  1782. "default": {
  1783. "maozi": {
  1784. "maozi": [
  1785. { "time": 0 },
  1786. {
  1787. "time": 0.7,
  1788. "vertices": [ -0.57742, 1.97161, -0.35902, 1.82503, -0.32315, 1.64246, 0.26328, 2.51615, 0.51465, 1.23862, -0.28423, 2.40848, -0.43085, 2.19, 0, 0, 0, 0, -0.43085, 2.19, -0.97534, 3.03078, -0.25133, 1.27754, -0.43085, 2.19, -0.21542, 1.095 ]
  1789. },
  1790. { "time": 1.3333 },
  1791. {
  1792. "time": 2.0333,
  1793. "vertices": [ -0.57742, 1.97161, -0.35902, 1.82503, -0.32315, 1.64246, 0.26328, 2.51615, 0.51465, 1.23862, -0.28423, 2.40848, -0.43085, 2.19, 0, 0, 0, 0, -0.43085, 2.19, -0.97534, 3.03078, -0.25133, 1.27754, -0.43085, 2.19, -0.21542, 1.095 ]
  1794. },
  1795. { "time": 2.6667 }
  1796. ]
  1797. },
  1798. "shenti2": {
  1799. "shenti2": [
  1800. { "time": 0 },
  1801. {
  1802. "time": 0.7,
  1803. "offset": 42,
  1804. "vertices": [ 3.3259, 0.29562, 3.27052, 0.31361, 0, 0, 0, 0, 1.12956, 0.1004, 1.11076, 0.10651, 0, 0, 0, 0, 0, 0, 0, 0, 2.34281, 0.20825, 2.30375, 0.22092 ]
  1805. },
  1806. { "time": 1.3333 },
  1807. {
  1808. "time": 2.0333,
  1809. "offset": 42,
  1810. "vertices": [ 3.3259, 0.29562, 3.27052, 0.31361, 0, 0, 0, 0, 1.12956, 0.1004, 1.11076, 0.10651, 0, 0, 0, 0, 0, 0, 0, 0, 2.34281, 0.20825, 2.30375, 0.22092 ]
  1811. },
  1812. { "time": 2.6667 }
  1813. ]
  1814. },
  1815. "toufa1": {
  1816. "toufa1": [
  1817. { "time": 0 },
  1818. {
  1819. "time": 0.6667,
  1820. "vertices": [ 0.39952, 1.69834, 0.03018, 1.74451, 0.39952, 1.69834, 0.03018, 1.74451, 0.03018, 1.74451, 0.03018, 1.74451, -0.29135, 1.72028, 0.02257, 1.30667, -0.21822, 1.28852, -0.61649, 1.15234 ]
  1821. },
  1822. { "time": 1.3333 },
  1823. {
  1824. "time": 2,
  1825. "vertices": [ 0.39952, 1.69834, 0.03018, 1.74451, 0.39952, 1.69834, 0.03018, 1.74451, 0.03018, 1.74451, 0.03018, 1.74451, -0.29135, 1.72028, 0.02257, 1.30667, -0.21822, 1.28852, -0.61649, 1.15234 ]
  1826. },
  1827. { "time": 2.6667 }
  1828. ]
  1829. },
  1830. "toufa6": {
  1831. "toufa6": [
  1832. { "time": 0 },
  1833. {
  1834. "time": 0.7,
  1835. "vertices": [ 6.10953, -0.78817, 2.64791, 14.66366, -1.21557, 7.8475 ]
  1836. },
  1837. { "time": 1.3333 },
  1838. {
  1839. "time": 2.0333,
  1840. "vertices": [ 6.10953, -0.78817, 2.64791, 14.66366, -1.21557, 7.8475 ]
  1841. },
  1842. { "time": 2.6667 }
  1843. ]
  1844. },
  1845. "yifu2": {
  1846. "yifu2": [
  1847. { "time": 0, "curve": "stepped" },
  1848. { "time": 1.3333, "curve": "stepped" },
  1849. { "time": 2.6667 }
  1850. ]
  1851. },
  1852. "yifu3": {
  1853. "yifu3": [
  1854. { "time": 0 },
  1855. {
  1856. "time": 0.7,
  1857. "offset": 2,
  1858. "vertices": [ -1.13772, 4.91576 ]
  1859. },
  1860. { "time": 1.3333 },
  1861. {
  1862. "time": 2.0333,
  1863. "offset": 2,
  1864. "vertices": [ -1.13772, 4.91576 ]
  1865. },
  1866. { "time": 2.6667 }
  1867. ]
  1868. }
  1869. }
  1870. }
  1871. },
  1872. "stand2": {
  1873. "slots": {
  1874. "biyan": {
  1875. "attachment": [
  1876. { "time": 0, "name": null },
  1877. { "time": 0.2, "name": "biyan" },
  1878. { "time": 3.8667, "name": null }
  1879. ]
  1880. },
  1881. "xiao": {
  1882. "attachment": [
  1883. { "time": 0, "name": null },
  1884. { "time": 0.4, "name": null },
  1885. { "time": 0.4667, "name": "xiao" },
  1886. { "time": 0.6, "name": null },
  1887. { "time": 0.6667, "name": "xiao" },
  1888. { "time": 0.8, "name": null },
  1889. { "time": 0.8667, "name": "xiao" },
  1890. { "time": 1, "name": null },
  1891. { "time": 1.0667, "name": "xiao" },
  1892. { "time": 1.2667, "name": null },
  1893. { "time": 1.3333, "name": "xiao" },
  1894. { "time": 1.4667, "name": null },
  1895. { "time": 1.5333, "name": "xiao" },
  1896. { "time": 1.6333, "name": null },
  1897. { "time": 1.7, "name": "xiao" },
  1898. { "time": 1.9, "name": null },
  1899. { "time": 1.9667, "name": "xiao" },
  1900. { "time": 2.0667, "name": null },
  1901. { "time": 2.1333, "name": "xiao" },
  1902. { "time": 2.2667, "name": null },
  1903. { "time": 2.3333, "name": "xiao" },
  1904. { "time": 2.4667, "name": null },
  1905. { "time": 2.5333, "name": "xiao" },
  1906. { "time": 2.6667, "name": null },
  1907. { "time": 2.7333, "name": "xiao" },
  1908. { "time": 2.8667, "name": null },
  1909. { "time": 2.9333, "name": "xiao" },
  1910. { "time": 3.1333, "name": null },
  1911. { "time": 3.2, "name": "xiao" },
  1912. { "time": 3.3, "name": null },
  1913. { "time": 3.3667, "name": "xiao" },
  1914. { "time": 3.5, "name": null },
  1915. { "time": 3.5667, "name": "xiao" },
  1916. { "time": 3.7, "name": null },
  1917. { "time": 3.7667, "name": "xiao" },
  1918. { "time": 3.9, "name": null },
  1919. { "time": 3.9667, "name": "xiao" },
  1920. { "time": 4.0667, "name": null }
  1921. ]
  1922. },
  1923. "yin1": {
  1924. "color": [
  1925. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1926. { "time": 0.3333, "color": "ffffff00" },
  1927. { "time": 0.5667, "color": "ffffffff", "curve": "stepped" },
  1928. { "time": 1.1, "color": "ffffffff" },
  1929. { "time": 1.3333, "color": "ffffff00", "curve": "stepped" },
  1930. { "time": 1.6333, "color": "ffffff00", "curve": "stepped" },
  1931. { "time": 1.7, "color": "ffffff00" },
  1932. { "time": 1.9667, "color": "ffffffff", "curve": "stepped" },
  1933. { "time": 2.7667, "color": "ffffffff" },
  1934. { "time": 3.0333, "color": "ffffff00", "curve": "stepped" },
  1935. { "time": 3.1, "color": "ffffff00" }
  1936. ]
  1937. },
  1938. "yin2": {
  1939. "color": [
  1940. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1941. { "time": 0.6, "color": "ffffff00" },
  1942. { "time": 0.8333, "color": "ffffffff", "curve": "stepped" },
  1943. { "time": 1.5667, "color": "ffffffff" },
  1944. { "time": 1.7667, "color": "ffffff00", "curve": "stepped" },
  1945. { "time": 1.9667, "color": "ffffff00", "curve": "stepped" },
  1946. { "time": 2.0333, "color": "ffffff00" },
  1947. { "time": 2.3333, "color": "ffffffff", "curve": "stepped" },
  1948. { "time": 3.3667, "color": "ffffffff" },
  1949. { "time": 3.6333, "color": "ffffff00", "curve": "stepped" },
  1950. { "time": 3.7, "color": "ffffff00" }
  1951. ]
  1952. },
  1953. "yin3": {
  1954. "color": [
  1955. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1956. { "time": 0.3, "color": "ffffff00" },
  1957. { "time": 0.6333, "color": "ffffffff", "curve": "stepped" },
  1958. { "time": 1.6, "color": "ffffffff" },
  1959. { "time": 1.9667, "color": "ffffff00", "curve": "stepped" },
  1960. { "time": 2.4, "color": "ffffff00", "curve": "stepped" },
  1961. { "time": 2.4333, "color": "ffffff00" },
  1962. { "time": 2.7667, "color": "ffffffff", "curve": "stepped" },
  1963. { "time": 3.7333, "color": "ffffffff" },
  1964. { "time": 4.1, "color": "ffffff00", "curve": "stepped" },
  1965. { "time": 4.1333, "color": "ffffff00" }
  1966. ]
  1967. },
  1968. "youyan": {
  1969. "attachment": [
  1970. { "time": 0.2, "name": null },
  1971. { "time": 0.9, "name": null },
  1972. { "time": 1.4667, "name": null },
  1973. { "time": 2.0333, "name": null },
  1974. { "time": 2.6, "name": null },
  1975. { "time": 3.1667, "name": null },
  1976. { "time": 3.7333, "name": null },
  1977. { "time": 3.8667, "name": "youyan" }
  1978. ]
  1979. },
  1980. "zuiba": {
  1981. "attachment": [
  1982. { "time": 0, "name": "zuiba" },
  1983. { "time": 0.4, "name": "zuiba" },
  1984. { "time": 0.4667, "name": null },
  1985. { "time": 0.6, "name": "zuiba" },
  1986. { "time": 0.6667, "name": null },
  1987. { "time": 0.8, "name": "zuiba" },
  1988. { "time": 0.8667, "name": null },
  1989. { "time": 1, "name": "zuiba" },
  1990. { "time": 1.0667, "name": null },
  1991. { "time": 1.2667, "name": "zuiba" },
  1992. { "time": 1.3333, "name": null },
  1993. { "time": 1.4667, "name": "zuiba" },
  1994. { "time": 1.5333, "name": null },
  1995. { "time": 1.6333, "name": "zuiba" },
  1996. { "time": 1.7, "name": null },
  1997. { "time": 1.9, "name": "zuiba" },
  1998. { "time": 1.9667, "name": null },
  1999. { "time": 2.0667, "name": "zuiba" },
  2000. { "time": 2.1333, "name": null },
  2001. { "time": 2.2667, "name": "zuiba" },
  2002. { "time": 2.3333, "name": null },
  2003. { "time": 2.4667, "name": "zuiba" },
  2004. { "time": 2.5333, "name": null },
  2005. { "time": 2.6667, "name": "zuiba" },
  2006. { "time": 2.7333, "name": null },
  2007. { "time": 2.8667, "name": "zuiba" },
  2008. { "time": 2.9333, "name": null },
  2009. { "time": 3.1333, "name": "zuiba" },
  2010. { "time": 3.2, "name": null },
  2011. { "time": 3.3, "name": "zuiba" },
  2012. { "time": 3.3667, "name": null },
  2013. { "time": 3.5, "name": "zuiba" },
  2014. { "time": 3.5667, "name": null },
  2015. { "time": 3.7, "name": "zuiba" },
  2016. { "time": 3.7667, "name": null },
  2017. { "time": 3.9, "name": "zuiba" },
  2018. { "time": 3.9667, "name": null },
  2019. { "time": 4.0667, "name": "zuiba" }
  2020. ]
  2021. },
  2022. "zuoyan": {
  2023. "attachment": [
  2024. { "time": 0.1, "name": "zuoyan" },
  2025. { "time": 0.2, "name": null },
  2026. { "time": 0.9, "name": null },
  2027. { "time": 1.4667, "name": null },
  2028. { "time": 2.0333, "name": null },
  2029. { "time": 2.6, "name": null },
  2030. { "time": 3.1667, "name": null },
  2031. { "time": 3.7333, "name": null },
  2032. { "time": 3.8667, "name": "zuoyan" }
  2033. ]
  2034. }
  2035. },
  2036. "bones": {
  2037. "root": {
  2038. "rotate": [
  2039. { "time": 0, "angle": 0 }
  2040. ],
  2041. "translate": [
  2042. { "time": 0, "x": 0, "y": 0 }
  2043. ],
  2044. "scale": [
  2045. { "time": 0, "x": 0.65, "y": 0.65 }
  2046. ]
  2047. },
  2048. "bone": {
  2049. "rotate": [
  2050. { "time": 0, "angle": 0 }
  2051. ],
  2052. "translate": [
  2053. { "time": 0, "x": 0, "y": 0 }
  2054. ],
  2055. "scale": [
  2056. { "time": 0, "x": 1, "y": 1 }
  2057. ]
  2058. },
  2059. "bone2": {
  2060. "rotate": [
  2061. { "time": 0, "angle": 0 }
  2062. ],
  2063. "translate": [
  2064. { "time": 0, "x": 0, "y": 0 }
  2065. ],
  2066. "scale": [
  2067. { "time": 0, "x": 1, "y": 1 }
  2068. ]
  2069. },
  2070. "bone3": {
  2071. "rotate": [
  2072. { "time": 0, "angle": 0 },
  2073. { "time": 0.1, "angle": -1.98 },
  2074. { "time": 0.2333, "angle": -3.97 },
  2075. { "time": 0.3333, "angle": -5.16 },
  2076. { "time": 0.6, "angle": -7.53 },
  2077. { "time": 1.1, "angle": -5.16 },
  2078. { "time": 1.5, "angle": -7.53 },
  2079. { "time": 2, "angle": -5.16 },
  2080. { "time": 2.4, "angle": -7.53 },
  2081. { "time": 2.9, "angle": -5.16 },
  2082. { "time": 3.3667, "angle": -7.53 },
  2083. { "time": 3.8667, "angle": -5.16 },
  2084. { "time": 4.1667, "angle": 0 }
  2085. ],
  2086. "translate": [
  2087. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2088. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2089. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2090. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2091. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2092. { "time": 4.1667, "x": 0, "y": 0 }
  2093. ],
  2094. "scale": [
  2095. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2096. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2097. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2098. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2099. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2100. { "time": 4.1667, "x": 1, "y": 1 }
  2101. ]
  2102. },
  2103. "bone4": {
  2104. "rotate": [
  2105. { "time": 0, "angle": 0 },
  2106. { "time": 0.1, "angle": 1.77 },
  2107. { "time": 0.2333, "angle": 3.54 },
  2108. { "time": 0.3333, "angle": 4.61 },
  2109. { "time": 0.7333, "angle": 0 },
  2110. { "time": 1.1333, "angle": 1.48 },
  2111. { "time": 1.4667, "angle": 0 },
  2112. { "time": 1.8667, "angle": 1.48 },
  2113. { "time": 2.2, "angle": 0 },
  2114. { "time": 2.6, "angle": 1.48 },
  2115. { "time": 2.9333, "angle": 0 },
  2116. { "time": 3.3333, "angle": 1.48 },
  2117. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2118. { "time": 4.1667, "angle": 0 }
  2119. ],
  2120. "translate": [
  2121. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2122. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2123. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2124. { "time": 0.3333, "x": 0, "y": 0 },
  2125. { "time": 0.7333, "x": 0.84, "y": 0 },
  2126. { "time": 1.1333, "x": 0, "y": 0 },
  2127. { "time": 1.4667, "x": 0.84, "y": 0 },
  2128. { "time": 1.8667, "x": 0, "y": 0 },
  2129. { "time": 2.2, "x": 0.84, "y": 0 },
  2130. { "time": 2.6, "x": 0, "y": 0 },
  2131. { "time": 2.9333, "x": 0.84, "y": 0 },
  2132. { "time": 3.3333, "x": 0, "y": 0 },
  2133. { "time": 3.7333, "x": 0.84, "y": 0, "curve": "stepped" },
  2134. { "time": 3.8667, "x": 0.84, "y": 0 },
  2135. { "time": 4.1667, "x": 0, "y": 0 }
  2136. ],
  2137. "scale": [
  2138. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2139. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2140. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2141. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2142. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2143. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2144. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2145. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2146. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2147. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2148. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2149. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2150. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2151. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2152. { "time": 4.1667, "x": 1, "y": 1 }
  2153. ]
  2154. },
  2155. "bone5": {
  2156. "rotate": [
  2157. { "time": 0, "angle": 0, "curve": "stepped" },
  2158. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2159. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2160. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2161. { "time": 4.1667, "angle": 0 }
  2162. ],
  2163. "translate": [
  2164. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2165. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2166. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2167. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2168. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2169. { "time": 4.1667, "x": 0, "y": 0 }
  2170. ],
  2171. "scale": [
  2172. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2173. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2174. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2175. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2176. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2177. { "time": 4.1667, "x": 1, "y": 1 }
  2178. ]
  2179. },
  2180. "bone6": {
  2181. "rotate": [
  2182. { "time": 0, "angle": 0, "curve": "stepped" },
  2183. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2184. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2185. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2186. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  2187. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2188. { "time": 1.8, "angle": 0, "curve": "stepped" },
  2189. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  2190. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  2191. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2192. { "time": 4.1667, "angle": 0 }
  2193. ],
  2194. "translate": [
  2195. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2196. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2197. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2198. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2199. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2200. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2201. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2202. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2203. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2204. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2205. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2206. { "time": 4.1667, "x": 0, "y": 0 }
  2207. ],
  2208. "scale": [
  2209. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2210. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2211. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2212. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2213. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2214. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2215. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2216. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2217. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2218. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2219. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2220. { "time": 4.1667, "x": 1, "y": 1 }
  2221. ]
  2222. },
  2223. "bone7": {
  2224. "rotate": [
  2225. { "time": 0, "angle": 0 },
  2226. { "time": 0.1, "angle": -1 },
  2227. { "time": 0.2333, "angle": -2 },
  2228. { "time": 0.3333, "angle": -2.6 },
  2229. { "time": 0.5333, "angle": -3.79 },
  2230. { "time": 1.1667, "angle": 0 },
  2231. { "time": 1.8, "angle": -3.79 },
  2232. { "time": 2.4667, "angle": 0 },
  2233. { "time": 3.0667, "angle": -3.79 },
  2234. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2235. { "time": 4.1667, "angle": 0 }
  2236. ],
  2237. "translate": [
  2238. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2239. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2240. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2241. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2242. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2243. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2244. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2245. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2246. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2247. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2248. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2249. { "time": 4.1667, "x": 0, "y": 0 }
  2250. ],
  2251. "scale": [
  2252. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2253. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2254. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2255. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2256. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2258. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2259. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2260. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2261. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2262. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2263. { "time": 4.1667, "x": 1, "y": 1 }
  2264. ]
  2265. },
  2266. "bone8": {
  2267. "rotate": [
  2268. { "time": 0, "angle": 0 },
  2269. { "time": 0.1, "angle": -1 },
  2270. { "time": 0.2333, "angle": -2 },
  2271. { "time": 0.3333, "angle": -2.6 },
  2272. { "time": 0.5333, "angle": -3.79 },
  2273. { "time": 1.1667, "angle": 0 },
  2274. { "time": 1.8, "angle": -3.79 },
  2275. { "time": 2.4667, "angle": 0 },
  2276. { "time": 3.0667, "angle": -3.79 },
  2277. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2278. { "time": 4.1667, "angle": 0 }
  2279. ],
  2280. "translate": [
  2281. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2282. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2283. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2284. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2285. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2286. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2287. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2288. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2289. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2290. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2291. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2292. { "time": 4.1667, "x": 0, "y": 0 }
  2293. ],
  2294. "scale": [
  2295. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2296. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2297. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2298. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2299. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2300. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2301. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2302. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2303. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2304. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2305. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2306. { "time": 4.1667, "x": 1, "y": 1 }
  2307. ]
  2308. },
  2309. "bone9": {
  2310. "rotate": [
  2311. { "time": 0, "angle": 0 },
  2312. { "time": 0.1, "angle": -1 },
  2313. { "time": 0.2333, "angle": -2 },
  2314. { "time": 0.3333, "angle": -2.6 },
  2315. { "time": 0.5333, "angle": -3.79 },
  2316. { "time": 1.1667, "angle": 0 },
  2317. { "time": 1.8, "angle": -3.79 },
  2318. { "time": 2.4667, "angle": 0 },
  2319. { "time": 3.0667, "angle": -3.79 },
  2320. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2321. { "time": 4.1667, "angle": 0 }
  2322. ],
  2323. "translate": [
  2324. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2325. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2326. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2327. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2328. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2329. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2330. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2331. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2332. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2333. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2334. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2335. { "time": 4.1667, "x": 0, "y": 0 }
  2336. ],
  2337. "scale": [
  2338. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2339. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2340. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2341. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2342. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2343. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2344. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2345. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2346. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2347. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2348. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2349. { "time": 4.1667, "x": 1, "y": 1 }
  2350. ]
  2351. },
  2352. "bone10": {
  2353. "rotate": [
  2354. { "time": 0, "angle": 0, "curve": "stepped" },
  2355. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2356. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2357. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2358. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  2359. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2360. { "time": 1.8, "angle": 0, "curve": "stepped" },
  2361. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  2362. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  2363. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2364. { "time": 4.1667, "angle": 0 }
  2365. ],
  2366. "translate": [
  2367. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2368. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2369. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2370. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2371. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2372. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2373. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2374. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2375. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2376. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2377. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2378. { "time": 4.1667, "x": 0, "y": 0 }
  2379. ],
  2380. "scale": [
  2381. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2382. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2383. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2384. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2385. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2386. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2387. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2388. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2389. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2390. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2391. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2392. { "time": 4.1667, "x": 1, "y": 1 }
  2393. ]
  2394. },
  2395. "bone11": {
  2396. "rotate": [
  2397. { "time": 0, "angle": 0 },
  2398. { "time": 0.1, "angle": -1.22 },
  2399. { "time": 0.2333, "angle": -2.44 },
  2400. { "time": 0.3333, "angle": -3.17 },
  2401. { "time": 0.5333, "angle": -4.63 },
  2402. { "time": 1.1667, "angle": 0 },
  2403. { "time": 1.8, "angle": -4.63 },
  2404. { "time": 2.4667, "angle": 0 },
  2405. { "time": 3.0667, "angle": -4.63 },
  2406. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2407. { "time": 4.1667, "angle": 0 }
  2408. ],
  2409. "translate": [
  2410. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2411. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2412. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2413. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2414. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2415. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2416. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2417. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2418. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2419. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2420. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2421. { "time": 4.1667, "x": 0, "y": 0 }
  2422. ],
  2423. "scale": [
  2424. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2425. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2426. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2427. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2428. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2429. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2430. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2431. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2432. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2433. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2434. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2435. { "time": 4.1667, "x": 1, "y": 1 }
  2436. ]
  2437. },
  2438. "bone12": {
  2439. "rotate": [
  2440. { "time": 0, "angle": 0 },
  2441. { "time": 0.1, "angle": -1.22 },
  2442. { "time": 0.2333, "angle": -2.44 },
  2443. { "time": 0.3333, "angle": -3.17 },
  2444. { "time": 0.5333, "angle": -4.63 },
  2445. { "time": 1.1667, "angle": 0 },
  2446. { "time": 1.8, "angle": -4.63 },
  2447. { "time": 2.4667, "angle": 0 },
  2448. { "time": 3.0667, "angle": -4.63 },
  2449. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2450. { "time": 4.1667, "angle": 0 }
  2451. ],
  2452. "translate": [
  2453. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2454. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2455. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2456. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2457. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2458. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2459. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2460. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2461. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2462. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2463. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2464. { "time": 4.1667, "x": 0, "y": 0 }
  2465. ],
  2466. "scale": [
  2467. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2468. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2469. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2470. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2471. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2472. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2473. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2474. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2475. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2476. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2477. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2478. { "time": 4.1667, "x": 1, "y": 1 }
  2479. ]
  2480. },
  2481. "bone13": {
  2482. "rotate": [
  2483. { "time": 0, "angle": 0 },
  2484. { "time": 0.1, "angle": -1.22 },
  2485. { "time": 0.2333, "angle": -2.44 },
  2486. { "time": 0.3333, "angle": -3.17 },
  2487. { "time": 0.5333, "angle": -4.63 },
  2488. { "time": 1.1667, "angle": 0 },
  2489. { "time": 1.8, "angle": -4.63 },
  2490. { "time": 2.4667, "angle": 0 },
  2491. { "time": 3.0667, "angle": -4.63 },
  2492. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2493. { "time": 4.1667, "angle": 0 }
  2494. ],
  2495. "translate": [
  2496. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2497. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2498. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2499. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2500. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2501. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2502. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2503. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2504. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2505. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2506. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2507. { "time": 4.1667, "x": 0, "y": 0 }
  2508. ],
  2509. "scale": [
  2510. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2511. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2512. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2513. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2514. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2515. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2516. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2517. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2518. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2519. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2520. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2521. { "time": 4.1667, "x": 1, "y": 1 }
  2522. ]
  2523. },
  2524. "bone14": {
  2525. "rotate": [
  2526. { "time": 0, "angle": 0, "curve": "stepped" },
  2527. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2528. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2529. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2530. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  2531. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2532. { "time": 1.8, "angle": 0, "curve": "stepped" },
  2533. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  2534. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  2535. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2536. { "time": 4.1667, "angle": 0 }
  2537. ],
  2538. "translate": [
  2539. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2540. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2541. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2542. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2543. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2544. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2545. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2546. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2547. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2548. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2549. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2550. { "time": 4.1667, "x": 0, "y": 0 }
  2551. ],
  2552. "scale": [
  2553. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2554. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2555. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2556. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2557. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2558. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2559. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2560. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2561. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2562. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2563. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2564. { "time": 4.1667, "x": 1, "y": 1 }
  2565. ]
  2566. },
  2567. "bone15": {
  2568. "rotate": [
  2569. { "time": 0, "angle": 0 },
  2570. { "time": 0.1, "angle": -0.98 },
  2571. { "time": 0.2333, "angle": -1.95 },
  2572. { "time": 0.3333, "angle": -2.54 },
  2573. { "time": 0.5333, "angle": -3.71 },
  2574. { "time": 1.1667, "angle": 0 },
  2575. { "time": 1.8, "angle": -3.71 },
  2576. { "time": 2.4667, "angle": 0 },
  2577. { "time": 3.0667, "angle": -3.71 },
  2578. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2579. { "time": 4.1667, "angle": 0 }
  2580. ],
  2581. "translate": [
  2582. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2583. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2584. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2585. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2586. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2587. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2588. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2589. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2590. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2591. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2592. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2593. { "time": 4.1667, "x": 0, "y": 0 }
  2594. ],
  2595. "scale": [
  2596. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2597. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2598. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2599. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2600. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2601. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2602. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2603. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2604. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2605. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2606. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2607. { "time": 4.1667, "x": 1, "y": 1 }
  2608. ]
  2609. },
  2610. "bone16": {
  2611. "rotate": [
  2612. { "time": 0, "angle": 0 },
  2613. { "time": 0.1, "angle": -0.98 },
  2614. { "time": 0.2333, "angle": -1.95 },
  2615. { "time": 0.3333, "angle": -2.54 },
  2616. { "time": 0.5333, "angle": -3.71 },
  2617. { "time": 1.1667, "angle": 0 },
  2618. { "time": 1.8, "angle": -3.71 },
  2619. { "time": 2.4667, "angle": 0 },
  2620. { "time": 3.0667, "angle": -3.71 },
  2621. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2622. { "time": 4.1667, "angle": 0 }
  2623. ],
  2624. "translate": [
  2625. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2626. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2627. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2628. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2629. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2630. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2631. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2632. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2633. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2634. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2635. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2636. { "time": 4.1667, "x": 0, "y": 0 }
  2637. ],
  2638. "scale": [
  2639. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2640. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2641. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2642. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2643. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2644. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2645. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2646. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2647. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2648. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2649. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2650. { "time": 4.1667, "x": 1, "y": 1 }
  2651. ]
  2652. },
  2653. "bone17": {
  2654. "rotate": [
  2655. { "time": 0, "angle": 0 },
  2656. { "time": 0.1, "angle": -0.98 },
  2657. { "time": 0.2333, "angle": -1.95 },
  2658. { "time": 0.3333, "angle": -2.54 },
  2659. { "time": 0.5333, "angle": -3.71 },
  2660. { "time": 1.1667, "angle": 0 },
  2661. { "time": 1.8, "angle": -3.71 },
  2662. { "time": 2.4667, "angle": 0 },
  2663. { "time": 3.0667, "angle": -3.71 },
  2664. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2665. { "time": 4.1667, "angle": 0 }
  2666. ],
  2667. "translate": [
  2668. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2669. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2670. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2671. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2672. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2673. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2674. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2675. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2676. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2677. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2678. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2679. { "time": 4.1667, "x": 0, "y": 0 }
  2680. ],
  2681. "scale": [
  2682. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2683. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2684. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2685. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2686. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2687. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2688. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2689. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2690. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2691. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2692. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2693. { "time": 4.1667, "x": 1, "y": 1 }
  2694. ]
  2695. },
  2696. "bone18": {
  2697. "rotate": [
  2698. { "time": 0, "angle": 0, "curve": "stepped" },
  2699. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2700. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2701. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2702. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2703. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  2704. { "time": 1.8, "angle": 0, "curve": "stepped" },
  2705. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2706. { "time": 3, "angle": 0, "curve": "stepped" },
  2707. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2708. { "time": 4.1667, "angle": 0 }
  2709. ],
  2710. "translate": [
  2711. { "time": 0, "x": 0, "y": 0 },
  2712. { "time": 0.1, "x": -0.02, "y": 0.11 },
  2713. { "time": 0.2333, "x": -0.03, "y": 0.23 },
  2714. { "time": 0.3333, "x": -0.04, "y": 0.3 },
  2715. { "time": 0.5667, "x": -0.06, "y": 0.46 },
  2716. { "time": 1.2667, "x": 0, "y": 0 },
  2717. { "time": 1.8, "x": -0.06, "y": 0.46 },
  2718. { "time": 2.5, "x": 0, "y": 0 },
  2719. { "time": 3, "x": -0.06, "y": 0.46, "curve": "stepped" },
  2720. { "time": 3.7333, "x": -0.06, "y": 0.46, "curve": "stepped" },
  2721. { "time": 3.8667, "x": -0.06, "y": 0.46 },
  2722. { "time": 4.1667, "x": 0, "y": 0 }
  2723. ],
  2724. "scale": [
  2725. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2726. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2727. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2728. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2729. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2730. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2731. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2732. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2733. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2734. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2735. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2736. { "time": 4.1667, "x": 1, "y": 1 }
  2737. ]
  2738. },
  2739. "bone19": {
  2740. "rotate": [
  2741. { "time": 0, "angle": 0 },
  2742. { "time": 0.1, "angle": -0.46 },
  2743. { "time": 0.2333, "angle": -0.91 },
  2744. { "time": 0.3333, "angle": -1.19 },
  2745. { "time": 0.5667, "angle": -1.82 },
  2746. { "time": 1.2667, "angle": 0 },
  2747. { "time": 1.8, "angle": -1.82 },
  2748. { "time": 2.5, "angle": 0 },
  2749. { "time": 3, "angle": -1.82 },
  2750. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2751. { "time": 4.1667, "angle": 0 }
  2752. ],
  2753. "translate": [
  2754. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2755. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2756. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2757. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2758. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2759. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2760. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2761. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2762. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2763. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2764. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2765. { "time": 4.1667, "x": 0, "y": 0 }
  2766. ],
  2767. "scale": [
  2768. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2769. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2770. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2771. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2772. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2773. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2774. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2775. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2776. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2777. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2778. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2779. { "time": 4.1667, "x": 1, "y": 1 }
  2780. ]
  2781. },
  2782. "bone20": {
  2783. "rotate": [
  2784. { "time": 0, "angle": 0 },
  2785. { "time": 0.1, "angle": -0.46 },
  2786. { "time": 0.2333, "angle": -0.91 },
  2787. { "time": 0.3333, "angle": -1.19 },
  2788. { "time": 0.5667, "angle": -1.82 },
  2789. { "time": 1.2667, "angle": 0 },
  2790. { "time": 1.8, "angle": -1.82 },
  2791. { "time": 2.5, "angle": 0 },
  2792. { "time": 3, "angle": -1.82 },
  2793. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2794. { "time": 4.1667, "angle": 0 }
  2795. ],
  2796. "translate": [
  2797. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2798. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2799. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2800. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2801. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2802. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2803. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2804. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2805. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2806. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2807. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2808. { "time": 4.1667, "x": 0, "y": 0 }
  2809. ],
  2810. "scale": [
  2811. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2812. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2813. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2814. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2815. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2816. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2817. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2818. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2819. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2820. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2821. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2822. { "time": 4.1667, "x": 1, "y": 1 }
  2823. ]
  2824. },
  2825. "bone21": {
  2826. "rotate": [
  2827. { "time": 0, "angle": 0 },
  2828. { "time": 0.1, "angle": -0.46 },
  2829. { "time": 0.2333, "angle": -0.91 },
  2830. { "time": 0.3333, "angle": -1.19 },
  2831. { "time": 0.5667, "angle": -1.82 },
  2832. { "time": 1.2667, "angle": 0 },
  2833. { "time": 1.8, "angle": -1.82 },
  2834. { "time": 2.5, "angle": 0 },
  2835. { "time": 3, "angle": -1.82 },
  2836. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2837. { "time": 4.1667, "angle": 0 }
  2838. ],
  2839. "translate": [
  2840. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2841. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2842. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2843. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2844. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2845. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2846. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2847. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2848. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2849. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2850. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2851. { "time": 4.1667, "x": 0, "y": 0 }
  2852. ],
  2853. "scale": [
  2854. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2855. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2856. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2857. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2858. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2859. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2860. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2861. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2862. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2863. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2864. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2865. { "time": 4.1667, "x": 1, "y": 1 }
  2866. ]
  2867. },
  2868. "bone22": {
  2869. "rotate": [
  2870. { "time": 0, "angle": 0 },
  2871. { "time": 0.1, "angle": -0.46 },
  2872. { "time": 0.2333, "angle": -0.91 },
  2873. { "time": 0.3333, "angle": -1.19 },
  2874. { "time": 0.5667, "angle": -1.82 },
  2875. { "time": 1.2667, "angle": 0 },
  2876. { "time": 1.8, "angle": -1.82 },
  2877. { "time": 2.5, "angle": 0 },
  2878. { "time": 3, "angle": -1.82 },
  2879. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2880. { "time": 4.1667, "angle": 0 }
  2881. ],
  2882. "translate": [
  2883. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2884. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2885. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2886. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2887. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2888. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2889. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2890. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2891. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2892. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2893. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2894. { "time": 4.1667, "x": 0, "y": 0 }
  2895. ],
  2896. "scale": [
  2897. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2898. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2899. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2900. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2901. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2902. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2903. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2904. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2905. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2906. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2907. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2908. { "time": 4.1667, "x": 1, "y": 1 }
  2909. ]
  2910. },
  2911. "bone23": {
  2912. "rotate": [
  2913. { "time": 0, "angle": 0 },
  2914. { "time": 0.1, "angle": -3.46 },
  2915. { "time": 0.2333, "angle": -6.93 },
  2916. { "time": 0.3333, "angle": -9.01 },
  2917. { "time": 0.5667, "angle": -13.86 },
  2918. { "time": 1.2667, "angle": 0 },
  2919. { "time": 1.8, "angle": -13.86 },
  2920. { "time": 2.5, "angle": 0 },
  2921. { "time": 3, "angle": -13.86 },
  2922. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  2923. { "time": 4.1667, "angle": 0 }
  2924. ],
  2925. "translate": [
  2926. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2927. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2928. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2929. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2930. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2931. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2932. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2933. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2934. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2935. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2936. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2937. { "time": 4.1667, "x": 0, "y": 0 }
  2938. ],
  2939. "scale": [
  2940. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2941. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2942. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2943. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2944. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2945. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2946. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2947. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2948. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2949. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2950. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2951. { "time": 4.1667, "x": 1, "y": 1 }
  2952. ]
  2953. },
  2954. "bone24": {
  2955. "rotate": [
  2956. { "time": 0, "angle": -4.71 },
  2957. { "time": 0.1, "angle": -5.7 },
  2958. { "time": 0.2333, "angle": -6.69 },
  2959. { "time": 0.3333, "angle": -7.28 },
  2960. { "time": 0.4, "angle": -7.67 },
  2961. { "time": 0.9333, "angle": -4.71 },
  2962. { "time": 1.4, "angle": -1.05 },
  2963. { "time": 1.8333, "angle": -4.71 },
  2964. { "time": 2.3, "angle": -7.67 },
  2965. { "time": 2.8333, "angle": -4.71 },
  2966. { "time": 3.3333, "angle": -1.05 },
  2967. { "time": 3.7333, "angle": -4.71, "curve": "stepped" },
  2968. { "time": 4.1667, "angle": -4.71 }
  2969. ],
  2970. "translate": [
  2971. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2972. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2973. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2974. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2975. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2976. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  2977. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2978. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2979. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  2980. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  2981. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  2982. { "time": 4.1667, "x": 0, "y": 0 }
  2983. ],
  2984. "scale": [
  2985. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2986. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2987. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2988. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2989. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2990. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  2991. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2992. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2993. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  2994. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  2995. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  2996. { "time": 4.1667, "x": 1, "y": 1 }
  2997. ]
  2998. },
  2999. "bone25": {
  3000. "rotate": [
  3001. { "time": 0, "angle": 0 },
  3002. { "time": 0.1, "angle": -2.86 },
  3003. { "time": 0.2333, "angle": -5.73 },
  3004. { "time": 0.3333, "angle": -7.45 },
  3005. { "time": 0.4, "angle": -8.59 },
  3006. { "time": 0.9333, "angle": -7.64 },
  3007. { "time": 1.4, "angle": -0.95 },
  3008. { "time": 1.8333, "angle": 0 },
  3009. { "time": 2.3, "angle": -8.59 },
  3010. { "time": 2.8333, "angle": -7.64 },
  3011. { "time": 3.3333, "angle": -0.95 },
  3012. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3013. { "time": 4.1667, "angle": 0 }
  3014. ],
  3015. "translate": [
  3016. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3017. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3018. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3019. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3020. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  3021. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3022. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3023. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3024. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3025. { "time": 4.1667, "x": 0, "y": 0 }
  3026. ],
  3027. "scale": [
  3028. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3029. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3030. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3031. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3032. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  3033. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3034. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3035. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3036. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3037. { "time": 4.1667, "x": 1, "y": 1 }
  3038. ]
  3039. },
  3040. "bone26": {
  3041. "rotate": [
  3042. { "time": 0, "angle": 0 },
  3043. { "time": 0.1, "angle": 2.21 },
  3044. { "time": 0.2333, "angle": 4.41 },
  3045. { "time": 0.3333, "angle": 5.73 },
  3046. { "time": 0.4, "angle": 6.62 },
  3047. { "time": 0.9333, "angle": -5.83 },
  3048. { "time": 1.4, "angle": -1.94 },
  3049. { "time": 1.8333, "angle": 0 },
  3050. { "time": 2.3, "angle": 6.62 },
  3051. { "time": 2.8333, "angle": -5.83 },
  3052. { "time": 3.3333, "angle": -1.94 },
  3053. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3054. { "time": 4.1667, "angle": 0 }
  3055. ],
  3056. "translate": [
  3057. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3058. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3059. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3060. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3061. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  3062. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3063. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3064. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3065. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3066. { "time": 4.1667, "x": 0, "y": 0 }
  3067. ],
  3068. "scale": [
  3069. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3070. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3071. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3072. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3073. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  3074. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3075. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3076. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3077. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3078. { "time": 4.1667, "x": 1, "y": 1 }
  3079. ]
  3080. },
  3081. "bone27": {
  3082. "rotate": [
  3083. { "time": 0, "angle": 0 },
  3084. { "time": 0.1, "angle": 2.21 },
  3085. { "time": 0.2333, "angle": 4.41 },
  3086. { "time": 0.3333, "angle": 5.73 },
  3087. { "time": 0.4, "angle": 6.62 },
  3088. { "time": 0.9333, "angle": -11.95 },
  3089. { "time": 1.4, "angle": -3.31 },
  3090. { "time": 1.8333, "angle": 0 },
  3091. { "time": 2.3, "angle": 6.62 },
  3092. { "time": 2.8333, "angle": -11.95 },
  3093. { "time": 3.3333, "angle": -3.31 },
  3094. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3095. { "time": 4.1667, "angle": 0 }
  3096. ],
  3097. "translate": [
  3098. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3099. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3100. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3101. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3102. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  3103. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3104. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3105. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3106. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3107. { "time": 4.1667, "x": 0, "y": 0 }
  3108. ],
  3109. "scale": [
  3110. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3111. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3112. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3113. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3114. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  3115. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3116. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3117. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3118. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3119. { "time": 4.1667, "x": 1, "y": 1 }
  3120. ]
  3121. },
  3122. "bone28": {
  3123. "rotate": [
  3124. { "time": 0, "angle": 0, "curve": "stepped" },
  3125. { "time": 0.1, "angle": 0, "curve": "stepped" },
  3126. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3127. { "time": 0.3333, "angle": 0 },
  3128. { "time": 0.7667, "angle": 6.62 },
  3129. { "time": 1.2333, "angle": 0 },
  3130. { "time": 1.6667, "angle": -3.31 },
  3131. { "time": 2.0333, "angle": 0 },
  3132. { "time": 2.4667, "angle": 6.62 },
  3133. { "time": 2.9333, "angle": 0 },
  3134. { "time": 3.3667, "angle": -3.31 },
  3135. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3136. { "time": 4.1667, "angle": 0 }
  3137. ],
  3138. "translate": [
  3139. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3140. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3141. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3142. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3143. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3144. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  3145. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  3146. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3147. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3148. { "time": 4.1667, "x": 0, "y": 0 }
  3149. ],
  3150. "scale": [
  3151. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3152. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3153. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3154. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3155. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3156. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  3157. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3158. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3159. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3160. { "time": 4.1667, "x": 1, "y": 1 }
  3161. ]
  3162. },
  3163. "bone41": {
  3164. "rotate": [
  3165. { "time": 0, "angle": 0 },
  3166. { "time": 0.1, "angle": -8.94 },
  3167. { "time": 0.2333, "angle": -17.88 },
  3168. { "time": 0.3333, "angle": -23.25 },
  3169. { "time": 0.8, "angle": 327.93 },
  3170. { "time": 1.3333, "angle": -19.05 },
  3171. { "time": 1.8333, "angle": 0 },
  3172. { "time": 2.2667, "angle": 336.75 },
  3173. { "time": 2.7, "angle": 327.93 },
  3174. { "time": 3.2333, "angle": -19.05 },
  3175. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3176. { "time": 4.1667, "angle": 0 }
  3177. ],
  3178. "translate": [
  3179. { "time": 0, "x": 0, "y": 0 },
  3180. { "time": 0.1, "x": 0.02, "y": 0.31 },
  3181. { "time": 0.2333, "x": 0.04, "y": 0.61 },
  3182. { "time": 0.3333, "x": 0.05, "y": 0.8 },
  3183. { "time": 1.8333, "x": -0.76, "y": 2.16 },
  3184. { "time": 2.2667, "x": 0.05, "y": 0.8 },
  3185. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3186. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3187. { "time": 4.1667, "x": 0, "y": 0 }
  3188. ],
  3189. "scale": [
  3190. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3191. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3192. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3193. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3194. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3195. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3196. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3197. { "time": 4.1667, "x": 1, "y": 1 }
  3198. ]
  3199. },
  3200. "bone42": {
  3201. "rotate": [
  3202. { "time": 0, "angle": 0 },
  3203. { "time": 0.1, "angle": -0.6 },
  3204. { "time": 0.2333, "angle": -1.19 },
  3205. { "time": 0.3333, "angle": -1.55 },
  3206. { "time": 0.8, "angle": -5.9 },
  3207. { "time": 1.3333, "angle": 4.37 },
  3208. { "time": 1.8333, "angle": 0 },
  3209. { "time": 2.2667, "angle": -1.55 },
  3210. { "time": 2.7, "angle": -5.9 },
  3211. { "time": 3.2333, "angle": 4.37 },
  3212. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3213. { "time": 4.1667, "angle": 0 }
  3214. ],
  3215. "translate": [
  3216. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3217. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3218. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3219. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3220. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3221. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3222. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  3223. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3224. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3225. { "time": 4.1667, "x": 0, "y": 0 }
  3226. ],
  3227. "scale": [
  3228. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3229. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3230. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3231. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3232. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3233. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3234. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  3235. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3236. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3237. { "time": 4.1667, "x": 1, "y": 1 }
  3238. ]
  3239. },
  3240. "bone43": {
  3241. "rotate": [
  3242. { "time": 0, "angle": 0 },
  3243. { "time": 0.1, "angle": 5.8 },
  3244. { "time": 0.2333, "angle": 11.59 },
  3245. { "time": 0.3333, "angle": 15.07 },
  3246. { "time": 0.8, "angle": 12.56 },
  3247. { "time": 1.3333, "angle": 4.37 },
  3248. { "time": 1.8333, "angle": 0 },
  3249. { "time": 2.2667, "angle": 15.07 },
  3250. { "time": 2.7, "angle": 12.56 },
  3251. { "time": 3.2333, "angle": 4.37 },
  3252. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3253. { "time": 4.1667, "angle": 0 }
  3254. ],
  3255. "translate": [
  3256. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3257. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3258. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3259. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3260. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3261. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3262. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  3263. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3264. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3265. { "time": 4.1667, "x": 0, "y": 0 }
  3266. ],
  3267. "scale": [
  3268. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3269. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3270. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3271. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3272. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3273. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3274. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  3275. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3276. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3277. { "time": 4.1667, "x": 1, "y": 1 }
  3278. ]
  3279. },
  3280. "bone44": {
  3281. "rotate": [
  3282. { "time": 0, "angle": 0 },
  3283. { "time": 0.1, "angle": 5.8 },
  3284. { "time": 0.2333, "angle": 11.59 },
  3285. { "time": 0.3333, "angle": 15.07 },
  3286. { "time": 0.8, "angle": -4.79 },
  3287. { "time": 1.3333, "angle": 4.37 },
  3288. { "time": 1.8333, "angle": 0 },
  3289. { "time": 2.2667, "angle": 15.07 },
  3290. { "time": 2.7, "angle": -4.79 },
  3291. { "time": 3.2333, "angle": 4.37 },
  3292. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3293. { "time": 4.1667, "angle": 0 }
  3294. ],
  3295. "translate": [
  3296. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3297. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3298. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3299. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3300. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3301. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3302. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  3303. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3304. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3305. { "time": 4.1667, "x": 0, "y": 0 }
  3306. ],
  3307. "scale": [
  3308. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3309. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3310. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3311. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3312. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3313. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3314. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  3315. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3316. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3317. { "time": 4.1667, "x": 1, "y": 1 }
  3318. ]
  3319. },
  3320. "bone45": {
  3321. "rotate": [
  3322. { "time": 0, "angle": 0 },
  3323. { "time": 0.1, "angle": 5.8 },
  3324. { "time": 0.2333, "angle": 11.59 },
  3325. { "time": 0.3333, "angle": 15.07 },
  3326. { "time": 0.8, "angle": 18.8 },
  3327. { "time": 1.3333, "angle": 4.37 },
  3328. { "time": 1.8333, "angle": 0 },
  3329. { "time": 2.2667, "angle": 15.07 },
  3330. { "time": 2.7, "angle": 18.8 },
  3331. { "time": 3.2333, "angle": 4.37 },
  3332. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3333. { "time": 4.1667, "angle": 0 }
  3334. ],
  3335. "translate": [
  3336. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3337. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3338. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3339. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3340. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3341. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3342. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  3343. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3344. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3345. { "time": 4.1667, "x": 0, "y": 0 }
  3346. ],
  3347. "scale": [
  3348. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3349. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3350. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3351. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3352. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3353. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3354. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  3355. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3356. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3357. { "time": 4.1667, "x": 1, "y": 1 }
  3358. ]
  3359. },
  3360. "bone46": {
  3361. "rotate": [
  3362. { "time": 0, "angle": -27.92 },
  3363. { "time": 0.3, "angle": -56.99 },
  3364. { "time": 0.4, "angle": -65.71 },
  3365. { "time": 0.6333, "angle": 287.83 },
  3366. { "time": 0.9, "angle": -65.71 },
  3367. { "time": 1.1333, "angle": 287.83 },
  3368. { "time": 1.4667, "angle": -65.71 },
  3369. { "time": 1.6667, "angle": 287.83 },
  3370. { "time": 1.9, "angle": -65.71 },
  3371. { "time": 2.1, "angle": 287.83 },
  3372. { "time": 2.3333, "angle": -65.71 },
  3373. { "time": 2.5333, "angle": 287.83 },
  3374. { "time": 2.7667, "angle": -65.71 },
  3375. { "time": 2.9667, "angle": 287.83 },
  3376. { "time": 3.2, "angle": -65.71 },
  3377. { "time": 3.4, "angle": 287.83 },
  3378. { "time": 3.6333, "angle": -65.71 },
  3379. { "time": 4.1667, "angle": -27.92 }
  3380. ],
  3381. "translate": [
  3382. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3383. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3384. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3385. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3386. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  3387. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3388. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3389. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  3390. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  3391. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  3392. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3393. { "time": 4.1667, "x": 0, "y": 0 }
  3394. ],
  3395. "scale": [
  3396. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3397. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3398. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3399. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3400. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  3401. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3402. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3403. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  3404. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  3405. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  3406. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3407. { "time": 4.1667, "x": 1, "y": 1 }
  3408. ]
  3409. },
  3410. "bone47": {
  3411. "rotate": [
  3412. { "time": 0, "angle": -5.62 },
  3413. { "time": 0.1, "angle": -29.53 },
  3414. { "time": 0.2333, "angle": -53.44 },
  3415. { "time": 0.3333, "angle": -67.78 },
  3416. { "time": 0.6333, "angle": -43.5 },
  3417. { "time": 0.9, "angle": -66.08 },
  3418. { "time": 1.1333, "angle": -43.5 },
  3419. { "time": 1.4667, "angle": -67.78 },
  3420. { "time": 1.6667, "angle": -43.5 },
  3421. { "time": 1.9, "angle": -67.78 },
  3422. { "time": 2.1, "angle": -43.5 },
  3423. { "time": 2.3333, "angle": -67.78 },
  3424. { "time": 2.5333, "angle": -43.5 },
  3425. { "time": 2.7667, "angle": -67.78 },
  3426. { "time": 2.9667, "angle": -43.5 },
  3427. { "time": 3.2, "angle": -67.78 },
  3428. { "time": 3.4, "angle": -43.5 },
  3429. { "time": 3.6333, "angle": -67.78 },
  3430. { "time": 4.1667, "angle": -5.62 }
  3431. ],
  3432. "translate": [
  3433. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3434. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3435. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3436. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3437. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3438. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3439. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3440. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  3441. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3442. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3443. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  3444. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3445. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3446. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  3447. { "time": 2.9667, "x": 0, "y": 0, "curve": "stepped" },
  3448. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  3449. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  3450. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  3451. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3452. { "time": 4.1667, "x": 0, "y": 0 }
  3453. ],
  3454. "scale": [
  3455. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3456. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3457. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3458. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3459. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3460. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3461. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3462. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  3463. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3464. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3465. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  3466. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3467. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3468. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  3469. { "time": 2.9667, "x": 1, "y": 1, "curve": "stepped" },
  3470. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  3471. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  3472. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  3473. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3474. { "time": 4.1667, "x": 1, "y": 1 }
  3475. ],
  3476. "shear": [
  3477. { "time": 0.6333, "x": 1.2, "y": 0, "curve": "stepped" },
  3478. { "time": 1.1333, "x": 1.2, "y": 0, "curve": "stepped" },
  3479. { "time": 1.6667, "x": 1.2, "y": 0, "curve": "stepped" },
  3480. { "time": 2.1, "x": 1.2, "y": 0, "curve": "stepped" },
  3481. { "time": 2.5333, "x": 1.2, "y": 0, "curve": "stepped" },
  3482. { "time": 2.9667, "x": 1.2, "y": 0, "curve": "stepped" },
  3483. { "time": 3.4, "x": 1.2, "y": 0 }
  3484. ]
  3485. },
  3486. "bone48": {
  3487. "rotate": [
  3488. { "time": 0, "angle": 0, "curve": "stepped" },
  3489. { "time": 0.1, "angle": 0, "curve": "stepped" },
  3490. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3491. { "time": 0.3333, "angle": 0 },
  3492. { "time": 0.6333, "angle": -0.55 },
  3493. { "time": 0.9, "angle": 0 },
  3494. { "time": 1.1333, "angle": -9.59 },
  3495. { "time": 1.4667, "angle": 0 },
  3496. { "time": 1.6667, "angle": -9.59 },
  3497. { "time": 1.9, "angle": 0 },
  3498. { "time": 2.1, "angle": -9.59 },
  3499. { "time": 2.3333, "angle": 0 },
  3500. { "time": 2.5333, "angle": -9.59 },
  3501. { "time": 2.7667, "angle": 0 },
  3502. { "time": 2.9667, "angle": -9.59 },
  3503. { "time": 3.2, "angle": 0 },
  3504. { "time": 3.4, "angle": -9.59 },
  3505. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  3506. { "time": 4.1667, "angle": 0 }
  3507. ],
  3508. "translate": [
  3509. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3510. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3511. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3512. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3513. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3514. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3515. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3516. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  3517. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3518. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3519. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  3520. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3521. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3522. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  3523. { "time": 2.9667, "x": 0, "y": 0, "curve": "stepped" },
  3524. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  3525. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  3526. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  3527. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3528. { "time": 4.1667, "x": 0, "y": 0 }
  3529. ],
  3530. "scale": [
  3531. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3532. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3533. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3534. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3535. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3536. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3537. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3538. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  3539. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3540. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3541. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  3542. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3543. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3544. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  3545. { "time": 2.9667, "x": 1, "y": 1, "curve": "stepped" },
  3546. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  3547. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  3548. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  3549. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3550. { "time": 4.1667, "x": 1, "y": 1 }
  3551. ]
  3552. },
  3553. "bone49": {
  3554. "rotate": [
  3555. { "time": 0, "angle": 13.5 },
  3556. { "time": 0.1, "angle": 12.26 },
  3557. { "time": 0.2333, "angle": 11.01 },
  3558. { "time": 0.3333, "angle": 10.26, "curve": "stepped" },
  3559. { "time": 0.5667, "angle": 10.26, "curve": "stepped" },
  3560. { "time": 0.9, "angle": 10.26, "curve": "stepped" },
  3561. { "time": 1.1333, "angle": 10.26, "curve": "stepped" },
  3562. { "time": 1.4667, "angle": 10.26, "curve": "stepped" },
  3563. { "time": 1.7, "angle": 10.26, "curve": "stepped" },
  3564. { "time": 2.0333, "angle": 10.26, "curve": "stepped" },
  3565. { "time": 2.2667, "angle": 10.26, "curve": "stepped" },
  3566. { "time": 2.6, "angle": 10.26, "curve": "stepped" },
  3567. { "time": 2.8333, "angle": 10.26, "curve": "stepped" },
  3568. { "time": 3.1667, "angle": 10.26, "curve": "stepped" },
  3569. { "time": 3.4, "angle": 10.26, "curve": "stepped" },
  3570. { "time": 3.7333, "angle": 10.26 },
  3571. { "time": 4.1667, "angle": 13.5 }
  3572. ],
  3573. "translate": [
  3574. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3575. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3576. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3577. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3578. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3579. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3580. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3581. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  3582. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  3583. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  3584. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  3585. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  3586. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3587. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  3588. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  3589. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3590. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3591. { "time": 4.1667, "x": 0, "y": 0 }
  3592. ],
  3593. "scale": [
  3594. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3595. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3596. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3597. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3598. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3599. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3600. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3601. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  3602. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  3603. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  3604. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  3605. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  3606. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3607. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  3608. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  3609. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3610. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3611. { "time": 4.1667, "x": 1, "y": 1 }
  3612. ]
  3613. },
  3614. "bone50": {
  3615. "rotate": [
  3616. { "time": 0, "angle": 3.51 },
  3617. { "time": 0.1, "angle": -24.31 },
  3618. { "time": 0.2333, "angle": -52.13 },
  3619. { "time": 0.3333, "angle": -68.82, "curve": "stepped" },
  3620. { "time": 0.5667, "angle": -68.82, "curve": "stepped" },
  3621. { "time": 0.9, "angle": -68.82, "curve": "stepped" },
  3622. { "time": 1.1333, "angle": -68.82, "curve": "stepped" },
  3623. { "time": 1.4667, "angle": -68.82, "curve": "stepped" },
  3624. { "time": 1.7, "angle": -68.82, "curve": "stepped" },
  3625. { "time": 2.0333, "angle": -68.82, "curve": "stepped" },
  3626. { "time": 2.2667, "angle": -68.82, "curve": "stepped" },
  3627. { "time": 2.6, "angle": -68.82, "curve": "stepped" },
  3628. { "time": 2.8333, "angle": -68.82, "curve": "stepped" },
  3629. { "time": 3.1667, "angle": -68.82, "curve": "stepped" },
  3630. { "time": 3.4, "angle": -68.82, "curve": "stepped" },
  3631. { "time": 3.7333, "angle": -68.82 },
  3632. { "time": 4.1667, "angle": 3.51 }
  3633. ],
  3634. "translate": [
  3635. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3636. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3637. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3638. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3639. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3640. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3641. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3642. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  3643. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  3644. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  3645. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  3646. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  3647. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3648. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  3649. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  3650. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3651. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3652. { "time": 4.1667, "x": 0, "y": 0 }
  3653. ],
  3654. "scale": [
  3655. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3656. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3657. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3658. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3659. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3660. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3661. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3662. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  3663. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  3664. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  3665. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  3666. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  3667. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3668. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  3669. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  3670. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3671. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3672. { "time": 4.1667, "x": 1, "y": 1 }
  3673. ]
  3674. },
  3675. "bone51": {
  3676. "rotate": [
  3677. { "time": 0, "angle": 9 },
  3678. { "time": 0.1, "angle": -9.95 },
  3679. { "time": 0.2333, "angle": -28.9 },
  3680. { "time": 0.3333, "angle": -40.27, "curve": "stepped" },
  3681. { "time": 0.5667, "angle": -40.27, "curve": "stepped" },
  3682. { "time": 0.9, "angle": -40.27, "curve": "stepped" },
  3683. { "time": 1.1333, "angle": -40.27, "curve": "stepped" },
  3684. { "time": 1.4667, "angle": -40.27, "curve": "stepped" },
  3685. { "time": 1.7, "angle": -40.27, "curve": "stepped" },
  3686. { "time": 2.0333, "angle": -40.27, "curve": "stepped" },
  3687. { "time": 2.2667, "angle": -40.27, "curve": "stepped" },
  3688. { "time": 2.6, "angle": -40.27, "curve": "stepped" },
  3689. { "time": 2.8333, "angle": -40.27, "curve": "stepped" },
  3690. { "time": 3.1667, "angle": -40.27, "curve": "stepped" },
  3691. { "time": 3.4, "angle": -40.27, "curve": "stepped" },
  3692. { "time": 3.7333, "angle": -40.27 },
  3693. { "time": 4.1667, "angle": 9 }
  3694. ],
  3695. "translate": [
  3696. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3697. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3698. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3699. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3700. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3701. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3702. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3703. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  3704. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  3705. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  3706. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  3707. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  3708. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3709. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  3710. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  3711. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3712. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3713. { "time": 4.1667, "x": 0, "y": 0 }
  3714. ],
  3715. "scale": [
  3716. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3717. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3718. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3719. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3720. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3721. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3722. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3723. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  3724. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  3725. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  3726. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  3727. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  3728. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3729. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  3730. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  3731. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3732. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3733. { "time": 4.1667, "x": 1, "y": 1 }
  3734. ]
  3735. },
  3736. "bone52": {
  3737. "rotate": [
  3738. { "time": 0, "angle": 0, "curve": "stepped" },
  3739. { "time": 0.1, "angle": 0, "curve": "stepped" },
  3740. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3741. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3742. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3743. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3744. { "time": 1.6, "angle": 0, "curve": "stepped" },
  3745. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  3746. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  3747. { "time": 2.8667, "angle": 0, "curve": "stepped" },
  3748. { "time": 3.3, "angle": 0, "curve": "stepped" },
  3749. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3750. { "time": 4.1667, "angle": 0 }
  3751. ],
  3752. "translate": [
  3753. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3754. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3755. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3756. { "time": 0.3333, "x": 0, "y": 0 },
  3757. { "time": 0.7667, "x": 0.16, "y": 0.69 },
  3758. { "time": 1.1667, "x": 0, "y": 0 },
  3759. { "time": 1.6, "x": 0.16, "y": 0.69 },
  3760. { "time": 2.0333, "x": 0, "y": 0 },
  3761. { "time": 2.4667, "x": 0.16, "y": 0.69 },
  3762. { "time": 2.8667, "x": 0, "y": 0 },
  3763. { "time": 3.3, "x": 0.16, "y": 0.69 },
  3764. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3765. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3766. { "time": 4.1667, "x": 0, "y": 0 }
  3767. ],
  3768. "scale": [
  3769. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3770. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3771. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3772. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3773. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3774. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3775. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  3776. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  3777. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  3778. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  3779. { "time": 3.3, "x": 1, "y": 1, "curve": "stepped" },
  3780. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3781. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3782. { "time": 4.1667, "x": 1, "y": 1 }
  3783. ]
  3784. },
  3785. "bone53": {
  3786. "rotate": [
  3787. { "time": 0, "angle": 0 },
  3788. { "time": 0.1, "angle": -0.67 },
  3789. { "time": 0.2333, "angle": -1.33 },
  3790. { "time": 0.3333, "angle": -1.73 },
  3791. { "time": 0.6, "angle": -2.8 },
  3792. { "time": 1.2, "angle": 0 },
  3793. { "time": 1.9, "angle": -2.8 },
  3794. { "time": 2.4333, "angle": 0 },
  3795. { "time": 3.1333, "angle": -2.8 },
  3796. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3797. { "time": 4.1667, "angle": 0 }
  3798. ],
  3799. "translate": [
  3800. { "time": 0, "x": 0, "y": 0 },
  3801. { "time": 0.1, "x": 0, "y": -0.28 },
  3802. { "time": 0.2333, "x": 0, "y": -0.57 },
  3803. { "time": 0.3333, "x": 0, "y": -0.74 },
  3804. { "time": 0.6, "x": 0, "y": -1.19 },
  3805. { "time": 1.2, "x": 0, "y": 0 },
  3806. { "time": 1.9, "x": 0, "y": -1.19 },
  3807. { "time": 2.4333, "x": 0, "y": 0 },
  3808. { "time": 3.1333, "x": 0, "y": -1.19 },
  3809. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3810. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3811. { "time": 4.1667, "x": 0, "y": 0 }
  3812. ],
  3813. "scale": [
  3814. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3815. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3816. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3817. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3818. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3819. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  3820. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3821. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3822. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3823. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3824. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3825. { "time": 4.1667, "x": 1, "y": 1 }
  3826. ]
  3827. },
  3828. "bone54": {
  3829. "rotate": [
  3830. { "time": 0, "angle": 0 },
  3831. { "time": 0.1, "angle": -0.67 },
  3832. { "time": 0.2333, "angle": -1.33 },
  3833. { "time": 0.3333, "angle": -1.73 },
  3834. { "time": 0.6, "angle": -2.8 },
  3835. { "time": 1.2, "angle": 0 },
  3836. { "time": 1.9, "angle": -2.8 },
  3837. { "time": 2.4333, "angle": 0 },
  3838. { "time": 3.1333, "angle": -2.8 },
  3839. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3840. { "time": 4.1667, "angle": 0 }
  3841. ],
  3842. "translate": [
  3843. { "time": 0, "x": 0, "y": 0 },
  3844. { "time": 0.1, "x": -0.03, "y": -0.27 },
  3845. { "time": 0.2333, "x": -0.06, "y": -0.54 },
  3846. { "time": 0.3333, "x": -0.08, "y": -0.7 },
  3847. { "time": 0.6, "x": -0.12, "y": -1.13 },
  3848. { "time": 1.2, "x": 0, "y": 0 },
  3849. { "time": 1.9, "x": -0.12, "y": -1.13 },
  3850. { "time": 2.4333, "x": 0, "y": 0 },
  3851. { "time": 3.1333, "x": -0.12, "y": -1.13 },
  3852. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3853. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3854. { "time": 4.1667, "x": 0, "y": 0 }
  3855. ],
  3856. "scale": [
  3857. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3858. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3859. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3860. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3861. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3862. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  3863. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3864. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3865. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3866. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3867. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3868. { "time": 4.1667, "x": 1, "y": 1 }
  3869. ]
  3870. },
  3871. "bone55": {
  3872. "rotate": [
  3873. { "time": 0, "angle": 0 },
  3874. { "time": 0.1, "angle": -0.43 },
  3875. { "time": 0.2333, "angle": -0.86 },
  3876. { "time": 0.3333, "angle": -1.12 },
  3877. { "time": 0.6, "angle": -1.81 },
  3878. { "time": 1.1667, "angle": 0 },
  3879. { "time": 1.8667, "angle": -1.81 },
  3880. { "time": 2.4667, "angle": 0 },
  3881. { "time": 3.1333, "angle": -1.81 },
  3882. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3883. { "time": 4.1667, "angle": 0 }
  3884. ],
  3885. "translate": [
  3886. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3887. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3888. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3889. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3890. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3891. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3892. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  3893. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  3894. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3895. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3896. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3897. { "time": 4.1667, "x": 0, "y": 0 }
  3898. ],
  3899. "scale": [
  3900. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3901. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3902. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3903. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3904. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3905. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3906. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  3907. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  3908. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3909. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3910. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3911. { "time": 4.1667, "x": 1, "y": 1 }
  3912. ]
  3913. },
  3914. "bone56": {
  3915. "rotate": [
  3916. { "time": 0, "angle": 0 },
  3917. { "time": 0.1, "angle": -2.42 },
  3918. { "time": 0.2333, "angle": -4.85 },
  3919. { "time": 0.3333, "angle": -6.3 },
  3920. { "time": 0.6, "angle": -10.17 },
  3921. { "time": 1.1667, "angle": 0 },
  3922. { "time": 1.8667, "angle": -10.17 },
  3923. { "time": 2.4667, "angle": 0 },
  3924. { "time": 3.1333, "angle": -10.17 },
  3925. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3926. { "time": 4.1667, "angle": 0 }
  3927. ],
  3928. "translate": [
  3929. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3930. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3931. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3932. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3933. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3934. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3935. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  3936. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  3937. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3938. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3939. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3940. { "time": 4.1667, "x": 0, "y": 0 }
  3941. ],
  3942. "scale": [
  3943. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3944. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3945. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3946. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3947. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3948. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3949. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  3950. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  3951. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3952. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3953. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3954. { "time": 4.1667, "x": 1, "y": 1 }
  3955. ]
  3956. },
  3957. "bone57": {
  3958. "rotate": [
  3959. { "time": 0, "angle": 0 },
  3960. { "time": 0.1, "angle": -3.06 },
  3961. { "time": 0.2333, "angle": -6.13 },
  3962. { "time": 0.3333, "angle": -7.96 },
  3963. { "time": 0.6, "angle": -12.86 },
  3964. { "time": 1.1667, "angle": 0 },
  3965. { "time": 1.8667, "angle": -12.86 },
  3966. { "time": 2.4667, "angle": 0 },
  3967. { "time": 3.1333, "angle": -12.86 },
  3968. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  3969. { "time": 4.1667, "angle": 0 }
  3970. ],
  3971. "translate": [
  3972. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3973. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3974. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3975. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3976. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3977. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3978. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  3979. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  3980. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3981. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  3982. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3983. { "time": 4.1667, "x": 0, "y": 0 }
  3984. ],
  3985. "scale": [
  3986. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3987. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3988. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3989. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3990. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3991. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3992. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  3993. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  3994. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  3995. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  3996. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  3997. { "time": 4.1667, "x": 1, "y": 1 }
  3998. ]
  3999. },
  4000. "bone58": {
  4001. "rotate": [
  4002. { "time": 0, "angle": 0 },
  4003. { "time": 0.2333, "angle": -20.89 },
  4004. { "time": 0.5667, "angle": -15.51 },
  4005. { "time": 4.1667, "angle": 0 }
  4006. ],
  4007. "translate": [
  4008. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4009. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4010. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4011. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  4012. { "time": 4.1667, "x": 0, "y": 0 }
  4013. ],
  4014. "scale": [
  4015. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4016. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4017. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4018. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  4019. { "time": 4.1667, "x": 1, "y": 1 }
  4020. ]
  4021. },
  4022. "bone59": {
  4023. "rotate": [
  4024. { "time": 0, "angle": 0 },
  4025. { "time": 0.2333, "angle": 23.31 },
  4026. { "time": 0.5667, "angle": 8.98 },
  4027. { "time": 0.9, "angle": 14.51 },
  4028. { "time": 4.1667, "angle": 0 }
  4029. ],
  4030. "translate": [
  4031. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4032. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4033. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4034. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  4035. { "time": 4.1667, "x": 0, "y": 0 }
  4036. ],
  4037. "scale": [
  4038. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4039. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4040. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4041. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  4042. { "time": 4.1667, "x": 1, "y": 1 }
  4043. ]
  4044. },
  4045. "bone60": {
  4046. "rotate": [
  4047. { "time": 0, "angle": 0, "curve": "stepped" },
  4048. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4049. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  4050. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4051. { "time": 0.5667, "angle": 0 },
  4052. { "time": 0.7333, "angle": 6.8 },
  4053. { "time": 0.9, "angle": 0, "curve": "stepped" },
  4054. { "time": 1.0667, "angle": 0 },
  4055. { "time": 1.2333, "angle": 6.8 },
  4056. { "time": 1.4, "angle": 0, "curve": "stepped" },
  4057. { "time": 1.5667, "angle": 0 },
  4058. { "time": 1.7333, "angle": 6.8 },
  4059. { "time": 1.9, "angle": 0, "curve": "stepped" },
  4060. { "time": 2.0667, "angle": 0 },
  4061. { "time": 2.2333, "angle": 6.8 },
  4062. { "time": 2.4, "angle": 0, "curve": "stepped" },
  4063. { "time": 2.5667, "angle": 0 },
  4064. { "time": 2.7333, "angle": 6.8 },
  4065. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4066. { "time": 3.0667, "angle": 0 },
  4067. { "time": 3.2333, "angle": 6.8 },
  4068. { "time": 3.4, "angle": 0, "curve": "stepped" },
  4069. { "time": 4.1667, "angle": 0 }
  4070. ],
  4071. "translate": [
  4072. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4073. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4074. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4075. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4076. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4077. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4078. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  4079. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  4080. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4081. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  4082. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  4083. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  4084. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  4085. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4086. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  4087. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  4088. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  4089. { "time": 4.1667, "x": 0, "y": 0 }
  4090. ],
  4091. "scale": [
  4092. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4093. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4094. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4095. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4096. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4097. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4098. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  4099. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  4100. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4101. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  4102. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  4103. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  4104. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  4105. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4106. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4107. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  4108. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  4109. { "time": 4.1667, "x": 1, "y": 1 }
  4110. ]
  4111. },
  4112. "bone61": {
  4113. "rotate": [
  4114. { "time": 0, "angle": 0, "curve": "stepped" },
  4115. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4116. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  4117. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4118. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4119. { "time": 0.9, "angle": 0, "curve": "stepped" },
  4120. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4121. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  4122. { "time": 1.7, "angle": 0, "curve": "stepped" },
  4123. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  4124. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  4125. { "time": 2.6, "angle": 0, "curve": "stepped" },
  4126. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  4127. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  4128. { "time": 3.4, "angle": 0, "curve": "stepped" },
  4129. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  4130. { "time": 4.1667, "angle": 0 }
  4131. ],
  4132. "translate": [
  4133. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4134. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4135. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4136. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4137. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4138. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4139. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4140. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4141. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  4142. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  4143. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  4144. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  4145. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4146. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  4147. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  4148. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  4149. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  4150. { "time": 4.1667, "x": 0, "y": 0 }
  4151. ],
  4152. "scale": [
  4153. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4154. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4155. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4156. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4157. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4158. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4159. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4160. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4161. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  4162. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  4163. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  4164. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  4165. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4166. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  4167. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  4168. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  4169. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  4170. { "time": 4.1667, "x": 1, "y": 1 }
  4171. ]
  4172. },
  4173. "bone62": {
  4174. "rotate": [
  4175. { "time": 0, "angle": 0, "curve": "stepped" },
  4176. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4177. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  4178. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4179. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4180. { "time": 0.9, "angle": 0, "curve": "stepped" },
  4181. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4182. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  4183. { "time": 1.7, "angle": 0, "curve": "stepped" },
  4184. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  4185. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  4186. { "time": 2.6, "angle": 0, "curve": "stepped" },
  4187. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  4188. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  4189. { "time": 3.4, "angle": 0, "curve": "stepped" },
  4190. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  4191. { "time": 4.1667, "angle": 0 }
  4192. ],
  4193. "translate": [
  4194. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4195. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4196. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4197. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4198. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4199. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4200. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4201. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4202. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  4203. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  4204. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  4205. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  4206. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4207. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  4208. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  4209. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  4210. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  4211. { "time": 4.1667, "x": 0, "y": 0 }
  4212. ],
  4213. "scale": [
  4214. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4215. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4216. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4217. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4218. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4219. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4220. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4221. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4222. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  4223. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  4224. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  4225. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  4226. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4227. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  4228. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  4229. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  4230. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  4231. { "time": 4.1667, "x": 1, "y": 1 }
  4232. ]
  4233. },
  4234. "bone63": {
  4235. "rotate": [
  4236. { "time": 0, "angle": 0, "curve": "stepped" },
  4237. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4238. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  4239. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4240. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4241. { "time": 0.9, "angle": 0, "curve": "stepped" },
  4242. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4243. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  4244. { "time": 1.7, "angle": 0, "curve": "stepped" },
  4245. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  4246. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  4247. { "time": 2.6, "angle": 0, "curve": "stepped" },
  4248. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  4249. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  4250. { "time": 3.4, "angle": 0, "curve": "stepped" },
  4251. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  4252. { "time": 4.1667, "angle": 0 }
  4253. ],
  4254. "translate": [
  4255. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4256. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4257. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4258. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4259. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4260. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4261. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4262. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4263. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  4264. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  4265. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  4266. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  4267. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4268. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  4269. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  4270. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  4271. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  4272. { "time": 4.1667, "x": 0, "y": 0 }
  4273. ],
  4274. "scale": [
  4275. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4276. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4277. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4278. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4279. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4280. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4281. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4282. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4283. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  4284. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  4285. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  4286. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  4287. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4288. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  4289. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  4290. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  4291. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  4292. { "time": 4.1667, "x": 1, "y": 1 }
  4293. ]
  4294. },
  4295. "bone64": {
  4296. "rotate": [
  4297. { "time": 0, "angle": 0, "curve": "stepped" },
  4298. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4299. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  4300. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4301. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4302. { "time": 0.9, "angle": 0, "curve": "stepped" },
  4303. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4304. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  4305. { "time": 1.7, "angle": 0, "curve": "stepped" },
  4306. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  4307. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  4308. { "time": 2.6, "angle": 0, "curve": "stepped" },
  4309. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  4310. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  4311. { "time": 3.4, "angle": 0, "curve": "stepped" },
  4312. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  4313. { "time": 4.1667, "angle": 0 }
  4314. ],
  4315. "translate": [
  4316. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4317. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4318. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4319. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4320. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4321. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4322. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4323. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4324. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  4325. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  4326. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  4327. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  4328. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4329. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  4330. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  4331. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  4332. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  4333. { "time": 4.1667, "x": 0, "y": 0 }
  4334. ],
  4335. "scale": [
  4336. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4337. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4338. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4339. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4340. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4341. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4342. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4343. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4344. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  4345. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  4346. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  4347. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  4348. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4349. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  4350. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  4351. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  4352. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  4353. { "time": 4.1667, "x": 1, "y": 1 }
  4354. ]
  4355. },
  4356. "bone65": {
  4357. "rotate": [
  4358. { "time": 0, "angle": 0, "curve": "stepped" },
  4359. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4360. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  4361. { "time": 0.3333, "angle": 0 },
  4362. { "time": 0.5667, "angle": -2.44 },
  4363. { "time": 0.9, "angle": 0 },
  4364. { "time": 1.1333, "angle": -2.44 },
  4365. { "time": 1.4667, "angle": 0 },
  4366. { "time": 1.7, "angle": -2.44 },
  4367. { "time": 2.0333, "angle": 0 },
  4368. { "time": 2.2667, "angle": -2.44 },
  4369. { "time": 2.6, "angle": 0 },
  4370. { "time": 2.8333, "angle": -2.44 },
  4371. { "time": 3.1667, "angle": 0 },
  4372. { "time": 3.4, "angle": -2.44 },
  4373. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  4374. { "time": 4.1667, "angle": 0 }
  4375. ],
  4376. "translate": [
  4377. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4378. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4379. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4380. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4381. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4382. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4383. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4384. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4385. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  4386. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  4387. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  4388. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  4389. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4390. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  4391. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  4392. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  4393. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  4394. { "time": 4.1667, "x": 0, "y": 0 }
  4395. ],
  4396. "scale": [
  4397. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4398. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4399. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4400. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4401. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4402. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4403. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4404. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4405. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  4406. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  4407. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  4408. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  4409. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4410. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  4411. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  4412. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  4413. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  4414. { "time": 4.1667, "x": 1, "y": 1 }
  4415. ]
  4416. },
  4417. "bone66": {
  4418. "rotate": [
  4419. { "time": 0, "angle": 0, "curve": "stepped" },
  4420. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4421. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  4422. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4423. { "time": 4.1667, "angle": 0 }
  4424. ],
  4425. "translate": [
  4426. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4427. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4428. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4429. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4430. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  4431. { "time": 4.1667, "x": 0, "y": 0 }
  4432. ],
  4433. "scale": [
  4434. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4435. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4436. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4437. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4438. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  4439. { "time": 4.1667, "x": 1, "y": 1 }
  4440. ]
  4441. },
  4442. "bone67": {
  4443. "rotate": [
  4444. { "time": 0, "angle": 0, "curve": "stepped" },
  4445. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4446. { "time": 4.1667, "angle": 0 }
  4447. ],
  4448. "translate": [
  4449. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4450. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4451. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  4452. { "time": 4.1667, "x": 0, "y": 0 }
  4453. ],
  4454. "scale": [
  4455. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4456. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4457. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  4458. { "time": 4.1667, "x": 1, "y": 1 }
  4459. ]
  4460. },
  4461. "bone68": {
  4462. "rotate": [
  4463. { "time": 0, "angle": 0, "curve": "stepped" },
  4464. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4465. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4466. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4467. { "time": 0.9, "angle": 0, "curve": "stepped" },
  4468. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4469. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  4470. { "time": 1.7, "angle": 0, "curve": "stepped" },
  4471. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  4472. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  4473. { "time": 2.6, "angle": 0, "curve": "stepped" },
  4474. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  4475. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  4476. { "time": 3.4, "angle": 0, "curve": "stepped" },
  4477. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  4478. { "time": 4.1667, "angle": 0 }
  4479. ],
  4480. "translate": [
  4481. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4482. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4483. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  4484. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4485. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4486. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4487. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4488. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  4489. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  4490. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  4491. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  4492. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4493. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  4494. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  4495. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  4496. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  4497. { "time": 4.1667, "x": 0, "y": 0 }
  4498. ],
  4499. "scale": [
  4500. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4501. { "time": 0.1, "x": 1, "y": 1 },
  4502. { "time": 0.2, "x": 0.535, "y": 1, "curve": "stepped" },
  4503. { "time": 0.5667, "x": 0.535, "y": 1, "curve": "stepped" },
  4504. { "time": 0.9, "x": 0.535, "y": 1, "curve": "stepped" },
  4505. { "time": 1.1333, "x": 0.535, "y": 1, "curve": "stepped" },
  4506. { "time": 1.4667, "x": 0.535, "y": 1, "curve": "stepped" },
  4507. { "time": 1.7, "x": 0.535, "y": 1, "curve": "stepped" },
  4508. { "time": 2.0333, "x": 0.535, "y": 1, "curve": "stepped" },
  4509. { "time": 2.2667, "x": 0.535, "y": 1, "curve": "stepped" },
  4510. { "time": 2.6, "x": 0.535, "y": 1, "curve": "stepped" },
  4511. { "time": 2.8333, "x": 0.535, "y": 1, "curve": "stepped" },
  4512. { "time": 3.1667, "x": 0.535, "y": 1, "curve": "stepped" },
  4513. { "time": 3.4, "x": 0.535, "y": 1, "curve": "stepped" },
  4514. { "time": 3.8667, "x": 0.535, "y": 1 },
  4515. { "time": 4.0333, "x": 1, "y": 1 }
  4516. ]
  4517. },
  4518. "bone69": {
  4519. "rotate": [
  4520. { "time": 0, "angle": 0, "curve": "stepped" },
  4521. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4522. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4523. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4524. { "time": 0.9, "angle": 0, "curve": "stepped" },
  4525. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4526. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  4527. { "time": 1.7, "angle": 0, "curve": "stepped" },
  4528. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  4529. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  4530. { "time": 2.6, "angle": 0, "curve": "stepped" },
  4531. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  4532. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  4533. { "time": 3.4, "angle": 0, "curve": "stepped" },
  4534. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  4535. { "time": 4.1667, "angle": 0 }
  4536. ],
  4537. "translate": [
  4538. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4539. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4540. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  4541. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4542. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4543. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4544. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4545. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  4546. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  4547. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  4548. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  4549. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4550. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  4551. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  4552. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  4553. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  4554. { "time": 4.1667, "x": 0, "y": 0 }
  4555. ],
  4556. "scale": [
  4557. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4558. { "time": 0.1, "x": 1, "y": 1 },
  4559. { "time": 0.2, "x": 0.454, "y": 1, "curve": "stepped" },
  4560. { "time": 0.5667, "x": 0.454, "y": 1, "curve": "stepped" },
  4561. { "time": 0.9, "x": 0.454, "y": 1, "curve": "stepped" },
  4562. { "time": 1.1333, "x": 0.454, "y": 1, "curve": "stepped" },
  4563. { "time": 1.4667, "x": 0.454, "y": 1, "curve": "stepped" },
  4564. { "time": 1.7, "x": 0.454, "y": 1, "curve": "stepped" },
  4565. { "time": 2.0333, "x": 0.454, "y": 1, "curve": "stepped" },
  4566. { "time": 2.2667, "x": 0.454, "y": 1, "curve": "stepped" },
  4567. { "time": 2.6, "x": 0.454, "y": 1, "curve": "stepped" },
  4568. { "time": 2.8333, "x": 0.454, "y": 1, "curve": "stepped" },
  4569. { "time": 3.1667, "x": 0.454, "y": 1, "curve": "stepped" },
  4570. { "time": 3.4, "x": 0.454, "y": 1, "curve": "stepped" },
  4571. { "time": 3.7333, "x": 0.454, "y": 1, "curve": "stepped" },
  4572. { "time": 3.8667, "x": 0.454, "y": 1 },
  4573. { "time": 4.0333, "x": 1, "y": 1 }
  4574. ]
  4575. },
  4576. "bone70": {
  4577. "rotate": [
  4578. { "time": 0, "angle": 0, "curve": "stepped" },
  4579. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4580. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4581. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  4582. { "time": 0.9, "angle": 0, "curve": "stepped" },
  4583. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4584. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  4585. { "time": 1.7, "angle": 0, "curve": "stepped" },
  4586. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  4587. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  4588. { "time": 2.6, "angle": 0, "curve": "stepped" },
  4589. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  4590. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  4591. { "time": 3.4, "angle": 0, "curve": "stepped" },
  4592. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  4593. { "time": 4.0333, "angle": 0 }
  4594. ],
  4595. "translate": [
  4596. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4597. { "time": 0.1, "x": 0, "y": 0 },
  4598. { "time": 0.2, "x": -1.96, "y": 0.18, "curve": "stepped" },
  4599. { "time": 0.5667, "x": -1.96, "y": 0.18, "curve": "stepped" },
  4600. { "time": 0.9, "x": -1.96, "y": 0.18, "curve": "stepped" },
  4601. { "time": 1.1333, "x": -1.96, "y": 0.18, "curve": "stepped" },
  4602. { "time": 1.4667, "x": -1.96, "y": 0.18, "curve": "stepped" },
  4603. { "time": 1.7, "x": -1.96, "y": 0.18, "curve": "stepped" },
  4604. { "time": 2.0333, "x": -1.96, "y": 0.18, "curve": "stepped" },
  4605. { "time": 2.2667, "x": -1.96, "y": 0.18, "curve": "stepped" },
  4606. { "time": 2.6, "x": -1.96, "y": 0.18, "curve": "stepped" },
  4607. { "time": 2.8333, "x": -1.96, "y": 0.18, "curve": "stepped" },
  4608. { "time": 3.1667, "x": -1.96, "y": 0.18, "curve": "stepped" },
  4609. { "time": 3.4, "x": -1.96, "y": 0.18, "curve": "stepped" },
  4610. { "time": 3.7333, "x": -1.96, "y": 0.18, "curve": "stepped" },
  4611. { "time": 3.8667, "x": -1.96, "y": 0.18 },
  4612. { "time": 4.0333, "x": 0, "y": 0 }
  4613. ],
  4614. "scale": [
  4615. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4616. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4617. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  4618. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4619. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4620. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4621. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4622. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  4623. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  4624. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  4625. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  4626. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4627. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  4628. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  4629. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  4630. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  4631. { "time": 4.0333, "x": 1, "y": 1 }
  4632. ]
  4633. },
  4634. "bone71": {
  4635. "rotate": [
  4636. { "time": 0, "angle": 0, "curve": "stepped" },
  4637. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4638. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  4639. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4640. { "time": 4.1667, "angle": 0 }
  4641. ],
  4642. "translate": [
  4643. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4644. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4645. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4646. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4647. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  4648. { "time": 4.1667, "x": 0, "y": 0 }
  4649. ],
  4650. "scale": [
  4651. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4652. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4653. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4654. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4655. { "time": 3.8667, "x": 1, "y": 1, "curve": "stepped" },
  4656. { "time": 4.1667, "x": 1, "y": 1 }
  4657. ]
  4658. },
  4659. "bone29": {
  4660. "rotate": [
  4661. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4662. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4663. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4664. { "time": 1.9667, "angle": 0, "curve": "stepped" },
  4665. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  4666. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  4667. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  4668. { "time": 3.7, "angle": 0 }
  4669. ],
  4670. "translate": [
  4671. { "time": 0.6, "x": 0, "y": 0 },
  4672. { "time": 1.1333, "x": -27.56, "y": 18.6 },
  4673. { "time": 1.7667, "x": -83.37, "y": 28.94, "curve": "stepped" },
  4674. { "time": 1.9667, "x": -83.37, "y": 28.94 },
  4675. { "time": 2.0333, "x": 0, "y": 0 },
  4676. { "time": 2.7667, "x": -27.56, "y": 18.6 },
  4677. { "time": 3.6333, "x": -83.37, "y": 28.94, "curve": "stepped" },
  4678. { "time": 3.7, "x": -83.37, "y": 28.94 }
  4679. ],
  4680. "scale": [
  4681. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4682. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4683. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4684. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  4685. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  4686. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  4687. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4688. { "time": 3.7, "x": 1, "y": 1 }
  4689. ]
  4690. },
  4691. "bone30": {
  4692. "rotate": [
  4693. { "time": 0.3, "angle": 0, "curve": "stepped" },
  4694. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  4695. { "time": 1.9667, "angle": 0, "curve": "stepped" },
  4696. { "time": 2.4, "angle": 0, "curve": "stepped" },
  4697. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  4698. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4699. { "time": 4.1, "angle": 0, "curve": "stepped" },
  4700. { "time": 4.1333, "angle": 0 }
  4701. ],
  4702. "translate": [
  4703. { "time": 0.3, "x": 0, "y": 0 },
  4704. { "time": 0.7667, "x": 43.41, "y": 43.41 },
  4705. { "time": 1.9667, "x": 102.66, "y": 50.99, "curve": "stepped" },
  4706. { "time": 2.4, "x": 102.66, "y": 50.99 },
  4707. { "time": 2.4333, "x": 0, "y": 0 },
  4708. { "time": 2.9, "x": 43.41, "y": 43.41 },
  4709. { "time": 4.1, "x": 102.66, "y": 50.99, "curve": "stepped" },
  4710. { "time": 4.1333, "x": 102.66, "y": 50.99 }
  4711. ],
  4712. "scale": [
  4713. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4714. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4715. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  4716. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  4717. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4718. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4719. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  4720. { "time": 4.1333, "x": 1, "y": 1 }
  4721. ]
  4722. },
  4723. "bone31": {
  4724. "rotate": [
  4725. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4726. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  4727. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4728. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  4729. { "time": 1.7, "angle": 0, "curve": "stepped" },
  4730. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  4731. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  4732. { "time": 3.1, "angle": 0 }
  4733. ],
  4734. "translate": [
  4735. { "time": 0.3333, "x": -30.32, "y": -51.67 },
  4736. { "time": 0.7333, "x": 0, "y": 0 },
  4737. { "time": 1.3333, "x": 17.91, "y": 66.83, "curve": "stepped" },
  4738. { "time": 1.6333, "x": 17.91, "y": 66.83 },
  4739. { "time": 1.7, "x": -30.32, "y": -51.67 },
  4740. { "time": 2.1333, "x": -3.09, "y": -19.46 },
  4741. { "time": 3.0333, "x": 43.62, "y": 20.55 },
  4742. { "time": 3.1, "x": 42.72, "y": 26.87 }
  4743. ],
  4744. "scale": [
  4745. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4746. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4747. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4748. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4749. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  4750. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  4751. { "time": 3.0333, "x": 1, "y": 1, "curve": "stepped" },
  4752. { "time": 3.1, "x": 1, "y": 1 }
  4753. ]
  4754. }
  4755. },
  4756. "deform": {
  4757. "default": {
  4758. "maozi": {
  4759. "maozi": [
  4760. { "time": 0 },
  4761. {
  4762. "time": 0.3333,
  4763. "vertices": [ -0.57742, 1.97161, -0.35902, 1.82503, -0.32315, 1.64246, 0.26328, 2.51615, 0.51465, 1.23862, -0.28423, 2.40848, -0.43085, 2.19, 0, 0, 0, 0, -0.43085, 2.19, -0.97534, 3.03078, -0.25133, 1.27754, -0.43085, 2.19, -0.21542, 1.095 ]
  4764. },
  4765. { "time": 0.8667 },
  4766. {
  4767. "time": 1.2667,
  4768. "vertices": [ -0.57742, 1.97161, -0.35902, 1.82503, -0.32315, 1.64246, 0.26328, 2.51615, 0.51465, 1.23862, -0.28423, 2.40848, -0.43085, 2.19, 0, 0, 0, 0, -0.43085, 2.19, -0.97534, 3.03078, -0.25133, 1.27754, -0.43085, 2.19, -0.21542, 1.095 ]
  4769. },
  4770. { "time": 1.8333 },
  4771. {
  4772. "time": 2.2333,
  4773. "vertices": [ -0.57742, 1.97161, -0.35902, 1.82503, -0.32315, 1.64246, 0.26328, 2.51615, 0.51465, 1.23862, -0.28423, 2.40848, -0.43085, 2.19, 0, 0, 0, 0, -0.43085, 2.19, -0.97534, 3.03078, -0.25133, 1.27754, -0.43085, 2.19, -0.21542, 1.095 ]
  4774. },
  4775. { "time": 2.8 },
  4776. {
  4777. "time": 3.2,
  4778. "vertices": [ -0.57742, 1.97161, -0.35902, 1.82503, -0.32315, 1.64246, 0.26328, 2.51615, 0.51465, 1.23862, -0.28423, 2.40848, -0.43085, 2.19, 0, 0, 0, 0, -0.43085, 2.19, -0.97534, 3.03078, -0.25133, 1.27754, -0.43085, 2.19, -0.21542, 1.095 ]
  4779. },
  4780. { "time": 3.7333, "curve": "stepped" },
  4781. { "time": 4.1667 }
  4782. ]
  4783. },
  4784. "shenti2": {
  4785. "shenti2": [
  4786. { "time": 0 },
  4787. {
  4788. "time": 0.2333,
  4789. "offset": 42,
  4790. "vertices": [ 0.326, 0.02897, 0.3259, 0.03075, 0, 0, 0, 0, 0.326, 0.02897, 0.3259, 0.03075, 0, 0, 0, 0, 0.326, 0.02897, 0.3259, 0.03075, 0.326, 0.02897, 0.3259, 0.03075 ]
  4791. },
  4792. { "time": 0.5667, "curve": "stepped" },
  4793. { "time": 4.1667 }
  4794. ]
  4795. },
  4796. "toufa1": {
  4797. "toufa1": [
  4798. { "time": 0, "curve": "stepped" },
  4799. { "time": 4.1667 }
  4800. ]
  4801. },
  4802. "toufa6": {
  4803. "toufa6": [
  4804. { "time": 0 },
  4805. {
  4806. "time": 0.3667,
  4807. "vertices": [ 3.65096, -2.4069, 1.99809, 0.2488 ]
  4808. },
  4809. {
  4810. "time": 0.8667,
  4811. "vertices": [ -2.3615, -3.6971, -7.0386, -6.44114 ]
  4812. },
  4813. {
  4814. "time": 1.3333,
  4815. "vertices": [ -5.09472, 3.83406, -0.23545, 8.18012 ]
  4816. },
  4817. { "time": 1.8333 },
  4818. {
  4819. "time": 2.3,
  4820. "vertices": [ -5.09472, 3.83406, -0.23545, 8.18012 ]
  4821. },
  4822. { "time": 2.8 },
  4823. {
  4824. "time": 3.2667,
  4825. "vertices": [ -5.09472, 3.83406, -0.23545, 8.18012 ]
  4826. },
  4827. { "time": 3.7333, "curve": "stepped" },
  4828. { "time": 4.1667 }
  4829. ]
  4830. },
  4831. "yifu2": {
  4832. "yifu2": [
  4833. { "time": 0, "curve": "stepped" },
  4834. { "time": 4.1667 }
  4835. ]
  4836. },
  4837. "yifu3": {
  4838. "yifu3": [
  4839. { "time": 0, "curve": "stepped" },
  4840. { "time": 1.2, "curve": "stepped" },
  4841. { "time": 2.4333, "curve": "stepped" },
  4842. { "time": 4.1667 }
  4843. ]
  4844. }
  4845. }
  4846. },
  4847. "drawOrder": [
  4848. {
  4849. "time": 0.1,
  4850. "offsets": [
  4851. { "slot": "maikefeng", "offset": 24 }
  4852. ]
  4853. }
  4854. ]
  4855. },
  4856. "walk1": {
  4857. "slots": {
  4858. "biyan": {
  4859. "attachment": [
  4860. { "time": 1.1, "name": "biyan" },
  4861. { "time": 1.2, "name": null }
  4862. ]
  4863. },
  4864. "xiao": {
  4865. "attachment": [
  4866. { "time": 0, "name": null },
  4867. { "time": 1, "name": null },
  4868. { "time": 2, "name": null }
  4869. ]
  4870. },
  4871. "yin1": {
  4872. "color": [
  4873. { "time": 0, "color": "ffffff00" }
  4874. ]
  4875. },
  4876. "yin2": {
  4877. "color": [
  4878. { "time": 0, "color": "ffffff00" }
  4879. ]
  4880. },
  4881. "yin3": {
  4882. "color": [
  4883. { "time": 0, "color": "ffffff00" }
  4884. ]
  4885. },
  4886. "youyan": {
  4887. "attachment": [
  4888. { "time": 1.1, "name": null },
  4889. { "time": 1.2, "name": "youyan" }
  4890. ]
  4891. },
  4892. "zuiba": {
  4893. "attachment": [
  4894. { "time": 0, "name": "zuiba" },
  4895. { "time": 1, "name": "zuiba" },
  4896. { "time": 2, "name": "zuiba" }
  4897. ]
  4898. },
  4899. "zuoyan": {
  4900. "attachment": [
  4901. { "time": 1.1, "name": null },
  4902. { "time": 1.2, "name": "zuoyan" }
  4903. ]
  4904. }
  4905. },
  4906. "bones": {
  4907. "root": {
  4908. "rotate": [
  4909. { "time": 0, "angle": 0 }
  4910. ],
  4911. "translate": [
  4912. { "time": 0, "x": 0, "y": 0 }
  4913. ],
  4914. "scale": [
  4915. { "time": 0, "x": 0.65, "y": 0.65 }
  4916. ]
  4917. },
  4918. "bone": {
  4919. "rotate": [
  4920. { "time": 0, "angle": 0 }
  4921. ],
  4922. "translate": [
  4923. { "time": 0, "x": 0, "y": 0 }
  4924. ],
  4925. "scale": [
  4926. { "time": 0, "x": 1, "y": 1 }
  4927. ]
  4928. },
  4929. "bone2": {
  4930. "rotate": [
  4931. { "time": 0, "angle": 0, "curve": "stepped" },
  4932. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4933. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4934. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4935. { "time": 1, "angle": 0, "curve": "stepped" },
  4936. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4937. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4938. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4939. { "time": 2, "angle": 0 }
  4940. ],
  4941. "translate": [
  4942. { "time": 0, "x": 0, "y": 1.89 },
  4943. { "time": 0.1667, "x": 0, "y": 0 },
  4944. { "time": 0.5, "x": 0, "y": 1.89 },
  4945. { "time": 0.6667, "x": 0, "y": 0 },
  4946. { "time": 1, "x": 0, "y": 1.89 },
  4947. { "time": 1.1667, "x": 0, "y": 0 },
  4948. { "time": 1.5, "x": 0, "y": 1.89 },
  4949. { "time": 1.6667, "x": 0, "y": 0 },
  4950. { "time": 2, "x": 0, "y": 1.89 }
  4951. ],
  4952. "scale": [
  4953. { "time": 0, "x": 1, "y": 1 }
  4954. ]
  4955. },
  4956. "bone3": {
  4957. "rotate": [
  4958. { "time": 0, "angle": 0, "curve": "stepped" },
  4959. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4960. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4961. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4962. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4963. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4964. { "time": 1, "angle": 0, "curve": "stepped" },
  4965. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4966. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4967. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4968. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4969. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4970. { "time": 2, "angle": 0 }
  4971. ],
  4972. "translate": [
  4973. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4974. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4975. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4976. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4977. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4978. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4979. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4980. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4981. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4982. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4983. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4984. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4985. { "time": 2, "x": 0, "y": 0 }
  4986. ],
  4987. "scale": [
  4988. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4989. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4990. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4991. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4992. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4993. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4994. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4995. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4996. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4997. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4998. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4999. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5000. { "time": 2, "x": 1, "y": 1 }
  5001. ]
  5002. },
  5003. "bone4": {
  5004. "rotate": [
  5005. { "time": 0, "angle": 0, "curve": "stepped" },
  5006. { "time": 1, "angle": 0, "curve": "stepped" },
  5007. { "time": 2, "angle": 0 }
  5008. ],
  5009. "translate": [
  5010. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5011. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5012. { "time": 2, "x": 0, "y": 0 }
  5013. ],
  5014. "scale": [
  5015. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5016. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5017. { "time": 2, "x": 1, "y": 1 }
  5018. ]
  5019. },
  5020. "bone5": {
  5021. "rotate": [
  5022. { "time": 0, "angle": 0, "curve": "stepped" },
  5023. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5024. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5025. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5026. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5027. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5028. { "time": 1, "angle": 0, "curve": "stepped" },
  5029. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5030. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5031. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5032. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5033. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5034. { "time": 2, "angle": 0 }
  5035. ],
  5036. "translate": [
  5037. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5038. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5039. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5040. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5041. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5042. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5043. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5044. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5045. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5046. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5047. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5048. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5049. { "time": 2, "x": 0, "y": 0 }
  5050. ],
  5051. "scale": [
  5052. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5053. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5054. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5055. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5056. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5057. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5058. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5059. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5060. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5061. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5062. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5063. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5064. { "time": 2, "x": 1, "y": 1 }
  5065. ]
  5066. },
  5067. "bone6": {
  5068. "rotate": [
  5069. { "time": 0, "angle": 0, "curve": "stepped" },
  5070. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5071. { "time": 1, "angle": 0, "curve": "stepped" },
  5072. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5073. { "time": 2, "angle": 0 }
  5074. ],
  5075. "translate": [
  5076. { "time": 0, "x": 0, "y": 0 },
  5077. { "time": 0.5, "x": -0.11, "y": 1.39 },
  5078. { "time": 1, "x": 0, "y": 0 },
  5079. { "time": 1.5, "x": -0.11, "y": 1.39 },
  5080. { "time": 2, "x": 0, "y": 0 }
  5081. ],
  5082. "scale": [
  5083. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5084. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5085. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5086. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5087. { "time": 2, "x": 1, "y": 1 }
  5088. ]
  5089. },
  5090. "bone7": {
  5091. "rotate": [
  5092. { "time": 0, "angle": 0 },
  5093. { "time": 0.5, "angle": -10.49 },
  5094. { "time": 1, "angle": 0 },
  5095. { "time": 1.5, "angle": -10.49 },
  5096. { "time": 2, "angle": 0 }
  5097. ],
  5098. "translate": [
  5099. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5100. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5101. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5102. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5103. { "time": 2, "x": 0, "y": 0 }
  5104. ],
  5105. "scale": [
  5106. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5107. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5108. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5109. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5110. { "time": 2, "x": 1, "y": 1 }
  5111. ]
  5112. },
  5113. "bone8": {
  5114. "rotate": [
  5115. { "time": 0, "angle": 0 },
  5116. { "time": 0.5, "angle": -3.88 },
  5117. { "time": 1, "angle": 0 },
  5118. { "time": 1.5, "angle": -3.88 },
  5119. { "time": 2, "angle": 0 }
  5120. ],
  5121. "translate": [
  5122. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5123. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5124. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5125. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5126. { "time": 2, "x": 0, "y": 0 }
  5127. ],
  5128. "scale": [
  5129. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5130. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5131. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5132. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5133. { "time": 2, "x": 1, "y": 1 }
  5134. ]
  5135. },
  5136. "bone9": {
  5137. "rotate": [
  5138. { "time": 0, "angle": 0 },
  5139. { "time": 0.5, "angle": -3.88 },
  5140. { "time": 1, "angle": 0 },
  5141. { "time": 1.5, "angle": -3.88 },
  5142. { "time": 2, "angle": 0 }
  5143. ],
  5144. "translate": [
  5145. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5146. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5147. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5148. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5149. { "time": 2, "x": 0, "y": 0 }
  5150. ],
  5151. "scale": [
  5152. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5153. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5154. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5155. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5156. { "time": 2, "x": 1, "y": 1 }
  5157. ]
  5158. },
  5159. "bone10": {
  5160. "rotate": [
  5161. { "time": 0, "angle": 0, "curve": "stepped" },
  5162. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5163. { "time": 1, "angle": 0, "curve": "stepped" },
  5164. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5165. { "time": 2, "angle": 0 }
  5166. ],
  5167. "translate": [
  5168. { "time": 0, "x": 0, "y": 0 },
  5169. { "time": 0.5, "x": 0.84, "y": 1.43 },
  5170. { "time": 1, "x": 0, "y": 0 },
  5171. { "time": 1.5, "x": 0.84, "y": 1.43 },
  5172. { "time": 2, "x": 0, "y": 0 }
  5173. ],
  5174. "scale": [
  5175. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5176. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5177. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5178. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5179. { "time": 2, "x": 1, "y": 1 }
  5180. ]
  5181. },
  5182. "bone11": {
  5183. "rotate": [
  5184. { "time": 0, "angle": 0 },
  5185. { "time": 0.5, "angle": -2.08 },
  5186. { "time": 1, "angle": 0 },
  5187. { "time": 1.5, "angle": -2.08 },
  5188. { "time": 2, "angle": 0 }
  5189. ],
  5190. "translate": [
  5191. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5192. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5193. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5194. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5195. { "time": 2, "x": 0, "y": 0 }
  5196. ],
  5197. "scale": [
  5198. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5199. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5200. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5201. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5202. { "time": 2, "x": 1, "y": 1 }
  5203. ]
  5204. },
  5205. "bone12": {
  5206. "rotate": [
  5207. { "time": 0, "angle": 0 },
  5208. { "time": 0.5, "angle": -2.08 },
  5209. { "time": 1, "angle": 0 },
  5210. { "time": 1.5, "angle": -2.08 },
  5211. { "time": 2, "angle": 0 }
  5212. ],
  5213. "translate": [
  5214. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5215. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5216. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5217. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5218. { "time": 2, "x": 0, "y": 0 }
  5219. ],
  5220. "scale": [
  5221. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5222. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5223. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5224. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5225. { "time": 2, "x": 1, "y": 1 }
  5226. ]
  5227. },
  5228. "bone13": {
  5229. "rotate": [
  5230. { "time": 0, "angle": 0 },
  5231. { "time": 0.5, "angle": -2.08 },
  5232. { "time": 1, "angle": 0 },
  5233. { "time": 1.5, "angle": -2.08 },
  5234. { "time": 2, "angle": 0 }
  5235. ],
  5236. "translate": [
  5237. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5238. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5239. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5240. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5241. { "time": 2, "x": 0, "y": 0 }
  5242. ],
  5243. "scale": [
  5244. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5245. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5246. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5247. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5248. { "time": 2, "x": 1, "y": 1 }
  5249. ]
  5250. },
  5251. "bone14": {
  5252. "rotate": [
  5253. { "time": 0, "angle": 0, "curve": "stepped" },
  5254. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5255. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5256. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5257. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5258. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5259. { "time": 1, "angle": 0, "curve": "stepped" },
  5260. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5261. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5262. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5263. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5264. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5265. { "time": 2, "angle": 0 }
  5266. ],
  5267. "translate": [
  5268. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5269. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5270. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5271. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5272. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5273. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5274. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5275. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5276. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5277. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5278. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5279. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5280. { "time": 2, "x": 0, "y": 0 }
  5281. ],
  5282. "scale": [
  5283. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5284. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5285. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5286. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5287. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5288. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5289. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5290. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5291. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5292. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5293. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5294. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5295. { "time": 2, "x": 1, "y": 1 }
  5296. ]
  5297. },
  5298. "bone15": {
  5299. "rotate": [
  5300. { "time": 0, "angle": 0, "curve": "stepped" },
  5301. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5302. { "time": 1, "angle": 0, "curve": "stepped" },
  5303. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5304. { "time": 2, "angle": 0 }
  5305. ],
  5306. "translate": [
  5307. { "time": 0, "x": 0, "y": 0 },
  5308. { "time": 0.5, "x": 0.15, "y": -1.33 },
  5309. { "time": 1, "x": 0, "y": 0 },
  5310. { "time": 1.5, "x": 0.15, "y": -1.33 },
  5311. { "time": 2, "x": 0, "y": 0 }
  5312. ],
  5313. "scale": [
  5314. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5315. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5316. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5317. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5318. { "time": 2, "x": 1, "y": 1 }
  5319. ]
  5320. },
  5321. "bone16": {
  5322. "rotate": [
  5323. { "time": 0, "angle": 0 },
  5324. { "time": 0.5, "angle": -6.52 },
  5325. { "time": 1, "angle": 0 },
  5326. { "time": 1.5, "angle": -6.52 },
  5327. { "time": 2, "angle": 0 }
  5328. ],
  5329. "translate": [
  5330. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5331. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5332. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5333. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5334. { "time": 2, "x": 0, "y": 0 }
  5335. ],
  5336. "scale": [
  5337. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5338. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5339. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5340. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5341. { "time": 2, "x": 1, "y": 1 }
  5342. ]
  5343. },
  5344. "bone17": {
  5345. "rotate": [
  5346. { "time": 0, "angle": 0 },
  5347. { "time": 0.5, "angle": -6.52 },
  5348. { "time": 1, "angle": 0 },
  5349. { "time": 1.5, "angle": -6.52 },
  5350. { "time": 2, "angle": 0 }
  5351. ],
  5352. "translate": [
  5353. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5354. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5355. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5356. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5357. { "time": 2, "x": 0, "y": 0 }
  5358. ],
  5359. "scale": [
  5360. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5361. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5362. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5363. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5364. { "time": 2, "x": 1, "y": 1 }
  5365. ]
  5366. },
  5367. "bone18": {
  5368. "rotate": [
  5369. { "time": 0, "angle": 0, "curve": "stepped" },
  5370. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5371. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5372. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5373. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5374. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5375. { "time": 1, "angle": 0, "curve": "stepped" },
  5376. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5377. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5378. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5379. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5380. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5381. { "time": 2, "angle": 0 }
  5382. ],
  5383. "translate": [
  5384. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5385. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5386. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5387. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5388. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5389. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5390. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5391. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5392. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5393. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5394. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5395. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5396. { "time": 2, "x": 0, "y": 0 }
  5397. ],
  5398. "scale": [
  5399. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5400. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5401. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5402. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5403. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5404. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5405. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5406. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5407. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5408. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5409. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5410. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5411. { "time": 2, "x": 1, "y": 1 }
  5412. ]
  5413. },
  5414. "bone19": {
  5415. "rotate": [
  5416. { "time": 0, "angle": 0 },
  5417. { "time": 0.5, "angle": -7.3 },
  5418. { "time": 1, "angle": 0 },
  5419. { "time": 1.5, "angle": -7.3 },
  5420. { "time": 2, "angle": 0 }
  5421. ],
  5422. "translate": [
  5423. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5424. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5425. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5426. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5427. { "time": 2, "x": 0, "y": 0 }
  5428. ],
  5429. "scale": [
  5430. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5431. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5432. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5433. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5434. { "time": 2, "x": 1, "y": 1 }
  5435. ]
  5436. },
  5437. "bone20": {
  5438. "rotate": [
  5439. { "time": 0, "angle": 0 },
  5440. { "time": 0.5, "angle": 8.76 },
  5441. { "time": 1, "angle": 0 },
  5442. { "time": 1.5, "angle": 8.76 },
  5443. { "time": 2, "angle": 0 }
  5444. ],
  5445. "translate": [
  5446. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5447. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5448. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5449. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5450. { "time": 2, "x": 0, "y": 0 }
  5451. ],
  5452. "scale": [
  5453. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5454. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5455. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5456. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5457. { "time": 2, "x": 1, "y": 1 }
  5458. ]
  5459. },
  5460. "bone21": {
  5461. "rotate": [
  5462. { "time": 0, "angle": 0 },
  5463. { "time": 0.5, "angle": -11.49 },
  5464. { "time": 1, "angle": 0 },
  5465. { "time": 1.5, "angle": -11.49 },
  5466. { "time": 2, "angle": 0 }
  5467. ],
  5468. "translate": [
  5469. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5470. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5471. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5472. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5473. { "time": 2, "x": 0, "y": 0 }
  5474. ],
  5475. "scale": [
  5476. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5477. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5478. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5479. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5480. { "time": 2, "x": 1, "y": 1 }
  5481. ]
  5482. },
  5483. "bone22": {
  5484. "rotate": [
  5485. { "time": 0, "angle": 0 },
  5486. { "time": 0.5, "angle": -11.49 },
  5487. { "time": 1, "angle": 0 },
  5488. { "time": 1.5, "angle": -11.49 },
  5489. { "time": 2, "angle": 0 }
  5490. ],
  5491. "translate": [
  5492. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5493. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5494. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5495. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5496. { "time": 2, "x": 0, "y": 0 }
  5497. ],
  5498. "scale": [
  5499. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5500. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5501. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5502. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5503. { "time": 2, "x": 1, "y": 1 }
  5504. ]
  5505. },
  5506. "bone23": {
  5507. "rotate": [
  5508. { "time": 0, "angle": 0 },
  5509. { "time": 0.5, "angle": -11.49 },
  5510. { "time": 1, "angle": 0 },
  5511. { "time": 1.5, "angle": -11.49 },
  5512. { "time": 2, "angle": 0 }
  5513. ],
  5514. "translate": [
  5515. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5516. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5517. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5518. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5519. { "time": 2, "x": 0, "y": 0 }
  5520. ],
  5521. "scale": [
  5522. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5523. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5524. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5525. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5526. { "time": 2, "x": 1, "y": 1 }
  5527. ]
  5528. },
  5529. "bone24": {
  5530. "rotate": [
  5531. { "time": 0, "angle": 0 },
  5532. { "time": 0.5, "angle": -9.02 },
  5533. { "time": 1, "angle": 0 },
  5534. { "time": 1.5, "angle": -9.02 },
  5535. { "time": 2, "angle": 0 }
  5536. ],
  5537. "translate": [
  5538. { "time": 0, "x": 0, "y": 0 },
  5539. { "time": 0.5, "x": 0.08, "y": 0.82 },
  5540. { "time": 1, "x": 0, "y": 0 },
  5541. { "time": 1.5, "x": 0.08, "y": 0.82 },
  5542. { "time": 2, "x": 0, "y": 0 }
  5543. ],
  5544. "scale": [
  5545. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5546. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5547. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5548. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5549. { "time": 2, "x": 1, "y": 1 }
  5550. ]
  5551. },
  5552. "bone25": {
  5553. "rotate": [
  5554. { "time": 0, "angle": 0 },
  5555. { "time": 0.5, "angle": -4.69 },
  5556. { "time": 1, "angle": 0 },
  5557. { "time": 1.5, "angle": -4.69 },
  5558. { "time": 2, "angle": 0 }
  5559. ],
  5560. "translate": [
  5561. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5562. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5563. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5564. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5565. { "time": 2, "x": 0, "y": 0 }
  5566. ],
  5567. "scale": [
  5568. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5569. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5570. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5571. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5572. { "time": 2, "x": 1, "y": 1 }
  5573. ]
  5574. },
  5575. "bone26": {
  5576. "rotate": [
  5577. { "time": 0, "angle": 0 },
  5578. { "time": 0.5, "angle": -4.69 },
  5579. { "time": 1, "angle": 0 },
  5580. { "time": 1.5, "angle": -4.69 },
  5581. { "time": 2, "angle": 0 }
  5582. ],
  5583. "translate": [
  5584. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5585. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5586. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5587. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5588. { "time": 2, "x": 0, "y": 0 }
  5589. ],
  5590. "scale": [
  5591. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5592. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5593. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5594. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5595. { "time": 2, "x": 1, "y": 1 }
  5596. ]
  5597. },
  5598. "bone27": {
  5599. "rotate": [
  5600. { "time": 0, "angle": 0 },
  5601. { "time": 0.5, "angle": -4.69 },
  5602. { "time": 1, "angle": 0 },
  5603. { "time": 1.5, "angle": -4.69 },
  5604. { "time": 2, "angle": 0 }
  5605. ],
  5606. "translate": [
  5607. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5608. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5609. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5610. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5611. { "time": 2, "x": 0, "y": 0 }
  5612. ],
  5613. "scale": [
  5614. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5615. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5616. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5617. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5618. { "time": 2, "x": 1, "y": 1 }
  5619. ]
  5620. },
  5621. "bone28": {
  5622. "rotate": [
  5623. { "time": 0, "angle": 0 },
  5624. { "time": 0.5, "angle": -4.69 },
  5625. { "time": 1, "angle": 0 },
  5626. { "time": 1.5, "angle": -4.69 },
  5627. { "time": 2, "angle": 0 }
  5628. ],
  5629. "translate": [
  5630. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5631. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5632. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5633. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5634. { "time": 2, "x": 0, "y": 0 }
  5635. ],
  5636. "scale": [
  5637. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5638. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5639. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5640. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5641. { "time": 2, "x": 1, "y": 1 }
  5642. ]
  5643. },
  5644. "bone41": {
  5645. "rotate": [
  5646. { "time": 0, "angle": 0 },
  5647. { "time": 0.5, "angle": 339.35 },
  5648. { "time": 1, "angle": 0 },
  5649. { "time": 1.5, "angle": 339.35 },
  5650. { "time": 2, "angle": 0 }
  5651. ],
  5652. "translate": [
  5653. { "time": 0, "x": 0, "y": 0 },
  5654. { "time": 0.5, "x": 0.11, "y": 5.16 },
  5655. { "time": 1, "x": 0, "y": 0 },
  5656. { "time": 1.5, "x": 0.11, "y": 5.16 },
  5657. { "time": 2, "x": 0, "y": 0 }
  5658. ],
  5659. "scale": [
  5660. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5661. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5662. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5663. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5664. { "time": 2, "x": 1, "y": 1 }
  5665. ]
  5666. },
  5667. "bone42": {
  5668. "rotate": [
  5669. { "time": 0, "angle": 0 },
  5670. { "time": 0.5, "angle": -8.97 },
  5671. { "time": 1, "angle": 0 },
  5672. { "time": 1.5, "angle": -8.97 },
  5673. { "time": 2, "angle": 0 }
  5674. ],
  5675. "translate": [
  5676. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5677. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5678. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5679. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5680. { "time": 2, "x": 0, "y": 0 }
  5681. ],
  5682. "scale": [
  5683. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5684. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5685. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5686. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5687. { "time": 2, "x": 1, "y": 1 }
  5688. ]
  5689. },
  5690. "bone43": {
  5691. "rotate": [
  5692. { "time": 0, "angle": 0 },
  5693. { "time": 0.5, "angle": -8.97 },
  5694. { "time": 1, "angle": 0 },
  5695. { "time": 1.5, "angle": -8.97 },
  5696. { "time": 2, "angle": 0 }
  5697. ],
  5698. "translate": [
  5699. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5700. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5701. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5702. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5703. { "time": 2, "x": 0, "y": 0 }
  5704. ],
  5705. "scale": [
  5706. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5707. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5708. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5709. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5710. { "time": 2, "x": 1, "y": 1 }
  5711. ]
  5712. },
  5713. "bone44": {
  5714. "rotate": [
  5715. { "time": 0, "angle": 0 },
  5716. { "time": 0.5, "angle": -8.97 },
  5717. { "time": 1, "angle": 0 },
  5718. { "time": 1.5, "angle": -8.97 },
  5719. { "time": 2, "angle": 0 }
  5720. ],
  5721. "translate": [
  5722. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5723. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5724. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5725. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5726. { "time": 2, "x": 0, "y": 0 }
  5727. ],
  5728. "scale": [
  5729. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5730. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5731. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5732. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5733. { "time": 2, "x": 1, "y": 1 }
  5734. ]
  5735. },
  5736. "bone45": {
  5737. "rotate": [
  5738. { "time": 0, "angle": 0 },
  5739. { "time": 0.5, "angle": -8.97 },
  5740. { "time": 1, "angle": 0 },
  5741. { "time": 1.5, "angle": -8.97 },
  5742. { "time": 2, "angle": 0 }
  5743. ],
  5744. "translate": [
  5745. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5746. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5747. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5748. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5749. { "time": 2, "x": 0, "y": 0 }
  5750. ],
  5751. "scale": [
  5752. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5753. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5754. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5755. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5756. { "time": 2, "x": 1, "y": 1 }
  5757. ]
  5758. },
  5759. "bone46": {
  5760. "rotate": [
  5761. {
  5762. "time": 0,
  5763. "angle": -21.91,
  5764. "curve": [ 0.25, 0, 0.75, 1 ]
  5765. },
  5766. {
  5767. "time": 0.5,
  5768. "angle": -75.73,
  5769. "curve": [ 0.25, 0, 0.75, 1 ]
  5770. },
  5771. {
  5772. "time": 1,
  5773. "angle": -21.91,
  5774. "curve": [ 0.25, 0, 0.75, 1 ]
  5775. },
  5776. {
  5777. "time": 1.5,
  5778. "angle": -75.73,
  5779. "curve": [ 0.25, 0, 0.75, 1 ]
  5780. },
  5781. { "time": 2, "angle": -21.91 }
  5782. ],
  5783. "translate": [
  5784. {
  5785. "time": 0,
  5786. "x": -0.49,
  5787. "y": 0.82,
  5788. "curve": [ 0.25, 0, 0.75, 1 ]
  5789. },
  5790. {
  5791. "time": 0.5,
  5792. "x": -0.28,
  5793. "y": 2.12,
  5794. "curve": [ 0.25, 0, 0.75, 1 ]
  5795. },
  5796. {
  5797. "time": 1,
  5798. "x": -0.49,
  5799. "y": 0.82,
  5800. "curve": [ 0.25, 0, 0.75, 1 ]
  5801. },
  5802. {
  5803. "time": 1.5,
  5804. "x": -0.28,
  5805. "y": 2.12,
  5806. "curve": [ 0.25, 0, 0.75, 1 ]
  5807. },
  5808. { "time": 2, "x": -0.49, "y": 0.82 }
  5809. ],
  5810. "scale": [
  5811. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5812. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5813. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5814. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5815. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5816. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5817. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5818. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5819. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5820. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5821. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5822. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5823. { "time": 2, "x": 1, "y": 1 }
  5824. ]
  5825. },
  5826. "bone47": {
  5827. "rotate": [
  5828. {
  5829. "time": 0,
  5830. "angle": -12.71,
  5831. "curve": [ 0.25, 0, 0.75, 1 ]
  5832. },
  5833. {
  5834. "time": 0.5,
  5835. "angle": -14.87,
  5836. "curve": [ 0.25, 0, 0.75, 1 ]
  5837. },
  5838. {
  5839. "time": 1,
  5840. "angle": -12.71,
  5841. "curve": [ 0.25, 0, 0.75, 1 ]
  5842. },
  5843. {
  5844. "time": 1.5,
  5845. "angle": -14.87,
  5846. "curve": [ 0.25, 0, 0.75, 1 ]
  5847. },
  5848. { "time": 2, "angle": -12.71 }
  5849. ],
  5850. "translate": [
  5851. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5852. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5853. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5854. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5855. { "time": 2, "x": 0, "y": 0 }
  5856. ],
  5857. "scale": [
  5858. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5859. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5860. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5861. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5862. { "time": 2, "x": 1, "y": 1 }
  5863. ]
  5864. },
  5865. "bone48": {
  5866. "rotate": [
  5867. {
  5868. "time": 0,
  5869. "angle": 0,
  5870. "curve": [ 0.25, 0, 0.75, 1 ]
  5871. },
  5872. {
  5873. "time": 0.5,
  5874. "angle": -10.36,
  5875. "curve": [ 0.25, 0, 0.75, 1 ]
  5876. },
  5877. {
  5878. "time": 1,
  5879. "angle": 0,
  5880. "curve": [ 0.25, 0, 0.75, 1 ]
  5881. },
  5882. {
  5883. "time": 1.5,
  5884. "angle": -10.36,
  5885. "curve": [ 0.25, 0, 0.75, 1 ]
  5886. },
  5887. { "time": 2, "angle": 0 }
  5888. ],
  5889. "translate": [
  5890. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5891. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5892. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5893. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5894. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5895. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5896. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5897. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5898. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5899. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5900. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5901. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5902. { "time": 2, "x": 0, "y": 0 }
  5903. ],
  5904. "scale": [
  5905. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5906. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5907. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5908. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5909. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5910. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5911. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5912. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5913. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5914. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5915. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5916. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5917. { "time": 2, "x": 1, "y": 1 }
  5918. ]
  5919. },
  5920. "bone49": {
  5921. "rotate": [
  5922. {
  5923. "time": 0,
  5924. "angle": -1,
  5925. "curve": [ 0.25, 0, 0.75, 1 ]
  5926. },
  5927. {
  5928. "time": 0.5,
  5929. "angle": -317.39,
  5930. "curve": [ 0.25, 0, 0.75, 1 ]
  5931. },
  5932. {
  5933. "time": 1,
  5934. "angle": -1,
  5935. "curve": [ 0.25, 0, 0.75, 1 ]
  5936. },
  5937. {
  5938. "time": 1.5,
  5939. "angle": -317.39,
  5940. "curve": [ 0.25, 0, 0.75, 1 ]
  5941. },
  5942. { "time": 2, "angle": -1 }
  5943. ],
  5944. "translate": [
  5945. {
  5946. "time": 0,
  5947. "x": -1.5,
  5948. "y": -4.16,
  5949. "curve": [ 0.25, 0, 0.75, 1 ]
  5950. },
  5951. {
  5952. "time": 0.5,
  5953. "x": -3.44,
  5954. "y": -7.47,
  5955. "curve": [ 0.25, 0, 0.75, 1 ]
  5956. },
  5957. {
  5958. "time": 1,
  5959. "x": -1.5,
  5960. "y": -4.16,
  5961. "curve": [ 0.25, 0, 0.75, 1 ]
  5962. },
  5963. {
  5964. "time": 1.5,
  5965. "x": -3.44,
  5966. "y": -7.47,
  5967. "curve": [ 0.25, 0, 0.75, 1 ]
  5968. },
  5969. { "time": 2, "x": -1.5, "y": -4.16 }
  5970. ],
  5971. "scale": [
  5972. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5973. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5974. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5975. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5976. { "time": 2, "x": 1, "y": 1 }
  5977. ]
  5978. },
  5979. "bone50": {
  5980. "rotate": [
  5981. {
  5982. "time": 0,
  5983. "angle": -10.1,
  5984. "curve": [ 0.25, 0, 0.75, 1 ]
  5985. },
  5986. {
  5987. "time": 0.5,
  5988. "angle": -5.3,
  5989. "curve": [ 0.25, 0, 0.75, 1 ]
  5990. },
  5991. {
  5992. "time": 1,
  5993. "angle": -10.1,
  5994. "curve": [ 0.25, 0, 0.75, 1 ]
  5995. },
  5996. {
  5997. "time": 1.5,
  5998. "angle": -5.3,
  5999. "curve": [ 0.25, 0, 0.75, 1 ]
  6000. },
  6001. { "time": 2, "angle": -10.1 }
  6002. ],
  6003. "translate": [
  6004. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6005. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6006. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6007. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6008. { "time": 2, "x": 0, "y": 0 }
  6009. ],
  6010. "scale": [
  6011. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6012. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6013. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6014. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6015. { "time": 2, "x": 1, "y": 1 }
  6016. ]
  6017. },
  6018. "bone51": {
  6019. "rotate": [
  6020. {
  6021. "time": 0,
  6022. "angle": -9.51,
  6023. "curve": [ 0.25, 0, 0.75, 1 ]
  6024. },
  6025. {
  6026. "time": 0.5,
  6027. "angle": -12.89,
  6028. "curve": [ 0.25, 0, 0.75, 1 ]
  6029. },
  6030. {
  6031. "time": 1,
  6032. "angle": -9.51,
  6033. "curve": [ 0.25, 0, 0.75, 1 ]
  6034. },
  6035. {
  6036. "time": 1.5,
  6037. "angle": -12.89,
  6038. "curve": [ 0.25, 0, 0.75, 1 ]
  6039. },
  6040. { "time": 2, "angle": -9.51 }
  6041. ],
  6042. "translate": [
  6043. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6044. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6045. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6046. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6047. { "time": 2, "x": 0, "y": 0 }
  6048. ],
  6049. "scale": [
  6050. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6051. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6052. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6053. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6054. { "time": 2, "x": 1, "y": 1 }
  6055. ]
  6056. },
  6057. "bone52": {
  6058. "rotate": [
  6059. { "time": 0, "angle": 0, "curve": "stepped" },
  6060. { "time": 1, "angle": 0, "curve": "stepped" },
  6061. { "time": 2, "angle": 0 }
  6062. ],
  6063. "translate": [
  6064. { "time": 0, "x": 0.23, "y": 0.99 },
  6065. { "time": 0.5, "x": 0.01, "y": 0.02 },
  6066. { "time": 1, "x": 0.23, "y": 0.99 },
  6067. { "time": 1.5, "x": 0.01, "y": 0.02 },
  6068. { "time": 2, "x": 0.23, "y": 0.99 }
  6069. ],
  6070. "scale": [
  6071. { "time": 0, "x": 1, "y": 1 },
  6072. { "time": 0.5, "x": 1, "y": 1.05 },
  6073. { "time": 1, "x": 1, "y": 1 },
  6074. { "time": 1.5, "x": 1, "y": 1.05 },
  6075. { "time": 2, "x": 1, "y": 1 }
  6076. ]
  6077. },
  6078. "bone53": {
  6079. "rotate": [
  6080. { "time": 0, "angle": 0, "curve": "stepped" },
  6081. { "time": 1, "angle": 0, "curve": "stepped" },
  6082. { "time": 2, "angle": 0 }
  6083. ],
  6084. "translate": [
  6085. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6086. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6087. { "time": 2, "x": 0, "y": 0 }
  6088. ],
  6089. "scale": [
  6090. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6091. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6092. { "time": 2, "x": 1, "y": 1 }
  6093. ]
  6094. },
  6095. "bone54": {
  6096. "rotate": [
  6097. { "time": 0, "angle": 0, "curve": "stepped" },
  6098. { "time": 1, "angle": 0, "curve": "stepped" },
  6099. { "time": 2, "angle": 0 }
  6100. ],
  6101. "translate": [
  6102. { "time": 0, "x": 0, "y": 0 },
  6103. { "time": 0.5, "x": -1.13, "y": 0.07 },
  6104. { "time": 1, "x": 0, "y": 0 },
  6105. { "time": 1.5, "x": -1.13, "y": 0.07 },
  6106. { "time": 2, "x": 0, "y": 0 }
  6107. ],
  6108. "scale": [
  6109. { "time": 0, "x": 1, "y": 1 },
  6110. { "time": 0.5, "x": 1.03, "y": 1.03 },
  6111. { "time": 1, "x": 1, "y": 1 },
  6112. { "time": 1.5, "x": 1.03, "y": 1.03 },
  6113. { "time": 2, "x": 1, "y": 1 }
  6114. ]
  6115. },
  6116. "bone55": {
  6117. "rotate": [
  6118. { "time": 0, "angle": 0 },
  6119. { "time": 0.5, "angle": -8.1 },
  6120. { "time": 1, "angle": 0 },
  6121. { "time": 1.5, "angle": -8.1 },
  6122. { "time": 2, "angle": 0 }
  6123. ],
  6124. "translate": [
  6125. { "time": 0, "x": 0, "y": 0 },
  6126. { "time": 0.5, "x": -2.05, "y": 0.33 },
  6127. { "time": 1, "x": 0, "y": 0 },
  6128. { "time": 1.5, "x": -2.05, "y": 0.33 },
  6129. { "time": 2, "x": 0, "y": 0 }
  6130. ],
  6131. "scale": [
  6132. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6133. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6134. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6135. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6136. { "time": 2, "x": 1, "y": 1 }
  6137. ]
  6138. },
  6139. "bone56": {
  6140. "rotate": [
  6141. { "time": 0, "angle": 0 },
  6142. { "time": 0.5, "angle": -8.1 },
  6143. { "time": 1, "angle": 0 },
  6144. { "time": 1.5, "angle": -8.1 },
  6145. { "time": 2, "angle": 0 }
  6146. ],
  6147. "translate": [
  6148. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6149. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6150. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6151. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6152. { "time": 2, "x": 0, "y": 0 }
  6153. ],
  6154. "scale": [
  6155. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6156. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6157. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6158. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6159. { "time": 2, "x": 1, "y": 1 }
  6160. ]
  6161. },
  6162. "bone57": {
  6163. "rotate": [
  6164. { "time": 0, "angle": 0 },
  6165. { "time": 0.5, "angle": -8.1 },
  6166. { "time": 1, "angle": 0 },
  6167. { "time": 1.5, "angle": -8.1 },
  6168. { "time": 2, "angle": 0 }
  6169. ],
  6170. "translate": [
  6171. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6172. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6173. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6174. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6175. { "time": 2, "x": 0, "y": 0 }
  6176. ],
  6177. "scale": [
  6178. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6179. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6180. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6181. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6182. { "time": 2, "x": 1, "y": 1 }
  6183. ]
  6184. },
  6185. "bone58": {
  6186. "rotate": [
  6187. { "time": 0, "angle": -22.57 },
  6188. { "time": 0.0667, "angle": -18.92 },
  6189. { "time": 0.1667, "angle": -7.37 },
  6190. { "time": 0.3333, "angle": 10.89 },
  6191. { "time": 0.5, "angle": 28.4 },
  6192. { "time": 0.6667, "angle": 6.4 },
  6193. { "time": 0.8333, "angle": -15.73 },
  6194. { "time": 1, "angle": -22.57 },
  6195. { "time": 1.0667, "angle": -18.92 },
  6196. { "time": 1.1667, "angle": -7.37 },
  6197. { "time": 1.3333, "angle": 10.89 },
  6198. { "time": 1.5, "angle": 28.4 },
  6199. { "time": 1.6667, "angle": 6.4 },
  6200. { "time": 1.8333, "angle": -15.73 },
  6201. { "time": 2, "angle": -22.57 }
  6202. ],
  6203. "translate": [
  6204. { "time": 0, "x": 0, "y": 0 },
  6205. { "time": 0.0667, "x": 1.39, "y": 0.5 },
  6206. { "time": 0.1667, "x": 5.49, "y": 0.52 },
  6207. { "time": 0.3333, "x": 10.97, "y": 1.05 },
  6208. { "time": 0.5, "x": 16.46, "y": 1.57 },
  6209. { "time": 0.6667, "x": 6.52, "y": 2.36 },
  6210. { "time": 0.8333, "x": 2.4, "y": 1.02 },
  6211. { "time": 1, "x": 0, "y": 0 },
  6212. { "time": 1.0667, "x": 1.39, "y": 0.5 },
  6213. { "time": 1.1667, "x": 5.49, "y": 0.52 },
  6214. { "time": 1.3333, "x": 10.97, "y": 1.05 },
  6215. { "time": 1.5, "x": 16.46, "y": 1.57 },
  6216. { "time": 1.6667, "x": 6.52, "y": 2.36 },
  6217. { "time": 1.8333, "x": 2.4, "y": 1.02 },
  6218. { "time": 2, "x": 0, "y": 0 }
  6219. ],
  6220. "scale": [
  6221. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6222. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6223. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6224. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6225. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6226. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6227. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6228. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6229. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6230. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6231. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6232. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6233. { "time": 2, "x": 1, "y": 1 }
  6234. ]
  6235. },
  6236. "bone59": {
  6237. "rotate": [
  6238. { "time": 0, "angle": 4.43 },
  6239. { "time": 0.1667, "angle": 5.83 },
  6240. { "time": 0.3333, "angle": -1.27 },
  6241. { "time": 0.5, "angle": 6.54 },
  6242. { "time": 0.6667, "angle": 40.93 },
  6243. { "time": 0.8333, "angle": 22.14 },
  6244. { "time": 1, "angle": 4.43 },
  6245. { "time": 1.1667, "angle": 5.83 },
  6246. { "time": 1.3333, "angle": -1.27 },
  6247. { "time": 1.5, "angle": 6.54 },
  6248. { "time": 1.6667, "angle": 40.93 },
  6249. { "time": 1.8333, "angle": 22.14 },
  6250. { "time": 2, "angle": 4.43 }
  6251. ],
  6252. "translate": [
  6253. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6254. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6255. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6256. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6257. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6258. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6259. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6260. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6261. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6262. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6263. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6264. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6265. { "time": 2, "x": 0, "y": 0 }
  6266. ],
  6267. "scale": [
  6268. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6269. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6270. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6271. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6272. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6273. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6274. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6275. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6276. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6277. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6278. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6279. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6280. { "time": 2, "x": 1, "y": 1 }
  6281. ]
  6282. },
  6283. "bone60": {
  6284. "rotate": [
  6285. { "time": 0, "angle": 0 },
  6286. { "time": 0.1667, "angle": 0.53 },
  6287. { "time": 0.3333, "angle": -11.81 },
  6288. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6289. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6290. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6291. { "time": 1, "angle": 0 },
  6292. { "time": 1.1667, "angle": 0.53 },
  6293. { "time": 1.3333, "angle": -11.81 },
  6294. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6295. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6296. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6297. { "time": 2, "angle": 0 }
  6298. ],
  6299. "translate": [
  6300. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6301. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6302. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6303. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6304. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6305. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6306. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6307. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6308. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6309. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6310. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6311. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6312. { "time": 2, "x": 0, "y": 0 }
  6313. ],
  6314. "scale": [
  6315. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6316. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6317. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6318. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6319. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6320. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6321. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6322. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6323. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6324. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6325. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6326. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6327. { "time": 2, "x": 1, "y": 1 }
  6328. ]
  6329. },
  6330. "bone61": {
  6331. "rotate": [
  6332. { "time": 0, "angle": 21.79 },
  6333. { "time": 0.1667, "angle": 10.89 },
  6334. { "time": 0.3333, "angle": -12.71 },
  6335. { "time": 0.5, "angle": -23.94 },
  6336. { "time": 0.6667, "angle": -7.29 },
  6337. { "time": 0.8333, "angle": 11.07 },
  6338. { "time": 1, "angle": 21.79 },
  6339. { "time": 1.1667, "angle": 10.89 },
  6340. { "time": 1.3333, "angle": -12.71 },
  6341. { "time": 1.5, "angle": -23.94 },
  6342. { "time": 1.6667, "angle": -7.29 },
  6343. { "time": 1.8333, "angle": 11.07 },
  6344. { "time": 2, "angle": 21.79 }
  6345. ],
  6346. "translate": [
  6347. { "time": 0, "x": -1.62, "y": 0.01 },
  6348. { "time": 0.1667, "x": -12.31, "y": 4.86 },
  6349. { "time": 0.3333, "x": -16.75, "y": 2.08 },
  6350. { "time": 0.5, "x": -18.59, "y": 1.08 },
  6351. { "time": 0.6667, "x": -16.85, "y": 1.12 },
  6352. { "time": 0.8333, "x": -7.27, "y": 0.36 },
  6353. { "time": 1, "x": -1.62, "y": 0.01 },
  6354. { "time": 1.1667, "x": -12.31, "y": 4.86 },
  6355. { "time": 1.3333, "x": -16.75, "y": 2.08 },
  6356. { "time": 1.5, "x": -18.59, "y": 1.08 },
  6357. { "time": 1.6667, "x": -16.85, "y": 1.12 },
  6358. { "time": 1.8333, "x": -7.27, "y": 0.36 },
  6359. { "time": 2, "x": -1.62, "y": 0.01 }
  6360. ],
  6361. "scale": [
  6362. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6363. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6364. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6365. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6366. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6367. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6368. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6369. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6370. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6371. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6372. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6373. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6374. { "time": 2, "x": 1, "y": 1 }
  6375. ]
  6376. },
  6377. "bone62": {
  6378. "rotate": [
  6379. { "time": 0, "angle": 14.61 },
  6380. { "time": 0.1667, "angle": 35.82 },
  6381. { "time": 0.3333, "angle": 33.3 },
  6382. { "time": 0.5, "angle": 5.08 },
  6383. { "time": 0.6667, "angle": 0.44 },
  6384. { "time": 0.8333, "angle": 2.25 },
  6385. { "time": 1, "angle": 14.61 },
  6386. { "time": 1.1667, "angle": 35.82 },
  6387. { "time": 1.3333, "angle": 33.3 },
  6388. { "time": 1.5, "angle": 5.08 },
  6389. { "time": 1.6667, "angle": 0.44 },
  6390. { "time": 1.8333, "angle": 2.25 },
  6391. { "time": 2, "angle": 14.61 }
  6392. ],
  6393. "translate": [
  6394. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6395. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6396. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6397. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6398. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6399. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6400. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6401. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6402. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6403. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6404. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6405. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6406. { "time": 2, "x": 0, "y": 0 }
  6407. ],
  6408. "scale": [
  6409. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6410. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6411. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6412. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6413. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6414. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6415. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6416. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6417. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6418. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6419. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6420. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6421. { "time": 2, "x": 1, "y": 1 }
  6422. ]
  6423. },
  6424. "bone63": {
  6425. "rotate": [
  6426. { "time": 0, "angle": 0, "curve": "stepped" },
  6427. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6428. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6429. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6430. { "time": 0.6667, "angle": 0 },
  6431. { "time": 0.8333, "angle": -13.08 },
  6432. { "time": 1, "angle": 0, "curve": "stepped" },
  6433. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6434. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6435. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6436. { "time": 1.6667, "angle": 0 },
  6437. { "time": 1.8333, "angle": -13.08 },
  6438. { "time": 2, "angle": 0 }
  6439. ],
  6440. "translate": [
  6441. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6442. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6443. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6444. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6445. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6446. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6447. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6448. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6449. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6450. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6451. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6452. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6453. { "time": 2, "x": 0, "y": 0 }
  6454. ],
  6455. "scale": [
  6456. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6457. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6458. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6459. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6460. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6461. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6462. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6463. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6464. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6465. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6466. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6467. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6468. { "time": 2, "x": 1, "y": 1 }
  6469. ]
  6470. },
  6471. "bone64": {
  6472. "rotate": [
  6473. { "time": 0, "angle": 10.85 },
  6474. { "time": 0.5, "angle": 24.27 },
  6475. { "time": 1, "angle": 10.85 },
  6476. { "time": 1.5, "angle": 24.27 },
  6477. { "time": 2, "angle": 10.85 }
  6478. ],
  6479. "translate": [
  6480. { "time": 0, "x": 0, "y": 0 },
  6481. { "time": 0.5, "x": -3.63, "y": 5.09 },
  6482. { "time": 1, "x": 0, "y": 0 },
  6483. { "time": 1.5, "x": -3.63, "y": 5.09 },
  6484. { "time": 2, "x": 0, "y": 0 }
  6485. ],
  6486. "scale": [
  6487. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6488. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6489. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6490. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6491. { "time": 2, "x": 1, "y": 1 }
  6492. ]
  6493. },
  6494. "bone65": {
  6495. "rotate": [
  6496. { "time": 0, "angle": 0, "curve": "stepped" },
  6497. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6498. { "time": 1, "angle": 0, "curve": "stepped" },
  6499. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6500. { "time": 2, "angle": 0 }
  6501. ],
  6502. "translate": [
  6503. { "time": 0, "x": 0, "y": 0 },
  6504. { "time": 0.5, "x": -4.08, "y": -1.33 },
  6505. { "time": 1, "x": 0, "y": 0 },
  6506. { "time": 1.5, "x": -4.08, "y": -1.33 },
  6507. { "time": 2, "x": 0, "y": 0 }
  6508. ],
  6509. "scale": [
  6510. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6511. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6512. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6513. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6514. { "time": 2, "x": 1, "y": 1 }
  6515. ]
  6516. },
  6517. "bone66": {
  6518. "rotate": [
  6519. { "time": 0, "angle": 0, "curve": "stepped" },
  6520. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6521. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6522. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6523. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6524. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6525. { "time": 1, "angle": 0, "curve": "stepped" },
  6526. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6527. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6528. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6529. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6530. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6531. { "time": 2, "angle": 0 }
  6532. ],
  6533. "translate": [
  6534. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6535. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6536. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6537. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6538. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6539. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6540. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6541. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6542. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6543. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6544. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6545. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6546. { "time": 2, "x": 0, "y": 0 }
  6547. ],
  6548. "scale": [
  6549. { "time": 0, "x": 1, "y": 1 },
  6550. { "time": 0.5, "x": 1.03, "y": 1.03 },
  6551. { "time": 1, "x": 1, "y": 1 },
  6552. { "time": 1.5, "x": 1.03, "y": 1.03 },
  6553. { "time": 2, "x": 1, "y": 1 }
  6554. ]
  6555. },
  6556. "bone67": {
  6557. "rotate": [
  6558. { "time": 0, "angle": 0, "curve": "stepped" },
  6559. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6560. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6561. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6562. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6563. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6564. { "time": 1, "angle": 0, "curve": "stepped" },
  6565. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6566. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6567. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6568. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6569. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6570. { "time": 2, "angle": 0 }
  6571. ],
  6572. "translate": [
  6573. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6574. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6575. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6576. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6577. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6578. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6579. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6580. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6581. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6582. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6583. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6584. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6585. { "time": 2, "x": 0, "y": 0 }
  6586. ],
  6587. "scale": [
  6588. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6589. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6590. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6591. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6592. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6593. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6594. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6595. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6596. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6597. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6598. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6599. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6600. { "time": 2, "x": 1, "y": 1 }
  6601. ]
  6602. },
  6603. "bone68": {
  6604. "rotate": [
  6605. { "time": 0, "angle": 0, "curve": "stepped" },
  6606. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6607. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6608. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6609. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6610. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6611. { "time": 1, "angle": 0, "curve": "stepped" },
  6612. { "time": 1.1, "angle": 0, "curve": "stepped" },
  6613. { "time": 1.2, "angle": 0, "curve": "stepped" },
  6614. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  6615. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6616. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6617. { "time": 2, "angle": 0 }
  6618. ],
  6619. "translate": [
  6620. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6621. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6622. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6623. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6624. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6625. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6626. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6627. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6628. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  6629. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  6630. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6631. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6632. { "time": 2, "x": 0, "y": 0 }
  6633. ],
  6634. "scale": [
  6635. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6636. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6637. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6638. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6639. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6640. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6641. { "time": 1, "x": 1, "y": 1 },
  6642. { "time": 1.1, "x": 0.624, "y": 1, "curve": "stepped" },
  6643. { "time": 1.2, "x": 0.624, "y": 1 },
  6644. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  6645. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6646. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6647. { "time": 2, "x": 1, "y": 1 }
  6648. ]
  6649. },
  6650. "bone69": {
  6651. "rotate": [
  6652. { "time": 0, "angle": 0, "curve": "stepped" },
  6653. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6654. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6655. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6656. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6657. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6658. { "time": 1, "angle": 0, "curve": "stepped" },
  6659. { "time": 1.1, "angle": 0, "curve": "stepped" },
  6660. { "time": 1.2, "angle": 0, "curve": "stepped" },
  6661. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  6662. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6663. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6664. { "time": 2, "angle": 0 }
  6665. ],
  6666. "translate": [
  6667. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6668. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6669. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6670. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6671. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6672. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6673. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6674. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6675. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  6676. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  6677. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6678. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6679. { "time": 2, "x": 0, "y": 0 }
  6680. ],
  6681. "scale": [
  6682. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6683. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6684. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6685. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6686. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6687. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6688. { "time": 1, "x": 1, "y": 1 },
  6689. { "time": 1.1, "x": 0.605, "y": 1, "curve": "stepped" },
  6690. { "time": 1.2, "x": 0.605, "y": 1 },
  6691. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  6692. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6693. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6694. { "time": 2, "x": 1, "y": 1 }
  6695. ]
  6696. },
  6697. "bone70": {
  6698. "rotate": [
  6699. { "time": 0, "angle": 0, "curve": "stepped" },
  6700. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6701. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6702. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6703. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6704. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6705. { "time": 1, "angle": 0, "curve": "stepped" },
  6706. { "time": 1.1, "angle": 0, "curve": "stepped" },
  6707. { "time": 1.2, "angle": 0, "curve": "stepped" },
  6708. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  6709. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6710. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6711. { "time": 2, "angle": 0 }
  6712. ],
  6713. "translate": [
  6714. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6715. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6716. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6717. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6718. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6719. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6720. { "time": 1, "x": 0, "y": 0 },
  6721. { "time": 1.1, "x": -1.67, "y": 0.15, "curve": "stepped" },
  6722. { "time": 1.2, "x": -1.67, "y": 0.15 },
  6723. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  6724. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6725. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6726. { "time": 2, "x": 0, "y": 0 }
  6727. ],
  6728. "scale": [
  6729. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6730. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6731. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6732. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6733. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6734. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6735. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6736. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6737. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  6738. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  6739. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6740. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6741. { "time": 2, "x": 1, "y": 1 }
  6742. ]
  6743. },
  6744. "bone71": {
  6745. "rotate": [
  6746. { "time": 0, "angle": 0, "curve": "stepped" },
  6747. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6748. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6749. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6750. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6751. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6752. { "time": 1, "angle": 0, "curve": "stepped" },
  6753. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6754. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6755. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6756. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6757. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6758. { "time": 2, "angle": 0 }
  6759. ],
  6760. "translate": [
  6761. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6762. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6763. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6764. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6765. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6766. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6767. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6768. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6769. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6770. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6771. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6772. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6773. { "time": 2, "x": 0, "y": 0 }
  6774. ],
  6775. "scale": [
  6776. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6777. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6778. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6779. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6780. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6781. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6782. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6783. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6784. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6785. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6786. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6787. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6788. { "time": 2, "x": 1, "y": 1 }
  6789. ]
  6790. }
  6791. },
  6792. "deform": {
  6793. "default": {
  6794. "maozi": {
  6795. "maozi": [
  6796. { "time": 0 },
  6797. {
  6798. "time": 0.5,
  6799. "vertices": [ -0.57742, 1.97161, -0.35902, 1.82503, -0.32315, 1.64246, 0.26328, 2.51615, 0.51465, 1.23862, -0.28423, 2.40848, -0.43085, 2.19, 0, 0, 0, 0, -0.43085, 2.19, -0.97534, 3.03078, -0.25133, 1.27754, -0.43085, 2.19, -0.21542, 1.095 ]
  6800. },
  6801. { "time": 1 },
  6802. {
  6803. "time": 1.5,
  6804. "vertices": [ -0.57742, 1.97161, -0.35902, 1.82503, -0.32315, 1.64246, 0.26328, 2.51615, 0.51465, 1.23862, -0.28423, 2.40848, -0.43085, 2.19, 0, 0, 0, 0, -0.43085, 2.19, -0.97534, 3.03078, -0.25133, 1.27754, -0.43085, 2.19, -0.21542, 1.095 ]
  6805. },
  6806. { "time": 2 }
  6807. ]
  6808. },
  6809. "shenti2": {
  6810. "shenti2": [
  6811. { "time": 0 },
  6812. {
  6813. "time": 0.5,
  6814. "vertices": [ -6.66911, 5.17283, -6.69684, 5.13675, 0, 0, 0, 0, -0.4684, 5.27022, -0.49674, 5.26763, 0, 0, 0, 0, 0.13171, 3.89496, 0, 0, -0.64743, -1.08263, -0.72034, -0.97281, -3.92979, 1.80586, -0.06847, 0.77098, -0.07254, 0.77061, -0.26852, 0.64975, -0.27177, 0.64834, 0.30072, 1.46236, 0.29288, 1.46398, 0, 0, 0, 0, 0.00935, 2.99056, 0.08611, 3.02078, 0.38839, 2.44296, 0.44711, 2.43815, -0.0091, 6.31497, -0.04314, 6.31486, -0.23595, 2.65553, -0.25011, 2.65425, -0.46608, 1.71948, -0.43984, 1.71941, 3.13274, 3.65574, 3.22181, 3.64454, -4.23589, 3.84501, -4.25647, 3.82207 ]
  6815. },
  6816. { "time": 1 },
  6817. {
  6818. "time": 1.5,
  6819. "vertices": [ -6.66911, 5.17283, -6.69684, 5.13675, 0, 0, 0, 0, -0.4684, 5.27022, -0.49674, 5.26763, 0, 0, 0, 0, 0.13171, 3.89496, 0, 0, -0.64743, -1.08263, -0.72034, -0.97281, -3.92979, 1.80586, -0.06847, 0.77098, -0.07254, 0.77061, -0.26852, 0.64975, -0.27177, 0.64834, 0.30072, 1.46236, 0.29288, 1.46398, 0, 0, 0, 0, 0.00935, 2.99056, 0.08611, 3.02078, 0.38839, 2.44296, 0.44711, 2.43815, -0.0091, 6.31497, -0.04314, 6.31486, -0.23595, 2.65553, -0.25011, 2.65425, -0.46608, 1.71948, -0.43984, 1.71941, 3.13274, 3.65574, 3.22181, 3.64454, -4.23589, 3.84501, -4.25647, 3.82207 ]
  6820. },
  6821. { "time": 2 }
  6822. ]
  6823. },
  6824. "toufa6": {
  6825. "toufa6": [
  6826. { "time": 0 },
  6827. {
  6828. "time": 0.5,
  6829. "vertices": [ 2.43313, 5.58249, 8.09743, 12.73082, 0, 0, -0.80392, -3.67008, -0.69064, 3.90723, -2.45271, 7.56309 ]
  6830. },
  6831. { "time": 1 },
  6832. {
  6833. "time": 1.5,
  6834. "vertices": [ 2.43313, 5.58249, 8.09743, 12.73082, 0, 0, -0.80392, -3.67008, -0.69064, 3.90723, -2.45271, 7.56309 ]
  6835. },
  6836. { "time": 2 }
  6837. ]
  6838. }
  6839. }
  6840. }
  6841. },
  6842. "walk2": {
  6843. "slots": {
  6844. "biyan": {
  6845. "attachment": [
  6846. { "time": 1.1, "name": "biyan" },
  6847. { "time": 1.2, "name": null }
  6848. ]
  6849. },
  6850. "xiao": {
  6851. "attachment": [
  6852. { "time": 0, "name": null },
  6853. { "time": 0.0667, "name": "xiao" },
  6854. { "time": 0.2333, "name": null },
  6855. { "time": 0.3333, "name": "xiao" },
  6856. { "time": 0.5, "name": null },
  6857. { "time": 0.6, "name": "xiao" },
  6858. { "time": 0.7667, "name": null },
  6859. { "time": 0.8667, "name": "xiao" },
  6860. { "time": 1.1, "name": null },
  6861. { "time": 1.1667, "name": "xiao" },
  6862. { "time": 1.3667, "name": null },
  6863. { "time": 1.4333, "name": "xiao" },
  6864. { "time": 1.6, "name": null },
  6865. { "time": 1.7, "name": "xiao" },
  6866. { "time": 1.9333, "name": null }
  6867. ]
  6868. },
  6869. "yin1": {
  6870. "color": [
  6871. { "time": 0, "color": "ffffff00" },
  6872. { "time": 0.2333, "color": "ffffffff", "curve": "stepped" },
  6873. { "time": 0.7667, "color": "ffffffff" },
  6874. { "time": 1, "color": "ffffff00" }
  6875. ]
  6876. },
  6877. "yin2": {
  6878. "color": [
  6879. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  6880. { "time": 0.6667, "color": "ffffff00" },
  6881. { "time": 0.9, "color": "ffffffff", "curve": "stepped" },
  6882. { "time": 1.6333, "color": "ffffffff" },
  6883. { "time": 1.8333, "color": "ffffff00" }
  6884. ]
  6885. },
  6886. "yin3": {
  6887. "color": [
  6888. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  6889. { "time": 0.3667, "color": "ffffff00" },
  6890. { "time": 0.7, "color": "ffffffff", "curve": "stepped" },
  6891. { "time": 1.6667, "color": "ffffffff" },
  6892. { "time": 2, "color": "ffffff00" }
  6893. ]
  6894. },
  6895. "youyan": {
  6896. "attachment": [
  6897. { "time": 1.1, "name": null },
  6898. { "time": 1.2, "name": "youyan" }
  6899. ]
  6900. },
  6901. "zuiba": {
  6902. "attachment": [
  6903. { "time": 0, "name": "zuiba" },
  6904. { "time": 0.0667, "name": null },
  6905. { "time": 0.2333, "name": "zuiba" },
  6906. { "time": 0.3333, "name": null },
  6907. { "time": 0.5, "name": "zuiba" },
  6908. { "time": 0.6, "name": null },
  6909. { "time": 0.7667, "name": "zuiba" },
  6910. { "time": 0.8667, "name": null },
  6911. { "time": 1.1, "name": "zuiba" },
  6912. { "time": 1.1667, "name": null },
  6913. { "time": 1.3667, "name": "zuiba" },
  6914. { "time": 1.4333, "name": null },
  6915. { "time": 1.6, "name": "zuiba" },
  6916. { "time": 1.7, "name": null },
  6917. { "time": 1.9333, "name": "zuiba" }
  6918. ]
  6919. },
  6920. "zuoyan": {
  6921. "attachment": [
  6922. { "time": 1.1, "name": null },
  6923. { "time": 1.2, "name": "zuoyan" }
  6924. ]
  6925. }
  6926. },
  6927. "bones": {
  6928. "root": {
  6929. "rotate": [
  6930. { "time": 0, "angle": 0 }
  6931. ],
  6932. "translate": [
  6933. { "time": 0, "x": 0, "y": 0 }
  6934. ],
  6935. "scale": [
  6936. { "time": 0, "x": 0.65, "y": 0.65 }
  6937. ]
  6938. },
  6939. "bone": {
  6940. "rotate": [
  6941. { "time": 0, "angle": 0 }
  6942. ],
  6943. "translate": [
  6944. { "time": 0, "x": 0, "y": 0 }
  6945. ],
  6946. "scale": [
  6947. { "time": 0, "x": 1, "y": 1 }
  6948. ]
  6949. },
  6950. "bone2": {
  6951. "rotate": [
  6952. { "time": 0, "angle": 0, "curve": "stepped" },
  6953. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6954. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6955. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6956. { "time": 1, "angle": 0, "curve": "stepped" },
  6957. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6958. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6959. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6960. { "time": 2, "angle": 0 }
  6961. ],
  6962. "translate": [
  6963. { "time": 0, "x": 0, "y": 1.89 },
  6964. { "time": 0.1667, "x": 0, "y": 0 },
  6965. { "time": 0.5, "x": 0, "y": 1.89 },
  6966. { "time": 0.6667, "x": 0, "y": 0 },
  6967. { "time": 1, "x": 0, "y": 1.89 },
  6968. { "time": 1.1667, "x": 0, "y": 0 },
  6969. { "time": 1.5, "x": 0, "y": 1.89 },
  6970. { "time": 1.6667, "x": 0, "y": 0 },
  6971. { "time": 2, "x": 0, "y": 1.89 }
  6972. ],
  6973. "scale": [
  6974. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6975. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6976. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6977. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6978. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6979. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6980. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6981. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6982. { "time": 2, "x": 1, "y": 1 }
  6983. ]
  6984. },
  6985. "bone3": {
  6986. "rotate": [
  6987. { "time": 0, "angle": 0, "curve": "stepped" },
  6988. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6989. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6990. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6991. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6992. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6993. { "time": 1, "angle": 0, "curve": "stepped" },
  6994. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6995. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6996. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6997. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6998. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6999. { "time": 2, "angle": 0 }
  7000. ],
  7001. "translate": [
  7002. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7003. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7004. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7005. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7006. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7007. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7008. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7009. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7010. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7011. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7012. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7013. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7014. { "time": 2, "x": 0, "y": 0 }
  7015. ],
  7016. "scale": [
  7017. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7018. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7019. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7020. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7021. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7022. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7023. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7024. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7025. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7026. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7027. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7028. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7029. { "time": 2, "x": 1, "y": 1 }
  7030. ]
  7031. },
  7032. "bone4": {
  7033. "rotate": [
  7034. { "time": 0, "angle": 0, "curve": "stepped" },
  7035. { "time": 1, "angle": 0, "curve": "stepped" },
  7036. { "time": 2, "angle": 0 }
  7037. ],
  7038. "translate": [
  7039. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7040. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7041. { "time": 2, "x": 0, "y": 0 }
  7042. ],
  7043. "scale": [
  7044. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7045. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7046. { "time": 2, "x": 1, "y": 1 }
  7047. ]
  7048. },
  7049. "bone5": {
  7050. "rotate": [
  7051. { "time": 0, "angle": 0, "curve": "stepped" },
  7052. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7053. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7054. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7055. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7056. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7057. { "time": 1, "angle": 0, "curve": "stepped" },
  7058. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7059. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7060. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7061. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7062. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7063. { "time": 2, "angle": 0 }
  7064. ],
  7065. "translate": [
  7066. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7067. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7068. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7069. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7070. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7071. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7072. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7073. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7074. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7075. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7076. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7077. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7078. { "time": 2, "x": 0, "y": 0 }
  7079. ],
  7080. "scale": [
  7081. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7082. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7083. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7084. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7085. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7086. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7087. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7088. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7089. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7090. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7091. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7092. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7093. { "time": 2, "x": 1, "y": 1 }
  7094. ]
  7095. },
  7096. "bone6": {
  7097. "rotate": [
  7098. { "time": 0, "angle": 0, "curve": "stepped" },
  7099. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7100. { "time": 1, "angle": 0, "curve": "stepped" },
  7101. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7102. { "time": 2, "angle": 0 }
  7103. ],
  7104. "translate": [
  7105. { "time": 0, "x": 0, "y": 0 },
  7106. { "time": 0.5, "x": -0.11, "y": 1.39 },
  7107. { "time": 1, "x": 0, "y": 0 },
  7108. { "time": 1.5, "x": -0.11, "y": 1.39 },
  7109. { "time": 2, "x": 0, "y": 0 }
  7110. ],
  7111. "scale": [
  7112. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7113. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7114. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7115. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7116. { "time": 2, "x": 1, "y": 1 }
  7117. ]
  7118. },
  7119. "bone7": {
  7120. "rotate": [
  7121. { "time": 0, "angle": 0 },
  7122. { "time": 0.5, "angle": -10.49 },
  7123. { "time": 1, "angle": 0 },
  7124. { "time": 1.5, "angle": -10.49 },
  7125. { "time": 2, "angle": 0 }
  7126. ],
  7127. "translate": [
  7128. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7129. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7130. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7131. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7132. { "time": 2, "x": 0, "y": 0 }
  7133. ],
  7134. "scale": [
  7135. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7136. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7137. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7138. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7139. { "time": 2, "x": 1, "y": 1 }
  7140. ]
  7141. },
  7142. "bone8": {
  7143. "rotate": [
  7144. { "time": 0, "angle": 0 },
  7145. { "time": 0.5, "angle": -3.88 },
  7146. { "time": 1, "angle": 0 },
  7147. { "time": 1.5, "angle": -3.88 },
  7148. { "time": 2, "angle": 0 }
  7149. ],
  7150. "translate": [
  7151. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7152. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7153. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7154. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7155. { "time": 2, "x": 0, "y": 0 }
  7156. ],
  7157. "scale": [
  7158. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7159. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7160. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7161. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7162. { "time": 2, "x": 1, "y": 1 }
  7163. ]
  7164. },
  7165. "bone9": {
  7166. "rotate": [
  7167. { "time": 0, "angle": 0 },
  7168. { "time": 0.5, "angle": -3.88 },
  7169. { "time": 1, "angle": 0 },
  7170. { "time": 1.5, "angle": -3.88 },
  7171. { "time": 2, "angle": 0 }
  7172. ],
  7173. "translate": [
  7174. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7175. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7176. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7177. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7178. { "time": 2, "x": 0, "y": 0 }
  7179. ],
  7180. "scale": [
  7181. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7182. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7183. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7184. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7185. { "time": 2, "x": 1, "y": 1 }
  7186. ]
  7187. },
  7188. "bone10": {
  7189. "rotate": [
  7190. { "time": 0, "angle": 0, "curve": "stepped" },
  7191. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7192. { "time": 1, "angle": 0, "curve": "stepped" },
  7193. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7194. { "time": 2, "angle": 0 }
  7195. ],
  7196. "translate": [
  7197. { "time": 0, "x": 0, "y": 0 },
  7198. { "time": 0.5, "x": 0.84, "y": 1.43 },
  7199. { "time": 1, "x": 0, "y": 0 },
  7200. { "time": 1.5, "x": 0.84, "y": 1.43 },
  7201. { "time": 2, "x": 0, "y": 0 }
  7202. ],
  7203. "scale": [
  7204. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7205. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7206. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7207. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7208. { "time": 2, "x": 1, "y": 1 }
  7209. ]
  7210. },
  7211. "bone11": {
  7212. "rotate": [
  7213. { "time": 0, "angle": 0 },
  7214. { "time": 0.5, "angle": -2.08 },
  7215. { "time": 1, "angle": 0 },
  7216. { "time": 1.5, "angle": -2.08 },
  7217. { "time": 2, "angle": 0 }
  7218. ],
  7219. "translate": [
  7220. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7221. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7222. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7223. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7224. { "time": 2, "x": 0, "y": 0 }
  7225. ],
  7226. "scale": [
  7227. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7228. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7229. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7230. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7231. { "time": 2, "x": 1, "y": 1 }
  7232. ]
  7233. },
  7234. "bone12": {
  7235. "rotate": [
  7236. { "time": 0, "angle": 0 },
  7237. { "time": 0.5, "angle": -2.08 },
  7238. { "time": 1, "angle": 0 },
  7239. { "time": 1.5, "angle": -2.08 },
  7240. { "time": 2, "angle": 0 }
  7241. ],
  7242. "translate": [
  7243. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7244. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7245. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7246. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7247. { "time": 2, "x": 0, "y": 0 }
  7248. ],
  7249. "scale": [
  7250. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7251. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7252. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7253. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7254. { "time": 2, "x": 1, "y": 1 }
  7255. ]
  7256. },
  7257. "bone13": {
  7258. "rotate": [
  7259. { "time": 0, "angle": 0 },
  7260. { "time": 0.5, "angle": -2.08 },
  7261. { "time": 1, "angle": 0 },
  7262. { "time": 1.5, "angle": -2.08 },
  7263. { "time": 2, "angle": 0 }
  7264. ],
  7265. "translate": [
  7266. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7267. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7268. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7269. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7270. { "time": 2, "x": 0, "y": 0 }
  7271. ],
  7272. "scale": [
  7273. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7274. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7275. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7276. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7277. { "time": 2, "x": 1, "y": 1 }
  7278. ]
  7279. },
  7280. "bone14": {
  7281. "rotate": [
  7282. { "time": 0, "angle": 0, "curve": "stepped" },
  7283. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7284. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7285. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7286. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7287. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7288. { "time": 1, "angle": 0, "curve": "stepped" },
  7289. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7290. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7291. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7292. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7293. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7294. { "time": 2, "angle": 0 }
  7295. ],
  7296. "translate": [
  7297. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7298. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7299. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7300. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7301. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7302. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7303. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7304. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7305. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7306. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7307. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7308. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7309. { "time": 2, "x": 0, "y": 0 }
  7310. ],
  7311. "scale": [
  7312. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7313. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7314. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7315. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7316. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7317. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7318. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7319. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7320. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7321. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7322. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7323. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7324. { "time": 2, "x": 1, "y": 1 }
  7325. ]
  7326. },
  7327. "bone15": {
  7328. "rotate": [
  7329. { "time": 0, "angle": 0, "curve": "stepped" },
  7330. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7331. { "time": 1, "angle": 0, "curve": "stepped" },
  7332. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7333. { "time": 2, "angle": 0 }
  7334. ],
  7335. "translate": [
  7336. { "time": 0, "x": 0, "y": 0 },
  7337. { "time": 0.5, "x": 0.15, "y": -1.33 },
  7338. { "time": 1, "x": 0, "y": 0 },
  7339. { "time": 1.5, "x": 0.15, "y": -1.33 },
  7340. { "time": 2, "x": 0, "y": 0 }
  7341. ],
  7342. "scale": [
  7343. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7344. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7345. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7346. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7347. { "time": 2, "x": 1, "y": 1 }
  7348. ]
  7349. },
  7350. "bone16": {
  7351. "rotate": [
  7352. { "time": 0, "angle": 0 },
  7353. { "time": 0.5, "angle": -6.52 },
  7354. { "time": 1, "angle": 0 },
  7355. { "time": 1.5, "angle": -6.52 },
  7356. { "time": 2, "angle": 0 }
  7357. ],
  7358. "translate": [
  7359. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7360. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7361. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7362. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7363. { "time": 2, "x": 0, "y": 0 }
  7364. ],
  7365. "scale": [
  7366. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7367. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7368. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7369. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7370. { "time": 2, "x": 1, "y": 1 }
  7371. ]
  7372. },
  7373. "bone17": {
  7374. "rotate": [
  7375. { "time": 0, "angle": 0 },
  7376. { "time": 0.5, "angle": -6.52 },
  7377. { "time": 1, "angle": 0 },
  7378. { "time": 1.5, "angle": -6.52 },
  7379. { "time": 2, "angle": 0 }
  7380. ],
  7381. "translate": [
  7382. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7383. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7384. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7385. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7386. { "time": 2, "x": 0, "y": 0 }
  7387. ],
  7388. "scale": [
  7389. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7390. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7391. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7392. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7393. { "time": 2, "x": 1, "y": 1 }
  7394. ]
  7395. },
  7396. "bone18": {
  7397. "rotate": [
  7398. { "time": 0, "angle": 0, "curve": "stepped" },
  7399. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7400. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7401. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7402. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7403. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7404. { "time": 1, "angle": 0, "curve": "stepped" },
  7405. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7406. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7407. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7408. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7409. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7410. { "time": 2, "angle": 0 }
  7411. ],
  7412. "translate": [
  7413. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7414. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7415. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7416. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7417. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7418. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7419. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7420. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7421. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7422. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7423. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7424. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7425. { "time": 2, "x": 0, "y": 0 }
  7426. ],
  7427. "scale": [
  7428. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7429. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7430. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7431. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7432. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7433. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7434. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7435. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7436. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7437. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7438. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7439. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7440. { "time": 2, "x": 1, "y": 1 }
  7441. ]
  7442. },
  7443. "bone19": {
  7444. "rotate": [
  7445. { "time": 0, "angle": 0 },
  7446. { "time": 0.5, "angle": -7.3 },
  7447. { "time": 1, "angle": 0 },
  7448. { "time": 1.5, "angle": -7.3 },
  7449. { "time": 2, "angle": 0 }
  7450. ],
  7451. "translate": [
  7452. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7453. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7454. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7455. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7456. { "time": 2, "x": 0, "y": 0 }
  7457. ],
  7458. "scale": [
  7459. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7460. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7461. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7462. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7463. { "time": 2, "x": 1, "y": 1 }
  7464. ]
  7465. },
  7466. "bone20": {
  7467. "rotate": [
  7468. { "time": 0, "angle": 0 },
  7469. { "time": 0.5, "angle": 8.76 },
  7470. { "time": 1, "angle": 0 },
  7471. { "time": 1.5, "angle": 8.76 },
  7472. { "time": 2, "angle": 0 }
  7473. ],
  7474. "translate": [
  7475. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7476. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7477. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7478. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7479. { "time": 2, "x": 0, "y": 0 }
  7480. ],
  7481. "scale": [
  7482. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7483. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7484. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7485. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7486. { "time": 2, "x": 1, "y": 1 }
  7487. ]
  7488. },
  7489. "bone21": {
  7490. "rotate": [
  7491. { "time": 0, "angle": 0 },
  7492. { "time": 0.5, "angle": -11.49 },
  7493. { "time": 1, "angle": 0 },
  7494. { "time": 1.5, "angle": -11.49 },
  7495. { "time": 2, "angle": 0 }
  7496. ],
  7497. "translate": [
  7498. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7499. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7500. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7501. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7502. { "time": 2, "x": 0, "y": 0 }
  7503. ],
  7504. "scale": [
  7505. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7506. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7507. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7508. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7509. { "time": 2, "x": 1, "y": 1 }
  7510. ]
  7511. },
  7512. "bone22": {
  7513. "rotate": [
  7514. { "time": 0, "angle": 0 },
  7515. { "time": 0.5, "angle": -11.49 },
  7516. { "time": 1, "angle": 0 },
  7517. { "time": 1.5, "angle": -11.49 },
  7518. { "time": 2, "angle": 0 }
  7519. ],
  7520. "translate": [
  7521. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7522. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7523. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7524. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7525. { "time": 2, "x": 0, "y": 0 }
  7526. ],
  7527. "scale": [
  7528. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7529. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7530. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7531. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7532. { "time": 2, "x": 1, "y": 1 }
  7533. ]
  7534. },
  7535. "bone23": {
  7536. "rotate": [
  7537. { "time": 0, "angle": 0 },
  7538. { "time": 0.5, "angle": -11.49 },
  7539. { "time": 1, "angle": 0 },
  7540. { "time": 1.5, "angle": -11.49 },
  7541. { "time": 2, "angle": 0 }
  7542. ],
  7543. "translate": [
  7544. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7545. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7546. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7547. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7548. { "time": 2, "x": 0, "y": 0 }
  7549. ],
  7550. "scale": [
  7551. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7552. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7553. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7554. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7555. { "time": 2, "x": 1, "y": 1 }
  7556. ]
  7557. },
  7558. "bone24": {
  7559. "rotate": [
  7560. { "time": 0, "angle": 0 },
  7561. { "time": 0.5, "angle": -9.02 },
  7562. { "time": 1, "angle": 0 },
  7563. { "time": 1.5, "angle": -9.02 },
  7564. { "time": 2, "angle": 0 }
  7565. ],
  7566. "translate": [
  7567. { "time": 0, "x": 0, "y": 0 },
  7568. { "time": 0.5, "x": 0.08, "y": 0.82 },
  7569. { "time": 1, "x": 0, "y": 0 },
  7570. { "time": 1.5, "x": 0.08, "y": 0.82 },
  7571. { "time": 2, "x": 0, "y": 0 }
  7572. ],
  7573. "scale": [
  7574. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7575. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7576. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7577. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7578. { "time": 2, "x": 1, "y": 1 }
  7579. ]
  7580. },
  7581. "bone25": {
  7582. "rotate": [
  7583. { "time": 0, "angle": 0 },
  7584. { "time": 0.5, "angle": -4.69 },
  7585. { "time": 1, "angle": 0 },
  7586. { "time": 1.5, "angle": -4.69 },
  7587. { "time": 2, "angle": 0 }
  7588. ],
  7589. "translate": [
  7590. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7591. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7592. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7593. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7594. { "time": 2, "x": 0, "y": 0 }
  7595. ],
  7596. "scale": [
  7597. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7598. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7599. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7600. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7601. { "time": 2, "x": 1, "y": 1 }
  7602. ]
  7603. },
  7604. "bone26": {
  7605. "rotate": [
  7606. { "time": 0, "angle": 0 },
  7607. { "time": 0.5, "angle": -4.69 },
  7608. { "time": 1, "angle": 0 },
  7609. { "time": 1.5, "angle": -4.69 },
  7610. { "time": 2, "angle": 0 }
  7611. ],
  7612. "translate": [
  7613. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7614. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7615. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7616. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7617. { "time": 2, "x": 0, "y": 0 }
  7618. ],
  7619. "scale": [
  7620. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7621. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7622. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7623. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7624. { "time": 2, "x": 1, "y": 1 }
  7625. ]
  7626. },
  7627. "bone27": {
  7628. "rotate": [
  7629. { "time": 0, "angle": 0 },
  7630. { "time": 0.5, "angle": -4.69 },
  7631. { "time": 1, "angle": 0 },
  7632. { "time": 1.5, "angle": -4.69 },
  7633. { "time": 2, "angle": 0 }
  7634. ],
  7635. "translate": [
  7636. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7637. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7638. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7639. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7640. { "time": 2, "x": 0, "y": 0 }
  7641. ],
  7642. "scale": [
  7643. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7644. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7645. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7646. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7647. { "time": 2, "x": 1, "y": 1 }
  7648. ]
  7649. },
  7650. "bone28": {
  7651. "rotate": [
  7652. { "time": 0, "angle": 0 },
  7653. { "time": 0.5, "angle": -4.69 },
  7654. { "time": 1, "angle": 0 },
  7655. { "time": 1.5, "angle": -4.69 },
  7656. { "time": 2, "angle": 0 }
  7657. ],
  7658. "translate": [
  7659. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7660. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7661. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7662. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7663. { "time": 2, "x": 0, "y": 0 }
  7664. ],
  7665. "scale": [
  7666. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7667. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7668. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7669. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7670. { "time": 2, "x": 1, "y": 1 }
  7671. ]
  7672. },
  7673. "bone41": {
  7674. "rotate": [
  7675. { "time": 0, "angle": 0 },
  7676. { "time": 0.5, "angle": 339.35 },
  7677. { "time": 1, "angle": 0 },
  7678. { "time": 1.5, "angle": 339.35 },
  7679. { "time": 2, "angle": 0 }
  7680. ],
  7681. "translate": [
  7682. { "time": 0, "x": 0, "y": 0 },
  7683. { "time": 0.5, "x": 0.11, "y": 5.16 },
  7684. { "time": 1, "x": 0, "y": 0 },
  7685. { "time": 1.5, "x": 0.11, "y": 5.16 },
  7686. { "time": 2, "x": 0, "y": 0 }
  7687. ],
  7688. "scale": [
  7689. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7690. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7691. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7692. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7693. { "time": 2, "x": 1, "y": 1 }
  7694. ]
  7695. },
  7696. "bone42": {
  7697. "rotate": [
  7698. { "time": 0, "angle": 0 },
  7699. { "time": 0.5, "angle": -8.97 },
  7700. { "time": 1, "angle": 0 },
  7701. { "time": 1.5, "angle": -8.97 },
  7702. { "time": 2, "angle": 0 }
  7703. ],
  7704. "translate": [
  7705. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7706. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7707. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7708. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7709. { "time": 2, "x": 0, "y": 0 }
  7710. ],
  7711. "scale": [
  7712. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7713. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7714. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7715. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7716. { "time": 2, "x": 1, "y": 1 }
  7717. ]
  7718. },
  7719. "bone43": {
  7720. "rotate": [
  7721. { "time": 0, "angle": 0 },
  7722. { "time": 0.5, "angle": -8.97 },
  7723. { "time": 1, "angle": 0 },
  7724. { "time": 1.5, "angle": -8.97 },
  7725. { "time": 2, "angle": 0 }
  7726. ],
  7727. "translate": [
  7728. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7729. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7730. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7731. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7732. { "time": 2, "x": 0, "y": 0 }
  7733. ],
  7734. "scale": [
  7735. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7736. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7737. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7738. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7739. { "time": 2, "x": 1, "y": 1 }
  7740. ]
  7741. },
  7742. "bone44": {
  7743. "rotate": [
  7744. { "time": 0, "angle": 0 },
  7745. { "time": 0.5, "angle": -8.97 },
  7746. { "time": 1, "angle": 0 },
  7747. { "time": 1.5, "angle": -8.97 },
  7748. { "time": 2, "angle": 0 }
  7749. ],
  7750. "translate": [
  7751. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7752. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7753. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7754. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7755. { "time": 2, "x": 0, "y": 0 }
  7756. ],
  7757. "scale": [
  7758. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7759. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7760. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7761. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7762. { "time": 2, "x": 1, "y": 1 }
  7763. ]
  7764. },
  7765. "bone45": {
  7766. "rotate": [
  7767. { "time": 0, "angle": 0 },
  7768. { "time": 0.5, "angle": -8.97 },
  7769. { "time": 1, "angle": 0 },
  7770. { "time": 1.5, "angle": -8.97 },
  7771. { "time": 2, "angle": 0 }
  7772. ],
  7773. "translate": [
  7774. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7775. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7776. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7777. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7778. { "time": 2, "x": 0, "y": 0 }
  7779. ],
  7780. "scale": [
  7781. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7782. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7783. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7784. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7785. { "time": 2, "x": 1, "y": 1 }
  7786. ]
  7787. },
  7788. "bone46": {
  7789. "rotate": [
  7790. {
  7791. "time": 0,
  7792. "angle": -21.91,
  7793. "curve": [ 0.25, 0, 0.75, 1 ]
  7794. },
  7795. {
  7796. "time": 0.5,
  7797. "angle": -75.73,
  7798. "curve": [ 0.25, 0, 0.75, 1 ]
  7799. },
  7800. {
  7801. "time": 1,
  7802. "angle": -21.91,
  7803. "curve": [ 0.25, 0, 0.75, 1 ]
  7804. },
  7805. {
  7806. "time": 1.5,
  7807. "angle": -75.73,
  7808. "curve": [ 0.25, 0, 0.75, 1 ]
  7809. },
  7810. { "time": 2, "angle": -21.91 }
  7811. ],
  7812. "translate": [
  7813. {
  7814. "time": 0,
  7815. "x": -0.49,
  7816. "y": 0.82,
  7817. "curve": [ 0.25, 0, 0.75, 1 ]
  7818. },
  7819. {
  7820. "time": 0.5,
  7821. "x": -0.28,
  7822. "y": 2.12,
  7823. "curve": [ 0.25, 0, 0.75, 1 ]
  7824. },
  7825. {
  7826. "time": 1,
  7827. "x": -0.49,
  7828. "y": 0.82,
  7829. "curve": [ 0.25, 0, 0.75, 1 ]
  7830. },
  7831. {
  7832. "time": 1.5,
  7833. "x": -0.28,
  7834. "y": 2.12,
  7835. "curve": [ 0.25, 0, 0.75, 1 ]
  7836. },
  7837. { "time": 2, "x": -0.49, "y": 0.82 }
  7838. ],
  7839. "scale": [
  7840. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7841. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7842. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7843. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7844. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7845. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7846. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7847. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7848. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7849. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7850. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7851. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7852. { "time": 2, "x": 1, "y": 1 }
  7853. ]
  7854. },
  7855. "bone47": {
  7856. "rotate": [
  7857. {
  7858. "time": 0,
  7859. "angle": -12.71,
  7860. "curve": [ 0.25, 0, 0.75, 1 ]
  7861. },
  7862. {
  7863. "time": 0.5,
  7864. "angle": -14.87,
  7865. "curve": [ 0.25, 0, 0.75, 1 ]
  7866. },
  7867. {
  7868. "time": 1,
  7869. "angle": -12.71,
  7870. "curve": [ 0.25, 0, 0.75, 1 ]
  7871. },
  7872. {
  7873. "time": 1.5,
  7874. "angle": -14.87,
  7875. "curve": [ 0.25, 0, 0.75, 1 ]
  7876. },
  7877. { "time": 2, "angle": -12.71 }
  7878. ],
  7879. "translate": [
  7880. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7881. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7882. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7883. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7884. { "time": 2, "x": 0, "y": 0 }
  7885. ],
  7886. "scale": [
  7887. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7888. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7889. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7890. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7891. { "time": 2, "x": 1, "y": 1 }
  7892. ]
  7893. },
  7894. "bone48": {
  7895. "rotate": [
  7896. {
  7897. "time": 0,
  7898. "angle": 0,
  7899. "curve": [ 0.25, 0, 0.75, 1 ]
  7900. },
  7901. {
  7902. "time": 0.5,
  7903. "angle": -10.36,
  7904. "curve": [ 0.25, 0, 0.75, 1 ]
  7905. },
  7906. {
  7907. "time": 1,
  7908. "angle": 0,
  7909. "curve": [ 0.25, 0, 0.75, 1 ]
  7910. },
  7911. {
  7912. "time": 1.5,
  7913. "angle": -10.36,
  7914. "curve": [ 0.25, 0, 0.75, 1 ]
  7915. },
  7916. { "time": 2, "angle": 0 }
  7917. ],
  7918. "translate": [
  7919. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7920. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7921. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7922. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7923. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7924. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7925. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7926. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7927. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7928. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7929. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7930. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7931. { "time": 2, "x": 0, "y": 0 }
  7932. ],
  7933. "scale": [
  7934. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7935. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7936. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7937. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7938. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7939. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7940. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7941. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7942. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7943. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7944. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7945. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7946. { "time": 2, "x": 1, "y": 1 }
  7947. ]
  7948. },
  7949. "bone49": {
  7950. "rotate": [
  7951. { "time": 0, "angle": 4.23 }
  7952. ],
  7953. "translate": [
  7954. { "time": 0, "x": -1.5, "y": -4.16 }
  7955. ],
  7956. "scale": [
  7957. { "time": 0, "x": 1, "y": 1 }
  7958. ]
  7959. },
  7960. "bone50": {
  7961. "rotate": [
  7962. { "time": 0, "angle": -71.47 }
  7963. ],
  7964. "translate": [
  7965. { "time": 0, "x": 0, "y": 0 }
  7966. ],
  7967. "scale": [
  7968. { "time": 0, "x": 1, "y": 1 }
  7969. ]
  7970. },
  7971. "bone51": {
  7972. "rotate": [
  7973. { "time": 0, "angle": -27.57 }
  7974. ],
  7975. "translate": [
  7976. { "time": 0, "x": 0, "y": 0 }
  7977. ],
  7978. "scale": [
  7979. { "time": 0, "x": 1, "y": 1 }
  7980. ]
  7981. },
  7982. "bone52": {
  7983. "rotate": [
  7984. { "time": 0, "angle": 0, "curve": "stepped" },
  7985. { "time": 1, "angle": 0, "curve": "stepped" },
  7986. { "time": 2, "angle": 0 }
  7987. ],
  7988. "translate": [
  7989. { "time": 0, "x": 0.23, "y": 0.99 },
  7990. { "time": 0.5, "x": 0.01, "y": 0.02 },
  7991. { "time": 1, "x": 0.23, "y": 0.99 },
  7992. { "time": 1.5, "x": 0.01, "y": 0.02 },
  7993. { "time": 2, "x": 0.23, "y": 0.99 }
  7994. ],
  7995. "scale": [
  7996. { "time": 0, "x": 1, "y": 1 },
  7997. { "time": 0.5, "x": 1, "y": 1.05 },
  7998. { "time": 1, "x": 1, "y": 1 },
  7999. { "time": 1.5, "x": 1, "y": 1.05 },
  8000. { "time": 2, "x": 1, "y": 1 }
  8001. ]
  8002. },
  8003. "bone53": {
  8004. "rotate": [
  8005. { "time": 0, "angle": 0, "curve": "stepped" },
  8006. { "time": 1, "angle": 0, "curve": "stepped" },
  8007. { "time": 2, "angle": 0 }
  8008. ],
  8009. "translate": [
  8010. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8011. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8012. { "time": 2, "x": 0, "y": 0 }
  8013. ],
  8014. "scale": [
  8015. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8016. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8017. { "time": 2, "x": 1, "y": 1 }
  8018. ]
  8019. },
  8020. "bone54": {
  8021. "rotate": [
  8022. { "time": 0, "angle": 0, "curve": "stepped" },
  8023. { "time": 1, "angle": 0, "curve": "stepped" },
  8024. { "time": 2, "angle": 0 }
  8025. ],
  8026. "translate": [
  8027. { "time": 0, "x": 0, "y": 0 },
  8028. { "time": 0.5, "x": -1.13, "y": 0.07 },
  8029. { "time": 1, "x": 0, "y": 0 },
  8030. { "time": 1.5, "x": -1.13, "y": 0.07 },
  8031. { "time": 2, "x": 0, "y": 0 }
  8032. ],
  8033. "scale": [
  8034. { "time": 0, "x": 1, "y": 1 },
  8035. { "time": 0.5, "x": 1.03, "y": 1.03 },
  8036. { "time": 1, "x": 1, "y": 1 },
  8037. { "time": 1.5, "x": 1.03, "y": 1.03 },
  8038. { "time": 2, "x": 1, "y": 1 }
  8039. ]
  8040. },
  8041. "bone55": {
  8042. "rotate": [
  8043. { "time": 0, "angle": 0 },
  8044. { "time": 0.5, "angle": -8.1 },
  8045. { "time": 1, "angle": 0 },
  8046. { "time": 1.5, "angle": -8.1 },
  8047. { "time": 2, "angle": 0 }
  8048. ],
  8049. "translate": [
  8050. { "time": 0, "x": 0, "y": 0 },
  8051. { "time": 0.5, "x": -2.05, "y": 0.33 },
  8052. { "time": 1, "x": 0, "y": 0 },
  8053. { "time": 1.5, "x": -2.05, "y": 0.33 },
  8054. { "time": 2, "x": 0, "y": 0 }
  8055. ],
  8056. "scale": [
  8057. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8058. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8059. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8060. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8061. { "time": 2, "x": 1, "y": 1 }
  8062. ]
  8063. },
  8064. "bone56": {
  8065. "rotate": [
  8066. { "time": 0, "angle": 0 },
  8067. { "time": 0.5, "angle": -8.1 },
  8068. { "time": 1, "angle": 0 },
  8069. { "time": 1.5, "angle": -8.1 },
  8070. { "time": 2, "angle": 0 }
  8071. ],
  8072. "translate": [
  8073. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8074. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8075. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8076. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8077. { "time": 2, "x": 0, "y": 0 }
  8078. ],
  8079. "scale": [
  8080. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8081. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8082. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8083. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8084. { "time": 2, "x": 1, "y": 1 }
  8085. ]
  8086. },
  8087. "bone57": {
  8088. "rotate": [
  8089. { "time": 0, "angle": 0 },
  8090. { "time": 0.5, "angle": -8.1 },
  8091. { "time": 1, "angle": 0 },
  8092. { "time": 1.5, "angle": -8.1 },
  8093. { "time": 2, "angle": 0 }
  8094. ],
  8095. "translate": [
  8096. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8097. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8098. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8099. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8100. { "time": 2, "x": 0, "y": 0 }
  8101. ],
  8102. "scale": [
  8103. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8104. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8105. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8106. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8107. { "time": 2, "x": 1, "y": 1 }
  8108. ]
  8109. },
  8110. "bone58": {
  8111. "rotate": [
  8112. { "time": 0, "angle": -22.57 },
  8113. { "time": 0.0667, "angle": -18.92 },
  8114. { "time": 0.1667, "angle": -7.37 },
  8115. { "time": 0.3333, "angle": 10.89 },
  8116. { "time": 0.5, "angle": 28.4 },
  8117. { "time": 0.6667, "angle": 6.4 },
  8118. { "time": 0.8333, "angle": -15.73 },
  8119. { "time": 1, "angle": -22.57 },
  8120. { "time": 1.0667, "angle": -18.92 },
  8121. { "time": 1.1667, "angle": -7.37 },
  8122. { "time": 1.3333, "angle": 10.89 },
  8123. { "time": 1.5, "angle": 28.4 },
  8124. { "time": 1.6667, "angle": 6.4 },
  8125. { "time": 1.8333, "angle": -15.73 },
  8126. { "time": 2, "angle": -22.57 }
  8127. ],
  8128. "translate": [
  8129. { "time": 0, "x": 0, "y": 0 },
  8130. { "time": 0.0667, "x": 1.39, "y": 0.5 },
  8131. { "time": 0.1667, "x": 5.49, "y": 0.52 },
  8132. { "time": 0.3333, "x": 10.97, "y": 1.05 },
  8133. { "time": 0.5, "x": 16.46, "y": 1.57 },
  8134. { "time": 0.6667, "x": 6.52, "y": 2.36 },
  8135. { "time": 0.8333, "x": 2.4, "y": 1.02 },
  8136. { "time": 1, "x": 0, "y": 0 },
  8137. { "time": 1.0667, "x": 1.39, "y": 0.5 },
  8138. { "time": 1.1667, "x": 5.49, "y": 0.52 },
  8139. { "time": 1.3333, "x": 10.97, "y": 1.05 },
  8140. { "time": 1.5, "x": 16.46, "y": 1.57 },
  8141. { "time": 1.6667, "x": 6.52, "y": 2.36 },
  8142. { "time": 1.8333, "x": 2.4, "y": 1.02 },
  8143. { "time": 2, "x": 0, "y": 0 }
  8144. ],
  8145. "scale": [
  8146. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8147. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8148. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8149. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8150. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8151. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8152. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8153. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8154. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8155. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8156. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8157. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8158. { "time": 2, "x": 1, "y": 1 }
  8159. ]
  8160. },
  8161. "bone59": {
  8162. "rotate": [
  8163. { "time": 0, "angle": 4.43 },
  8164. { "time": 0.1667, "angle": 5.83 },
  8165. { "time": 0.3333, "angle": -1.27 },
  8166. { "time": 0.5, "angle": 6.54 },
  8167. { "time": 0.6667, "angle": 40.93 },
  8168. { "time": 0.8333, "angle": 22.14 },
  8169. { "time": 1, "angle": 4.43 },
  8170. { "time": 1.1667, "angle": 5.83 },
  8171. { "time": 1.3333, "angle": -1.27 },
  8172. { "time": 1.5, "angle": 6.54 },
  8173. { "time": 1.6667, "angle": 40.93 },
  8174. { "time": 1.8333, "angle": 22.14 },
  8175. { "time": 2, "angle": 4.43 }
  8176. ],
  8177. "translate": [
  8178. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8179. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8180. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8181. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8182. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8183. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8184. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8185. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8186. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8187. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8188. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8189. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8190. { "time": 2, "x": 0, "y": 0 }
  8191. ],
  8192. "scale": [
  8193. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8194. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8195. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8196. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8197. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8198. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8199. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8200. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8201. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8202. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8203. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8204. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8205. { "time": 2, "x": 1, "y": 1 }
  8206. ]
  8207. },
  8208. "bone60": {
  8209. "rotate": [
  8210. { "time": 0, "angle": 0 },
  8211. { "time": 0.1667, "angle": 0.53 },
  8212. { "time": 0.3333, "angle": -11.81 },
  8213. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8214. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8215. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8216. { "time": 1, "angle": 0 },
  8217. { "time": 1.1667, "angle": 0.53 },
  8218. { "time": 1.3333, "angle": -11.81 },
  8219. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8220. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8221. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8222. { "time": 2, "angle": 0 }
  8223. ],
  8224. "translate": [
  8225. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8226. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8227. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8228. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8229. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8230. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8231. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8232. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8233. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8234. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8235. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8236. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8237. { "time": 2, "x": 0, "y": 0 }
  8238. ],
  8239. "scale": [
  8240. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8241. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8242. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8243. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8244. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8245. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8246. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8247. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8248. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8249. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8250. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8251. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8252. { "time": 2, "x": 1, "y": 1 }
  8253. ]
  8254. },
  8255. "bone61": {
  8256. "rotate": [
  8257. { "time": 0, "angle": 21.79 },
  8258. { "time": 0.1667, "angle": 10.89 },
  8259. { "time": 0.3333, "angle": -12.71 },
  8260. { "time": 0.5, "angle": -23.94 },
  8261. { "time": 0.6667, "angle": -7.29 },
  8262. { "time": 0.8333, "angle": 11.07 },
  8263. { "time": 1, "angle": 21.79 },
  8264. { "time": 1.1667, "angle": 10.89 },
  8265. { "time": 1.3333, "angle": -12.71 },
  8266. { "time": 1.5, "angle": -23.94 },
  8267. { "time": 1.6667, "angle": -7.29 },
  8268. { "time": 1.8333, "angle": 11.07 },
  8269. { "time": 2, "angle": 21.79 }
  8270. ],
  8271. "translate": [
  8272. { "time": 0, "x": -1.62, "y": 0.01 },
  8273. { "time": 0.1667, "x": -12.31, "y": 4.86 },
  8274. { "time": 0.3333, "x": -16.75, "y": 2.08 },
  8275. { "time": 0.5, "x": -18.59, "y": 1.08 },
  8276. { "time": 0.6667, "x": -16.85, "y": 1.12 },
  8277. { "time": 0.8333, "x": -7.27, "y": 0.36 },
  8278. { "time": 1, "x": -1.62, "y": 0.01 },
  8279. { "time": 1.1667, "x": -12.31, "y": 4.86 },
  8280. { "time": 1.3333, "x": -16.75, "y": 2.08 },
  8281. { "time": 1.5, "x": -18.59, "y": 1.08 },
  8282. { "time": 1.6667, "x": -16.85, "y": 1.12 },
  8283. { "time": 1.8333, "x": -7.27, "y": 0.36 },
  8284. { "time": 2, "x": -1.62, "y": 0.01 }
  8285. ],
  8286. "scale": [
  8287. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8288. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8289. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8290. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8291. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8292. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8293. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8294. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8295. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8296. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8297. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8298. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8299. { "time": 2, "x": 1, "y": 1 }
  8300. ]
  8301. },
  8302. "bone62": {
  8303. "rotate": [
  8304. { "time": 0, "angle": 14.61 },
  8305. { "time": 0.1667, "angle": 35.82 },
  8306. { "time": 0.3333, "angle": 33.3 },
  8307. { "time": 0.5, "angle": 5.08 },
  8308. { "time": 0.6667, "angle": 0.44 },
  8309. { "time": 0.8333, "angle": 2.25 },
  8310. { "time": 1, "angle": 14.61 },
  8311. { "time": 1.1667, "angle": 35.82 },
  8312. { "time": 1.3333, "angle": 33.3 },
  8313. { "time": 1.5, "angle": 5.08 },
  8314. { "time": 1.6667, "angle": 0.44 },
  8315. { "time": 1.8333, "angle": 2.25 },
  8316. { "time": 2, "angle": 14.61 }
  8317. ],
  8318. "translate": [
  8319. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8320. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8321. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8322. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8323. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8324. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8325. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8326. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8327. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8328. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8329. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8330. { "time": 1.8333, "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.1667, "x": 1, "y": 1, "curve": "stepped" },
  8336. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8337. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8338. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8339. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8340. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8341. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8342. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8343. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8344. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8345. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8346. { "time": 2, "x": 1, "y": 1 }
  8347. ]
  8348. },
  8349. "bone63": {
  8350. "rotate": [
  8351. { "time": 0, "angle": 0, "curve": "stepped" },
  8352. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8353. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8354. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8355. { "time": 0.6667, "angle": 0 },
  8356. { "time": 0.8333, "angle": -13.08 },
  8357. { "time": 1, "angle": 0, "curve": "stepped" },
  8358. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8359. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  8360. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8361. { "time": 1.6667, "angle": 0 },
  8362. { "time": 1.8333, "angle": -13.08 },
  8363. { "time": 2, "angle": 0 }
  8364. ],
  8365. "translate": [
  8366. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8367. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8368. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8369. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8370. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8371. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8372. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8373. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8374. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8375. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8376. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8377. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8378. { "time": 2, "x": 0, "y": 0 }
  8379. ],
  8380. "scale": [
  8381. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8382. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8383. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8384. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8385. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8386. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8387. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8388. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8389. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8390. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8391. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8392. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8393. { "time": 2, "x": 1, "y": 1 }
  8394. ]
  8395. },
  8396. "bone64": {
  8397. "rotate": [
  8398. { "time": 0, "angle": -1.33 }
  8399. ],
  8400. "translate": [
  8401. { "time": 0, "x": 0, "y": 0 }
  8402. ],
  8403. "scale": [
  8404. { "time": 0, "x": 1, "y": 1 }
  8405. ]
  8406. },
  8407. "bone65": {
  8408. "rotate": [
  8409. { "time": 0, "angle": 0, "curve": "stepped" },
  8410. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8411. { "time": 1, "angle": 0, "curve": "stepped" },
  8412. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8413. { "time": 2, "angle": 0 }
  8414. ],
  8415. "translate": [
  8416. { "time": 0, "x": 0, "y": 0 },
  8417. { "time": 0.5, "x": -4.08, "y": -1.33 },
  8418. { "time": 1, "x": 0, "y": 0 },
  8419. { "time": 1.5, "x": -4.08, "y": -1.33 },
  8420. { "time": 2, "x": 0, "y": 0 }
  8421. ],
  8422. "scale": [
  8423. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8424. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8425. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8426. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8427. { "time": 2, "x": 1, "y": 1 }
  8428. ]
  8429. },
  8430. "bone66": {
  8431. "rotate": [
  8432. { "time": 0, "angle": 0, "curve": "stepped" },
  8433. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8434. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8435. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8436. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8437. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8438. { "time": 1, "angle": 0, "curve": "stepped" },
  8439. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8440. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  8441. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8442. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8443. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8444. { "time": 2, "angle": 0 }
  8445. ],
  8446. "translate": [
  8447. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8448. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8449. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8450. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8451. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8452. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8453. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8454. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8455. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8456. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8457. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8458. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8459. { "time": 2, "x": 0, "y": 0 }
  8460. ],
  8461. "scale": [
  8462. { "time": 0, "x": 1, "y": 1 },
  8463. { "time": 0.5, "x": 1.03, "y": 1.03 },
  8464. { "time": 1, "x": 1, "y": 1 },
  8465. { "time": 1.5, "x": 1.03, "y": 1.03 },
  8466. { "time": 2, "x": 1, "y": 1 }
  8467. ]
  8468. },
  8469. "bone67": {
  8470. "rotate": [
  8471. { "time": 0, "angle": 0, "curve": "stepped" },
  8472. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8473. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8474. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8475. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8476. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8477. { "time": 1, "angle": 0, "curve": "stepped" },
  8478. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8479. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  8480. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8481. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8482. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8483. { "time": 2, "angle": 0 }
  8484. ],
  8485. "translate": [
  8486. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8487. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8488. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8489. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8490. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8491. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8492. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8493. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8494. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8495. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8496. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8497. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8498. { "time": 2, "x": 0, "y": 0 }
  8499. ],
  8500. "scale": [
  8501. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8502. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8503. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8504. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8505. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8506. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8507. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8508. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8509. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8510. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8511. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8512. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8513. { "time": 2, "x": 1, "y": 1 }
  8514. ]
  8515. },
  8516. "bone68": {
  8517. "rotate": [
  8518. { "time": 0, "angle": 0, "curve": "stepped" },
  8519. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8520. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8521. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8522. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8523. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8524. { "time": 1, "angle": 0, "curve": "stepped" },
  8525. { "time": 1.1, "angle": 0, "curve": "stepped" },
  8526. { "time": 1.2, "angle": 0, "curve": "stepped" },
  8527. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  8528. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8529. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8530. { "time": 2, "angle": 0 }
  8531. ],
  8532. "translate": [
  8533. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8534. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8535. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8536. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8537. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8538. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8539. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8540. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  8541. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  8542. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  8543. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8544. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8545. { "time": 2, "x": 0, "y": 0 }
  8546. ],
  8547. "scale": [
  8548. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8549. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8550. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8551. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8552. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8553. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8554. { "time": 1, "x": 1, "y": 1 },
  8555. { "time": 1.1, "x": 0.624, "y": 1, "curve": "stepped" },
  8556. { "time": 1.2, "x": 0.624, "y": 1 },
  8557. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  8558. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8559. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8560. { "time": 2, "x": 1, "y": 1 }
  8561. ]
  8562. },
  8563. "bone69": {
  8564. "rotate": [
  8565. { "time": 0, "angle": 0, "curve": "stepped" },
  8566. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8567. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8568. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8569. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8570. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8571. { "time": 1, "angle": 0, "curve": "stepped" },
  8572. { "time": 1.1, "angle": 0, "curve": "stepped" },
  8573. { "time": 1.2, "angle": 0, "curve": "stepped" },
  8574. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  8575. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8576. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8577. { "time": 2, "angle": 0 }
  8578. ],
  8579. "translate": [
  8580. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8581. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8582. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8583. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8584. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8585. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8586. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8587. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  8588. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  8589. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  8590. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8591. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8592. { "time": 2, "x": 0, "y": 0 }
  8593. ],
  8594. "scale": [
  8595. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8596. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8597. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8598. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8599. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8600. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8601. { "time": 1, "x": 1, "y": 1 },
  8602. { "time": 1.1, "x": 0.605, "y": 1, "curve": "stepped" },
  8603. { "time": 1.2, "x": 0.605, "y": 1 },
  8604. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  8605. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8606. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8607. { "time": 2, "x": 1, "y": 1 }
  8608. ]
  8609. },
  8610. "bone70": {
  8611. "rotate": [
  8612. { "time": 0, "angle": 0, "curve": "stepped" },
  8613. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8614. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8615. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8616. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8617. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8618. { "time": 1, "angle": 0, "curve": "stepped" },
  8619. { "time": 1.1, "angle": 0, "curve": "stepped" },
  8620. { "time": 1.2, "angle": 0, "curve": "stepped" },
  8621. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  8622. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8623. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8624. { "time": 2, "angle": 0 }
  8625. ],
  8626. "translate": [
  8627. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8628. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8629. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8630. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8631. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8632. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8633. { "time": 1, "x": 0, "y": 0 },
  8634. { "time": 1.1, "x": -1.67, "y": 0.15, "curve": "stepped" },
  8635. { "time": 1.2, "x": -1.67, "y": 0.15 },
  8636. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  8637. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8638. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8639. { "time": 2, "x": 0, "y": 0 }
  8640. ],
  8641. "scale": [
  8642. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8643. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8644. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8645. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8646. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8647. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8648. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8649. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  8650. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  8651. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  8652. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8653. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8654. { "time": 2, "x": 1, "y": 1 }
  8655. ]
  8656. },
  8657. "bone71": {
  8658. "rotate": [
  8659. { "time": 0, "angle": 0, "curve": "stepped" },
  8660. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8661. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8662. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8663. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8664. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8665. { "time": 1, "angle": 0, "curve": "stepped" },
  8666. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8667. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  8668. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8669. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8670. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8671. { "time": 2, "angle": 0 }
  8672. ],
  8673. "translate": [
  8674. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8675. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8676. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8677. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8678. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8679. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8680. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8681. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8682. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8683. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8684. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8685. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8686. { "time": 2, "x": 0, "y": 0 }
  8687. ],
  8688. "scale": [
  8689. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8690. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8691. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8692. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8693. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8694. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8695. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8696. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8697. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8698. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8699. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8700. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8701. { "time": 2, "x": 1, "y": 1 }
  8702. ]
  8703. },
  8704. "bone31": {
  8705. "rotate": [
  8706. { "time": 0, "angle": 0, "curve": "stepped" },
  8707. { "time": 0.4, "angle": 0, "curve": "stepped" },
  8708. { "time": 1, "angle": 0 }
  8709. ],
  8710. "translate": [
  8711. { "time": 0, "x": -30.32, "y": -51.67 },
  8712. { "time": 0.4, "x": -20.7, "y": -23.46 },
  8713. { "time": 1, "x": 8.25, "y": 19.91 }
  8714. ],
  8715. "scale": [
  8716. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8717. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  8718. { "time": 1, "x": 1, "y": 1 }
  8719. ]
  8720. },
  8721. "bone30": {
  8722. "rotate": [
  8723. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  8724. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8725. { "time": 2, "angle": 0 }
  8726. ],
  8727. "translate": [
  8728. { "time": 0.3667, "x": 0, "y": 0 },
  8729. { "time": 0.8333, "x": 43.41, "y": 43.41 },
  8730. { "time": 2, "x": 102.66, "y": 50.99 }
  8731. ],
  8732. "scale": [
  8733. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  8734. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8735. { "time": 2, "x": 1, "y": 1 }
  8736. ]
  8737. },
  8738. "bone29": {
  8739. "rotate": [
  8740. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8741. { "time": 1.2, "angle": 0, "curve": "stepped" },
  8742. { "time": 1.8333, "angle": 0 }
  8743. ],
  8744. "translate": [
  8745. { "time": 0.6667, "x": 0, "y": 0 },
  8746. { "time": 1.2, "x": -27.56, "y": 18.6 },
  8747. { "time": 1.8333, "x": -83.37, "y": 28.94 }
  8748. ],
  8749. "scale": [
  8750. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8751. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  8752. { "time": 1.8333, "x": 1, "y": 1 }
  8753. ]
  8754. }
  8755. },
  8756. "deform": {
  8757. "default": {
  8758. "maozi": {
  8759. "maozi": [
  8760. { "time": 0 },
  8761. {
  8762. "time": 0.5,
  8763. "vertices": [ -0.57742, 1.97161, -0.35902, 1.82503, -0.32315, 1.64246, 0.26328, 2.51615, 0.51465, 1.23862, -0.28423, 2.40848, -0.43085, 2.19, 0, 0, 0, 0, -0.43085, 2.19, -0.97534, 3.03078, -0.25133, 1.27754, -0.43085, 2.19, -0.21542, 1.095 ]
  8764. },
  8765. { "time": 1 },
  8766. {
  8767. "time": 1.5,
  8768. "vertices": [ -0.57742, 1.97161, -0.35902, 1.82503, -0.32315, 1.64246, 0.26328, 2.51615, 0.51465, 1.23862, -0.28423, 2.40848, -0.43085, 2.19, 0, 0, 0, 0, -0.43085, 2.19, -0.97534, 3.03078, -0.25133, 1.27754, -0.43085, 2.19, -0.21542, 1.095 ]
  8769. },
  8770. { "time": 2 }
  8771. ]
  8772. },
  8773. "shenti2": {
  8774. "shenti2": [
  8775. { "time": 0 },
  8776. {
  8777. "time": 0.5,
  8778. "vertices": [ -6.66911, 5.17283, -6.69684, 5.13675, 0, 0, 0, 0, -0.4684, 5.27022, -0.49674, 5.26763, 0, 0, 0, 0, 0.13171, 3.89496, 0, 0, -0.64743, -1.08263, -0.72034, -0.97281, -3.92979, 1.80586, -0.06847, 0.77098, -0.07254, 0.77061, -0.26852, 0.64975, -0.27177, 0.64834, 0.30072, 1.46236, 0.29288, 1.46398, 0, 0, 0, 0, 0.00935, 2.99056, 0.08611, 3.02078, 0.38839, 2.44296, 0.44711, 2.43815, -0.0091, 6.31497, -0.04314, 6.31486, -0.23595, 2.65553, -0.25011, 2.65425, -0.46608, 1.71948, -0.43984, 1.71941, 3.13274, 3.65574, 3.22181, 3.64454, -4.23589, 3.84501, -4.25647, 3.82207 ]
  8779. },
  8780. { "time": 1 },
  8781. {
  8782. "time": 1.5,
  8783. "vertices": [ -6.66911, 5.17283, -6.69684, 5.13675, 0, 0, 0, 0, -0.4684, 5.27022, -0.49674, 5.26763, 0, 0, 0, 0, 0.13171, 3.89496, 0, 0, -0.64743, -1.08263, -0.72034, -0.97281, -3.92979, 1.80586, -0.06847, 0.77098, -0.07254, 0.77061, -0.26852, 0.64975, -0.27177, 0.64834, 0.30072, 1.46236, 0.29288, 1.46398, 0, 0, 0, 0, 0.00935, 2.99056, 0.08611, 3.02078, 0.38839, 2.44296, 0.44711, 2.43815, -0.0091, 6.31497, -0.04314, 6.31486, -0.23595, 2.65553, -0.25011, 2.65425, -0.46608, 1.71948, -0.43984, 1.71941, 3.13274, 3.65574, 3.22181, 3.64454, -4.23589, 3.84501, -4.25647, 3.82207 ]
  8784. },
  8785. { "time": 2 }
  8786. ]
  8787. },
  8788. "toufa6": {
  8789. "toufa6": [
  8790. { "time": 0 },
  8791. {
  8792. "time": 0.5,
  8793. "vertices": [ 2.43313, 5.58249, 8.09743, 12.73082, 0, 0, -0.80392, -3.67008, -0.69064, 3.90723, -2.45271, 7.56309 ]
  8794. },
  8795. { "time": 1 },
  8796. {
  8797. "time": 1.5,
  8798. "vertices": [ 2.43313, 5.58249, 8.09743, 12.73082, 0, 0, -0.80392, -3.67008, -0.69064, 3.90723, -2.45271, 7.56309 ]
  8799. },
  8800. { "time": 2 }
  8801. ]
  8802. }
  8803. }
  8804. },
  8805. "drawOrder": [
  8806. {
  8807. "time": 0,
  8808. "offsets": [
  8809. { "slot": "maikefeng", "offset": 21 }
  8810. ]
  8811. }
  8812. ]
  8813. }
  8814. }
  8815. }