42105.json 267 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625
  1. {
  2. "skeleton": { "hash": "fUby2r0mxbQRibWk1Xdp5WBj9jo", "spine": "3.6.53", "width": 139.29, "height": 198, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "length": 17.7, "rotation": 87.68, "x": 3.9, "y": 63.83 },
  6. { "name": "bone2", "parent": "bone", "length": 20.1, "rotation": -0.4, "x": 17.7 },
  7. { "name": "bone3", "parent": "bone2", "length": 51.22, "rotation": 3.59, "x": 25.29, "y": 1.49 },
  8. { "name": "bone4", "parent": "bone3", "length": 7.08, "rotation": 118.19, "x": 66.5, "y": 3.04 },
  9. { "name": "bone5", "parent": "bone4", "length": 6.64, "rotation": 29.73, "x": 7.08 },
  10. { "name": "bone6", "parent": "bone5", "length": 10.36, "rotation": 42.71, "x": 6.64 },
  11. { "name": "bone7", "parent": "bone3", "length": 12.39, "rotation": 165.48, "x": 67.44, "y": -14 },
  12. { "name": "bone8", "parent": "bone7", "length": 12.69, "rotation": 29.38, "x": 12.39 },
  13. { "name": "bone9", "parent": "bone8", "length": 9.86, "rotation": 27.15, "x": 12.9, "y": 0.12 },
  14. { "name": "bone10", "parent": "bone9", "length": 12.65, "rotation": 40.09, "x": 9.98, "y": 0.13 },
  15. { "name": "bone11", "parent": "bone3", "length": 15.99, "rotation": 129.33, "x": 73.71, "y": 13.6 },
  16. { "name": "bone12", "parent": "bone11", "length": 10.18, "rotation": 12.35, "x": 15.88, "y": -0.13 },
  17. { "name": "bone13", "parent": "bone12", "length": 9.52, "rotation": 20.65, "x": 10.18 },
  18. { "name": "bone14", "parent": "bone13", "length": 14.76, "rotation": 8.76, "x": 9.52 },
  19. { "name": "bone15", "parent": "bone14", "length": 13.33, "rotation": 14.7, "x": 14.76 },
  20. { "name": "bone16", "parent": "bone3", "length": 9.65, "rotation": 100.44, "x": 75.55, "y": 21.31 },
  21. { "name": "bone17", "parent": "bone16", "length": 8.27, "rotation": -32.01, "x": 9.65 },
  22. { "name": "bone18", "parent": "bone3", "length": 9.87, "rotation": 35.48, "x": -2.66, "y": 19.34 },
  23. { "name": "bone19", "parent": "bone3", "length": 12.09, "rotation": 10.58, "x": -7.86, "y": -26.93 },
  24. { "name": "bone20", "parent": "bone3", "length": 6.17, "rotation": 2.4, "x": 34.11, "y": 4.91 },
  25. { "name": "bone21", "parent": "bone3", "length": 4.84, "rotation": -0.87, "x": 19.6, "y": 6.01 },
  26. { "name": "bone22", "parent": "bone3", "length": 10.47, "rotation": -0.87, "x": 17.83, "y": 16.51 },
  27. { "name": "bone23", "parent": "bone3", "length": 11.97, "rotation": -1.29, "x": 16.43, "y": -11.81 },
  28. { "name": "bone24", "parent": "bone2", "length": 17.21, "rotation": 151.4, "x": 15.52, "y": 11.62 },
  29. { "name": "bone25", "parent": "bone24", "length": 14.8, "rotation": 8.45, "x": 17.21 },
  30. { "name": "bone26", "parent": "bone25", "length": 13.74, "rotation": 3.88, "x": 14.8 },
  31. { "name": "bone27", "parent": "bone2", "length": 14.49, "rotation": -152.95, "x": 17.11, "y": -16.03 },
  32. { "name": "bone28", "parent": "bone27", "length": 13.8, "rotation": 2.48, "x": 14.49 },
  33. { "name": "bone29", "parent": "bone28", "length": 14.38, "rotation": 2.25, "x": 13.8 },
  34. { "name": "bone30", "parent": "bone", "length": 11.71, "rotation": 11.68, "x": -6.86, "y": -19.48 },
  35. { "name": "bone31", "parent": "bone", "length": 10.67, "rotation": 1.64, "x": -11.81, "y": -0.87 },
  36. { "name": "bone32", "parent": "bone", "length": 20.73, "rotation": 179.16, "x": -10.6, "y": 7.06 },
  37. { "name": "bone33", "parent": "bone32", "length": 18.3, "rotation": -4.01, "x": 20.73 },
  38. { "name": "bone34", "parent": "bone33", "length": 16.79, "rotation": -72.37, "x": 24.37, "y": -0.39 },
  39. { "name": "bone35", "parent": "bone", "length": 21.95, "rotation": -169.36, "x": -8.48, "y": -13.96 },
  40. { "name": "bone36", "parent": "bone35", "length": 16.79, "rotation": -0.49, "x": 23.67, "y": 0.39 },
  41. { "name": "bone37", "parent": "bone36", "length": 18.28, "rotation": -86.2, "x": 22.4, "y": -0.26 },
  42. { "name": "bone38", "parent": "bone2", "length": 16.51, "rotation": 174.79, "x": 22.27, "y": 8.02 },
  43. { "name": "bone39", "parent": "bone38", "length": 9.59, "rotation": -4.16, "x": 16.51 },
  44. { "name": "bone40", "parent": "bone39", "length": 10.51, "rotation": 1.07, "x": 9.59 },
  45. { "name": "bone41", "parent": "bone40", "length": 8.47, "rotation": -7.41, "x": 10.64, "y": 0.03 },
  46. { "name": "bone42", "parent": "bone2", "length": 13.14, "rotation": -175.52, "x": 22.39, "y": -8.61 },
  47. { "name": "bone43", "parent": "bone42", "length": 10.75, "rotation": 2.54, "x": 14.21, "y": 0.1 },
  48. { "name": "bone44", "parent": "bone43", "length": 10.95, "rotation": 3.44, "x": 10.89, "y": 0.12 },
  49. { "name": "bone45", "parent": "bone44", "length": 8.94, "rotation": 5.26, "x": 10.95 },
  50. { "name": "bone46", "parent": "bone3", "length": 24.95, "rotation": 81.11, "x": 7.94, "y": 5.59 },
  51. { "name": "bone47", "parent": "bone3", "rotation": 81.11, "x": 10.51, "y": 18.94, "scaleX": 0.5, "scaleY": 0.5 },
  52. { "name": "bone49", "parent": "bone", "length": 53.9, "rotation": 0.98, "x": -6.32, "y": 42.32 }
  53. ],
  54. "slots": [
  55. { "name": "zuoshou", "bone": "bone24", "attachment": "zuoshou" },
  56. { "name": "zuojiao", "bone": "bone32", "attachment": "zuojiao" },
  57. { "name": "youjiao", "bone": "bone35", "attachment": "youjiao" },
  58. { "name": "kuzi", "bone": "bone31", "attachment": "kuzi" },
  59. { "name": "shenti", "bone": "bone", "attachment": "shenti" },
  60. { "name": "yifu2", "bone": "bone38", "attachment": "yifu2" },
  61. { "name": "yifu1", "bone": "bone42", "attachment": "yifu1" },
  62. { "name": "youxiji", "bone": "bone30", "attachment": "youxiji" },
  63. { "name": "erji1", "bone": "bone18", "attachment": "erji1" },
  64. { "name": "toufa7", "bone": "bone3", "attachment": "toufa7" },
  65. { "name": "toufa6", "bone": "bone3", "attachment": "toufa6" },
  66. { "name": "mazi01", "bone": "bone", "attachment": "mazi01" },
  67. { "name": "lian", "bone": "bone3", "attachment": "lian" },
  68. { "name": "youyan", "bone": "bone23", "attachment": "youyan" },
  69. { "name": "zuoyan", "bone": "bone22", "attachment": "zuoyan" },
  70. { "name": "biyan", "bone": "bone21" },
  71. { "name": "youshou", "bone": "bone27", "attachment": "youshou" },
  72. { "name": "meimao1", "bone": "bone20", "attachment": "meimao1" },
  73. { "name": "toufa5", "bone": "bone16", "attachment": "toufa5" },
  74. { "name": "toufa4", "bone": "bone3", "attachment": "toufa4" },
  75. { "name": "mazi02", "bone": "bone3", "attachment": "mazi02" },
  76. { "name": "toufa3", "bone": "bone11", "attachment": "toufa3" },
  77. { "name": "toufa2", "bone": "bone4", "attachment": "toufa2" },
  78. { "name": "toufa1", "bone": "bone7", "attachment": "toufa1" },
  79. { "name": "erji2", "bone": "bone19", "attachment": "erji2" },
  80. { "name": "paopao", "bone": "bone46", "attachment": "paopao" },
  81. { "name": "20wake", "bone": "bone47", "attachment": "20wake" },
  82. { "name": "guaishou", "bone": "bone49", "attachment": "guaishou" },
  83. { "name": "huangse", "bone": "bone49", "attachment": "huangse" },
  84. { "name": "huangse 2", "bone": "bone49", "attachment": "huangse 2" },
  85. { "name": "huangse 3", "bone": "bone49", "attachment": "huangse 3" },
  86. { "name": "pinmu", "bone": "bone49", "attachment": "pinmu" }
  87. ],
  88. "skins": {
  89. "default": {
  90. "20wake": {
  91. "20wake": { "x": -0.03, "y": 0.1, "rotation": -171.98, "width": 104, "height": 112 }
  92. },
  93. "biyan": {
  94. "biyan": { "x": 1.69, "y": -3.28, "rotation": -90, "width": 49, "height": 11 }
  95. },
  96. "erji1": {
  97. "erji1": {
  98. "type": "mesh",
  99. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  100. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  101. "vertices": [ -16.71, -3.56, -0.71, 18.19, 21.84, 1.59, 5.84, -20.16 ],
  102. "hull": 4,
  103. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  104. "width": 27,
  105. "height": 28
  106. }
  107. },
  108. "erji2": {
  109. "erji2": {
  110. "type": "mesh",
  111. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0, 0.16046, 0.6635, 0.20691, 0.37421, 0.48979, 0.17318, 0.49402, 0.59486 ],
  112. "triangles": [ 6, 2, 3, 5, 2, 6, 7, 6, 3, 5, 6, 7, 4, 2, 5, 4, 5, 7, 1, 2, 4, 7, 3, 0, 1, 4, 7, 0, 1, 7 ],
  113. "vertices": [ -13.71, -18.06, -6.56, 17.22, 23.82, 11.07, 16.67, -24.22, 2.51, 9.49, 10.97, 6.07, 15.06, -5.15, 2.22, -2.7 ],
  114. "hull": 4,
  115. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  116. "width": 36,
  117. "height": 31
  118. }
  119. },
  120. "guaishou": {
  121. "guaishou": { "x": 20.86, "y": 19.63, "rotation": -88.66, "width": 20, "height": 27 }
  122. },
  123. "huangse": {
  124. "huangse": { "x": 18.19, "y": -1.97, "rotation": -88.66, "width": 12, "height": 9 }
  125. },
  126. "huangse 2": {
  127. "huangse 2": { "x": 32.45, "y": -9.62, "rotation": -88.66, "width": 13, "height": 10 }
  128. },
  129. "huangse 3": {
  130. "huangse 3": { "x": 42.4, "y": -24.68, "rotation": -88.66, "width": 15, "height": 12 }
  131. },
  132. "kuzi": {
  133. "kuzi": {
  134. "type": "mesh",
  135. "uvs": [ 1, 1, 0.48009, 1, 0.41729, 1, 0, 1, 0, 0, 1, 0 ],
  136. "triangles": [ 2, 3, 4, 4, 1, 2, 5, 1, 4, 1, 5, 0 ],
  137. "vertices": [ -4.12, -27.56, -4.41, -3.13, -4.45, -0.18, -4.68, 19.43, 8.32, 19.59, 8.88, -27.41 ],
  138. "hull": 6,
  139. "edges": [ 6, 8, 8, 10, 0, 10, 4, 6, 0, 2, 2, 4 ],
  140. "width": 47,
  141. "height": 13
  142. }
  143. },
  144. "lian": {
  145. "lian": {
  146. "type": "mesh",
  147. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  148. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  149. "vertices": [ -3.9, -39.42, -2.78, 34.58, 78.21, 33.35, 77.09, -40.64 ],
  150. "hull": 4,
  151. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  152. "width": 74,
  153. "height": 81
  154. }
  155. },
  156. "mazi01": {
  157. "mazi01": {
  158. "type": "mesh",
  159. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  160. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  161. "vertices": [ 26.57, 4.17, 26.09, 16.16, 44.07, 16.89, 44.56, 4.9 ],
  162. "hull": 4,
  163. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  164. "width": 12,
  165. "height": 18
  166. }
  167. },
  168. "mazi02": {
  169. "mazi02": {
  170. "type": "mesh",
  171. "uvs": [ 0.87636, 0.11694, 0.95743, 0.22064, 1, 0.35702, 1, 0.60419, 0.80543, 0.84001, 0.52001, 1, 0.33085, 1, 0.4153, 0.85989, 0.61965, 0.6809, 0.61796, 0.4181, 0.49467, 0.22064, 0.28356, 0.14678, 0, 0.1553, 0, 0, 0.60952, 0 ],
  172. "triangles": [ 11, 13, 14, 12, 13, 11, 10, 11, 14, 0, 10, 14, 9, 0, 1, 9, 1, 2, 9, 10, 0, 9, 2, 3, 8, 9, 3, 4, 8, 3, 5, 7, 8, 5, 8, 4, 6, 7, 5 ],
  173. "vertices": [ 76.46, -48.51, 65.25, -55.63, 50.6, -59.24, 24.16, -58.84, -0.8, -40.95, -6.6, -14.28, -9.24, -2.89, -3.63, -4, 16.47, -24.49, 44.59, -24.77, 65.88, -13.99, 74.07, 4.89, 73.55, 30.42, 90.16, 30.17, 89.33, -24.68 ],
  174. "hull": 15,
  175. "edges": [ 24, 26, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 10, 12, 10, 8, 8, 6, 26, 28, 28, 0, 0, 2, 6, 4, 2, 4 ],
  176. "width": 90,
  177. "height": 107
  178. }
  179. },
  180. "meimao1": {
  181. "meimao1": { "x": 4.11, "y": -1.14, "rotation": -93.27, "width": 46, "height": 9 }
  182. },
  183. "paopao": {
  184. "paopao": {
  185. "type": "mesh",
  186. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  187. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  188. "vertices": [ -4.89, 10.34, 29.77, 15.22, 33.95, -14.48, -0.7, -19.36 ],
  189. "hull": 4,
  190. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  191. "width": 35,
  192. "height": 30
  193. }
  194. },
  195. "pinmu": {
  196. "pinmu": {
  197. "type": "mesh",
  198. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  199. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  200. "vertices": [ -6.39, -45.31, -8.34, 37.67, 59.64, 39.26, 61.59, -43.72 ],
  201. "hull": 4,
  202. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  203. "width": 83,
  204. "height": 68
  205. }
  206. },
  207. "shenti": {
  208. "shenti": {
  209. "type": "mesh",
  210. "uvs": [ 0.47541, 0.06606, 1, 0.07156, 1, 0.5709, 1, 0.62781, 1, 0.70675, 1, 1, 0.44108, 1, 0, 1, 0, 0.70125, 0, 0.62231, 0, 0.56356, 0, 0.08625, 0.45538, 0.62781, 0.45755, 0.56689, 0.45263, 0.69937 ],
  211. "triangles": [ 6, 14, 5, 14, 4, 5, 14, 6, 8, 6, 7, 8, 14, 12, 4, 12, 3, 4, 8, 9, 14, 14, 9, 12, 12, 13, 3, 12, 9, 10, 13, 12, 10, 13, 2, 3, 13, 0, 2, 0, 1, 2, 0, 13, 11, 13, 10, 11 ],
  212. "vertices": [ 1, 2, 36.6, 1.11, 1, 1, 2, 37.3, -21.44, 1, 2, 2, 3.88, -23.03, 0.55232, 1, 21.42, -23.06, 0.44768, 2, 2, 0.07, -23.21, 0.39959, 1, 17.61, -23.21, 0.60041, 2, 2, -5.21, -23.46, 0.21205, 1, 12.33, -23.42, 0.78795, 2, 2, -24.83, -24.4, 4.0E-5, 1, -7.31, -24.22, 0.99996, 1, 1, -8.28, -0.21, 1, 1, 1, -9.05, 18.74, 1, 2, 2, -6.89, 19.51, 0.25336, 1, 10.95, 19.55, 0.74664, 2, 2, -1.6, 19.76, 0.45196, 1, 16.24, 19.77, 0.54804, 2, 2, 2.33, 19.95, 0.61045, 1, 20.17, 19.93, 0.38955, 1, 2, 34.27, 21.47, 1, 1, 1, 16.66, 0.19, 1, 2, 2, 3.04, 0.28, 0.99429, 1, 20.74, 0.26, 0.00571, 2, 2, -5.83, 0.07, 2.8E-4, 1, 11.87, 0.11, 0.99972 ],
  213. "hull": 12,
  214. "edges": [ 22, 0, 0, 2, 10, 12, 12, 14, 18, 24, 24, 6, 18, 20, 20, 22, 0, 26, 26, 24, 20, 26, 2, 4, 4, 6, 26, 4, 14, 16, 16, 18, 12, 28, 28, 24, 16, 28, 6, 8, 8, 10, 28, 8 ],
  215. "width": 43,
  216. "height": 67
  217. }
  218. },
  219. "toufa1": {
  220. "toufa1": {
  221. "type": "mesh",
  222. "uvs": [ 0.57911, 0.21123, 0.67989, 0.37112, 0.70389, 0.51245, 0.73035, 0.60842, 0.77289, 0.71779, 0.86518, 0.761, 1, 0.80312, 1, 0.90179, 1, 1, 0.61389, 1, 0.37689, 0.95779, 0.23216, 0.85032, 0.12189, 0.76845, 0.06144, 0.6362, 0, 0.50179, 0, 0, 0.39489, 0, 0.26889, 0.38179, 0.37689, 0.66179, 0.54489, 0.85379, 0.3293, 0.53671, 0.78647, 0.87927, 0.46291, 0.76101 ],
  223. "triangles": [ 9, 21, 8, 21, 7, 8, 9, 19, 21, 21, 5, 7, 5, 6, 7, 19, 4, 21, 21, 4, 5, 10, 19, 9, 10, 22, 19, 10, 11, 22, 4, 19, 3, 11, 18, 22, 19, 22, 3, 3, 22, 2, 22, 18, 2, 11, 12, 18, 12, 20, 18, 12, 13, 20, 18, 20, 2, 20, 13, 17, 13, 14, 17, 20, 1, 2, 1, 17, 0, 1, 20, 17, 14, 15, 17, 17, 16, 0, 17, 15, 16 ],
  224. "vertices": [ 4, 7, 0.34, 8.99, 0.84711, 8, -6.09, 13.74, 0.08161, 9, -10.68, 20.79, 0.06287, 10, -2.49, 29.11, 0.00841, 4, 7, 6.38, 14.61, 0.45335, 8, 1.93, 15.67, 0.234, 9, -2.66, 18.85, 0.2518, 10, 2.39, 22.46, 0.06085, 4, 7, 12.34, 17.04, 0.17499, 8, 8.31, 14.87, 0.19395, 9, 2.65, 15.22, 0.44416, 10, 4.12, 16.26, 0.1869, 4, 7, 16.28, 19.09, 0.05916, 8, 12.76, 14.72, 0.08013, 9, 6.54, 13.06, 0.47311, 10, 5.7, 12.11, 0.3876, 4, 7, 20.67, 21.9, 0.00775, 8, 17.96, 15.02, 0.00572, 9, 11.3, 10.96, 0.21019, 10, 7.99, 7.43, 0.77634, 3, 7, 21.68, 25.95, 3.0E-4, 9, 15.24, 12.34, 0.03399, 10, 11.89, 5.95, 0.96571, 2, 9, 20.3, 15, 2.0E-5, 10, 17.48, 4.73, 0.99998, 1, 10, 18.02, 0.32, 1, 1, 10, 18.56, -4.06, 1, 2, 9, 16.28, -2.35, 0.02099, 10, 3.23, -5.95, 0.97901, 2, 9, 8.44, -8, 0.98201, 10, -6.41, -5.23, 0.01799, 2, 8, 17.83, -7.41, 0.18646, 9, 0.95, -8.95, 0.81354, 2, 8, 13.09, -10.66, 0.62817, 9, -4.75, -9.68, 0.37183, 3, 7, 23.81, -6.62, 0.00242, 8, 6.71, -11.37, 0.93285, 9, -10.75, -7.4, 0.06473, 3, 7, 18.52, -10.43, 0.13629, 8, 0.22, -12.1, 0.86317, 9, -16.86, -5.08, 5.4E-4, 1, 7, -3.43, -15.76, 1, 1, 7, -7.15, -0.41, 1, 1, 7, 10.73, -1.26, 1, 4, 7, 21.95, 5.92, 3.5E-4, 8, 11.24, 0.46, 0.90019, 9, -1.32, 1.06, 0.09757, 10, -8.04, 7.99, 0.00189, 3, 7, 28.76, 14.48, 0, 9, 9.58, 0.11, 0.75067, 10, -0.31, 0.24, 0.24933, 4, 7, 16.93, 2.74, 0.0011, 8, 5.3, 0.16, 0.99622, 9, -6.74, 3.5, 0.00243, 10, -10.62, 13.35, 2.6E-4, 3, 7, 27.6, 24.15, 0, 9, 17, 6.41, 0.00144, 10, 9.42, 0.29, 0.99856, 3, 7, 25.48, 10.31, 2.3E-4, 9, 4.29, 0.55, 0.98889, 10, -4.08, 3.98, 0.01088 ],
  225. "hull": 17,
  226. "edges": [ 30, 32, 32, 34, 16, 14, 2, 4, 14, 12, 28, 30, 16, 18, 20, 18, 28, 34, 2, 0, 0, 32, 34, 0, 24, 26, 26, 28, 34, 40, 40, 36, 26, 40, 40, 2, 24, 36, 36, 4, 20, 38, 38, 8, 14, 42, 42, 38, 18, 42, 8, 10, 10, 12, 42, 10, 20, 22, 22, 24, 36, 44, 44, 38, 22, 44, 4, 6, 6, 8, 44, 6 ],
  227. "width": 40,
  228. "height": 45
  229. }
  230. },
  231. "toufa2": {
  232. "toufa2": {
  233. "type": "mesh",
  234. "uvs": [ 1, 0.5416, 0.82974, 0.54687, 0.65551, 0.53921, 0.54469, 0.59742, 0.47776, 0.63257, 0.47776, 0.702, 0.47776, 0.76424, 0.47776, 0.81212, 0.52468, 0.8989, 0.57933, 1, 0.4693, 1, 0, 1, 0, 0.82409, 0, 0.65412, 0, 0.43148, 0.06758, 0.33613, 0.16459, 0.19927, 0.34234, 0.08676, 0.51822, 0.04092, 0.67526, 0, 1, 0, 0.7599, 0.16576, 0.48058, 0.24236, 0.31976, 0.31179, 0.17023, 0.55597, 0.24923, 0.82169, 0.62423, 0.20097, 0.21976, 0.43567, 0.20655, 0.67814, 0.37798, 0.92601 ],
  235. "triangles": [ 4, 24, 27, 13, 14, 24, 5, 28, 24, 13, 24, 28, 4, 5, 24, 6, 28, 5, 6, 25, 28, 7, 25, 6, 12, 13, 28, 12, 28, 25, 29, 25, 7, 29, 7, 8, 11, 12, 25, 11, 25, 29, 10, 29, 8, 11, 29, 10, 10, 8, 9, 27, 15, 16, 27, 14, 15, 24, 14, 27, 21, 19, 20, 26, 18, 19, 26, 19, 21, 22, 17, 18, 22, 18, 26, 23, 16, 17, 23, 17, 22, 23, 27, 16, 1, 2, 26, 22, 26, 2, 21, 20, 0, 21, 1, 26, 0, 1, 21, 3, 22, 2, 23, 22, 3, 4, 27, 23, 23, 3, 4 ],
  236. "vertices": [ 2, 4, -6.66, 15.85, 0.99321, 6, 6.09, 22.39, 0.00679, 3, 4, -2.41, 13.68, 0.96449, 5, -1.46, 16.59, 0.00696, 6, 5.31, 17.68, 0.02855, 3, 4, 1.73, 11.09, 0.79344, 5, 0.85, 12.29, 0.06085, 6, 4.09, 12.95, 0.14571, 3, 4, 5.38, 11.27, 0.47733, 5, 4.11, 10.63, 0.12712, 6, 5.35, 9.53, 0.39555, 3, 4, 7.58, 11.37, 0.23855, 5, 6.07, 9.63, 0.10761, 6, 6.11, 7.46, 0.65384, 3, 4, 8.69, 13.37, 0.08522, 5, 8.03, 10.82, 0.04168, 6, 8.36, 7, 0.87309, 3, 4, 9.69, 15.17, 0.03196, 5, 9.79, 11.88, 0.01332, 6, 10.37, 6.59, 0.95472, 3, 4, 10.46, 16.55, 0.01148, 5, 11.14, 12.7, 0.00344, 6, 11.92, 6.28, 0.98508, 2, 4, 10.7, 19.69, 4.2E-4, 6, 14.99, 7, 0.99958, 1, 6, 18.56, 7.83, 1, 1, 6, 17.95, 4.81, 1, 1, 6, 15.33, -8.07, 1, 1, 6, 9.64, -6.91, 1, 2, 5, 13.61, -1.44, 0.00253, 6, 4.14, -5.79, 0.99747, 2, 5, 7.33, -5.25, 0.71982, 6, -3.05, -4.33, 0.28018, 3, 4, 12.87, -2.76, 0.02367, 5, 3.66, -5.26, 0.96249, 6, -5.76, -1.85, 0.01383, 2, 4, 8.3, -5.39, 0.56145, 5, -1.61, -5.28, 0.43855, 2, 4, 2.15, -6.22, 0.99824, 5, -7.37, -2.95, 0.00176, 1, 4, -2.89, -5.15, 1, 1, 4, -7.39, -4.19, 1, 1, 4, -15.34, 0.22, 1, 2, 4, -6.81, 1.74, 0.99985, 6, -7.41, 18.27, 1.5E-4, 3, 4, 1.26, 0.15, 0.99949, 5, -4.98, 3.02, 1.7E-4, 6, -6.49, 10.1, 3.3E-4, 1, 4, 6.31, -0.03, 1, 1, 6, 1.92, -0.47, 1, 1, 6, 10.95, -0.05, 1, 2, 4, -2.92, 0.91, 0.99895, 6, -7.03, 14.32, 0.00105, 3, 4, 10.74, 2.18, 8.1E-4, 5, 4.26, 0.08, 0.99736, 6, -1.69, 1.68, 0.00183, 1, 6, 6.07, -0.28, 1, 2, 4, 14.72, 18.48, 4.0E-5, 6, 15.05, 2.79, 0.99996 ],
  237. "hull": 21,
  238. "edges": [ 44, 46, 20, 22, 38, 40, 34, 32, 0, 40, 18, 20, 38, 42, 42, 0, 34, 36, 36, 38, 42, 52, 52, 44, 36, 52, 0, 2, 2, 4, 52, 2, 34, 44, 44, 4, 32, 46, 4, 6, 6, 8, 46, 6, 28, 30, 30, 32, 46, 54, 54, 48, 30, 54, 54, 8, 28, 48, 8, 10, 48, 10, 26, 28, 48, 56, 56, 50, 26, 56, 10, 12, 12, 14, 56, 12, 22, 24, 24, 26, 24, 50, 50, 14, 20, 58, 58, 50, 22, 58, 14, 16, 16, 18, 58, 16 ],
  239. "width": 28,
  240. "height": 33
  241. }
  242. },
  243. "toufa3": {
  244. "toufa3": {
  245. "type": "mesh",
  246. "uvs": [ 1, 0.32546, 0.90228, 0.35527, 0.80461, 0.38506, 0.70053, 0.4168, 0.61653, 0.50044, 0.52828, 0.60307, 0.50992, 0.63782, 0.48283, 0.68912, 0.4613, 0.73596, 0.43924, 0.78397, 0.44097, 0.83845, 0.44256, 0.88832, 0.44818, 0.94966, 0.45279, 0.99999, 0.26118, 1, 0.02129, 0.99999, 0.01676, 0.9341, 0.01161, 0.85919, 0.00879, 0.79819, 0.00581, 0.73382, 0.00309, 0.67592, 1.0E-5, 0.61023, 1.0E-5, 0.54485, 0, 0.47949, 0.13344, 0.29501, 0.26505, 0.14815, 0.44505, 0, 0.75666, 0, 1, 0, 0.46247, 0.23232, 0.34247, 0.34516, 0.26892, 0.51173, 0.23408, 0.75352, 0.60293, 0.11551, 0.24763, 0.63539, 0.24917, 0.87333, 0.24271, 0.82206, 0.25662, 0.95188, 0.24044, 0.69806, 0.25969, 0.56535 ],
  247. "triangles": [ 9, 32, 38, 18, 19, 32, 36, 32, 9, 18, 32, 36, 36, 9, 10, 17, 18, 36, 35, 36, 10, 17, 36, 35, 35, 10, 11, 16, 17, 35, 37, 35, 11, 37, 11, 12, 16, 35, 37, 15, 16, 37, 14, 37, 12, 14, 12, 13, 15, 37, 14, 22, 23, 31, 39, 22, 31, 6, 39, 31, 21, 22, 39, 34, 21, 39, 5, 6, 31, 7, 34, 39, 20, 21, 34, 6, 7, 39, 38, 20, 34, 8, 38, 34, 19, 20, 38, 7, 8, 34, 32, 19, 38, 8, 9, 38, 23, 24, 31, 30, 25, 29, 24, 25, 30, 31, 24, 30, 5, 31, 30, 4, 5, 30, 33, 26, 27, 29, 26, 33, 25, 26, 29, 1, 27, 28, 27, 2, 33, 28, 0, 1, 1, 2, 27, 3, 29, 33, 2, 3, 33, 4, 29, 3, 30, 29, 4 ],
  248. "vertices": [ 2, 11, -9.04, 26.76, 0.99933, 13, -15.78, 39.72, 6.7E-4, 3, 11, -3.13, 24.38, 0.99444, 13, -12.12, 34.5, 0.00517, 14, -16.13, 37.39, 3.9E-4, 3, 11, 2.79, 21.99, 0.97194, 13, -8.46, 29.28, 0.02231, 14, -13.31, 31.68, 0.00575, 4, 11, 9.09, 19.45, 0.88865, 12, -2.45, 20.58, 3.0E-5, 13, -4.56, 23.72, 0.07677, 14, -10.3, 25.58, 0.03455, 5, 11, 16.68, 20.37, 0.63689, 12, 5.17, 19.86, 0.01061, 13, 2.31, 20.35, 0.20197, 14, -4.03, 21.21, 0.14795, 15, -12.79, 25.28, 0.00259, 5, 11, 25.3, 22.09, 0.25725, 12, 13.96, 19.69, 0.00526, 13, 10.48, 17.1, 0.23302, 14, 3.55, 16.75, 0.44397, 15, -6.6, 19.05, 0.06051, 5, 11, 27.67, 23.14, 0.17084, 12, 16.5, 20.21, 0.00127, 13, 13.03, 16.68, 0.18107, 14, 6.01, 15.95, 0.53164, 15, -4.42, 17.65, 0.11518, 4, 11, 31.17, 24.68, 0.08537, 13, 16.81, 16.07, 0.09823, 14, 9.65, 14.77, 0.57184, 15, -1.2, 15.58, 0.24456, 4, 11, 34.22, 26.21, 0.04086, 13, 20.2, 15.7, 0.04343, 14, 12.95, 13.89, 0.49126, 15, 1.76, 13.89, 0.42445, 4, 11, 37.34, 27.79, 0.01473, 13, 23.68, 15.32, 0.01221, 14, 16.32, 12.98, 0.30535, 15, 4.8, 12.16, 0.66771, 4, 11, 39.61, 30.64, 0.00346, 13, 27.14, 16.47, 0.00147, 14, 19.92, 13.6, 0.12632, 15, 8.44, 11.84, 0.86875, 3, 11, 41.69, 33.26, 5.3E-4, 14, 23.22, 14.16, 0.0433, 15, 11.77, 11.55, 0.95617, 2, 14, 27.24, 15.08, 0.00524, 15, 15.89, 11.42, 0.99476, 1, 15, 19.27, 11.32, 1, 1, 15, 17.89, -0.48, 1, 2, 14, 34.28, -10.65, 0.00109, 15, 16.17, -15.26, 0.99891, 2, 14, 29.94, -11.55, 0.02492, 15, 11.75, -15.02, 0.97508, 2, 14, 25.02, -12.57, 0.13147, 15, 6.73, -14.76, 0.86853, 3, 13, 32.3, -9.96, 6.1E-4, 14, 21, -13.31, 0.30951, 15, 2.65, -14.46, 0.68988, 3, 13, 28.23, -11.38, 0.01076, 14, 16.75, -14.1, 0.56232, 15, -1.66, -14.14, 0.42692, 3, 13, 24.56, -12.66, 0.04267, 14, 12.93, -14.81, 0.7493, 15, -5.53, -13.86, 0.20803, 3, 13, 20.4, -14.12, 0.12334, 14, 8.6, -15.61, 0.8138, 15, -9.92, -13.54, 0.06286, 4, 12, 30.78, -8.68, 1.2E-4, 13, 16.21, -15.38, 0.25293, 14, 4.26, -16.22, 0.73706, 15, -14.27, -13.03, 0.00989, 4, 12, 27.3, -11.34, 0.00669, 13, 12.02, -16.65, 0.38485, 14, -0.07, -16.84, 0.60841, 15, -18.62, -12.52, 5.0E-5, 3, 12, 12.46, -12.29, 0.47822, 13, -2.21, -12.3, 0.47488, 14, -13.47, -10.37, 0.0469, 3, 11, 18.09, -11.72, 0.09544, 12, -0.32, -11.8, 0.89434, 13, -13.99, -7.33, 0.01022, 2, 11, 3.16, -12.1, 0.84691, 12, -14.98, -8.97, 0.15309, 1, 11, -11.6, 0.37, 1, 1, 11, -23.12, 10.11, 1, 3, 11, 12.38, 0.49, 0.99912, 13, -12.12, 6.01, 7.3E-4, 14, -20.48, 9.24, 1.5E-4, 4, 11, 22.94, 1.46, 9.0E-5, 12, 7.24, 0.04, 0.9994, 13, -2.74, 1.08, 5.1E-4, 14, -11.95, 2.93, 1.0E-5, 2, 13, 9.27, -0.06, 0.64433, 14, -0.26, -0.02, 0.35567, 1, 15, 1.3, -0.24, 1, 2, 11, 0.68, 0.13, 0.99999, 13, -22.13, 12.09, 1.0E-5, 1, 14, 8.12, -0.17, 1, 1, 15, 9.38, -0.24, 1, 1, 15, 5.92, -0.24, 1, 1, 15, 14.66, -0.39, 1, 1, 14, 12.34, -0.03, 1, 1, 14, 3.37, -0.09, 1 ],
  249. "hull": 29,
  250. "edges": [ 54, 56, 58, 60, 60, 62, 28, 30, 52, 54, 52, 50, 50, 48, 48, 46, 0, 56, 26, 28, 0, 2, 54, 2, 54, 66, 66, 58, 52, 66, 2, 4, 4, 6, 66, 4, 50, 58, 58, 6, 48, 60, 6, 8, 8, 10, 60, 8, 46, 62, 62, 10, 42, 68, 68, 14, 38, 64, 64, 18, 34, 70, 70, 22, 34, 36, 36, 38, 64, 72, 72, 70, 36, 72, 18, 20, 20, 22, 72, 20, 30, 32, 32, 34, 28, 74, 74, 70, 32, 74, 22, 24, 24, 26, 74, 24, 38, 40, 40, 42, 64, 76, 76, 68, 40, 76, 14, 16, 16, 18, 76, 16, 42, 44, 44, 46, 62, 78, 78, 68, 44, 78, 10, 12, 12, 14, 78, 12 ],
  251. "width": 62,
  252. "height": 67
  253. }
  254. },
  255. "toufa4": {
  256. "toufa4": {
  257. "type": "mesh",
  258. "uvs": [ 0.85306, 0.13819, 1, 0.3731, 1, 1, 0.52506, 1, 0.6824, 0.79974, 0.59173, 0.57174, 0.30373, 0.38692, 0, 0.35756, 0, 0, 0.43706, 0 ],
  259. "triangles": [ 6, 7, 8, 9, 6, 8, 0, 6, 9, 5, 0, 1, 5, 6, 0, 4, 5, 1, 4, 1, 2, 3, 4, 2 ],
  260. "vertices": [ 72.98, -37.21, 52.18, -45.27, -2.98, -44.43, -2.57, -17.36, 14.92, -26.6, 35.06, -21.73, 51.57, -5.57, 54.42, 11.71, 85.88, 11.23, 85.5, -13.68 ],
  261. "hull": 10,
  262. "edges": [ 14, 16, 14, 12, 12, 10, 10, 8, 4, 6, 8, 6, 16, 18, 18, 0, 4, 2, 0, 2 ],
  263. "width": 57,
  264. "height": 88
  265. }
  266. },
  267. "toufa5": {
  268. "toufa5": {
  269. "type": "mesh",
  270. "uvs": [ 0.62392, 0.08348, 0.42641, 0.10598, 0.46706, 0.27858, 0.36033, 0.28171, 0.23363, 0.28542, 0.1494, 0.28789, 0, 0.29226, 0, 0, 0.11922, 0, 0.19969, 0, 0.3144, 0, 0.39658, 0, 0.62798, 0, 0.31098, 0.11912, 0.13634, 0.13967, 0.21268, 0.13068 ],
  271. "triangles": [ 14, 7, 8, 14, 6, 7, 6, 14, 5, 5, 15, 4, 5, 14, 15, 4, 13, 3, 4, 15, 13, 3, 1, 2, 3, 13, 1, 14, 9, 15, 14, 8, 9, 15, 9, 13, 1, 13, 11, 13, 10, 11, 13, 9, 10, 0, 1, 12, 12, 1, 11 ],
  272. "vertices": [ 1, 16, -23.27, 1.46, 1, 1, 16, -10.1, 0.84, 1, 1, 16, -9.75, 16.26, 1, 2, 16, -2.79, 15.15, 0.99999, 17, -18.57, 6.26, 1.0E-5, 2, 16, 5.48, 13.83, 0.93553, 17, -10.87, 9.52, 0.06447, 2, 16, 10.97, 12.95, 0.70611, 17, -5.74, 11.68, 0.29389, 2, 16, 20.71, 11.4, 0.31662, 17, 3.34, 15.53, 0.68338, 2, 16, 15.67, -13.82, 0.00284, 17, 12.43, -8.53, 0.99716, 2, 16, 7.95, -12.28, 0.24854, 17, 5.07, -11.31, 0.75146, 2, 16, 2.75, -11.24, 0.62125, 17, 0.1, -13.19, 0.37875, 2, 16, -4.68, -9.75, 0.94209, 17, -6.98, -15.86, 0.05791, 2, 16, -10, -8.69, 0.99505, 17, -12.05, -17.78, 0.00495, 1, 16, -24.97, -5.7, 1, 2, 16, -2.4, 0.48, 0.99978, 17, -10.47, -5.98, 2.2E-4, 2, 16, 9.26, -0.01, 0.84271, 17, -0.33, -0.21, 0.15729, 1, 16, 4.16, 0.21, 1 ],
  273. "hull": 13,
  274. "edges": [ 12, 14, 0, 24, 20, 26, 26, 6, 18, 20, 26, 30, 30, 28, 18, 30, 6, 8, 30, 8, 14, 16, 16, 18, 16, 28, 8, 10, 10, 12, 28, 10, 20, 22, 22, 24, 0, 2, 2, 26, 22, 2, 4, 6, 2, 4 ],
  275. "width": 66,
  276. "height": 88
  277. }
  278. },
  279. "toufa6": {
  280. "toufa6": {
  281. "type": "mesh",
  282. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  283. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  284. "vertices": [ 6.87, 11.43, 7.22, 34.42, 38.22, 33.95, 37.87, 10.96 ],
  285. "hull": 4,
  286. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  287. "width": 23,
  288. "height": 31
  289. }
  290. },
  291. "toufa7": {
  292. "toufa7": {
  293. "type": "mesh",
  294. "uvs": [ 1, 0.11016, 0.583, 0.34088, 0.53582, 1, 0, 1, 0, 0, 1, 0 ],
  295. "triangles": [ 1, 4, 5, 0, 1, 5, 3, 4, 1, 2, 3, 1 ],
  296. "vertices": [ 65.65, 7.54, 52.91, 19.82, 16.03, 21.75, 16.26, 37.29, 72.26, 36.44, 71.82, 7.44 ],
  297. "hull": 6,
  298. "edges": [ 6, 8, 8, 10, 4, 6, 4, 2, 0, 10, 2, 0 ],
  299. "width": 29,
  300. "height": 56
  301. }
  302. },
  303. "yifu1": {
  304. "yifu1": {
  305. "type": "mesh",
  306. "uvs": [ 0.83875, 0.37596, 0.8901, 0.49536, 0.93482, 0.59935, 0.97199, 0.67641, 1, 0.7509, 1, 0.90625, 1, 1, 0.43122, 1, 0, 1, 0, 0.91697, 0, 0.80804, 1.0E-5, 0.7109, 0, 0.6134, 0, 0.4884, 0, 0.38304, 0, 0, 0.24789, 0, 0.67705, 0, 0.26039, 0.37947, 0.30289, 0.60483, 0.35622, 0.79375, 0.27319, 0.49375, 0.33556, 0.70052, 0.39661, 0.90483 ],
  307. "triangles": [ 7, 5, 6, 8, 23, 7, 7, 23, 5, 8, 9, 23, 9, 20, 23, 9, 10, 20, 23, 4, 5, 23, 20, 4, 20, 3, 4, 10, 22, 20, 10, 11, 22, 20, 22, 3, 11, 19, 22, 11, 12, 19, 22, 2, 3, 22, 19, 2, 19, 1, 2, 19, 21, 1, 12, 21, 19, 12, 13, 21, 21, 0, 1, 13, 18, 21, 21, 18, 0, 13, 14, 18, 14, 16, 18, 14, 15, 16, 18, 17, 0, 18, 16, 17 ],
  308. "vertices": [ 4, 42, 13.42, 14.25, 0.38991, 43, -0.17, 14.17, 0.23946, 44, -10.2, 14.69, 0.37055, 45, -19.72, 16.57, 8.0E-5, 4, 42, 20.14, 15.28, 0.09317, 43, 6.59, 14.9, 0.15391, 44, -3.41, 15.01, 0.73273, 45, -12.93, 16.26, 0.02019, 4, 42, 25.99, 16.17, 0.01013, 43, 12.48, 15.54, 0.02833, 44, 2.51, 15.29, 0.84383, 45, -7.01, 16, 0.11772, 4, 42, 30.33, 16.93, 2.8E-4, 43, 16.85, 16.1, 0.00164, 44, 6.9, 15.59, 0.72701, 45, -2.61, 15.9, 0.27107, 2, 44, 11.13, 15.7, 0.53349, 45, 1.61, 15.62, 0.46651, 2, 44, 19.75, 14.53, 0.13386, 45, 10.09, 13.66, 0.86614, 2, 44, 24.95, 13.82, 0.05238, 45, 15.2, 12.48, 0.94762, 1, 45, 12.13, -0.82, 1, 2, 44, 21.72, -9.96, 0.00129, 45, 9.81, -10.91, 0.99871, 3, 43, 28.53, -8.17, 0.00306, 44, 17.11, -9.34, 0.05858, 45, 5.28, -9.86, 0.93836, 3, 43, 22.45, -7.71, 0.06217, 44, 11.07, -8.51, 0.41049, 45, -0.67, -8.49, 0.52734, 3, 43, 17.03, -7.3, 0.31411, 44, 5.68, -7.78, 0.60084, 45, -5.97, -7.27, 0.08505, 3, 43, 11.58, -6.9, 0.82797, 44, 0.27, -7.05, 0.1719, 45, -11.29, -6.04, 1.4E-4, 2, 42, 19.09, -6.06, 0.04702, 43, 4.6, -6.37, 0.95298, 2, 42, 13.2, -5.88, 0.64531, 43, -1.28, -5.93, 0.35469, 1, 42, -8.24, -5.22, 1, 1, 42, -8.06, 0.72, 1, 2, 42, -7.75, 11.02, 0.99995, 44, -31.59, 13.68, 5.0E-5, 3, 42, 13.19, 0.37, 0.85068, 43, -1.01, 0.32, 0.14628, 44, -11.87, 0.91, 0.00305, 2, 44, 0.77, 0.22, 1, 45, -10.12, 1.15, 0, 3, 43, 22.29, 0.87, 5.0E-5, 44, 11.42, 0.06, 0.13773, 45, 0.47, 0.02, 0.86222, 2, 43, 5.39, 0.14, 0.99497, 44, -5.49, 0.35, 0.00503, 2, 44, 6.18, 0.28, 0.99903, 45, -4.72, 0.71, 9.7E-4, 1, 45, 6.75, -0.43, 1 ],
  309. "hull": 18,
  310. "edges": [ 30, 32, 32, 34, 32, 36, 12, 14, 14, 16, 28, 30, 28, 36, 0, 34, 36, 0, 26, 28, 36, 42, 42, 38, 26, 42, 0, 2, 42, 2, 24, 26, 24, 38, 2, 4, 22, 24, 38, 44, 44, 40, 22, 44, 4, 6, 6, 8, 44, 6, 20, 22, 20, 40, 40, 8, 16, 18, 18, 20, 14, 46, 46, 40, 18, 46, 8, 10, 10, 12, 46, 10, 38, 4 ],
  311. "width": 24,
  312. "height": 56
  313. }
  314. },
  315. "yifu2": {
  316. "yifu2": {
  317. "type": "mesh",
  318. "uvs": [ 1, 0.31012, 1, 0.37243, 1, 0.43012, 1, 0.49819, 1, 0.57319, 1, 0.66781, 1, 0.78204, 1, 0.87204, 1, 0.93896, 1, 1, 0.21072, 1, 0, 1, 0, 0.88264, 0.0244, 0.8268, 0.05856, 0.74862, 0.10747, 0.63667, 0.14996, 0.53943, 0.17615, 0.4795, 0.20064, 0.42345, 0.22569, 0.3661, 0.25216, 0.30552, 0.38565, 0, 0.83436, 0, 1, 0, 0.68118, 0.3688, 0.56813, 0.55956, 0.45142, 0.76106, 0.7047, 0.31217, 0.64543, 0.42912, 0.60803, 0.49223, 0.51411, 0.65282, 0.30755, 0.90388, 0.37213, 0.83977 ],
  319. "triangles": [ 10, 31, 9, 31, 8, 9, 31, 10, 12, 10, 11, 12, 31, 32, 8, 32, 7, 8, 12, 13, 31, 31, 13, 32, 32, 26, 7, 26, 6, 7, 13, 14, 32, 32, 14, 26, 26, 30, 6, 30, 5, 6, 14, 15, 26, 26, 15, 30, 30, 25, 5, 25, 4, 5, 15, 16, 30, 30, 16, 25, 25, 29, 4, 29, 3, 4, 16, 17, 25, 25, 17, 29, 29, 28, 3, 28, 2, 3, 17, 18, 29, 29, 18, 28, 28, 24, 2, 18, 19, 28, 28, 19, 24, 24, 1, 2, 24, 27, 1, 27, 0, 1, 19, 20, 24, 24, 20, 27, 20, 21, 27, 27, 22, 0, 27, 21, 22, 22, 23, 0 ],
  320. "vertices": [ 2, 38, 12.16, 4.87, 0.96404, 39, -4.69, 4.54, 0.03596, 2, 38, 15.37, 5.31, 0.65296, 39, -1.52, 5.22, 0.34704, 3, 38, 18.34, 5.73, 0.20509, 39, 1.41, 5.85, 0.78858, 40, -8.07, 6, 0.00633, 4, 38, 21.85, 6.22, 0.01353, 39, 4.88, 6.59, 0.88386, 40, -4.59, 6.68, 0.09937, 41, -15.97, 4.63, 0.00324, 3, 39, 8.69, 7.41, 0.54203, 40, -0.77, 7.42, 0.41472, 41, -12.27, 5.86, 0.04325, 3, 39, 13.5, 8.44, 0.10579, 40, 4.06, 8.36, 0.63252, 41, -7.6, 7.42, 0.26169, 3, 39, 19.31, 9.68, 6.6E-4, 40, 9.89, 9.5, 0.22352, 41, -1.97, 9.3, 0.77582, 2, 40, 14.49, 10.39, 0.0214, 41, 2.47, 10.78, 0.9786, 2, 40, 17.9, 11.06, 1.3E-4, 41, 5.78, 11.88, 0.99987, 1, 41, 8.79, 12.88, 1, 1, 41, 13.03, 0.15, 1, 1, 41, 14.16, -3.25, 1, 2, 40, 18.28, -6.19, 0.05917, 41, 8.37, -5.18, 0.94083, 2, 40, 15.35, -6.34, 0.24903, 41, 5.49, -5.7, 0.75097, 2, 40, 11.25, -6.54, 0.77754, 41, 1.45, -6.44, 0.22246, 2, 39, 15.1, -6.74, 0.0407, 40, 5.38, -6.84, 0.9593, 3, 38, 25.96, -7.8, 2.0E-4, 39, 10, -7.09, 0.45749, 40, 0.27, -7.1, 0.54231, 3, 38, 22.82, -7.79, 0.02298, 39, 6.86, -7.31, 0.78111, 40, -2.87, -7.26, 0.19591, 3, 38, 19.87, -7.78, 0.13534, 39, 3.92, -7.51, 0.82499, 40, -5.81, -7.41, 0.03968, 3, 38, 16.86, -7.77, 0.39919, 39, 0.92, -7.72, 0.5993, 40, -8.82, -7.56, 0.00151, 2, 38, 13.68, -7.76, 0.72922, 39, -2.26, -7.94, 0.27078, 1, 38, -2.37, -7.7, 1, 1, 38, -3.42, -0.15, 1, 1, 38, -3.81, 2.64, 1, 2, 38, 15.93, -0.08, 0.97567, 39, -0.57, -0.12, 0.02433, 3, 39, 9.53, 0.08, 0.54775, 40, -0.06, 0.08, 0.45216, 41, -10.62, -1.33, 9.0E-5, 2, 40, 10.61, 0.14, 0.26076, 41, -0.05, 0.1, 0.73924, 2, 38, 12.96, -0.09, 0.99937, 39, -3.53, -0.35, 6.3E-4, 2, 38, 19.12, -0.25, 1.9E-4, 39, 2.63, -0.06, 0.99981, 3, 39, 5.97, 0.01, 0.99996, 40, -3.62, 0.08, 4.0E-5, 41, -14.15, -1.79, 0, 3, 39, 14.47, 0.2, 3.0E-5, 40, 4.88, 0.1, 0.99849, 41, -5.73, -0.67, 0.00148, 1, 41, 7.77, 0.13, 1, 1, 41, 4.26, 0.12, 1 ],
  321. "hull": 24,
  322. "edges": [ 44, 46, 18, 20, 20, 22, 42, 44, 22, 24, 38, 48, 48, 2, 38, 40, 40, 42, 44, 54, 54, 48, 40, 54, 2, 0, 0, 46, 54, 0, 36, 38, 48, 56, 36, 56, 2, 4, 56, 4, 34, 36, 50, 58, 58, 56, 34, 58, 4, 6, 32, 34, 32, 50, 6, 8, 50, 8, 30, 32, 50, 60, 60, 52, 30, 60, 8, 10, 60, 10, 28, 30, 28, 52, 10, 12, 52, 12, 20, 62, 24, 62, 16, 18, 62, 16, 24, 26, 26, 28, 52, 64, 64, 62, 26, 64, 12, 14, 14, 16, 58, 6, 64, 14 ],
  323. "width": 17,
  324. "height": 52
  325. }
  326. },
  327. "youjiao": {
  328. "youjiao": {
  329. "type": "mesh",
  330. "uvs": [ 1, 0.27375, 1, 0.34844, 1, 0.41305, 1, 0.57052, 1, 0.61493, 1, 1, 0.75673, 1, 0, 1, 0, 0.65733, 0, 0.59071, 0, 0.4615, 0, 0.3868, 0, 0.3222, 0, 0, 0.53949, 0, 1, 0, 0.61731, 0.3646, 0.70161, 0.78048, 0.67361, 0.64234, 0.66061, 0.57825, 0.63242, 0.43914, 0.60641, 0.31354 ],
  331. "triangles": [ 5, 17, 4, 7, 17, 6, 5, 6, 17, 17, 7, 8, 17, 8, 18, 8, 9, 19, 17, 18, 4, 8, 19, 18, 4, 18, 3, 18, 19, 3, 9, 20, 19, 9, 10, 20, 3, 19, 2, 19, 20, 2, 10, 16, 20, 2, 20, 1, 20, 16, 1, 1, 16, 0, 10, 11, 16, 11, 21, 16, 11, 12, 21, 16, 21, 0, 12, 14, 21, 12, 13, 14, 0, 21, 15, 21, 14, 15 ],
  332. "vertices": [ 2, 35, 19.92, 13.56, 0.52864, 36, -3.86, 13.14, 0.47136, 2, 35, 23.84, 12.99, 0.28082, 36, 0.06, 12.6, 0.71918, 2, 35, 27.23, 12.5, 0.11289, 36, 3.45, 12.14, 0.88711, 3, 35, 35.49, 11.29, 1.4E-4, 36, 11.72, 11, 0.98136, 37, -11.94, -9.91, 0.0185, 2, 36, 14.05, 10.68, 0.93827, 37, -11.47, -7.6, 0.06173, 1, 37, -7.35, 12.39, 1, 1, 37, 0.51, 10.77, 1, 1, 37, 24.97, 5.74, 1, 1, 37, 21.31, -12.05, 1, 3, 35, 31.77, -21.52, 0.25879, 36, 8.29, -21.84, 0.24694, 37, 20.6, -15.51, 0.49427, 3, 35, 25, -20.53, 0.52646, 36, 1.5, -20.91, 0.22881, 37, 19.22, -22.22, 0.24474, 3, 35, 21.08, -19.96, 0.69261, 36, -2.42, -20.37, 0.16027, 37, 18.42, -26.1, 0.14712, 3, 35, 17.69, -19.46, 0.8157, 36, -5.81, -19.9, 0.09558, 37, 17.73, -29.45, 0.08872, 2, 35, 0.79, -16.99, 0.99993, 37, 14.29, -46.18, 7.0E-5, 1, 35, 3.37, 0.63, 1, 1, 35, 5.57, 15.66, 1, 2, 35, 22.86, 0.37, 0.42132, 36, -0.81, -0.03, 0.57868, 2, 36, 21.4, -0.27, 0.13244, 37, -0.05, -0.99, 0.86756, 3, 35, 37.7, 0.08, 1.7E-4, 36, 14.02, -0.19, 0.99682, 37, -0.62, -8.35, 0.00301, 3, 35, 34.27, 0.15, 2.6E-4, 36, 10.6, -0.15, 0.99881, 37, -0.89, -11.77, 9.2E-4, 3, 35, 26.84, 0.29, 0.0015, 36, 3.17, -0.07, 0.99836, 37, -1.46, -19.17, 1.5E-4, 2, 35, 20.13, 0.41, 0.97701, 36, -3.54, -0.01, 0.02299 ],
  333. "hull": 16,
  334. "edges": [ 26, 28, 28, 30, 10, 12, 12, 14, 34, 12, 14, 16, 36, 34, 16, 36, 10, 8, 16, 18, 38, 36, 18, 38, 8, 6, 22, 32, 32, 2, 18, 20, 20, 22, 32, 40, 40, 38, 20, 40, 2, 4, 4, 6, 40, 4, 22, 24, 24, 26, 28, 42, 42, 32, 24, 42, 2, 0, 0, 30, 42, 0, 38, 6, 36, 8 ],
  335. "width": 33,
  336. "height": 53
  337. }
  338. },
  339. "youshou": {
  340. "youshou": {
  341. "type": "mesh",
  342. "uvs": [ 0.56471, 0.12084, 0.65099, 0.18626, 1, 0.4509, 1, 0.53535, 1, 1, 0.61225, 1, 0.3251, 0.77269, 0.23385, 0.70047, 0, 0.51535, 0, 0.33757, 0, 0, 0.40535, 0, 0.32259, 0.35979, 0.52535, 0.58646, 0.2256, 0.25162, 0.61098, 0.66107 ],
  343. "triangles": [ 3, 15, 2, 6, 13, 15, 4, 5, 15, 6, 15, 5, 4, 15, 3, 13, 1, 2, 2, 15, 13, 7, 8, 12, 7, 12, 13, 6, 7, 13, 14, 10, 11, 14, 11, 0, 9, 10, 14, 12, 14, 0, 12, 0, 1, 12, 8, 9, 12, 9, 14, 13, 12, 1 ],
  344. "vertices": [ 2, 27, 5.08, 11.69, 0.94125, 28, -8.89, 12.08, 0.05875, 3, 27, 9.33, 12.51, 0.80265, 28, -4.61, 12.72, 0.19667, 29, -17.9, 13.44, 6.8E-4, 3, 27, 26.53, 15.85, 0.06323, 28, 12.71, 15.31, 0.54135, 29, -0.49, 15.34, 0.39541, 3, 27, 30.68, 13.97, 0.02181, 28, 16.78, 13.26, 0.36041, 29, 3.49, 13.13, 0.61778, 1, 29, 25.43, 0.94, 1, 1, 29, 19.97, -8.89, 1, 2, 28, 19.39, -9.99, 0.19769, 29, 5.19, -10.2, 0.80231, 3, 27, 29.66, -9.95, 7.1E-4, 28, 14.72, -10.6, 0.51132, 29, 0.5, -10.62, 0.48797, 3, 27, 17.75, -12.01, 0.22299, 28, 2.74, -12.14, 0.76757, 29, -11.53, -11.7, 0.00944, 2, 27, 9.01, -8.06, 0.85589, 28, -5.83, -7.81, 0.14411, 1, 27, -7.61, -0.55, 1, 2, 27, -2.76, 10.16, 0.99992, 28, -16.8, 10.9, 8.0E-5, 2, 27, 13.95, -0.03, 0.95978, 28, -0.54, 0, 0.04022, 1, 28, 13.03, -0.27, 1, 1, 27, 7.47, -0.18, 1, 2, 28, 17.75, 0.13, 3.6E-4, 29, 3.95, -0.03, 0.99964 ],
  345. "hull": 12,
  346. "edges": [ 24, 26, 20, 22, 8, 10, 16, 24, 4, 2, 24, 2, 16, 18, 18, 20, 20, 28, 28, 24, 18, 28, 2, 0, 0, 22, 28, 0, 14, 16, 14, 26, 26, 4, 10, 12, 12, 14, 8, 30, 30, 26, 12, 30, 4, 6, 6, 8, 30, 6 ],
  347. "width": 29,
  348. "height": 54
  349. }
  350. },
  351. "youxiji": {
  352. "youxiji": {
  353. "type": "mesh",
  354. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  355. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  356. "vertices": [ -8.96, -7.36, -5.7, 12.38, 17.98, 8.47, 14.72, -11.26 ],
  357. "hull": 4,
  358. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  359. "width": 20,
  360. "height": 24
  361. }
  362. },
  363. "youyan": {
  364. "youyan": {
  365. "type": "mesh",
  366. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0, 0.18929, 0.34987, 0.18421, 0.52416, 0.20962, 0.64325, 0.27316, 0.72168, 0.42312, 0.76235, 0.55529, 0.74782, 0.65187, 0.68101, 0.71287, 0.46897, 0.69762, 0.32954, 0.12067, 0.3702, 0.13846, 0.52996, 0.16896, 0.6752, 0.23758, 0.78558, 0.36975, 0.8582, 0.55783, 0.87854, 0.71541, 0.85239, 0.84504, 0.70716, 0.89079, 0.49801, 0.89079, 0.38763, 0.29374, 0.27431, 0.55232, 0.22735 ],
  367. "triangles": [ 24, 2, 3, 23, 2, 24, 12, 24, 3, 4, 2, 23, 13, 2, 4, 22, 12, 3, 11, 12, 22, 21, 22, 3, 11, 22, 21, 5, 13, 4, 14, 13, 5, 23, 5, 4, 8, 7, 6, 6, 15, 14, 6, 14, 5, 23, 24, 11, 11, 24, 12, 20, 11, 21, 10, 11, 20, 8, 6, 5, 10, 9, 11, 11, 5, 23, 11, 9, 5, 9, 8, 5, 7, 15, 6, 16, 15, 7, 19, 10, 20, 9, 10, 19, 17, 7, 8, 16, 7, 17, 18, 9, 19, 8, 9, 18, 17, 8, 18, 1, 2, 13, 1, 13, 14, 1, 14, 15, 1, 15, 16, 21, 3, 0, 20, 21, 0, 19, 20, 0, 18, 19, 0, 1, 17, 18, 1, 16, 17, 0, 1, 18 ],
  368. "vertices": [ -3.82, -11.94, -4, 12.06, 17, 12.21, 17.18, -11.79, 9.69, 7.61, 6.03, 7.71, 3.53, 7.08, 1.89, 5.54, 1.07, 1.94, 1.4, -1.23, 2.82, -3.54, 7.28, -4.97, 10.2, -4.58, 9.25, 9.26, 5.9, 8.81, 2.85, 8.05, 0.55, 6.39, -0.96, 3.2, -1.35, -1.31, -0.77, -5.09, 2.3, -8.18, 6.7, -9.25, 9.02, -9.23, 11.29, 5.12, 12.32, -1.08 ],
  369. "hull": 4,
  370. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  371. "width": 24,
  372. "height": 21
  373. }
  374. },
  375. "zuojiao": {
  376. "zuojiao": {
  377. "type": "mesh",
  378. "uvs": [ 1, 0.28955, 1, 0.36207, 1, 0.4346, 1, 0.5703, 1, 0.63113, 1, 1, 0.58053, 1, 0, 1, 0, 0.77385, 0.30316, 0.63113, 0.30764, 0.56454, 0.31667, 0.43016, 0.32173, 0.35491, 0.32655, 0.28322, 0.34558, 0, 0.71758, 0, 1, 0, 0.68821, 0.35272, 0.61316, 0.80192, 0.6928, 0.29756, 0.67539, 0.42948, 0.64157, 0.63189, 0.65259, 0.56592 ],
  379. "triangles": [ 7, 8, 9, 6, 9, 18, 7, 9, 6, 5, 18, 4, 6, 18, 5, 20, 12, 17, 11, 12, 20, 17, 1, 2, 20, 17, 2, 22, 11, 20, 10, 11, 22, 20, 2, 3, 22, 20, 3, 22, 3, 4, 21, 10, 22, 21, 22, 4, 9, 10, 21, 18, 9, 21, 18, 21, 4, 15, 16, 0, 19, 14, 15, 19, 15, 0, 13, 14, 19, 17, 13, 19, 12, 13, 17, 19, 0, 1, 17, 19, 1 ],
  380. "vertices": [ 2, 32, 16.72, 11.32, 0.76159, 33, -4.8, 11.02, 0.23841, 2, 32, 20.56, 11.54, 0.48816, 33, -0.98, 11.5, 0.51184, 2, 32, 24.4, 11.75, 0.22348, 33, 2.83, 11.98, 0.77652, 3, 32, 31.58, 12.14, 0.01473, 33, 9.97, 12.87, 0.95932, 34, -17, -9.71, 0.02595, 3, 32, 34.8, 12.32, 9.9E-4, 33, 13.17, 13.28, 0.91306, 34, -16.42, -6.54, 0.08595, 2, 33, 32.56, 15.72, 0.13336, 34, -12.87, 12.69, 0.86664, 1, 34, 2.81, 9.8, 1, 1, 34, 24.5, 5.79, 1, 2, 33, 25.42, -23.48, 0.00509, 34, 22.33, -6, 0.99491, 3, 32, 36.26, -14.12, 0.00359, 33, 16.47, -13, 0.50651, 34, 9.62, -11.34, 0.4899, 3, 32, 32.72, -14.14, 0.02816, 33, 12.95, -13.27, 0.75231, 34, 8.82, -14.78, 0.21953, 3, 32, 25.59, -14.19, 0.22028, 33, 5.84, -13.82, 0.74966, 34, 7.19, -21.72, 0.03006, 3, 32, 21.6, -14.22, 0.44041, 33, 1.86, -14.12, 0.55446, 34, 6.27, -25.61, 0.00514, 3, 32, 17.8, -14.25, 0.67081, 33, -1.93, -14.42, 0.32906, 34, 5.4, -29.31, 1.3E-4, 1, 32, 2.77, -14.35, 1, 1, 32, 1.99, -0.24, 1, 1, 32, 1.4, 10.48, 1, 2, 32, 20.72, -0.32, 0.51825, 33, 0.01, -0.32, 0.48175, 2, 33, 23.98, -0.18, 0.04567, 34, -0.32, -0.3, 0.95433, 2, 32, 17.79, -0.31, 0.99844, 33, -2.92, -0.51, 0.00156, 2, 32, 24.81, -0.58, 0.00206, 33, 4.1, -0.3, 0.99794, 2, 33, 14.91, -0.23, 0.99796, 34, -3.02, -8.97, 0.00204, 3, 32, 32.07, -1.05, 2.0E-5, 33, 11.39, -0.25, 0.9996, 34, -4.06, -12.33, 3.8E-4 ],
  381. "hull": 17,
  382. "edges": [ 30, 32, 10, 12, 12, 14, 36, 12, 28, 30, 14, 16, 18, 16, 24, 34, 34, 2, 24, 26, 26, 28, 30, 38, 38, 34, 26, 38, 2, 0, 0, 32, 38, 0, 22, 24, 34, 40, 22, 40, 2, 4, 40, 4, 36, 42, 18, 42, 8, 10, 42, 8, 18, 20, 20, 22, 40, 44, 44, 42, 20, 44, 4, 6, 6, 8, 44, 6 ],
  383. "width": 38,
  384. "height": 53
  385. }
  386. },
  387. "zuoshou": {
  388. "zuoshou": {
  389. "type": "mesh",
  390. "uvs": [ 1, 0.40737, 1, 0.5941, 0.81286, 0.71458, 0.75034, 0.75483, 0.47734, 1, 0.16968, 1, 0, 1, 0, 0.73592, 0.10035, 0.58228, 0.14274, 0.52632, 0.31701, 0.29628, 0.44611, 0.20137, 0.72001, 0, 1, 0, 0.63768, 0.40028, 0.40801, 0.66264, 0.72432, 0.30456, 0.4586, 0.60485 ],
  391. "triangles": [ 7, 5, 6, 15, 7, 8, 15, 5, 7, 4, 15, 3, 5, 15, 4, 9, 10, 17, 15, 9, 17, 8, 9, 15, 2, 14, 1, 17, 14, 2, 3, 17, 2, 15, 17, 3, 16, 12, 13, 11, 12, 16, 14, 11, 16, 10, 11, 14, 16, 13, 0, 14, 16, 0, 1, 14, 0, 17, 10, 14 ],
  392. "vertices": [ 3, 24, 10.73, 10.11, 0.70284, 25, -4.92, 10.95, 0.29664, 26, -18.93, 12.26, 5.2E-4, 3, 24, 19.5, 15.45, 0.15874, 25, 4.55, 14.94, 0.77683, 26, -9.22, 15.6, 0.06443, 3, 24, 28.08, 14.1, 0.01075, 25, 12.83, 12.35, 0.63294, 26, -1.12, 12.45, 0.35631, 3, 24, 30.95, 13.65, 0.00102, 25, 15.6, 11.48, 0.43903, 26, 1.58, 11.4, 0.55995, 1, 26, 17, 8.04, 1, 1, 26, 20, -0.68, 1, 1, 26, 21.66, -5.5, 1, 2, 25, 23.39, -9.67, 0.0238, 26, 7.92, -10.22, 0.9762, 3, 24, 32.98, -7.94, 0.00887, 25, 14.44, -10.18, 0.47097, 26, -1.05, -10.13, 0.52016, 3, 24, 29.69, -8.46, 0.04381, 25, 11.11, -10.2, 0.68971, 26, -4.37, -9.93, 0.26648, 2, 24, 16.17, -10.57, 0.82306, 25, -2.58, -10.3, 0.17694, 2, 24, 9.69, -9.98, 0.99694, 25, -8.9, -8.76, 0.00306, 1, 24, -4.04, -8.71, 1, 1, 24, -8.41, -1.54, 1, 1, 24, 16.05, 0.62, 1, 2, 25, 14.92, 0.05, 0.39729, 26, 0.13, 0.04, 0.60271, 2, 24, 10.2, 0.11, 0.99922, 25, -6.91, 1.13, 7.8E-4, 2, 25, 11.4, 0.21, 0.99792, 26, -3.37, 0.44, 0.00208 ],
  393. "hull": 14,
  394. "edges": [ 10, 12, 30, 10, 24, 26, 12, 14, 16, 14, 8, 10, 6, 8, 20, 28, 28, 2, 20, 22, 22, 24, 26, 32, 32, 28, 22, 32, 2, 0, 0, 26, 32, 0, 16, 18, 18, 20, 28, 34, 34, 30, 18, 34, 2, 4, 4, 6, 34, 4, 16, 30, 30, 6 ],
  395. "width": 30,
  396. "height": 55
  397. }
  398. },
  399. "zuoyan": {
  400. "zuoyan": {
  401. "type": "mesh",
  402. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0, 0.1664, 0.35396, 0.15254, 0.53086, 0.17749, 0.67421, 0.24404, 0.75961, 0.3494, 0.86636, 0.49081, 0.89076, 0.64608, 0.87246, 0.75699, 0.80841, 0.84572, 0.66506, 0.90117, 0.36921, 0.20522, 0.40581, 0.20522, 0.51561, 0.25513, 0.64676, 0.33831, 0.69556, 0.51299, 0.70471, 0.63776, 0.60711, 0.69876, 0.45156, 0.28536, 0.27353, 0.59799, 0.25643 ],
  403. "triangles": [ 22, 2, 3, 21, 2, 22, 4, 2, 21, 13, 22, 3, 14, 4, 21, 20, 22, 13, 19, 15, 14, 5, 2, 4, 5, 4, 14, 5, 14, 15, 19, 22, 20, 17, 16, 15, 21, 22, 19, 12, 20, 13, 19, 20, 12, 16, 6, 5, 16, 5, 15, 21, 19, 14, 15, 18, 17, 19, 18, 15, 7, 6, 16, 7, 16, 17, 11, 19, 12, 10, 18, 19, 8, 17, 18, 7, 17, 8, 11, 10, 19, 9, 8, 18, 10, 9, 18, 1, 2, 5, 1, 5, 6, 1, 6, 7, 13, 3, 0, 12, 13, 0, 11, 12, 0, 10, 11, 0, 9, 10, 0, 1, 8, 9, 1, 7, 8, 0, 1, 9 ],
  404. "vertices": [ -4.88, -10.25, -4.88, 11.75, 15.12, 11.75, 15.12, -10.25, 8.04, 8.09, 4.51, 8.39, 1.64, 7.84, -0.07, 6.38, -2.2, 4.06, -2.69, 0.95, -2.33, -2.46, -1.05, -4.9, 1.82, -6.86, 7.74, -8.08, 7.01, 7.23, 4.81, 7.23, 2.19, 6.14, 1.21, 4.31, 1.03, 0.46, 2.98, -2.28, 6.09, -3.62, 9.65, 5.47, 9.99, -1.41 ],
  405. "hull": 4,
  406. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  407. "width": 22,
  408. "height": 20
  409. }
  410. }
  411. }
  412. },
  413. "animations": {
  414. "stand1": {
  415. "slots": {
  416. "20wake": {
  417. "color": [
  418. { "time": 0, "color": "ffffff00" }
  419. ]
  420. },
  421. "biyan": {
  422. "attachment": [
  423. { "time": 1.2667, "name": "biyan" },
  424. { "time": 1.3667, "name": null }
  425. ]
  426. },
  427. "guaishou": {
  428. "color": [
  429. { "time": 0, "color": "ffffff00" }
  430. ]
  431. },
  432. "huangse": {
  433. "color": [
  434. { "time": 0, "color": "ffffff00" }
  435. ]
  436. },
  437. "huangse 2": {
  438. "color": [
  439. { "time": 0, "color": "ffffff00" }
  440. ]
  441. },
  442. "huangse 3": {
  443. "color": [
  444. { "time": 0, "color": "ffffff00" }
  445. ]
  446. },
  447. "paopao": {
  448. "color": [
  449. { "time": 0, "color": "ffffff00" }
  450. ]
  451. },
  452. "pinmu": {
  453. "color": [
  454. { "time": 0, "color": "ffffff00" }
  455. ]
  456. },
  457. "youyan": {
  458. "attachment": [
  459. { "time": 1.2667, "name": null },
  460. { "time": 1.3667, "name": "youyan" }
  461. ]
  462. }
  463. },
  464. "bones": {
  465. "root": {
  466. "rotate": [
  467. { "time": 0, "angle": 0 }
  468. ],
  469. "translate": [
  470. { "time": 0, "x": 0, "y": 0 }
  471. ],
  472. "scale": [
  473. { "time": 0, "x": 0.65, "y": 0.65 }
  474. ]
  475. },
  476. "bone2": {
  477. "rotate": [
  478. { "time": 0, "angle": 0, "curve": "stepped" },
  479. { "time": 0.6, "angle": 0, "curve": "stepped" },
  480. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  481. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  482. { "time": 2.3333, "angle": 0 }
  483. ],
  484. "translate": [
  485. { "time": 0, "x": 0, "y": 0 },
  486. { "time": 0.6, "x": 5.39, "y": 0.01 },
  487. { "time": 1.1667, "x": 0, "y": 0 },
  488. { "time": 1.7667, "x": 5.39, "y": 0.01 },
  489. { "time": 2.3333, "x": 0, "y": 0 }
  490. ],
  491. "scale": [
  492. { "time": 0, "x": 1, "y": 1 },
  493. { "time": 0.6, "x": 1.02, "y": 1 },
  494. { "time": 1.1667, "x": 1, "y": 1 },
  495. { "time": 1.7667, "x": 1.02, "y": 1 },
  496. { "time": 2.3333, "x": 1, "y": 1 }
  497. ]
  498. },
  499. "bone3": {
  500. "rotate": [
  501. { "time": 0, "angle": 0, "curve": "stepped" },
  502. { "time": 0.6, "angle": 0, "curve": "stepped" },
  503. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  504. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  505. { "time": 2.3333, "angle": 0 }
  506. ],
  507. "translate": [
  508. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  509. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  510. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  511. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  512. { "time": 2.3333, "x": 0, "y": 0 }
  513. ],
  514. "scale": [
  515. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  516. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  517. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  518. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  519. { "time": 2.3333, "x": 1, "y": 1 }
  520. ]
  521. },
  522. "bone4": {
  523. "rotate": [
  524. { "time": 0, "angle": 0, "curve": "stepped" },
  525. { "time": 0.6, "angle": 0, "curve": "stepped" },
  526. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  527. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  528. { "time": 2.3333, "angle": 0 }
  529. ],
  530. "translate": [
  531. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  532. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  533. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  534. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  535. { "time": 2.3333, "x": 0, "y": 0 }
  536. ],
  537. "scale": [
  538. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  539. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  540. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  541. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  542. { "time": 2.3333, "x": 1, "y": 1 }
  543. ]
  544. },
  545. "bone5": {
  546. "rotate": [
  547. { "time": 0, "angle": 0 },
  548. { "time": 0.6, "angle": -11.19 },
  549. { "time": 1.1667, "angle": 0 },
  550. { "time": 1.7667, "angle": -11.19 },
  551. { "time": 2.3333, "angle": 0 }
  552. ],
  553. "translate": [
  554. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  555. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  556. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  557. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  558. { "time": 2.3333, "x": 0, "y": 0 }
  559. ],
  560. "scale": [
  561. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  562. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  563. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  564. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  565. { "time": 2.3333, "x": 1, "y": 1 }
  566. ]
  567. },
  568. "bone6": {
  569. "rotate": [
  570. { "time": 0, "angle": 0 },
  571. { "time": 0.6, "angle": -21.44 },
  572. { "time": 1.1667, "angle": 0 },
  573. { "time": 1.7667, "angle": -21.44 },
  574. { "time": 2.3333, "angle": 0 }
  575. ],
  576. "translate": [
  577. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  578. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  579. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  580. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  581. { "time": 2.3333, "x": 0, "y": 0 }
  582. ],
  583. "scale": [
  584. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  585. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  586. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  587. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  588. { "time": 2.3333, "x": 1, "y": 1 }
  589. ]
  590. },
  591. "bone7": {
  592. "rotate": [
  593. {
  594. "time": 0,
  595. "angle": 0,
  596. "curve": [ 0.25, 0, 0.75, 1 ]
  597. },
  598. {
  599. "time": 0.6,
  600. "angle": 9.66,
  601. "curve": [ 0.25, 0, 0.75, 1 ]
  602. },
  603. {
  604. "time": 1.1667,
  605. "angle": 0,
  606. "curve": [ 0.25, 0, 0.75, 1 ]
  607. },
  608. {
  609. "time": 1.7667,
  610. "angle": 9.66,
  611. "curve": [ 0.25, 0, 0.75, 1 ]
  612. },
  613. { "time": 2.3333, "angle": 0 }
  614. ],
  615. "translate": [
  616. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  617. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  618. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  619. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  620. { "time": 2.3333, "x": 0, "y": 0 }
  621. ],
  622. "scale": [
  623. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  624. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  625. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  626. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  627. { "time": 2.3333, "x": 1, "y": 1 }
  628. ]
  629. },
  630. "bone8": {
  631. "rotate": [
  632. {
  633. "time": 0,
  634. "angle": 0,
  635. "curve": [ 0.25, 0, 0.75, 1 ]
  636. },
  637. {
  638. "time": 0.6,
  639. "angle": 4.17,
  640. "curve": [ 0.25, 0, 0.75, 1 ]
  641. },
  642. {
  643. "time": 1.1667,
  644. "angle": 0,
  645. "curve": [ 0.25, 0, 0.75, 1 ]
  646. },
  647. {
  648. "time": 1.7667,
  649. "angle": 4.17,
  650. "curve": [ 0.25, 0, 0.75, 1 ]
  651. },
  652. { "time": 2.3333, "angle": 0 }
  653. ],
  654. "translate": [
  655. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  656. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  657. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  658. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  659. { "time": 2.3333, "x": 0, "y": 0 }
  660. ],
  661. "scale": [
  662. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  663. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  664. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  665. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  666. { "time": 2.3333, "x": 1, "y": 1 }
  667. ]
  668. },
  669. "bone9": {
  670. "rotate": [
  671. { "time": 0, "angle": 0 },
  672. { "time": 0.6, "angle": 13.01 },
  673. { "time": 1.1667, "angle": 0 },
  674. { "time": 1.7667, "angle": 13.01 },
  675. { "time": 2.3333, "angle": 0 }
  676. ],
  677. "translate": [
  678. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  679. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  680. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  681. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  682. { "time": 2.3333, "x": 0, "y": 0 }
  683. ],
  684. "scale": [
  685. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  686. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  687. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  688. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  689. { "time": 2.3333, "x": 1, "y": 1 }
  690. ]
  691. },
  692. "bone10": {
  693. "rotate": [
  694. { "time": 0, "angle": 0 },
  695. { "time": 0.6, "angle": -12.08 },
  696. { "time": 1.1667, "angle": 0 },
  697. { "time": 1.7667, "angle": -12.08 },
  698. { "time": 2.3333, "angle": 0 }
  699. ],
  700. "translate": [
  701. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  702. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  703. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  704. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  705. { "time": 2.3333, "x": 0, "y": 0 }
  706. ],
  707. "scale": [
  708. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  709. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  710. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  711. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  712. { "time": 2.3333, "x": 1, "y": 1 }
  713. ]
  714. },
  715. "bone11": {
  716. "rotate": [
  717. { "time": 0, "angle": 0 },
  718. { "time": 0.6, "angle": -1.68 },
  719. { "time": 1.1667, "angle": 0 },
  720. { "time": 1.7667, "angle": -1.68 },
  721. { "time": 2.3333, "angle": 0 }
  722. ],
  723. "translate": [
  724. { "time": 0, "x": 0, "y": 0 },
  725. { "time": 0.6, "x": 2.02, "y": -0.95 },
  726. { "time": 1.1667, "x": 0, "y": 0 },
  727. { "time": 1.7667, "x": 2.02, "y": -0.95 },
  728. { "time": 2.3333, "x": 0, "y": 0 }
  729. ],
  730. "scale": [
  731. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  732. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  733. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  734. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  735. { "time": 2.3333, "x": 1, "y": 1 }
  736. ]
  737. },
  738. "bone12": {
  739. "rotate": [
  740. { "time": 0, "angle": 0 },
  741. { "time": 0.6, "angle": -10.53 },
  742. { "time": 0.8667, "angle": 0.64 },
  743. { "time": 1.1667, "angle": 0 },
  744. { "time": 1.7667, "angle": -10.53 },
  745. { "time": 2.0333, "angle": 0.64 },
  746. { "time": 2.3333, "angle": 0 }
  747. ],
  748. "translate": [
  749. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  750. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  751. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  752. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  753. { "time": 2.3333, "x": 0, "y": 0 }
  754. ],
  755. "scale": [
  756. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  757. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  758. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  759. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  760. { "time": 2.3333, "x": 1, "y": 1 }
  761. ]
  762. },
  763. "bone13": {
  764. "rotate": [
  765. { "time": 0, "angle": 0 },
  766. { "time": 0.6, "angle": -2.51 },
  767. { "time": 1.1667, "angle": 0 },
  768. { "time": 1.7667, "angle": -2.51 },
  769. { "time": 2.3333, "angle": 0 }
  770. ],
  771. "translate": [
  772. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  773. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  774. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  775. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  776. { "time": 2.3333, "x": 0, "y": 0 }
  777. ],
  778. "scale": [
  779. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  780. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  781. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  782. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  783. { "time": 2.3333, "x": 1, "y": 1 }
  784. ]
  785. },
  786. "bone14": {
  787. "rotate": [
  788. { "time": 0, "angle": 0 },
  789. { "time": 0.6, "angle": -4.54 },
  790. { "time": 0.8667, "angle": -9.41 },
  791. { "time": 1.1667, "angle": 0 },
  792. { "time": 1.7667, "angle": -4.54 },
  793. { "time": 2.0333, "angle": -9.41 },
  794. { "time": 2.3333, "angle": 0 }
  795. ],
  796. "translate": [
  797. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  798. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  799. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  800. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  801. { "time": 2.3333, "x": 0, "y": 0 }
  802. ],
  803. "scale": [
  804. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  805. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  806. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  807. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  808. { "time": 2.3333, "x": 1, "y": 1 }
  809. ]
  810. },
  811. "bone15": {
  812. "rotate": [
  813. { "time": 0, "angle": 0 },
  814. { "time": 0.6, "angle": -15.16 },
  815. { "time": 0.8667, "angle": -23.76 },
  816. { "time": 1.1667, "angle": 0 },
  817. { "time": 1.7667, "angle": -15.16 },
  818. { "time": 2.0333, "angle": -23.76 },
  819. { "time": 2.3333, "angle": 0 }
  820. ],
  821. "translate": [
  822. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  823. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  824. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  825. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  826. { "time": 2.3333, "x": 0, "y": 0 }
  827. ],
  828. "scale": [
  829. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  830. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  831. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  832. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  833. { "time": 2.3333, "x": 1, "y": 1 }
  834. ]
  835. },
  836. "bone16": {
  837. "rotate": [
  838. { "time": 0, "angle": 0 },
  839. { "time": 0.6, "angle": -14.66 },
  840. { "time": 1.1667, "angle": 0 },
  841. { "time": 1.7667, "angle": -14.66 },
  842. { "time": 2.3333, "angle": 0 }
  843. ],
  844. "translate": [
  845. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  846. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  847. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  848. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  849. { "time": 2.3333, "x": 0, "y": 0 }
  850. ],
  851. "scale": [
  852. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  853. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  854. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  855. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  856. { "time": 2.3333, "x": 1, "y": 1 }
  857. ]
  858. },
  859. "bone17": {
  860. "rotate": [
  861. { "time": 0, "angle": 0 },
  862. { "time": 0.6, "angle": -6.02 },
  863. { "time": 1.1667, "angle": 0 },
  864. { "time": 1.7667, "angle": -6.02 },
  865. { "time": 2.3333, "angle": 0 }
  866. ],
  867. "translate": [
  868. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  869. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  870. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  871. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  872. { "time": 2.3333, "x": 0, "y": 0 }
  873. ],
  874. "scale": [
  875. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  876. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  877. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  878. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  879. { "time": 2.3333, "x": 1, "y": 1 }
  880. ]
  881. },
  882. "bone18": {
  883. "rotate": [
  884. { "time": 0, "angle": 0, "curve": "stepped" },
  885. { "time": 0.6, "angle": 0, "curve": "stepped" },
  886. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  887. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  888. { "time": 2.3333, "angle": 0 }
  889. ],
  890. "translate": [
  891. { "time": 0, "x": 0, "y": 0 },
  892. { "time": 0.6, "x": -0.24, "y": -2.98 },
  893. { "time": 1.1667, "x": 0, "y": 0 },
  894. { "time": 1.7667, "x": -0.24, "y": -2.98 },
  895. { "time": 2.3333, "x": 0, "y": 0 }
  896. ],
  897. "scale": [
  898. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  899. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  900. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  901. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  902. { "time": 2.3333, "x": 1, "y": 1 }
  903. ]
  904. },
  905. "bone19": {
  906. "rotate": [
  907. { "time": 0, "angle": 0, "curve": "stepped" },
  908. { "time": 0.6, "angle": 0, "curve": "stepped" },
  909. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  910. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  911. { "time": 2.3333, "angle": 0 }
  912. ],
  913. "translate": [
  914. { "time": 0, "x": 0, "y": 0 },
  915. { "time": 0.6, "x": 3.23, "y": -1.69 },
  916. { "time": 1.1667, "x": 0, "y": 0 },
  917. { "time": 1.7667, "x": 3.23, "y": -1.69 },
  918. { "time": 2.3333, "x": 0, "y": 0 }
  919. ],
  920. "scale": [
  921. { "time": 0, "x": 1, "y": 1 },
  922. { "time": 0.6, "x": 1.02, "y": 1.02 },
  923. { "time": 1.1667, "x": 1, "y": 1 },
  924. { "time": 1.7667, "x": 1.02, "y": 1.02 },
  925. { "time": 2.3333, "x": 1, "y": 1 }
  926. ]
  927. },
  928. "bone20": {
  929. "rotate": [
  930. { "time": 0, "angle": 0, "curve": "stepped" },
  931. { "time": 0.6, "angle": 0, "curve": "stepped" },
  932. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  933. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  934. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  935. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  936. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  937. { "time": 2.3333, "angle": 0 }
  938. ],
  939. "translate": [
  940. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  941. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  942. { "time": 1.1667, "x": 0, "y": 0 },
  943. { "time": 1.2667, "x": -1.52, "y": -0.06, "curve": "stepped" },
  944. { "time": 1.3667, "x": -1.52, "y": -0.06 },
  945. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  946. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  947. { "time": 2.3333, "x": 0, "y": 0 }
  948. ],
  949. "scale": [
  950. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  951. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  952. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  953. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  954. { "time": 2.3333, "x": 1, "y": 1 }
  955. ]
  956. },
  957. "bone21": {
  958. "rotate": [
  959. { "time": 0, "angle": 0, "curve": "stepped" },
  960. { "time": 0.6, "angle": 0, "curve": "stepped" },
  961. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  962. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  963. { "time": 2.3333, "angle": 0 }
  964. ],
  965. "translate": [
  966. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  967. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  968. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  969. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  970. { "time": 2.3333, "x": 0, "y": 0 }
  971. ],
  972. "scale": [
  973. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  974. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  975. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  976. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  977. { "time": 2.3333, "x": 1, "y": 1 }
  978. ]
  979. },
  980. "bone22": {
  981. "rotate": [
  982. { "time": 0, "angle": 0, "curve": "stepped" },
  983. { "time": 0.6, "angle": 0, "curve": "stepped" },
  984. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  985. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  986. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  987. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  988. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  989. { "time": 2.3333, "angle": 0 }
  990. ],
  991. "translate": [
  992. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  993. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  994. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  995. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  996. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  997. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  998. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  999. { "time": 2.3333, "x": 0, "y": 0 }
  1000. ],
  1001. "scale": [
  1002. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1003. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1004. { "time": 1.1667, "x": 1, "y": 1 },
  1005. { "time": 1.2667, "x": 0.464, "y": 1, "curve": "stepped" },
  1006. { "time": 1.3667, "x": 0.464, "y": 1 },
  1007. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1008. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1009. { "time": 2.3333, "x": 1, "y": 1 }
  1010. ]
  1011. },
  1012. "bone23": {
  1013. "rotate": [
  1014. { "time": 0, "angle": 0, "curve": "stepped" },
  1015. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1016. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1017. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  1018. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1019. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1020. { "time": 2.3333, "angle": 0 }
  1021. ],
  1022. "translate": [
  1023. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1024. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1025. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1026. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1027. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1028. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1029. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1030. { "time": 2.3333, "x": 0, "y": 0 }
  1031. ],
  1032. "scale": [
  1033. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1034. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1035. { "time": 1.1667, "x": 1, "y": 1 },
  1036. { "time": 1.2667, "x": 0.451, "y": 1, "curve": "stepped" },
  1037. { "time": 1.3667, "x": 0.451, "y": 1 },
  1038. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1039. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1040. { "time": 2.3333, "x": 1, "y": 1 }
  1041. ]
  1042. },
  1043. "bone24": {
  1044. "rotate": [
  1045. { "time": 0, "angle": 7.72 },
  1046. { "time": 0.6, "angle": -4.14 },
  1047. { "time": 1.1667, "angle": 7.72 },
  1048. { "time": 1.7667, "angle": -4.14 },
  1049. { "time": 2.3333, "angle": 7.72 }
  1050. ],
  1051. "translate": [
  1052. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1053. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1054. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1055. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1056. { "time": 2.3333, "x": 0, "y": 0 }
  1057. ],
  1058. "scale": [
  1059. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1060. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1061. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1062. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1063. { "time": 2.3333, "x": 1, "y": 1 }
  1064. ]
  1065. },
  1066. "bone25": {
  1067. "rotate": [
  1068. { "time": 0, "angle": 0 },
  1069. { "time": 0.6, "angle": 13.55 },
  1070. { "time": 1.1667, "angle": 0 },
  1071. { "time": 1.7667, "angle": 13.55 },
  1072. { "time": 2.3333, "angle": 0 }
  1073. ],
  1074. "translate": [
  1075. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1076. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1077. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1078. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1079. { "time": 2.3333, "x": 0, "y": 0 }
  1080. ],
  1081. "scale": [
  1082. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1083. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1084. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1085. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1086. { "time": 2.3333, "x": 1, "y": 1 }
  1087. ]
  1088. },
  1089. "bone26": {
  1090. "rotate": [
  1091. { "time": 0, "angle": 0 },
  1092. { "time": 0.6, "angle": 4.46 },
  1093. { "time": 1.1667, "angle": 0 },
  1094. { "time": 1.7667, "angle": 4.46 },
  1095. { "time": 2.3333, "angle": 0 }
  1096. ],
  1097. "translate": [
  1098. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1099. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1100. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1101. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1102. { "time": 2.3333, "x": 0, "y": 0 }
  1103. ],
  1104. "scale": [
  1105. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1106. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1107. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1108. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1109. { "time": 2.3333, "x": 1, "y": 1 }
  1110. ]
  1111. },
  1112. "bone27": {
  1113. "rotate": [
  1114. { "time": 0, "angle": -4.15 },
  1115. { "time": 0.6, "angle": 13.2 },
  1116. { "time": 1.1667, "angle": -4.15 },
  1117. { "time": 1.7667, "angle": 13.2 },
  1118. { "time": 2.3333, "angle": -4.15 }
  1119. ],
  1120. "translate": [
  1121. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1122. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1123. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1124. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1125. { "time": 2.3333, "x": 0, "y": 0 }
  1126. ],
  1127. "scale": [
  1128. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1129. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1130. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1131. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1132. { "time": 2.3333, "x": 1, "y": 1 }
  1133. ]
  1134. },
  1135. "bone28": {
  1136. "rotate": [
  1137. { "time": 0, "angle": 0 },
  1138. { "time": 0.6, "angle": -23.48 },
  1139. { "time": 1.1667, "angle": 0 },
  1140. { "time": 1.7667, "angle": -23.48 },
  1141. { "time": 2.3333, "angle": 0 }
  1142. ],
  1143. "translate": [
  1144. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1145. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1146. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1147. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1148. { "time": 2.3333, "x": 0, "y": 0 }
  1149. ],
  1150. "scale": [
  1151. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1152. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1153. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1154. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1155. { "time": 2.3333, "x": 1, "y": 1 }
  1156. ]
  1157. },
  1158. "bone29": {
  1159. "rotate": [
  1160. { "time": 0, "angle": 0 },
  1161. { "time": 0.6, "angle": -5.24 },
  1162. { "time": 1.1667, "angle": 0 },
  1163. { "time": 1.7667, "angle": -5.24 },
  1164. { "time": 2.3333, "angle": 0 }
  1165. ],
  1166. "translate": [
  1167. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1168. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1169. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1170. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1171. { "time": 2.3333, "x": 0, "y": 0 }
  1172. ],
  1173. "scale": [
  1174. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1175. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1176. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1177. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1178. { "time": 2.3333, "x": 1, "y": 1 }
  1179. ]
  1180. },
  1181. "bone30": {
  1182. "rotate": [
  1183. { "time": 0, "angle": 0, "curve": "stepped" },
  1184. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1185. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1186. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1187. { "time": 2.3333, "angle": 0 }
  1188. ],
  1189. "translate": [
  1190. { "time": 0, "x": 0, "y": 0 },
  1191. { "time": 0.6, "x": 1.57, "y": 0.32 },
  1192. { "time": 1.1667, "x": 0, "y": 0 },
  1193. { "time": 1.7667, "x": 1.57, "y": 0.32 },
  1194. { "time": 2.3333, "x": 0, "y": 0 }
  1195. ],
  1196. "scale": [
  1197. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1198. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1199. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1200. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1201. { "time": 2.3333, "x": 1, "y": 1 }
  1202. ]
  1203. },
  1204. "bone31": {
  1205. "rotate": [
  1206. { "time": 0, "angle": 0, "curve": "stepped" },
  1207. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1208. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1209. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1210. { "time": 2.3333, "angle": 0 }
  1211. ],
  1212. "translate": [
  1213. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1214. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1215. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1216. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1217. { "time": 2.3333, "x": 0, "y": 0 }
  1218. ],
  1219. "scale": [
  1220. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1221. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1222. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1223. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1224. { "time": 2.3333, "x": 1, "y": 1 }
  1225. ]
  1226. },
  1227. "bone32": {
  1228. "rotate": [
  1229. { "time": 0, "angle": 0, "curve": "stepped" },
  1230. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1231. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1232. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1233. { "time": 2.3333, "angle": 0 }
  1234. ],
  1235. "translate": [
  1236. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1237. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1238. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1239. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1240. { "time": 2.3333, "x": 0, "y": 0 }
  1241. ],
  1242. "scale": [
  1243. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1244. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1245. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1246. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1247. { "time": 2.3333, "x": 1, "y": 1 }
  1248. ]
  1249. },
  1250. "bone33": {
  1251. "rotate": [
  1252. { "time": 0, "angle": 0, "curve": "stepped" },
  1253. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1254. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1255. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1256. { "time": 2.3333, "angle": 0 }
  1257. ],
  1258. "translate": [
  1259. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1260. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1261. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1262. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1263. { "time": 2.3333, "x": 0, "y": 0 }
  1264. ],
  1265. "scale": [
  1266. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1267. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1268. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1269. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1270. { "time": 2.3333, "x": 1, "y": 1 }
  1271. ]
  1272. },
  1273. "bone34": {
  1274. "rotate": [
  1275. { "time": 0, "angle": 0, "curve": "stepped" },
  1276. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1277. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1278. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1279. { "time": 2.3333, "angle": 0 }
  1280. ],
  1281. "translate": [
  1282. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1283. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1284. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1285. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1286. { "time": 2.3333, "x": 0, "y": 0 }
  1287. ],
  1288. "scale": [
  1289. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1290. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1291. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1292. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1293. { "time": 2.3333, "x": 1, "y": 1 }
  1294. ]
  1295. },
  1296. "bone35": {
  1297. "rotate": [
  1298. { "time": 0, "angle": 0, "curve": "stepped" },
  1299. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1300. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1301. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1302. { "time": 2.3333, "angle": 0 }
  1303. ],
  1304. "translate": [
  1305. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1306. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1307. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1308. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1309. { "time": 2.3333, "x": 0, "y": 0 }
  1310. ],
  1311. "scale": [
  1312. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1313. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1314. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1315. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1316. { "time": 2.3333, "x": 1, "y": 1 }
  1317. ]
  1318. },
  1319. "bone36": {
  1320. "rotate": [
  1321. { "time": 0, "angle": 0, "curve": "stepped" },
  1322. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1323. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1324. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1325. { "time": 2.3333, "angle": 0 }
  1326. ],
  1327. "translate": [
  1328. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1329. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1330. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1331. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1332. { "time": 2.3333, "x": 0, "y": 0 }
  1333. ],
  1334. "scale": [
  1335. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1336. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1337. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1338. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1339. { "time": 2.3333, "x": 1, "y": 1 }
  1340. ]
  1341. },
  1342. "bone37": {
  1343. "rotate": [
  1344. { "time": 0, "angle": 0, "curve": "stepped" },
  1345. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1346. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1347. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1348. { "time": 2.3333, "angle": 0 }
  1349. ],
  1350. "translate": [
  1351. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1352. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1353. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1354. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1355. { "time": 2.3333, "x": 0, "y": 0 }
  1356. ],
  1357. "scale": [
  1358. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1359. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1360. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1361. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1362. { "time": 2.3333, "x": 1, "y": 1 }
  1363. ]
  1364. },
  1365. "bone38": {
  1366. "rotate": [
  1367. { "time": 0, "angle": 0, "curve": "stepped" },
  1368. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1369. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1370. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1371. { "time": 2.3333, "angle": 0 }
  1372. ],
  1373. "translate": [
  1374. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1375. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1376. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1377. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1378. { "time": 2.3333, "x": 0, "y": 0 }
  1379. ],
  1380. "scale": [
  1381. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1382. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1383. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1384. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1385. { "time": 2.3333, "x": 1, "y": 1 }
  1386. ]
  1387. },
  1388. "bone39": {
  1389. "rotate": [
  1390. { "time": 0, "angle": 0 },
  1391. { "time": 0.6, "angle": -5.06 },
  1392. { "time": 1.1667, "angle": 0 },
  1393. { "time": 1.7667, "angle": -5.06 },
  1394. { "time": 2.3333, "angle": 0 }
  1395. ],
  1396. "translate": [
  1397. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1398. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1399. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1400. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1401. { "time": 2.3333, "x": 0, "y": 0 }
  1402. ],
  1403. "scale": [
  1404. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1405. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1406. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1407. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1408. { "time": 2.3333, "x": 1, "y": 1 }
  1409. ]
  1410. },
  1411. "bone40": {
  1412. "rotate": [
  1413. { "time": 0, "angle": 0 },
  1414. { "time": 0.6, "angle": -11.95 },
  1415. { "time": 1.1667, "angle": 0 },
  1416. { "time": 1.7667, "angle": -11.95 },
  1417. { "time": 2.3333, "angle": 0 }
  1418. ],
  1419. "translate": [
  1420. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1421. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1422. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1423. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1424. { "time": 2.3333, "x": 0, "y": 0 }
  1425. ],
  1426. "scale": [
  1427. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1428. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1429. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1430. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1431. { "time": 2.3333, "x": 1, "y": 1 }
  1432. ]
  1433. },
  1434. "bone41": {
  1435. "rotate": [
  1436. { "time": 0, "angle": 0, "curve": "stepped" },
  1437. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1438. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1439. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1440. { "time": 2.3333, "angle": 0 }
  1441. ],
  1442. "translate": [
  1443. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1444. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1445. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1446. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1447. { "time": 2.3333, "x": 0, "y": 0 }
  1448. ],
  1449. "scale": [
  1450. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1451. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1452. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1453. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1454. { "time": 2.3333, "x": 1, "y": 1 }
  1455. ]
  1456. },
  1457. "bone42": {
  1458. "rotate": [
  1459. { "time": 0, "angle": 0, "curve": "stepped" },
  1460. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1461. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1462. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1463. { "time": 2.3333, "angle": 0 }
  1464. ],
  1465. "translate": [
  1466. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1467. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1468. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1469. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1470. { "time": 2.3333, "x": 0, "y": 0 }
  1471. ],
  1472. "scale": [
  1473. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1474. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1475. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1476. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1477. { "time": 2.3333, "x": 1, "y": 1 }
  1478. ]
  1479. },
  1480. "bone43": {
  1481. "rotate": [
  1482. { "time": 0, "angle": 0 },
  1483. { "time": 0.6, "angle": 5.43 },
  1484. { "time": 1.1667, "angle": 0 },
  1485. { "time": 1.7667, "angle": 5.43 },
  1486. { "time": 2.3333, "angle": 0 }
  1487. ],
  1488. "translate": [
  1489. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1490. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1491. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1492. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1493. { "time": 2.3333, "x": 0, "y": 0 }
  1494. ],
  1495. "scale": [
  1496. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1497. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1498. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1499. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1500. { "time": 2.3333, "x": 1, "y": 1 }
  1501. ]
  1502. },
  1503. "bone44": {
  1504. "rotate": [
  1505. { "time": 0, "angle": 0 },
  1506. { "time": 0.6, "angle": 8.37 },
  1507. { "time": 1.1667, "angle": 0 },
  1508. { "time": 1.7667, "angle": 8.37 },
  1509. { "time": 2.3333, "angle": 0 }
  1510. ],
  1511. "translate": [
  1512. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1513. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1514. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1515. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1516. { "time": 2.3333, "x": 0, "y": 0 }
  1517. ],
  1518. "scale": [
  1519. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1520. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1521. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1522. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1523. { "time": 2.3333, "x": 1, "y": 1 }
  1524. ]
  1525. },
  1526. "bone45": {
  1527. "rotate": [
  1528. { "time": 0, "angle": 0, "curve": "stepped" },
  1529. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1530. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1531. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1532. { "time": 2.3333, "angle": 0 }
  1533. ],
  1534. "translate": [
  1535. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1536. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1537. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1538. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1539. { "time": 2.3333, "x": 0, "y": 0 }
  1540. ],
  1541. "scale": [
  1542. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1543. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1544. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1545. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1546. { "time": 2.3333, "x": 1, "y": 1 }
  1547. ]
  1548. },
  1549. "bone46": {
  1550. "scale": [
  1551. { "time": 0, "x": 0.1, "y": 0.1 }
  1552. ]
  1553. }
  1554. },
  1555. "deform": {
  1556. "default": {
  1557. "mazi01": {
  1558. "mazi01": [
  1559. { "time": 0 },
  1560. {
  1561. "time": 0.6,
  1562. "offset": 4,
  1563. "vertices": [ 8.35661, 1.68184, 7.67467, 0.43319 ]
  1564. },
  1565. { "time": 1.1667 },
  1566. {
  1567. "time": 1.7667,
  1568. "offset": 4,
  1569. "vertices": [ 8.35661, 1.68184, 7.67467, 0.43319 ]
  1570. },
  1571. { "time": 2.3333 }
  1572. ]
  1573. },
  1574. "mazi02": {
  1575. "mazi02": [
  1576. { "time": 0 },
  1577. {
  1578. "time": 0.6,
  1579. "vertices": [ 1.32754, -2.4774, 0, 0, -1.11673, -1.62129, -3.30464, -1.86119, -2.19208, -0.51285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.64938, -3.89412, -3.23606, -0.30999, 0, 0, 0.08159, 5.38441, 4.87314, 3.61243 ]
  1580. },
  1581. { "time": 1.1667 },
  1582. {
  1583. "time": 1.7667,
  1584. "vertices": [ 1.32754, -2.4774, 0, 0, -1.11673, -1.62129, -3.30464, -1.86119, -2.19208, -0.51285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.64938, -3.89412, -3.23606, -0.30999, 0, 0, 0.08159, 5.38441, 4.87314, 3.61243 ]
  1585. },
  1586. { "time": 2.3333 }
  1587. ]
  1588. },
  1589. "shenti": {
  1590. "shenti": [
  1591. { "time": 0 },
  1592. {
  1593. "time": 0.6,
  1594. "vertices": [ -4.88557, 1.68952, -0.78761, -3.64157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.73921, -0.56034, 0, 0, 1.88365, 0.81051, 1.88924, 0.79718 ]
  1595. },
  1596. { "time": 1.1667 },
  1597. {
  1598. "time": 1.7667,
  1599. "vertices": [ -4.88557, 1.68952, -0.78761, -3.64157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.73921, -0.56034, 0, 0, 1.88365, 0.81051, 1.88924, 0.79718 ]
  1600. },
  1601. { "time": 2.3333 }
  1602. ]
  1603. },
  1604. "toufa6": {
  1605. "toufa6": [
  1606. { "time": 0 },
  1607. {
  1608. "time": 0.6,
  1609. "vertices": [ 4.92059, -0.65462, 2.3197, -0.03511, 4.06385, 0.22848 ]
  1610. },
  1611. { "time": 1.1667 },
  1612. {
  1613. "time": 1.7667,
  1614. "vertices": [ 4.92059, -0.65462, 2.3197, -0.03511, 4.06385, 0.22848 ]
  1615. },
  1616. { "time": 2.3333 }
  1617. ]
  1618. }
  1619. }
  1620. }
  1621. },
  1622. "stand2": {
  1623. "slots": {
  1624. "20wake": {
  1625. "color": [
  1626. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1627. { "time": 1.7333, "color": "ffffff00" },
  1628. { "time": 1.7667, "color": "ffffffff" },
  1629. { "time": 1.8, "color": "ffffff00" }
  1630. ],
  1631. "attachment": [
  1632. { "time": 0, "name": "20wake" },
  1633. { "time": 1.7667, "name": "20wake" }
  1634. ]
  1635. },
  1636. "biyan": {
  1637. "attachment": [
  1638. { "time": 1.2667, "name": "biyan" },
  1639. { "time": 1.3667, "name": null },
  1640. { "time": 3.6, "name": "biyan" },
  1641. { "time": 3.7, "name": null }
  1642. ]
  1643. },
  1644. "guaishou": {
  1645. "color": [
  1646. { "time": 0, "color": "ffffff00" }
  1647. ]
  1648. },
  1649. "huangse": {
  1650. "color": [
  1651. { "time": 0, "color": "ffffff00" }
  1652. ]
  1653. },
  1654. "huangse 2": {
  1655. "color": [
  1656. { "time": 0, "color": "ffffff00" }
  1657. ]
  1658. },
  1659. "huangse 3": {
  1660. "color": [
  1661. { "time": 0, "color": "ffffff00" }
  1662. ]
  1663. },
  1664. "paopao": {
  1665. "color": [
  1666. { "time": 0, "color": "ffffff00" },
  1667. { "time": 0.3333, "color": "ffffffff", "curve": "stepped" },
  1668. { "time": 2.3333, "color": "ffffffff", "curve": "stepped" },
  1669. { "time": 2.4333, "color": "ffffffff" }
  1670. ],
  1671. "attachment": [
  1672. { "time": 1.7333, "name": null }
  1673. ]
  1674. },
  1675. "pinmu": {
  1676. "color": [
  1677. { "time": 0, "color": "ffffff00" }
  1678. ]
  1679. },
  1680. "youyan": {
  1681. "attachment": [
  1682. { "time": 1.2667, "name": null },
  1683. { "time": 1.3667, "name": "youyan" },
  1684. { "time": 3.6, "name": null },
  1685. { "time": 3.7, "name": "youyan" }
  1686. ]
  1687. }
  1688. },
  1689. "bones": {
  1690. "root": {
  1691. "rotate": [
  1692. { "time": 0, "angle": 0 }
  1693. ],
  1694. "translate": [
  1695. { "time": 0, "x": 0, "y": 0 }
  1696. ],
  1697. "scale": [
  1698. { "time": 0, "x": 0.65, "y": 0.65 }
  1699. ]
  1700. },
  1701. "bone2": {
  1702. "rotate": [
  1703. { "time": 0, "angle": 0, "curve": "stepped" },
  1704. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1705. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1706. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1707. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1708. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1709. { "time": 3.5, "angle": 0, "curve": "stepped" },
  1710. { "time": 4.1, "angle": 0, "curve": "stepped" },
  1711. { "time": 4.6667, "angle": 0 }
  1712. ],
  1713. "translate": [
  1714. { "time": 0, "x": 0, "y": 0 },
  1715. { "time": 0.6, "x": 5.39, "y": 0.01 },
  1716. { "time": 1.1667, "x": 0, "y": 0 },
  1717. { "time": 1.7667, "x": 5.39, "y": 0.01 },
  1718. { "time": 2.3333, "x": 0, "y": 0 },
  1719. { "time": 2.9333, "x": 5.39, "y": 0.01 },
  1720. { "time": 3.5, "x": 0, "y": 0 },
  1721. { "time": 4.1, "x": 5.39, "y": 0.01 },
  1722. { "time": 4.6667, "x": 0, "y": 0 }
  1723. ],
  1724. "scale": [
  1725. { "time": 0, "x": 1, "y": 1 },
  1726. { "time": 0.6, "x": 1.02, "y": 1 },
  1727. { "time": 1.1667, "x": 1, "y": 1 },
  1728. { "time": 1.7667, "x": 1.02, "y": 1 },
  1729. { "time": 2.3333, "x": 1, "y": 1 },
  1730. { "time": 2.9333, "x": 1.02, "y": 1 },
  1731. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1732. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  1733. { "time": 4.6667, "x": 1, "y": 1 }
  1734. ]
  1735. },
  1736. "bone3": {
  1737. "rotate": [
  1738. { "time": 0, "angle": 0, "curve": "stepped" },
  1739. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1740. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1741. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1742. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1743. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1744. { "time": 3.5, "angle": 0, "curve": "stepped" },
  1745. { "time": 4.1, "angle": 0, "curve": "stepped" },
  1746. { "time": 4.6667, "angle": 0 }
  1747. ],
  1748. "translate": [
  1749. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1750. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1751. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1752. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1753. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1754. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1755. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1756. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  1757. { "time": 4.6667, "x": 0, "y": 0 }
  1758. ],
  1759. "scale": [
  1760. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1761. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1762. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1763. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1764. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1765. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1766. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1767. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  1768. { "time": 4.6667, "x": 1, "y": 1 }
  1769. ]
  1770. },
  1771. "bone4": {
  1772. "rotate": [
  1773. { "time": 0, "angle": 0, "curve": "stepped" },
  1774. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1775. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1776. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1777. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1778. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1779. { "time": 3.5, "angle": 0, "curve": "stepped" },
  1780. { "time": 4.1, "angle": 0, "curve": "stepped" },
  1781. { "time": 4.6667, "angle": 0 }
  1782. ],
  1783. "translate": [
  1784. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1785. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1786. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1787. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1788. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1789. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1790. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1791. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  1792. { "time": 4.6667, "x": 0, "y": 0 }
  1793. ],
  1794. "scale": [
  1795. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1796. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1797. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1798. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1799. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1800. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1801. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1802. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  1803. { "time": 4.6667, "x": 1, "y": 1 }
  1804. ]
  1805. },
  1806. "bone5": {
  1807. "rotate": [
  1808. { "time": 0, "angle": 0 },
  1809. { "time": 0.6, "angle": -11.19 },
  1810. { "time": 1.1667, "angle": 0 },
  1811. { "time": 1.7667, "angle": -11.19 },
  1812. { "time": 2.3333, "angle": 0 },
  1813. { "time": 2.9333, "angle": -11.19 },
  1814. { "time": 3.5, "angle": 0 },
  1815. { "time": 4.1, "angle": -11.19 },
  1816. { "time": 4.6667, "angle": 0 }
  1817. ],
  1818. "translate": [
  1819. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1820. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1821. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1822. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1823. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1824. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1825. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1826. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  1827. { "time": 4.6667, "x": 0, "y": 0 }
  1828. ],
  1829. "scale": [
  1830. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1831. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1832. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1833. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1834. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1835. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1836. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1837. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  1838. { "time": 4.6667, "x": 1, "y": 1 }
  1839. ]
  1840. },
  1841. "bone6": {
  1842. "rotate": [
  1843. { "time": 0, "angle": 0 },
  1844. { "time": 0.6, "angle": -21.44 },
  1845. { "time": 1.1667, "angle": 0 },
  1846. { "time": 1.7667, "angle": -21.44 },
  1847. { "time": 2.3333, "angle": 0 },
  1848. { "time": 2.9333, "angle": -21.44 },
  1849. { "time": 3.5, "angle": 0 },
  1850. { "time": 4.1, "angle": -21.44 },
  1851. { "time": 4.6667, "angle": 0 }
  1852. ],
  1853. "translate": [
  1854. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1855. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1856. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1857. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1858. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1859. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1860. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1861. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  1862. { "time": 4.6667, "x": 0, "y": 0 }
  1863. ],
  1864. "scale": [
  1865. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1866. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1867. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1868. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1869. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1870. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1871. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1872. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  1873. { "time": 4.6667, "x": 1, "y": 1 }
  1874. ]
  1875. },
  1876. "bone7": {
  1877. "rotate": [
  1878. {
  1879. "time": 0,
  1880. "angle": 0,
  1881. "curve": [ 0.25, 0, 0.75, 1 ]
  1882. },
  1883. {
  1884. "time": 0.6,
  1885. "angle": 9.66,
  1886. "curve": [ 0.25, 0, 0.75, 1 ]
  1887. },
  1888. {
  1889. "time": 1.1667,
  1890. "angle": 0,
  1891. "curve": [ 0.25, 0, 0.75, 1 ]
  1892. },
  1893. {
  1894. "time": 1.7667,
  1895. "angle": 9.66,
  1896. "curve": [ 0.25, 0, 0.75, 1 ]
  1897. },
  1898. {
  1899. "time": 2.3333,
  1900. "angle": 0,
  1901. "curve": [ 0.25, 0, 0.75, 1 ]
  1902. },
  1903. {
  1904. "time": 2.9333,
  1905. "angle": 9.66,
  1906. "curve": [ 0.25, 0, 0.75, 1 ]
  1907. },
  1908. {
  1909. "time": 3.5,
  1910. "angle": 0,
  1911. "curve": [ 0.25, 0, 0.75, 1 ]
  1912. },
  1913. {
  1914. "time": 4.1,
  1915. "angle": 9.66,
  1916. "curve": [ 0.25, 0, 0.75, 1 ]
  1917. },
  1918. { "time": 4.6667, "angle": 0 }
  1919. ],
  1920. "translate": [
  1921. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1922. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1923. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1924. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1925. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1926. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1927. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1928. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  1929. { "time": 4.6667, "x": 0, "y": 0 }
  1930. ],
  1931. "scale": [
  1932. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1933. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1934. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1935. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1936. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1937. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1938. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1939. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  1940. { "time": 4.6667, "x": 1, "y": 1 }
  1941. ]
  1942. },
  1943. "bone8": {
  1944. "rotate": [
  1945. {
  1946. "time": 0,
  1947. "angle": 0,
  1948. "curve": [ 0.25, 0, 0.75, 1 ]
  1949. },
  1950. {
  1951. "time": 0.6,
  1952. "angle": 4.17,
  1953. "curve": [ 0.25, 0, 0.75, 1 ]
  1954. },
  1955. {
  1956. "time": 1.1667,
  1957. "angle": 0,
  1958. "curve": [ 0.25, 0, 0.75, 1 ]
  1959. },
  1960. {
  1961. "time": 1.7667,
  1962. "angle": 4.17,
  1963. "curve": [ 0.25, 0, 0.75, 1 ]
  1964. },
  1965. {
  1966. "time": 2.3333,
  1967. "angle": 0,
  1968. "curve": [ 0.25, 0, 0.75, 1 ]
  1969. },
  1970. {
  1971. "time": 2.9333,
  1972. "angle": 4.17,
  1973. "curve": [ 0.25, 0, 0.75, 1 ]
  1974. },
  1975. {
  1976. "time": 3.5,
  1977. "angle": 0,
  1978. "curve": [ 0.25, 0, 0.75, 1 ]
  1979. },
  1980. {
  1981. "time": 4.1,
  1982. "angle": 4.17,
  1983. "curve": [ 0.25, 0, 0.75, 1 ]
  1984. },
  1985. { "time": 4.6667, "angle": 0 }
  1986. ],
  1987. "translate": [
  1988. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1989. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1990. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1991. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1992. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1993. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1994. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1995. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  1996. { "time": 4.6667, "x": 0, "y": 0 }
  1997. ],
  1998. "scale": [
  1999. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2000. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2001. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2002. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2003. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2004. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2005. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2006. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2007. { "time": 4.6667, "x": 1, "y": 1 }
  2008. ]
  2009. },
  2010. "bone9": {
  2011. "rotate": [
  2012. { "time": 0, "angle": 0 },
  2013. { "time": 0.6, "angle": 13.01 },
  2014. { "time": 1.1667, "angle": 0 },
  2015. { "time": 1.7667, "angle": 13.01 },
  2016. { "time": 2.3333, "angle": 0 },
  2017. { "time": 2.9333, "angle": 13.01 },
  2018. { "time": 3.5, "angle": 0 },
  2019. { "time": 4.1, "angle": 13.01 },
  2020. { "time": 4.6667, "angle": 0 }
  2021. ],
  2022. "translate": [
  2023. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2024. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2025. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2026. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2027. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2028. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2029. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2030. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2031. { "time": 4.6667, "x": 0, "y": 0 }
  2032. ],
  2033. "scale": [
  2034. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2035. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2036. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2037. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2038. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2039. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2040. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2041. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2042. { "time": 4.6667, "x": 1, "y": 1 }
  2043. ]
  2044. },
  2045. "bone10": {
  2046. "rotate": [
  2047. { "time": 0, "angle": 0 },
  2048. { "time": 0.6, "angle": -12.08 },
  2049. { "time": 1.1667, "angle": 0 },
  2050. { "time": 1.7667, "angle": -12.08 },
  2051. { "time": 2.3333, "angle": 0 },
  2052. { "time": 2.9333, "angle": -12.08 },
  2053. { "time": 3.5, "angle": 0 },
  2054. { "time": 4.1, "angle": -12.08 },
  2055. { "time": 4.6667, "angle": 0 }
  2056. ],
  2057. "translate": [
  2058. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2059. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2060. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2061. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2062. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2063. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2064. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2065. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2066. { "time": 4.6667, "x": 0, "y": 0 }
  2067. ],
  2068. "scale": [
  2069. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2070. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2071. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2072. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2073. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2074. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2075. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2076. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2077. { "time": 4.6667, "x": 1, "y": 1 }
  2078. ]
  2079. },
  2080. "bone11": {
  2081. "rotate": [
  2082. { "time": 0, "angle": 0 },
  2083. { "time": 0.6, "angle": -1.68 },
  2084. { "time": 1.1667, "angle": 0 },
  2085. { "time": 1.7667, "angle": -1.68 },
  2086. { "time": 2.3333, "angle": 0 },
  2087. { "time": 2.9333, "angle": -1.68 },
  2088. { "time": 3.5, "angle": 0 },
  2089. { "time": 4.1, "angle": -1.68 },
  2090. { "time": 4.6667, "angle": 0 }
  2091. ],
  2092. "translate": [
  2093. { "time": 0, "x": 0, "y": 0 },
  2094. { "time": 0.6, "x": 2.02, "y": -0.95 },
  2095. { "time": 1.1667, "x": 0, "y": 0 },
  2096. { "time": 1.7667, "x": 2.02, "y": -0.95 },
  2097. { "time": 2.3333, "x": 0, "y": 0 },
  2098. { "time": 2.9333, "x": 2.02, "y": -0.95 },
  2099. { "time": 3.5, "x": 0, "y": 0 },
  2100. { "time": 4.1, "x": 2.02, "y": -0.95 },
  2101. { "time": 4.6667, "x": 0, "y": 0 }
  2102. ],
  2103. "scale": [
  2104. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2105. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2106. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2107. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2108. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2109. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2110. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2111. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2112. { "time": 4.6667, "x": 1, "y": 1 }
  2113. ]
  2114. },
  2115. "bone12": {
  2116. "rotate": [
  2117. { "time": 0, "angle": 0 },
  2118. { "time": 0.6, "angle": -10.53 },
  2119. { "time": 0.8667, "angle": 0.64 },
  2120. { "time": 1.1667, "angle": 0 },
  2121. { "time": 1.7667, "angle": -10.53 },
  2122. { "time": 2.0333, "angle": 0.64 },
  2123. { "time": 2.3333, "angle": 0 },
  2124. { "time": 2.9333, "angle": -10.53 },
  2125. { "time": 3.2, "angle": 0.64 },
  2126. { "time": 3.5, "angle": 0 },
  2127. { "time": 4.1, "angle": -10.53 },
  2128. { "time": 4.3667, "angle": 0.64 },
  2129. { "time": 4.6667, "angle": 0 }
  2130. ],
  2131. "translate": [
  2132. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2133. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2134. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2135. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2136. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2137. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2138. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2139. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2140. { "time": 4.6667, "x": 0, "y": 0 }
  2141. ],
  2142. "scale": [
  2143. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2144. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2145. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2146. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2147. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2148. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2149. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2150. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2151. { "time": 4.6667, "x": 1, "y": 1 }
  2152. ]
  2153. },
  2154. "bone13": {
  2155. "rotate": [
  2156. { "time": 0, "angle": 0 },
  2157. { "time": 0.6, "angle": -2.51 },
  2158. { "time": 1.1667, "angle": 0 },
  2159. { "time": 1.7667, "angle": -2.51 },
  2160. { "time": 2.3333, "angle": 0 },
  2161. { "time": 2.9333, "angle": -2.51 },
  2162. { "time": 3.5, "angle": 0 },
  2163. { "time": 4.1, "angle": -2.51 },
  2164. { "time": 4.6667, "angle": 0 }
  2165. ],
  2166. "translate": [
  2167. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2168. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2169. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2170. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2171. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2172. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2173. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2174. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2175. { "time": 4.6667, "x": 0, "y": 0 }
  2176. ],
  2177. "scale": [
  2178. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2179. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2180. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2181. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2182. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2183. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2184. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2185. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2186. { "time": 4.6667, "x": 1, "y": 1 }
  2187. ]
  2188. },
  2189. "bone14": {
  2190. "rotate": [
  2191. { "time": 0, "angle": 0 },
  2192. { "time": 0.6, "angle": -4.54 },
  2193. { "time": 0.8667, "angle": -9.41 },
  2194. { "time": 1.1667, "angle": 0 },
  2195. { "time": 1.7667, "angle": -4.54 },
  2196. { "time": 2.0333, "angle": -9.41 },
  2197. { "time": 2.3333, "angle": 0 },
  2198. { "time": 2.9333, "angle": -4.54 },
  2199. { "time": 3.2, "angle": -9.41 },
  2200. { "time": 3.5, "angle": 0 },
  2201. { "time": 4.1, "angle": -4.54 },
  2202. { "time": 4.3667, "angle": -9.41 },
  2203. { "time": 4.6667, "angle": 0 }
  2204. ],
  2205. "translate": [
  2206. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2207. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2208. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2209. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2210. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2211. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2212. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2213. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2214. { "time": 4.6667, "x": 0, "y": 0 }
  2215. ],
  2216. "scale": [
  2217. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2218. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2219. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2220. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2221. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2222. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2223. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2224. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2225. { "time": 4.6667, "x": 1, "y": 1 }
  2226. ]
  2227. },
  2228. "bone15": {
  2229. "rotate": [
  2230. { "time": 0, "angle": 0 },
  2231. { "time": 0.6, "angle": -15.16 },
  2232. { "time": 0.8667, "angle": -23.76 },
  2233. { "time": 1.1667, "angle": 0 },
  2234. { "time": 1.7667, "angle": -15.16 },
  2235. { "time": 2.0333, "angle": -23.76 },
  2236. { "time": 2.3333, "angle": 0 },
  2237. { "time": 2.9333, "angle": -15.16 },
  2238. { "time": 3.2, "angle": -23.76 },
  2239. { "time": 3.5, "angle": 0 },
  2240. { "time": 4.1, "angle": -15.16 },
  2241. { "time": 4.3667, "angle": -23.76 },
  2242. { "time": 4.6667, "angle": 0 }
  2243. ],
  2244. "translate": [
  2245. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2246. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2247. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2248. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2249. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2250. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2251. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2252. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2253. { "time": 4.6667, "x": 0, "y": 0 }
  2254. ],
  2255. "scale": [
  2256. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2258. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2259. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2260. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2261. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2262. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2263. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2264. { "time": 4.6667, "x": 1, "y": 1 }
  2265. ]
  2266. },
  2267. "bone16": {
  2268. "rotate": [
  2269. { "time": 0, "angle": 0 },
  2270. { "time": 0.6, "angle": -14.66 },
  2271. { "time": 1.1667, "angle": 0 },
  2272. { "time": 1.7667, "angle": -14.66 },
  2273. { "time": 2.3333, "angle": 0 },
  2274. { "time": 2.9333, "angle": -14.66 },
  2275. { "time": 3.5, "angle": 0 },
  2276. { "time": 4.1, "angle": -14.66 },
  2277. { "time": 4.6667, "angle": 0 }
  2278. ],
  2279. "translate": [
  2280. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2281. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2282. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2283. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2284. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2285. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2286. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2287. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2288. { "time": 4.6667, "x": 0, "y": 0 }
  2289. ],
  2290. "scale": [
  2291. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2292. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2293. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2294. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2295. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2296. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2297. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2298. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2299. { "time": 4.6667, "x": 1, "y": 1 }
  2300. ]
  2301. },
  2302. "bone17": {
  2303. "rotate": [
  2304. { "time": 0, "angle": 0 },
  2305. { "time": 0.6, "angle": -6.02 },
  2306. { "time": 1.1667, "angle": 0 },
  2307. { "time": 1.7667, "angle": -6.02 },
  2308. { "time": 2.3333, "angle": 0 },
  2309. { "time": 2.9333, "angle": -6.02 },
  2310. { "time": 3.5, "angle": 0 },
  2311. { "time": 4.1, "angle": -6.02 },
  2312. { "time": 4.6667, "angle": 0 }
  2313. ],
  2314. "translate": [
  2315. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2316. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2317. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2318. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2319. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2320. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2321. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2322. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2323. { "time": 4.6667, "x": 0, "y": 0 }
  2324. ],
  2325. "scale": [
  2326. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2327. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2328. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2329. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2330. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2331. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2332. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2333. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2334. { "time": 4.6667, "x": 1, "y": 1 }
  2335. ]
  2336. },
  2337. "bone18": {
  2338. "rotate": [
  2339. { "time": 0, "angle": 0, "curve": "stepped" },
  2340. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2341. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2342. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2343. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2344. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2345. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2346. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2347. { "time": 4.6667, "angle": 0 }
  2348. ],
  2349. "translate": [
  2350. { "time": 0, "x": 0, "y": 0 },
  2351. { "time": 0.6, "x": -0.24, "y": -2.98 },
  2352. { "time": 1.1667, "x": 0, "y": 0 },
  2353. { "time": 1.7667, "x": -0.24, "y": -2.98 },
  2354. { "time": 2.3333, "x": 0, "y": 0 },
  2355. { "time": 2.9333, "x": -0.24, "y": -2.98 },
  2356. { "time": 3.5, "x": 0, "y": 0 },
  2357. { "time": 4.1, "x": -0.24, "y": -2.98 },
  2358. { "time": 4.6667, "x": 0, "y": 0 }
  2359. ],
  2360. "scale": [
  2361. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2362. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2363. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2364. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2365. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2366. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2367. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2368. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2369. { "time": 4.6667, "x": 1, "y": 1 }
  2370. ]
  2371. },
  2372. "bone19": {
  2373. "rotate": [
  2374. { "time": 0, "angle": 0, "curve": "stepped" },
  2375. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2376. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2377. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2378. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2379. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2380. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2381. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2382. { "time": 4.6667, "angle": 0 }
  2383. ],
  2384. "translate": [
  2385. { "time": 0, "x": 0, "y": 0 },
  2386. { "time": 0.6, "x": 3.23, "y": -1.69 },
  2387. { "time": 1.1667, "x": 0, "y": 0 },
  2388. { "time": 1.7667, "x": 3.23, "y": -1.69 },
  2389. { "time": 2.3333, "x": 0, "y": 0 },
  2390. { "time": 2.9333, "x": 3.23, "y": -1.69 },
  2391. { "time": 3.5, "x": 0, "y": 0 },
  2392. { "time": 4.1, "x": 3.23, "y": -1.69 },
  2393. { "time": 4.6667, "x": 0, "y": 0 }
  2394. ],
  2395. "scale": [
  2396. { "time": 0, "x": 1, "y": 1 },
  2397. { "time": 0.6, "x": 1.02, "y": 1.02 },
  2398. { "time": 1.1667, "x": 1, "y": 1 },
  2399. { "time": 1.7667, "x": 1.02, "y": 1.02 },
  2400. { "time": 2.3333, "x": 1, "y": 1 },
  2401. { "time": 2.9333, "x": 1.02, "y": 1.02 },
  2402. { "time": 3.5, "x": 1, "y": 1 },
  2403. { "time": 4.1, "x": 1.02, "y": 1.02 },
  2404. { "time": 4.6667, "x": 1, "y": 1 }
  2405. ]
  2406. },
  2407. "bone20": {
  2408. "rotate": [
  2409. { "time": 0, "angle": 0, "curve": "stepped" },
  2410. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2411. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2412. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  2413. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  2414. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  2415. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2416. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2417. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2418. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2419. { "time": 3.6, "angle": 0, "curve": "stepped" },
  2420. { "time": 3.7, "angle": 0, "curve": "stepped" },
  2421. { "time": 3.8, "angle": 0, "curve": "stepped" },
  2422. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2423. { "time": 4.6667, "angle": 0 }
  2424. ],
  2425. "translate": [
  2426. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2427. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2428. { "time": 1.1667, "x": 0, "y": 0 },
  2429. { "time": 1.2667, "x": -1.52, "y": -0.06, "curve": "stepped" },
  2430. { "time": 1.3667, "x": -1.52, "y": -0.06 },
  2431. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2432. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2433. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2434. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2435. { "time": 3.5, "x": 0, "y": 0 },
  2436. { "time": 3.6, "x": -1.52, "y": -0.06, "curve": "stepped" },
  2437. { "time": 3.7, "x": -1.52, "y": -0.06 },
  2438. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2439. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2440. { "time": 4.6667, "x": 0, "y": 0 }
  2441. ],
  2442. "scale": [
  2443. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2444. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2445. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2446. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2447. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2448. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2449. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2450. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2451. { "time": 4.6667, "x": 1, "y": 1 }
  2452. ]
  2453. },
  2454. "bone21": {
  2455. "rotate": [
  2456. { "time": 0, "angle": 0, "curve": "stepped" },
  2457. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2458. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2459. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2460. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2461. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2462. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2463. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2464. { "time": 4.6667, "angle": 0 }
  2465. ],
  2466. "translate": [
  2467. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2468. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2469. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2470. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2471. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2472. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2473. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2474. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2475. { "time": 4.6667, "x": 0, "y": 0 }
  2476. ],
  2477. "scale": [
  2478. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2479. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2480. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2481. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2482. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2483. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2484. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2485. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2486. { "time": 4.6667, "x": 1, "y": 1 }
  2487. ]
  2488. },
  2489. "bone22": {
  2490. "rotate": [
  2491. { "time": 0, "angle": 0, "curve": "stepped" },
  2492. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2493. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2494. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  2495. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  2496. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  2497. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2498. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2499. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2500. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2501. { "time": 3.6, "angle": 0, "curve": "stepped" },
  2502. { "time": 3.7, "angle": 0, "curve": "stepped" },
  2503. { "time": 3.8, "angle": 0, "curve": "stepped" },
  2504. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2505. { "time": 4.6667, "angle": 0 }
  2506. ],
  2507. "translate": [
  2508. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2509. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2510. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2511. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2512. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  2513. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2514. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2515. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2516. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2517. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2518. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  2519. { "time": 3.7, "x": 0, "y": 0, "curve": "stepped" },
  2520. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2521. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2522. { "time": 4.6667, "x": 0, "y": 0 }
  2523. ],
  2524. "scale": [
  2525. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2526. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2527. { "time": 1.1667, "x": 1, "y": 1 },
  2528. { "time": 1.2667, "x": 0.464, "y": 1, "curve": "stepped" },
  2529. { "time": 1.3667, "x": 0.464, "y": 1 },
  2530. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2531. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2532. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2533. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2534. { "time": 3.5, "x": 1, "y": 1 },
  2535. { "time": 3.6, "x": 0.464, "y": 1, "curve": "stepped" },
  2536. { "time": 3.7, "x": 0.464, "y": 1 },
  2537. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2538. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2539. { "time": 4.6667, "x": 1, "y": 1 }
  2540. ]
  2541. },
  2542. "bone23": {
  2543. "rotate": [
  2544. { "time": 0, "angle": 0, "curve": "stepped" },
  2545. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2546. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2547. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  2548. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  2549. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2550. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2551. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2552. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2553. { "time": 3.6, "angle": 0, "curve": "stepped" },
  2554. { "time": 3.7, "angle": 0, "curve": "stepped" },
  2555. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2556. { "time": 4.6667, "angle": 0 }
  2557. ],
  2558. "translate": [
  2559. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2560. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2561. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2562. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2563. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  2564. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2565. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2566. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2567. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2568. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2569. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  2570. { "time": 3.7, "x": 0, "y": 0, "curve": "stepped" },
  2571. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  2572. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2573. { "time": 4.6667, "x": 0, "y": 0 }
  2574. ],
  2575. "scale": [
  2576. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2577. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2578. { "time": 1.1667, "x": 1, "y": 1 },
  2579. { "time": 1.2667, "x": 0.451, "y": 1, "curve": "stepped" },
  2580. { "time": 1.3667, "x": 0.451, "y": 1 },
  2581. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2582. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2583. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2584. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2585. { "time": 3.5, "x": 1, "y": 1 },
  2586. { "time": 3.6, "x": 0.451, "y": 1, "curve": "stepped" },
  2587. { "time": 3.7, "x": 0.451, "y": 1 },
  2588. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  2589. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2590. { "time": 4.6667, "x": 1, "y": 1 }
  2591. ]
  2592. },
  2593. "bone24": {
  2594. "rotate": [
  2595. { "time": 0, "angle": 7.72 },
  2596. { "time": 0.6, "angle": -4.14 },
  2597. { "time": 1.1667, "angle": 7.72 },
  2598. { "time": 1.7667, "angle": -4.14 },
  2599. { "time": 2.3333, "angle": 7.72 },
  2600. { "time": 2.9333, "angle": -4.14 },
  2601. { "time": 3.5, "angle": 7.72 },
  2602. { "time": 4.1, "angle": -4.14 },
  2603. { "time": 4.6667, "angle": 7.72 }
  2604. ],
  2605. "translate": [
  2606. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2607. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2608. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2609. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2610. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2611. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2612. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2613. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2614. { "time": 4.6667, "x": 0, "y": 0 }
  2615. ],
  2616. "scale": [
  2617. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2618. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2619. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2620. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2621. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2622. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2623. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2624. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2625. { "time": 4.6667, "x": 1, "y": 1 }
  2626. ]
  2627. },
  2628. "bone25": {
  2629. "rotate": [
  2630. { "time": 0, "angle": 0 },
  2631. { "time": 0.6, "angle": 13.55 },
  2632. { "time": 1.1667, "angle": 0 },
  2633. { "time": 1.7667, "angle": 13.55 },
  2634. { "time": 2.3333, "angle": 0 },
  2635. { "time": 2.9333, "angle": 13.55 },
  2636. { "time": 3.5, "angle": 0 },
  2637. { "time": 4.1, "angle": 13.55 },
  2638. { "time": 4.6667, "angle": 0 }
  2639. ],
  2640. "translate": [
  2641. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2642. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2643. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2644. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2645. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2646. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2647. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2648. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2649. { "time": 4.6667, "x": 0, "y": 0 }
  2650. ],
  2651. "scale": [
  2652. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2653. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2654. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2655. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2656. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2657. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2658. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2659. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2660. { "time": 4.6667, "x": 1, "y": 1 }
  2661. ]
  2662. },
  2663. "bone26": {
  2664. "rotate": [
  2665. { "time": 0, "angle": 0 },
  2666. { "time": 0.6, "angle": 4.46 },
  2667. { "time": 1.1667, "angle": 0 },
  2668. { "time": 1.7667, "angle": 4.46 },
  2669. { "time": 2.3333, "angle": 0 },
  2670. { "time": 2.9333, "angle": 4.46 },
  2671. { "time": 3.5, "angle": 0 },
  2672. { "time": 4.1, "angle": 4.46 },
  2673. { "time": 4.6667, "angle": 0 }
  2674. ],
  2675. "translate": [
  2676. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2677. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2678. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2679. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2680. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2681. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2682. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2683. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2684. { "time": 4.6667, "x": 0, "y": 0 }
  2685. ],
  2686. "scale": [
  2687. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2688. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2689. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2690. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2691. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2692. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2693. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2694. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2695. { "time": 4.6667, "x": 1, "y": 1 }
  2696. ]
  2697. },
  2698. "bone27": {
  2699. "rotate": [
  2700. { "time": 0, "angle": -4.15 },
  2701. { "time": 0.6, "angle": 13.2 },
  2702. { "time": 1.1667, "angle": -4.15 },
  2703. { "time": 1.7667, "angle": 13.2 },
  2704. { "time": 2.3333, "angle": -4.15 },
  2705. { "time": 2.9333, "angle": 13.2 },
  2706. { "time": 3.5, "angle": -4.15 },
  2707. { "time": 4.1, "angle": 13.2 },
  2708. { "time": 4.6667, "angle": -4.15 }
  2709. ],
  2710. "translate": [
  2711. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2712. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2713. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2714. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2715. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2716. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2717. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2718. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2719. { "time": 4.6667, "x": 0, "y": 0 }
  2720. ],
  2721. "scale": [
  2722. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2723. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2724. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2725. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2726. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2727. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2728. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2729. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2730. { "time": 4.6667, "x": 1, "y": 1 }
  2731. ]
  2732. },
  2733. "bone28": {
  2734. "rotate": [
  2735. { "time": 0, "angle": 0 },
  2736. { "time": 0.6, "angle": -23.48 },
  2737. { "time": 1.1667, "angle": 0 },
  2738. { "time": 1.7667, "angle": -23.48 },
  2739. { "time": 2.3333, "angle": 0 },
  2740. { "time": 2.9333, "angle": -23.48 },
  2741. { "time": 3.5, "angle": 0 },
  2742. { "time": 4.1, "angle": -23.48 },
  2743. { "time": 4.6667, "angle": 0 }
  2744. ],
  2745. "translate": [
  2746. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2747. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2748. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2749. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2750. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2751. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2752. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2753. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2754. { "time": 4.6667, "x": 0, "y": 0 }
  2755. ],
  2756. "scale": [
  2757. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2758. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2759. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2760. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2761. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2762. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2763. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2764. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2765. { "time": 4.6667, "x": 1, "y": 1 }
  2766. ]
  2767. },
  2768. "bone29": {
  2769. "rotate": [
  2770. { "time": 0, "angle": 0 },
  2771. { "time": 0.6, "angle": -5.24 },
  2772. { "time": 1.1667, "angle": 0 },
  2773. { "time": 1.7667, "angle": -5.24 },
  2774. { "time": 2.3333, "angle": 0 },
  2775. { "time": 2.9333, "angle": -5.24 },
  2776. { "time": 3.5, "angle": 0 },
  2777. { "time": 4.1, "angle": -5.24 },
  2778. { "time": 4.6667, "angle": 0 }
  2779. ],
  2780. "translate": [
  2781. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2782. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2783. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2784. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2785. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2786. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2787. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2788. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2789. { "time": 4.6667, "x": 0, "y": 0 }
  2790. ],
  2791. "scale": [
  2792. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2793. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2794. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2795. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2796. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2797. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2798. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2799. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2800. { "time": 4.6667, "x": 1, "y": 1 }
  2801. ]
  2802. },
  2803. "bone30": {
  2804. "rotate": [
  2805. { "time": 0, "angle": 0, "curve": "stepped" },
  2806. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2807. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2808. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2809. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2810. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2811. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2812. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2813. { "time": 4.6667, "angle": 0 }
  2814. ],
  2815. "translate": [
  2816. { "time": 0, "x": 0, "y": 0 },
  2817. { "time": 0.6, "x": 1.57, "y": 0.32 },
  2818. { "time": 1.1667, "x": 0, "y": 0 },
  2819. { "time": 1.7667, "x": 1.57, "y": 0.32 },
  2820. { "time": 2.3333, "x": 0, "y": 0 },
  2821. { "time": 2.9333, "x": 1.57, "y": 0.32 },
  2822. { "time": 3.5, "x": 0, "y": 0 },
  2823. { "time": 4.1, "x": 1.57, "y": 0.32 },
  2824. { "time": 4.6667, "x": 0, "y": 0 }
  2825. ],
  2826. "scale": [
  2827. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2828. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2829. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2830. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2831. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2832. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2833. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2834. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2835. { "time": 4.6667, "x": 1, "y": 1 }
  2836. ]
  2837. },
  2838. "bone31": {
  2839. "rotate": [
  2840. { "time": 0, "angle": 0, "curve": "stepped" },
  2841. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2842. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2843. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2844. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2845. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2846. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2847. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2848. { "time": 4.6667, "angle": 0 }
  2849. ],
  2850. "translate": [
  2851. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2852. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2853. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2854. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2855. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2856. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2857. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2858. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2859. { "time": 4.6667, "x": 0, "y": 0 }
  2860. ],
  2861. "scale": [
  2862. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2863. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2864. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2865. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2866. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2867. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2868. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2869. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2870. { "time": 4.6667, "x": 1, "y": 1 }
  2871. ]
  2872. },
  2873. "bone32": {
  2874. "rotate": [
  2875. { "time": 0, "angle": 0, "curve": "stepped" },
  2876. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2877. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2878. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2879. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2880. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2881. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2882. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2883. { "time": 4.6667, "angle": 0 }
  2884. ],
  2885. "translate": [
  2886. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2887. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2888. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2889. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2890. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2891. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2892. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2893. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2894. { "time": 4.6667, "x": 0, "y": 0 }
  2895. ],
  2896. "scale": [
  2897. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2898. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2899. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2900. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2901. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2902. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2903. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2904. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2905. { "time": 4.6667, "x": 1, "y": 1 }
  2906. ]
  2907. },
  2908. "bone33": {
  2909. "rotate": [
  2910. { "time": 0, "angle": 0, "curve": "stepped" },
  2911. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2912. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2913. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2914. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2915. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2916. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2917. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2918. { "time": 4.6667, "angle": 0 }
  2919. ],
  2920. "translate": [
  2921. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2922. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2923. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2924. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2925. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2926. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2927. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2928. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2929. { "time": 4.6667, "x": 0, "y": 0 }
  2930. ],
  2931. "scale": [
  2932. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2933. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2934. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2935. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2936. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2937. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2938. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2939. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2940. { "time": 4.6667, "x": 1, "y": 1 }
  2941. ]
  2942. },
  2943. "bone34": {
  2944. "rotate": [
  2945. { "time": 0, "angle": 0, "curve": "stepped" },
  2946. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2947. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2948. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2949. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2950. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2951. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2952. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2953. { "time": 4.6667, "angle": 0 }
  2954. ],
  2955. "translate": [
  2956. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2957. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2958. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2959. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2960. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2961. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2962. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2963. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2964. { "time": 4.6667, "x": 0, "y": 0 }
  2965. ],
  2966. "scale": [
  2967. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2968. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2969. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2970. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2971. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2972. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2973. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2974. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2975. { "time": 4.6667, "x": 1, "y": 1 }
  2976. ]
  2977. },
  2978. "bone35": {
  2979. "rotate": [
  2980. { "time": 0, "angle": 0, "curve": "stepped" },
  2981. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2982. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2983. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2984. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2985. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2986. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2987. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2988. { "time": 4.6667, "angle": 0 }
  2989. ],
  2990. "translate": [
  2991. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2992. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2993. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2994. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2995. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2996. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2997. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2998. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2999. { "time": 4.6667, "x": 0, "y": 0 }
  3000. ],
  3001. "scale": [
  3002. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3003. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3004. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3005. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3006. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3007. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3008. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3009. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  3010. { "time": 4.6667, "x": 1, "y": 1 }
  3011. ]
  3012. },
  3013. "bone36": {
  3014. "rotate": [
  3015. { "time": 0, "angle": 0, "curve": "stepped" },
  3016. { "time": 0.6, "angle": 0, "curve": "stepped" },
  3017. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3018. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3019. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3020. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  3021. { "time": 3.5, "angle": 0, "curve": "stepped" },
  3022. { "time": 4.1, "angle": 0, "curve": "stepped" },
  3023. { "time": 4.6667, "angle": 0 }
  3024. ],
  3025. "translate": [
  3026. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3027. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3028. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3029. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3030. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3031. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  3032. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3033. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  3034. { "time": 4.6667, "x": 0, "y": 0 }
  3035. ],
  3036. "scale": [
  3037. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3038. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3039. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3040. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3041. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3042. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3043. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3044. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  3045. { "time": 4.6667, "x": 1, "y": 1 }
  3046. ]
  3047. },
  3048. "bone37": {
  3049. "rotate": [
  3050. { "time": 0, "angle": 0, "curve": "stepped" },
  3051. { "time": 0.6, "angle": 0, "curve": "stepped" },
  3052. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3053. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3054. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3055. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  3056. { "time": 3.5, "angle": 0, "curve": "stepped" },
  3057. { "time": 4.1, "angle": 0, "curve": "stepped" },
  3058. { "time": 4.6667, "angle": 0 }
  3059. ],
  3060. "translate": [
  3061. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3062. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3063. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3064. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3065. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3066. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  3067. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3068. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  3069. { "time": 4.6667, "x": 0, "y": 0 }
  3070. ],
  3071. "scale": [
  3072. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3073. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3074. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3075. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3076. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3077. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3078. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3079. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  3080. { "time": 4.6667, "x": 1, "y": 1 }
  3081. ]
  3082. },
  3083. "bone38": {
  3084. "rotate": [
  3085. { "time": 0, "angle": 0, "curve": "stepped" },
  3086. { "time": 0.6, "angle": 0, "curve": "stepped" },
  3087. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3088. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3089. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3090. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  3091. { "time": 3.5, "angle": 0, "curve": "stepped" },
  3092. { "time": 4.1, "angle": 0, "curve": "stepped" },
  3093. { "time": 4.6667, "angle": 0 }
  3094. ],
  3095. "translate": [
  3096. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3097. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3098. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3099. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3100. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3101. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  3102. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3103. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  3104. { "time": 4.6667, "x": 0, "y": 0 }
  3105. ],
  3106. "scale": [
  3107. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3108. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3109. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3110. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3111. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3112. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3113. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3114. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  3115. { "time": 4.6667, "x": 1, "y": 1 }
  3116. ]
  3117. },
  3118. "bone39": {
  3119. "rotate": [
  3120. { "time": 0, "angle": 0 },
  3121. { "time": 0.6, "angle": -5.06 },
  3122. { "time": 1.1667, "angle": 0 },
  3123. { "time": 1.7667, "angle": -5.06 },
  3124. { "time": 2.3333, "angle": 0 },
  3125. { "time": 2.9333, "angle": -5.06 },
  3126. { "time": 3.5, "angle": 0 },
  3127. { "time": 4.1, "angle": -5.06 },
  3128. { "time": 4.6667, "angle": 0 }
  3129. ],
  3130. "translate": [
  3131. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3132. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3133. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3134. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3135. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3136. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  3137. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3138. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  3139. { "time": 4.6667, "x": 0, "y": 0 }
  3140. ],
  3141. "scale": [
  3142. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3143. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3144. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3145. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3146. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3147. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3148. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3149. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  3150. { "time": 4.6667, "x": 1, "y": 1 }
  3151. ]
  3152. },
  3153. "bone40": {
  3154. "rotate": [
  3155. { "time": 0, "angle": 0 },
  3156. { "time": 0.6, "angle": -11.95 },
  3157. { "time": 1.1667, "angle": 0 },
  3158. { "time": 1.7667, "angle": -11.95 },
  3159. { "time": 2.3333, "angle": 0 },
  3160. { "time": 2.9333, "angle": -11.95 },
  3161. { "time": 3.5, "angle": 0 },
  3162. { "time": 4.1, "angle": -11.95 },
  3163. { "time": 4.6667, "angle": 0 }
  3164. ],
  3165. "translate": [
  3166. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3167. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3168. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3169. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3170. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3171. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  3172. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3173. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  3174. { "time": 4.6667, "x": 0, "y": 0 }
  3175. ],
  3176. "scale": [
  3177. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3178. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3179. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3180. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3181. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3182. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3183. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3184. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  3185. { "time": 4.6667, "x": 1, "y": 1 }
  3186. ]
  3187. },
  3188. "bone41": {
  3189. "rotate": [
  3190. { "time": 0, "angle": 0, "curve": "stepped" },
  3191. { "time": 0.6, "angle": 0, "curve": "stepped" },
  3192. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3193. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3194. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3195. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  3196. { "time": 3.5, "angle": 0, "curve": "stepped" },
  3197. { "time": 4.1, "angle": 0, "curve": "stepped" },
  3198. { "time": 4.6667, "angle": 0 }
  3199. ],
  3200. "translate": [
  3201. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3202. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3203. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3204. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3205. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3206. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  3207. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3208. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  3209. { "time": 4.6667, "x": 0, "y": 0 }
  3210. ],
  3211. "scale": [
  3212. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3213. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3214. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3215. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3216. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3217. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3218. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3219. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  3220. { "time": 4.6667, "x": 1, "y": 1 }
  3221. ]
  3222. },
  3223. "bone42": {
  3224. "rotate": [
  3225. { "time": 0, "angle": 0, "curve": "stepped" },
  3226. { "time": 0.6, "angle": 0, "curve": "stepped" },
  3227. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3228. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3229. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3230. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  3231. { "time": 3.5, "angle": 0, "curve": "stepped" },
  3232. { "time": 4.1, "angle": 0, "curve": "stepped" },
  3233. { "time": 4.6667, "angle": 0 }
  3234. ],
  3235. "translate": [
  3236. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3237. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3238. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3239. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3240. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3241. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  3242. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3243. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  3244. { "time": 4.6667, "x": 0, "y": 0 }
  3245. ],
  3246. "scale": [
  3247. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3248. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3249. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3250. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3251. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3252. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3253. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3254. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  3255. { "time": 4.6667, "x": 1, "y": 1 }
  3256. ]
  3257. },
  3258. "bone43": {
  3259. "rotate": [
  3260. { "time": 0, "angle": 0 },
  3261. { "time": 0.6, "angle": 5.43 },
  3262. { "time": 1.1667, "angle": 0 },
  3263. { "time": 1.7667, "angle": 5.43 },
  3264. { "time": 2.3333, "angle": 0 },
  3265. { "time": 2.9333, "angle": 5.43 },
  3266. { "time": 3.5, "angle": 0 },
  3267. { "time": 4.1, "angle": 5.43 },
  3268. { "time": 4.6667, "angle": 0 }
  3269. ],
  3270. "translate": [
  3271. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3272. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3273. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3274. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3275. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3276. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  3277. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3278. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  3279. { "time": 4.6667, "x": 0, "y": 0 }
  3280. ],
  3281. "scale": [
  3282. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3283. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3284. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3285. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3286. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3287. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3288. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3289. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  3290. { "time": 4.6667, "x": 1, "y": 1 }
  3291. ]
  3292. },
  3293. "bone44": {
  3294. "rotate": [
  3295. { "time": 0, "angle": 0 },
  3296. { "time": 0.6, "angle": 8.37 },
  3297. { "time": 1.1667, "angle": 0 },
  3298. { "time": 1.7667, "angle": 8.37 },
  3299. { "time": 2.3333, "angle": 0 },
  3300. { "time": 2.9333, "angle": 8.37 },
  3301. { "time": 3.5, "angle": 0 },
  3302. { "time": 4.1, "angle": 8.37 },
  3303. { "time": 4.6667, "angle": 0 }
  3304. ],
  3305. "translate": [
  3306. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3307. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3308. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3309. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3310. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3311. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  3312. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3313. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  3314. { "time": 4.6667, "x": 0, "y": 0 }
  3315. ],
  3316. "scale": [
  3317. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3318. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3319. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3320. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3321. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3322. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3323. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3324. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  3325. { "time": 4.6667, "x": 1, "y": 1 }
  3326. ]
  3327. },
  3328. "bone45": {
  3329. "rotate": [
  3330. { "time": 0, "angle": 0, "curve": "stepped" },
  3331. { "time": 0.6, "angle": 0, "curve": "stepped" },
  3332. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3333. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3334. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3335. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  3336. { "time": 3.5, "angle": 0, "curve": "stepped" },
  3337. { "time": 4.1, "angle": 0, "curve": "stepped" },
  3338. { "time": 4.6667, "angle": 0 }
  3339. ],
  3340. "translate": [
  3341. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3342. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3343. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3344. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3345. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3346. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  3347. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3348. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  3349. { "time": 4.6667, "x": 0, "y": 0 }
  3350. ],
  3351. "scale": [
  3352. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3353. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3354. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3355. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3356. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3357. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3358. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3359. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  3360. { "time": 4.6667, "x": 1, "y": 1 }
  3361. ]
  3362. },
  3363. "bone46": {
  3364. "scale": [
  3365. {
  3366. "time": 0,
  3367. "x": 0.1,
  3368. "y": 0.1,
  3369. "curve": [ 0.25, 0, 0.75, 1 ]
  3370. },
  3371. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3372. { "time": 1.7333, "x": 1, "y": 1 },
  3373. { "time": 2.3333, "x": 0.1, "y": 0.1 }
  3374. ]
  3375. }
  3376. },
  3377. "deform": {
  3378. "default": {
  3379. "mazi01": {
  3380. "mazi01": [
  3381. { "time": 0 },
  3382. {
  3383. "time": 0.6,
  3384. "offset": 4,
  3385. "vertices": [ 8.35661, 1.68184, 7.67467, 0.43319 ]
  3386. },
  3387. { "time": 1.1667 },
  3388. {
  3389. "time": 1.7667,
  3390. "offset": 4,
  3391. "vertices": [ 8.35661, 1.68184, 7.67467, 0.43319 ]
  3392. },
  3393. { "time": 2.3333 },
  3394. {
  3395. "time": 2.9333,
  3396. "offset": 4,
  3397. "vertices": [ 8.35661, 1.68184, 7.67467, 0.43319 ]
  3398. },
  3399. { "time": 3.5 },
  3400. {
  3401. "time": 4.1,
  3402. "offset": 4,
  3403. "vertices": [ 8.35661, 1.68184, 7.67467, 0.43319 ]
  3404. },
  3405. { "time": 4.6667 }
  3406. ]
  3407. },
  3408. "mazi02": {
  3409. "mazi02": [
  3410. { "time": 0 },
  3411. {
  3412. "time": 0.6,
  3413. "vertices": [ 1.32754, -2.4774, 0, 0, -1.11673, -1.62129, -3.30464, -1.86119, -2.19208, -0.51285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.64938, -3.89412, -3.23606, -0.30999, 0, 0, 0.08159, 5.38441, 4.87314, 3.61243 ]
  3414. },
  3415. { "time": 1.1667 },
  3416. {
  3417. "time": 1.7667,
  3418. "vertices": [ 1.32754, -2.4774, 0, 0, -1.11673, -1.62129, -3.30464, -1.86119, -2.19208, -0.51285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.64938, -3.89412, -3.23606, -0.30999, 0, 0, 0.08159, 5.38441, 4.87314, 3.61243 ]
  3419. },
  3420. { "time": 2.3333 },
  3421. {
  3422. "time": 2.9333,
  3423. "vertices": [ 1.32754, -2.4774, 0, 0, -1.11673, -1.62129, -3.30464, -1.86119, -2.19208, -0.51285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.64938, -3.89412, -3.23606, -0.30999, 0, 0, 0.08159, 5.38441, 4.87314, 3.61243 ]
  3424. },
  3425. { "time": 3.5 },
  3426. {
  3427. "time": 4.1,
  3428. "vertices": [ 1.32754, -2.4774, 0, 0, -1.11673, -1.62129, -3.30464, -1.86119, -2.19208, -0.51285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.64938, -3.89412, -3.23606, -0.30999, 0, 0, 0.08159, 5.38441, 4.87314, 3.61243 ]
  3429. },
  3430. { "time": 4.6667 }
  3431. ]
  3432. },
  3433. "shenti": {
  3434. "shenti": [
  3435. { "time": 0 },
  3436. {
  3437. "time": 0.6,
  3438. "vertices": [ -4.88557, 1.68952, -0.78761, -3.64157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.73921, -0.56034, 0, 0, 1.88365, 0.81051, 1.88924, 0.79718 ]
  3439. },
  3440. { "time": 1.1667 },
  3441. {
  3442. "time": 1.7667,
  3443. "vertices": [ -4.88557, 1.68952, -0.78761, -3.64157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.73921, -0.56034, 0, 0, 1.88365, 0.81051, 1.88924, 0.79718 ]
  3444. },
  3445. { "time": 2.3333 },
  3446. {
  3447. "time": 2.9333,
  3448. "vertices": [ -4.88557, 1.68952, -0.78761, -3.64157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.73921, -0.56034, 0, 0, 1.88365, 0.81051, 1.88924, 0.79718 ]
  3449. },
  3450. { "time": 3.5 },
  3451. {
  3452. "time": 4.1,
  3453. "vertices": [ -4.88557, 1.68952, -0.78761, -3.64157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.73921, -0.56034, 0, 0, 1.88365, 0.81051, 1.88924, 0.79718 ]
  3454. },
  3455. { "time": 4.6667 }
  3456. ]
  3457. },
  3458. "toufa6": {
  3459. "toufa6": [
  3460. { "time": 0 },
  3461. {
  3462. "time": 0.6,
  3463. "vertices": [ 4.92059, -0.65462, 2.3197, -0.03511, 4.06385, 0.22848 ]
  3464. },
  3465. { "time": 1.1667 },
  3466. {
  3467. "time": 1.7667,
  3468. "vertices": [ 4.92059, -0.65462, 2.3197, -0.03511, 4.06385, 0.22848 ]
  3469. },
  3470. { "time": 2.3333 },
  3471. {
  3472. "time": 2.9333,
  3473. "vertices": [ 4.92059, -0.65462, 2.3197, -0.03511, 4.06385, 0.22848 ]
  3474. },
  3475. { "time": 3.5 },
  3476. {
  3477. "time": 4.1,
  3478. "vertices": [ 4.92059, -0.65462, 2.3197, -0.03511, 4.06385, 0.22848 ]
  3479. },
  3480. { "time": 4.6667 }
  3481. ]
  3482. }
  3483. }
  3484. }
  3485. },
  3486. "stand3": {
  3487. "slots": {
  3488. "20wake": {
  3489. "color": [
  3490. { "time": 0, "color": "ffffff00" }
  3491. ]
  3492. },
  3493. "biyan": {
  3494. "attachment": [
  3495. { "time": 1.2667, "name": "biyan" },
  3496. { "time": 1.3667, "name": null }
  3497. ]
  3498. },
  3499. "guaishou": {
  3500. "color": [
  3501. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3502. { "time": 0.6667, "color": "ffffff00" },
  3503. { "time": 0.7667, "color": "ffffffff" },
  3504. { "time": 0.8333, "color": "ffffff00", "curve": "stepped" },
  3505. { "time": 0.9667, "color": "ffffff00" },
  3506. { "time": 1.1, "color": "ffffffff", "curve": "stepped" },
  3507. { "time": 1.9333, "color": "ffffffff" },
  3508. { "time": 2, "color": "ffffff00" }
  3509. ]
  3510. },
  3511. "huangse": {
  3512. "color": [
  3513. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3514. { "time": 1.1667, "color": "ffffff00" },
  3515. { "time": 1.2333, "color": "ffffffff" },
  3516. { "time": 1.3, "color": "ffffff00" },
  3517. { "time": 1.3667, "color": "ffffffff", "curve": "stepped" },
  3518. { "time": 1.9333, "color": "ffffffff" },
  3519. { "time": 2, "color": "ffffff00" }
  3520. ]
  3521. },
  3522. "huangse 2": {
  3523. "color": [
  3524. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3525. { "time": 1.3, "color": "ffffff00" },
  3526. { "time": 1.3667, "color": "ffffffff" },
  3527. { "time": 1.4333, "color": "ffffff00" },
  3528. { "time": 1.5333, "color": "ffffffff", "curve": "stepped" },
  3529. { "time": 1.9333, "color": "ffffffff" },
  3530. { "time": 2, "color": "ffffff00" }
  3531. ]
  3532. },
  3533. "huangse 3": {
  3534. "color": [
  3535. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3536. { "time": 1.4333, "color": "ffffff00" },
  3537. { "time": 1.5, "color": "ffffffff" },
  3538. { "time": 1.5667, "color": "ffffff00" },
  3539. { "time": 1.6667, "color": "ffffffff", "curve": "stepped" },
  3540. { "time": 1.9333, "color": "ffffffff" },
  3541. { "time": 2, "color": "ffffff00" }
  3542. ]
  3543. },
  3544. "paopao": {
  3545. "color": [
  3546. { "time": 0, "color": "ffffff00" }
  3547. ]
  3548. },
  3549. "pinmu": {
  3550. "color": [
  3551. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3552. { "time": 0.3333, "color": "ffffff00" },
  3553. { "time": 0.4333, "color": "ffffffff" },
  3554. { "time": 0.5, "color": "ffffff00" },
  3555. { "time": 0.6, "color": "ffffffff", "curve": "stepped" },
  3556. { "time": 1.9333, "color": "ffffffff" },
  3557. { "time": 2, "color": "ffffff00" }
  3558. ]
  3559. },
  3560. "youyan": {
  3561. "attachment": [
  3562. { "time": 1.2667, "name": null },
  3563. { "time": 1.3667, "name": "youyan" }
  3564. ]
  3565. },
  3566. "zuoyan": {
  3567. "attachment": [
  3568. { "time": 1.2667, "name": null },
  3569. { "time": 1.3667, "name": "zuoyan" }
  3570. ]
  3571. }
  3572. },
  3573. "bones": {
  3574. "root": {
  3575. "rotate": [
  3576. { "time": 0, "angle": 0 }
  3577. ],
  3578. "translate": [
  3579. { "time": 0, "x": 0, "y": 0 }
  3580. ],
  3581. "scale": [
  3582. { "time": 0, "x": 0.65, "y": 0.65 }
  3583. ]
  3584. },
  3585. "bone2": {
  3586. "rotate": [
  3587. { "time": 0, "angle": 0, "curve": "stepped" },
  3588. { "time": 0.6, "angle": 0, "curve": "stepped" },
  3589. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3590. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3591. { "time": 2.3333, "angle": 0 }
  3592. ],
  3593. "translate": [
  3594. { "time": 0, "x": 0, "y": 0 },
  3595. { "time": 0.6, "x": 5.39, "y": 0.01 },
  3596. { "time": 1.1667, "x": 0, "y": 0 },
  3597. { "time": 1.7667, "x": 5.39, "y": 0.01 },
  3598. { "time": 2.3333, "x": 0, "y": 0 }
  3599. ],
  3600. "scale": [
  3601. { "time": 0, "x": 1, "y": 1 },
  3602. { "time": 0.6, "x": 1.02, "y": 1 },
  3603. { "time": 1.1667, "x": 1, "y": 1 },
  3604. { "time": 1.7667, "x": 1.02, "y": 1 },
  3605. { "time": 2.3333, "x": 1, "y": 1 }
  3606. ]
  3607. },
  3608. "bone3": {
  3609. "rotate": [
  3610. { "time": 0, "angle": 0, "curve": "stepped" },
  3611. { "time": 0.6, "angle": 0, "curve": "stepped" },
  3612. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3613. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3614. { "time": 2.3333, "angle": 0 }
  3615. ],
  3616. "translate": [
  3617. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3618. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3619. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3620. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3621. { "time": 2.3333, "x": 0, "y": 0 }
  3622. ],
  3623. "scale": [
  3624. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3625. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3626. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3627. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3628. { "time": 2.3333, "x": 1, "y": 1 }
  3629. ]
  3630. },
  3631. "bone4": {
  3632. "rotate": [
  3633. { "time": 0, "angle": 0, "curve": "stepped" },
  3634. { "time": 0.6, "angle": 0, "curve": "stepped" },
  3635. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3636. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3637. { "time": 2.3333, "angle": 0 }
  3638. ],
  3639. "translate": [
  3640. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3641. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3642. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3643. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3644. { "time": 2.3333, "x": 0, "y": 0 }
  3645. ],
  3646. "scale": [
  3647. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3648. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3649. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3650. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3651. { "time": 2.3333, "x": 1, "y": 1 }
  3652. ]
  3653. },
  3654. "bone5": {
  3655. "rotate": [
  3656. { "time": 0, "angle": 0 },
  3657. { "time": 0.6, "angle": -11.19 },
  3658. { "time": 1.1667, "angle": 0 },
  3659. { "time": 1.7667, "angle": -11.19 },
  3660. { "time": 2.3333, "angle": 0 }
  3661. ],
  3662. "translate": [
  3663. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3664. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3665. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3666. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3667. { "time": 2.3333, "x": 0, "y": 0 }
  3668. ],
  3669. "scale": [
  3670. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3671. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3672. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3673. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3674. { "time": 2.3333, "x": 1, "y": 1 }
  3675. ]
  3676. },
  3677. "bone6": {
  3678. "rotate": [
  3679. { "time": 0, "angle": 0 },
  3680. { "time": 0.6, "angle": -21.44 },
  3681. { "time": 1.1667, "angle": 0 },
  3682. { "time": 1.7667, "angle": -21.44 },
  3683. { "time": 2.3333, "angle": 0 }
  3684. ],
  3685. "translate": [
  3686. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3687. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3688. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3689. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3690. { "time": 2.3333, "x": 0, "y": 0 }
  3691. ],
  3692. "scale": [
  3693. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3694. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3695. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3696. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3697. { "time": 2.3333, "x": 1, "y": 1 }
  3698. ]
  3699. },
  3700. "bone7": {
  3701. "rotate": [
  3702. {
  3703. "time": 0,
  3704. "angle": 0,
  3705. "curve": [ 0.25, 0, 0.75, 1 ]
  3706. },
  3707. {
  3708. "time": 0.6,
  3709. "angle": 9.66,
  3710. "curve": [ 0.25, 0, 0.75, 1 ]
  3711. },
  3712. {
  3713. "time": 1.1667,
  3714. "angle": 0,
  3715. "curve": [ 0.25, 0, 0.75, 1 ]
  3716. },
  3717. {
  3718. "time": 1.7667,
  3719. "angle": 9.66,
  3720. "curve": [ 0.25, 0, 0.75, 1 ]
  3721. },
  3722. { "time": 2.3333, "angle": 0 }
  3723. ],
  3724. "translate": [
  3725. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3726. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3727. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3728. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3729. { "time": 2.3333, "x": 0, "y": 0 }
  3730. ],
  3731. "scale": [
  3732. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3733. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3734. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3735. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3736. { "time": 2.3333, "x": 1, "y": 1 }
  3737. ]
  3738. },
  3739. "bone8": {
  3740. "rotate": [
  3741. {
  3742. "time": 0,
  3743. "angle": 0,
  3744. "curve": [ 0.25, 0, 0.75, 1 ]
  3745. },
  3746. {
  3747. "time": 0.6,
  3748. "angle": 4.17,
  3749. "curve": [ 0.25, 0, 0.75, 1 ]
  3750. },
  3751. {
  3752. "time": 1.1667,
  3753. "angle": 0,
  3754. "curve": [ 0.25, 0, 0.75, 1 ]
  3755. },
  3756. {
  3757. "time": 1.7667,
  3758. "angle": 4.17,
  3759. "curve": [ 0.25, 0, 0.75, 1 ]
  3760. },
  3761. { "time": 2.3333, "angle": 0 }
  3762. ],
  3763. "translate": [
  3764. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3765. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3766. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3767. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3768. { "time": 2.3333, "x": 0, "y": 0 }
  3769. ],
  3770. "scale": [
  3771. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3772. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3773. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3774. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3775. { "time": 2.3333, "x": 1, "y": 1 }
  3776. ]
  3777. },
  3778. "bone9": {
  3779. "rotate": [
  3780. { "time": 0, "angle": 0 },
  3781. { "time": 0.6, "angle": 13.01 },
  3782. { "time": 1.1667, "angle": 0 },
  3783. { "time": 1.7667, "angle": 13.01 },
  3784. { "time": 2.3333, "angle": 0 }
  3785. ],
  3786. "translate": [
  3787. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3788. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3789. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3790. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3791. { "time": 2.3333, "x": 0, "y": 0 }
  3792. ],
  3793. "scale": [
  3794. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3795. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3796. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3797. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3798. { "time": 2.3333, "x": 1, "y": 1 }
  3799. ]
  3800. },
  3801. "bone10": {
  3802. "rotate": [
  3803. { "time": 0, "angle": 0 },
  3804. { "time": 0.6, "angle": -12.08 },
  3805. { "time": 1.1667, "angle": 0 },
  3806. { "time": 1.7667, "angle": -12.08 },
  3807. { "time": 2.3333, "angle": 0 }
  3808. ],
  3809. "translate": [
  3810. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3811. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3812. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3813. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3814. { "time": 2.3333, "x": 0, "y": 0 }
  3815. ],
  3816. "scale": [
  3817. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3818. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3819. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3820. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3821. { "time": 2.3333, "x": 1, "y": 1 }
  3822. ]
  3823. },
  3824. "bone11": {
  3825. "rotate": [
  3826. { "time": 0, "angle": 0 },
  3827. { "time": 0.6, "angle": -1.68 },
  3828. { "time": 1.1667, "angle": 0 },
  3829. { "time": 1.7667, "angle": -1.68 },
  3830. { "time": 2.3333, "angle": 0 }
  3831. ],
  3832. "translate": [
  3833. { "time": 0, "x": 0, "y": 0 },
  3834. { "time": 0.6, "x": 2.02, "y": -0.95 },
  3835. { "time": 1.1667, "x": 0, "y": 0 },
  3836. { "time": 1.7667, "x": 2.02, "y": -0.95 },
  3837. { "time": 2.3333, "x": 0, "y": 0 }
  3838. ],
  3839. "scale": [
  3840. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3841. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3842. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3843. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3844. { "time": 2.3333, "x": 1, "y": 1 }
  3845. ]
  3846. },
  3847. "bone12": {
  3848. "rotate": [
  3849. { "time": 0, "angle": 0 },
  3850. { "time": 0.6, "angle": -10.53 },
  3851. { "time": 0.8667, "angle": 0.64 },
  3852. { "time": 1.1667, "angle": 0 },
  3853. { "time": 1.7667, "angle": -10.53 },
  3854. { "time": 2.0333, "angle": 0.64 },
  3855. { "time": 2.3333, "angle": 0 }
  3856. ],
  3857. "translate": [
  3858. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3859. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3860. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3861. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3862. { "time": 2.3333, "x": 0, "y": 0 }
  3863. ],
  3864. "scale": [
  3865. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3866. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3867. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3868. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3869. { "time": 2.3333, "x": 1, "y": 1 }
  3870. ]
  3871. },
  3872. "bone13": {
  3873. "rotate": [
  3874. { "time": 0, "angle": 0 },
  3875. { "time": 0.6, "angle": -2.51 },
  3876. { "time": 1.1667, "angle": 0 },
  3877. { "time": 1.7667, "angle": -2.51 },
  3878. { "time": 2.3333, "angle": 0 }
  3879. ],
  3880. "translate": [
  3881. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3882. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3883. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3884. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3885. { "time": 2.3333, "x": 0, "y": 0 }
  3886. ],
  3887. "scale": [
  3888. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3889. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3890. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3891. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3892. { "time": 2.3333, "x": 1, "y": 1 }
  3893. ]
  3894. },
  3895. "bone14": {
  3896. "rotate": [
  3897. { "time": 0, "angle": 0 },
  3898. { "time": 0.6, "angle": -4.54 },
  3899. { "time": 0.8667, "angle": -9.41 },
  3900. { "time": 1.1667, "angle": 0 },
  3901. { "time": 1.7667, "angle": -4.54 },
  3902. { "time": 2.0333, "angle": -9.41 },
  3903. { "time": 2.3333, "angle": 0 }
  3904. ],
  3905. "translate": [
  3906. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3907. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3908. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3909. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3910. { "time": 2.3333, "x": 0, "y": 0 }
  3911. ],
  3912. "scale": [
  3913. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3914. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3915. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3916. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3917. { "time": 2.3333, "x": 1, "y": 1 }
  3918. ]
  3919. },
  3920. "bone15": {
  3921. "rotate": [
  3922. { "time": 0, "angle": 0 },
  3923. { "time": 0.6, "angle": -15.16 },
  3924. { "time": 0.8667, "angle": -23.76 },
  3925. { "time": 1.1667, "angle": 0 },
  3926. { "time": 1.7667, "angle": -15.16 },
  3927. { "time": 2.0333, "angle": -23.76 },
  3928. { "time": 2.3333, "angle": 0 }
  3929. ],
  3930. "translate": [
  3931. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3932. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3933. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3934. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3935. { "time": 2.3333, "x": 0, "y": 0 }
  3936. ],
  3937. "scale": [
  3938. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3939. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3940. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3941. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3942. { "time": 2.3333, "x": 1, "y": 1 }
  3943. ]
  3944. },
  3945. "bone16": {
  3946. "rotate": [
  3947. { "time": 0, "angle": 0 },
  3948. { "time": 0.6, "angle": -14.66 },
  3949. { "time": 1.1667, "angle": 0 },
  3950. { "time": 1.7667, "angle": -14.66 },
  3951. { "time": 2.3333, "angle": 0 }
  3952. ],
  3953. "translate": [
  3954. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3955. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3956. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3957. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3958. { "time": 2.3333, "x": 0, "y": 0 }
  3959. ],
  3960. "scale": [
  3961. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3962. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3963. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3964. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3965. { "time": 2.3333, "x": 1, "y": 1 }
  3966. ]
  3967. },
  3968. "bone17": {
  3969. "rotate": [
  3970. { "time": 0, "angle": 0 },
  3971. { "time": 0.6, "angle": -6.02 },
  3972. { "time": 1.1667, "angle": 0 },
  3973. { "time": 1.7667, "angle": -6.02 },
  3974. { "time": 2.3333, "angle": 0 }
  3975. ],
  3976. "translate": [
  3977. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3978. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3979. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3980. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  3981. { "time": 2.3333, "x": 0, "y": 0 }
  3982. ],
  3983. "scale": [
  3984. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3985. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3986. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3987. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  3988. { "time": 2.3333, "x": 1, "y": 1 }
  3989. ]
  3990. },
  3991. "bone18": {
  3992. "rotate": [
  3993. { "time": 0, "angle": 0, "curve": "stepped" },
  3994. { "time": 0.6, "angle": 0, "curve": "stepped" },
  3995. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3996. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  3997. { "time": 2.3333, "angle": 0 }
  3998. ],
  3999. "translate": [
  4000. { "time": 0, "x": 0, "y": 0 },
  4001. { "time": 0.6, "x": -0.24, "y": -2.98 },
  4002. { "time": 1.1667, "x": 0, "y": 0 },
  4003. { "time": 1.7667, "x": -0.24, "y": -2.98 },
  4004. { "time": 2.3333, "x": 0, "y": 0 }
  4005. ],
  4006. "scale": [
  4007. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4008. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4009. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4010. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4011. { "time": 2.3333, "x": 1, "y": 1 }
  4012. ]
  4013. },
  4014. "bone19": {
  4015. "rotate": [
  4016. { "time": 0, "angle": 0, "curve": "stepped" },
  4017. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4018. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4019. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4020. { "time": 2.3333, "angle": 0 }
  4021. ],
  4022. "translate": [
  4023. { "time": 0, "x": 0, "y": 0 },
  4024. { "time": 0.6, "x": 3.23, "y": -1.69 },
  4025. { "time": 1.1667, "x": 0, "y": 0 },
  4026. { "time": 1.7667, "x": 3.23, "y": -1.69 },
  4027. { "time": 2.3333, "x": 0, "y": 0 }
  4028. ],
  4029. "scale": [
  4030. { "time": 0, "x": 1, "y": 1 },
  4031. { "time": 0.6, "x": 1.02, "y": 1.02 },
  4032. { "time": 1.1667, "x": 1, "y": 1 },
  4033. { "time": 1.7667, "x": 1.02, "y": 1.02 },
  4034. { "time": 2.3333, "x": 1, "y": 1 }
  4035. ]
  4036. },
  4037. "bone20": {
  4038. "rotate": [
  4039. { "time": 0, "angle": 0, "curve": "stepped" },
  4040. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4041. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4042. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4043. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  4044. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  4045. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4046. { "time": 2.3333, "angle": 0 }
  4047. ],
  4048. "translate": [
  4049. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4050. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4051. { "time": 1.1667, "x": 0, "y": 0 },
  4052. { "time": 1.2667, "x": -1.52, "y": -0.06, "curve": "stepped" },
  4053. { "time": 1.3667, "x": -1.52, "y": -0.06 },
  4054. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4055. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4056. { "time": 2.3333, "x": 0, "y": 0 }
  4057. ],
  4058. "scale": [
  4059. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4060. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4061. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4062. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4063. { "time": 2.3333, "x": 1, "y": 1 }
  4064. ]
  4065. },
  4066. "bone21": {
  4067. "rotate": [
  4068. { "time": 0, "angle": 0, "curve": "stepped" },
  4069. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4070. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4071. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4072. { "time": 2.3333, "angle": 0 }
  4073. ],
  4074. "translate": [
  4075. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4076. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4077. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4078. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4079. { "time": 2.3333, "x": 0, "y": 0 }
  4080. ],
  4081. "scale": [
  4082. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4083. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4084. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4085. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4086. { "time": 2.3333, "x": 1, "y": 1 }
  4087. ]
  4088. },
  4089. "bone22": {
  4090. "rotate": [
  4091. { "time": 0, "angle": 0, "curve": "stepped" },
  4092. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4093. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4094. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4095. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  4096. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  4097. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4098. { "time": 2.3333, "angle": 0 }
  4099. ],
  4100. "translate": [
  4101. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4102. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4103. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4104. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4105. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  4106. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4107. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4108. { "time": 2.3333, "x": 0, "y": 0 }
  4109. ],
  4110. "scale": [
  4111. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4112. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4113. { "time": 1.1667, "x": 1, "y": 1 },
  4114. { "time": 1.2667, "x": 0.464, "y": 1, "curve": "stepped" },
  4115. { "time": 1.3667, "x": 0.464, "y": 1 },
  4116. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4117. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4118. { "time": 2.3333, "x": 1, "y": 1 }
  4119. ]
  4120. },
  4121. "bone23": {
  4122. "rotate": [
  4123. { "time": 0, "angle": 0, "curve": "stepped" },
  4124. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4125. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4126. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4127. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  4128. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4129. { "time": 2.3333, "angle": 0 }
  4130. ],
  4131. "translate": [
  4132. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4133. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4134. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4135. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4136. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  4137. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4138. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4139. { "time": 2.3333, "x": 0, "y": 0 }
  4140. ],
  4141. "scale": [
  4142. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4143. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4144. { "time": 1.1667, "x": 1, "y": 1 },
  4145. { "time": 1.2667, "x": 0.451, "y": 1, "curve": "stepped" },
  4146. { "time": 1.3667, "x": 0.451, "y": 1 },
  4147. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4148. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4149. { "time": 2.3333, "x": 1, "y": 1 }
  4150. ]
  4151. },
  4152. "bone24": {
  4153. "rotate": [
  4154. { "time": 0, "angle": 7.72 },
  4155. { "time": 0.6, "angle": -4.14 },
  4156. { "time": 0.7667, "angle": -4.56 },
  4157. { "time": 0.9333, "angle": -4 },
  4158. { "time": 1.1667, "angle": -11.65, "curve": "stepped" },
  4159. { "time": 1.7667, "angle": -11.65 },
  4160. { "time": 2.3333, "angle": 7.72 }
  4161. ],
  4162. "translate": [
  4163. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4164. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4165. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4166. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4167. { "time": 2.3333, "x": 0, "y": 0 }
  4168. ],
  4169. "scale": [
  4170. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4171. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4172. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4173. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4174. { "time": 2.3333, "x": 1, "y": 1 }
  4175. ]
  4176. },
  4177. "bone25": {
  4178. "rotate": [
  4179. { "time": 0, "angle": 0 },
  4180. { "time": 0.6, "angle": 13.55 },
  4181. { "time": 0.7667, "angle": -32.94 },
  4182. { "time": 0.9333, "angle": -71.98 },
  4183. { "time": 1.1667, "angle": -55.02, "curve": "stepped" },
  4184. { "time": 1.7667, "angle": -55.02 },
  4185. { "time": 2.3333, "angle": 0 }
  4186. ],
  4187. "translate": [
  4188. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4189. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4190. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4191. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4192. { "time": 2.3333, "x": 0, "y": 0 }
  4193. ],
  4194. "scale": [
  4195. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4196. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4197. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4198. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4199. { "time": 2.3333, "x": 1, "y": 1 }
  4200. ]
  4201. },
  4202. "bone26": {
  4203. "rotate": [
  4204. { "time": 0, "angle": 0 },
  4205. { "time": 0.6, "angle": 4.46 },
  4206. { "time": 0.8333, "angle": -14.45 },
  4207. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4208. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4209. { "time": 2.3333, "angle": 0 }
  4210. ],
  4211. "translate": [
  4212. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4213. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4214. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4215. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4216. { "time": 2.3333, "x": 0, "y": 0 }
  4217. ],
  4218. "scale": [
  4219. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4220. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4221. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4222. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4223. { "time": 2.3333, "x": 1, "y": 1 }
  4224. ]
  4225. },
  4226. "bone27": {
  4227. "rotate": [
  4228. { "time": 0, "angle": -4.15 },
  4229. { "time": 0.6, "angle": 13.2 },
  4230. { "time": 0.8333, "angle": 15.2 },
  4231. { "time": 1.1667, "angle": 11.56, "curve": "stepped" },
  4232. { "time": 1.7667, "angle": 11.56 },
  4233. { "time": 2.3333, "angle": -4.15 }
  4234. ],
  4235. "translate": [
  4236. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4237. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4238. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4239. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4240. { "time": 2.3333, "x": 0, "y": 0 }
  4241. ],
  4242. "scale": [
  4243. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4244. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4245. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4246. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4247. { "time": 2.3333, "x": 1, "y": 1 }
  4248. ]
  4249. },
  4250. "bone28": {
  4251. "rotate": [
  4252. { "time": 0, "angle": 0 },
  4253. { "time": 0.6, "angle": -23.48 },
  4254. { "time": 0.8333, "angle": -19.33 },
  4255. { "time": 1.1667, "angle": -6.89, "curve": "stepped" },
  4256. { "time": 1.7667, "angle": -6.89 },
  4257. { "time": 2.3333, "angle": 0 }
  4258. ],
  4259. "translate": [
  4260. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4261. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4262. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4263. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4264. { "time": 2.3333, "x": 0, "y": 0 }
  4265. ],
  4266. "scale": [
  4267. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4268. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4269. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4270. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4271. { "time": 2.3333, "x": 1, "y": 1 }
  4272. ]
  4273. },
  4274. "bone29": {
  4275. "rotate": [
  4276. { "time": 0, "angle": 0 },
  4277. { "time": 0.6, "angle": -5.24 },
  4278. { "time": 0.8333, "angle": -6.77 },
  4279. { "time": 1.1667, "angle": -5.98, "curve": "stepped" },
  4280. { "time": 1.7667, "angle": -5.98 },
  4281. { "time": 2.3333, "angle": 0 }
  4282. ],
  4283. "translate": [
  4284. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4285. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4286. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4287. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4288. { "time": 2.3333, "x": 0, "y": 0 }
  4289. ],
  4290. "scale": [
  4291. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4292. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4293. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4294. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4295. { "time": 2.3333, "x": 1, "y": 1 }
  4296. ]
  4297. },
  4298. "bone30": {
  4299. "rotate": [
  4300. { "time": 0, "angle": 0, "curve": "stepped" },
  4301. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4302. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4303. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4304. { "time": 2.3333, "angle": 0 }
  4305. ],
  4306. "translate": [
  4307. { "time": 0, "x": 0, "y": 0 },
  4308. { "time": 0.6, "x": 1.57, "y": 0.32 },
  4309. { "time": 1.1667, "x": 0, "y": 0 },
  4310. { "time": 1.7667, "x": 1.57, "y": 0.32 },
  4311. { "time": 2.3333, "x": 0, "y": 0 }
  4312. ],
  4313. "scale": [
  4314. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4315. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4316. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4317. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4318. { "time": 2.3333, "x": 1, "y": 1 }
  4319. ]
  4320. },
  4321. "bone31": {
  4322. "rotate": [
  4323. { "time": 0, "angle": 0, "curve": "stepped" },
  4324. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4325. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4326. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4327. { "time": 2.3333, "angle": 0 }
  4328. ],
  4329. "translate": [
  4330. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4331. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4332. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4333. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4334. { "time": 2.3333, "x": 0, "y": 0 }
  4335. ],
  4336. "scale": [
  4337. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4338. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4339. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4340. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4341. { "time": 2.3333, "x": 1, "y": 1 }
  4342. ]
  4343. },
  4344. "bone32": {
  4345. "rotate": [
  4346. { "time": 0, "angle": 0, "curve": "stepped" },
  4347. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4348. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4349. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4350. { "time": 2.3333, "angle": 0 }
  4351. ],
  4352. "translate": [
  4353. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4354. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4355. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4356. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4357. { "time": 2.3333, "x": 0, "y": 0 }
  4358. ],
  4359. "scale": [
  4360. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4361. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4362. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4363. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4364. { "time": 2.3333, "x": 1, "y": 1 }
  4365. ]
  4366. },
  4367. "bone33": {
  4368. "rotate": [
  4369. { "time": 0, "angle": 0, "curve": "stepped" },
  4370. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4371. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4372. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4373. { "time": 2.3333, "angle": 0 }
  4374. ],
  4375. "translate": [
  4376. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4377. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4378. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4379. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4380. { "time": 2.3333, "x": 0, "y": 0 }
  4381. ],
  4382. "scale": [
  4383. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4384. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4385. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4386. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4387. { "time": 2.3333, "x": 1, "y": 1 }
  4388. ]
  4389. },
  4390. "bone34": {
  4391. "rotate": [
  4392. { "time": 0, "angle": 0, "curve": "stepped" },
  4393. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4394. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4395. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4396. { "time": 2.3333, "angle": 0 }
  4397. ],
  4398. "translate": [
  4399. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4400. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4401. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4402. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4403. { "time": 2.3333, "x": 0, "y": 0 }
  4404. ],
  4405. "scale": [
  4406. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4407. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4408. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4409. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4410. { "time": 2.3333, "x": 1, "y": 1 }
  4411. ]
  4412. },
  4413. "bone35": {
  4414. "rotate": [
  4415. { "time": 0, "angle": 0, "curve": "stepped" },
  4416. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4417. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4418. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4419. { "time": 2.3333, "angle": 0 }
  4420. ],
  4421. "translate": [
  4422. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4423. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4424. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4425. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4426. { "time": 2.3333, "x": 0, "y": 0 }
  4427. ],
  4428. "scale": [
  4429. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4430. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4431. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4432. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4433. { "time": 2.3333, "x": 1, "y": 1 }
  4434. ]
  4435. },
  4436. "bone36": {
  4437. "rotate": [
  4438. { "time": 0, "angle": 0, "curve": "stepped" },
  4439. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4440. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4441. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4442. { "time": 2.3333, "angle": 0 }
  4443. ],
  4444. "translate": [
  4445. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4446. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4447. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4448. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4449. { "time": 2.3333, "x": 0, "y": 0 }
  4450. ],
  4451. "scale": [
  4452. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4453. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4454. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4455. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4456. { "time": 2.3333, "x": 1, "y": 1 }
  4457. ]
  4458. },
  4459. "bone37": {
  4460. "rotate": [
  4461. { "time": 0, "angle": 0, "curve": "stepped" },
  4462. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4463. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4464. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4465. { "time": 2.3333, "angle": 0 }
  4466. ],
  4467. "translate": [
  4468. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4469. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4470. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4471. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4472. { "time": 2.3333, "x": 0, "y": 0 }
  4473. ],
  4474. "scale": [
  4475. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4476. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4477. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4478. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4479. { "time": 2.3333, "x": 1, "y": 1 }
  4480. ]
  4481. },
  4482. "bone38": {
  4483. "rotate": [
  4484. { "time": 0, "angle": 0, "curve": "stepped" },
  4485. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4486. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4487. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4488. { "time": 2.3333, "angle": 0 }
  4489. ],
  4490. "translate": [
  4491. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4492. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4493. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4494. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4495. { "time": 2.3333, "x": 0, "y": 0 }
  4496. ],
  4497. "scale": [
  4498. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4499. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4500. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4501. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4502. { "time": 2.3333, "x": 1, "y": 1 }
  4503. ]
  4504. },
  4505. "bone39": {
  4506. "rotate": [
  4507. { "time": 0, "angle": 0 },
  4508. { "time": 0.6, "angle": -5.06 },
  4509. { "time": 1.1667, "angle": 0 },
  4510. { "time": 1.7667, "angle": -5.06 },
  4511. { "time": 2.3333, "angle": 0 }
  4512. ],
  4513. "translate": [
  4514. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4515. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4516. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4517. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4518. { "time": 2.3333, "x": 0, "y": 0 }
  4519. ],
  4520. "scale": [
  4521. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4522. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4523. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4524. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4525. { "time": 2.3333, "x": 1, "y": 1 }
  4526. ]
  4527. },
  4528. "bone40": {
  4529. "rotate": [
  4530. { "time": 0, "angle": 0 },
  4531. { "time": 0.6, "angle": -11.95 },
  4532. { "time": 1.1667, "angle": 0 },
  4533. { "time": 1.7667, "angle": -11.95 },
  4534. { "time": 2.3333, "angle": 0 }
  4535. ],
  4536. "translate": [
  4537. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4538. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4539. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4540. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4541. { "time": 2.3333, "x": 0, "y": 0 }
  4542. ],
  4543. "scale": [
  4544. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4545. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4546. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4547. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4548. { "time": 2.3333, "x": 1, "y": 1 }
  4549. ]
  4550. },
  4551. "bone41": {
  4552. "rotate": [
  4553. { "time": 0, "angle": 0, "curve": "stepped" },
  4554. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4555. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4556. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4557. { "time": 2.3333, "angle": 0 }
  4558. ],
  4559. "translate": [
  4560. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4561. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4562. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4563. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4564. { "time": 2.3333, "x": 0, "y": 0 }
  4565. ],
  4566. "scale": [
  4567. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4568. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4569. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4570. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4571. { "time": 2.3333, "x": 1, "y": 1 }
  4572. ]
  4573. },
  4574. "bone42": {
  4575. "rotate": [
  4576. { "time": 0, "angle": 0, "curve": "stepped" },
  4577. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4578. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4579. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4580. { "time": 2.3333, "angle": 0 }
  4581. ],
  4582. "translate": [
  4583. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4584. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4585. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4586. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4587. { "time": 2.3333, "x": 0, "y": 0 }
  4588. ],
  4589. "scale": [
  4590. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4591. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4592. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4593. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4594. { "time": 2.3333, "x": 1, "y": 1 }
  4595. ]
  4596. },
  4597. "bone43": {
  4598. "rotate": [
  4599. { "time": 0, "angle": 0 },
  4600. { "time": 0.6, "angle": 5.43 },
  4601. { "time": 1.1667, "angle": 0 },
  4602. { "time": 1.7667, "angle": 5.43 },
  4603. { "time": 2.3333, "angle": 0 }
  4604. ],
  4605. "translate": [
  4606. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4607. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4608. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4609. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4610. { "time": 2.3333, "x": 0, "y": 0 }
  4611. ],
  4612. "scale": [
  4613. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4614. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4615. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4616. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4617. { "time": 2.3333, "x": 1, "y": 1 }
  4618. ]
  4619. },
  4620. "bone44": {
  4621. "rotate": [
  4622. { "time": 0, "angle": 0 },
  4623. { "time": 0.6, "angle": 8.37 },
  4624. { "time": 1.1667, "angle": 0 },
  4625. { "time": 1.7667, "angle": 8.37 },
  4626. { "time": 2.3333, "angle": 0 }
  4627. ],
  4628. "translate": [
  4629. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4630. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4631. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4632. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4633. { "time": 2.3333, "x": 0, "y": 0 }
  4634. ],
  4635. "scale": [
  4636. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4637. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4638. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4639. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4640. { "time": 2.3333, "x": 1, "y": 1 }
  4641. ]
  4642. },
  4643. "bone45": {
  4644. "rotate": [
  4645. { "time": 0, "angle": 0, "curve": "stepped" },
  4646. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4647. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4648. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  4649. { "time": 2.3333, "angle": 0 }
  4650. ],
  4651. "translate": [
  4652. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4653. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4654. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4655. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  4656. { "time": 2.3333, "x": 0, "y": 0 }
  4657. ],
  4658. "scale": [
  4659. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4660. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4661. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4662. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  4663. { "time": 2.3333, "x": 1, "y": 1 }
  4664. ]
  4665. },
  4666. "bone46": {
  4667. "scale": [
  4668. { "time": 0, "x": 0.1, "y": 0.1 }
  4669. ]
  4670. },
  4671. "bone49": {
  4672. "rotate": [
  4673. { "time": 0, "angle": 0, "curve": "stepped" },
  4674. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4675. { "time": 0.4333, "angle": 0 }
  4676. ],
  4677. "translate": [
  4678. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4679. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4680. { "time": 0.4333, "x": 0, "y": 0 }
  4681. ],
  4682. "scale": [
  4683. { "time": 0, "x": 0.065, "y": 1, "curve": "stepped" },
  4684. { "time": 0.3333, "x": 0.065, "y": 1 },
  4685. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  4686. { "time": 1.9, "x": 1, "y": 1 },
  4687. { "time": 2, "x": 0.065, "y": 1 }
  4688. ]
  4689. }
  4690. },
  4691. "deform": {
  4692. "default": {
  4693. "mazi01": {
  4694. "mazi01": [
  4695. { "time": 0 },
  4696. {
  4697. "time": 0.6,
  4698. "offset": 4,
  4699. "vertices": [ 8.35661, 1.68184, 7.67467, 0.43319 ]
  4700. },
  4701. { "time": 1.1667 },
  4702. {
  4703. "time": 1.7667,
  4704. "offset": 4,
  4705. "vertices": [ 8.35661, 1.68184, 7.67467, 0.43319 ]
  4706. },
  4707. { "time": 2.3333 }
  4708. ]
  4709. },
  4710. "mazi02": {
  4711. "mazi02": [
  4712. { "time": 0 },
  4713. {
  4714. "time": 0.6,
  4715. "vertices": [ 1.32754, -2.4774, 0, 0, -1.11673, -1.62129, -3.30464, -1.86119, -2.19208, -0.51285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.64938, -3.89412, -3.23606, -0.30999, 0, 0, 0.08159, 5.38441, 4.87314, 3.61243 ]
  4716. },
  4717. { "time": 1.1667 },
  4718. {
  4719. "time": 1.7667,
  4720. "vertices": [ 1.32754, -2.4774, 0, 0, -1.11673, -1.62129, -3.30464, -1.86119, -2.19208, -0.51285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.64938, -3.89412, -3.23606, -0.30999, 0, 0, 0.08159, 5.38441, 4.87314, 3.61243 ]
  4721. },
  4722. { "time": 2.3333 }
  4723. ]
  4724. },
  4725. "shenti": {
  4726. "shenti": [
  4727. { "time": 0 },
  4728. {
  4729. "time": 0.6,
  4730. "vertices": [ -4.88557, 1.68952, -0.78761, -3.64157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.73921, -0.56034, 0, 0, 1.88365, 0.81051, 1.88924, 0.79718 ]
  4731. },
  4732. { "time": 1.1667 },
  4733. {
  4734. "time": 1.7667,
  4735. "vertices": [ -4.88557, 1.68952, -0.78761, -3.64157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.73921, -0.56034, 0, 0, 1.88365, 0.81051, 1.88924, 0.79718 ]
  4736. },
  4737. { "time": 2.3333 }
  4738. ]
  4739. },
  4740. "toufa6": {
  4741. "toufa6": [
  4742. { "time": 0 },
  4743. {
  4744. "time": 0.6,
  4745. "vertices": [ 4.92059, -0.65462, 2.3197, -0.03511, 4.06385, 0.22848 ]
  4746. },
  4747. { "time": 1.1667 },
  4748. {
  4749. "time": 1.7667,
  4750. "vertices": [ 4.92059, -0.65462, 2.3197, -0.03511, 4.06385, 0.22848 ]
  4751. },
  4752. { "time": 2.3333 }
  4753. ]
  4754. },
  4755. "youyan": {
  4756. "youyan": [
  4757. { "time": 0, "curve": "stepped" },
  4758. { "time": 0.4667 },
  4759. {
  4760. "time": 0.6,
  4761. "offset": 8,
  4762. "vertices": [ -0.53696, -1.00242, -0.53696, -1.00242, -0.53696, -1.00242, -0.53696, -1.00242, -0.53696, -1.00242, -0.53696, -1.00242, -0.53696, -1.00242, -0.53696, -1.00242, -0.53696, -1.00242 ]
  4763. }
  4764. ]
  4765. },
  4766. "zuoyan": {
  4767. "zuoyan": [
  4768. { "time": 0, "curve": "stepped" },
  4769. { "time": 0.4667 },
  4770. {
  4771. "time": 0.6,
  4772. "offset": 28,
  4773. "vertices": [ -1.2923, -0.92308, -1.2923, -0.92308, -1.2923, -0.92308, -1.2923, -0.92308, -1.2923, -0.92308, -1.2923, -0.92308, -1.2923, -0.92308 ],
  4774. "curve": "stepped"
  4775. },
  4776. {
  4777. "time": 1.2667,
  4778. "offset": 28,
  4779. "vertices": [ -1.2923, -0.92308, -1.2923, -0.92308, -1.2923, -0.92308, -1.2923, -0.92308, -1.2923, -0.92308, -1.2923, -0.92308, -1.2923, -0.92308 ]
  4780. }
  4781. ]
  4782. }
  4783. }
  4784. }
  4785. },
  4786. "walk1": {
  4787. "slots": {
  4788. "20wake": {
  4789. "color": [
  4790. { "time": 0, "color": "ffffff00" }
  4791. ]
  4792. },
  4793. "biyan": {
  4794. "attachment": [
  4795. { "time": 1.1, "name": "biyan" },
  4796. { "time": 1.2, "name": null }
  4797. ]
  4798. },
  4799. "guaishou": {
  4800. "color": [
  4801. { "time": 0, "color": "ffffff00" }
  4802. ]
  4803. },
  4804. "huangse": {
  4805. "color": [
  4806. { "time": 0, "color": "ffffff00" }
  4807. ]
  4808. },
  4809. "huangse 2": {
  4810. "color": [
  4811. { "time": 0, "color": "ffffff00" }
  4812. ]
  4813. },
  4814. "huangse 3": {
  4815. "color": [
  4816. { "time": 0, "color": "ffffff00" }
  4817. ]
  4818. },
  4819. "paopao": {
  4820. "color": [
  4821. { "time": 0, "color": "ffffff00" }
  4822. ]
  4823. },
  4824. "pinmu": {
  4825. "color": [
  4826. { "time": 0, "color": "ffffff00" }
  4827. ]
  4828. },
  4829. "youyan": {
  4830. "attachment": [
  4831. { "time": 1.1, "name": null },
  4832. { "time": 1.2, "name": "youyan" }
  4833. ]
  4834. },
  4835. "zuoyan": {
  4836. "attachment": [
  4837. { "time": 1.1, "name": null },
  4838. { "time": 1.2, "name": "zuoyan" }
  4839. ]
  4840. }
  4841. },
  4842. "bones": {
  4843. "root": {
  4844. "rotate": [
  4845. { "time": 0, "angle": 0 }
  4846. ],
  4847. "translate": [
  4848. { "time": 0, "x": 0, "y": 0 }
  4849. ],
  4850. "scale": [
  4851. { "time": 0, "x": 0.65, "y": 0.65 }
  4852. ]
  4853. },
  4854. "bone": {
  4855. "translate": [
  4856. { "time": 0, "x": 0.14, "y": 3.39 },
  4857. { "time": 0.1667, "x": 0.04, "y": 0.89 },
  4858. { "time": 0.5, "x": 0.14, "y": 3.39 },
  4859. { "time": 0.6667, "x": 0.04, "y": 0.89 },
  4860. { "time": 1, "x": 0.14, "y": 3.39 },
  4861. { "time": 1.1667, "x": 0.04, "y": 0.89 },
  4862. { "time": 1.5, "x": 0.14, "y": 3.39 },
  4863. { "time": 1.6667, "x": 0.04, "y": 0.89 },
  4864. { "time": 2, "x": 0.14, "y": 3.39 }
  4865. ]
  4866. },
  4867. "bone2": {
  4868. "rotate": [
  4869. { "time": 0, "angle": 0, "curve": "stepped" },
  4870. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4871. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4872. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4873. { "time": 1, "angle": 0, "curve": "stepped" },
  4874. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4875. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4876. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4877. { "time": 2, "angle": 0 }
  4878. ],
  4879. "translate": [
  4880. { "time": 0, "x": 0, "y": 0 },
  4881. { "time": 0.1667, "x": -1.17, "y": 0.01 },
  4882. { "time": 0.5, "x": 0, "y": 0 },
  4883. { "time": 0.6667, "x": -1.17, "y": 0.01 },
  4884. { "time": 1, "x": 0, "y": 0 },
  4885. { "time": 1.1667, "x": -1.17, "y": 0.01 },
  4886. { "time": 1.5, "x": 0, "y": 0 },
  4887. { "time": 1.6667, "x": -1.17, "y": 0.01 },
  4888. { "time": 2, "x": 0, "y": 0 }
  4889. ],
  4890. "scale": [
  4891. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4892. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4893. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4894. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4895. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4896. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4897. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4898. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4899. { "time": 2, "x": 1, "y": 1 }
  4900. ]
  4901. },
  4902. "bone3": {
  4903. "translate": [
  4904. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4905. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4906. { "time": 2, "x": 0, "y": 0 }
  4907. ],
  4908. "scale": [
  4909. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4910. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4911. { "time": 2, "x": 1, "y": 1 }
  4912. ]
  4913. },
  4914. "bone4": {
  4915. "rotate": [
  4916. { "time": 0, "angle": 0 },
  4917. { "time": 0.5, "angle": -4.67 },
  4918. { "time": 1, "angle": 0 },
  4919. { "time": 1.5, "angle": -4.67 },
  4920. { "time": 2, "angle": 0 }
  4921. ],
  4922. "translate": [
  4923. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4924. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4925. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4926. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4927. { "time": 2, "x": 0, "y": 0 }
  4928. ],
  4929. "scale": [
  4930. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4931. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4932. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4933. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4934. { "time": 2, "x": 1, "y": 1 }
  4935. ]
  4936. },
  4937. "bone5": {
  4938. "rotate": [
  4939. { "time": 0, "angle": 0 },
  4940. { "time": 0.5, "angle": -5.82 },
  4941. { "time": 1, "angle": 0 },
  4942. { "time": 1.5, "angle": -5.82 },
  4943. { "time": 2, "angle": 0 }
  4944. ],
  4945. "translate": [
  4946. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4947. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4948. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4949. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4950. { "time": 2, "x": 0, "y": 0 }
  4951. ],
  4952. "scale": [
  4953. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4954. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4955. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4956. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4957. { "time": 2, "x": 1, "y": 1 }
  4958. ]
  4959. },
  4960. "bone6": {
  4961. "rotate": [
  4962. { "time": 0, "angle": 0 },
  4963. { "time": 0.5, "angle": -22.11 },
  4964. { "time": 1, "angle": 0 },
  4965. { "time": 1.5, "angle": -22.11 },
  4966. { "time": 2, "angle": 0 }
  4967. ],
  4968. "translate": [
  4969. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4970. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4971. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4972. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4973. { "time": 2, "x": 0, "y": 0 }
  4974. ],
  4975. "scale": [
  4976. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4977. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4978. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4979. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4980. { "time": 2, "x": 1, "y": 1 }
  4981. ]
  4982. },
  4983. "bone7": {
  4984. "rotate": [
  4985. { "time": 0, "angle": 8.38 },
  4986. { "time": 0.5, "angle": 0 },
  4987. { "time": 1, "angle": 8.38 },
  4988. { "time": 1.5, "angle": 0 },
  4989. { "time": 2, "angle": 8.38 }
  4990. ],
  4991. "translate": [
  4992. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4993. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4994. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4995. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4996. { "time": 2, "x": 0, "y": 0 }
  4997. ],
  4998. "scale": [
  4999. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5000. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5001. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5002. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5003. { "time": 2, "x": 1, "y": 1 }
  5004. ]
  5005. },
  5006. "bone8": {
  5007. "rotate": [
  5008. { "time": 0, "angle": 1.07 },
  5009. { "time": 0.5, "angle": -4.52 },
  5010. { "time": 1, "angle": 1.07 },
  5011. { "time": 1.5, "angle": -4.52 },
  5012. { "time": 2, "angle": 1.07 }
  5013. ],
  5014. "translate": [
  5015. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5016. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5017. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5018. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5019. { "time": 2, "x": 0, "y": 0 }
  5020. ],
  5021. "scale": [
  5022. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5023. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5024. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5025. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5026. { "time": 2, "x": 1, "y": 1 }
  5027. ]
  5028. },
  5029. "bone9": {
  5030. "rotate": [
  5031. { "time": 0, "angle": 1.33 },
  5032. { "time": 0.5, "angle": -2.95 },
  5033. { "time": 1, "angle": 1.33 },
  5034. { "time": 1.5, "angle": -2.95 },
  5035. { "time": 2, "angle": 1.33 }
  5036. ],
  5037. "translate": [
  5038. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5039. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5040. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5041. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5042. { "time": 2, "x": 0, "y": 0 }
  5043. ],
  5044. "scale": [
  5045. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5046. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5047. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5048. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5049. { "time": 2, "x": 1, "y": 1 }
  5050. ]
  5051. },
  5052. "bone10": {
  5053. "rotate": [
  5054. { "time": 0, "angle": -3.65 },
  5055. { "time": 0.5, "angle": -17.02 },
  5056. { "time": 1, "angle": -3.65 },
  5057. { "time": 1.5, "angle": -17.02 },
  5058. { "time": 2, "angle": -3.65 }
  5059. ],
  5060. "translate": [
  5061. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5062. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5063. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5064. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5065. { "time": 2, "x": 0, "y": 0 }
  5066. ],
  5067. "scale": [
  5068. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5069. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5070. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5071. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5072. { "time": 2, "x": 1, "y": 1 }
  5073. ]
  5074. },
  5075. "bone11": {
  5076. "rotate": [
  5077. { "time": 0, "angle": 0, "curve": "stepped" },
  5078. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5079. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5080. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5081. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5082. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5083. { "time": 1, "angle": 0, "curve": "stepped" },
  5084. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5085. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5086. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5087. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5088. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5089. { "time": 2, "angle": 0 }
  5090. ],
  5091. "translate": [
  5092. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5093. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5094. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5095. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5096. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5097. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5098. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5099. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5100. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5101. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5102. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5103. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5104. { "time": 2, "x": 0, "y": 0 }
  5105. ],
  5106. "scale": [
  5107. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5108. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5109. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5110. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5111. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5112. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5113. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5114. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5115. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5116. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5117. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5118. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5119. { "time": 2, "x": 1, "y": 1 }
  5120. ]
  5121. },
  5122. "bone12": {
  5123. "rotate": [
  5124. { "time": 0, "angle": -9.41 },
  5125. { "time": 0.5, "angle": 0 },
  5126. { "time": 1, "angle": -9.41 },
  5127. { "time": 1.5, "angle": 0 },
  5128. { "time": 2, "angle": -9.41 }
  5129. ],
  5130. "translate": [
  5131. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5132. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5133. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5134. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5135. { "time": 2, "x": 0, "y": 0 }
  5136. ],
  5137. "scale": [
  5138. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5139. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5140. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5141. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5142. { "time": 2, "x": 1, "y": 1 }
  5143. ]
  5144. },
  5145. "bone13": {
  5146. "rotate": [
  5147. { "time": 0, "angle": -4.46 },
  5148. { "time": 0.5, "angle": 0 },
  5149. { "time": 0.6667, "angle": -2.97 },
  5150. { "time": 1, "angle": -4.46 },
  5151. { "time": 1.5, "angle": 0 },
  5152. { "time": 2, "angle": -4.46 }
  5153. ],
  5154. "translate": [
  5155. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5156. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5157. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5158. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5159. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5160. { "time": 2, "x": 0, "y": 0 }
  5161. ],
  5162. "scale": [
  5163. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5164. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5165. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5166. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5167. { "time": 2, "x": 1, "y": 1 }
  5168. ]
  5169. },
  5170. "bone14": {
  5171. "rotate": [
  5172. { "time": 0, "angle": -7.73 },
  5173. { "time": 0.5, "angle": 0 },
  5174. { "time": 1, "angle": -7.73 },
  5175. { "time": 1.5, "angle": 0 },
  5176. { "time": 2, "angle": -7.73 }
  5177. ],
  5178. "translate": [
  5179. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5180. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5181. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5182. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5183. { "time": 2, "x": 0, "y": 0 }
  5184. ],
  5185. "scale": [
  5186. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5187. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5188. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5189. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5190. { "time": 2, "x": 1, "y": 1 }
  5191. ]
  5192. },
  5193. "bone15": {
  5194. "rotate": [
  5195. { "time": 0, "angle": -20.17 },
  5196. { "time": 0.5, "angle": 0 },
  5197. { "time": 1, "angle": -20.17 },
  5198. { "time": 1.5, "angle": 0 },
  5199. { "time": 2, "angle": -20.17 }
  5200. ],
  5201. "translate": [
  5202. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5203. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5204. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5205. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5206. { "time": 2, "x": 0, "y": 0 }
  5207. ],
  5208. "scale": [
  5209. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5210. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5211. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5212. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5213. { "time": 2, "x": 1, "y": 1 }
  5214. ]
  5215. },
  5216. "bone16": {
  5217. "rotate": [
  5218. { "time": 0, "angle": 0 },
  5219. { "time": 0.5, "angle": 15.08 },
  5220. { "time": 1, "angle": 0 },
  5221. { "time": 1.5, "angle": 15.08 },
  5222. { "time": 2, "angle": 0 }
  5223. ],
  5224. "translate": [
  5225. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5226. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5227. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5228. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5229. { "time": 2, "x": 0, "y": 0 }
  5230. ],
  5231. "scale": [
  5232. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5233. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5234. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5235. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5236. { "time": 2, "x": 1, "y": 1 }
  5237. ]
  5238. },
  5239. "bone17": {
  5240. "rotate": [
  5241. { "time": 0, "angle": 0 },
  5242. { "time": 0.5, "angle": 29.55 },
  5243. { "time": 1, "angle": 0 },
  5244. { "time": 1.5, "angle": 29.55 },
  5245. { "time": 2, "angle": 0 }
  5246. ],
  5247. "translate": [
  5248. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5249. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5250. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5251. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5252. { "time": 2, "x": 0, "y": 0 }
  5253. ],
  5254. "scale": [
  5255. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5256. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5257. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5258. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5259. { "time": 2, "x": 1, "y": 1 }
  5260. ]
  5261. },
  5262. "bone18": {
  5263. "rotate": [
  5264. { "time": 0, "angle": 0, "curve": "stepped" },
  5265. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5266. { "time": 1, "angle": 0, "curve": "stepped" },
  5267. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5268. { "time": 2, "angle": 0 }
  5269. ],
  5270. "translate": [
  5271. { "time": 0, "x": 0, "y": 0 },
  5272. { "time": 0.5, "x": 1.8, "y": -2.06 },
  5273. { "time": 1, "x": 0, "y": 0 },
  5274. { "time": 1.5, "x": 1.8, "y": -2.06 },
  5275. { "time": 2, "x": 0, "y": 0 }
  5276. ],
  5277. "scale": [
  5278. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5279. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5280. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5281. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5282. { "time": 2, "x": 1, "y": 1 }
  5283. ]
  5284. },
  5285. "bone19": {
  5286. "rotate": [
  5287. { "time": 0, "angle": 0 },
  5288. { "time": 0.5, "angle": -8.53 },
  5289. { "time": 1, "angle": 0 },
  5290. { "time": 1.5, "angle": -8.53 },
  5291. { "time": 2, "angle": 0 }
  5292. ],
  5293. "translate": [
  5294. { "time": 0, "x": 0, "y": 0 },
  5295. { "time": 0.5, "x": 4.39, "y": -1.12 },
  5296. { "time": 1, "x": 0, "y": 0 },
  5297. { "time": 1.5, "x": 4.39, "y": -1.12 },
  5298. { "time": 2, "x": 0, "y": 0 }
  5299. ],
  5300. "scale": [
  5301. { "time": 0, "x": 1, "y": 1 },
  5302. { "time": 0.5, "x": 1.02, "y": 1.02 },
  5303. { "time": 1, "x": 1, "y": 1 },
  5304. { "time": 1.5, "x": 1.02, "y": 1.02 },
  5305. { "time": 2, "x": 1, "y": 1 }
  5306. ]
  5307. },
  5308. "bone20": {
  5309. "rotate": [
  5310. { "time": 0, "angle": 0, "curve": "stepped" },
  5311. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5312. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5313. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5314. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5315. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5316. { "time": 1, "angle": 0, "curve": "stepped" },
  5317. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5318. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5319. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  5320. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  5321. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  5322. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5323. { "time": 2, "angle": 0 }
  5324. ],
  5325. "translate": [
  5326. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5327. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5328. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5329. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5330. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5331. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5332. { "time": 1, "x": 0, "y": 0 },
  5333. { "time": 1.1, "x": -3.59, "y": -0.15, "curve": "stepped" },
  5334. { "time": 1.2, "x": -3.59, "y": -0.15 },
  5335. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5336. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5337. { "time": 2, "x": 0, "y": 0 }
  5338. ],
  5339. "scale": [
  5340. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5341. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5342. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5343. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5344. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5345. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5346. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5347. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5348. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5349. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  5350. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5351. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5352. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5353. { "time": 2, "x": 1, "y": 1 }
  5354. ]
  5355. },
  5356. "bone21": {
  5357. "rotate": [
  5358. { "time": 0, "angle": 0, "curve": "stepped" },
  5359. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5360. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5361. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5362. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5363. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5364. { "time": 1, "angle": 0, "curve": "stepped" },
  5365. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5366. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5367. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5368. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5369. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5370. { "time": 2, "angle": 0 }
  5371. ],
  5372. "translate": [
  5373. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5374. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5375. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5376. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5377. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5378. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5379. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5380. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5381. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5382. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5383. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5384. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5385. { "time": 2, "x": 0, "y": 0 }
  5386. ],
  5387. "scale": [
  5388. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5389. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5390. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5391. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5392. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5393. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5394. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5395. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5396. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5397. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5398. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5399. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5400. { "time": 2, "x": 1, "y": 1 }
  5401. ]
  5402. },
  5403. "bone22": {
  5404. "rotate": [
  5405. { "time": 0, "angle": 0, "curve": "stepped" },
  5406. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5407. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5408. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5409. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5410. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5411. { "time": 1, "angle": 0, "curve": "stepped" },
  5412. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5413. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5414. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  5415. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  5416. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  5417. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5418. { "time": 2, "angle": 0 }
  5419. ],
  5420. "translate": [
  5421. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5422. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5423. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5424. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5425. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5426. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5427. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5428. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5429. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5430. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  5431. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5432. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5433. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5434. { "time": 2, "x": 0, "y": 0 }
  5435. ],
  5436. "scale": [
  5437. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5438. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5439. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5440. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5441. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5442. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5443. { "time": 1, "x": 1, "y": 1 },
  5444. { "time": 1.1, "x": 0.465, "y": 1, "curve": "stepped" },
  5445. { "time": 1.2, "x": 0.465, "y": 1 },
  5446. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5447. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5448. { "time": 2, "x": 1, "y": 1 }
  5449. ]
  5450. },
  5451. "bone23": {
  5452. "rotate": [
  5453. { "time": 0, "angle": 0, "curve": "stepped" },
  5454. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5455. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5456. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5457. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5458. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5459. { "time": 1, "angle": 0, "curve": "stepped" },
  5460. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5461. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5462. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  5463. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  5464. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  5465. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5466. { "time": 2, "angle": 0 }
  5467. ],
  5468. "translate": [
  5469. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5470. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5471. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5472. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5473. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5474. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5475. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5476. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5477. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5478. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  5479. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5480. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5481. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5482. { "time": 2, "x": 0, "y": 0 }
  5483. ],
  5484. "scale": [
  5485. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5486. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5487. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5488. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5489. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5490. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5491. { "time": 1, "x": 1, "y": 1 },
  5492. { "time": 1.1, "x": 0.443, "y": 1, "curve": "stepped" },
  5493. { "time": 1.2, "x": 0.443, "y": 1 },
  5494. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5495. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5496. { "time": 2, "x": 1, "y": 1 }
  5497. ]
  5498. },
  5499. "bone24": {
  5500. "rotate": [
  5501. {
  5502. "time": 0,
  5503. "angle": -315.19,
  5504. "curve": [ 0.25, 0, 0.75, 1 ]
  5505. },
  5506. {
  5507. "time": 0.5,
  5508. "angle": 9.24,
  5509. "curve": [ 0.25, 0, 0.75, 1 ]
  5510. },
  5511. {
  5512. "time": 1,
  5513. "angle": -315.19,
  5514. "curve": [ 0.25, 0, 0.75, 1 ]
  5515. },
  5516. {
  5517. "time": 1.5,
  5518. "angle": 9.24,
  5519. "curve": [ 0.25, 0, 0.75, 1 ]
  5520. },
  5521. { "time": 2, "angle": -315.19 }
  5522. ],
  5523. "translate": [
  5524. {
  5525. "time": 0,
  5526. "x": 1.53,
  5527. "y": -13.91,
  5528. "curve": [ 0.25, 0, 0.75, 1 ]
  5529. },
  5530. {
  5531. "time": 0.5,
  5532. "x": 1.37,
  5533. "y": -2.29,
  5534. "curve": [ 0.25, 0, 0.75, 1 ]
  5535. },
  5536. {
  5537. "time": 1,
  5538. "x": 1.53,
  5539. "y": -13.91,
  5540. "curve": [ 0.25, 0, 0.75, 1 ]
  5541. },
  5542. {
  5543. "time": 1.5,
  5544. "x": 1.37,
  5545. "y": -2.29,
  5546. "curve": [ 0.25, 0, 0.75, 1 ]
  5547. },
  5548. { "time": 2, "x": 1.53, "y": -13.91 }
  5549. ],
  5550. "scale": [
  5551. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5552. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5553. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5554. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5555. { "time": 2, "x": 1, "y": 1 }
  5556. ]
  5557. },
  5558. "bone25": {
  5559. "rotate": [
  5560. {
  5561. "time": 0,
  5562. "angle": 0,
  5563. "curve": [ 0.25, 0, 0.75, 1 ]
  5564. },
  5565. {
  5566. "time": 0.5,
  5567. "angle": -51.45,
  5568. "curve": [ 0.25, 0, 0.75, 1 ]
  5569. },
  5570. {
  5571. "time": 1,
  5572. "angle": 0,
  5573. "curve": [ 0.25, 0, 0.75, 1 ]
  5574. },
  5575. {
  5576. "time": 1.5,
  5577. "angle": -51.45,
  5578. "curve": [ 0.25, 0, 0.75, 1 ]
  5579. },
  5580. { "time": 2, "angle": 0 }
  5581. ],
  5582. "translate": [
  5583. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5584. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5585. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5586. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5587. { "time": 2, "x": 0, "y": 0 }
  5588. ],
  5589. "scale": [
  5590. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5591. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5592. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5593. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5594. { "time": 2, "x": 1, "y": 1 }
  5595. ]
  5596. },
  5597. "bone26": {
  5598. "rotate": [
  5599. { "time": 0, "angle": 0, "curve": "stepped" },
  5600. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5601. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5602. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5603. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5604. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5605. { "time": 1, "angle": 0, "curve": "stepped" },
  5606. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5607. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5608. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5609. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5610. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5611. { "time": 2, "angle": 0 }
  5612. ],
  5613. "translate": [
  5614. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5615. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5616. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5617. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5618. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5619. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5620. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5621. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5622. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5623. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5624. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5625. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5626. { "time": 2, "x": 0, "y": 0 }
  5627. ],
  5628. "scale": [
  5629. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5630. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5631. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5632. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5633. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5634. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5635. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5636. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5637. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5638. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5639. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5640. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5641. { "time": 2, "x": 1, "y": 1 }
  5642. ]
  5643. },
  5644. "bone27": {
  5645. "rotate": [
  5646. {
  5647. "time": 0,
  5648. "angle": 320.38,
  5649. "curve": [ 0.25, 0, 0.75, 1 ]
  5650. },
  5651. {
  5652. "time": 0.5,
  5653. "angle": 9.14,
  5654. "curve": [ 0.25, 0, 0.75, 1 ]
  5655. },
  5656. {
  5657. "time": 1,
  5658. "angle": 320.38,
  5659. "curve": [ 0.25, 0, 0.75, 1 ]
  5660. },
  5661. {
  5662. "time": 1.5,
  5663. "angle": 9.14,
  5664. "curve": [ 0.25, 0, 0.75, 1 ]
  5665. },
  5666. { "time": 2, "angle": 320.38 }
  5667. ],
  5668. "translate": [
  5669. {
  5670. "time": 0,
  5671. "x": -0.17,
  5672. "y": 5.23,
  5673. "curve": [ 0.25, 0, 0.75, 1 ]
  5674. },
  5675. {
  5676. "time": 0.5,
  5677. "x": 0.76,
  5678. "y": 2.99,
  5679. "curve": [ 0.25, 0, 0.75, 1 ]
  5680. },
  5681. {
  5682. "time": 1,
  5683. "x": -0.17,
  5684. "y": 5.23,
  5685. "curve": [ 0.25, 0, 0.75, 1 ]
  5686. },
  5687. {
  5688. "time": 1.5,
  5689. "x": 0.76,
  5690. "y": 2.99,
  5691. "curve": [ 0.25, 0, 0.75, 1 ]
  5692. },
  5693. { "time": 2, "x": -0.17, "y": 5.23 }
  5694. ],
  5695. "scale": [
  5696. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5697. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5698. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5699. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5700. { "time": 2, "x": 1, "y": 1 }
  5701. ]
  5702. },
  5703. "bone28": {
  5704. "rotate": [
  5705. {
  5706. "time": 0,
  5707. "angle": -27.15,
  5708. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5709. },
  5710. {
  5711. "time": 0.1667,
  5712. "angle": -19.23,
  5713. "curve": [ 0.351, 0.4, 0.757, 1 ]
  5714. },
  5715. {
  5716. "time": 0.5,
  5717. "angle": -6.53,
  5718. "curve": [ 0.25, 0, 0.75, 1 ]
  5719. },
  5720. {
  5721. "time": 1,
  5722. "angle": -34.25,
  5723. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5724. },
  5725. {
  5726. "time": 1.1667,
  5727. "angle": -19.23,
  5728. "curve": [ 0.351, 0.4, 0.757, 1 ]
  5729. },
  5730. {
  5731. "time": 1.5,
  5732. "angle": -12.33,
  5733. "curve": [ 0.25, 0, 0.75, 1 ]
  5734. },
  5735. { "time": 2, "angle": -27.15 }
  5736. ],
  5737. "translate": [
  5738. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5739. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5740. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5741. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5742. { "time": 2, "x": 0, "y": 0 }
  5743. ],
  5744. "scale": [
  5745. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5746. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5747. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5748. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5749. { "time": 2, "x": 1, "y": 1 }
  5750. ]
  5751. },
  5752. "bone29": {
  5753. "rotate": [
  5754. {
  5755. "time": 0,
  5756. "angle": -21.3,
  5757. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5758. },
  5759. {
  5760. "time": 0.1667,
  5761. "angle": -17.94,
  5762. "curve": [ 0.351, 0.4, 0.757, 1 ]
  5763. },
  5764. {
  5765. "time": 0.5,
  5766. "angle": -7.61,
  5767. "curve": [ 0.25, 0, 0.75, 1 ]
  5768. },
  5769. {
  5770. "time": 1,
  5771. "angle": 0,
  5772. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5773. },
  5774. {
  5775. "time": 1.1667,
  5776. "angle": -17.94,
  5777. "curve": [ 0.351, 0.4, 0.757, 1 ]
  5778. },
  5779. {
  5780. "time": 1.5,
  5781. "angle": -7.61,
  5782. "curve": [ 0.25, 0, 0.75, 1 ]
  5783. },
  5784. { "time": 2, "angle": -21.3 }
  5785. ],
  5786. "translate": [
  5787. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5788. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5789. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5790. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5791. { "time": 2, "x": 0, "y": 0 }
  5792. ],
  5793. "scale": [
  5794. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5795. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5796. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5797. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5798. { "time": 2, "x": 1, "y": 1 }
  5799. ]
  5800. },
  5801. "bone30": {
  5802. "rotate": [
  5803. { "time": 0, "angle": 0, "curve": "stepped" },
  5804. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5805. { "time": 1, "angle": 0, "curve": "stepped" },
  5806. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5807. { "time": 2, "angle": 0 }
  5808. ],
  5809. "translate": [
  5810. { "time": 0, "x": 1.75, "y": 0.36 },
  5811. { "time": 0.1667, "x": 1.4, "y": 3.29 },
  5812. { "time": 0.5, "x": 1.75, "y": 0.36 },
  5813. { "time": 0.6667, "x": 1.4, "y": 3.29 },
  5814. { "time": 1, "x": 1.75, "y": 0.36 },
  5815. { "time": 1.1667, "x": 1.4, "y": 3.29 },
  5816. { "time": 1.5, "x": 1.75, "y": 0.36 },
  5817. { "time": 1.6667, "x": 1.4, "y": 3.29 },
  5818. { "time": 2, "x": 1.75, "y": 0.36 }
  5819. ],
  5820. "scale": [
  5821. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5822. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5823. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5824. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5825. { "time": 2, "x": 1, "y": 1 }
  5826. ]
  5827. },
  5828. "bone31": {
  5829. "rotate": [
  5830. { "time": 0, "angle": 0, "curve": "stepped" },
  5831. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5832. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5833. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5834. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5835. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5836. { "time": 1, "angle": 0, "curve": "stepped" },
  5837. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5838. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5839. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5840. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5841. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5842. { "time": 2, "angle": 0 }
  5843. ],
  5844. "translate": [
  5845. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5846. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5847. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5848. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5849. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5850. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5851. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5852. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5853. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5854. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5855. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5856. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5857. { "time": 2, "x": 0, "y": 0 }
  5858. ],
  5859. "scale": [
  5860. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5861. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5862. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5863. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5864. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5865. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5866. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5867. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5868. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5869. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5870. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5871. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5872. { "time": 2, "x": 1, "y": 1 }
  5873. ]
  5874. },
  5875. "bone32": {
  5876. "rotate": [
  5877. { "time": 0, "angle": -10.6 },
  5878. { "time": 0.0667, "angle": -14.63 },
  5879. { "time": 0.1667, "angle": -0.23 },
  5880. { "time": 0.3333, "angle": -338.46 },
  5881. { "time": 0.5, "angle": -318.11 },
  5882. { "time": 0.6667, "angle": -350.78 },
  5883. { "time": 0.8333, "angle": -2.86 },
  5884. { "time": 1, "angle": -10.6 },
  5885. { "time": 1.0667, "angle": -14.63 },
  5886. { "time": 1.1667, "angle": -0.23 },
  5887. { "time": 1.3333, "angle": -338.46 },
  5888. { "time": 1.5, "angle": -318.11 },
  5889. { "time": 1.6667, "angle": 20.84 },
  5890. { "time": 1.8333, "angle": -2.86 },
  5891. { "time": 2, "angle": -10.6 }
  5892. ],
  5893. "translate": [
  5894. { "time": 0, "x": 0, "y": 0 },
  5895. { "time": 0.1667, "x": 1.76, "y": -6.86 },
  5896. { "time": 0.3333, "x": -0.45, "y": -12.4 },
  5897. { "time": 0.5, "x": 5.41, "y": -18.92 },
  5898. { "time": 0.6667, "x": 4.08, "y": -6.52 },
  5899. { "time": 0.8333, "x": 3.21, "y": -0.21 },
  5900. { "time": 1, "x": 0, "y": 0 },
  5901. { "time": 1.1667, "x": 1.76, "y": -6.86 },
  5902. { "time": 1.3333, "x": -0.45, "y": -12.4 },
  5903. { "time": 1.5, "x": 5.41, "y": -18.92 },
  5904. { "time": 1.6667, "x": 4.08, "y": -6.52 },
  5905. { "time": 1.8333, "x": 3.21, "y": -0.21 },
  5906. { "time": 2, "x": 0, "y": 0 }
  5907. ],
  5908. "scale": [
  5909. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5910. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5911. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5912. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5913. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5914. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5915. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5916. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5917. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5918. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5919. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5920. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5921. { "time": 2, "x": 1, "y": 1 }
  5922. ]
  5923. },
  5924. "bone33": {
  5925. "rotate": [
  5926. { "time": 0, "angle": 0 },
  5927. { "time": 0.0667, "angle": 22.31 },
  5928. { "time": 0.1667, "angle": 6.42 },
  5929. { "time": 0.3333, "angle": -2.44 },
  5930. { "time": 0.5, "angle": 0 },
  5931. { "time": 0.6667, "angle": 56.29 },
  5932. { "time": 0.8333, "angle": 34.68 },
  5933. { "time": 1, "angle": 0 },
  5934. { "time": 1.0667, "angle": 22.31 },
  5935. { "time": 1.1667, "angle": 6.42 },
  5936. { "time": 1.3333, "angle": -2.44 },
  5937. { "time": 1.5, "angle": 0 },
  5938. { "time": 1.6667, "angle": 31.91 },
  5939. { "time": 1.8333, "angle": 34.68 },
  5940. { "time": 2, "angle": 0 }
  5941. ],
  5942. "translate": [
  5943. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5944. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5945. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5946. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5947. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5948. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5949. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5950. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5951. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5952. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5953. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5954. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5955. { "time": 2, "x": 0, "y": 0 }
  5956. ],
  5957. "scale": [
  5958. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5959. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5960. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5961. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5962. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5963. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5964. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5965. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5966. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5967. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5968. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5969. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5970. { "time": 2, "x": 1, "y": 1 }
  5971. ]
  5972. },
  5973. "bone34": {
  5974. "rotate": [
  5975. { "time": 0, "angle": -7.36 },
  5976. { "time": 0.1667, "angle": -2.72 },
  5977. { "time": 0.3333, "angle": -11.36 },
  5978. { "time": 0.5, "angle": 0 },
  5979. { "time": 0.6667, "angle": -11.56 },
  5980. { "time": 0.8333, "angle": -21.21 },
  5981. { "time": 1, "angle": -7.36 },
  5982. { "time": 1.1667, "angle": -2.72 },
  5983. { "time": 1.3333, "angle": -11.36 },
  5984. { "time": 1.5, "angle": 0 },
  5985. { "time": 1.6667, "angle": -11.56 },
  5986. { "time": 1.8333, "angle": -21.21 },
  5987. { "time": 2, "angle": -7.36 }
  5988. ],
  5989. "translate": [
  5990. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5991. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5992. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5993. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5994. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5995. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5996. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5997. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5998. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5999. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6000. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6001. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6002. { "time": 2, "x": 0, "y": 0 }
  6003. ],
  6004. "scale": [
  6005. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6006. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6007. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6008. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6009. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6010. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6011. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6012. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6013. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6014. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6015. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6016. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6017. { "time": 2, "x": 1, "y": 1 }
  6018. ]
  6019. },
  6020. "bone35": {
  6021. "rotate": [
  6022. { "time": 0, "angle": 19.63 },
  6023. { "time": 0.1667, "angle": 14.03 },
  6024. { "time": 0.3333, "angle": 327.5 },
  6025. { "time": 0.5, "angle": 326.75 },
  6026. { "time": 0.5667, "angle": 333.16 },
  6027. { "time": 0.6667, "angle": -7.19 },
  6028. { "time": 0.8333, "angle": 2.66 },
  6029. { "time": 1, "angle": 19.63 },
  6030. { "time": 1.1667, "angle": 14.03 },
  6031. { "time": 1.3333, "angle": 327.5 },
  6032. { "time": 1.5, "angle": 326.75 },
  6033. { "time": 1.5667, "angle": 333.16 },
  6034. { "time": 1.6667, "angle": -7.19 },
  6035. { "time": 1.8333, "angle": 2.66 },
  6036. { "time": 2, "angle": 19.63 }
  6037. ],
  6038. "translate": [
  6039. { "time": 0, "x": 0, "y": 0 },
  6040. { "time": 0.1667, "x": 6.2, "y": 13.37 },
  6041. { "time": 0.3333, "x": 3.27, "y": 20.03 },
  6042. { "time": 0.5, "x": -2.57, "y": 17.9 },
  6043. { "time": 0.6667, "x": 0, "y": 15.16 },
  6044. { "time": 0.8333, "x": 0.25, "y": 9.75 },
  6045. { "time": 1, "x": 0, "y": 0 },
  6046. { "time": 1.1667, "x": 6.2, "y": 13.37 },
  6047. { "time": 1.3333, "x": 3.27, "y": 20.03 },
  6048. { "time": 1.5, "x": 0.15, "y": 16.77 },
  6049. { "time": 1.6667, "x": 0.36, "y": 15.18 },
  6050. { "time": 1.8333, "x": 0.25, "y": 9.75 },
  6051. { "time": 2, "x": 0, "y": 0 }
  6052. ],
  6053. "scale": [
  6054. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6055. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6056. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6057. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6058. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6059. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6060. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6061. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6062. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6063. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6064. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6065. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6066. { "time": 2, "x": 1, "y": 1 }
  6067. ]
  6068. },
  6069. "bone36": {
  6070. "rotate": [
  6071. { "time": 0, "angle": 11.97 },
  6072. { "time": 0.1667, "angle": 30.03 },
  6073. { "time": 0.3333, "angle": 35.93 },
  6074. { "time": 0.5, "angle": 1.18 },
  6075. { "time": 0.5667, "angle": 13.59 },
  6076. { "time": 0.6667, "angle": 2.55 },
  6077. { "time": 0.8333, "angle": 5.96 },
  6078. { "time": 1, "angle": 11.97 },
  6079. { "time": 1.1667, "angle": 30.03 },
  6080. { "time": 1.3333, "angle": 35.93 },
  6081. { "time": 1.5, "angle": 1.18 },
  6082. { "time": 1.5667, "angle": 13.59 },
  6083. { "time": 1.6667, "angle": 2.55 },
  6084. { "time": 1.8333, "angle": 5.96 },
  6085. { "time": 2, "angle": 11.97 }
  6086. ],
  6087. "translate": [
  6088. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6089. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6090. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6091. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6092. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6093. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6094. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6095. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6096. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6097. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6098. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6099. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6100. { "time": 2, "x": 0, "y": 0 }
  6101. ],
  6102. "scale": [
  6103. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6104. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6105. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6106. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6107. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6108. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6109. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6110. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6111. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6112. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6113. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6114. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6115. { "time": 2, "x": 1, "y": 1 }
  6116. ]
  6117. },
  6118. "bone37": {
  6119. "rotate": [
  6120. { "time": 0, "angle": 0 },
  6121. { "time": 0.1667, "angle": 6.66 },
  6122. { "time": 0.3333, "angle": 2.65 },
  6123. { "time": 0.5, "angle": 6.62 },
  6124. { "time": 0.5667, "angle": 12.99 },
  6125. { "time": 0.6667, "angle": 2.96 },
  6126. { "time": 0.8333, "angle": -0.24 },
  6127. { "time": 1, "angle": 0 },
  6128. { "time": 1.1667, "angle": 1.55 },
  6129. { "time": 1.3333, "angle": 2.65 },
  6130. { "time": 1.5, "angle": 6.62 },
  6131. { "time": 1.5667, "angle": 12.99 },
  6132. { "time": 1.6667, "angle": 2.96 },
  6133. { "time": 1.8333, "angle": -0.24 },
  6134. { "time": 2, "angle": 0 }
  6135. ],
  6136. "translate": [
  6137. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6138. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6139. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6140. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6141. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6142. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6143. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6144. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6145. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6146. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6147. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6148. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6149. { "time": 2, "x": 0, "y": 0 }
  6150. ],
  6151. "scale": [
  6152. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6153. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6154. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6155. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6156. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6157. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6158. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6159. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6160. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6161. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6162. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6163. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6164. { "time": 2, "x": 1, "y": 1 }
  6165. ]
  6166. },
  6167. "bone38": {
  6168. "rotate": [
  6169. { "time": 0, "angle": -0.73 },
  6170. { "time": 0.5, "angle": 0.04 },
  6171. { "time": 1, "angle": -0.73 },
  6172. { "time": 1.5, "angle": 0.04 },
  6173. { "time": 2, "angle": -0.73 }
  6174. ],
  6175. "translate": [
  6176. { "time": 0, "x": 0.31, "y": 2.99 },
  6177. { "time": 0.5, "x": 0, "y": 0 },
  6178. { "time": 1, "x": 0.31, "y": 2.99 },
  6179. { "time": 1.5, "x": 0, "y": 0 },
  6180. { "time": 2, "x": 0.31, "y": 2.99 }
  6181. ],
  6182. "scale": [
  6183. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6184. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6185. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6186. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6187. { "time": 2, "x": 1, "y": 1 }
  6188. ]
  6189. },
  6190. "bone39": {
  6191. "rotate": [
  6192. { "time": 0, "angle": -7.99 },
  6193. { "time": 0.5, "angle": 0 },
  6194. { "time": 1, "angle": -7.99 },
  6195. { "time": 1.5, "angle": 0 },
  6196. { "time": 2, "angle": -7.99 }
  6197. ],
  6198. "translate": [
  6199. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6200. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6201. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6202. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6203. { "time": 2, "x": 0, "y": 0 }
  6204. ],
  6205. "scale": [
  6206. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6207. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6208. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6209. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6210. { "time": 2, "x": 1, "y": 1 }
  6211. ]
  6212. },
  6213. "bone40": {
  6214. "rotate": [
  6215. { "time": 0, "angle": -17.05 },
  6216. { "time": 0.5, "angle": -14.55 },
  6217. { "time": 0.6667, "angle": -1.46 },
  6218. { "time": 1, "angle": -17.05 },
  6219. { "time": 1.5, "angle": -14.55 },
  6220. { "time": 1.6667, "angle": -1.46 },
  6221. { "time": 2, "angle": -17.05 }
  6222. ],
  6223. "translate": [
  6224. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6225. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6226. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6227. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6228. { "time": 2, "x": 0, "y": 0 }
  6229. ],
  6230. "scale": [
  6231. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6232. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6233. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6234. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6235. { "time": 2, "x": 1, "y": 1 }
  6236. ]
  6237. },
  6238. "bone41": {
  6239. "rotate": [
  6240. { "time": 0, "angle": -9.87 },
  6241. { "time": 0.5, "angle": 0 },
  6242. { "time": 0.6667, "angle": 7.29 },
  6243. { "time": 1, "angle": -9.87 },
  6244. { "time": 1.5, "angle": 0 },
  6245. { "time": 1.6667, "angle": 7.29 },
  6246. { "time": 2, "angle": -9.87 }
  6247. ],
  6248. "translate": [
  6249. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6250. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6251. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6252. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6253. { "time": 2, "x": 0, "y": 0 }
  6254. ],
  6255. "scale": [
  6256. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6257. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6258. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6259. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6260. { "time": 2, "x": 1, "y": 1 }
  6261. ]
  6262. },
  6263. "bone42": {
  6264. "rotate": [
  6265. { "time": 0, "angle": 9.3 },
  6266. { "time": 0.5, "angle": 0 },
  6267. { "time": 1, "angle": 4.96 },
  6268. { "time": 1.5, "angle": 0 },
  6269. { "time": 2, "angle": 9.3 }
  6270. ],
  6271. "translate": [
  6272. { "time": 0, "x": -2.7, "y": 2.58 },
  6273. { "time": 0.5, "x": -1.45, "y": 3.71 },
  6274. { "time": 1, "x": -2.7, "y": 2.58 },
  6275. { "time": 1.5, "x": -0.25, "y": 3.22 },
  6276. { "time": 2, "x": -2.7, "y": 2.58 }
  6277. ],
  6278. "scale": [
  6279. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6280. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6281. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6282. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6283. { "time": 2, "x": 1, "y": 1 }
  6284. ]
  6285. },
  6286. "bone43": {
  6287. "rotate": [
  6288. { "time": 0, "angle": 8.36 },
  6289. { "time": 0.5, "angle": -4.09 },
  6290. { "time": 1, "angle": 8.36 },
  6291. { "time": 1.5, "angle": -4.09 },
  6292. { "time": 2, "angle": 8.36 }
  6293. ],
  6294. "translate": [
  6295. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6296. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6297. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6298. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6299. { "time": 2, "x": 0, "y": 0 }
  6300. ],
  6301. "scale": [
  6302. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6303. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6304. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6305. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6306. { "time": 2, "x": 1, "y": 1 }
  6307. ]
  6308. },
  6309. "bone44": {
  6310. "rotate": [
  6311. { "time": 0, "angle": 12.13 },
  6312. { "time": 0.5, "angle": 7.92 },
  6313. { "time": 1, "angle": 6.49 },
  6314. { "time": 1.5, "angle": 7.92 },
  6315. { "time": 2, "angle": 12.13 }
  6316. ],
  6317. "translate": [
  6318. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6319. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6320. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6321. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6322. { "time": 2, "x": 0, "y": 0 }
  6323. ],
  6324. "scale": [
  6325. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6326. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6327. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6328. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6329. { "time": 2, "x": 1, "y": 1 }
  6330. ]
  6331. },
  6332. "bone45": {
  6333. "rotate": [
  6334. { "time": 0, "angle": 0 },
  6335. { "time": 0.5, "angle": -3.34 },
  6336. { "time": 1, "angle": 0 },
  6337. { "time": 1.5, "angle": -3.34 },
  6338. { "time": 2, "angle": 0 }
  6339. ],
  6340. "translate": [
  6341. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6342. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6343. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6344. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6345. { "time": 2, "x": 0, "y": 0 }
  6346. ],
  6347. "scale": [
  6348. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6349. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6350. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6351. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6352. { "time": 2, "x": 1, "y": 1 }
  6353. ]
  6354. },
  6355. "bone46": {
  6356. "scale": [
  6357. { "time": 0, "x": 0.1, "y": 0.1 }
  6358. ]
  6359. }
  6360. },
  6361. "deform": {
  6362. "default": {
  6363. "kuzi": {
  6364. "kuzi": [
  6365. {
  6366. "time": 0,
  6367. "vertices": [ 4.89999, -1.64979, -2.76226, -3.69313, -2.20601, 0.82779, 0.20766, 3.05269 ]
  6368. },
  6369. {
  6370. "time": 0.1667,
  6371. "vertices": [ 9.23347, 13.51091, 5.31934, -4.08663, 1.46275, -0.92131, 0.43229, -2.54132, 4.07666, 0.02053, 5.26741, 8.4813 ]
  6372. },
  6373. {
  6374. "time": 0.2,
  6375. "vertices": [ 2.56977, 12.56552, -2.08201, -3.44101, -1.7047, -0.28871, 1.81101, -3.60926, 2.48104, -5.99302, 4.55187, 9.14383 ]
  6376. },
  6377. {
  6378. "time": 0.2333,
  6379. "vertices": [ 2.25087, 12.51571, -1.48648, -2.90522, -1.3825, -0.02459, 2.30161, -3.82469, 3.32275, -3.36604, 3.83633, 9.80636 ]
  6380. },
  6381. {
  6382. "time": 0.2667,
  6383. "vertices": [ 1.93197, 12.4659, -0.89096, -2.36942, -1.0603, 0.23953, 3.38271, -1.22492, 4.16446, -0.73907, 3.12079, 10.46889 ]
  6384. },
  6385. {
  6386. "time": 0.3333,
  6387. "vertices": [ 1.29417, 12.36628, -2.85967, -1.25447, -2.51465, 2.90495, 8.01485, 4.50405, 8.23936, 5.24338, 1.68971, 11.79394 ]
  6388. },
  6389. {
  6390. "time": 0.5,
  6391. "vertices": [ 4.78993, 4.73548, -1.24214, -3.04498, -5.25977, -4.02785, 4.85511, 3.46206, 7.26693, -0.88156 ]
  6392. },
  6393. {
  6394. "time": 0.6667,
  6395. "vertices": [ 2.84076, 16.64105, 1.59942, -4.53594, -0.73872, 3.9768, 2.69169, -3.82453, 5.40177, -1.99881, 6.06182, 13.49313 ]
  6396. },
  6397. {
  6398. "time": 0.8333,
  6399. "vertices": [ 1.55701, 10.7833, 0.3001, -1.29784, -0.4159, 0.76777, 3.82884, 6.57438, 9.30684, 7.05727, 1.68971, 11.79394 ]
  6400. },
  6401. {
  6402. "time": 1,
  6403. "vertices": [ 4.89999, -1.64979, -2.76226, -3.69313, -2.20601, 0.82779, 0.20766, 3.05269 ]
  6404. },
  6405. {
  6406. "time": 1.1667,
  6407. "vertices": [ 9.23347, 13.51091, 5.31934, -4.08663, 1.46275, -0.92131, 0.43229, -2.54132, 4.07666, 0.02053, 5.26741, 8.4813 ]
  6408. },
  6409. {
  6410. "time": 1.2,
  6411. "vertices": [ 2.56977, 12.56552, -2.08201, -3.44101, -1.7047, -0.28871, 1.81101, -3.60926, 2.48104, -5.99302, 4.55187, 9.14383 ]
  6412. },
  6413. {
  6414. "time": 1.2333,
  6415. "vertices": [ 2.25087, 12.51571, -1.48648, -2.90522, -1.3825, -0.02459, 2.30161, -3.82469, 3.32275, -3.36604, 3.83633, 9.80636 ]
  6416. },
  6417. {
  6418. "time": 1.2667,
  6419. "vertices": [ 1.93197, 12.4659, -0.89096, -2.36942, -1.0603, 0.23953, 3.38271, -1.22492, 4.16446, -0.73907, 3.12079, 10.46889 ]
  6420. },
  6421. {
  6422. "time": 1.3333,
  6423. "vertices": [ 1.29417, 12.36628, -2.85967, -1.25447, -2.51465, 2.90495, 8.01485, 4.50405, 8.23936, 5.24338, 1.68971, 11.79394 ]
  6424. },
  6425. {
  6426. "time": 1.5,
  6427. "vertices": [ 4.78993, 4.73548, -1.24214, -3.04498, -5.25977, -4.02785, 4.85511, 3.46206, 7.26693, -0.88156 ]
  6428. },
  6429. {
  6430. "time": 1.6667,
  6431. "vertices": [ 2.84076, 16.64105, 1.59942, -4.53594, -0.73872, 3.9768, 2.69169, -3.82453, 5.40177, -1.99881, 6.06182, 13.49313 ]
  6432. },
  6433. {
  6434. "time": 1.8333,
  6435. "vertices": [ 1.55701, 10.7833, 0.3001, -1.29784, -0.4159, 0.76777, 3.82884, 6.57438, 9.30684, 7.05727, 1.68971, 11.79394 ]
  6436. },
  6437. {
  6438. "time": 2,
  6439. "vertices": [ 4.89999, -1.64979, -2.76226, -3.69313, -2.20601, 0.82779, -0.19357, 6.40864, 16.91769, 1.02595 ]
  6440. }
  6441. ]
  6442. },
  6443. "mazi01": {
  6444. "mazi01": [
  6445. {
  6446. "time": 0,
  6447. "vertices": [ -0.33293, 4.83242, 1.3952, 4.24696, 1.3952, 4.24696, 3.18178, 2.22167 ]
  6448. },
  6449. {
  6450. "time": 0.5,
  6451. "vertices": [ 1.57539, -0.19738, 1.57539, -0.19738, 1.57539, -0.19738, 1.57539, -0.19738 ]
  6452. },
  6453. {
  6454. "time": 1,
  6455. "vertices": [ -0.33293, 4.83242, 1.3952, 4.24696, 1.3952, 4.24696, 3.18178, 2.22167 ]
  6456. },
  6457. {
  6458. "time": 1.5,
  6459. "vertices": [ 1.57539, -0.19738, 1.57539, -0.19738, 1.57539, -0.19738, 1.57539, -0.19738 ]
  6460. },
  6461. {
  6462. "time": 2,
  6463. "vertices": [ -0.33293, 4.83242, 1.3952, 4.24696, 1.3952, 4.24696, 3.18178, 2.22167 ]
  6464. }
  6465. ]
  6466. },
  6467. "mazi02": {
  6468. "mazi02": [
  6469. {
  6470. "time": 0,
  6471. "vertices": [ 1.35378, -2.33577, -0.05613, -3.70357, -0.51206, -3.23367, 0, 0, 0, 0, -0.24056, 1.81283, 0, 0, 2.23712, 1.70829 ]
  6472. },
  6473. {
  6474. "time": 0.5,
  6475. "vertices": [ 6.81524, 2.27597, 1.02676, -2.13377, -0.74872, -2.81297, -0.74334, -2.45998, 0, 0, -0.30405, 2.77292, -1.49921, 3.82919, 1.08243, 2.92493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.61326, 6.21941, 5.79674, -1.56598 ]
  6476. },
  6477. {
  6478. "time": 1,
  6479. "vertices": [ 1.35378, -2.33577, -0.05613, -3.70357, -0.51206, -3.23367, 0, 0, 0, 0, -0.24056, 1.81283, 0, 0, 2.23712, 1.70829 ]
  6480. },
  6481. {
  6482. "time": 1.5,
  6483. "vertices": [ 6.81524, 2.27597, 1.02676, -2.13377, -0.74872, -2.81297, -0.74334, -2.45998, 0, 0, -0.30405, 2.77292, -1.49921, 3.82919, 1.08243, 2.92493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.61326, 6.21941, 5.79674, -1.56598 ]
  6484. },
  6485. {
  6486. "time": 2,
  6487. "vertices": [ 1.35378, -2.33577, -0.05613, -3.70357, -0.51206, -3.23367, 0, 0, 0, 0, -0.24056, 1.81283, 0, 0, 2.23712, 1.70829 ]
  6488. }
  6489. ]
  6490. },
  6491. "shenti": {
  6492. "shenti": [
  6493. {
  6494. "time": 0,
  6495. "vertices": [ 0.03476, -0.73116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.76438, 6.80663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10875, 2.68181, -0.10449, 2.19352, -0.08897, 2.1942, 0.31331, 3.67909, 0.33932, 3.67678 ],
  6496. "curve": "stepped"
  6497. },
  6498. {
  6499. "time": 0.5,
  6500. "vertices": [ 0.03476, -0.73116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.76438, 6.80663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10875, 2.68181, -0.10449, 2.19352, -0.08897, 2.1942, 0.31331, 3.67909, 0.33932, 3.67678 ],
  6501. "curve": "stepped"
  6502. },
  6503. {
  6504. "time": 1,
  6505. "vertices": [ 0.03476, -0.73116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.76438, 6.80663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10875, 2.68181, -0.10449, 2.19352, -0.08897, 2.1942, 0.31331, 3.67909, 0.33932, 3.67678 ],
  6506. "curve": "stepped"
  6507. },
  6508. {
  6509. "time": 1.5,
  6510. "vertices": [ 0.03476, -0.73116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.76438, 6.80663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10875, 2.68181, -0.10449, 2.19352, -0.08897, 2.1942, 0.31331, 3.67909, 0.33932, 3.67678 ],
  6511. "curve": "stepped"
  6512. },
  6513. {
  6514. "time": 2,
  6515. "vertices": [ 0.03476, -0.73116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.76438, 6.80663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10875, 2.68181, -0.10449, 2.19352, -0.08897, 2.1942, 0.31331, 3.67909, 0.33932, 3.67678 ]
  6516. }
  6517. ]
  6518. },
  6519. "toufa3": {
  6520. "toufa3": [
  6521. { "time": 0 },
  6522. {
  6523. "time": 0.5,
  6524. "offset": 164,
  6525. "vertices": [ -2.81626, -1.83598, -3.14375, -1.19118, -4.89812, 1.18803 ]
  6526. },
  6527. { "time": 1 },
  6528. {
  6529. "time": 1.5,
  6530. "offset": 164,
  6531. "vertices": [ -2.81626, -1.83598, -3.14375, -1.19118, -4.89812, 1.18803 ]
  6532. },
  6533. { "time": 2 }
  6534. ]
  6535. },
  6536. "yifu1": {
  6537. "yifu1": [
  6538. {
  6539. "time": 0,
  6540. "offset": 86,
  6541. "vertices": [ -8.48349, 8.63602, -4.85817, 11.08827 ]
  6542. },
  6543. {
  6544. "time": 0.5,
  6545. "offset": 86,
  6546. "vertices": [ -11.8833, 4.80584, -12.46668, 2.98211 ]
  6547. },
  6548. {
  6549. "time": 1,
  6550. "offset": 86,
  6551. "vertices": [ -8.48349, 8.63602, -4.85817, 11.08827 ]
  6552. },
  6553. {
  6554. "time": 1.5,
  6555. "offset": 86,
  6556. "vertices": [ -11.8833, 4.80584, -12.46668, 2.98211 ]
  6557. },
  6558. {
  6559. "time": 2,
  6560. "offset": 86,
  6561. "vertices": [ -8.48349, 8.63602, -4.85817, 11.08827 ]
  6562. }
  6563. ]
  6564. },
  6565. "youjiao": {
  6566. "youjiao": [
  6567. { "time": 0 },
  6568. {
  6569. "time": 0.5,
  6570. "offset": 60,
  6571. "vertices": [ -4.93525, -1.64093 ]
  6572. },
  6573. { "time": 1 },
  6574. {
  6575. "time": 1.5,
  6576. "offset": 60,
  6577. "vertices": [ -4.93525, -1.64093 ]
  6578. },
  6579. { "time": 2 }
  6580. ]
  6581. },
  6582. "zuojiao": {
  6583. "zuojiao": [
  6584. {
  6585. "time": 0,
  6586. "offset": 70,
  6587. "vertices": [ -1.87458, 5.00783 ]
  6588. },
  6589. {
  6590. "time": 0.1333,
  6591. "offset": 66,
  6592. "vertices": [ -3.91618, -3.74612 ]
  6593. },
  6594. {
  6595. "time": 0.1667,
  6596. "offset": 66,
  6597. "vertices": [ -1.39953, -4.83423 ]
  6598. },
  6599. {
  6600. "time": 1,
  6601. "offset": 70,
  6602. "vertices": [ -1.87458, 5.00783 ]
  6603. },
  6604. {
  6605. "time": 1.1333,
  6606. "offset": 66,
  6607. "vertices": [ -3.91618, -3.74612 ]
  6608. },
  6609. {
  6610. "time": 1.1667,
  6611. "offset": 66,
  6612. "vertices": [ -1.39953, -4.83423 ]
  6613. },
  6614. {
  6615. "time": 2,
  6616. "offset": 70,
  6617. "vertices": [ -1.87458, 5.00783 ]
  6618. }
  6619. ]
  6620. }
  6621. }
  6622. }
  6623. }
  6624. }
  6625. }