123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116 |
- {
- "skeleton": { "hash": "TlGksMD3o/S3jnM2cLlfXy4fHP8", "spine": "3.6.53", "width": 173.55, "height": 212, "images": "./images/" },
- "bones": [
- { "name": "root" },
- { "name": "bone", "parent": "root", "x": -1.55, "y": 59.87 },
- { "name": "bone2", "parent": "bone", "length": 16.79, "rotation": 89.26, "x": -0.29, "y": 0.39 },
- { "name": "bone3", "parent": "bone2", "length": 32.5, "rotation": -1.18, "x": 16.79 },
- { "name": "bone4", "parent": "bone3", "length": 29.04, "rotation": 146.08, "x": 29.72, "y": 11.25, "color": "f7b221ff" },
- { "name": "bone5", "parent": "bone4", "length": 16.08, "rotation": 3.01, "x": 29.04, "color": "f7b221ff" },
- { "name": "bone6", "parent": "bone5", "length": 14.75, "rotation": -1.33, "x": 16.08, "color": "f7b221ff" },
- { "name": "bone7", "parent": "bone3", "length": 30.24, "rotation": -135.42, "x": 29.37, "y": -17.12, "color": "1c6ec2ff" },
- { "name": "bone8", "parent": "bone7", "length": 16.49, "rotation": 2.87, "x": 30.24, "color": "1c6ec2ff" },
- { "name": "bone9", "parent": "bone8", "length": 12.8, "rotation": 1.53, "x": 16.49, "color": "1c6ec2ff" },
- { "name": "bone10", "parent": "bone", "length": 25.22, "rotation": -101.54, "x": -4.9, "y": -6.85, "color": "ed4809ff" },
- { "name": "bone11", "parent": "bone10", "length": 22.03, "rotation": 2.45, "x": 25.22, "color": "ed4809ff" },
- { "name": "bone12", "parent": "bone11", "length": 13.96, "rotation": -58.18, "x": 22.03, "color": "ed4809ff" },
- { "name": "bone13", "parent": "bone", "length": 26.75, "rotation": -72.98, "x": 7.45, "y": -5.8, "color": "8e0bbeff" },
- { "name": "bone14", "parent": "bone13", "length": 23.3, "rotation": -1.43, "x": 26.75, "color": "8e0bbeff" },
- { "name": "bone15", "parent": "bone14", "length": 11.4, "rotation": -89.65, "x": 24.55, "y": -0.71, "color": "8e0bbeff" },
- { "name": "bone16", "parent": "bone3", "length": 16.05, "rotation": -168.72, "x": 29.73, "y": -6.48, "color": "0cb418ff" },
- { "name": "bone17", "parent": "bone16", "length": 11.82, "rotation": 4.27, "x": 16.05, "color": "0cb418ff" },
- { "name": "bone18", "parent": "bone17", "length": 11.19, "rotation": -1.97, "x": 11.82, "color": "0cb418ff" },
- { "name": "bone19", "parent": "bone18", "length": 8.78, "rotation": 2.1, "x": 11.19, "color": "0cb418ff" },
- { "name": "bone20", "parent": "bone19", "length": 7.6, "rotation": 6.33, "x": 8.78, "color": "0cb418ff" },
- { "name": "bone21", "parent": "bone3", "length": 9.47, "rotation": 164.82, "x": 27.44, "y": 9.81, "color": "e617d8ff" },
- { "name": "bone22", "parent": "bone21", "length": 10.17, "rotation": 4.26, "x": 9.47, "color": "e617d8ff" },
- { "name": "bone23", "parent": "bone22", "length": 8.7, "rotation": 1.31, "x": 10.17, "color": "e617d8ff" },
- { "name": "bone24", "parent": "bone23", "length": 10.85, "rotation": -0.5, "x": 8.7, "color": "e617d8ff" },
- { "name": "bone25", "parent": "bone24", "length": 11.16, "rotation": 1.25, "x": 11.02, "y": 0.04, "color": "e617d8ff" },
- { "name": "bone26", "parent": "bone3", "length": 64.95, "rotation": 6.78, "x": 33.15, "y": -0.44 },
- { "name": "bone27", "parent": "bone26", "length": 21.52, "rotation": 65.8, "x": 72.2, "y": -4.36 },
- { "name": "bone28", "parent": "bone27", "length": 11.5, "rotation": -14.94, "x": 21.52 },
- { "name": "bone29", "parent": "bone28", "length": 10.64, "rotation": -31.75, "x": 11.5 },
- { "name": "bone30", "parent": "bone26", "length": 6.73, "rotation": -142.46, "x": 20.98, "y": -17.78 },
- { "name": "bone31", "parent": "bone30", "length": 9.85, "rotation": 32.35, "x": 6.73 },
- { "name": "bone32", "parent": "bone31", "length": 11.52, "rotation": 38.45, "x": 9.85 },
- { "name": "bone33", "parent": "bone26", "length": 12.61, "rotation": -4.86, "x": 29.27, "y": 22.83 },
- { "name": "bone34", "parent": "bone26", "length": 10.68, "rotation": -6.94, "x": 27.59, "y": -8.38 },
- { "name": "bone35", "parent": "bone26", "x": 42.42, "y": 8.08 },
- { "name": "bone36", "parent": "bone", "length": 6.4, "rotation": -89.27, "x": -0.14, "y": 0.46 },
- { "name": "bone37", "parent": "bone26", "x": 31.5, "y": 8.34 },
- { "name": "bone38", "parent": "bone34", "x": 6.16, "y": 3.17 },
- { "name": "bone39", "parent": "bone33", "x": 7.06, "y": 3.05 },
- { "name": "bone40", "parent": "bone26", "x": 13.16, "y": 9.11 },
- { "name": "bone41", "parent": "bone3", "length": 28.73, "rotation": -155.31, "x": 29.87, "y": -16.4, "color": "d8ea56ff" },
- { "name": "bone42", "parent": "bone41", "length": 21.32, "rotation": 136.57, "x": 28.73, "color": "d8ea56ff" },
- { "name": "bone43", "parent": "bone42", "length": 15.65, "rotation": 9.82, "x": 21.32, "color": "d8ea56ff" },
- { "name": "bone44", "parent": "bone3", "length": 30.87, "rotation": 145.54, "x": 29.91, "y": 11.51, "color": "2895e3ff" },
- { "name": "bone45", "parent": "bone44", "length": 18.1, "rotation": -126.82, "x": 30.87, "color": "2895e3ff" },
- { "name": "bone46", "parent": "bone45", "length": 14.92, "rotation": 9.21, "x": 18.1, "color": "2895e3ff" },
- { "name": "bone47", "parent": "root", "x": 50.27, "y": 114.44 },
- { "name": "bone48", "parent": "bone47", "x": 23.83, "y": -16.3 },
- { "name": "bone49", "parent": "bone47", "x": 10.87, "y": 30.51 },
- { "name": "bone50", "parent": "bone47", "x": -124.98, "y": 7.52 }
- ],
- "slots": [
- { "name": "zuoshou", "bone": "bone4", "attachment": "zuoshou" },
- { "name": "teshuzuoshou2", "bone": "bone44", "attachment": "teshuzuoshou2" },
- { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
- { "name": "zuotui", "bone": "bone10", "attachment": "zuotui" },
- { "name": "youtui", "bone": "bone13", "attachment": "youtui" },
- { "name": "kutou", "bone": "bone36", "attachment": "kutou" },
- { "name": "shuyao", "bone": "bone36", "attachment": "shuyao" },
- { "name": "youwaitao", "bone": "bone16", "attachment": "youwaitao" },
- { "name": "zuowaitao", "bone": "bone21", "attachment": "zuowaitao" },
- { "name": "youshou", "bone": "bone7", "attachment": "youshou" },
- { "name": "toufa2", "bone": "bone30", "attachment": "toufa2" },
- { "name": "toufa5", "bone": "bone26", "attachment": "toufa5" },
- { "name": "toufa6", "bone": "bone26", "attachment": "toufa6" },
- { "name": "lian", "bone": "bone26", "attachment": "lian" },
- { "name": "youyan", "bone": "bone34", "attachment": "youyan" },
- { "name": "youyantongkong", "bone": "bone38", "attachment": "youyantongkong" },
- { "name": "zuoyan", "bone": "bone33", "attachment": "zuoyan" },
- { "name": "zuoyantongkong", "bone": "bone39", "attachment": "zuoyantongkong" },
- { "name": "biyan", "bone": "bone37" },
- { "name": "meimao", "bone": "bone35", "attachment": "meimao" },
- { "name": "toufa4", "bone": "bone26", "attachment": "toufa4" },
- { "name": "toufa1", "bone": "bone27", "attachment": "toufa1" },
- { "name": "erduo", "bone": "bone26", "attachment": "erduo" },
- { "name": "zhangzui", "bone": "bone40" },
- { "name": "teshuzuoshou1", "bone": "bone45", "attachment": "teshuzuoshou1" },
- { "name": "teshuyoushou2", "bone": "bone41", "attachment": "teshuyoushou2" },
- { "name": "teshuyoushou1", "bone": "bone42", "attachment": "teshuyoushou1" },
- { "name": "yin1", "bone": "bone48", "attachment": "yin1" },
- { "name": "yin2", "bone": "bone50", "attachment": "yin2" },
- { "name": "yin3", "bone": "bone49", "attachment": "yin3" }
- ],
- "skins": {
- "default": {
- "biyan": {
- "biyan": { "x": 1.26, "y": -2.94, "rotation": -94.86, "width": 49, "height": 6 }
- },
- "erduo": {
- "erduo": { "x": 31.36, "y": -34.63, "rotation": -94.86, "width": 15, "height": 24 }
- },
- "kutou": {
- "kutou": {
- "type": "mesh",
- "uvs": [ 1, 1, 0.4911, 1, 0, 1, 0, 0, 0.4911, 0, 1, 0 ],
- "triangles": [ 2, 3, 4, 1, 4, 5, 2, 4, 1, 1, 5, 0 ],
- "vertices": [ 7.29, 23.88, 7, 1.49, 6.73, -20.11, -4.27, -19.97, -3.99, 1.63, -3.71, 24.02 ],
- "hull": 6,
- "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
- "width": 44,
- "height": 11
- }
- },
- "lian": {
- "lian": {
- "type": "mesh",
- "uvs": [ 1, 0.64502, 0.93825, 0.73154, 0.9269, 0.81805, 0.62037, 1, 0.39439, 1, 0.31952, 1, 0.07827, 0.8358, 0, 0.60731, 0, 0, 0.28239, 0, 1, 0, 0.34189, 0.4818, 0.28939, 0.70338 ],
- "triangles": [ 11, 9, 10, 11, 7, 8, 11, 8, 9, 11, 10, 0, 12, 7, 11, 1, 12, 11, 0, 1, 11, 1, 3, 12, 6, 7, 12, 4, 5, 12, 6, 12, 5, 12, 3, 4, 1, 2, 3 ],
- "vertices": [ 24.31, -33.53, 17.16, -28.71, 9.73, -27.3, -4.28, -5.19, -2.98, 10.12, -2.54, 15.19, 13.08, 30.33, 33.34, 33.95, 85.98, 29.47, 84.36, 10.34, 80.22, -38.28, 42.25, 9.86, 23.34, 15.05 ],
- "hull": 11,
- "edges": [ 16, 18, 18, 20, 18, 22, 22, 24, 24, 8, 8, 10, 10, 12, 14, 16, 12, 14, 6, 8, 6, 4, 4, 2, 0, 20, 2, 0 ],
- "width": 68,
- "height": 87
- }
- },
- "meimao": {
- "meimao": { "x": 1.33, "y": -3.12, "rotation": -94.86, "width": 56, "height": 14 }
- },
- "shenti": {
- "shenti": {
- "type": "mesh",
- "uvs": [ 0.69331, 0.08006, 0.91731, 0.10806, 1, 0.19556, 1, 0.26492, 1, 0.70002, 1, 0.75427, 0.99999, 0.80202, 1, 1, 0.47398, 1, 0, 1, 0.00567, 0.81339, 0.03352, 0.7456, 0.05051, 0.68466, 0.17821, 0.22669, 0.21031, 0.11156, 0.42031, 0.09406, 0.45531, 0, 0.50431, 0, 0.71431, 0, 0.48333, 0.69174, 0.48154, 0.75089, 0.48002, 0.81495, 0.38064, 0.30452, 0.49431, 0.32969, 0.18072, 0.68679, 0.16482, 0.74715, 0.16489, 0.81391 ],
- "triangles": [ 19, 24, 22, 23, 19, 22, 19, 23, 4, 25, 12, 24, 11, 12, 25, 20, 24, 19, 25, 24, 20, 19, 4, 5, 20, 19, 5, 6, 20, 5, 21, 26, 25, 11, 25, 26, 10, 11, 26, 20, 21, 25, 21, 20, 6, 8, 26, 21, 9, 10, 26, 8, 9, 26, 21, 6, 7, 8, 21, 7, 0, 17, 18, 1, 2, 3, 22, 14, 15, 13, 14, 22, 17, 15, 16, 17, 23, 15, 17, 0, 23, 22, 15, 23, 3, 23, 0, 3, 0, 1, 24, 12, 13, 22, 24, 13, 23, 3, 4 ],
- "vertices": [ 1, 3, 35.81, -8.91, 1, 1, 3, 34.47, -19.04, 1, 2, 3, 29.35, -22.93, 0.99999, 2, 45.66, -23.53, 1.0E-5, 2, 3, 25.19, -23.07, 0.93053, 2, 41.5, -23.59, 0.06947, 2, 3, -0.9, -23.95, 0.49483, 2, 15.4, -23.93, 0.50517, 2, 3, -4.15, -24.06, 0.36991, 2, 12.14, -23.97, 0.63009, 2, 3, -7.02, -24.15, 0.27128, 2, 9.28, -24.01, 0.72872, 2, 3, -18.89, -24.55, 0.07678, 2, -2.6, -24.16, 0.92322, 1, 2, -2.91, -0.49, 1, 2, 3, -20.4, 20.42, 0.01477, 2, -3.19, 20.84, 0.98523, 2, 3, -9.2, 20.54, 0.14716, 2, 8.01, 20.73, 0.85284, 2, 3, -5.09, 19.43, 0.27598, 2, 12.1, 19.53, 0.72402, 2, 3, -1.41, 18.78, 0.44066, 2, 15.76, 18.81, 0.55934, 2, 3, 26.24, 13.96, 0.88763, 2, 43.31, 13.42, 0.11237, 1, 3, 33.2, 12.75, 1, 1, 3, 34.56, 3.34, 1, 1, 3, 40.25, 1.96, 1, 1, 3, 40.33, -0.25, 1, 1, 3, 40.65, -9.69, 1, 2, 3, -1.18, -0.7, 0.0629, 2, 15.59, -0.67, 0.9371, 1, 2, 12.04, -0.64, 1, 1, 2, 8.2, -0.62, 1, 2, 3, 21.88, 4.7, 0.69312, 2, 38.76, 4.25, 0.30688, 2, 3, 20.54, -0.46, 0.55337, 2, 37.32, -0.88, 0.44663, 2, 3, -1.34, 12.92, 0.32701, 2, 15.71, 12.95, 0.67299, 2, 3, -4.99, 13.52, 0.1951, 2, 12.08, 13.62, 0.8049, 2, 3, -8.99, 13.38, 0.09776, 2, 8.07, 13.56, 0.90224 ],
- "hull": 19,
- "edges": [ 18, 20, 28, 30, 30, 32, 36, 0, 0, 2, 2, 4, 14, 16, 16, 18, 32, 34, 34, 36, 38, 8, 20, 22, 22, 24, 40, 38, 8, 10, 40, 10, 16, 42, 42, 40, 10, 12, 12, 14, 42, 12, 24, 26, 26, 28, 26, 44, 34, 46, 46, 38, 44, 46, 4, 6, 6, 8, 46, 6, 24, 48, 48, 38, 22, 50, 50, 40, 48, 50, 20, 52, 52, 42, 50, 52 ],
- "width": 45,
- "height": 60
- }
- },
- "shuyao": {
- "shuyao": {
- "type": "mesh",
- "uvs": [ 1, 1, 0.44651, 1, 0, 1, 0, 0, 0.44651, 0, 1, 0 ],
- "triangles": [ 2, 3, 4, 1, 4, 5, 2, 4, 1, 1, 5, 0 ],
- "vertices": [ 8.3, 24.87, 7.99, -0.03, 7.73, -20.12, -0.27, -20.02, -0.01, 0.07, 0.3, 24.97 ],
- "hull": 6,
- "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
- "width": 45,
- "height": 8
- }
- },
- "teshuyoushou1": {
- "teshuyoushou1": {
- "type": "mesh",
- "uvs": [ 1, 0.32506, 0.87991, 0.49586, 0.86395, 0.51856, 0.84166, 0.55025, 0.52544, 1, 0.17283, 1, 0, 1, 0, 0.40452, 0, 0.37043, 0, 0.34447, 0, 0, 0.71991, 0, 1, 0, 0.52746, 0.45538, 0.51278, 0.47768, 0.54073, 0.42936 ],
- "triangles": [ 15, 11, 0, 15, 10, 11, 15, 9, 10, 11, 12, 0, 5, 14, 4, 4, 14, 3, 14, 5, 7, 5, 6, 7, 14, 13, 3, 3, 13, 2, 13, 15, 2, 2, 15, 1, 1, 15, 0, 13, 14, 8, 15, 13, 8, 7, 8, 14, 15, 8, 9 ],
- "vertices": [ 2, 42, 28.1, -7.6, 0.02443, 43, 5.39, -8.64, 0.97557, 2, 42, 20.78, -7.53, 0.56199, 43, -1.82, -7.33, 0.43801, 2, 42, 19.8, -7.53, 0.67231, 43, -2.78, -7.16, 0.32769, 2, 42, 18.44, -7.51, 0.80172, 43, -4.11, -6.91, 0.19828, 1, 42, -0.84, -7.35, 1, 1, 42, -3.58, -0.09, 1, 1, 42, -4.92, 3.47, 1, 2, 42, 17.36, 11.87, 0.50013, 43, -1.87, 12.37, 0.49987, 2, 42, 18.64, 12.35, 0.40245, 43, -0.53, 12.63, 0.59755, 2, 42, 19.61, 12.72, 0.33305, 43, 0.49, 12.82, 0.66695, 1, 43, 14.02, 15.41, 1, 1, 43, 17, -0.14, 1, 1, 43, 18.16, -6.2, 1, 2, 42, 19.55, 0.29, 0.99448, 43, -1.69, 0.59, 0.00552, 2, 42, 18.61, 0.28, 0.99573, 43, -2.62, 0.74, 0.00427, 2, 42, 20.63, 0.39, 0.93118, 43, -0.61, 0.5, 0.06882 ],
- "hull": 13,
- "edges": [ 0, 24, 8, 10, 10, 12, 20, 22, 22, 24, 4, 26, 26, 16, 4, 6, 6, 8, 10, 28, 28, 26, 6, 28, 12, 14, 14, 16, 28, 14, 0, 2, 2, 4, 22, 30, 30, 26, 2, 30, 16, 18, 18, 20, 30, 18 ],
- "width": 22,
- "height": 40
- }
- },
- "teshuyoushou2": {
- "teshuyoushou2": {
- "type": "mesh",
- "uvs": [ 1, 0.5009, 1, 1, 0.48814, 1, 0, 0.37911, 0, 0, 0.59792, 0 ],
- "triangles": [ 3, 4, 5, 2, 3, 5, 2, 5, 0, 2, 0, 1 ],
- "vertices": [ 19.98, 11.79, 35.63, 5.22, 31.08, -5.63, 7.26, -7.81, -4.62, -2.82, 0.7, 9.86 ],
- "hull": 6,
- "edges": [ 6, 8, 2, 4, 6, 4, 8, 10, 2, 0, 10, 0 ],
- "width": 23,
- "height": 34
- }
- },
- "teshuzuoshou1": {
- "teshuzuoshou1": {
- "type": "mesh",
- "uvs": [ 1, 0.35554, 1, 0.39034, 1, 0.42949, 1, 1, 0.84064, 1, 0.49001, 1, 0.07262, 0.57803, 0.04197, 0.54705, 0.01318, 0.51794, 0, 0, 0.1631, 0, 1, 0, 0.50582, 0.42079, 0.52506, 0.45407, 0.54278, 0.48472 ],
- "triangles": [ 4, 2, 3, 5, 14, 4, 4, 14, 2, 5, 6, 14, 6, 13, 14, 6, 7, 13, 7, 12, 13, 7, 8, 12, 2, 14, 1, 1, 14, 13, 1, 13, 0, 0, 13, 12, 8, 10, 12, 8, 9, 10, 0, 12, 11, 12, 10, 11 ],
- "vertices": [ 2, 46, -2.62, -11.01, 0.42515, 45, 17.27, -11.29, 0.57485, 2, 46, -3.88, -10.4, 0.32107, 45, 15.94, -10.88, 0.67893, 2, 46, -5.28, -9.71, 0.21451, 45, 14.44, -10.43, 0.78549, 1, 45, -7.4, -3.84, 1, 1, 45, -6.39, -0.48, 1, 1, 45, -4.16, 6.9, 1, 2, 46, -1.68, 11.23, 0.32479, 45, 14.65, 10.82, 0.67521, 2, 46, -0.27, 11.29, 0.41496, 45, 16.03, 11.1, 0.58504, 2, 46, 1.06, 11.35, 0.48818, 45, 17.33, 11.37, 0.51182, 1, 46, 19.8, 2.53, 1, 1, 46, 18.23, -0.7, 1, 2, 46, 10.16, -17.24, 0.97473, 45, 30.89, -15.4, 0.02527, 2, 46, -0.2, -0.09, 0.32653, 45, 17.92, -0.12, 0.67347, 1, 45, 16.52, -0.14, 1, 1, 45, 15.23, -0.16, 1 ],
- "hull": 12,
- "edges": [ 16, 18, 6, 8, 8, 10, 18, 20, 20, 22, 24, 20, 16, 24, 0, 22, 24, 0, 14, 16, 26, 24, 14, 26, 0, 2, 26, 2, 10, 12, 12, 14, 8, 28, 28, 26, 12, 28, 2, 4, 4, 6, 28, 4 ],
- "width": 22,
- "height": 40
- }
- },
- "teshuzuoshou2": {
- "teshuzuoshou2": {
- "type": "mesh",
- "uvs": [ 1, 0.34589, 0.44649, 1, 0, 1, 0, 0.48907, 0.62988, 0, 1, 0 ],
- "triangles": [ 4, 5, 0, 3, 1, 2, 4, 1, 3, 4, 0, 1 ],
- "vertices": [ 4.09, 8.72, 30.13, 8.66, 37.55, -1.41, 24.39, -11.11, 1.33, -6.19, -4.82, 2.15 ],
- "hull": 6,
- "edges": [ 0, 10, 2, 4, 0, 2, 8, 10, 4, 6, 8, 6 ],
- "width": 28,
- "height": 32
- }
- },
- "toufa1": {
- "toufa1": {
- "type": "mesh",
- "uvs": [ 0.3508, 0.11212, 0.40985, 0.17399, 0.47525, 0.24054, 0.5576, 0.30012, 0.68206, 0.28837, 0.79573, 0.31187, 0.9148, 0.44112, 1, 0.68199, 1, 0.86196, 1, 1, 0.90956, 1, 0.7965, 1, 0.69474, 1, 0.56471, 1, 0.43468, 1, 0.28204, 1, 0.11836, 0.90926, 0, 0.66586, 0, 0, 0.11244, 0, 0.32573, 0, 0.60183, 0.71776, 0.37255, 0.58596, 0.17426, 0.31556, 0.48008, 0.64802, 0.2646, 0.47427, 0.72395, 0.76403, 0.82359, 0.79938, 0.93788, 0.84276 ],
- "triangles": [ 23, 18, 19, 23, 17, 18, 23, 0, 1, 0, 19, 20, 0, 23, 19, 25, 16, 17, 25, 22, 16, 17, 23, 25, 1, 25, 23, 1, 2, 25, 10, 8, 9, 10, 28, 8, 10, 11, 28, 11, 27, 28, 11, 12, 27, 12, 26, 27, 12, 13, 26, 13, 21, 26, 13, 14, 21, 21, 14, 24, 14, 15, 24, 15, 22, 24, 15, 16, 22, 28, 7, 8, 28, 27, 7, 7, 27, 6, 6, 27, 26, 21, 24, 4, 6, 26, 5, 26, 21, 5, 21, 4, 5, 4, 24, 3, 24, 22, 3, 2, 22, 25, 2, 3, 22 ],
- "vertices": [ 3, 27, 24.66, -17.19, 0.21228, 28, 7.46, -15.8, 0.28299, 29, 4.88, -15.56, 0.50473, 3, 27, 19.66, -16.32, 0.49028, 28, 2.41, -16.25, 0.27328, 29, 0.82, -18.6, 0.23644, 3, 27, 14.15, -15.44, 0.77972, 28, -3.14, -16.81, 0.14027, 29, -3.61, -22, 0.08001, 3, 27, 7.53, -15.23, 0.96205, 28, -9.59, -18.32, 0.02625, 29, -8.29, -26.68, 0.0117, 2, 27, -1.12, -18.77, 0.99994, 28, -17.04, -23.97, 6.0E-5, 1, 27, -9.48, -20.7, 1, 1, 27, -19.62, -18.78, 1, 1, 27, -28.84, -11.81, 1, 1, 27, -31.22, -5.02, 1, 1, 27, -33.05, 0.19, 1, 1, 27, -26.65, 2.44, 1, 1, 27, -18.65, 5.25, 1, 1, 27, -11.45, 7.78, 1, 1, 27, -2.25, 11.01, 1, 2, 27, 6.96, 14.24, 0.96544, 28, -17.74, 10, 0.03456, 2, 27, 17.76, 18.03, 0.66239, 28, -8.28, 16.45, 0.33761, 3, 27, 30.54, 18.67, 0.20417, 28, 3.9, 20.37, 0.74873, 29, -17.18, 13.32, 0.0471, 3, 27, 42.14, 12.42, 0.011, 28, 16.72, 17.32, 0.64489, 29, -4.68, 17.48, 0.34412, 1, 29, 19.66, 6.66, 1, 2, 28, 24.76, -9.43, 5.0E-4, 29, 16.24, -1.05, 0.9995, 3, 27, 27.92, -20.8, 0.10174, 28, 11.54, -18.45, 0.20929, 29, 9.74, -15.66, 0.68897, 1, 27, -1.13, -0.57, 1, 1, 27, 16.84, 0.15, 1, 3, 27, 34.45, -5.13, 1.9E-4, 28, 13.82, -1.62, 0.00538, 29, 2.82, -0.16, 0.99442, 3, 27, 8.41, -0.18, 0.99997, 28, -12.62, -3.55, 2.0E-5, 29, -18.65, -15.72, 2.0E-5, 3, 27, 25.96, -1.38, 0.00177, 28, 4.64, -0.19, 0.99676, 29, -5.73, -3.77, 0.00147, 1, 27, -10.39, -1.86, 1, 1, 27, -17.91, -3, 1, 1, 27, -26.57, -4.2, 1 ],
- "hull": 21,
- "edges": [ 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 0, 40, 30, 32, 34, 36, 32, 34, 14, 16, 16, 18, 36, 38, 38, 40, 46, 38, 26, 42, 42, 8, 42, 48, 48, 44, 6, 48, 26, 28, 28, 30, 48, 28, 30, 44, 44, 4, 44, 50, 50, 46, 32, 50, 0, 2, 2, 4, 50, 2, 0, 46, 46, 34, 52, 42, 10, 52, 24, 26, 52, 24, 54, 52, 12, 54, 22, 24, 54, 22, 16, 56, 56, 54, 14, 56, 18, 20, 20, 22, 56, 20 ],
- "width": 75,
- "height": 40
- }
- },
- "toufa2": {
- "toufa2": {
- "type": "mesh",
- "uvs": [ 0.80767, 0.21666, 0.80126, 0.35516, 0.80773, 0.45388, 0.87417, 0.47434, 0.92854, 0.46797, 1, 0.4596, 1, 0.58532, 1, 0.66238, 0.90373, 0.78405, 0.76157, 0.91382, 0.47341, 1, 0.1622, 1, 0.03832, 0.8441, 0, 0.5691, 0.16809, 0.42861, 0.68088, 0, 0.83457, 0, 0.4343, 0.68543, 0.60788, 0.72321, 0.80882, 0.65255, 0.91392, 0.61559, 0.30074, 0.55915 ],
- "triangles": [ 9, 19, 8, 9, 18, 19, 8, 20, 7, 8, 19, 20, 19, 18, 2, 20, 6, 7, 19, 3, 20, 19, 2, 3, 20, 4, 6, 20, 3, 4, 4, 5, 6, 11, 17, 10, 10, 18, 9, 10, 17, 18, 2, 18, 17, 2, 17, 1, 0, 15, 16, 11, 12, 17, 12, 21, 17, 21, 13, 14, 21, 12, 13, 1, 17, 21, 1, 21, 0, 15, 0, 21, 15, 21, 14 ],
- "vertices": [ 1, 30, 5.45, 22.24, 1, 1, 30, 8.97, 18.7, 1, 3, 30, 11.76, 16.48, 0.11282, 31, 13.07, 11.23, 0.11722, 32, 9.51, 6.79, 0.76995, 3, 30, 14.01, 17.85, 0.02762, 31, 15.7, 11.18, 0.03143, 32, 11.54, 5.12, 0.94096, 3, 30, 15.23, 19.53, 0.00682, 31, 17.63, 11.95, 0.00716, 32, 13.53, 4.52, 0.98602, 2, 30, 16.84, 21.74, 1.3E-4, 32, 16.14, 3.72, 0.99987, 1, 32, 14.36, -0.44, 1, 1, 32, 13.27, -2.98, 1, 1, 32, 8.18, -5.57, 1, 2, 31, 15.74, -5.21, 0.136, 32, 1.37, -7.74, 0.864, 3, 30, 17.71, -6.16, 0.1049, 31, 5.99, -11.08, 0.8666, 32, -9.92, -6.27, 0.0285, 2, 30, 9.74, -14.89, 0.65062, 31, -5.42, -14.19, 0.34938, 2, 30, 2.42, -14.58, 0.86872, 31, -11.44, -10.02, 0.13128, 2, 30, -5.87, -8.98, 0.99978, 31, -15.45, -0.85, 2.2E-4, 3, 30, -5.3, -0.85, 0.99862, 31, -10.62, 5.71, 1.2E-4, 32, -12.48, 17.2, 0.00126, 1, 30, -3.56, 23.94, 1, 1, 30, 0.38, 28.25, 1, 1, 31, 1.57, -0.54, 1, 1, 31, 8.3, -0.12, 1, 3, 30, 17.07, 11.69, 6.2E-4, 31, 14.99, 4.34, 0.00162, 32, 6.73, 0.2, 0.99776, 1, 32, 10.92, -0.15, 1, 1, 30, 1.57, -0.3, 1 ],
- "hull": 17,
- "edges": [ 26, 28, 28, 30, 34, 36, 30, 32, 32, 0, 12, 10, 24, 26, 24, 22, 20, 22, 20, 18, 18, 16, 12, 14, 16, 14, 4, 36, 36, 20, 38, 36, 18, 38, 4, 6, 38, 6, 12, 40, 40, 38, 16, 40, 6, 8, 8, 10, 40, 8, 22, 34, 0, 2, 2, 4, 34, 2, 28, 42, 42, 34, 0, 42, 42, 24 ],
- "width": 38,
- "height": 36
- }
- },
- "toufa4": {
- "toufa4": { "x": 45.73, "y": -30.83, "rotation": -94.86, "width": 19, "height": 48 }
- },
- "toufa5": {
- "toufa5": {
- "type": "mesh",
- "uvs": [ 1, 0.26146, 0.4199, 0.72613, 0.5511, 1, 0, 1, 0, 0, 0.3461, 0 ],
- "triangles": [ 1, 5, 0, 1, 3, 4, 1, 4, 5, 3, 1, 2 ],
- "vertices": [ 78.31, 13.68, 54.29, 27.36, 39.33, 26, 40.27, 36.98, 94.07, 32.41, 93.49, 25.51 ],
- "hull": 6,
- "edges": [ 6, 8, 4, 6, 4, 2, 2, 0, 8, 10, 0, 10 ],
- "width": 20,
- "height": 54
- }
- },
- "toufa6": {
- "toufa6": {
- "type": "mesh",
- "uvs": [ 1, 0.53818, 0.32675, 1, 0.13254, 1, 0.16275, 0.68727, 0.92664, 0, 1, 0 ],
- "triangles": [ 4, 5, 0, 0, 3, 4, 1, 3, 0, 2, 3, 1 ],
- "vertices": [ 31.07, -38.66, 18.05, -11.88, 18.68, -4.52, 28.86, -6.54, 49, -37.39, 48.77, -40.16 ],
- "hull": 6,
- "edges": [ 4, 6, 8, 10, 6, 8, 2, 4, 0, 10, 2, 0 ],
- "width": 38,
- "height": 33
- }
- },
- "yin1": {
- "yin1": { "x": 0.42, "y": 0.84, "width": 20, "height": 53 }
- },
- "yin2": {
- "yin2": { "x": 1.67, "y": 7.11, "width": 32, "height": 40 }
- },
- "yin3": {
- "yin3": { "x": -1.67, "y": 10.45, "width": 35, "height": 40 }
- },
- "youshou": {
- "youshou": {
- "type": "mesh",
- "uvs": [ 0.64239, 0.35119, 0.66106, 0.36892, 0.67663, 0.38369, 0.85385, 0.55194, 0.8758, 0.57278, 0.89449, 0.59053, 1, 0.6907, 1, 1, 0.66928, 1, 0.5905, 0.91448, 0.56863, 0.89074, 0.55168, 0.87234, 0.3637, 0.66827, 0.34648, 0.64958, 0.32985, 0.63153, 0, 0.27345, 0, 0, 0.27248, 0, 0.5255, 0.51306, 0.76858, 0.74212, 0.74547, 0.72035, 0.71946, 0.69584, 0.50365, 0.49173, 0.53991, 0.52664 ],
- "triangles": [ 8, 19, 7, 19, 6, 7, 8, 9, 19, 9, 20, 19, 19, 5, 6, 19, 20, 5, 9, 10, 20, 20, 11, 21, 20, 10, 11, 12, 23, 11, 11, 23, 21, 20, 4, 5, 20, 21, 4, 21, 23, 3, 21, 3, 4, 3, 23, 2, 12, 18, 23, 12, 13, 18, 2, 23, 1, 23, 18, 1, 18, 0, 1, 18, 22, 0, 13, 22, 18, 13, 14, 22, 14, 15, 22, 22, 16, 17, 22, 17, 0, 22, 15, 16 ],
- "vertices": [ 2, 7, 28.83, 10.05, 0.44118, 8, -0.9, 10.11, 0.55882, 2, 7, 30.13, 10.13, 0.33792, 8, 0.4, 10.12, 0.66208, 2, 7, 31.21, 10.19, 0.25771, 8, 1.48, 10.13, 0.74229, 2, 8, 13.82, 10.21, 0.73605, 9, -2.4, 10.28, 0.26395, 2, 8, 15.34, 10.22, 0.6256, 9, -0.88, 10.25, 0.3744, 2, 8, 16.65, 10.23, 0.52282, 9, 0.42, 10.22, 0.47718, 2, 8, 23.99, 10.28, 0.1089, 9, 7.77, 10.07, 0.8911, 1, 9, 18.51, -1.48, 1, 2, 8, 23.24, -12.56, 0.12761, 9, 6.4, -12.74, 0.87239, 2, 8, 17.37, -12.21, 0.39809, 9, 0.55, -12.23, 0.60191, 2, 8, 15.74, -12.11, 0.51377, 9, -1.08, -12.09, 0.48623, 3, 7, 45.3, -11.29, 4.0E-5, 8, 14.48, -12.03, 0.60348, 9, -2.34, -11.98, 0.39647, 3, 7, 31.28, -11.15, 0.43598, 8, 0.48, -11.19, 0.56346, 9, -16.31, -10.76, 5.5E-4, 3, 7, 30, -11.14, 0.54008, 8, -0.8, -11.11, 0.45991, 9, -17.59, -10.65, 2.0E-5, 2, 7, 28.76, -11.13, 0.6377, 8, -2.04, -11.04, 0.3623, 1, 7, 4.15, -10.88, 1, 1, 7, -6.11, -1.43, 1, 1, 7, 3.13, 8.59, 1, 1, 8, 0.71, 0.13, 1, 1, 9, 1.08, 0.27, 1, 2, 8, 15.97, 0.28, 0.93766, 9, -0.52, 0.3, 0.06234, 2, 8, 14.16, 0.27, 0.99666, 9, -2.32, 0.33, 0.00334, 1, 7, 29.4, 0.09, 1, 2, 7, 31.94, 0.22, 0.00122, 8, 1.71, 0.14, 0.99878 ],
- "hull": 18,
- "edges": [ 32, 34, 14, 12, 30, 32, 14, 16, 38, 14, 16, 18, 18, 38, 12, 10, 38, 10, 18, 20, 40, 38, 20, 40, 10, 8, 40, 8, 20, 22, 42, 40, 22, 42, 8, 6, 42, 6, 26, 36, 36, 2, 26, 28, 28, 30, 32, 44, 44, 36, 28, 44, 2, 0, 0, 34, 44, 0, 22, 24, 24, 26, 36, 46, 46, 42, 24, 46, 2, 4, 4, 6, 46, 4 ],
- "width": 50,
- "height": 51
- }
- },
- "youtui": {
- "youtui": {
- "type": "mesh",
- "uvs": [ 1, 0.46307, 1, 0.48775, 1, 0.50673, 1, 0.82684, 1, 0.84472, 1, 0.86374, 1, 1, 0.33763, 1, 0.32403, 0.95745, 0.3087, 0.90947, 0.47076, 0.85768, 0.45831, 0.83783, 0.44824, 0.82176, 0.27227, 0.54102, 0.25805, 0.51832, 0.24357, 0.49523, 0, 0.10663, 0, 0, 0.36419, 0, 1, 0, 0.83462, 0.86438, 0.6246, 0.50071, 0.63546, 0.52158, 0.61182, 0.47612, 0.82101, 0.84096, 0.811, 0.82373 ],
- "triangles": [ 7, 20, 6, 7, 8, 20, 8, 10, 20, 8, 9, 10, 20, 5, 6, 10, 24, 20, 5, 20, 4, 20, 24, 4, 10, 11, 24, 24, 3, 4, 11, 25, 24, 24, 25, 3, 11, 12, 25, 25, 2, 3, 12, 22, 25, 25, 22, 2, 12, 13, 22, 13, 21, 22, 2, 22, 1, 22, 21, 1, 13, 14, 21, 14, 23, 21, 14, 15, 23, 1, 21, 0, 15, 18, 23, 15, 16, 18, 21, 23, 0, 0, 23, 19, 23, 18, 19, 16, 17, 18 ],
- "vertices": [ 2, 13, 28, 12.75, 0.51444, 14, 0.94, 12.77, 0.48556, 2, 13, 29.4, 12.32, 0.41896, 14, 2.34, 12.38, 0.58104, 2, 13, 30.47, 11.99, 0.34626, 14, 3.42, 12.08, 0.65374, 2, 14, 21.61, 7, 0.95613, 15, -7.73, -2.89, 0.04387, 2, 14, 22.63, 6.72, 0.91296, 15, -7.44, -1.88, 0.08704, 2, 14, 23.71, 6.42, 0.84272, 15, -7.13, -0.8, 0.15728, 2, 14, 31.45, 4.26, 0.18817, 15, -4.92, 6.93, 0.81183, 1, 15, 16.09, 0.92, 1, 2, 14, 23.04, -16.55, 8.7E-4, 15, 15.83, -1.61, 0.99913, 2, 14, 20.17, -16.28, 0.01094, 15, 15.54, -4.47, 0.98906, 2, 14, 18.67, -10.31, 0.30903, 15, 9.56, -5.94, 0.69097, 3, 13, 43.91, -10.82, 1.8E-4, 14, 17.43, -10.39, 0.48016, 15, 9.64, -7.18, 0.51965, 3, 13, 42.91, -10.86, 9.4E-4, 14, 16.43, -10.45, 0.5846, 15, 9.69, -8.18, 0.41446, 3, 13, 25.37, -11.56, 0.67135, 14, -1.09, -11.59, 0.32848, 15, 10.73, -25.71, 1.7E-4, 3, 13, 23.95, -11.62, 0.75855, 14, -2.5, -11.69, 0.24145, 15, 10.81, -27.12, 0, 2, 13, 22.51, -11.68, 0.8337, 14, -3.95, -11.78, 0.1663, 1, 13, -1.76, -12.65, 1, 1, 13, -7.78, -10.81, 1, 1, 13, -4.26, 0.68, 1, 1, 13, 1.88, 20.74, 1, 1, 14, 22.28, 1.15, 1, 2, 13, 26.5, 0.25, 0.73702, 14, -0.25, 0.24, 0.26298, 1, 14, 1.03, 0.26, 1, 1, 13, 24.99, 0.27, 1, 1, 14, 20.82, 1.09, 1, 1, 14, 19.76, 1.05, 1 ],
- "hull": 20,
- "edges": [ 32, 34, 20, 18, 12, 14, 34, 36, 36, 38, 14, 16, 16, 18, 40, 16, 28, 42, 42, 2, 26, 28, 44, 42, 26, 44, 2, 4, 44, 4, 28, 30, 30, 32, 36, 46, 46, 42, 30, 46, 2, 0, 0, 38, 46, 0, 20, 40, 10, 12, 40, 10, 20, 22, 40, 48, 22, 48, 8, 10, 48, 8, 22, 24, 24, 26, 44, 50, 50, 48, 24, 50, 4, 6, 6, 8, 50, 6 ],
- "width": 33,
- "height": 59
- }
- },
- "youwaitao": {
- "youwaitao": {
- "type": "mesh",
- "uvs": [ 0.76596, 0.21888, 0.79395, 0.34296, 0.82366, 0.4377, 0.85049, 0.52325, 0.8721, 0.59216, 0.89749, 0.67312, 0.918, 0.73854, 0.93912, 0.80588, 0.9657, 0.89063, 1, 1, 0.66449, 1, 0, 1, 0, 0.9493, 0, 0.86009, 0, 0.80226, 0, 0.73452, 0, 0.65357, 0, 0.5627, 0, 0.47348, 0, 0.36609, 0, 0.24053, 0, 0, 0.13414, 0, 0.71659, 0, 0.26431, 0.35665, 0.35592, 0.54839, 0.44753, 0.70099, 0.52949, 0.82817, 0.31351, 0.45962, 0.4004, 0.62248, 0.60184, 0.92026, 0.22129, 0.23879, 0.49231, 0.77048 ],
- "triangles": [ 10, 8, 9, 11, 30, 10, 10, 30, 8, 11, 12, 30, 12, 27, 30, 12, 13, 27, 30, 7, 8, 30, 27, 7, 27, 6, 7, 13, 32, 27, 13, 14, 32, 27, 32, 6, 14, 26, 32, 14, 15, 26, 32, 5, 6, 32, 26, 5, 26, 4, 5, 15, 29, 26, 15, 16, 29, 26, 29, 4, 16, 25, 29, 16, 17, 25, 29, 3, 4, 29, 25, 3, 25, 2, 3, 17, 28, 25, 17, 18, 28, 25, 28, 2, 18, 24, 28, 28, 1, 2, 28, 24, 1, 18, 19, 24, 19, 31, 24, 19, 20, 31, 24, 0, 1, 24, 31, 0, 20, 22, 31, 20, 21, 22, 31, 23, 0, 31, 22, 23 ],
- "vertices": [ 2, 16, 7.97, 15.79, 0.85099, 17, -6.88, 16.35, 0.14901, 4, 16, 16.55, 15.17, 0.45433, 17, 1.63, 15.09, 0.52449, 18, -10.7, 14.73, 0.02093, 19, -21.34, 15.53, 2.5E-4, 4, 16, 23.13, 14.93, 0.14125, 17, 8.18, 14.36, 0.68585, 18, -4.13, 14.23, 0.15642, 19, -14.79, 14.78, 0.01648, 5, 16, 29.08, 14.71, 0.02282, 17, 14.09, 13.7, 0.48012, 18, 1.8, 13.77, 0.40208, 19, -8.88, 14.11, 0.09473, 20, -15.99, 15.97, 2.4E-4, 5, 16, 33.87, 14.54, 0.0013, 17, 18.85, 13.17, 0.23323, 18, 6.58, 13.4, 0.50434, 19, -4.12, 13.56, 0.24712, 20, -11.32, 14.9, 0.014, 4, 17, 24.45, 12.54, 0.06072, 18, 12.2, 12.97, 0.34182, 19, 1.48, 12.92, 0.48626, 20, -5.83, 13.65, 0.11119, 4, 17, 28.97, 12.04, 0.01173, 18, 16.73, 12.62, 0.14171, 19, 6, 12.41, 0.52417, 20, -1.39, 12.64, 0.32239, 4, 17, 33.63, 11.52, 3.7E-4, 18, 21.4, 12.26, 0.03046, 19, 10.65, 11.88, 0.32531, 20, 3.17, 11.6, 0.64386, 3, 18, 27.28, 11.81, 3.7E-4, 19, 16.51, 11.21, 0.07211, 20, 8.92, 10.29, 0.92752, 1, 20, 16.34, 8.6, 1, 1, 20, 13.11, -0.22, 1, 2, 19, 17.41, -16.85, 0.23683, 20, 6.72, -17.7, 0.76317, 3, 18, 25.78, -15.49, 0.00498, 19, 14.01, -16.02, 0.27464, 20, 3.43, -16.5, 0.72038, 3, 18, 19.75, -14.25, 0.06619, 19, 8.03, -14.55, 0.47047, 20, -2.35, -14.38, 0.46334, 4, 17, 27.19, -13.98, 1.5E-4, 18, 15.84, -13.44, 0.18539, 19, 4.16, -13.6, 0.56498, 20, -6.1, -13.01, 0.24948, 4, 17, 22.65, -12.88, 0.01334, 18, 11.27, -12.5, 0.43524, 19, -0.38, -12.49, 0.47718, 20, -10.48, -11.4, 0.07424, 4, 17, 17.22, -11.56, 0.12507, 18, 5.8, -11.37, 0.68573, 19, -5.81, -11.16, 0.18436, 20, -15.73, -9.49, 0.00484, 3, 17, 11.13, -10.08, 0.52773, 18, -0.34, -10.1, 0.45519, 19, -11.9, -9.67, 0.01708, 3, 16, 21.82, -8.23, 0.04529, 17, 5.14, -8.63, 0.8811, 18, -6.37, -8.86, 0.07361, 2, 16, 14.51, -7.02, 0.64596, 17, -2.06, -6.89, 0.35404, 1, 16, 5.96, -5.61, 1, 1, 16, -10.42, -2.91, 1, 1, 16, -9.81, 0.79, 1, 1, 16, -7.15, 16.88, 1, 2, 16, 15.07, 0.39, 0.98821, 17, -0.95, 0.46, 0.01179, 2, 17, 12.51, -0.17, 0.0541, 18, 0.7, -0.14, 0.9459, 4, 17, 23.35, -0.15, 1.2E-4, 18, 11.53, 0.24, 0.23768, 19, 0.35, 0.23, 0.76208, 20, -8.35, 1.16, 1.3E-4, 2, 19, 9.42, 0.37, 0.07547, 20, 0.68, 0.3, 0.92453, 2, 16, 22.3, 0.59, 7.0E-5, 17, 6.28, 0.12, 0.99993, 3, 17, 17.78, -0.16, 1.1E-4, 18, 5.96, 0.04, 0.99969, 19, -5.23, 0.24, 2.0E-4, 1, 20, 7.34, 0.02, 1, 2, 16, 6.85, 0.52, 0.99976, 17, -9.14, 1.2, 2.4E-4, 3, 18, 16.48, 0.5, 3.0E-4, 19, 5.3, 0.31, 0.99545, 20, -3.42, 0.69, 0.00425 ],
- "hull": 24,
- "edges": [ 42, 44, 18, 20, 20, 22, 38, 48, 48, 2, 44, 46, 34, 50, 50, 6, 30, 52, 52, 10, 26, 54, 54, 14, 34, 36, 36, 38, 48, 56, 56, 50, 36, 56, 2, 4, 4, 6, 56, 4, 30, 32, 32, 34, 50, 58, 58, 52, 32, 58, 6, 8, 8, 10, 58, 8, 22, 24, 24, 26, 20, 60, 60, 54, 24, 60, 14, 16, 16, 18, 60, 16, 38, 40, 40, 42, 44, 62, 62, 48, 40, 62, 2, 0, 0, 46, 62, 0, 26, 28, 28, 30, 52, 64, 64, 54, 28, 64, 10, 12, 12, 14, 64, 12 ],
- "width": 28,
- "height": 69
- }
- },
- "youyan": {
- "youyan": { "x": 4.99, "y": -0.16, "rotation": -87.92, "width": 23, "height": 15 }
- },
- "youyantongkong": {
- "youyantongkong": { "x": -0.73, "y": -1.82, "rotation": -87.92, "width": 13, "height": 9 }
- },
- "zhangzui": {
- "zhangzui": { "x": -1.28, "y": -3.85, "rotation": -94.86, "width": 37, "height": 21 }
- },
- "zuoshou": {
- "zuoshou": {
- "type": "mesh",
- "uvs": [ 1, 0.22257, 0.70396, 0.56314, 0.68542, 0.58446, 0.66539, 0.60751, 0.47369, 0.82806, 0.45537, 0.84913, 0.43305, 0.87481, 0.32422, 1, 0, 1, 0, 0.61149, 0.05455, 0.56332, 0.08149, 0.53952, 0.30134, 0.34536, 0.32688, 0.32281, 0.35662, 0.29655, 0.6924, 0, 1, 0, 0.49769, 0.45169, 0.27813, 0.717, 0.52551, 0.42667, 0.47611, 0.47776, 0.30085, 0.68955, 0.2514, 0.7442 ],
- "triangles": [ 8, 22, 7, 7, 22, 6, 8, 9, 22, 22, 18, 6, 6, 18, 5, 18, 21, 5, 9, 10, 22, 22, 10, 18, 10, 11, 18, 5, 21, 4, 4, 20, 3, 4, 21, 20, 18, 11, 21, 21, 12, 20, 21, 11, 12, 12, 13, 20, 20, 17, 3, 3, 17, 2, 17, 19, 2, 2, 19, 1, 1, 19, 0, 20, 13, 17, 13, 14, 17, 17, 14, 19, 0, 19, 16, 19, 14, 15, 19, 15, 16 ],
- "vertices": [ 1, 4, 4.53, 10.86, 1, 2, 4, 27.51, 11.03, 0.7712, 5, -0.95, 11.09, 0.2288, 3, 4, 28.95, 11.04, 0.67183, 5, 0.49, 11.03, 0.32797, 6, -15.85, 10.66, 2.0E-4, 3, 4, 30.51, 11.05, 0.55335, 5, 2.04, 10.96, 0.44451, 6, -14.29, 10.63, 0.00215, 3, 4, 45.39, 11.16, 0.00418, 5, 16.91, 10.28, 0.34793, 6, 0.59, 10.3, 0.64789, 3, 4, 46.81, 11.17, 0.00131, 5, 18.33, 10.22, 0.24326, 6, 2.01, 10.27, 0.75543, 3, 4, 48.55, 11.18, 1.0E-4, 5, 20.06, 10.14, 0.13982, 6, 3.74, 10.23, 0.86008, 1, 6, 12.19, 10.04, 1, 1, 6, 20.38, -2.03, 1, 2, 5, 18.46, -14.09, 0.22064, 6, 2.7, -14.03, 0.77936, 2, 5, 14.9, -13.46, 0.36896, 6, -0.87, -13.48, 0.63104, 2, 5, 13.14, -13.15, 0.47275, 6, -2.63, -13.22, 0.52725, 3, 4, 28.41, -10.67, 0.43386, 5, -1.19, -10.63, 0.55039, 6, -17.03, -11.03, 0.01575, 3, 4, 26.73, -10.47, 0.57574, 5, -2.86, -10.33, 0.41734, 6, -18.7, -10.77, 0.00691, 3, 4, 24.78, -10.23, 0.7265, 5, -4.8, -9.99, 0.27167, 6, -20.64, -10.47, 0.00183, 1, 4, 2.71, -7.53, 1, 1, 4, -5.4, 3.69, 1, 2, 4, 27.98, -0.09, 1, 6, -17.15, -0.43, 0, 2, 5, 16.55, -0.42, 0.14307, 6, 0.47, -0.41, 0.85693, 1, 4, 26.13, 0.12, 1, 3, 4, 29.71, -0.04, 0.02656, 5, 0.66, -0.07, 0.97342, 6, -15.42, -0.43, 3.0E-5, 1, 5, 14.73, -0.38, 1, 1, 6, 2.39, -0.57, 1 ],
- "hull": 17,
- "edges": [ 30, 32, 16, 18, 0, 32, 14, 16, 26, 34, 34, 4, 26, 28, 28, 30, 32, 38, 38, 34, 28, 38, 0, 2, 2, 4, 38, 2, 24, 26, 34, 40, 24, 40, 4, 6, 40, 6, 18, 20, 20, 36, 36, 10, 20, 22, 22, 24, 36, 42, 42, 40, 22, 42, 6, 8, 8, 10, 42, 8, 16, 44, 44, 36, 18, 44, 10, 12, 12, 14, 44, 12 ],
- "width": 45,
- "height": 55
- }
- },
- "zuotui": {
- "zuotui": {
- "type": "mesh",
- "uvs": [ 1, 0.20036, 0.87592, 0.49657, 0.86837, 0.5146, 0.85966, 0.53539, 0.72578, 0.85503, 0.71791, 0.87381, 0.71114, 0.88997, 0.66505, 1, 0, 1, 0, 0.96276, 0, 0.92005, 0.18329, 0.85385, 0.18483, 0.83837, 0.18674, 0.81924, 0.21756, 0.51049, 0.22, 0.48608, 0.2218, 0.46803, 0.25092, 0.17634, 0.26852, 0, 0.6984, 0, 1, 0, 0.43529, 0.8688, 0.54734, 0.4988, 0.55347, 0.47856, 0.53962, 0.5243, 0.44077, 0.85068, 0.4457, 0.8344 ],
- "triangles": [ 8, 21, 7, 8, 9, 21, 9, 11, 21, 9, 10, 11, 11, 12, 21, 7, 21, 6, 21, 25, 6, 6, 25, 5, 25, 26, 5, 5, 26, 4, 21, 12, 25, 26, 24, 4, 4, 24, 3, 12, 13, 25, 25, 13, 26, 13, 14, 26, 26, 14, 24, 24, 22, 3, 14, 15, 24, 24, 15, 22, 3, 22, 2, 22, 23, 2, 2, 23, 1, 15, 16, 22, 22, 16, 23, 0, 1, 19, 16, 17, 23, 23, 17, 19, 1, 23, 19, 19, 17, 18, 19, 20, 0 ],
- "vertices": [ 1, 10, 4.22, 11.82, 1, 2, 10, 22.19, 11.19, 0.72192, 11, -2.55, 11.31, 0.27808, 2, 10, 23.28, 11.15, 0.644, 11, -1.46, 11.22, 0.356, 2, 10, 24.54, 11.1, 0.54619, 11, -0.2, 11.12, 0.45381, 2, 11, 19.14, 9.61, 0.98169, 12, -9.68, 2.61, 0.01831, 2, 11, 20.28, 9.52, 0.95733, 12, -9.01, 3.53, 0.04267, 2, 11, 21.26, 9.44, 0.92437, 12, -8.43, 4.32, 0.07563, 2, 11, 27.92, 8.92, 0.62482, 12, -4.47, 9.71, 0.37518, 1, 12, 16.38, 0.97, 1, 1, 12, 15.53, -1.06, 1, 1, 12, 14.56, -3.38, 1, 2, 11, 21.99, -8.62, 0.20772, 12, 7.3, -4.58, 0.79228, 2, 11, 21.08, -8.71, 0.32151, 12, 6.9, -5.4, 0.67849, 2, 11, 19.95, -8.82, 0.45183, 12, 6.41, -6.41, 0.54817, 2, 10, 27.47, -10.58, 0.37053, 11, 1.8, -10.67, 0.62947, 2, 10, 26.05, -10.79, 0.48507, 11, 0.37, -10.81, 0.51493, 2, 10, 24.99, -10.94, 0.57099, 11, -0.7, -10.92, 0.42901, 2, 10, 7.93, -13.41, 0.83836, 11, -17.85, -12.66, 0.16164, 1, 10, -2.38, -14.91, 1, 1, 10, -5.31, -0.59, 1, 1, 10, -7.36, 9.46, 1, 2, 11, 21.51, -0.02, 0.87102, 12, -0.26, -0.45, 0.12898, 2, 10, 24.55, 0.27, 0.93697, 11, -0.65, 0.29, 0.06303, 2, 10, 23.34, 0.23, 0.9974, 11, -1.86, 0.31, 0.0026, 2, 10, 26.08, 0.31, 3.1E-4, 11, 0.88, 0.27, 0.99969, 2, 11, 20.42, 0, 0.99868, 12, -0.84, -1.37, 0.00132, 2, 11, 19.45, 0.01, 0.99993, 12, -1.37, -2.19, 7.0E-5 ],
- "hull": 21,
- "edges": [ 22, 20, 0, 40, 14, 16, 36, 38, 38, 40, 16, 18, 18, 20, 42, 18, 30, 44, 44, 4, 30, 32, 38, 46, 46, 44, 32, 46, 0, 2, 2, 4, 46, 2, 28, 30, 48, 44, 28, 48, 4, 6, 48, 6, 22, 42, 12, 14, 42, 12, 22, 24, 42, 50, 24, 50, 10, 12, 50, 10, 24, 26, 26, 28, 48, 52, 52, 50, 26, 52, 6, 8, 8, 10, 52, 8, 32, 34, 34, 36 ],
- "width": 34,
- "height": 59
- }
- },
- "zuowaitao": {
- "zuowaitao": {
- "type": "mesh",
- "uvs": [ 1, 0.06399, 0.93675, 0.18828, 0.88418, 0.29159, 0.84478, 0.36902, 0.80402, 0.44912, 0.77236, 0.51134, 0.73074, 0.59313, 0.70215, 0.6493, 0.66313, 0.72598, 0.63501, 0.78125, 0.60451, 0.84119, 0.56388, 0.92102, 0.52369, 1, 0, 1, 0, 0.89822, 0, 0.80592, 0, 0.74267, 0, 0.66884, 0.03761, 0.60404, 0.07709, 0.53604, 0.11374, 0.4729, 0.15189, 0.40719, 0.19346, 0.33558, 0.24085, 0.25394, 0.29969, 0.15258, 0.36192, 0.04537, 0.55794, 0.27726, 0.44213, 0.42727, 0.33982, 0.5598, 0.23618, 0.69406, 0.14542, 0.81163, 0.29111, 0.6229, 0.39374, 0.48996, 0.18994, 0.75396, 0.07593, 0.90164, 0.5008, 0.35128, 0.6421, 0.16823, 0.72353, 0.06276 ],
- "triangles": [ 13, 34, 12, 12, 34, 11, 13, 14, 34, 34, 30, 11, 11, 30, 10, 30, 34, 15, 34, 14, 15, 30, 33, 10, 10, 33, 9, 33, 30, 16, 30, 15, 16, 33, 29, 9, 9, 29, 8, 29, 33, 17, 33, 16, 17, 29, 31, 8, 8, 31, 7, 17, 18, 29, 29, 18, 31, 31, 28, 7, 7, 28, 6, 18, 19, 31, 31, 19, 28, 28, 32, 6, 6, 32, 5, 19, 20, 28, 28, 20, 32, 32, 27, 5, 5, 27, 4, 20, 21, 32, 32, 21, 27, 27, 35, 4, 4, 35, 3, 21, 22, 27, 27, 22, 35, 35, 26, 3, 3, 26, 2, 22, 23, 35, 35, 23, 26, 26, 36, 2, 2, 36, 1, 23, 24, 26, 26, 24, 36, 36, 37, 1, 1, 37, 0, 24, 25, 36, 36, 25, 37, 37, 25, 0 ],
- "vertices": [ 1, 21, -6.25, 5.18, 1, 2, 21, 1.74, 6.25, 0.99382, 22, -7.24, 6.8, 0.00618, 3, 21, 8.39, 7.14, 0.5941, 22, -0.55, 7.2, 0.40492, 23, -10.55, 7.44, 9.8E-4, 3, 21, 13.37, 7.8, 0.11071, 22, 4.47, 7.49, 0.8045, 23, -5.53, 7.62, 0.0848, 4, 21, 18.52, 8.49, 0.00144, 22, 9.66, 7.8, 0.49123, 23, -0.33, 7.81, 0.50343, 24, -9.1, 7.73, 0.00391, 4, 22, 13.69, 8.04, 0.13382, 23, 3.7, 7.95, 0.78169, 24, -5.07, 7.91, 0.0825, 25, -15.92, 8.22, 0.00198, 4, 22, 18.99, 8.35, 0.00234, 23, 9, 8.14, 0.47131, 24, 0.23, 8.15, 0.47191, 25, -10.61, 8.34, 0.05444, 3, 23, 12.65, 8.27, 0.15269, 24, 3.87, 8.31, 0.64835, 25, -6.97, 8.43, 0.19896, 3, 23, 17.62, 8.45, 0.0077, 24, 8.84, 8.53, 0.3653, 25, -1.99, 8.54, 0.62699, 2, 24, 12.43, 8.69, 0.08947, 25, 1.59, 8.62, 0.91053, 2, 24, 16.31, 8.86, 0.00204, 25, 5.48, 8.71, 0.99796, 1, 25, 10.66, 8.83, 1, 1, 25, 15.78, 8.94, 1, 1, 25, 17.84, -1.86, 1, 1, 25, 11.44, -3.08, 1, 2, 24, 16.75, -4.02, 0.04786, 25, 5.64, -4.18, 0.95214, 2, 24, 12.79, -4.87, 0.45119, 25, 1.66, -4.94, 0.54881, 3, 23, 16.82, -5.92, 5.8E-4, 24, 8.17, -5.85, 0.97292, 25, -2.98, -5.83, 0.02651, 2, 23, 12.6, -5.98, 0.09461, 24, 3.95, -5.94, 0.90539, 2, 23, 8.17, -6.04, 0.60251, 24, -0.48, -6.04, 0.39749, 3, 22, 14.37, -6, 0.07042, 23, 4.05, -6.09, 0.89072, 24, -4.59, -6.13, 0.03886, 2, 22, 10.09, -6.15, 0.52063, 23, -0.23, -6.15, 0.47937, 3, 21, 15.35, -5.9, 0.02756, 22, 5.43, -6.32, 0.92838, 23, -4.89, -6.21, 0.04405, 2, 21, 10.06, -6.48, 0.47751, 22, 0.11, -6.51, 0.52249, 2, 21, 3.5, -7.21, 0.98503, 22, -6.49, -6.75, 0.01497, 1, 21, -3.45, -7.98, 1, 2, 21, 9.53, 0.32, 0.43353, 22, 0.08, 0.31, 0.56647, 2, 22, 9.99, 0.08, 0.6412, 23, -0.19, 0.08, 0.3588, 2, 23, 8.55, -0.33, 0.64056, 24, -0.14, -0.33, 0.35944, 1, 24, 8.71, -0.67, 1, 2, 24, 16.47, -0.96, 0.00833, 25, 5.42, -1.12, 0.99167, 2, 23, 12.72, -0.52, 9.0E-4, 24, 4.02, -0.49, 0.9991, 1, 23, 3.95, -0.11, 1, 2, 24, 12.66, -0.82, 0.1191, 25, 1.62, -0.89, 0.8809, 1, 25, 11.36, -1.47, 1, 3, 21, 14.41, 0.57, 9.0E-5, 22, 4.97, 0.2, 0.99968, 23, -5.2, 0.32, 2.3E-4, 1, 21, 2.34, -0.04, 1, 1, 21, -4.62, -0.39, 1 ],
- "hull": 26,
- "edges": [ 24, 26, 46, 52, 52, 4, 42, 54, 54, 8, 38, 56, 56, 12, 34, 58, 58, 16, 30, 60, 60, 20, 34, 36, 36, 38, 56, 62, 62, 58, 36, 62, 12, 14, 14, 16, 62, 14, 38, 40, 40, 42, 54, 64, 64, 56, 40, 64, 8, 10, 10, 12, 64, 10, 30, 32, 32, 34, 58, 66, 66, 60, 32, 66, 16, 18, 18, 20, 66, 18, 26, 28, 28, 30, 26, 68, 68, 60, 28, 68, 20, 22, 22, 24, 68, 22, 42, 44, 44, 46, 52, 70, 70, 54, 44, 70, 4, 6, 6, 8, 70, 6, 46, 48, 72, 52, 48, 72, 0, 2, 2, 4, 72, 2, 74, 72, 0, 74, 48, 50, 74, 50, 50, 0 ],
- "width": 21,
- "height": 64
- }
- },
- "zuoyan": {
- "zuoyan": { "x": 4.95, "y": -0.08, "rotation": -90, "width": 21, "height": 15 }
- },
- "zuoyantongkong": {
- "zuoyantongkong": { "x": -0.61, "y": -1.63, "rotation": -90, "width": 12, "height": 8 }
- }
- }
- },
- "animations": {
- "stand1": {
- "slots": {
- "teshuzuoshou1": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.4667, "name": null },
- { "time": 0.9333, "name": null },
- { "time": 1.4, "name": null },
- { "time": 1.8667, "name": null }
- ]
- },
- "teshuzuoshou2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.4667, "name": null },
- { "time": 0.9333, "name": null },
- { "time": 1.4, "name": null },
- { "time": 1.8667, "name": null }
- ]
- },
- "yin1": {
- "color": [
- { "time": 0, "color": "ffffff00" },
- { "time": 0.3333, "color": "ffffffff", "curve": "stepped" },
- { "time": 1.1, "color": "ffffffff" },
- { "time": 1.5667, "color": "ffffff00" }
- ]
- },
- "yin2": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 0.2667, "color": "ffffff00" },
- { "time": 0.6, "color": "ffffffff", "curve": "stepped" },
- { "time": 1.2333, "color": "ffffffff" },
- { "time": 1.8, "color": "ffffff00" }
- ]
- },
- "yin3": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 0.3667, "color": "ffffff00" },
- { "time": 0.7333, "color": "ffffffff", "curve": "stepped" },
- { "time": 0.9333, "color": "ffffffff" },
- { "time": 1.4333, "color": "ffffff00" }
- ]
- },
- "youshou": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.4667, "name": null },
- { "time": 0.9333, "name": null },
- { "time": 1.4, "name": null },
- { "time": 1.8667, "name": null }
- ]
- },
- "zhangzui": {
- "attachment": [
- { "time": 0, "name": "zhangzui" },
- { "time": 0.1, "name": null },
- { "time": 0.4667, "name": "zhangzui" },
- { "time": 0.5667, "name": null },
- { "time": 0.9333, "name": "zhangzui" },
- { "time": 1.0333, "name": null },
- { "time": 1.4, "name": "zhangzui" },
- { "time": 1.5, "name": null },
- { "time": 1.8667, "name": "zhangzui" },
- { "time": 1.9667, "name": null }
- ]
- },
- "zuoshou": {
- "attachment": [
- { "time": 0, "name": "zuoshou" },
- { "time": 0.4667, "name": "zuoshou" },
- { "time": 0.9333, "name": "zuoshou" },
- { "time": 1.4, "name": "zuoshou" },
- { "time": 1.8667, "name": "zuoshou" },
- { "time": 2.3333, "name": "zuoshou" }
- ]
- }
- },
- "bones": {
- "root": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 0.65, "y": 0.65 }
- ]
- },
- "bone": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.9667, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": -1.96, "y": 0 },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0 },
- { "time": 0.5667, "x": -1.96, "y": 0 },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0 },
- { "time": 1.0333, "x": -1.96, "y": 0 },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0 },
- { "time": 1.5, "x": -1.96, "y": 0 },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0 },
- { "time": 1.9667, "x": -1.96, "y": 0 },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.9667, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": -1.56, "y": 0.03 },
- { "time": 0.3, "x": -0.3, "y": 0.01 },
- { "time": 0.4667, "x": 0, "y": 0 },
- { "time": 0.5667, "x": -1.56, "y": 0.03 },
- { "time": 0.7667, "x": -0.3, "y": 0.01 },
- { "time": 0.9333, "x": 0, "y": 0 },
- { "time": 1.0333, "x": -1.56, "y": 0.03 },
- { "time": 1.2333, "x": -0.3, "y": 0.01 },
- { "time": 1.4, "x": 0, "y": 0 },
- { "time": 1.5, "x": -1.56, "y": 0.03 },
- { "time": 1.7, "x": -0.3, "y": 0.01 },
- { "time": 1.8667, "x": 0, "y": 0 },
- { "time": 1.9667, "x": -1.56, "y": 0.03 },
- { "time": 2.1667, "x": -0.3, "y": 0.01 },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": -0.19 },
- { "time": 0.1, "angle": 0 },
- { "time": 0.3, "angle": -7.04 },
- { "time": 0.4667, "angle": -0.19 },
- { "time": 0.5667, "angle": 0 },
- { "time": 0.7667, "angle": -7.04 },
- { "time": 0.9333, "angle": -0.19 },
- { "time": 1.0333, "angle": 0 },
- { "time": 1.2333, "angle": -7.04 },
- { "time": 1.4, "angle": -0.19 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.7, "angle": -7.04 },
- { "time": 1.8667, "angle": -0.19 },
- { "time": 1.9667, "angle": 0 },
- { "time": 2.1667, "angle": -7.04 },
- { "time": 2.3333, "angle": -0.19 }
- ],
- "translate": [
- { "time": 0, "x": 1.68, "y": -0.74 },
- { "time": 0.1, "x": -0.41, "y": -2.25 },
- { "time": 0.3, "x": 5.36, "y": -0.78 },
- { "time": 0.4667, "x": 1.68, "y": -0.74 },
- { "time": 0.5667, "x": -0.41, "y": -2.25 },
- { "time": 0.7667, "x": 5.36, "y": -0.78 },
- { "time": 0.9333, "x": 1.68, "y": -0.74 },
- { "time": 1.0333, "x": -0.41, "y": -2.25 },
- { "time": 1.2333, "x": 5.36, "y": -0.78 },
- { "time": 1.4, "x": 1.68, "y": -0.74 },
- { "time": 1.5, "x": -0.41, "y": -2.25 },
- { "time": 1.7, "x": 5.36, "y": -0.78 },
- { "time": 1.8667, "x": 1.68, "y": -0.74 },
- { "time": 1.9667, "x": -0.41, "y": -2.25 },
- { "time": 2.1667, "x": 5.36, "y": -0.78 },
- { "time": 2.3333, "x": 1.68, "y": -0.74 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": -51.37 },
- { "time": 0.1, "angle": -36.31 },
- { "time": 0.3, "angle": -66.71 },
- { "time": 0.4667, "angle": -51.37 },
- { "time": 0.5667, "angle": -36.31 },
- { "time": 0.7667, "angle": -66.71 },
- { "time": 0.9333, "angle": -51.37 },
- { "time": 1.0333, "angle": -36.31 },
- { "time": 1.2333, "angle": -66.71 },
- { "time": 1.4, "angle": -51.37 },
- { "time": 1.5, "angle": -36.31 },
- { "time": 1.7, "angle": -66.71 },
- { "time": 1.8667, "angle": -51.37 },
- { "time": 1.9667, "angle": -36.31 },
- { "time": 2.1667, "angle": -66.71 },
- { "time": 2.3333, "angle": -51.37 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": -28.98 },
- { "time": 0.1, "angle": -21.82 },
- { "time": 0.3, "angle": -24.02 },
- { "time": 0.4667, "angle": -28.98 },
- { "time": 0.5667, "angle": -21.82 },
- { "time": 0.7667, "angle": -24.02 },
- { "time": 0.9333, "angle": -28.98 },
- { "time": 1.0333, "angle": -21.82 },
- { "time": 1.2333, "angle": -24.02 },
- { "time": 1.4, "angle": -28.98 },
- { "time": 1.5, "angle": -21.82 },
- { "time": 1.7, "angle": -24.02 },
- { "time": 1.8667, "angle": -28.98 },
- { "time": 1.9667, "angle": -21.82 },
- { "time": 2.1667, "angle": -24.02 },
- { "time": 2.3333, "angle": -28.98 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1, "x": 1.1, "y": 1.1 },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1 },
- { "time": 0.5667, "x": 1.1, "y": 1.1 },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1 },
- { "time": 1.0333, "x": 1.1, "y": 1.1 },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1 },
- { "time": 1.5, "x": 1.1, "y": 1.1 },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1 },
- { "time": 1.9667, "x": 1.1, "y": 1.1 },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.9667, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0.63, "y": 1.37 },
- { "time": 0.1, "x": -0.67, "y": -0.73 },
- { "time": 0.3, "x": 1.57, "y": -0.06 },
- { "time": 0.4667, "x": 0.63, "y": 1.37 },
- { "time": 0.5667, "x": -0.67, "y": -0.73 },
- { "time": 0.7667, "x": 1.57, "y": -0.06 },
- { "time": 0.9333, "x": 0.63, "y": 1.37 },
- { "time": 1.0333, "x": -0.67, "y": -0.73 },
- { "time": 1.2333, "x": 1.57, "y": -0.06 },
- { "time": 1.4, "x": 0.63, "y": 1.37 },
- { "time": 1.5, "x": -0.67, "y": -0.73 },
- { "time": 1.7, "x": 1.57, "y": -0.06 },
- { "time": 1.8667, "x": 0.63, "y": 1.37 },
- { "time": 1.9667, "x": -0.67, "y": -0.73 },
- { "time": 2.1667, "x": 1.57, "y": -0.06 },
- { "time": 2.3333, "x": 0.63, "y": 1.37 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 63.94 },
- { "time": 0.1, "angle": 37.35 },
- { "time": 0.3, "angle": 53.36 },
- { "time": 0.4667, "angle": 63.94 },
- { "time": 0.5667, "angle": 37.35 },
- { "time": 0.7667, "angle": 53.36 },
- { "time": 0.9333, "angle": 63.94 },
- { "time": 1.0333, "angle": 37.35 },
- { "time": 1.2333, "angle": 53.36 },
- { "time": 1.4, "angle": 63.94 },
- { "time": 1.5, "angle": 37.35 },
- { "time": 1.7, "angle": 53.36 },
- { "time": 1.8667, "angle": 63.94 },
- { "time": 1.9667, "angle": 37.35 },
- { "time": 2.1667, "angle": 53.36 },
- { "time": 2.3333, "angle": 63.94 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.9667, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 2.56 },
- { "time": 0.1, "angle": -9.25 },
- { "time": 0.4667, "angle": 2.56 },
- { "time": 0.5667, "angle": -9.25 },
- { "time": 0.9333, "angle": 2.56 },
- { "time": 1.0333, "angle": -9.25 },
- { "time": 1.4, "angle": 2.56 },
- { "time": 1.5, "angle": -9.25 },
- { "time": 1.8667, "angle": 2.56 },
- { "time": 1.9667, "angle": -9.25 },
- { "time": 2.3333, "angle": 2.56 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 14.38 },
- { "time": 0.1, "angle": 36.83 },
- { "time": 0.4667, "angle": 14.38 },
- { "time": 0.5667, "angle": 36.83 },
- { "time": 0.9333, "angle": 14.38 },
- { "time": 1.0333, "angle": 36.83 },
- { "time": 1.4, "angle": 14.38 },
- { "time": 1.5, "angle": 36.83 },
- { "time": 1.8667, "angle": 14.38 },
- { "time": 1.9667, "angle": 36.83 },
- { "time": 2.3333, "angle": 14.38 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": -17.59 },
- { "time": 0.1, "angle": -19.53 },
- { "time": 0.4667, "angle": -17.59 },
- { "time": 0.5667, "angle": -19.53 },
- { "time": 0.9333, "angle": -17.59 },
- { "time": 1.0333, "angle": -19.53 },
- { "time": 1.4, "angle": -17.59 },
- { "time": 1.5, "angle": -19.53 },
- { "time": 1.8667, "angle": -17.59 },
- { "time": 1.9667, "angle": -19.53 },
- { "time": 2.3333, "angle": -17.59 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": -6.91 },
- { "time": 0.1, "angle": -13.49 },
- { "time": 0.4667, "angle": -6.91 },
- { "time": 0.5667, "angle": -13.49 },
- { "time": 0.9333, "angle": -6.91 },
- { "time": 1.0333, "angle": -13.49 },
- { "time": 1.4, "angle": -6.91 },
- { "time": 1.5, "angle": -13.49 },
- { "time": 1.8667, "angle": -6.91 },
- { "time": 1.9667, "angle": -13.49 },
- { "time": 2.3333, "angle": -6.91 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 18.55 },
- { "time": 0.4667, "angle": 0 },
- { "time": 0.5667, "angle": 18.55 },
- { "time": 0.9333, "angle": 0 },
- { "time": 1.0333, "angle": 18.55 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.5, "angle": 18.55 },
- { "time": 1.8667, "angle": 0 },
- { "time": 1.9667, "angle": 18.55 },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 10.01 },
- { "time": 0.1, "angle": -0.73 },
- { "time": 0.4667, "angle": 10.01 },
- { "time": 0.5667, "angle": -0.73 },
- { "time": 0.9333, "angle": 10.01 },
- { "time": 1.0333, "angle": -0.73 },
- { "time": 1.4, "angle": 10.01 },
- { "time": 1.5, "angle": -0.73 },
- { "time": 1.8667, "angle": 10.01 },
- { "time": 1.9667, "angle": -0.73 },
- { "time": 2.3333, "angle": 10.01 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": -0.01, "y": -1.28 },
- { "time": 0.4667, "x": 0, "y": 0 },
- { "time": 0.5667, "x": -0.01, "y": -1.28 },
- { "time": 0.9333, "x": 0, "y": 0 },
- { "time": 1.0333, "x": -0.01, "y": -1.28 },
- { "time": 1.4, "x": 0, "y": 0 },
- { "time": 1.5, "x": -0.01, "y": -1.28 },
- { "time": 1.8667, "x": 0, "y": 0 },
- { "time": 1.9667, "x": -0.01, "y": -1.28 },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 9.44 },
- { "time": 0.3, "angle": 4.33 },
- { "time": 0.4667, "angle": 0 },
- { "time": 0.5667, "angle": 9.44 },
- { "time": 0.7667, "angle": 4.33 },
- { "time": 0.9333, "angle": 0 },
- { "time": 1.0333, "angle": 9.44 },
- { "time": 1.2333, "angle": 4.33 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.5, "angle": 9.44 },
- { "time": 1.7, "angle": 4.33 },
- { "time": 1.8667, "angle": 0 },
- { "time": 1.9667, "angle": 9.44 },
- { "time": 2.1667, "angle": 4.33 },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0.67, "y": 0.02 },
- { "time": 0.1, "x": 0.37, "y": -0.97 },
- { "time": 0.3, "x": -0.09, "y": -1.95 },
- { "time": 0.4667, "x": 0.67, "y": 0.02 },
- { "time": 0.5667, "x": 0.37, "y": -0.97 },
- { "time": 0.7667, "x": -0.09, "y": -1.95 },
- { "time": 0.9333, "x": 0.67, "y": 0.02 },
- { "time": 1.0333, "x": 0.37, "y": -0.97 },
- { "time": 1.2333, "x": -0.09, "y": -1.95 },
- { "time": 1.4, "x": 0.67, "y": 0.02 },
- { "time": 1.5, "x": 0.37, "y": -0.97 },
- { "time": 1.7, "x": -0.09, "y": -1.95 },
- { "time": 1.8667, "x": 0.67, "y": 0.02 },
- { "time": 1.9667, "x": 0.37, "y": -0.97 },
- { "time": 2.1667, "x": -0.09, "y": -1.95 },
- { "time": 2.3333, "x": 0.67, "y": 0.02 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -2.99 },
- { "time": 0.2333, "angle": 11.42 },
- { "time": 0.4667, "angle": 0 },
- { "time": 0.5667, "angle": -2.99 },
- { "time": 0.7, "angle": 11.42 },
- { "time": 0.9333, "angle": 0 },
- { "time": 1.0333, "angle": -2.99 },
- { "time": 1.1667, "angle": 11.42 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.5, "angle": -2.99 },
- { "time": 1.6333, "angle": 11.42 },
- { "time": 1.8667, "angle": 0 },
- { "time": 1.9667, "angle": -2.99 },
- { "time": 2.1, "angle": 11.42 },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 7.37 },
- { "time": 0.4667, "angle": 0 },
- { "time": 0.5667, "angle": 7.37 },
- { "time": 0.9333, "angle": 0 },
- { "time": 1.0333, "angle": 7.37 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.5, "angle": 7.37 },
- { "time": 1.8667, "angle": 0 },
- { "time": 1.9667, "angle": 7.37 },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -10.75 },
- { "time": 0.2333, "angle": 18.2 },
- { "time": 0.4667, "angle": 0 },
- { "time": 0.5667, "angle": -10.75 },
- { "time": 0.7, "angle": 18.2 },
- { "time": 0.9333, "angle": 0 },
- { "time": 1.0333, "angle": -10.75 },
- { "time": 1.1667, "angle": 18.2 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.5, "angle": -10.75 },
- { "time": 1.6333, "angle": 18.2 },
- { "time": 1.8667, "angle": 0 },
- { "time": 1.9667, "angle": -10.75 },
- { "time": 2.1, "angle": 18.2 },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone20": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -10.75 },
- { "time": 0.2333, "angle": 18.2 },
- { "time": 0.4667, "angle": 0 },
- { "time": 0.5667, "angle": -10.75 },
- { "time": 0.7, "angle": 18.2 },
- { "time": 0.9333, "angle": 0 },
- { "time": 1.0333, "angle": -10.75 },
- { "time": 1.1667, "angle": 18.2 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.5, "angle": -10.75 },
- { "time": 1.6333, "angle": 18.2 },
- { "time": 1.8667, "angle": 0 },
- { "time": 1.9667, "angle": -10.75 },
- { "time": 2.1, "angle": 18.2 },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0 },
- { "time": 0.3, "angle": -3.31 },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0 },
- { "time": 0.7667, "angle": -3.31 },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0 },
- { "time": 1.2333, "angle": -3.31 },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0 },
- { "time": 1.7, "angle": -3.31 },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.9667, "angle": 0 },
- { "time": 2.1667, "angle": -3.31 },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 1.31, "y": 0.6 },
- { "time": 0.1, "x": 0, "y": 0 },
- { "time": 0.3, "x": 4.05, "y": 0.44 },
- { "time": 0.4667, "x": 1.31, "y": 0.6 },
- { "time": 0.5667, "x": 0, "y": 0 },
- { "time": 0.7667, "x": 4.05, "y": 0.44 },
- { "time": 0.9333, "x": 1.31, "y": 0.6 },
- { "time": 1.0333, "x": 0, "y": 0 },
- { "time": 1.2333, "x": 4.05, "y": 0.44 },
- { "time": 1.4, "x": 1.31, "y": 0.6 },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 1.7, "x": 4.05, "y": 0.44 },
- { "time": 1.8667, "x": 1.31, "y": 0.6 },
- { "time": 1.9667, "x": 0, "y": 0 },
- { "time": 2.1667, "x": 4.05, "y": 0.44 },
- { "time": 2.3333, "x": 1.31, "y": 0.6 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -5.02 },
- { "time": 0.2667, "angle": -4.93 },
- { "time": 0.4667, "angle": 0 },
- { "time": 0.5667, "angle": -5.02 },
- { "time": 0.7333, "angle": -4.93 },
- { "time": 0.9333, "angle": 0 },
- { "time": 1.0333, "angle": -5.02 },
- { "time": 1.2, "angle": -4.93 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.5, "angle": -5.02 },
- { "time": 1.6667, "angle": -4.93 },
- { "time": 1.8667, "angle": 0 },
- { "time": 1.9667, "angle": -5.02 },
- { "time": 2.1333, "angle": -4.93 },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -8.82 },
- { "time": 0.4667, "angle": 0 },
- { "time": 0.5667, "angle": -8.82 },
- { "time": 0.9333, "angle": 0 },
- { "time": 1.0333, "angle": -8.82 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.5, "angle": -8.82 },
- { "time": 1.8667, "angle": 0 },
- { "time": 1.9667, "angle": -8.82 },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 9.47 },
- { "time": 0.2667, "angle": -10.21 },
- { "time": 0.4667, "angle": 0 },
- { "time": 0.5667, "angle": 9.47 },
- { "time": 0.7333, "angle": -10.21 },
- { "time": 0.9333, "angle": 0 },
- { "time": 1.0333, "angle": 9.47 },
- { "time": 1.2, "angle": -10.21 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.5, "angle": 9.47 },
- { "time": 1.6667, "angle": -10.21 },
- { "time": 1.8667, "angle": 0 },
- { "time": 1.9667, "angle": 9.47 },
- { "time": 2.1333, "angle": -10.21 },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 9.47 },
- { "time": 0.2667, "angle": -10.21 },
- { "time": 0.4667, "angle": 0 },
- { "time": 0.5667, "angle": 9.47 },
- { "time": 0.7333, "angle": -10.21 },
- { "time": 0.9333, "angle": 0 },
- { "time": 1.0333, "angle": 9.47 },
- { "time": 1.2, "angle": -10.21 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.5, "angle": 9.47 },
- { "time": 1.6667, "angle": -10.21 },
- { "time": 1.8667, "angle": 0 },
- { "time": 1.9667, "angle": 9.47 },
- { "time": 2.1333, "angle": -10.21 },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -0.25, "y": 2.09 },
- { "time": 0.1, "x": -6.04, "y": -2.12 },
- { "time": 0.3, "x": -0.46, "y": -3.07 },
- { "time": 0.4667, "x": -0.25, "y": 2.09 },
- { "time": 0.5667, "x": -6.04, "y": -2.12 },
- { "time": 0.7667, "x": -0.46, "y": -3.07 },
- { "time": 0.9333, "x": -0.25, "y": 2.09 },
- { "time": 1.0333, "x": -6.04, "y": -2.12 },
- { "time": 1.2333, "x": -0.46, "y": -3.07 },
- { "time": 1.4, "x": -0.25, "y": 2.09 },
- { "time": 1.5, "x": -6.04, "y": -2.12 },
- { "time": 1.7, "x": -0.46, "y": -3.07 },
- { "time": 1.8667, "x": -0.25, "y": 2.09 },
- { "time": 1.9667, "x": -6.04, "y": -2.12 },
- { "time": 2.1667, "x": -0.46, "y": -3.07 },
- { "time": 2.3333, "x": -0.25, "y": 2.09 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.9667, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.1,
- "angle": 15.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.4667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5667,
- "angle": 15.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.9333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.0333,
- "angle": 15.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.4,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 15.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.9667,
- "angle": 15.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.1,
- "angle": 15.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.4667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5667,
- "angle": 15.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.9333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.0333,
- "angle": 15.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.4,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 15.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.9667,
- "angle": 15.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.1,
- "angle": -12.99,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.4667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5667,
- "angle": -12.99,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.9333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.0333,
- "angle": -12.99,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.4,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -12.99,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.9667,
- "angle": -12.99,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.1,
- "x": -0.54,
- "y": 2.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.4667,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5667,
- "x": -0.54,
- "y": 2.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.9333,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.0333,
- "x": -0.54,
- "y": 2.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.4,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": -0.54,
- "y": 2.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8667,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.9667,
- "x": -0.54,
- "y": 2.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.1,
- "angle": 3.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.4667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5667,
- "angle": 3.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.9333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.0333,
- "angle": 3.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.4,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 3.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.9667,
- "angle": 3.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.1,
- "x": -0.62,
- "y": 0.84,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.4667,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5667,
- "x": -0.62,
- "y": 0.84,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.9333,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.0333,
- "x": -0.62,
- "y": 0.84,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.4,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": -0.62,
- "y": 0.84,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8667,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.9667,
- "x": -0.62,
- "y": 0.84,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.1,
- "angle": 2.07,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.4667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5667,
- "angle": 2.07,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.9333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.0333,
- "angle": 2.07,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.4,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 2.07,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.9667,
- "angle": 2.07,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.9667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": -0.05, "y": -0.63 },
- { "time": 0.4667, "x": 0, "y": 0 },
- { "time": 0.5667, "x": -0.05, "y": -0.63 },
- { "time": 0.9333, "x": 0, "y": 0 },
- { "time": 1.0333, "x": -0.05, "y": -0.63 },
- { "time": 1.4, "x": 0, "y": 0 },
- { "time": 1.5, "x": -0.05, "y": -0.63 },
- { "time": 1.8667, "x": 0, "y": 0 },
- { "time": 1.9667, "x": -0.05, "y": -0.63 },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.9667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": -0.05, "y": -0.41 },
- { "time": 0.4667, "x": 0, "y": 0 },
- { "time": 0.5667, "x": -0.05, "y": -0.41 },
- { "time": 0.9333, "x": 0, "y": 0 },
- { "time": 1.0333, "x": -0.05, "y": -0.41 },
- { "time": 1.4, "x": 0, "y": 0 },
- { "time": 1.5, "x": -0.05, "y": -0.41 },
- { "time": 1.8667, "x": 0, "y": 0 },
- { "time": 1.9667, "x": -0.05, "y": -0.41 },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.9667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": 0, "y": -0.86 },
- { "time": 0.4667, "x": 0, "y": 0 },
- { "time": 0.5667, "x": 0, "y": -0.86 },
- { "time": 0.9333, "x": 0, "y": 0 },
- { "time": 1.0333, "x": 0, "y": -0.86 },
- { "time": 1.4, "x": 0, "y": 0 },
- { "time": 1.5, "x": 0, "y": -0.86 },
- { "time": 1.8667, "x": 0, "y": 0 },
- { "time": 1.9667, "x": 0, "y": -0.86 },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.9667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": 0.01, "y": -0.45 },
- { "time": 0.4667, "x": 0, "y": 0 },
- { "time": 0.5667, "x": 0.01, "y": -0.45 },
- { "time": 0.9333, "x": 0, "y": 0 },
- { "time": 1.0333, "x": 0.01, "y": -0.45 },
- { "time": 1.4, "x": 0, "y": 0 },
- { "time": 1.5, "x": 0.01, "y": -0.45 },
- { "time": 1.8667, "x": 0, "y": 0 },
- { "time": 1.9667, "x": 0.01, "y": -0.45 },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.9667, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": -1.52, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": -1.52, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": -1.52, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": -1.52, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": -1.52, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": -1.52 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": -1.97, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": -1.97, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": -1.97, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": -1.97, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": -1.97, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": -1.97 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone40": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.9667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": 0.48, "y": -1.08 },
- { "time": 0.4667, "x": 0, "y": 0 },
- { "time": 0.5667, "x": 0.48, "y": -1.08 },
- { "time": 0.9333, "x": 0, "y": 0 },
- { "time": 1.0333, "x": 0.48, "y": -1.08 },
- { "time": 1.4, "x": 0, "y": 0 },
- { "time": 1.5, "x": 0.48, "y": -1.08 },
- { "time": 1.8667, "x": 0, "y": 0 },
- { "time": 1.9667, "x": 0.48, "y": -1.08 },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone41": {
- "rotate": [
- { "time": 0, "angle": 6.38 },
- { "time": 0.1, "angle": 11.09 },
- { "time": 0.3, "angle": 17.57 },
- { "time": 0.4667, "angle": 6.38 },
- { "time": 0.5667, "angle": 11.09 },
- { "time": 0.7667, "angle": 17.57 },
- { "time": 0.9333, "angle": 6.38 },
- { "time": 1.0333, "angle": 11.09 },
- { "time": 1.2333, "angle": 17.57 },
- { "time": 1.4, "angle": 6.38 },
- { "time": 1.5, "angle": 11.09 },
- { "time": 1.7, "angle": 17.57 },
- { "time": 1.8667, "angle": 6.38 },
- { "time": 1.9667, "angle": 11.09 },
- { "time": 2.1667, "angle": 17.57 },
- { "time": 2.3333, "angle": 6.38 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": 1.76, "y": 1.18 },
- { "time": 0.3, "x": 1.26, "y": 1.11 },
- { "time": 0.4667, "x": 0, "y": 0 },
- { "time": 0.5667, "x": 1.76, "y": 1.18 },
- { "time": 0.7667, "x": 1.26, "y": 1.11 },
- { "time": 0.9333, "x": 0, "y": 0 },
- { "time": 1.0333, "x": 1.76, "y": 1.18 },
- { "time": 1.2333, "x": 1.26, "y": 1.11 },
- { "time": 1.4, "x": 0, "y": 0 },
- { "time": 1.5, "x": 1.76, "y": 1.18 },
- { "time": 1.7, "x": 1.26, "y": 1.11 },
- { "time": 1.8667, "x": 0, "y": 0 },
- { "time": 1.9667, "x": 1.76, "y": 1.18 },
- { "time": 2.1667, "x": 1.26, "y": 1.11 },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone42": {
- "rotate": [
- { "time": 0, "angle": -30.95 },
- { "time": 0.1, "angle": -71.15 },
- { "time": 0.3333, "angle": -41.92 },
- { "time": 0.4667, "angle": -30.95 },
- { "time": 0.5667, "angle": -71.15 },
- { "time": 0.8, "angle": -41.92 },
- { "time": 0.9333, "angle": -30.95 },
- { "time": 1.0333, "angle": -71.15 },
- { "time": 1.2667, "angle": -41.92 },
- { "time": 1.4, "angle": -30.95 },
- { "time": 1.5, "angle": -71.15 },
- { "time": 1.7333, "angle": -41.92 },
- { "time": 1.8667, "angle": -30.95 },
- { "time": 1.9667, "angle": -71.15 },
- { "time": 2.2, "angle": -41.92 },
- { "time": 2.3333, "angle": -30.95 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": -1.48, "y": -0.37, "curve": "stepped" },
- { "time": 0.3333, "x": -1.48, "y": -0.37 },
- { "time": 0.4667, "x": 0, "y": 0 },
- { "time": 0.5667, "x": -1.48, "y": -0.37, "curve": "stepped" },
- { "time": 0.8, "x": -1.48, "y": -0.37 },
- { "time": 0.9333, "x": 0, "y": 0 },
- { "time": 1.0333, "x": -1.48, "y": -0.37, "curve": "stepped" },
- { "time": 1.2667, "x": -1.48, "y": -0.37 },
- { "time": 1.4, "x": 0, "y": 0 },
- { "time": 1.5, "x": -1.48, "y": -0.37, "curve": "stepped" },
- { "time": 1.7333, "x": -1.48, "y": -0.37 },
- { "time": 1.8667, "x": 0, "y": 0 },
- { "time": 1.9667, "x": -1.48, "y": -0.37, "curve": "stepped" },
- { "time": 2.2, "x": -1.48, "y": -0.37 },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone44": {
- "rotate": [
- { "time": 0, "angle": 6.8 },
- { "time": 0.1667, "angle": 1.38 },
- { "time": 0.3333, "angle": -6.91 },
- { "time": 0.4667, "angle": 6.8 },
- { "time": 0.6333, "angle": 1.38 },
- { "time": 0.8, "angle": -6.91 },
- { "time": 0.9333, "angle": 6.8 },
- { "time": 1.1, "angle": 1.38 },
- { "time": 1.2667, "angle": -6.91 },
- { "time": 1.4, "angle": 6.8 },
- { "time": 1.5667, "angle": 1.38 },
- { "time": 1.7333, "angle": -6.91 },
- { "time": 1.8667, "angle": 6.8 },
- { "time": 2.0333, "angle": 1.38 },
- { "time": 2.2, "angle": -6.91 },
- { "time": 2.3333, "angle": 6.8 }
- ],
- "translate": [
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "rotate": [
- { "time": 0, "angle": 25.57 },
- { "time": 0.1667, "angle": 41.04 },
- { "time": 0.3333, "angle": 30.91 },
- { "time": 0.4667, "angle": 25.57 },
- { "time": 0.6333, "angle": 41.04 },
- { "time": 0.8, "angle": 30.91 },
- { "time": 0.9333, "angle": 25.57 },
- { "time": 1.1, "angle": 41.04 },
- { "time": 1.2667, "angle": 30.91 },
- { "time": 1.4, "angle": 25.57 },
- { "time": 1.5667, "angle": 41.04 },
- { "time": 1.7333, "angle": 30.91 },
- { "time": 1.8667, "angle": 25.57 },
- { "time": 2.0333, "angle": 41.04 },
- { "time": 2.2, "angle": 30.91 },
- { "time": 2.3333, "angle": 25.57 }
- ],
- "translate": [
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone43": {
- "rotate": [
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1 }
- ]
- },
- "bone48": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.8, "angle": -19.72 },
- { "time": 1.5667, "angle": 10.88 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.8, "x": 24.54, "y": 63.55 },
- { "time": 1.5667, "x": 41.53, "y": 97.53 }
- ]
- },
- "bone49": {
- "rotate": [
- { "time": 0.3667, "angle": 0 }
- ],
- "translate": [
- { "time": 0.3667, "x": 0, "y": 0 },
- { "time": 0.7333, "x": -3.78, "y": 26.43 },
- { "time": 1.4333, "x": -18.25, "y": 77.4 }
- ]
- },
- "bone50": {
- "rotate": [
- { "time": 0.2667, "angle": 0 },
- { "time": 0.9333, "angle": 30 },
- { "time": 1.8, "angle": 10 }
- ],
- "translate": [
- { "time": 0.2667, "x": 0, "y": 0 },
- { "time": 0.9333, "x": -29.57, "y": 29.57 },
- { "time": 1.8, "x": -22.51, "y": 95.68 }
- ]
- }
- },
- "deform": {
- "default": {
- "lian": {
- "lian": [
- { "time": 0 },
- {
- "time": 0.1,
- "offset": 22,
- "vertices": [ -0.05391, -0.63369, -0.98883, -1.61806 ]
- },
- { "time": 0.4667 },
- {
- "time": 0.5667,
- "offset": 22,
- "vertices": [ -0.05391, -0.63369, -0.98883, -1.61806 ]
- },
- { "time": 0.9333 },
- {
- "time": 1.0333,
- "offset": 22,
- "vertices": [ -0.05391, -0.63369, -0.98883, -1.61806 ]
- },
- { "time": 1.4 },
- {
- "time": 1.5,
- "offset": 22,
- "vertices": [ -0.05391, -0.63369, -0.98883, -1.61806 ]
- },
- { "time": 1.8667 },
- {
- "time": 1.9667,
- "offset": 22,
- "vertices": [ -0.05391, -0.63369, -0.98883, -1.61806 ]
- },
- { "time": 2.3333 }
- ]
- },
- "shenti": {
- "shenti": [
- { "time": 0 },
- {
- "time": 0.1,
- "offset": 8,
- "vertices": [ -2.75047, -0.0923, -2.7518, -0.03574, 0, 0, 0, 0, 0, 0, 0, 0, -3.2532, -0.10916, -3.25478, -0.04226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.46117, 0.57225, -3.44867, 0.64329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.38566, -0.08006, -2.38683, -0.031, -2.38683, -0.031, -1.7359, -0.02254, -3.4381, -0.11537, -3.43977, -0.04466, -3.4381, -0.11537, -3.43977, -0.04466, 3.30758, 1.73589, 3.34258, 1.66753, 0.86134, 2.002, 0.9023, 1.98387, -2.33381, 3.05544, -2.27051, 3.10277 ]
- },
- {
- "time": 0.3,
- "offset": 8,
- "vertices": [ -1.25021, -0.04195, -1.25082, -0.01624, 0, 0, 0, 0, 0, 0, 0, 0, -1.47873, -0.04962, -1.47945, -0.01921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.57326, 0.26012, -1.56758, 0.2924, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.08439, -0.03639, -1.08492, -0.01409, -1.08492, -0.01409, -0.78905, -0.01025, 1.18564, 0.03979, 1.18621, 0.01541, 1.18564, 0.03979, 1.18621, 0.01541, 1.50344, 0.78904, 1.51935, 0.75797, 0.39152, 0.91, 0.41014, 0.90176, -1.06082, 1.38884, -1.03205, 1.41035 ]
- },
- { "time": 0.4667 },
- {
- "time": 0.5667,
- "offset": 8,
- "vertices": [ -2.75047, -0.0923, -2.7518, -0.03574, 0, 0, 0, 0, 0, 0, 0, 0, -3.2532, -0.10916, -3.25478, -0.04226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.46117, 0.57225, -3.44867, 0.64329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.38566, -0.08006, -2.38683, -0.031, -2.38683, -0.031, -1.7359, -0.02254, -3.4381, -0.11537, -3.43977, -0.04466, -3.4381, -0.11537, -3.43977, -0.04466, 3.30758, 1.73589, 3.34258, 1.66753, 0.86134, 2.002, 0.9023, 1.98387, -2.33381, 3.05544, -2.27051, 3.10277 ]
- },
- {
- "time": 0.7667,
- "offset": 8,
- "vertices": [ -1.25021, -0.04195, -1.25082, -0.01624, 0, 0, 0, 0, 0, 0, 0, 0, -1.47873, -0.04962, -1.47945, -0.01921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.57326, 0.26012, -1.56758, 0.2924, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.08439, -0.03639, -1.08492, -0.01409, -1.08492, -0.01409, -0.78905, -0.01025, 1.18564, 0.03979, 1.18621, 0.01541, 1.18564, 0.03979, 1.18621, 0.01541, 1.50344, 0.78904, 1.51935, 0.75797, 0.39152, 0.91, 0.41014, 0.90176, -1.06082, 1.38884, -1.03205, 1.41035 ]
- },
- { "time": 0.9333 },
- {
- "time": 1.0333,
- "offset": 8,
- "vertices": [ -2.75047, -0.0923, -2.7518, -0.03574, 0, 0, 0, 0, 0, 0, 0, 0, -3.2532, -0.10916, -3.25478, -0.04226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.46117, 0.57225, -3.44867, 0.64329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.38566, -0.08006, -2.38683, -0.031, -2.38683, -0.031, -1.7359, -0.02254, -3.4381, -0.11537, -3.43977, -0.04466, -3.4381, -0.11537, -3.43977, -0.04466, 3.30758, 1.73589, 3.34258, 1.66753, 0.86134, 2.002, 0.9023, 1.98387, -2.33381, 3.05544, -2.27051, 3.10277 ]
- },
- {
- "time": 1.2333,
- "offset": 8,
- "vertices": [ -1.25021, -0.04195, -1.25082, -0.01624, 0, 0, 0, 0, 0, 0, 0, 0, -1.47873, -0.04962, -1.47945, -0.01921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.57326, 0.26012, -1.56758, 0.2924, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.08439, -0.03639, -1.08492, -0.01409, -1.08492, -0.01409, -0.78905, -0.01025, 1.18564, 0.03979, 1.18621, 0.01541, 1.18564, 0.03979, 1.18621, 0.01541, 1.50344, 0.78904, 1.51935, 0.75797, 0.39152, 0.91, 0.41014, 0.90176, -1.06082, 1.38884, -1.03205, 1.41035 ]
- },
- { "time": 1.4 },
- {
- "time": 1.5,
- "offset": 8,
- "vertices": [ -2.75047, -0.0923, -2.7518, -0.03574, 0, 0, 0, 0, 0, 0, 0, 0, -3.2532, -0.10916, -3.25478, -0.04226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.46117, 0.57225, -3.44867, 0.64329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.38566, -0.08006, -2.38683, -0.031, -2.38683, -0.031, -1.7359, -0.02254, -3.4381, -0.11537, -3.43977, -0.04466, -3.4381, -0.11537, -3.43977, -0.04466, 3.30758, 1.73589, 3.34258, 1.66753, 0.86134, 2.002, 0.9023, 1.98387, -2.33381, 3.05544, -2.27051, 3.10277 ]
- },
- {
- "time": 1.7,
- "offset": 8,
- "vertices": [ -1.25021, -0.04195, -1.25082, -0.01624, 0, 0, 0, 0, 0, 0, 0, 0, -1.47873, -0.04962, -1.47945, -0.01921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.57326, 0.26012, -1.56758, 0.2924, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.08439, -0.03639, -1.08492, -0.01409, -1.08492, -0.01409, -0.78905, -0.01025, 1.18564, 0.03979, 1.18621, 0.01541, 1.18564, 0.03979, 1.18621, 0.01541, 1.50344, 0.78904, 1.51935, 0.75797, 0.39152, 0.91, 0.41014, 0.90176, -1.06082, 1.38884, -1.03205, 1.41035 ]
- },
- { "time": 1.8667 },
- {
- "time": 1.9667,
- "offset": 8,
- "vertices": [ -2.75047, -0.0923, -2.7518, -0.03574, 0, 0, 0, 0, 0, 0, 0, 0, -3.2532, -0.10916, -3.25478, -0.04226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.46117, 0.57225, -3.44867, 0.64329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.38566, -0.08006, -2.38683, -0.031, -2.38683, -0.031, -1.7359, -0.02254, -3.4381, -0.11537, -3.43977, -0.04466, -3.4381, -0.11537, -3.43977, -0.04466, 3.30758, 1.73589, 3.34258, 1.66753, 0.86134, 2.002, 0.9023, 1.98387, -2.33381, 3.05544, -2.27051, 3.10277 ]
- },
- {
- "time": 2.1667,
- "offset": 8,
- "vertices": [ -1.25021, -0.04195, -1.25082, -0.01624, 0, 0, 0, 0, 0, 0, 0, 0, -1.47873, -0.04962, -1.47945, -0.01921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.57326, 0.26012, -1.56758, 0.2924, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.08439, -0.03639, -1.08492, -0.01409, -1.08492, -0.01409, -0.78905, -0.01025, 1.18564, 0.03979, 1.18621, 0.01541, 1.18564, 0.03979, 1.18621, 0.01541, 1.50344, 0.78904, 1.51935, 0.75797, 0.39152, 0.91, 0.41014, 0.90176, -1.06082, 1.38884, -1.03205, 1.41035 ]
- },
- { "time": 2.3333 }
- ]
- },
- "toufa2": {
- "toufa2": [
- {
- "time": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.1,
- "vertices": [ -0.48377, -3.92296, 0.09184, -2.02621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4.50961, -4.93904, -4.50961, -4.93904 ],
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.4667,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5667,
- "vertices": [ -0.48377, -3.92296, 0.09184, -2.02621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4.50961, -4.93904, -4.50961, -4.93904 ],
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.9333,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.0333,
- "vertices": [ -0.48377, -3.92296, 0.09184, -2.02621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4.50961, -4.93904, -4.50961, -4.93904 ],
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.4,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "vertices": [ -0.48377, -3.92296, 0.09184, -2.02621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4.50961, -4.93904, -4.50961, -4.93904 ],
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8667,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.9667,
- "vertices": [ -0.48377, -3.92296, 0.09184, -2.02621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4.50961, -4.93904, -4.50961, -4.93904 ],
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.3333 }
- ]
- },
- "youshou": {
- "youshou": [
- {
- "time": 0,
- "vertices": [ -1.82659, 1.41142, 0.5779, 2.23488, -0.96818, 2.22497, 1.66379, 1.76614, -0.32536, 2.77486, 2.42239, 1.39178 ],
- "curve": "stepped"
- },
- {
- "time": 0.4667,
- "vertices": [ -1.82659, 1.41142, 0.5779, 2.23488, -0.96818, 2.22497, 1.66379, 1.76614, -0.32536, 2.77486, 2.42239, 1.39178 ],
- "curve": "stepped"
- },
- {
- "time": 0.9333,
- "vertices": [ -1.82659, 1.41142, 0.5779, 2.23488, -0.96818, 2.22497, 1.66379, 1.76614, -0.32536, 2.77486, 2.42239, 1.39178 ],
- "curve": "stepped"
- },
- {
- "time": 1.4,
- "vertices": [ -1.82659, 1.41142, 0.5779, 2.23488, -0.96818, 2.22497, 1.66379, 1.76614, -0.32536, 2.77486, 2.42239, 1.39178 ],
- "curve": "stepped"
- },
- {
- "time": 1.8667,
- "vertices": [ -1.82659, 1.41142, 0.5779, 2.23488, -0.96818, 2.22497, 1.66379, 1.76614, -0.32536, 2.77486, 2.42239, 1.39178 ]
- }
- ]
- }
- }
- }
- },
- "walk1": {
- "slots": {
- "biyan": {
- "attachment": [
- { "time": 1.0667, "name": "biyan" },
- { "time": 1.1667, "name": null }
- ]
- },
- "teshuyoushou1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuyoushou2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuzuoshou1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuzuoshou2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yin1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yin2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yin3": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 1.0667, "name": null },
- { "time": 1.1667, "name": "youyan" }
- ]
- },
- "youyantongkong": {
- "attachment": [
- { "time": 1.0667, "name": null },
- { "time": 1.1667, "name": "youyantongkong" }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 1.0667, "name": null },
- { "time": 1.1667, "name": "zuoyan" }
- ]
- },
- "zuoyantongkong": {
- "attachment": [
- { "time": 1.0667, "name": null },
- { "time": 1.1667, "name": "zuoyantongkong" }
- ]
- }
- },
- "bones": {
- "root": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 0.65, "y": 0.65 }
- ]
- },
- "bone": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0.59 },
- { "time": 0.1667, "x": 0, "y": 1.13 },
- { "time": 0.5, "x": 0, "y": 0.59 },
- { "time": 0.6667, "x": 0, "y": 1.13 },
- { "time": 1, "x": 0, "y": 0.59 },
- { "time": 1.1667, "x": 0, "y": 1.13 },
- { "time": 1.5, "x": 0, "y": 0.59 },
- { "time": 1.6667, "x": 0, "y": 1.13 },
- { "time": 2, "x": 0, "y": 0.59 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": -2.88, "curve": "stepped" },
- { "time": 1, "angle": -2.88 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": -310.47 },
- {
- "time": 0.5,
- "angle": 19.42,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1, "angle": -310.47 },
- {
- "time": 1.5,
- "angle": 19.42,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -310.47 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- {
- "time": 0,
- "angle": -11.2,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -19.48,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -11.2,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -19.48,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -11.2 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": -8.59, "curve": "stepped" },
- { "time": 0.5, "angle": -8.59, "curve": "stepped" },
- { "time": 1, "angle": -8.59, "curve": "stepped" },
- { "time": 1.5, "angle": -8.59, "curve": "stepped" },
- { "time": 2, "angle": -8.59 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 296.23 },
- {
- "time": 0.5,
- "angle": -21.53,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1, "angle": 296.23 },
- {
- "time": 1.5,
- "angle": -21.53,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 296.23 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": -15.27 },
- {
- "time": 0.5,
- "angle": -9.42,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1, "angle": -15.27 },
- {
- "time": 1.5,
- "angle": -9.42,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -15.27 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": -12.09, "curve": "stepped" },
- { "time": 0.5, "angle": -12.09, "curve": "stepped" },
- { "time": 1, "angle": -12.09, "curve": "stepped" },
- { "time": 1.5, "angle": -12.09, "curve": "stepped" },
- { "time": 2, "angle": -12.09 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": -7.46 },
- { "time": 0.1667, "angle": 6 },
- { "time": 0.3333, "angle": 32.02 },
- { "time": 0.5, "angle": 51.77 },
- { "time": 0.6667, "angle": 28.08 },
- { "time": 0.8333, "angle": 0.46 },
- { "time": 1, "angle": -7.46 },
- { "time": 1.1667, "angle": 6 },
- { "time": 1.3333, "angle": 32.02 },
- { "time": 1.5, "angle": 51.77 },
- { "time": 1.6667, "angle": 28.08 },
- { "time": 1.8333, "angle": 0.46 },
- { "time": 2, "angle": -7.46 }
- ],
- "translate": [
- { "time": 0, "x": 0.93, "y": 2.71 },
- { "time": 0.1667, "x": 0.92, "y": 2.66 },
- { "time": 0.3333, "x": 1.32, "y": 0 },
- { "time": 0.5, "x": 1.97, "y": 0 },
- { "time": 0.6667, "x": 1.32, "y": 0 },
- { "time": 0.8333, "x": 0.72, "y": 0.33 },
- { "time": 1, "x": 0.36, "y": 1.04 },
- { "time": 1.1667, "x": 0.92, "y": 2.66 },
- { "time": 1.3333, "x": 1.32, "y": 0 },
- { "time": 1.5, "x": 1.97, "y": 0 },
- { "time": 1.6667, "x": 1.32, "y": 0 },
- { "time": 1.8333, "x": 0.72, "y": 0.33 },
- { "time": 2, "x": 0.93, "y": 2.71 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 6.42 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 46.82 },
- { "time": 0.8333, "angle": 41.74 },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 6.42 },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 46.82 },
- { "time": 1.8333, "angle": 41.74 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": -23.96 },
- { "time": 0.1667, "angle": -13.01 },
- { "time": 0.3333, "angle": -35.75 },
- { "time": 0.5, "angle": -15.78 },
- { "time": 0.6667, "angle": -20.76 },
- { "time": 0.8333, "angle": -26.63 },
- { "time": 1, "angle": -23.96 },
- { "time": 1.1667, "angle": -13.01 },
- { "time": 1.3333, "angle": -35.75 },
- { "time": 1.5, "angle": -15.78 },
- { "time": 1.6667, "angle": -20.76 },
- { "time": 1.8333, "angle": -26.63 },
- { "time": 2, "angle": -23.96 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 12.48 },
- { "time": 0.1667, "angle": -6.82 },
- { "time": 0.3333, "angle": -25.55 },
- { "time": 0.5, "angle": -38.72 },
- { "time": 0.6667, "angle": -21.65 },
- { "time": 0.8333, "angle": -4.59 },
- { "time": 1, "angle": 12.48 },
- { "time": 1.1667, "angle": -6.82 },
- { "time": 1.3333, "angle": -25.55 },
- { "time": 1.5, "angle": -38.72 },
- { "time": 1.6667, "angle": -21.65 },
- { "time": 1.8333, "angle": -4.59 },
- { "time": 2, "angle": 12.48 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 46.57 },
- { "time": 0.3333, "angle": 32.62 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 5.58 },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 46.57 },
- { "time": 1.3333, "angle": 32.62 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 5.58 },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 9.78 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5, "angle": 12.06 },
- { "time": 0.6667, "angle": 14.72 },
- { "time": 0.8333, "angle": 6.23 },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 9.78 },
- { "time": 1.3333, "angle": 0 },
- { "time": 1.5, "angle": 12.06 },
- { "time": 1.6667, "angle": 14.72 },
- { "time": 1.8333, "angle": 6.23 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 5.03 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": 5.03 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": 5.03 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -2.3 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -2.3 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -2.3 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -2.3 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -2.3 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -2.3 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone20": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -2.3 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -2.3 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 3 },
- { "time": 0.5, "angle": -5.04 },
- { "time": 1, "angle": 3 },
- { "time": 1.5, "angle": -5.04 },
- { "time": 2, "angle": 3 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 3 },
- { "time": 0.5, "angle": -5.04 },
- { "time": 1, "angle": 3 },
- { "time": 1.5, "angle": -5.04 },
- { "time": 2, "angle": 3 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 3 },
- { "time": 0.5, "angle": -5.04 },
- { "time": 1, "angle": 3 },
- { "time": 1.5, "angle": -5.04 },
- { "time": 2, "angle": 3 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- { "time": 0, "angle": 3 },
- { "time": 0.5, "angle": -5.04 },
- { "time": 1, "angle": 3 },
- { "time": 1.5, "angle": -5.04 },
- { "time": 2, "angle": 3 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -2.03 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -2.03 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -12.99 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -12.99 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -12.99 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -12.99 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -6.92 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -6.92 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -8.16 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -8.16 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.0667, "x": 0.438, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 0.438, "y": 1 },
- { "time": 1.3, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.0667, "x": 0.415, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 0.415, "y": 1 },
- { "time": 1.3, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.0667, "x": -2.22, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": -2.22, "y": 0 },
- { "time": 1.3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3, "x": 1, "y": 1 }
- ]
- }
- },
- "deform": {
- "default": {
- "kutou": {
- "kutou": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 2,
- "vertices": [ -0.03528, -2.78776, -0.02462, -1.94385, -0.02462, -1.94385, -0.03528, -2.78776 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 2,
- "vertices": [ -0.03528, -2.78776, -0.02462, -1.94385, -0.02462, -1.94385, -0.03528, -2.78776 ]
- },
- { "time": 2 }
- ]
- },
- "shenti": {
- "shenti": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 60,
- "vertices": [ -0.19797, 5.90467, -0.07675, 5.90749, -0.07675, 5.90749, -0.07675, 5.90749 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 60,
- "vertices": [ -0.19797, 5.90467, -0.07675, 5.90749, -0.07675, 5.90749, -0.07675, 5.90749 ]
- },
- { "time": 2 }
- ]
- },
- "shuyao": {
- "shuyao": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 2,
- "vertices": [ 0.0359, 2.83478, -0.26777, -0.77067, -1.85653, -3.97577, 0.0359, 2.83478 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 2,
- "vertices": [ 0.0359, 2.83478, -0.26777, -0.77067, -1.85653, -3.97577, 0.0359, 2.83478 ]
- },
- { "time": 2 }
- ]
- },
- "toufa1": {
- "toufa1": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 32,
- "vertices": [ 0.64, -2.28397 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 32,
- "vertices": [ 0.64, -2.28397 ]
- },
- { "time": 2 }
- ]
- },
- "youtui": {
- "youtui": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 70,
- "vertices": [ 4.37826, 0.90609, 7.26844, 3.45005, 0, 0, -6.29347, 0.99119 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 70,
- "vertices": [ 4.37826, 0.90609, 7.26844, 3.45005, 0, 0, -6.29347, 0.99119 ]
- },
- { "time": 2 }
- ]
- },
- "youwaitao": {
- "youwaitao": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 120,
- "vertices": [ 0.38874, 1.03049, 0.42384, 1.01655, 0.347, 1.04528, 0.17563, 1.06563, 0.21206, 1.05898, 0.17563, 1.06563, -0.17567, -1.06563, 0.3513, 2.13124 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 120,
- "vertices": [ 0.38874, 1.03049, 0.42384, 1.01655, 0.347, 1.04528, 0.17563, 1.06563, 0.21206, 1.05898, 0.17563, 1.06563, -0.17567, -1.06563, 0.3513, 2.13124 ]
- },
- { "time": 2 }
- ]
- },
- "zuotui": {
- "zuotui": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 60,
- "vertices": [ -6.66319, -1.27712, -6.71178, -0.99079, -10.97918, 2.10726 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 60,
- "vertices": [ -6.66319, -1.27712, -6.71178, -0.99079, -10.97918, 2.10726 ]
- },
- { "time": 2 }
- ]
- }
- }
- }
- }
- }
- }
|