123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023 |
- {
- "skeleton": { "hash": "KQ6RaSxRjfRY41LE06FpWUFjAAQ", "spine": "3.6.53", "width": 595.63, "height": 205, "images": "./images/" },
- "bones": [
- { "name": "root" },
- { "name": "bone", "parent": "root", "x": -2.66, "y": 59.88 },
- { "name": "bone2", "parent": "bone", "length": 17.92, "rotation": 89.18, "x": 0.26, "y": 0.26 },
- { "name": "bone3", "parent": "bone2", "length": 29.97, "rotation": -1.14, "x": 18.18 },
- { "name": "bone4", "parent": "bone3", "length": 9.22, "rotation": 1.96, "x": 29.97 },
- { "name": "bone5", "parent": "bone4", "length": 58.13, "rotation": 1.51, "x": 9.22 },
- { "name": "bone6", "parent": "bone3", "length": 21.8, "rotation": 156.14, "x": 26.52, "y": 12.31, "color": "d5de57ff" },
- { "name": "bone7", "parent": "bone6", "length": 20.11, "rotation": -2.36, "x": 21.8, "color": "d5de57ff" },
- { "name": "bone8", "parent": "bone7", "length": 14.58, "rotation": -3.21, "x": 20.86, "y": -0.07, "color": "d5de57ff" },
- { "name": "bone9", "parent": "bone3", "length": 22.98, "rotation": -147.71, "x": 28.11, "y": -15.71, "color": "2f7fb9ff" },
- { "name": "bone10", "parent": "bone9", "length": 18.68, "rotation": 1.74, "x": 23.34, "y": -0.21, "color": "2f7fb9ff" },
- { "name": "bone11", "parent": "bone10", "length": 12.42, "rotation": -11.18, "x": 18.85, "y": -0.11, "color": "2f7fb9ff" },
- { "name": "bone12", "parent": "bone", "length": 9.92, "rotation": -91.22, "x": 0.21, "y": -1.37 },
- { "name": "bone13", "parent": "bone", "length": 26.4, "rotation": -79.41, "x": 10.55, "y": -4.11, "color": "7118aaff" },
- { "name": "bone14", "parent": "bone13", "length": 22.91, "rotation": -4.78, "x": 27.02, "y": -0.12, "color": "7118aaff" },
- { "name": "bone15", "parent": "bone14", "length": 16.94, "rotation": -82.13, "x": 22.91, "color": "7118aaff" },
- { "name": "bone16", "parent": "bone", "length": 24.53, "rotation": -93.95, "x": -7.17, "y": -4.74, "color": "158d1cff" },
- { "name": "bone17", "parent": "bone16", "length": 24.48, "rotation": 3.45, "x": 24.74, "y": 0.01, "color": "158d1cff" },
- { "name": "bone18", "parent": "bone17", "length": 13.48, "rotation": -69.37, "x": 24.48, "color": "158d1cff" },
- { "name": "bone19", "parent": "bone3", "length": 8.44, "rotation": -178.04, "x": 30.67, "y": -10.67, "color": "f15421ff" },
- { "name": "bone20", "parent": "bone19", "length": 13.32, "rotation": 3.63, "x": 8.86, "color": "f15421ff" },
- { "name": "bone21", "parent": "bone20", "length": 14.45, "rotation": 3.08, "x": 13.75, "y": 0.18, "color": "f15421ff" },
- { "name": "bone22", "parent": "bone21", "length": 10.03, "rotation": 1.76, "x": 15.29, "y": -0.1, "color": "f15421ff" },
- { "name": "bone23", "parent": "bone22", "length": 11.31, "rotation": 0.11, "x": 10.65, "y": -0.09, "color": "f15421ff" },
- { "name": "bone24", "parent": "bone3", "length": 10.44, "rotation": 173.83, "x": 28.28, "y": 9.94, "color": "495da4ff" },
- { "name": "bone25", "parent": "bone24", "length": 12.35, "rotation": 0.28, "x": 11.7, "y": 0.18, "color": "495da4ff" },
- { "name": "bone26", "parent": "bone25", "length": 11.94, "rotation": -0.28, "x": 14.03, "y": 0.23, "color": "495da4ff" },
- { "name": "bone27", "parent": "bone26", "length": 9.08, "rotation": 5.47, "x": 12.35, "y": 0.06, "color": "495da4ff" },
- { "name": "bone28", "parent": "bone27", "length": 10.84, "rotation": -4.05, "x": 9.08, "color": "495da4ff" },
- { "name": "bone29", "parent": "bone5", "length": 8.24, "rotation": -4.45, "x": 19.63, "y": -9.52 },
- { "name": "bone30", "parent": "bone5", "length": 6.96, "rotation": -1.51, "x": 21.26, "y": 20.2 },
- { "name": "bone31", "parent": "bone5", "x": 20.97, "y": 5.17 },
- { "name": "bone32", "parent": "bone5", "x": 32.5, "y": 6.18 },
- { "name": "bone33", "parent": "bone5", "x": 4.21, "y": 5.88 },
- { "name": "bone34", "parent": "bone3", "length": 26.16, "rotation": 144.42, "x": 23.29, "y": -176.31, "color": "182eadff" },
- { "name": "bone35", "parent": "bone34", "length": 17.23, "rotation": -2.7, "x": 26.16, "color": "182eadff" },
- { "name": "bone36", "parent": "bone35", "length": 12.65, "rotation": -12.89, "x": 17.23, "color": "182eadff" },
- { "name": "bone37", "parent": "root", "x": 130.64, "y": 140.77 },
- { "name": "ziti", "parent": "root", "x": 407.07, "y": 86.52 },
- { "name": "ziti2", "parent": "ziti", "x": -132.92, "y": -0.11 },
- { "name": "ziti3", "parent": "ziti", "x": -99.33, "y": -0.84 },
- { "name": "ziti4", "parent": "ziti", "x": -65.64, "y": 0.03 },
- { "name": "ziti5", "parent": "ziti", "x": -31.94, "y": 1.32 },
- { "name": "ziti6", "parent": "ziti", "x": 8.24, "y": 1.32 },
- { "name": "ziti7", "parent": "ziti", "x": 35.02, "y": 0.46 },
- { "name": "ziti8", "parent": "ziti", "x": 67.42, "y": 0.46 },
- { "name": "ziti9", "parent": "ziti", "x": 101.98, "y": -0.4 },
- { "name": "ziti10", "parent": "ziti", "x": 130.49, "y": 1.32 }
- ],
- "slots": [
- { "name": "dibu", "bone": "bone2", "attachment": "dibu" },
- { "name": "teshuzuoshou", "bone": "bone34", "attachment": "teshuzuoshou" },
- { "name": "teshuzuoshou1", "bone": "bone35", "attachment": "teshuzuoshou1" },
- { "name": "zuoshou", "bone": "bone6", "attachment": "zuoshou" },
- { "name": "zuotui", "bone": "bone16", "attachment": "zuotui" },
- { "name": "kadang", "bone": "bone12", "attachment": "kadang" },
- { "name": "youtui", "bone": "bone13", "attachment": "youtui" },
- { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
- { "name": "youwaitao", "bone": "bone19", "attachment": "youwaitao" },
- { "name": "zuowaitao", "bone": "bone24", "attachment": "zuowaitao" },
- { "name": "bozi", "bone": "bone4", "attachment": "bozi" },
- { "name": "youshou", "bone": "bone9", "attachment": "youshou" },
- { "name": "lian", "bone": "bone5", "attachment": "lian" },
- { "name": "zuiba", "bone": "bone33", "attachment": "zuiba" },
- { "name": "zuoyan", "bone": "bone30", "attachment": "zuoyan" },
- { "name": "youyan", "bone": "bone29", "attachment": "youyan" },
- { "name": "biyan", "bone": "bone31" },
- { "name": "meimao", "bone": "bone32", "attachment": "meimao" },
- { "name": "toufa", "bone": "bone5", "attachment": "toufa" },
- { "name": "erduo", "bone": "bone5", "attachment": "erduo" },
- { "name": "1", "bone": "ziti10", "attachment": "1" },
- { "name": "2", "bone": "ziti9", "attachment": "2" },
- { "name": "3", "bone": "ziti8", "attachment": "3" },
- { "name": "4", "bone": "ziti7", "attachment": "4" },
- { "name": "5", "bone": "ziti6", "attachment": "5" },
- { "name": "6", "bone": "ziti5", "attachment": "6" },
- { "name": "7", "bone": "ziti4", "attachment": "7" },
- { "name": "8", "bone": "ziti3", "attachment": "8" },
- { "name": "9", "bone": "ziti2", "attachment": "9" },
- { "name": "zhangzuixiao", "bone": "bone33", "attachment": "zhangzuixiao" },
- { "name": "star", "bone": "bone37", "attachment": "star" }
- ],
- "skins": {
- "default": {
- "1": {
- "1": { "x": -0.24, "y": 0.21, "width": 30, "height": 33 }
- },
- "2": {
- "2": { "x": 0.33, "y": 1.92, "width": 34, "height": 34 }
- },
- "3": {
- "3": { "x": 2.07, "y": 0.1, "width": 35, "height": 34 }
- },
- "4": {
- "4": { "x": -0.22, "y": 0.64, "width": 35, "height": 31 }
- },
- "5": {
- "5": { "x": -7.45, "y": 0.05, "width": 35, "height": 33 }
- },
- "6": {
- "6": { "x": -1.89, "y": 0.36, "width": 35, "height": 34 }
- },
- "7": {
- "7": { "x": -2.86, "y": 1.65, "width": 33, "height": 33 }
- },
- "8": {
- "8": { "x": -0.13, "y": 1.58, "width": 32, "height": 33 }
- },
- "9": {
- "9": { "x": -0.34, "y": 0.85, "width": 33, "height": 33 }
- },
- "biyan": {
- "biyan": { "x": 1.43, "y": 0.87, "rotation": -91.51, "width": 47, "height": 5 }
- },
- "bozi": {
- "bozi": {
- "type": "mesh",
- "uvs": [ 1, 0.70618, 0.61939, 1, 0.26383, 1, 0, 0.7831, 0, 0, 1, 0 ],
- "triangles": [ 4, 5, 0, 3, 4, 0, 1, 2, 3, 0, 1, 3 ],
- "vertices": [ -0.44, -9.82, -4.26, -2.97, -4.26, 3.43, -1.44, 8.18, 8.74, 8.18, 8.74, -9.82 ],
- "hull": 6,
- "edges": [ 8, 10, 0, 10, 2, 0, 2, 4, 6, 8, 4, 6 ],
- "width": 18,
- "height": 13
- }
- },
- "dibu": {
- "dibu": {
- "type": "mesh",
- "uvs": [ 1, 0.69286, 1, 1, 0.73113, 1, 0.25818, 1, 0, 1, 0, 0.70999, 0, 0, 1, 0 ],
- "triangles": [ 6, 7, 0, 5, 6, 0, 3, 4, 5, 5, 2, 3, 0, 2, 5, 2, 0, 1 ],
- "vertices": [ 1.28, -20.96, -10.39, -21.13, -10.54, -10.64, -10.8, 7.8, -10.94, 17.87, 0.08, 18.02, 27.05, 18.41, 27.61, -20.59 ],
- "hull": 8,
- "edges": [ 12, 14, 8, 10, 10, 12, 2, 0, 0, 14, 10, 0, 6, 8, 2, 4, 4, 6 ],
- "width": 39,
- "height": 38
- }
- },
- "erduo": {
- "erduo": { "x": 22.08, "y": -35.91, "rotation": -91.51, "width": 19, "height": 21 }
- },
- "kadang": {
- "kadang": {
- "type": "mesh",
- "uvs": [ 1, 0.82537, 0.81711, 1, 0.26571, 1, 0, 0.86577, 0, 0, 0.27116, 0, 0.77616, 0, 1, 0 ],
- "triangles": [ 6, 7, 0, 3, 4, 5, 2, 3, 5, 2, 5, 6, 6, 1, 2, 0, 1, 6 ],
- "vertices": [ 8.56, 21.33, 12.2, 14.64, 12.63, -5.76, 10.16, -15.65, -7.15, -16.01, -7.37, -5.98, -7.76, 12.7, -7.94, 20.98 ],
- "hull": 8,
- "edges": [ 6, 8, 4, 6, 2, 4, 0, 14, 2, 0, 8, 10, 4, 10, 10, 12, 12, 14, 2, 12 ],
- "width": 37,
- "height": 20
- }
- },
- "lian": {
- "lian": { "x": 33.94, "y": -3.71, "rotation": -91.51, "width": 74, "height": 87 }
- },
- "meimao": {
- "meimao": { "x": 0.63, "y": -2.37, "rotation": -91.51, "width": 53, "height": 9 }
- },
- "shenti": {
- "shenti": {
- "type": "mesh",
- "uvs": [ 0.92425, 0.30976, 0.92524, 0.55356, 0.95028, 0.66067, 0.97793, 0.77897, 1, 0.87336, 0.64097, 1, 0.48791, 1, 0.29931, 1, 0.1072, 0.89233, 0.11174, 0.79097, 0.1165, 0.6847, 0.12164, 0.56996, 0.12984, 0.32396, 0.17904, 0, 0.51524, 0, 0.9307, 0, 0.50627, 0.32801, 0.50022, 0.55982, 0.4936, 0.79646, 0.49671, 0.68509 ],
- "triangles": [ 0, 14, 15, 6, 18, 5, 5, 3, 4, 5, 18, 3, 6, 7, 18, 8, 9, 7, 7, 9, 18, 18, 2, 3, 18, 19, 2, 9, 10, 18, 18, 10, 19, 19, 17, 1, 10, 11, 19, 19, 11, 17, 11, 12, 17, 19, 1, 2, 17, 16, 1, 17, 12, 16, 16, 0, 1, 12, 13, 16, 16, 14, 0, 16, 13, 14 ],
- "vertices": [ 2, 3, 14.76, -18.94, 0.91335, 4, -15.85, -18.41, 0.08665, 3, 3, 0.14, -19.48, 0.92113, 2, 17.93, -19.48, 0.07525, 4, -30.47, -18.45, 0.00362, 3, 3, -6.24, -20.83, 0.72345, 2, 11.52, -20.7, 0.27645, 4, -36.9, -19.58, 1.0E-4, 2, 3, -13.29, -22.31, 0.49575, 2, 4.44, -22.04, 0.50425, 2, 3, -18.92, -23.5, 0.41152, 2, -1.2, -23.12, 0.58848, 2, 3, -27.06, -7.61, 0.06512, 2, -9.03, -7.07, 0.93488, 2, 3, -27.3, -0.73, 0.00667, 2, -9.13, -0.18, 0.99333, 1, 2, -9.25, 8.3, 1, 1, 2, -2.92, 17.04, 1, 1, 2, 3.17, 16.92, 1, 1, 2, 9.55, 16.8, 1, 2, 3, -2.08, 16.62, 0.04103, 2, 16.43, 16.67, 0.95897, 3, 3, 12.69, 16.76, 0.65139, 2, 31.2, 16.51, 0.34576, 4, -16.7, 17.34, 0.00284, 3, 3, 32.19, 15.21, 0.76378, 2, 50.66, 14.57, 0.00856, 4, 2.74, 15.13, 0.22767, 1, 4, 2.74, 0, 1, 2, 3, 33.35, -18.59, 0.57086, 4, 2.74, -18.7, 0.42914, 2, 3, 13.02, -0.18, 0.99992, 4, -16.94, 0.4, 8.0E-5, 1, 2, 17.28, -0.36, 1, 2, 3, -15.09, -0.57, 0.00224, 2, 3.08, -0.26, 0.99776, 2, 3, -8.4, -0.48, 0.00721, 2, 9.77, -0.31, 0.99279 ],
- "hull": 16,
- "edges": [ 22, 24, 24, 26, 10, 8, 14, 16, 10, 12, 12, 14, 26, 28, 28, 30, 32, 28, 24, 32, 2, 0, 0, 30, 32, 0, 34, 32, 2, 34, 22, 34, 16, 18, 12, 36, 18, 36, 6, 8, 36, 6, 18, 20, 20, 22, 34, 38, 38, 36, 20, 38, 2, 4, 4, 6, 38, 4 ],
- "width": 45,
- "height": 60
- }
- },
- "star": {
- "star": { "x": 0.75, "y": 0.85, "width": 64, "height": 64 }
- },
- "teshuzuoshou": {
- "teshuzuoshou": {
- "type": "mesh",
- "uvs": [ 1, 0.31813, 0.45643, 1, 0.1818, 1, 0, 0.8482, 0, 0.64627, 0.72584, 0, 1, 0 ],
- "triangles": [ 5, 6, 0, 4, 5, 0, 2, 3, 4, 4, 1, 2, 0, 1, 4 ],
- "vertices": [ 4.37, 5.9, 28, 7.6, 32.02, 2.37, 31.18, -3.77, 26.54, -7.34, 1.06, -4.94, -2.94, 0.28 ],
- "hull": 7,
- "edges": [ 0, 12, 0, 2, 10, 12, 10, 8, 6, 8, 2, 4, 6, 4 ],
- "width": 24,
- "height": 29
- }
- },
- "teshuzuoshou1": {
- "teshuzuoshou1": {
- "type": "mesh",
- "uvs": [ 0.89544, 0.07616, 1, 0.18511, 1, 0.29611, 0.6886, 0.86684, 0.66926, 0.90229, 0.64643, 0.94412, 0.61595, 1, 0.19342, 1, 0, 1, 0, 0.78211, 0.23301, 0.52063, 0.26762, 0.48179, 0.29454, 0.45157, 0.69695, 0, 0.82236, 0, 0.51265, 0.67975, 0.48435, 0.70813, 0.4602, 0.73237 ],
- "triangles": [ 5, 6, 17, 6, 7, 17, 17, 7, 9, 7, 8, 9, 5, 17, 4, 3, 4, 16, 16, 4, 17, 16, 15, 3, 9, 10, 17, 17, 10, 16, 10, 11, 16, 16, 11, 15, 11, 12, 15, 2, 15, 0, 2, 3, 15, 0, 13, 14, 0, 15, 13, 15, 12, 13, 0, 1, 2 ],
- "vertices": [ 1, 35, -3.55, -0.37, 1, 1, 35, -3.6, 4.24, 1, 1, 35, -1.31, 6.18, 1, 2, 35, 17.29, 8.05, 0.5538, 36, -1.74, 7.86, 0.4462, 2, 35, 18.45, 8.17, 0.43985, 36, -0.64, 8.23, 0.56015, 2, 35, 19.81, 8.3, 0.32487, 36, 0.66, 8.67, 0.67513, 2, 35, 21.63, 8.49, 0.23504, 36, 2.39, 9.25, 0.76496, 1, 36, 13.88, 0.63, 1, 1, 36, 19.15, -3.31, 1, 1, 36, 15.62, -8.02, 1, 2, 35, 20.16, -9.81, 0.20734, 36, 5.04, -8.91, 0.79266, 2, 35, 18.6, -9.59, 0.32868, 36, 3.47, -9.05, 0.67132, 2, 35, 17.38, -9.42, 0.44069, 36, 2.25, -9.15, 0.55931, 1, 35, -0.76, -6.85, 1, 1, 35, -3.51, -3.6, 1, 2, 35, 17.3, 0.22, 0.48297, 36, 0.01, 0.23, 0.51703, 2, 35, 18.5, -0.02, 0.01482, 36, 1.24, 0.26, 0.98518, 1, 36, 2.29, 0.29, 1 ],
- "hull": 15,
- "edges": [ 16, 18, 26, 28, 4, 2, 2, 0, 0, 28, 0, 30, 12, 14, 14, 16, 24, 26, 24, 30, 4, 6, 30, 6, 22, 24, 32, 30, 22, 32, 6, 8, 32, 8, 18, 20, 20, 22, 14, 34, 34, 32, 20, 34, 8, 10, 10, 12, 34, 10 ],
- "width": 34,
- "height": 27
- }
- },
- "toufa": {
- "toufa": {
- "type": "mesh",
- "uvs": [ 0.86169, 0.20537, 1, 0.35188, 1, 0.53056, 0.90917, 1, 0.6969, 1, 0.6969, 0.69137, 0.59355, 0.60917, 0.59914, 0.50554, 0.09917, 0.55914, 0.11873, 0.92007, 0.07404, 0.93794, 0, 0.77356, 0, 0.22323, 0.23883, 0, 0.72483, 0 ],
- "triangles": [ 7, 13, 14, 7, 14, 0, 7, 0, 1, 8, 12, 13, 7, 1, 2, 7, 8, 13, 5, 6, 7, 2, 5, 7, 11, 12, 8, 11, 8, 9, 10, 11, 9, 3, 4, 5, 2, 3, 5 ],
- "vertices": [ 72.51, -40.71, 62.23, -52.48, 50.08, -52.16, 18.38, -43.42, 18.87, -24.95, 39.85, -25.51, 45.67, -16.67, 52.71, -17.34, 50.21, 26.24, 25.63, 25.19, 24.52, 29.1, 35.87, 35.25, 73.27, 34.26, 87.9, 13.09, 86.78, -29.18 ],
- "hull": 15,
- "edges": [ 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 0, 0, 28, 22, 24, 26, 28, 24, 26 ],
- "width": 87,
- "height": 68
- }
- },
- "youshou": {
- "youshou": {
- "type": "mesh",
- "uvs": [ 0.59319, 0.33014, 0.62174, 0.35403, 0.64278, 0.37164, 0.9284, 0.61074, 0.96351, 0.64013, 1, 0.67067, 1, 1, 0.59883, 1, 0.49768, 0.87495, 0.45539, 0.82267, 0.43806, 0.80124, 0.213, 0.52301, 0.18804, 0.49214, 0.16672, 0.46578, 0, 0.25967, 0, 0, 0.20444, 0.00472, 0.73998, 0.71791, 0.78149, 0.76294, 0.71331, 0.69203, 0.42819, 0.41541, 0.45435, 0.44079, 0.40065, 0.3887 ],
- "triangles": [ 17, 19, 3, 18, 17, 4, 10, 21, 19, 9, 10, 19, 9, 19, 17, 8, 9, 17, 8, 17, 18, 7, 8, 18, 18, 5, 6, 7, 18, 6, 21, 20, 1, 11, 12, 20, 11, 20, 21, 19, 2, 3, 21, 2, 19, 17, 3, 4, 18, 4, 5, 10, 11, 21, 22, 14, 15, 16, 22, 15, 0, 22, 16, 20, 22, 0, 20, 0, 1, 21, 1, 2, 13, 14, 22, 12, 13, 22, 12, 22, 20 ],
- "vertices": [ 2, 9, 21.42, 6.88, 0.95169, 10, -1.71, 7.14, 0.04831, 2, 9, 23.09, 6.99, 0.84719, 10, -0.04, 7.21, 0.15281, 2, 9, 24.32, 7.07, 0.73075, 10, 1.2, 7.25, 0.26925, 3, 9, 41.05, 8.2, 3.0E-5, 10, 17.95, 7.88, 0.96252, 11, -2.43, 7.66, 0.03745, 2, 10, 20.01, 7.95, 0.86461, 11, -0.43, 8.14, 0.13539, 2, 10, 22.15, 8.03, 0.73271, 11, 1.66, 8.63, 0.26729, 1, 11, 19.5, 1.82, 1, 1, 11, 14.78, -10.55, 1, 2, 10, 23.39, -12.31, 7.6E-4, 11, 6.81, -11.08, 0.99924, 2, 10, 20.08, -11.88, 0.03137, 11, 3.48, -11.31, 0.96863, 2, 10, 18.72, -11.7, 0.06842, 11, 2.12, -11.4, 0.93158, 3, 9, 24.74, -9.6, 0.09122, 10, 1.11, -9.43, 0.87782, 11, -15.61, -12.58, 0.03096, 3, 9, 22.77, -9.41, 0.20886, 10, -0.85, -9.17, 0.77778, 11, -17.57, -12.71, 0.01336, 3, 9, 21.1, -9.24, 0.34718, 10, -2.52, -8.96, 0.6475, 11, -19.25, -12.82, 0.00532, 2, 9, 8, -7.96, 0.99129, 10, -15.57, -7.27, 0.00871, 1, 9, -5, -0.35, 1, 1, 9, -1.35, 5.34, 1, 1, 11, 1.16, -0.36, 1, 1, 11, 4.09, -0.02, 1, 1, 11, -0.56, -0.65, 1, 3, 9, 22.94, -0.32, 0.47762, 10, -0.41, -0.1, 0.52236, 11, -18.9, -3.72, 2.0E-5, 2, 10, 1.29, -0.15, 0.9999, 11, -17.22, -3.44, 1.0E-4, 2, 9, 21.14, -0.32, 0.96099, 10, -2.21, -0.04, 0.03901 ],
- "hull": 17,
- "edges": [ 30, 32, 12, 10, 28, 30, 12, 14, 18, 34, 10, 8, 34, 8, 12, 36, 36, 34, 10, 36, 14, 16, 16, 18, 36, 16, 18, 20, 38, 34, 20, 38, 8, 6, 38, 6, 24, 40, 40, 2, 20, 22, 22, 24, 38, 42, 42, 40, 22, 42, 2, 4, 4, 6, 42, 4, 24, 26, 26, 28, 30, 44, 44, 40, 26, 44, 2, 0, 0, 32, 44, 0 ],
- "width": 33,
- "height": 58
- }
- },
- "youtui": {
- "youtui": {
- "type": "mesh",
- "uvs": [ 0.92171, 0.49234, 0.92897, 0.52293, 0.93522, 0.54926, 0.99999, 0.82212, 1, 0.86169, 1, 0.88729, 1, 1, 0.17771, 1, 0.17491, 0.96488, 0.17131, 0.91979, 0.35856, 0.88389, 0.34947, 0.86314, 0.33997, 0.83806, 0.23624, 0.58237, 0.22543, 0.55572, 0.21389, 0.52728, 0, 0, 0.39585, 0, 0.80484, 0, 0.6852, 0.88729, 0.68821, 0.85669, 0.67744, 0.82638, 0.57972, 0.53961, 0.58887, 0.56648, 0.5699, 0.5108 ],
- "triangles": [ 7, 8, 19, 8, 10, 19, 8, 9, 10, 10, 11, 20, 7, 19, 6, 19, 5, 6, 19, 20, 5, 19, 10, 20, 20, 4, 5, 11, 21, 20, 11, 12, 21, 20, 3, 4, 20, 21, 3, 12, 23, 21, 12, 13, 23, 21, 2, 3, 21, 23, 2, 13, 22, 23, 13, 14, 22, 23, 1, 2, 23, 22, 1, 14, 24, 22, 14, 15, 24, 22, 0, 1, 22, 24, 0, 15, 17, 24, 15, 16, 17, 24, 18, 0, 24, 17, 18 ],
- "vertices": [ 2, 13, 25.38, 9.1, 0.91723, 14, -2.41, 9.05, 0.08277, 2, 13, 27.34, 8.94, 0.79418, 14, -0.44, 9.05, 0.20582, 2, 13, 29.03, 8.8, 0.65037, 14, 1.26, 9.06, 0.34963, 2, 13, 46.53, 7.38, 1.3E-4, 14, 18.81, 9.09, 0.99987, 2, 14, 21.33, 8.83, 0.99211, 15, -8.97, -0.35, 0.00789, 2, 14, 22.96, 8.67, 0.96415, 15, -8.58, 1.24, 0.03585, 2, 14, 30.14, 7.94, 0.7413, 15, -6.87, 8.25, 0.2587, 1, 15, 15.5, 2.8, 1, 1, 15, 15.04, 0.6, 1, 1, 15, 14.46, -2.23, 1, 2, 14, 20.93, -9.18, 0.14143, 15, 8.82, -3.22, 0.85857, 2, 14, 19.58, -9.3, 0.31231, 15, 8.75, -4.57, 0.68769, 2, 14, 17.96, -9.4, 0.48352, 15, 8.63, -6.19, 0.51648, 3, 13, 27.52, -10.82, 0.22395, 14, 1.38, -10.63, 0.77546, 15, 7.58, -22.78, 6.0E-4, 3, 13, 25.78, -10.81, 0.34158, 14, -0.35, -10.76, 0.6584, 15, 7.47, -24.51, 2.0E-5, 2, 13, 23.94, -10.79, 0.47847, 14, -2.19, -10.9, 0.52153, 1, 13, -10.34, -10.48, 1, 1, 13, -8.3, 0.42, 1, 1, 13, -6.19, 11.68, 1, 2, 14, 22.07, -0.1, 0.97606, 15, -0.01, -0.84, 0.02394, 1, 14, 20.13, 0.18, 1, 1, 14, 18.17, 0.08, 1, 2, 13, 26.59, -0.87, 0.40033, 14, -0.37, -0.78, 0.59967, 1, 14, 1.37, -0.7, 1, 2, 13, 24.73, -0.8, 0.90082, 14, -2.23, -0.87, 0.09918 ],
- "hull": 19,
- "edges": [ 18, 20, 12, 14, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 10, 12, 38, 10, 20, 22, 40, 38, 22, 40, 6, 8, 8, 10, 40, 8, 22, 24, 42, 40, 24, 42, 42, 6, 28, 44, 44, 2, 24, 26, 26, 28, 42, 46, 46, 44, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 44, 30, 48, 2, 0, 0, 36, 48, 0 ],
- "width": 28,
- "height": 64
- }
- },
- "youwaitao": {
- "youwaitao": {
- "type": "mesh",
- "uvs": [ 0.2475, 0.01897, 0.72169, 0.05533, 0.74446, 0.18378, 0.75806, 0.26048, 0.7716, 0.33683, 0.78693, 0.44658, 0.80929, 0.54948, 0.86353, 0.6504, 0.90989, 0.73656, 0.95063, 0.81889, 1, 0.90437, 1, 1, 0.54649, 1, 0, 1, 0, 0.93027, 1.0E-5, 0.83722, 0, 0.75451, 0, 0.65932, 0, 0.55622, 1.0E-5, 0.44767, 0, 0.34913, 0, 0.26804, 0, 0.18417, 0, 0, 0.31089, 0.44471, 0.36399, 0.65505, 0.33609, 0.55585, 0.27854, 0.2649, 0.4646, 0.82914, 0.50349, 0.91871, 0.41591, 0.74894, 0.28892, 0.34721, 0.26831, 0.18388 ],
- "triangles": [ 12, 10, 11, 13, 29, 12, 12, 29, 10, 13, 14, 29, 14, 28, 29, 14, 15, 28, 29, 9, 10, 29, 28, 9, 15, 30, 28, 28, 8, 9, 15, 16, 30, 28, 30, 8, 16, 25, 30, 16, 17, 25, 30, 7, 8, 30, 25, 7, 25, 6, 7, 17, 26, 25, 17, 18, 26, 25, 26, 6, 18, 24, 26, 18, 19, 24, 26, 5, 6, 26, 24, 5, 19, 31, 24, 24, 4, 5, 24, 31, 4, 19, 20, 31, 20, 27, 31, 20, 21, 27, 31, 3, 4, 31, 27, 3, 21, 32, 27, 21, 22, 32, 27, 2, 3, 27, 32, 2, 22, 0, 32, 22, 23, 0, 32, 1, 2, 32, 0, 1 ],
- "vertices": [ 1, 19, -3.17, 0.08, 1, 3, 19, -0.81, 9.57, 0.88355, 20, -9.04, 10.16, 0.1161, 21, -22.23, 11.18, 3.5E-4, 3, 19, 7.54, 10.02, 0.38621, 20, -0.68, 10.08, 0.55432, 21, -13.88, 10.66, 0.05948, 3, 19, 12.53, 10.29, 0.06635, 20, 4.31, 10.04, 0.70208, 21, -8.9, 10.35, 0.23156, 3, 19, 17.49, 10.56, 6.2E-4, 20, 9.28, 10, 0.4143, 21, -3.94, 10.04, 0.58508, 3, 20, 16.42, 9.85, 0.01542, 21, 3.18, 9.51, 0.98107, 22, -11.8, 9.98, 0.00351, 2, 21, 9.88, 9.17, 0.85131, 22, -5.12, 9.43, 0.14869, 3, 21, 16.52, 9.48, 0.33226, 22, 1.53, 9.54, 0.65108, 23, -9.11, 9.65, 0.01667, 3, 21, 22.19, 9.75, 0.04446, 22, 7.2, 9.63, 0.73341, 23, -3.43, 9.73, 0.22213, 3, 21, 27.6, 9.93, 1.6E-4, 22, 12.62, 9.65, 0.33249, 23, 1.98, 9.74, 0.66736, 2, 22, 18.26, 9.81, 0.05337, 23, 7.62, 9.89, 0.94663, 1, 23, 13.77, 8.96, 1, 1, 23, 12.42, -0.01, 1, 1, 23, 10.78, -10.82, 1, 2, 22, 16.98, -10.22, 0.03012, 23, 6.3, -10.14, 0.96988, 3, 21, 26.56, -9.09, 0.00209, 22, 10.99, -9.33, 0.33554, 23, 0.32, -9.24, 0.66236, 3, 21, 21.22, -8.46, 0.08055, 22, 5.68, -8.54, 0.7348, 23, -4.99, -8.44, 0.18465, 3, 21, 15.08, -7.74, 0.56011, 22, -0.44, -7.63, 0.43537, 23, -11.11, -7.51, 0.00452, 3, 20, 22.54, -6.31, 0.02076, 21, 8.42, -6.95, 0.96823, 22, -7.07, -6.64, 0.01101, 2, 20, 15.49, -5.86, 0.48188, 21, 1.41, -6.13, 0.51812, 1, 20, 9.1, -5.46, 1, 2, 19, 13.02, -4.87, 1.7E-4, 20, 3.84, -5.12, 0.99983, 2, 19, 7.57, -4.87, 0.46615, 20, -1.6, -4.78, 0.53385, 1, 19, -4.4, -4.87, 1, 1, 21, 1.95, 0.07, 1, 1, 22, 0.35, -0.39, 1, 2, 20, 22.94, 0.4, 4.0E-5, 21, 9.18, -0.28, 0.99996, 2, 20, 3.99, 0.45, 0.99556, 21, -9.74, 0.79, 0.00444, 1, 23, 1.19, 0.03, 1, 1, 23, 7.06, -0.07, 1, 3, 21, 21.83, -0.16, 3.3E-4, 22, 6.54, -0.26, 0.99835, 23, -4.11, -0.16, 0.00132, 2, 20, 9.34, 0.32, 0.97769, 21, -4.4, 0.37, 0.02231, 2, 19, 7.55, 0.5, 0.99926, 21, -14.99, 1.2, 7.4E-4 ],
- "hull": 24,
- "edges": [ 22, 20, 2, 0, 0, 46, 22, 24, 24, 26, 38, 48, 10, 12, 48, 10, 48, 52, 52, 50, 12, 52, 36, 38, 52, 36, 6, 54, 54, 42, 34, 36, 34, 50, 12, 14, 50, 14, 30, 56, 18, 20, 56, 18, 24, 58, 58, 56, 20, 58, 26, 28, 28, 30, 58, 28, 14, 16, 16, 18, 50, 60, 60, 56, 16, 60, 30, 32, 32, 34, 60, 32, 6, 8, 8, 10, 48, 62, 62, 54, 8, 62, 38, 40, 40, 42, 62, 40, 42, 44, 44, 46, 0, 64, 64, 54, 44, 64, 2, 4, 4, 6, 64, 4 ],
- "width": 20,
- "height": 65
- }
- },
- "youyan": {
- "youyan": { "x": 4.71, "y": -1.08, "rotation": -87.06, "width": 27, "height": 12 }
- },
- "zhangzuixiao": {
- "zhangzuixiao": { "x": -0.21, "y": -1, "rotation": -91.51, "width": 24, "height": 7 }
- },
- "zuiba": {
- "zuiba": { "x": -0.6, "y": -2.79, "rotation": -91.51, "width": 16, "height": 6 }
- },
- "zuoshou": {
- "zuoshou": {
- "type": "mesh",
- "uvs": [ 1, 0.26625, 0.82905, 0.47137, 0.80432, 0.50104, 0.78296, 0.52668, 0.54613, 0.81086, 0.52477, 0.83648, 0.50172, 0.86413, 0.38849, 1, 0, 1, 0, 0.68797, 0.03498, 0.65795, 0.07708, 0.62183, 0.36105, 0.37817, 0.38901, 0.35419, 0.41496, 0.33192, 0.80179, 1.0E-5, 0.93317, 0, 1, 0, 0.60035, 0.4253, 0.29188, 0.7473, 0.2577, 0.77689, 0.31954, 0.71842, 0.57425, 0.45254, 0.62252, 0.39697 ],
- "triangles": [ 10, 11, 19, 20, 10, 19, 9, 10, 20, 6, 19, 5, 20, 19, 6, 8, 9, 20, 7, 20, 6, 8, 20, 7, 22, 13, 18, 12, 13, 22, 3, 18, 2, 22, 18, 3, 21, 11, 12, 21, 12, 22, 19, 11, 21, 4, 21, 22, 4, 22, 3, 5, 21, 4, 19, 21, 5, 16, 17, 0, 23, 14, 15, 23, 15, 16, 0, 23, 16, 18, 14, 23, 13, 14, 18, 1, 23, 0, 2, 23, 1, 18, 23, 2 ],
- "vertices": [ 1, 6, 7.52, 8.35, 1, 2, 6, 20.58, 8.21, 0.70035, 7, -1.56, 8.15, 0.29965, 2, 6, 22.47, 8.19, 0.49352, 7, 0.33, 8.21, 0.50648, 2, 6, 24.1, 8.17, 0.32199, 7, 1.96, 8.26, 0.67801, 2, 7, 20.04, 8.81, 0.61648, 8, -1.32, 8.82, 0.38352, 2, 7, 21.67, 8.86, 0.46087, 8, 0.31, 8.96, 0.53913, 2, 7, 23.43, 8.91, 0.30549, 8, 2.06, 9.12, 0.69451, 2, 7, 32.08, 9.18, 0.00606, 8, 10.68, 9.86, 0.99394, 1, 8, 17.56, -1.41, 1, 2, 7, 22.64, -10.86, 0.16872, 8, 2.37, -10.68, 0.83128, 2, 7, 20.57, -10.62, 0.27094, 8, 0.29, -10.55, 0.72906, 2, 7, 18.08, -10.34, 0.45621, 8, -2.21, -10.4, 0.54379, 3, 6, 22.73, -8.43, 0.27124, 7, 1.27, -8.38, 0.72865, 8, -19.09, -9.39, 1.1E-4, 2, 6, 21.08, -8.17, 0.43654, 7, -0.38, -8.19, 0.56346, 2, 6, 19.56, -7.93, 0.60397, 7, -1.91, -8.01, 0.39603, 1, 6, -3.2, -4.33, 1, 1, 6, -5.15, -0.31, 1, 1, 6, -6.14, 1.74, 1, 2, 6, 21.6, 0.07, 0.65652, 7, -0.2, 0.06, 0.34348, 2, 7, 20.93, -0.52, 0.12754, 8, 0.09, -0.44, 0.87246, 1, 8, 2.14, -0.56, 1, 1, 7, 19.04, -0.47, 1, 1, 7, 1.59, 0.01, 1, 1, 6, 19.82, 0.04, 1 ],
- "hull": 18,
- "edges": [ 16, 18, 0, 34, 14, 16, 30, 32, 32, 34, 18, 20, 20, 38, 38, 10, 16, 40, 40, 38, 18, 40, 10, 12, 12, 14, 40, 12, 8, 10, 42, 38, 8, 42, 20, 22, 42, 22, 26, 36, 36, 4, 22, 24, 24, 26, 36, 44, 44, 42, 24, 44, 4, 6, 6, 8, 44, 6, 0, 2, 2, 4, 32, 46, 46, 36, 2, 46, 26, 28, 28, 30, 46, 28 ],
- "width": 34,
- "height": 57
- }
- },
- "zuotui": {
- "zuotui": {
- "type": "mesh",
- "uvs": [ 0.60957, 0.05488, 1, 0.12537, 1, 0.18935, 0.92672, 0.50608, 0.92129, 0.52954, 0.91504, 0.55655, 0.838, 0.88953, 0.83315, 0.91051, 0.82835, 0.93124, 0.81244, 1, 0, 1, 0, 0.97193, 0, 0.92107, 0.22227, 0.8899, 0.22411, 0.87022, 0.22595, 0.85057, 0.25425, 0.5482, 0.25616, 0.52775, 0.25879, 0.49962, 0.30555, 0, 0.53365, 0.90794, 0.53513, 0.89136, 0.53699, 0.87041, 0.56764, 0.52599, 0.56545, 0.5507, 0.56986, 0.50111 ],
- "triangles": [ 10, 20, 9, 10, 11, 20, 11, 13, 20, 11, 12, 13, 13, 14, 20, 9, 20, 8, 20, 21, 8, 8, 21, 7, 21, 22, 7, 7, 22, 6, 20, 14, 21, 14, 15, 21, 21, 15, 22, 22, 24, 6, 6, 24, 5, 15, 16, 22, 22, 16, 24, 24, 23, 5, 5, 23, 4, 16, 17, 24, 24, 17, 23, 23, 25, 4, 4, 25, 3, 17, 18, 23, 23, 18, 25, 3, 25, 2, 25, 0, 2, 25, 18, 0, 18, 19, 0, 0, 1, 2 ],
- "vertices": [ 1, 16, -5.36, -0.16, 1, 1, 16, -1.63, 11.44, 1, 1, 16, 2.45, 11.72, 1, 2, 16, 22.82, 11, 0.46478, 17, -1.26, 11.08, 0.53522, 2, 16, 24.33, 10.94, 0.35303, 17, 0.24, 10.93, 0.64697, 2, 16, 26.07, 10.88, 0.23505, 17, 1.97, 10.77, 0.76495, 2, 17, 23.3, 8.72, 0.9381, 18, -8.57, 1.97, 0.0619, 2, 17, 24.65, 8.59, 0.87847, 18, -7.98, 3.18, 0.12153, 2, 17, 25.97, 8.46, 0.80522, 18, -7.39, 4.38, 0.19478, 2, 17, 30.38, 8.04, 0.62505, 18, -5.44, 8.35, 0.37495, 1, 18, 16.68, 0.24, 1, 1, 18, 16.06, -1.44, 1, 1, 18, 14.94, -4.5, 1, 2, 17, 23.48, -9.14, 0.12038, 18, 8.2, -4.15, 0.87962, 2, 17, 22.22, -9.09, 0.26, 18, 7.72, -5.32, 0.74, 2, 17, 20.96, -9.05, 0.39072, 18, 7.23, -6.48, 0.60928, 2, 16, 26.85, -8.27, 0.65125, 17, 1.6, -8.4, 0.34875, 2, 16, 25.54, -8.31, 0.7698, 17, 0.29, -8.35, 0.2302, 2, 16, 23.74, -8.35, 0.9016, 17, -1.51, -8.29, 0.0984, 1, 16, -8.25, -9.2, 1, 2, 17, 24.56, -0.1, 0.41326, 18, 0.12, 0.04, 0.58674, 1, 17, 23.49, -0.06, 1, 2, 17, 22.15, -0.02, 0.99786, 18, -0.8, -2.18, 0.00214, 2, 16, 24.81, 0.7, 0.31559, 17, 0.1, 0.68, 0.68441, 1, 17, 1.69, 0.63, 1, 2, 16, 23.21, 0.65, 0.89741, 17, -1.49, 0.73, 0.10259 ],
- "hull": 20,
- "edges": [ 26, 24, 18, 20, 4, 2, 2, 0, 0, 38, 20, 22, 22, 24, 40, 22, 26, 40, 16, 18, 40, 16, 26, 28, 42, 40, 28, 42, 14, 16, 42, 14, 28, 30, 44, 42, 30, 44, 12, 14, 44, 12, 34, 46, 46, 8, 30, 32, 32, 34, 44, 48, 48, 46, 32, 48, 8, 10, 10, 12, 48, 10, 34, 36, 36, 38, 0, 50, 50, 46, 36, 50, 4, 6, 6, 8, 50, 6 ],
- "width": 29,
- "height": 64
- }
- },
- "zuowaitao": {
- "zuowaitao": {
- "type": "mesh",
- "uvs": [ 1, 0.1445, 0.94699, 0.25944, 0.89483, 0.38008, 0.84835, 0.4911, 0.83123, 0.60324, 0.81456, 0.71241, 0.80609, 0.81649, 0.79786, 0.91772, 0.79117, 1, 0.36215, 1, 0, 1, 0.00666, 0.91944, 0.0155, 0.81245, 0.0245, 0.70348, 0.0771, 0.56782, 0.12295, 0.44957, 0.18479, 0.32842, 0.26072, 0.22913, 0.33334, 0.10201, 0.39161, 0, 0.73104, 0, 0.99998, 0.01581, 0.69188, 0.12486, 0.61456, 0.24476, 0.51893, 0.47371, 0.44404, 0.70491, 0.40826, 0.81097, 0.3819, 0.91904, 0.58834, 0.35233, 0.48246, 0.58632 ],
- "triangles": [ 9, 27, 8, 8, 27, 7, 10, 11, 9, 9, 11, 27, 11, 12, 27, 27, 26, 7, 27, 12, 26, 7, 26, 6, 26, 25, 6, 6, 25, 5, 12, 13, 26, 26, 13, 25, 25, 29, 5, 13, 14, 25, 5, 29, 4, 25, 14, 29, 29, 24, 4, 4, 24, 3, 14, 15, 29, 29, 15, 24, 24, 28, 3, 3, 28, 2, 15, 16, 24, 24, 16, 28, 28, 23, 2, 2, 23, 1, 16, 17, 28, 28, 17, 23, 23, 22, 1, 1, 22, 0, 17, 18, 23, 23, 18, 22, 22, 20, 0, 20, 21, 0, 18, 19, 22, 22, 19, 20 ],
- "vertices": [ 2, 24, 4.28, 5.47, 0.98506, 25, -7.39, 5.33, 0.01494, 2, 24, 11.59, 5.55, 0.32752, 25, -0.09, 5.37, 0.67248, 2, 25, 7.57, 5.48, 0.94936, 26, -6.48, 5.22, 0.05064, 3, 25, 14.61, 5.61, 0.16223, 26, 0.56, 5.38, 0.83759, 27, -11.23, 6.42, 1.8E-4, 2, 26, 7.6, 6.07, 0.81166, 27, -4.16, 6.44, 0.18834, 3, 26, 14.45, 6.75, 0.0538, 27, 2.73, 6.46, 0.94057, 28, -6.8, 5.99, 0.00563, 2, 27, 9.28, 6.61, 0.53015, 28, -0.27, 6.61, 0.46985, 2, 27, 15.66, 6.76, 0.02079, 28, 6.08, 7.21, 0.97921, 1, 28, 11.25, 7.69, 1, 1, 28, 12.15, 0.02, 1, 1, 28, 12.91, -6.45, 1, 2, 27, 16.43, -7.46, 0.02115, 28, 7.85, -6.92, 0.97885, 3, 26, 22.72, -6.6, 0.01512, 27, 9.69, -7.62, 0.42961, 28, 1.14, -7.55, 0.55526, 3, 26, 15.91, -7.41, 0.2985, 27, 2.82, -7.77, 0.66641, 28, -5.69, -8.2, 0.03509, 3, 25, 21.3, -7.48, 0.03495, 26, 7.31, -7.68, 0.92785, 27, -5.76, -7.22, 0.0372, 2, 25, 13.81, -7.69, 0.53958, 26, -0.18, -7.92, 0.46042, 3, 24, 17.83, -7.42, 0.05961, 25, 6.09, -7.63, 0.93445, 26, -7.89, -7.89, 0.00593, 2, 24, 11.44, -6.95, 0.5562, 25, -0.29, -7.13, 0.4438, 1, 24, 3.33, -6.79, 1, 1, 24, -3.18, -6.66, 1, 1, 24, -4.05, -0.61, 1, 1, 24, -3.74, 4.32, 1, 1, 24, 3.84, -0.19, 1, 2, 24, 11.52, -0.5, 0.27205, 25, -0.18, -0.68, 0.72795, 2, 25, 14.34, -0.42, 0.07259, 26, 0.32, -0.65, 0.92741, 2, 26, 14.93, 0.08, 0.00675, 27, 2.56, -0.23, 0.99325, 3, 26, 21.63, 0.39, 1.4E-4, 27, 9.27, -0.56, 0.33173, 28, 0.22, -0.54, 0.66813, 2, 27, 16.09, -0.72, 2.0E-5, 28, 7.04, -0.22, 0.99998, 2, 24, 18.29, -0.01, 3.0E-4, 25, 6.59, -0.22, 0.9997, 2, 25, 21.46, -0.1, 1.9E-4, 26, 7.43, -0.29, 0.99981 ],
- "hull": 22,
- "edges": [ 0, 42, 38, 36, 36, 34, 0, 2, 2, 4, 38, 40, 40, 42, 0, 44, 44, 36, 40, 44, 2, 46, 46, 34, 44, 46, 50, 52, 16, 18, 18, 20, 26, 50, 50, 10, 24, 26, 24, 52, 10, 12, 52, 12, 20, 22, 22, 24, 18, 54, 54, 52, 22, 54, 12, 14, 14, 16, 54, 14, 30, 48, 4, 6, 48, 6, 46, 56, 56, 48, 4, 56, 30, 32, 32, 34, 56, 32, 6, 8, 8, 10, 48, 58, 58, 50, 8, 58, 26, 28, 28, 30, 58, 28 ],
- "width": 18,
- "height": 63
- }
- },
- "zuoyan": {
- "zuoyan": { "x": 3.3, "y": 0.43, "rotation": -90, "width": 24, "height": 11 }
- }
- }
- },
- "animations": {
- "stand1": {
- "slots": {
- "1": {
- "color": [
- { "time": 1.6, "color": "ffffff00" },
- { "time": 1.6667, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.2, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1.6, "name": "1" }
- ]
- },
- "2": {
- "color": [
- { "time": 1.4667, "color": "ffffff00" },
- { "time": 1.5333, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1.4667, "name": "2" }
- ]
- },
- "3": {
- "color": [
- { "time": 1.3333, "color": "ffffff00" },
- { "time": 1.4, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1.3333, "name": "3" }
- ]
- },
- "4": {
- "color": [
- { "time": 1.2, "color": "ffffff00" },
- { "time": 1.2667, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1.2, "name": "4" }
- ]
- },
- "5": {
- "color": [
- { "time": 1.0667, "color": "ffffff00" },
- { "time": 1.1333, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1.0667, "name": "5" }
- ]
- },
- "6": {
- "color": [
- { "time": 0.9333, "color": "ffffff00" },
- { "time": 1, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.9333, "name": "6" }
- ]
- },
- "7": {
- "color": [
- { "time": 0.8, "color": "ffffff00" },
- { "time": 0.8667, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.8, "name": "7" }
- ]
- },
- "8": {
- "color": [
- { "time": 0.6667, "color": "ffffff00" },
- { "time": 0.7333, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.6667, "name": "8" }
- ]
- },
- "9": {
- "color": [
- { "time": 0.4333, "color": "ffffff00" },
- { "time": 0.5, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.4333, "name": "9" }
- ]
- },
- "biyan": {
- "attachment": [
- { "time": 0.1, "name": "biyan" },
- { "time": 0.2667, "name": null },
- { "time": 1.1333, "name": "biyan" },
- { "time": 1.2333, "name": null },
- { "time": 2.7667, "name": "biyan" },
- { "time": 2.9, "name": null }
- ]
- },
- "star": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 0.1667, "color": "ffffff00" },
- { "time": 0.4667, "color": "ffffffff", "curve": "stepped" },
- { "time": 0.6667, "color": "ffffffff" },
- { "time": 1.3667, "color": "ffffff00", "curve": "stepped" },
- { "time": 1.4333, "color": "ffffff00" },
- { "time": 1.8667, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.0667, "color": "ffffffff" },
- { "time": 2.7, "color": "ffffff00" }
- ]
- },
- "teshuzuoshou": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.3333, "name": "teshuzuoshou" }
- ]
- },
- "teshuzuoshou1": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.3333, "name": "teshuzuoshou1" }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2667, "name": "youyan" },
- { "time": 1.1333, "name": null },
- { "time": 1.2333, "name": "youyan" },
- { "time": 2.7667, "name": null },
- { "time": 2.9, "name": "youyan" }
- ]
- },
- "zhangzuixiao": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "zhangzuixiao" },
- { "time": 2.7667, "name": null }
- ]
- },
- "zuiba": {
- "attachment": [
- { "time": 0.1667, "name": null },
- { "time": 2.7667, "name": "zuiba" }
- ]
- },
- "zuoshou": {
- "attachment": [
- { "time": 0.3333, "name": null },
- { "time": 0.3667, "name": null }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2667, "name": "zuoyan" },
- { "time": 1.1333, "name": null },
- { "time": 1.2333, "name": "zuoyan" },
- { "time": 2.7667, "name": null },
- { "time": 2.9, "name": "zuoyan" }
- ]
- }
- },
- "bones": {
- "root": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -0.65, "y": -0.66 }
- ],
- "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.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0, "y": -1.69 },
- { "time": 0.3333, "x": 4.77, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 4.77, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 4.77, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 4.77, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- {
- "time": 0.3333,
- "angle": -1.89,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6333, "angle": -5.39, "curve": "stepped" },
- {
- "time": 2.5,
- "angle": -5.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.8, "angle": -3.73 }
- ],
- "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": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6333, "x": 0.08, "y": -0.01, "curve": "stepped" },
- { "time": 2.5, "x": 0.08, "y": -0.01 }
- ],
- "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- {
- "time": 0.3333,
- "angle": 1.92,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.7, "angle": 1.66, "curve": "stepped" },
- { "time": 2.5, "angle": 1.66 },
- { "time": 2.8, "angle": 3.86 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -1.25, "y": 0.02 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "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.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0 },
- { "time": 2.8, "angle": -1.57 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 22.71 },
- { "time": 0.3333, "angle": -12.75, "curve": "stepped" },
- { "time": 0.3667, "angle": -12.75 }
- ],
- "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 },
- { "time": 0.3667, "x": -2.17, "y": 124.31 }
- ],
- "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.3667, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -14.42 },
- { "time": 0.3333, "angle": -18.21, "curve": "stepped" },
- { "time": 0.5, "angle": -18.21 }
- ],
- "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 }
- ],
- "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 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -5.89 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "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 }
- ],
- "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 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -15.35 },
- {
- "time": 0.3333,
- "angle": 9.96,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6333, "angle": -2.74, "curve": "stepped" },
- { "time": 2.5, "angle": -2.74 },
- { "time": 2.8, "angle": -12.19 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 },
- {
- "time": 0.3333,
- "x": 1.39,
- "y": -0.5,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -5.5 },
- {
- "time": 0.3333,
- "angle": -51.85,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6333, "angle": -41.16, "curve": "stepped" },
- { "time": 2.5, "angle": -41.16 },
- { "time": 2.8, "angle": -19.82 }
- ],
- "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "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.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -7.67 },
- { "time": 0.3333, "angle": -6.46, "curve": "stepped" },
- { "time": 0.5, "angle": -6.46, "curve": "stepped" },
- { "time": 0.6333, "angle": -6.46, "curve": "stepped" },
- { "time": 2.5, "angle": -6.46 }
- ],
- "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 11.57 },
- { "time": 0.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -1.72, "y": -0.21 },
- { "time": 0.3333, "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 }
- ]
- },
- "bone15": {
- "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.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -4.35 },
- { "time": 0.3333, "angle": -15 },
- { "time": 0.5, "angle": -4.67, "curve": "stepped" },
- { "time": 2.5, "angle": -4.67 },
- { "time": 2.8, "angle": -3.14 }
- ],
- "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": 2.5, "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": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 9.63 },
- { "time": 0.3333, "angle": 49.7 },
- { "time": 0.5, "angle": 35.81, "curve": "stepped" },
- { "time": 2.5, "angle": 35.81 },
- { "time": 2.8, "angle": 19.94 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -1.37, "y": -0.32 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3333, "angle": -11.41, "curve": "stepped" },
- { "time": 0.5, "angle": -11.41, "curve": "stepped" },
- { "time": 2.5, "angle": -11.41 }
- ],
- "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": 2.5, "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": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "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.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone20": {
- "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.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 1.03, "y": 0.06 },
- { "time": 0.3333, "x": -1.91, "y": 0.44 },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 6.17 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 6.17 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 3.2333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.3333, "x": 0.16, "y": 1.45 }
- ],
- "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.2333, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- {
- "time": 0.3333,
- "angle": -10.9,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.8333, "angle": 0 },
- { "time": 1.5667, "angle": -18.19 },
- { "time": 2.3333, "angle": -16.07 },
- { "time": 3.2333, "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.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.2333, "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.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.2333, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": -14.59 },
- { "time": 0.1667, "angle": 0 },
- {
- "time": 0.3333,
- "angle": -5.76,
- "curve": [ 0.258, 0, 0.619, 0.45 ]
- },
- {
- "time": 0.5333,
- "angle": -5.61,
- "curve": [ 0.363, 0.44, 0.755, 1 ]
- },
- { "time": 0.8333, "angle": 0 },
- { "time": 1.5667, "angle": -0.11 },
- { "time": 2.3333, "angle": -10.54 },
- { "time": 3.2333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 1.03, "y": 0 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.2333, "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.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.2333, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": -14.59 },
- { "time": 0.1667, "angle": 0 },
- {
- "time": 0.3333,
- "angle": 3.44,
- "curve": [ 0.258, 0, 0.619, 0.45 ]
- },
- {
- "time": 0.5333,
- "angle": -15.58,
- "curve": [ 0.363, 0.44, 0.755, 1 ]
- },
- { "time": 0.8333, "angle": 0 },
- { "time": 1.5667, "angle": 4.22 },
- { "time": 2.3333, "angle": -10.54 },
- { "time": 3.2333, "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.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.2333, "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.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.2333, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- { "time": 0, "angle": -14.59 },
- { "time": 0.1667, "angle": 0 },
- {
- "time": 0.3333,
- "angle": 3.44,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.8333, "angle": 0 },
- { "time": 1.5667, "angle": 4.22 },
- { "time": 2.3333, "angle": -10.54 },
- { "time": 3.2333, "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.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.2333, "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.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.2333, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 2.7667, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.0333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "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": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.0333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1, "x": 0.365, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 0.365, "y": 1 },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1 },
- { "time": 1.1333, "x": 0.365, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 0.365, "y": 1 },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 },
- { "time": 2.7667, "x": 0.365, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 0.365, "y": 1 },
- { "time": 3.0333, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 2.7667, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.0333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "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": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.0333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1, "x": 0.365, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 0.365, "y": 1 },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1 },
- { "time": 1.1333, "x": 0.365, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 0.365, "y": 1 },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 },
- { "time": 2.7667, "x": 0.365, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 0.365, "y": 1 },
- { "time": 3.0333, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 2.7667, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.0333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "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": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.0333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "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": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.0333, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 2.7667, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.0333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": -1.25, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": -1.25, "y": 0 },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0 },
- { "time": 1.1333, "x": -1.25, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": -1.25, "y": 0 },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 },
- { "time": 2.7667, "x": -1.25, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": -1.25, "y": 0 },
- { "time": 3.0333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "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": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.0333, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 0.5 },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "ziti": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -417.85, "y": -47.65 },
- { "time": 3.4, "x": -399.93, "y": -47.65 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "ziti2": {
- "rotate": [
- { "time": 0.4333, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.4333, "x": 1.2, "y": 1.2 },
- { "time": 0.5667, "x": 0.9, "y": 0.9 },
- { "time": 0.7, "x": 1, "y": 1 }
- ]
- },
- "ziti3": {
- "rotate": [
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.6667, "x": 1.2, "y": 1.2 },
- { "time": 0.8, "x": 0.9, "y": 0.9 },
- { "time": 0.9333, "x": 1, "y": 1 }
- ]
- },
- "ziti4": {
- "rotate": [
- { "time": 0.8, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 }
- ],
- "translate": [
- { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.8, "x": 1.2, "y": 1.2 },
- { "time": 0.9333, "x": 0.9, "y": 0.9 },
- { "time": 1.0667, "x": 1, "y": 1 }
- ]
- },
- "ziti5": {
- "rotate": [
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0 }
- ],
- "translate": [
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.9333, "x": 1.2, "y": 1.2 },
- { "time": 1.0667, "x": 0.9, "y": 0.9 },
- { "time": 1.2, "x": 1, "y": 1 }
- ]
- },
- "ziti6": {
- "rotate": [
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 1.0667, "x": 1.2, "y": 1.2 },
- { "time": 1.2, "x": 0.9, "y": 0.9 },
- { "time": 1.3333, "x": 1, "y": 1 }
- ]
- },
- "ziti7": {
- "rotate": [
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.4667, "angle": 0 }
- ],
- "translate": [
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 1.2, "x": 1.2, "y": 1.2 },
- { "time": 1.3333, "x": 0.9, "y": 0.9 },
- { "time": 1.4667, "x": 1, "y": 1 }
- ]
- },
- "ziti8": {
- "rotate": [
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.6, "angle": 0 }
- ],
- "translate": [
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 1.3333, "x": 1.2, "y": 1.2 },
- { "time": 1.4667, "x": 0.9, "y": 0.9 },
- { "time": 1.6, "x": 1, "y": 1 }
- ]
- },
- "ziti9": {
- "rotate": [
- { "time": 1.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.6, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0 }
- ],
- "translate": [
- { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 1.4667, "x": 1.2, "y": 1.2 },
- { "time": 1.6, "x": 0.9, "y": 0.9 },
- { "time": 1.7333, "x": 1, "y": 1 }
- ]
- },
- "ziti10": {
- "rotate": [
- { "time": 1.6, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0 }
- ],
- "translate": [
- { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 1.6, "x": 1.2, "y": 1.2 },
- { "time": 1.7333, "x": 0.9, "y": 0.9 },
- { "time": 1.8333, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.3333, "angle": -4.7 },
- { "time": 0.5, "angle": -25.33 },
- { "time": 0.8, "angle": -9.02 },
- {
- "time": 1.1333,
- "angle": -16.65,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.4667,
- "angle": -4.98,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8,
- "angle": -16.65,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.1,
- "angle": -0.99,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.4667,
- "angle": -21.04,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.7,
- "angle": 2.23,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.9667, "angle": 27.34 }
- ],
- "translate": [
- { "time": 0, "x": 3.61, "y": 188.63, "curve": "stepped" },
- { "time": 0.3333, "x": 3.61, "y": 188.63, "curve": "stepped" },
- { "time": 0.5, "x": 3.61, "y": 188.63 },
- { "time": 0.8, "x": 3.45, "y": 187.76 },
- {
- "time": 1.1333,
- "x": 3.61,
- "y": 188.63,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.4667,
- "x": 3.43,
- "y": 187.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8,
- "x": 3.61,
- "y": 188.63,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.1,
- "x": 3.43,
- "y": 187.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.4667, "x": 3.61, "y": 188.63, "curve": "stepped" },
- { "time": 2.7, "x": 3.61, "y": 188.63 }
- ],
- "scale": [
- { "time": 0, "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.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": -18.48 },
- { "time": 0.3333, "angle": -22.07 },
- { "time": 0.5, "angle": -39.03 },
- { "time": 0.8, "angle": -12.9 },
- { "time": 1.1333, "angle": -35.94 },
- { "time": 1.4667, "angle": -12.26 },
- { "time": 1.8, "angle": -35.94 },
- { "time": 2.1, "angle": -21.53 },
- { "time": 2.4667, "angle": -26.86 },
- { "time": 2.7, "angle": -28.48 },
- { "time": 2.9667, "angle": -1.11 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.3333, "x": 2.17, "y": 0.13 },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "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.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.8, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.8, "angle": 0, "curve": "stepped" },
- { "time": 2.1, "angle": 0, "curve": "stepped" },
- { "time": 2.4667, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "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.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "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.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "translate": [
- { "time": 0, "x": -109.63, "y": -13.8 }
- ],
- "scale": [
- { "time": 0, "x": 0.3, "y": 0.3, "curve": "stepped" },
- {
- "time": 0.1667,
- "x": 0.3,
- "y": 0.3,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.6667,
- "x": 0.5,
- "y": 0.5,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.3667, "x": 0.3, "y": 0.3, "curve": "stepped" },
- {
- "time": 1.4333,
- "x": 0.3,
- "y": 0.3,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.0667,
- "x": 0.5,
- "y": 0.5,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "x": 0.3, "y": 0.3 }
- ]
- }
- },
- "deform": {
- "default": {
- "dibu": {
- "dibu": [
- { "time": 0.1667 },
- {
- "time": 0.3333,
- "offset": 8,
- "vertices": [ 3.57146, 20.5243, 0.21011, 10.91447 ]
- },
- {
- "time": 0.5333,
- "offset": 8,
- "vertices": [ 4.73099, 22.50792, 0.03457, 9.9644 ]
- },
- {
- "time": 0.6333,
- "offset": 8,
- "vertices": [ 1.4698, 11.66439, 0.29355, 5.69287 ]
- },
- {
- "time": 2.4667,
- "offset": 6,
- "vertices": [ 2.52073, 15.94321, 4.43141, 25.04954, 8.87064, 13.46643 ]
- },
- { "time": 3.1 }
- ]
- },
- "shenti": {
- "shenti": [
- { "time": 0 },
- {
- "time": 0.1667,
- "offset": 62,
- "vertices": [ -2.4136, -0.08252, -2.41499, 0, -2.41471, -0.03449, -2.4136, -0.08252, -2.41471, -0.03449, -2.4136, -0.08252, -2.41471, -0.03449 ]
- },
- {
- "time": 0.6333,
- "offset": 62,
- "vertices": [ -0.54336, -0.78582, -0.56992, -0.76679, -0.48427, -0.82355, -0.54336, -0.78582, -0.48427, -0.82355, -0.54336, -0.78582, -0.48427, -0.82355 ]
- }
- ]
- },
- "youshou": {
- "youshou": [
- {
- "time": 0.3333,
- "vertices": [ -0.04018, -0.011, -0.02404, -0.03401, -0.03991, -0.00566, -0.02723, -0.02972, -0.03911, -0.00139, -0.02932, -0.0259, -0.00959, 0.0399, -0.03274, 0.02474, -0.03692, 0.01793, -0.03294, 0.02984, -0.0381, 0.02289, -0.03314, 0.03514, -0.03933, 0.02805, -0.02252, 0.07224, 0.00812, 0.06059, 0.0172, 0.03826, 0.00946, 0.04087, 0.01615, 0.03007, 0.01002, 0.03263, 0.01572, 0.02671, 0.01025, 0.02925, -0.00259, -0.01803, 0.00945, -0.01557, 0.01229, -0.01344, -0.0051, -0.01979, 0.00864, -0.01852, 0.01205, -0.01649, -0.00631, -0.02107, 0.00851, -0.02028, 0.01228, -0.01825, -0.00374, -0.04481, 0.02557, -0.03698, -0.02228, -0.07697, -0.03635, -0.06797, -0.01706, 0.02684, -0.01793, 0.03408, -0.01634, 0.02259, -0.02281, -0.0078, -0.01266, -0.0205, -0.00845, -0.02256, -0.01283, -0.01647, -0.0094, -0.01865, -0.02257, -0.01224, -0.00965, -0.02377 ]
- }
- ]
- }
- }
- }
- },
- "stand2": {
- "slots": {
- "1": {
- "color": [
- { "time": 1.6, "color": "ffffff00" },
- { "time": 1.6667, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.2, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1.6, "name": "1" }
- ]
- },
- "2": {
- "color": [
- { "time": 1.4667, "color": "ffffff00" },
- { "time": 1.5333, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1.4667, "name": "2" }
- ]
- },
- "3": {
- "color": [
- { "time": 1.3333, "color": "ffffff00" },
- { "time": 1.4, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1.3333, "name": "3" }
- ]
- },
- "4": {
- "color": [
- { "time": 1.2, "color": "ffffff00" },
- { "time": 1.2667, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1.2, "name": "4" }
- ]
- },
- "5": {
- "color": [
- { "time": 1.0667, "color": "ffffff00" },
- { "time": 1.1333, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1.0667, "name": "5" }
- ]
- },
- "6": {
- "color": [
- { "time": 0.9333, "color": "ffffff00" },
- { "time": 1, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.9333, "name": "6" }
- ]
- },
- "7": {
- "color": [
- { "time": 0.8, "color": "ffffff00" },
- { "time": 0.8667, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.8, "name": "7" }
- ]
- },
- "8": {
- "color": [
- { "time": 0.6667, "color": "ffffff00" },
- { "time": 0.7333, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.6667, "name": "8" }
- ]
- },
- "9": {
- "color": [
- { "time": 0.4333, "color": "ffffff00" },
- { "time": 0.5, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.4333, "name": "9" }
- ]
- },
- "biyan": {
- "attachment": [
- { "time": 0.1, "name": "biyan" },
- { "time": 0.2667, "name": null },
- { "time": 1.1333, "name": "biyan" },
- { "time": 1.2333, "name": null },
- { "time": 2.7667, "name": "biyan" },
- { "time": 2.9, "name": null }
- ]
- },
- "star": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 0.1667, "color": "ffffff00" },
- { "time": 0.4667, "color": "ffffffff", "curve": "stepped" },
- { "time": 0.6667, "color": "ffffffff" },
- { "time": 1.3667, "color": "ffffff00", "curve": "stepped" },
- { "time": 1.4333, "color": "ffffff00" },
- { "time": 1.8667, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.0667, "color": "ffffffff" },
- { "time": 2.7, "color": "ffffff00" }
- ]
- },
- "teshuzuoshou": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.3333, "name": "teshuzuoshou" }
- ]
- },
- "teshuzuoshou1": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.3333, "name": "teshuzuoshou1" }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2667, "name": "youyan" },
- { "time": 1.1333, "name": null },
- { "time": 1.2333, "name": "youyan" },
- { "time": 2.7667, "name": null },
- { "time": 2.9, "name": "youyan" }
- ]
- },
- "zhangzuixiao": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "zhangzuixiao" },
- { "time": 2.7667, "name": null }
- ]
- },
- "zuiba": {
- "attachment": [
- { "time": 0.1667, "name": null },
- { "time": 2.7667, "name": "zuiba" }
- ]
- },
- "zuoshou": {
- "attachment": [
- { "time": 0.3333, "name": null },
- { "time": 0.3667, "name": null }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2667, "name": "zuoyan" },
- { "time": 1.1333, "name": null },
- { "time": 1.2333, "name": "zuoyan" },
- { "time": 2.7667, "name": null },
- { "time": 2.9, "name": "zuoyan" }
- ]
- }
- },
- "bones": {
- "root": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -0.65, "y": -0.66 }
- ],
- "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.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0, "y": -1.69 },
- { "time": 0.3333, "x": 4.77, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 4.77, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 4.77, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 4.77, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- {
- "time": 0.3333,
- "angle": -1.89,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6333, "angle": -5.39, "curve": "stepped" },
- {
- "time": 2.5,
- "angle": -5.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.8, "angle": -3.73 }
- ],
- "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": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6333, "x": 0.08, "y": -0.01, "curve": "stepped" },
- { "time": 2.5, "x": 0.08, "y": -0.01 }
- ],
- "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- {
- "time": 0.3333,
- "angle": 1.92,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.7, "angle": 1.66, "curve": "stepped" },
- { "time": 2.5, "angle": 1.66 },
- { "time": 2.8, "angle": 3.86 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -1.25, "y": 0.02 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "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.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0 },
- { "time": 2.8, "angle": -1.57 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 22.71 },
- { "time": 0.3333, "angle": -12.75, "curve": "stepped" },
- { "time": 0.3667, "angle": -12.75 }
- ],
- "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 },
- { "time": 0.3667, "x": -2.17, "y": 124.31 }
- ],
- "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.3667, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -14.42 },
- { "time": 0.3333, "angle": -18.21, "curve": "stepped" },
- { "time": 0.5, "angle": -18.21 }
- ],
- "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 }
- ],
- "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 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -5.89 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "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 }
- ],
- "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 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -15.35 },
- {
- "time": 0.3333,
- "angle": 9.96,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6333, "angle": -2.74, "curve": "stepped" },
- { "time": 2.5, "angle": -2.74 },
- { "time": 2.8, "angle": -12.19 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 },
- {
- "time": 0.3333,
- "x": 1.39,
- "y": -0.5,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -5.5 },
- {
- "time": 0.3333,
- "angle": -51.85,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6333, "angle": -41.16, "curve": "stepped" },
- { "time": 2.5, "angle": -41.16 },
- { "time": 2.8, "angle": -19.82 }
- ],
- "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "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.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -7.67 },
- { "time": 0.3333, "angle": -6.46, "curve": "stepped" },
- { "time": 0.5, "angle": -6.46, "curve": "stepped" },
- { "time": 0.6333, "angle": -6.46, "curve": "stepped" },
- { "time": 2.5, "angle": -6.46 }
- ],
- "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 11.57 },
- { "time": 0.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -1.72, "y": -0.21 },
- { "time": 0.3333, "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 }
- ]
- },
- "bone15": {
- "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.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -4.35 },
- { "time": 0.3333, "angle": -15 },
- { "time": 0.5, "angle": -4.67, "curve": "stepped" },
- { "time": 2.5, "angle": -4.67 },
- { "time": 2.8, "angle": -3.14 }
- ],
- "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": 2.5, "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": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 9.63 },
- { "time": 0.3333, "angle": 49.7 },
- { "time": 0.5, "angle": 35.81, "curve": "stepped" },
- { "time": 2.5, "angle": 35.81 },
- { "time": 2.8, "angle": 19.94 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -1.37, "y": -0.32 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3333, "angle": -11.41, "curve": "stepped" },
- { "time": 0.5, "angle": -11.41, "curve": "stepped" },
- { "time": 2.5, "angle": -11.41 }
- ],
- "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": 2.5, "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": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "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.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone20": {
- "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.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 1.03, "y": 0.06 },
- { "time": 0.3333, "x": -1.91, "y": 0.44 },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 6.17 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 6.17 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 3.2333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.3333, "x": 0.16, "y": 1.45 }
- ],
- "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.2333, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- {
- "time": 0.3333,
- "angle": -4.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.8333, "angle": 0 },
- { "time": 1.5667, "angle": -18.19 },
- { "time": 2.3333, "angle": -16.07 },
- { "time": 3.2333, "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.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.2333, "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.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.2333, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- {
- "time": 0.3333,
- "angle": -5.87,
- "curve": [ 0.258, 0, 0.619, 0.45 ]
- },
- {
- "time": 0.5333,
- "angle": -5.61,
- "curve": [ 0.363, 0.44, 0.755, 1 ]
- },
- { "time": 0.8333, "angle": 0 },
- { "time": 1.5667, "angle": -0.11 },
- { "time": 2.3333, "angle": -10.54 },
- { "time": 3.2333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 1.03, "y": 0 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.2333, "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.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.2333, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- {
- "time": 0.3333,
- "angle": -5.87,
- "curve": [ 0.258, 0, 0.619, 0.45 ]
- },
- {
- "time": 0.5333,
- "angle": -15.58,
- "curve": [ 0.363, 0.44, 0.755, 1 ]
- },
- { "time": 0.8333, "angle": 0 },
- { "time": 1.5667, "angle": 4.22 },
- { "time": 2.3333, "angle": -10.54 },
- { "time": 3.2333, "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.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.2333, "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.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.2333, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- {
- "time": 0.3333,
- "angle": -5.87,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.8333, "angle": 0 },
- { "time": 1.5667, "angle": 4.22 },
- { "time": 2.3333, "angle": -10.54 },
- { "time": 3.2333, "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.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.2333, "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.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.2333, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 2.7667, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.0333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "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": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.0333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1, "x": 0.365, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 0.365, "y": 1 },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1 },
- { "time": 1.1333, "x": 0.365, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 0.365, "y": 1 },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 },
- { "time": 2.7667, "x": 0.365, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 0.365, "y": 1 },
- { "time": 3.0333, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 2.7667, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.0333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "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": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.0333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1, "x": 0.365, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 0.365, "y": 1 },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1 },
- { "time": 1.1333, "x": 0.365, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 0.365, "y": 1 },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 },
- { "time": 2.7667, "x": 0.365, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 0.365, "y": 1 },
- { "time": 3.0333, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 2.7667, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.0333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "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": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.0333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "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": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.0333, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 2.7667, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.0333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": -1.25, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": -1.25, "y": 0 },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0 },
- { "time": 1.1333, "x": -1.25, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": -1.25, "y": 0 },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 },
- { "time": 2.7667, "x": -1.25, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": -1.25, "y": 0 },
- { "time": 3.0333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "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": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.0333, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 0.5 },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "ziti": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -417.85, "y": -47.65 },
- { "time": 3.4, "x": -399.93, "y": -47.65 }
- ],
- "scale": [
- { "time": 0, "x": -1, "y": 1 }
- ]
- },
- "ziti2": {
- "rotate": [
- { "time": 0.4333, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.4333, "x": 1.2, "y": 1.2 },
- { "time": 0.5667, "x": 0.9, "y": 0.9 },
- { "time": 0.7, "x": 1, "y": 1 }
- ]
- },
- "ziti3": {
- "rotate": [
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.6667, "x": 1.2, "y": 1.2 },
- { "time": 0.8, "x": 0.9, "y": 0.9 },
- { "time": 0.9333, "x": 1, "y": 1 }
- ]
- },
- "ziti4": {
- "rotate": [
- { "time": 0.8, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 }
- ],
- "translate": [
- { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.8, "x": 1.2, "y": 1.2 },
- { "time": 0.9333, "x": 0.9, "y": 0.9 },
- { "time": 1.0667, "x": 1, "y": 1 }
- ]
- },
- "ziti5": {
- "rotate": [
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0 }
- ],
- "translate": [
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.9333, "x": 1.2, "y": 1.2 },
- { "time": 1.0667, "x": 0.9, "y": 0.9 },
- { "time": 1.2, "x": 1, "y": 1 }
- ]
- },
- "ziti6": {
- "rotate": [
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 1.0667, "x": 1.2, "y": 1.2 },
- { "time": 1.2, "x": 0.9, "y": 0.9 },
- { "time": 1.3333, "x": 1, "y": 1 }
- ]
- },
- "ziti7": {
- "rotate": [
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.4667, "angle": 0 }
- ],
- "translate": [
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 1.2, "x": 1.2, "y": 1.2 },
- { "time": 1.3333, "x": 0.9, "y": 0.9 },
- { "time": 1.4667, "x": 1, "y": 1 }
- ]
- },
- "ziti8": {
- "rotate": [
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.6, "angle": 0 }
- ],
- "translate": [
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 1.3333, "x": 1.2, "y": 1.2 },
- { "time": 1.4667, "x": 0.9, "y": 0.9 },
- { "time": 1.6, "x": 1, "y": 1 }
- ]
- },
- "ziti9": {
- "rotate": [
- { "time": 1.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.6, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0 }
- ],
- "translate": [
- { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 1.4667, "x": 1.2, "y": 1.2 },
- { "time": 1.6, "x": 0.9, "y": 0.9 },
- { "time": 1.7333, "x": 1, "y": 1 }
- ]
- },
- "ziti10": {
- "rotate": [
- { "time": 1.6, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0 }
- ],
- "translate": [
- { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 1.6, "x": 1.2, "y": 1.2 },
- { "time": 1.7333, "x": 0.9, "y": 0.9 },
- { "time": 1.8333, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.3333, "angle": -4.7 },
- { "time": 0.5, "angle": -25.33 },
- { "time": 0.8, "angle": -9.02 },
- {
- "time": 1.1333,
- "angle": -16.65,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.4667,
- "angle": -4.98,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8,
- "angle": -16.65,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.1,
- "angle": -0.99,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.4667,
- "angle": -21.04,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.7,
- "angle": 2.23,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.9667, "angle": 27.34 }
- ],
- "translate": [
- { "time": 0, "x": 3.61, "y": 188.63, "curve": "stepped" },
- { "time": 0.3333, "x": 3.61, "y": 188.63, "curve": "stepped" },
- { "time": 0.5, "x": 3.61, "y": 188.63 },
- { "time": 0.8, "x": 3.45, "y": 187.76 },
- {
- "time": 1.1333,
- "x": 3.61,
- "y": 188.63,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.4667,
- "x": 3.43,
- "y": 187.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8,
- "x": 3.61,
- "y": 188.63,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.1,
- "x": 3.43,
- "y": 187.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.4667, "x": 3.61, "y": 188.63, "curve": "stepped" },
- { "time": 2.7, "x": 3.61, "y": 188.63 }
- ],
- "scale": [
- { "time": 0, "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.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": -18.48 },
- { "time": 0.3333, "angle": -22.07 },
- { "time": 0.5, "angle": -39.03 },
- { "time": 0.8, "angle": -12.9 },
- { "time": 1.1333, "angle": -35.94 },
- { "time": 1.4667, "angle": -12.26 },
- { "time": 1.8, "angle": -35.94 },
- { "time": 2.1, "angle": -21.53 },
- { "time": 2.4667, "angle": -26.86 },
- { "time": 2.7, "angle": -28.48 },
- { "time": 2.9667, "angle": -1.11 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.3333, "x": 2.17, "y": 0.13 },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "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.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.8, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.8, "angle": 0, "curve": "stepped" },
- { "time": 2.1, "angle": 0, "curve": "stepped" },
- { "time": 2.4667, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "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.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "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.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "translate": [
- { "time": 0, "x": -109.63, "y": -13.8 }
- ],
- "scale": [
- { "time": 0, "x": 0.3, "y": 0.3, "curve": "stepped" },
- {
- "time": 0.1667,
- "x": 0.3,
- "y": 0.3,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.6667,
- "x": 0.5,
- "y": 0.5,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.3667, "x": 0.3, "y": 0.3, "curve": "stepped" },
- {
- "time": 1.4333,
- "x": 0.3,
- "y": 0.3,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.0667,
- "x": 0.5,
- "y": 0.5,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "x": 0.3, "y": 0.3 }
- ]
- }
- },
- "deform": {
- "default": {
- "dibu": {
- "dibu": [
- { "time": 0.1667 },
- {
- "time": 0.3333,
- "offset": 8,
- "vertices": [ 3.57146, 20.5243, 0.21011, 10.91447 ]
- },
- {
- "time": 0.5333,
- "offset": 8,
- "vertices": [ 4.73099, 22.50792, 0.03457, 9.9644 ]
- },
- {
- "time": 0.6333,
- "offset": 8,
- "vertices": [ 1.4698, 11.66439, 0.29355, 5.69287 ]
- },
- {
- "time": 2.4667,
- "offset": 6,
- "vertices": [ 2.52073, 15.94321, 4.43141, 25.04954, 8.87064, 13.46643 ]
- },
- { "time": 3.1 }
- ]
- },
- "shenti": {
- "shenti": [
- { "time": 0 },
- {
- "time": 0.1667,
- "offset": 62,
- "vertices": [ -2.4136, -0.08252, -2.41499, 0, -2.41471, -0.03449, -2.4136, -0.08252, -2.41471, -0.03449, -2.4136, -0.08252, -2.41471, -0.03449 ]
- },
- {
- "time": 0.6333,
- "offset": 62,
- "vertices": [ -0.54336, -0.78582, -0.56992, -0.76679, -0.48427, -0.82355, -0.54336, -0.78582, -0.48427, -0.82355, -0.54336, -0.78582, -0.48427, -0.82355 ]
- }
- ]
- },
- "youshou": {
- "youshou": [
- {
- "time": 0.3333,
- "vertices": [ -0.04018, -0.011, -0.02404, -0.03401, -0.03991, -0.00566, -0.02723, -0.02972, -0.03911, -0.00139, -0.02932, -0.0259, -0.00959, 0.0399, -0.03274, 0.02474, -0.03692, 0.01793, -0.03294, 0.02984, -0.0381, 0.02289, -0.03314, 0.03514, -0.03933, 0.02805, -0.02252, 0.07224, 0.00812, 0.06059, 0.0172, 0.03826, 0.00946, 0.04087, 0.01615, 0.03007, 0.01002, 0.03263, 0.01572, 0.02671, 0.01025, 0.02925, -0.00259, -0.01803, 0.00945, -0.01557, 0.01229, -0.01344, -0.0051, -0.01979, 0.00864, -0.01852, 0.01205, -0.01649, -0.00631, -0.02107, 0.00851, -0.02028, 0.01228, -0.01825, -0.00374, -0.04481, 0.02557, -0.03698, -0.02228, -0.07697, -0.03635, -0.06797, -0.01706, 0.02684, -0.01793, 0.03408, -0.01634, 0.02259, -0.02281, -0.0078, -0.01266, -0.0205, -0.00845, -0.02256, -0.01283, -0.01647, -0.0094, -0.01865, -0.02257, -0.01224, -0.00965, -0.02377 ]
- }
- ]
- }
- }
- }
- },
- "walk1": {
- "slots": {
- "1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "3": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "4": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "5": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "6": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "7": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "8": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "9": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "biyan": {
- "attachment": [
- { "time": 1.1, "name": "biyan" },
- { "time": 1.2333, "name": null }
- ]
- },
- "star": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuzuoshou": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuzuoshou1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2333, "name": "youyan" }
- ]
- },
- "zhangzuixiao": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2333, "name": "zuoyan" }
- ]
- }
- },
- "bones": {
- "bone": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0, "y": 1.12 },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 0.6667, "x": 0, "y": 1.12 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": 0, "y": 1.12 },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 1.6667, "x": 0, "y": 1.12 },
- { "time": 2, "x": 0, "y": 0 }
- ]
- },
- "bone6": {
- "rotate": [
- {
- "time": 0,
- "angle": -311.26,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 16.66,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -311.26,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 16.66,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -311.26 }
- ],
- "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": -1.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -19.02,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -1.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -19.02,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -1.38 }
- ],
- "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": 327.03,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -3.36,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 327.03,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -3.36,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 327.03 }
- ]
- },
- "bone10": {
- "rotate": [
- {
- "time": 0,
- "angle": -22.03,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -9.19,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -22.03,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -9.19,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -22.03 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 19.04 },
- { "time": 0.1667, "angle": -4.28 },
- { "time": 0.3333, "angle": -20.77 },
- { "time": 0.5, "angle": -29.84 },
- { "time": 0.6667, "angle": -14.9 },
- { "time": 0.8333, "angle": 2.07 },
- { "time": 1, "angle": 19.04 },
- { "time": 1.1667, "angle": -4.28 },
- { "time": 1.3333, "angle": -20.77 },
- { "time": 1.5, "angle": -29.84 },
- { "time": 1.6667, "angle": -14.9 },
- { "time": 1.8333, "angle": 2.07 },
- { "time": 2, "angle": 19.04 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 38.95 },
- { "time": 0.3333, "angle": 35.2 },
- { "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 },
- { "time": 1.1667, "angle": 38.95 },
- { "time": 1.3333, "angle": 35.2 },
- { "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 },
- { "time": 0.1667, "x": -2.57, "y": -1.74 },
- { "time": 0.3333, "x": -2.09, "y": -1.23 },
- { "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 },
- { "time": 1.1667, "x": -2.57, "y": -1.74 },
- { "time": 1.3333, "x": -2.09, "y": -1.23 },
- { "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 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": -12.22 },
- { "time": 0.1667, "angle": -2.11 },
- { "time": 0.3333, "angle": 20.53 },
- { "time": 0.5, "angle": 36.9 },
- { "time": 0.6667, "angle": 12.42 },
- { "time": 0.8333, "angle": -10.13 },
- { "time": 1, "angle": -12.22 },
- { "time": 1.1667, "angle": -2.11 },
- { "time": 1.3333, "angle": 20.53 },
- { "time": 1.5, "angle": 36.9 },
- { "time": 1.6667, "angle": 12.42 },
- { "time": 1.8333, "angle": -10.13 },
- { "time": 2, "angle": -12.22 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0.66, "y": -0.24 },
- { "time": 0.3333, "x": 1.31, "y": -0.48 },
- { "time": 0.5, "x": 1.97, "y": -0.72 },
- { "time": 0.6667, "x": 1.31, "y": -0.48 },
- { "time": 0.8333, "x": 0.66, "y": -0.24 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": 0.66, "y": -0.24 },
- { "time": 1.3333, "x": 1.31, "y": -0.48 },
- { "time": 1.5, "x": 1.97, "y": -0.72 },
- { "time": 1.6667, "x": 1.31, "y": -0.48 },
- { "time": 1.8333, "x": 0.66, "y": -0.24 },
- { "time": 2, "x": 0, "y": 0 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 12.81 },
- { "time": 0.3333, "angle": 7.36 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 33.21 },
- { "time": 0.8333, "angle": 30.63 },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 12.81 },
- { "time": 1.3333, "angle": 7.36 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 33.21 },
- { "time": 1.8333, "angle": 30.63 },
- { "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 },
- { "time": 0.6667, "x": -1.73, "y": -1.19 },
- { "time": 0.8333, "x": -1.65, "y": -1.12 },
- { "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 },
- { "time": 1.6667, "x": -1.73, "y": -1.19 },
- { "time": 1.8333, "x": -1.65, "y": -1.12 },
- { "time": 2, "x": 0, "y": 0 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": -10.3, "curve": "stepped" },
- { "time": 0.1667, "angle": -10.3 },
- { "time": 0.3333, "angle": -28.83 },
- { "time": 0.5, "angle": -10.3, "curve": "stepped" },
- { "time": 0.6667, "angle": -10.3, "curve": "stepped" },
- { "time": 0.8333, "angle": -10.3, "curve": "stepped" },
- { "time": 1, "angle": -10.3, "curve": "stepped" },
- { "time": 1.1667, "angle": -10.3 },
- { "time": 1.3333, "angle": -28.83 },
- { "time": 1.5, "angle": -10.3, "curve": "stepped" },
- { "time": 1.6667, "angle": -10.3, "curve": "stepped" },
- { "time": 1.8333, "angle": -10.3, "curve": "stepped" },
- { "time": 2, "angle": -10.3 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 347.15 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": 347.15 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": 347.15 }
- ]
- },
- "bone20": {
- "rotate": [
- { "time": 0, "angle": 20.13 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": 20.13 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": 20.13 }
- ],
- "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": -6.25 },
- { "time": 0.5, "angle": 7.9 },
- { "time": 1, "angle": -6.25 },
- { "time": 1.5, "angle": 7.9 },
- { "time": 2, "angle": -6.25 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 3.53 },
- { "time": 0.5, "angle": 7.9 },
- { "time": 1, "angle": 3.53 },
- { "time": 1.5, "angle": 7.9 },
- { "time": 2, "angle": 3.53 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": -2.4 },
- { "time": 0.5, "angle": 7.9 },
- { "time": 1, "angle": -2.4 },
- { "time": 1.5, "angle": 7.9 },
- { "time": 2, "angle": -2.4 }
- ],
- "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": -4.45,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -4.45,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -4.45 }
- ],
- "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": -2.2,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -2.2,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -2.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 }
- ]
- },
- "bone27": {
- "rotate": [
- {
- "time": 0,
- "angle": -2.2,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -2.2,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -2.2 }
- ]
- },
- "bone28": {
- "rotate": [
- {
- "time": 0,
- "angle": -2.2,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -2.2,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -2.2 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.434, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 0.434, "y": 1 },
- { "time": 1.4, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.434, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 0.434, "y": 1 },
- { "time": 1.4, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "translate": [
- { "time": 0, "x": -0.6, "y": -1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1, "x": -1.27, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": -1.27, "y": 0 },
- { "time": 1.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ]
- },
- "root": {
- "scale": [
- { "time": 0, "x": 0.65, "y": 0.65 }
- ]
- }
- },
- "deform": {
- "default": {
- "shenti": {
- "shenti": [
- {
- "time": 0,
- "offset": 28,
- "vertices": [ -0.15454, 4.52438, -0.06472, 4.52657, -0.04253, 2.97472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.05297, 1.5511, 0, 1.55201, -0.02219, 1.55185, -0.05297, 1.5511, -0.02219, 1.55185, -0.05297, 1.5511, -0.02219, 1.55185 ]
- },
- { "time": 0.5 },
- {
- "time": 1,
- "offset": 28,
- "vertices": [ -0.15454, 4.52438, -0.06472, 4.52657, -0.04253, 2.97472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.05297, 1.5511, 0, 1.55201, -0.02219, 1.55185, -0.05297, 1.5511, -0.02219, 1.55185, -0.05297, 1.5511, -0.02219, 1.55185 ]
- },
- { "time": 1.5 },
- {
- "time": 2,
- "offset": 28,
- "vertices": [ -0.15454, 4.52438, -0.06472, 4.52657, -0.04253, 2.97472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.05297, 1.5511, 0, 1.55201, -0.02219, 1.55185, -0.05297, 1.5511, -0.02219, 1.55185, -0.05297, 1.5511, -0.02219, 1.55185 ]
- }
- ]
- },
- "zuotui": {
- "zuotui": [
- {
- "time": 0,
- "offset": 4,
- "vertices": [ -5.20358, 0.95535 ]
- }
- ]
- }
- }
- }
- }
- }
- }
|