60061.json 159 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969
  1. {
  2. "skeleton": { "hash": "JilH6+2F6bTKNZoTU6Chz/OpH6E", "spine": "3.6.53", "width": 381.53, "height": 200, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -4.34, "y": 61.51 },
  6. { "name": "bone2", "parent": "bone", "length": 16.64, "rotation": 88.34, "x": -0.31, "y": -0.06 },
  7. { "name": "bone3", "parent": "bone2", "length": 29.93, "rotation": -1.57, "x": 16.64 },
  8. { "name": "bone4", "parent": "bone3", "length": 72.3, "rotation": 3.42, "x": 29.93 },
  9. { "name": "bone5", "parent": "bone3", "length": 18, "rotation": 144.46, "x": 20.43, "y": 12.25, "color": "1491cbff" },
  10. { "name": "bone6", "parent": "bone5", "length": 24.28, "rotation": 0.17, "x": 16.26, "y": 0.19, "color": "1491cbff" },
  11. { "name": "bone7", "parent": "bone6", "length": 17.79, "rotation": 3.41, "x": 24.28, "color": "1491cbff" },
  12. { "name": "bone8", "parent": "bone3", "length": 18, "rotation": -136.74, "x": 22.36, "y": -25.23, "color": "e3cd56ff" },
  13. { "name": "bone9", "parent": "bone8", "length": 23.42, "rotation": -1.66, "x": 17.08, "color": "e3cd56ff" },
  14. { "name": "bone10", "parent": "bone9", "length": 21.89, "rotation": 0.1, "x": 23.42, "color": "e3cd56ff" },
  15. { "name": "bone11", "parent": "bone", "length": 18.94, "rotation": -80.23, "x": 16.79, "y": -19.7, "color": "9428cbff" },
  16. { "name": "bone12", "parent": "bone11", "length": 19.45, "rotation": 0.66, "x": 18.94, "color": "9428cbff" },
  17. { "name": "bone13", "parent": "bone12", "length": 8.75, "rotation": -95.41, "x": 19.45, "color": "9428cbff" },
  18. { "name": "bone14", "parent": "bone", "length": 21.13, "rotation": -92.08, "x": -7.38, "y": -17.56, "color": "21b620ff" },
  19. { "name": "bone15", "parent": "bone14", "length": 17.76, "rotation": 0.1, "x": 21.13, "color": "21b620ff" },
  20. { "name": "bone16", "parent": "bone15", "length": 8.85, "rotation": -78.07, "x": 17.76, "color": "21b620ff" },
  21. { "name": "bone17", "parent": "bone", "length": 16.62, "rotation": -88.44, "x": 0.33, "y": -11.53, "color": "262283ff" },
  22. { "name": "bone18", "parent": "bone3", "length": 19.2, "rotation": 165.37, "x": 20.7, "y": -23.18, "color": "73c24cff" },
  23. { "name": "bone19", "parent": "bone18", "length": 18.43, "rotation": 10.33, "x": 19.2, "color": "73c24cff" },
  24. { "name": "bone20", "parent": "bone19", "length": 14.87, "rotation": 13.36, "x": 19.18, "y": 0.1, "color": "73c24cff" },
  25. { "name": "bone21", "parent": "bone20", "length": 13.73, "rotation": 8.82, "x": 15.51, "y": 0.24, "color": "73c24cff" },
  26. { "name": "bone22", "parent": "bone21", "length": 14.8, "rotation": 3.79, "x": 13.73, "color": "73c24cff" },
  27. { "name": "bone23", "parent": "bone3", "length": 18.58, "rotation": -175.84, "x": 18.47, "y": 13.77, "color": "e85a5aff" },
  28. { "name": "bone24", "parent": "bone23", "length": 17.21, "rotation": -0.93, "x": 18.42, "color": "e85a5aff" },
  29. { "name": "bone25", "parent": "bone24", "length": 18.58, "rotation": -7.47, "x": 17.21, "color": "e85a5aff" },
  30. { "name": "bone26", "parent": "bone25", "length": 14.57, "rotation": -2.67, "x": 18.58, "color": "e85a5aff" },
  31. { "name": "bone27", "parent": "bone26", "length": 12.76, "rotation": -10.65, "x": 14.57, "color": "e85a5aff" },
  32. { "name": "bone28", "parent": "bone", "length": 17.07, "rotation": -88.99, "x": 4.52, "y": -9.51 },
  33. { "name": "bone29", "parent": "bone3", "rotation": -175.83, "x": 27.67, "y": 4.91 },
  34. { "name": "bone30", "parent": "bone29", "length": 13.44, "rotation": -2.23, "x": 6.8, "y": 0.1, "color": "ee9b20ff" },
  35. { "name": "bone31", "parent": "bone30", "length": 10.43, "rotation": -1.2, "x": 13.72, "y": 0.03, "color": "ee9b20ff" },
  36. { "name": "bone32", "parent": "bone31", "length": 6.96, "rotation": -1.24, "x": 10.45, "y": 0.03, "color": "ee9b20ff" },
  37. { "name": "bone33", "parent": "bone4", "length": 11.18, "rotation": -1.51, "x": 26.56, "y": 20.22 },
  38. { "name": "bone34", "parent": "bone4", "length": 12.81, "rotation": 0.19, "x": 24.74, "y": -10.13 },
  39. { "name": "bone35", "parent": "bone4", "x": 38.64, "y": 5.9 },
  40. { "name": "bone36", "parent": "bone4", "x": 29.19, "y": 4.99 },
  41. { "name": "bone37", "parent": "bone4", "length": 5.82, "rotation": -129.04, "x": 75.2, "y": -14.7, "color": "1ecc3aff" },
  42. { "name": "bone38", "parent": "bone37", "length": 8.68, "rotation": -41.96, "x": 5.82, "color": "1ecc3aff" },
  43. { "name": "bone39", "parent": "bone38", "length": 8.61, "rotation": 11.37, "x": 8.68, "color": "1ecc3aff" },
  44. { "name": "bone40", "parent": "bone39", "length": 10.67, "rotation": 30.68, "x": 8.61, "color": "1ecc3aff" },
  45. { "name": "bone41", "parent": "bone40", "length": 10.25, "rotation": -5.74, "x": 10.67, "color": "1ecc3aff" },
  46. { "name": "bone42", "parent": "bone4", "length": 8.34, "rotation": 128.06, "x": 75.74, "y": -7.94, "color": "288cbcff" },
  47. { "name": "bone43", "parent": "bone42", "length": 9.06, "rotation": 19.82, "x": 8.68, "y": 0.22, "color": "288cbcff" },
  48. { "name": "bone44", "parent": "bone43", "length": 9.58, "rotation": -7.21, "x": 9.23, "y": -0.04, "color": "288cbcff" },
  49. { "name": "bone45", "parent": "bone44", "length": 10.16, "rotation": -39.42, "x": 9.84, "y": -0.12, "color": "288cbcff" },
  50. { "name": "bone46", "parent": "bone4", "length": 12.47, "rotation": 113.01, "x": 78.89, "y": -4.06, "color": "e7d95dff" },
  51. { "name": "bone47", "parent": "bone46", "length": 11.14, "rotation": 20.43, "x": 12.97, "y": 0.2, "color": "e7d95dff" },
  52. { "name": "bone48", "parent": "bone47", "length": 12.62, "rotation": 19.04, "x": 11.32, "color": "e7d95dff" },
  53. { "name": "bone49", "parent": "bone48", "length": 10.64, "rotation": -46.16, "x": 13.02, "y": 0.06, "color": "e7d95dff" },
  54. { "name": "bone50", "parent": "bone3", "length": 22.07, "rotation": -106.04, "x": 44, "y": -300, "color": "2557a9ff" },
  55. { "name": "bone51", "parent": "bone50", "length": 22.88, "rotation": 164.14, "x": 19.48, "y": -0.1, "color": "2557a9ff" },
  56. { "name": "bone52", "parent": "bone51", "length": 19.77, "rotation": 4.97, "x": 23.2, "y": -0.06, "color": "2557a9ff" },
  57. { "name": "bone53", "parent": "bone52", "length": 20, "rotation": -52.78, "x": 12.29, "y": 0.46, "color": "2557a9ff" },
  58. { "name": "bone54", "parent": "bone34", "x": 7.23, "y": 4.4 },
  59. { "name": "bone55", "parent": "bone54", "x": -1.54, "y": -2.12 }
  60. ],
  61. "slots": [
  62. { "name": "zuoshou", "bone": "bone5", "attachment": "zuoshou" },
  63. { "name": "waitaohou", "bone": "bone28", "attachment": "waitaohou" },
  64. { "name": "zuojiao", "bone": "bone14", "attachment": "zuojiao" },
  65. { "name": "dang", "bone": "bone17", "attachment": "dang" },
  66. { "name": "youjiao", "bone": "bone11", "attachment": "youjiao" },
  67. { "name": "chenyi", "bone": "bone2", "attachment": "chenyi" },
  68. { "name": "waitaoyou", "bone": "bone18", "attachment": "waitaoyou" },
  69. { "name": "waitaozuo", "bone": "bone23", "attachment": "waitaozuo" },
  70. { "name": "yiling", "bone": "bone2", "attachment": "yiling" },
  71. { "name": "weijing", "bone": "bone30", "attachment": "weijing" },
  72. { "name": "youshou", "bone": "bone8", "attachment": "youshou" },
  73. { "name": "toufahou", "bone": "bone4", "attachment": "toufahou" },
  74. { "name": "youshou 1", "bone": "bone50", "attachment": "youshou 1" },
  75. { "name": "tou", "bone": "bone4", "attachment": "tou" },
  76. { "name": "zuoyan", "bone": "bone33", "attachment": "zuoyan" },
  77. { "name": "yanbai", "bone": "bone34", "attachment": "yanbai" },
  78. { "name": "yanqiu", "bone": "bone54", "attachment": "yanqiu" },
  79. { "name": "gaoguang", "bone": "bone55", "attachment": "gaoguang" },
  80. { "name": "biyan", "bone": "bone36" },
  81. { "name": "meimao", "bone": "bone35", "attachment": "meimao" },
  82. { "name": "toufa5", "bone": "bone4", "attachment": "toufa5" },
  83. { "name": "toufa4", "bone": "bone46", "attachment": "toufa4" },
  84. { "name": "toufa3", "bone": "bone42", "attachment": "toufa3" },
  85. { "name": "toufa2", "bone": "bone4", "attachment": "toufa2" },
  86. { "name": "toufa1", "bone": "bone37", "attachment": "toufa1" },
  87. { "name": "fangdajing", "bone": "bone53", "attachment": "fangdajing" },
  88. { "name": "youshou2", "bone": "bone51" }
  89. ],
  90. "skins": {
  91. "default": {
  92. "biyan": {
  93. "biyan": { "x": -0.82, "rotation": -90.19, "width": 48, "height": 8 }
  94. },
  95. "chenyi": {
  96. "chenyi": {
  97. "type": "mesh",
  98. "uvs": [ 0.61559, 0.03518, 0.61643, 0.06866, 0.61737, 0.1063, 0.82961, 0.13158, 1, 0.55588, 1, 0.74506, 1, 0.89673, 1, 0.9181, 0.6644, 0.92518, 0.66787, 1, 0.38224, 1, 0.16307, 1, 0.16134, 0.924, 0, 0.924, 0, 0.88951, 0, 0.73242, 0, 0.53421, 0.06819, 0.13519, 0.26186, 0.09908, 0.27069, 0.0661, 0.27832, 0.0376, 0.28839, 0, 0.43796, 0, 0.61471, 0, 0.39671, 0.74029, 0.38836, 0.89028, 0.40772, 0.54267, 0.43246, 0.09866, 0.43412, 0.06889, 0.43583, 0.03823 ],
  99. "triangles": [ 27, 28, 1, 27, 19, 28, 1, 29, 0, 1, 28, 29, 19, 20, 28, 28, 20, 29, 0, 22, 23, 0, 29, 22, 20, 21, 29, 29, 21, 22, 3, 4, 26, 26, 27, 2, 26, 2, 3, 17, 18, 26, 26, 18, 27, 2, 27, 1, 18, 19, 27, 10, 8, 9, 10, 25, 8, 25, 10, 12, 10, 11, 12, 7, 8, 6, 13, 14, 12, 12, 14, 25, 8, 25, 6, 25, 24, 6, 24, 5, 6, 24, 25, 15, 25, 14, 15, 24, 26, 5, 26, 4, 5, 26, 24, 16, 24, 15, 16, 16, 17, 26 ],
  100. "vertices": [ 2, 3, 34.94, -8.81, 0.21309, 4, 4.47, -9.1, 0.78691, 2, 3, 32.53, -8.99, 0.37103, 4, 2.06, -9.13, 0.62897, 2, 3, 29.83, -9.19, 0.66622, 4, -0.65, -9.17, 0.33378, 3, 2, 44.68, -20.45, 5.4E-4, 3, 28.6, -19.68, 0.96505, 4, -2.51, -19.56, 0.03441, 2, 2, 14.39, -29.68, 0.47861, 3, -1.43, -29.73, 0.52139, 2, 2, 0.77, -30.08, 0.79754, 3, -15.03, -30.5, 0.20246, 2, 2, -10.14, -30.39, 0.93709, 3, -25.94, -31.12, 0.06291, 2, 2, -11.68, -30.44, 0.9425, 3, -27.47, -31.2, 0.0575, 2, 2, -12.67, -14.02, 0.97513, 3, -28.91, -14.81, 0.02487, 2, 2, -18.05, -14.34, 0.983, 3, -34.28, -15.29, 0.017, 1, 2, -18.45, -0.35, 1, 1, 2, -18.76, 10.38, 1, 1, 2, -13.3, 10.63, 1, 1, 2, -13.52, 18.53, 1, 1, 2, -11.04, 18.6, 1, 2, 2, 0.26, 18.93, 0.97418, 3, -16.89, 18.47, 0.02582, 2, 2, 14.53, 19.34, 0.60102, 3, -2.64, 19.28, 0.39898, 2, 3, 26.24, 17.56, 0.99988, 4, -2.64, 17.75, 1.2E-4, 2, 3, 29.37, 8.23, 0.76959, 4, -0.07, 8.25, 0.23041, 2, 3, 31.76, 7.93, 0.45917, 4, 2.3, 7.81, 0.54083, 2, 3, 33.83, 7.68, 0.24662, 4, 4.35, 7.43, 0.75338, 2, 3, 36.56, 7.34, 0.12311, 4, 7.06, 6.93, 0.87689, 1, 4, 7.03, -0.4, 1, 2, 3, 37.46, -8.63, 0.14101, 4, 7, -9.06, 0.85899, 2, 2, 0.26, -0.52, 0.99917, 3, -16.36, -0.97, 8.3E-4, 1, 2, -10.55, -0.42, 1, 2, 2, 14.5, -0.65, 0.98763, 3, -2.12, -0.7, 0.01237, 2, 3, 29.87, -0.11, 0.53475, 4, -0.07, -0.11, 0.46525, 1, 4, 2.07, -0.2, 1, 2, 3, 34.22, -0.03, 9.4E-4, 4, 4.28, -0.29, 0.99906 ],
  101. "hull": 24,
  102. "edges": [ 32, 34, 34, 36, 4, 6, 6, 8, 42, 44, 44, 46, 30, 32, 30, 48, 8, 10, 48, 10, 28, 30, 20, 50, 50, 48, 28, 50, 10, 12, 50, 12, 52, 48, 32, 52, 52, 8, 54, 52, 36, 54, 54, 4, 36, 38, 56, 54, 38, 56, 4, 2, 56, 2, 38, 40, 40, 42, 44, 58, 58, 56, 40, 58, 2, 0, 0, 46, 58, 0, 18, 20, 18, 16, 12, 14, 16, 14, 20, 22, 22, 24, 26, 28, 24, 26 ],
  103. "width": 49,
  104. "height": 72
  105. }
  106. },
  107. "dang": {
  108. "dang": {
  109. "type": "mesh",
  110. "uvs": [ 0.3134, 0.22716, 0.54645, 0.21924, 1, 0.20382, 1, 0.74781, 0.57561, 1, 0.32061, 1, 0, 0.76056, 0, 0.23782 ],
  111. "triangles": [ 1, 2, 3, 6, 7, 0, 5, 0, 1, 4, 5, 1, 6, 0, 5, 3, 4, 1 ],
  112. "vertices": [ -1.8, -5.15, -1.71, 6.27, -1.54, 28.5, 13.69, 28.08, 20.18, 7.1, 19.84, -5.39, 12.71, -20.91, -1.92, -20.51 ],
  113. "hull": 8,
  114. "edges": [ 12, 14, 10, 12, 8, 10, 4, 6, 8, 6, 0, 14, 10, 0, 0, 2, 2, 4, 8, 2 ],
  115. "width": 49,
  116. "height": 28
  117. }
  118. },
  119. "fangdajing": {
  120. "fangdajing": { "x": 17.48, "y": 2.93, "rotation": -97.06, "width": 42, "height": 68 }
  121. },
  122. "gaoguang": {
  123. "gaoguang": { "x": 1.59, "y": 1.81, "rotation": -90.38, "width": 4, "height": 4 }
  124. },
  125. "meimao": {
  126. "meimao": { "x": 2.41, "y": -1.96, "rotation": -90.19, "width": 52, "height": 10 }
  127. },
  128. "tou": {
  129. "tou": { "x": 42.52, "y": -3.06, "rotation": -90.19, "width": 72, "height": 89 }
  130. },
  131. "toufa1": {
  132. "toufa1": {
  133. "type": "mesh",
  134. "uvs": [ 0.56878, 0.14499, 0.58172, 0.25875, 0.65544, 0.37332, 0.73278, 0.42634, 0.86433, 0.47165, 1, 0.50665, 1, 0.84332, 1, 1, 0.81989, 1, 0.6846, 0.91614, 0.54433, 0.81832, 0.43673, 0.72208, 0.31767, 0.62332, 0.27989, 0.49499, 0.23751, 0.34056, 0.18433, 0.24999, 0, 0.22666, 0, 0, 0.04656, 0, 0.41544, 1.0E-5, 0.33989, 0.13332, 0.39322, 0.22332, 0.44211, 0.37165, 0.49989, 0.50832, 0.73989, 0.65666, 0.87805, 0.7548, 0.63165, 0.58356 ],
  135. "triangles": [ 20, 18, 19, 20, 19, 0, 21, 20, 0, 16, 17, 18, 15, 16, 18, 20, 15, 18, 15, 20, 21, 21, 0, 1, 14, 15, 21, 22, 21, 1, 14, 21, 22, 22, 1, 2, 13, 14, 22, 23, 22, 2, 13, 22, 23, 26, 23, 2, 26, 2, 3, 12, 13, 23, 24, 3, 4, 26, 3, 24, 11, 12, 23, 11, 23, 26, 25, 4, 5, 24, 4, 25, 10, 11, 26, 10, 26, 24, 25, 5, 6, 9, 10, 24, 9, 24, 25, 8, 9, 25, 8, 25, 6, 8, 6, 7 ],
  136. "vertices": [ 3, 37, 11.29, 5.02, 0.0779, 38, 0.71, 7.39, 0.89982, 39, -6.35, 8.81, 0.02228, 3, 38, 6.18, 6.98, 0.69337, 39, -1.08, 7.33, 0.28261, 40, -4.59, 11.25, 0.02402, 4, 38, 12.03, 8.72, 0.09905, 39, 5, 7.89, 0.53426, 40, 0.92, 8.63, 0.36287, 41, -10.56, 7.61, 0.00382, 4, 38, 14.99, 11.06, 0.00847, 39, 8.36, 9.6, 0.2309, 40, 4.68, 8.38, 0.68769, 41, -6.79, 7.74, 0.07294, 3, 39, 12.06, 13.27, 0.03179, 40, 9.74, 9.65, 0.54976, 41, -1.89, 9.51, 0.41845, 3, 39, 15.35, 17.25, 8.8E-4, 40, 14.6, 11.4, 0.31863, 41, 2.77, 11.74, 0.68049, 1, 41, 14.1, 0.21, 1, 1, 41, 19.37, -5.15, 1, 2, 40, 24.37, -11.12, 1.2E-4, 41, 14.75, -9.7, 0.99988, 2, 40, 18.05, -11.03, 0.04925, 41, 8.45, -10.24, 0.95075, 2, 40, 11.18, -10.53, 0.39453, 41, 1.56, -10.43, 0.60547, 3, 39, 17.91, -5.36, 0.02695, 40, 5.26, -9.36, 0.81109, 41, -4.44, -9.85, 0.16196, 3, 39, 11.97, -7.71, 0.35109, 40, -1.05, -8.35, 0.64361, 41, -10.82, -9.47, 0.00529, 3, 38, 15.64, -5.56, 0.00943, 39, 5.72, -6.82, 0.8994, 40, -5.96, -4.39, 0.09117, 3, 37, 7.9, -9.77, 0.06531, 38, 8.07, -5.88, 0.60569, 39, -1.75, -5.65, 0.329, 3, 37, 3.68, -7.59, 0.50915, 38, 3.48, -7.08, 0.48021, 39, -6.5, -5.91, 0.01065, 2, 37, -2.19, -10.88, 0.88525, 38, 1.31, -13.45, 0.11475, 1, 37, -9.02, -2.41, 1, 1, 37, -7.71, -1.36, 1, 2, 37, 2.63, 6.98, 0.92935, 38, -7.04, 3.05, 0.07065, 1, 37, 4.53, 0.29, 1, 2, 38, 3.41, 0.55, 0.99866, 39, -5.05, 1.58, 0.00134, 3, 38, 10.72, 1.15, 0.0389, 39, 2.23, 0.72, 0.9565, 40, -5.12, 3.88, 0.0046, 2, 39, 9.1, 0.37, 0.02413, 40, 0.61, 0.07, 0.97587, 1, 41, 1.14, 0.04, 1, 2, 40, 18.63, -0.63, 9.0E-5, 41, 7.99, 0.17, 0.99991, 2, 39, 14.15, 3.54, 0.00117, 40, 6.57, 0.22, 0.99883 ],
  137. "hull": 20,
  138. "edges": [ 34, 36, 36, 40, 42, 44, 44, 46, 14, 12, 32, 34, 32, 30, 26, 24, 14, 16, 12, 10, 10, 8, 36, 38, 0, 38, 30, 40, 40, 38, 26, 44, 0, 2, 2, 4, 44, 2, 24, 46, 46, 4, 26, 28, 28, 30, 28, 42, 42, 0, 20, 48, 48, 8, 12, 50, 50, 48, 10, 50, 16, 18, 18, 20, 50, 18, 16, 12, 4, 6, 6, 8, 46, 52, 52, 48, 6, 52, 20, 22, 22, 24, 52, 22 ],
  139. "width": 36,
  140. "height": 48
  141. }
  142. },
  143. "toufa2": {
  144. "toufa2": {
  145. "type": "mesh",
  146. "uvs": [ 0.79126, 0.17788, 1, 0.48917, 1, 0.8047, 0.72999, 0.91694, 0.61969, 0.87035, 0.52165, 0.87247, 0.46037, 1, 0.30411, 1, 0.27654, 0.63106, 0.16624, 0.39176, 0, 0.24776, 0, 0, 0.38684, 0 ],
  147. "triangles": [ 10, 11, 12, 9, 10, 12, 0, 8, 9, 0, 9, 12, 4, 8, 0, 1, 4, 0, 2, 4, 1, 5, 8, 4, 3, 4, 2, 7, 8, 5, 6, 7, 5 ],
  148. "vertices": [ 76.79, -45.36, 55.59, -55.1, 34.13, -55.03, 26.54, -42.32, 29.73, -37.14, 29.6, -32.53, 20.93, -29.63, 20.96, -22.28, 46.05, -21.07, 62.34, -15.94, 72.16, -8.16, 89.01, -8.22, 88.95, -26.4 ],
  149. "hull": 13,
  150. "edges": [ 20, 22, 20, 18, 18, 16, 16, 14, 12, 14, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 22, 24, 0, 24 ],
  151. "width": 47,
  152. "height": 68
  153. }
  154. },
  155. "toufa3": {
  156. "toufa3": {
  157. "type": "mesh",
  158. "uvs": [ 1, 0.08976, 1, 0.41861, 0.87399, 0.46324, 0.84411, 0.59994, 0.80933, 0.72855, 0.69474, 0.89955, 0.55099, 1, 0.24001, 1, 0, 1, 0, 0.91744, 0, 0.76605, 0.1685, 0.73736, 0.245, 0.61305, 0.25598, 0.46888, 0.2705, 0.28624, 0.35218, 0.18727, 0.43483, 0.08712, 0.61333, 0, 1, 0, 0.69035, 0.32038, 0.5423, 0.56501, 0.37147, 0.81494, 0.8199, 0.2239, 0.61685, 0.44379, 0.47289, 0.66889, 0.17858, 0.86817 ],
  159. "triangles": [ 7, 21, 6, 6, 21, 5, 8, 25, 7, 7, 25, 21, 8, 9, 25, 9, 10, 25, 21, 24, 5, 5, 24, 4, 4, 24, 20, 10, 11, 25, 25, 11, 21, 11, 12, 21, 21, 12, 24, 4, 20, 3, 20, 24, 13, 24, 12, 13, 20, 23, 3, 3, 23, 2, 23, 20, 14, 20, 13, 14, 23, 19, 2, 19, 22, 2, 2, 22, 1, 14, 15, 23, 23, 15, 19, 22, 0, 1, 15, 16, 19, 16, 17, 19, 19, 17, 22, 0, 22, 18, 22, 17, 18 ],
  160. "vertices": [ 2, 42, -5.59, 1.36, 0.99878, 43, -13.03, 5.91, 0.00122, 2, 42, 0.93, 9.62, 0.72674, 43, -4.1, 11.47, 0.27326, 2, 42, 5.37, 7.93, 0.38449, 43, -0.49, 8.38, 0.61551, 3, 42, 8.93, 10.7, 0.03858, 43, 3.79, 9.78, 0.95388, 44, -6.63, 9.06, 0.00754, 4, 42, 12.46, 13.16, 1.7E-4, 43, 7.94, 10.89, 0.90161, 44, -2.65, 10.68, 0.09579, 45, -16.5, 0.41, 0.00243, 3, 43, 14.77, 10.28, 0.48503, 44, 4.2, 10.94, 0.43334, 45, -11.37, 4.96, 0.08163, 3, 43, 20.23, 7.59, 0.15827, 44, 9.96, 8.95, 0.48656, 45, -5.66, 7.08, 0.35518, 1, 45, 5.31, 4.86, 1, 1, 45, 13.78, 3.14, 1, 1, 45, 13.25, 0.55, 1, 1, 45, 12.29, -4.19, 1, 4, 42, 30.75, -0.9, 0.00158, 43, 20.38, -8.54, 3.7E-4, 44, 12.13, -7.03, 0.13902, 45, 6.16, -3.89, 0.85904, 4, 42, 26.12, -2.32, 0.03993, 43, 15.55, -8.31, 0.05091, 44, 7.31, -7.41, 0.68473, 45, 2.68, -7.24, 0.22443, 4, 42, 22.96, -5.7, 0.18288, 43, 11.42, -10.41, 0.23021, 44, 3.48, -10.01, 0.57026, 45, 1.37, -11.68, 0.01665, 3, 42, 18.93, -9.97, 0.44318, 43, 6.19, -13.06, 0.29875, 44, -1.38, -13.3, 0.25808, 3, 42, 14.66, -10.63, 0.6625, 43, 1.94, -12.24, 0.22022, 44, -5.7, -13.01, 0.11728, 3, 42, 10.34, -11.31, 0.8884, 43, -2.35, -11.41, 0.08106, 44, -10.06, -12.73, 0.03054, 2, 42, 3.56, -9.52, 1, 44, -16.28, -9.5, 0, 1, 42, -7.37, -0.9, 1, 2, 42, 7.73, 0.25, 0.97417, 43, -0.88, 0.35, 0.02583, 2, 42, 16.77, 3.1, 2.9E-4, 43, 8.59, -0.04, 0.99971, 2, 43, 18.63, -1.03, 4.4E-4, 44, 9.45, 0.2, 0.99956, 2, 42, 2.16, 0.71, 0.98527, 43, -5.96, 2.67, 0.01473, 1, 43, 3.87, 0.19, 1, 2, 43, 12.73, -0.4, 0.00126, 44, 3.52, 0.08, 0.99874, 1, 45, 6.64, 0.29, 1 ],
  161. "hull": 19,
  162. "edges": [ 2, 4, 8, 10, 10, 12, 20, 22, 22, 24, 34, 36, 32, 34, 2, 0, 0, 36, 16, 18, 18, 20, 32, 38, 38, 4, 0, 44, 44, 38, 2, 44, 44, 34, 28, 40, 40, 8, 4, 6, 6, 8, 38, 46, 46, 40, 6, 46, 40, 48, 48, 42, 10, 48, 24, 26, 26, 28, 48, 26, 12, 42, 42, 24, 18, 50, 50, 42, 22, 50, 12, 14, 14, 16, 50, 14, 28, 30, 30, 32, 46, 30 ],
  163. "width": 36,
  164. "height": 32
  165. }
  166. },
  167. "toufa4": {
  168. "toufa4": {
  169. "type": "mesh",
  170. "uvs": [ 1, 0.11093, 1, 0.37566, 0.8443, 0.44481, 0.68853, 0.51593, 0.62311, 0.66014, 0.57793, 0.81819, 0.45159, 0.94027, 0.28353, 1, 0.13462, 1, 0, 1, 0, 0.92883, 0, 0.75497, 0.07111, 0.73151, 0.19163, 0.69175, 0.21499, 0.57717, 0.26484, 0.37171, 0.38642, 0.17405, 0.51874, 0.0892, 0.6669, 0.03264, 0.81691, 1.0E-5, 1, 0, 0.60695, 0.31756, 0.48918, 0.45063, 0.3563, 0.7679, 0.73999, 0.23221, 0.88522, 0.16447, 0.42367, 0.61281, 0.21603, 0.82247, 0.10075, 0.87923 ],
  171. "triangles": [ 8, 27, 7, 7, 23, 6, 7, 27, 23, 8, 10, 28, 8, 28, 27, 8, 9, 10, 6, 23, 5, 10, 11, 28, 11, 12, 28, 28, 12, 27, 12, 13, 27, 27, 13, 23, 23, 26, 5, 5, 26, 4, 13, 14, 23, 23, 14, 26, 26, 22, 4, 4, 22, 3, 22, 26, 15, 26, 14, 15, 22, 21, 3, 3, 21, 2, 21, 22, 16, 21, 24, 2, 2, 25, 1, 2, 24, 25, 25, 0, 1, 22, 15, 16, 16, 17, 21, 21, 17, 24, 17, 18, 24, 24, 19, 25, 24, 18, 19, 25, 19, 0, 19, 20, 0 ],
  172. "vertices": [ 2, 46, -7.17, 1.35, 0.99958, 47, -18.47, 8.11, 4.2E-4, 2, 46, -2.89, 11.33, 0.92451, 47, -10.98, 15.97, 0.07549, 2, 46, 5.67, 10.74, 0.64714, 47, -3.17, 12.43, 0.35286, 4, 46, 14.26, 10.23, 0.06078, 47, 4.71, 8.95, 0.88098, 48, -3.33, 10.62, 0.04543, 49, -18.93, -4.48, 0.01281, 3, 47, 11.25, 10.89, 0.4403, 48, 3.49, 10.31, 0.40147, 49, -13.99, 0.22, 0.15824, 3, 47, 17.42, 13.96, 0.09132, 48, 10.32, 11.2, 0.37085, 49, -9.9, 5.77, 0.53783, 3, 47, 25.63, 13.05, 0.00217, 48, 17.79, 7.66, 0.0288, 49, -2.18, 8.7, 0.96903, 1, 49, 6.9, 8.57, 1, 1, 49, 14.32, 6.37, 1, 1, 49, 21.03, 4.38, 1, 1, 49, 20.21, 1.58, 1, 1, 49, 18.18, -5.25, 1, 2, 48, 19.27, -13.85, 5.0E-4, 49, 14.36, -5.12, 0.9995, 2, 48, 14.94, -9.03, 0.20409, 49, 7.89, -4.91, 0.79591, 2, 48, 10.21, -10.11, 0.73742, 49, 5.39, -9.07, 0.26258, 3, 47, 16.58, -10.53, 0.00386, 48, 1.54, -11.67, 0.9933, 49, 0.51, -16.41, 0.00284, 3, 46, 23.18, -8.84, 0.08188, 47, 6.41, -12.03, 0.34124, 48, -8.57, -9.78, 0.57687, 3, 46, 15.48, -9.33, 0.49997, 47, -0.97, -9.8, 0.34593, 48, -14.82, -5.26, 0.1541, 3, 46, 7.49, -8.42, 0.98439, 47, -8.15, -6.17, 0.00907, 48, -20.41, 0.52, 0.00654, 1, 46, -0.21, -6.58, 1, 1, 46, -8.96, -2.83, 1, 1, 47, 2.17, 0.14, 1, 1, 47, 10.37, -0.14, 1, 1, 49, 0.57, 0.52, 1, 2, 46, 7.22, 0.6, 0.97831, 47, -5.25, 2.38, 0.02169, 2, 46, -0.82, 1.02, 0.99653, 47, -12.64, 5.58, 0.00347, 3, 47, 17.42, 2.33, 0.00128, 48, 6.53, 0.2, 0.99652, 49, -4.6, -4.58, 0.0022, 1, 49, 8.2, 0.59, 1, 1, 49, 14.6, 1.12, 1 ],
  173. "hull": 21,
  174. "edges": [ 38, 40, 34, 32, 32, 30, 30, 28, 28, 26, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 2, 0, 0, 40, 42, 44, 18, 20, 20, 22, 48, 42, 4, 48, 34, 36, 36, 38, 48, 36, 0, 50, 50, 48, 2, 50, 50, 38, 6, 42, 42, 34, 8, 44, 44, 32, 44, 52, 52, 46, 10, 52, 52, 30, 12, 46, 46, 28, 54, 46, 26, 54, 54, 14, 14, 16, 16, 18, 20, 56, 56, 54, 16, 56, 22, 24, 24, 26, 56, 24 ],
  175. "width": 52,
  176. "height": 41
  177. }
  178. },
  179. "toufa5": {
  180. "toufa5": {
  181. "type": "mesh",
  182. "uvs": [ 1, 0.22843, 0.73216, 0.59614, 0.30916, 0.75043, 0.31141, 1, 0, 1, 0, 0.61414, 0.16291, 0.43157, 0.20791, 0.195, 0.45991, 0, 1, 0 ],
  183. "triangles": [ 8, 9, 0, 1, 8, 0, 7, 8, 1, 6, 7, 1, 2, 6, 1, 5, 6, 2, 4, 5, 2, 4, 2, 3 ],
  184. "vertices": [ 79.18, -17.18, 58.65, 0.03, 50.1, 27.13, 36.12, 27.03, 36.19, 46.96, 57.8, 46.89, 67.99, 36.43, 81.23, 33.5, 92.09, 17.34, 91.98, -17.23 ],
  185. "hull": 10,
  186. "edges": [ 6, 8, 6, 4, 4, 2, 0, 18, 2, 0, 16, 18, 16, 14, 14, 12, 8, 10, 12, 10 ],
  187. "width": 64,
  188. "height": 56
  189. }
  190. },
  191. "toufahou": {
  192. "toufahou": {
  193. "type": "mesh",
  194. "uvs": [ 1, 0.61219, 0.82749, 1, 0.61742, 1, 0.61742, 0.88345, 0.78853, 0.53517, 0.81902, 0.08307, 0.25996, 0.07303, 0.19389, 0.46819, 0.28199, 1, 0.21592, 1, 0.08547, 0.58875, 0, 0.5921, 0, 0.18354, 0.13968, 0, 1, 0 ],
  195. "triangles": [ 5, 6, 13, 14, 5, 13, 6, 12, 13, 7, 12, 6, 7, 11, 12, 10, 11, 7, 5, 14, 0, 4, 5, 0, 8, 10, 7, 8, 9, 10, 3, 1, 2, 4, 1, 3, 4, 0, 1 ],
  196. "vertices": [ 25.56, -44, 8.94, -29.29, 8.99, -11.43, 14.01, -11.45, 28.93, -26.04, 48.37, -28.7, 48.96, 18.82, 31.98, 24.49, 9.09, 17.08, 9.11, 22.7, 26.83, 33.73, 26.71, 40.99, 44.28, 40.93, 52.13, 29.03, 51.89, -44.09 ],
  197. "hull": 15,
  198. "edges": [ 22, 20, 20, 18, 16, 18, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 22, 24, 26, 28, 24, 26, 2, 4, 0, 28, 2, 0 ],
  199. "width": 85,
  200. "height": 43
  201. }
  202. },
  203. "waitaohou": {
  204. "waitaohou": {
  205. "type": "mesh",
  206. "uvs": [ 1, 0.73947, 1, 0.87457, 1, 1, 0.51609, 1, 0, 1, 0, 0.86991, 0, 0.73947, 0, 0, 0.51143, 0, 1, 0, 0.51612, 0.87232, 0.51609, 0.73947 ],
  207. "triangles": [ 11, 8, 9, 0, 11, 9, 6, 7, 8, 6, 8, 11, 5, 6, 11, 10, 11, 0, 5, 11, 10, 10, 0, 1, 4, 5, 10, 3, 4, 10, 3, 10, 1, 3, 1, 2 ],
  208. "vertices": [ 28.65, 18.75, 34.19, 18.65, 39.33, 18.56, 38.98, -1.28, 38.61, -22.44, 33.27, -22.34, 27.93, -22.25, -2.39, -21.71, -2.02, -0.74, -1.66, 19.28, 33.75, -1.19, 28.3, -1.09 ],
  209. "hull": 10,
  210. "edges": [ 12, 14, 0, 18, 8, 10, 10, 12, 0, 2, 2, 4, 4, 6, 6, 8, 2, 20, 20, 10, 6, 20, 0, 22, 22, 12, 20, 22, 14, 16, 16, 18, 22, 16 ],
  211. "width": 41,
  212. "height": 41
  213. }
  214. },
  215. "waitaoyou": {
  216. "waitaoyou": {
  217. "type": "mesh",
  218. "uvs": [ 0.67959, 0.05361, 0.85599, 0.07355, 1, 0.13956, 1, 0.19628, 0.88172, 0.34049, 0.79105, 0.45103, 0.83769, 0.53368, 0.78854, 0.59272, 0.83368, 0.67967, 0.87228, 0.75401, 0.91627, 0.83307, 0.95807, 0.92089, 1, 1, 0.66939, 1, 0, 1, 0, 0.94455, 1.0E-5, 0.86373, 0, 0.77394, 0, 0.7012, 0, 0.59949, 0, 0.5388, 0.0186, 0.44468, 0.04283, 0.3221, 0.07186, 0.17523, 0.10649, 0, 0.20551, 0, 0.45012, 0.32721, 0.39267, 0.53015, 0.4403, 0.68868, 0.534, 0.84297, 0.41006, 0.44591, 0.40886, 0.59857, 0.61445, 0.93165, 0.48857, 0.76566, 0.57388, 0.17965 ],
  219. "triangles": [ 13, 11, 12, 14, 32, 13, 13, 32, 11, 14, 15, 32, 15, 29, 32, 15, 16, 29, 32, 10, 11, 32, 29, 10, 16, 33, 29, 29, 9, 10, 16, 17, 33, 29, 33, 9, 17, 28, 33, 33, 8, 9, 33, 28, 8, 28, 7, 8, 28, 31, 7, 17, 18, 28, 18, 31, 28, 18, 19, 31, 19, 27, 31, 19, 20, 27, 31, 27, 7, 7, 27, 6, 20, 21, 27, 6, 27, 5, 27, 30, 5, 27, 21, 30, 30, 26, 5, 5, 26, 4, 21, 22, 30, 30, 22, 26, 26, 34, 4, 4, 34, 3, 22, 23, 26, 26, 23, 34, 3, 34, 1, 34, 0, 1, 1, 2, 3, 34, 23, 25, 23, 24, 25, 34, 25, 0 ],
  220. "vertices": [ 1, 18, -8.43, -0.9, 1, 1, 18, -8.35, 5.24, 1, 2, 18, -3.65, 11.75, 0.99419, 19, -20.37, 15.65, 0.00581, 2, 18, 1.64, 13.45, 0.98757, 19, -14.86, 16.38, 0.01243, 4, 18, 16.29, 14.07, 0.55935, 19, -0.34, 14.36, 0.4392, 20, -15.69, 18.39, 0.00138, 21, -28.05, 22.72, 6.0E-5, 4, 18, 27.51, 14.55, 0.04269, 19, 10.79, 12.82, 0.79618, 20, -5.22, 14.31, 0.12855, 21, -18.32, 17.09, 0.03258, 3, 19, 18.62, 15.41, 0.4571, 20, 2.99, 15.02, 0.37355, 21, -10.1, 16.53, 0.16936, 4, 19, 24.57, 14.56, 0.1886, 20, 8.58, 12.82, 0.39206, 21, -4.91, 13.49, 0.41907, 22, -17.71, 14.7, 2.7E-4, 4, 19, 32.82, 17.15, 0.01543, 20, 17.21, 13.44, 0.06733, 21, 3.71, 12.78, 0.85705, 22, -9.16, 13.42, 0.0602, 4, 19, 39.88, 19.37, 2.0E-5, 20, 24.59, 13.97, 4.0E-5, 21, 11.08, 12.17, 0.64302, 22, -1.84, 12.32, 0.35692, 2, 21, 18.94, 11.62, 0.15294, 22, 5.97, 11.25, 0.84706, 2, 21, 27.62, 10.77, 0.00107, 22, 14.57, 9.83, 0.99893, 1, 22, 22.36, 8.7, 1, 1, 22, 18.91, -1.65, 1, 3, 20, 45.65, -17.12, 0.03725, 21, 27.13, -21.77, 0.01481, 22, 11.92, -22.61, 0.94795, 3, 20, 40.24, -16.57, 0.05772, 21, 21.87, -20.4, 0.04142, 22, 6.77, -20.89, 0.90085, 3, 20, 32.37, -15.76, 0.18123, 21, 14.21, -18.4, 0.17363, 22, -0.75, -18.39, 0.64514, 3, 20, 23.61, -14.87, 0.51603, 21, 5.69, -16.17, 0.25833, 22, -9.09, -15.61, 0.22564, 3, 20, 16.52, -14.15, 0.86714, 21, -1.2, -14.37, 0.09272, 22, -15.86, -13.35, 0.04014, 2, 19, 28.64, -11.15, 0.02266, 20, 6.6, -13.13, 0.97734, 2, 19, 22.74, -11.93, 0.20818, 20, 0.69, -12.53, 0.79182, 3, 18, 34.74, -9.91, 0.00347, 19, 13.52, -12.53, 0.79955, 20, -8.43, -10.98, 0.19698, 3, 18, 23.06, -12.83, 0.34793, 19, 1.5, -13.32, 0.65182, 20, -20.3, -8.97, 2.4E-4, 2, 18, 9.07, -16.33, 0.96719, 19, -12.89, -14.25, 0.03281, 1, 18, -7.63, -20.51, 1, 1, 18, -8.63, -17.4, 1, 2, 18, 19.42, 0.12, 0.39298, 19, 0.24, 0.07, 0.60702, 2, 20, 1.16, 0.45, 0.99841, 21, -14.15, 2.41, 0.00159, 4, 19, 35.4, 4.4, 0, 20, 16.77, 0.43, 6.2E-4, 21, 1.28, 0, 0.99937, 22, -12.43, 0.82, 0, 2, 20, 32.13, 1.98, 0.00316, 22, 2.9, -1.03, 0.99684, 3, 19, 11.94, 0.29, 0.99877, 20, -7, 1.86, 0.00109, 21, -21.99, 5.05, 1.4E-4, 3, 19, 26.78, 2.21, 0.00163, 20, 7.88, 0.3, 0.99252, 21, -7.52, 1.23, 0.00586, 2, 20, 41.04, 3.73, 2.0E-4, 22, 11.98, -1.26, 0.9998, 2, 20, 24.44, 1.25, 0.00483, 21, 8.98, -0.37, 0.99517, 1, 18, 4.4, -0.43, 1 ],
  221. "hull": 26,
  222. "edges": [ 10, 12, 12, 14, 48, 50, 0, 50, 24, 26, 26, 28, 40, 54, 54, 12, 40, 42, 52, 60, 60, 54, 42, 60, 60, 10, 54, 62, 62, 56, 14, 62, 38, 40, 62, 38, 36, 38, 36, 56, 14, 16, 56, 16, 32, 58, 58, 20, 28, 30, 30, 32, 26, 64, 64, 58, 30, 64, 20, 22, 22, 24, 64, 22, 32, 34, 34, 36, 56, 66, 66, 58, 34, 66, 16, 18, 18, 20, 66, 18, 42, 44, 44, 52, 6, 8, 8, 10, 52, 8, 44, 46, 46, 48, 0, 68, 68, 52, 46, 68, 68, 6, 4, 6, 0, 2, 4, 2 ],
  223. "width": 33,
  224. "height": 98
  225. }
  226. },
  227. "waitaozuo": {
  228. "waitaozuo": {
  229. "type": "mesh",
  230. "uvs": [ 0.61955, 0.07895, 1, 0.03948, 0.99999, 0.23784, 0.99999, 0.3449, 0.99999, 0.45982, 1, 0.52555, 1, 0.58384, 0.99999, 0.69041, 1, 0.77097, 1, 0.84517, 1, 0.94269, 1, 1, 0.23849, 1, 0, 1, 0.04033, 0.93164, 0.09443, 0.83992, 0.13427, 0.77239, 0.18295, 0.68986, 0.24772, 0.58007, 0.25461, 0.5255, 0.26188, 0.46787, 0.29404, 0.35046, 0.3235, 0.24288, 0.36105, 0.10578, 0.64594, 0.34561, 0.64594, 0.52214, 0.53748, 0.68701, 0.4184, 0.84091, 0.64594, 0.46194, 0.60548, 0.58083, 0.31955, 0.92832, 0.46989, 0.77171, 0.63547, 0.23979 ],
  231. "triangles": [ 2, 0, 1, 32, 0, 2, 23, 0, 32, 22, 23, 32, 2, 24, 32, 3, 24, 2, 24, 21, 22, 24, 22, 32, 4, 24, 3, 28, 21, 24, 28, 24, 4, 20, 21, 28, 25, 20, 28, 19, 20, 25, 25, 28, 4, 5, 25, 4, 29, 19, 25, 18, 19, 29, 25, 5, 6, 29, 25, 6, 26, 18, 29, 17, 18, 26, 7, 29, 6, 26, 29, 7, 31, 17, 26, 8, 31, 26, 8, 26, 7, 16, 17, 31, 27, 16, 31, 15, 16, 27, 31, 8, 9, 27, 31, 9, 30, 15, 27, 14, 15, 30, 27, 9, 10, 30, 27, 10, 12, 14, 30, 13, 14, 12, 30, 10, 11, 12, 30, 11 ],
  232. "vertices": [ 1, 23, -7.8, 0.31, 1, 1, 23, -11.6, 9.5, 1, 2, 23, 8.23, 9.18, 0.99613, 24, -10.34, 9.01, 0.00387, 2, 23, 18.94, 9.01, 0.46707, 24, 0.37, 9.01, 0.53293, 3, 23, 30.43, 8.82, 5.1E-4, 24, 11.86, 9.01, 0.92525, 25, -6.48, 8.24, 0.07424, 2, 24, 18.43, 9.01, 0.44365, 25, 0.03, 9.09, 0.55635, 3, 24, 24.26, 9.01, 0.06793, 25, 5.81, 9.85, 0.9235, 26, -13.21, 9.25, 0.00857, 3, 25, 16.38, 11.24, 0.59569, 26, -2.72, 11.12, 0.4043, 27, -19.05, 7.74, 1.0E-5, 3, 25, 24.37, 12.29, 0.1066, 26, 5.21, 12.54, 0.83243, 27, -11.52, 10.6, 0.06096, 3, 25, 31.73, 13.25, 0.00228, 26, 12.51, 13.85, 0.61727, 27, -4.58, 13.23, 0.38045, 2, 26, 22.11, 15.57, 0.1344, 27, 4.53, 16.69, 0.8656, 2, 26, 27.75, 16.58, 0.0545, 27, 9.89, 18.73, 0.9455, 1, 27, 16.38, 1.64, 1, 1, 27, 18.41, -3.71, 1, 1, 27, 11.68, -5.23, 1, 2, 26, 15.82, -7.64, 0.29396, 27, 2.64, -7.27, 0.70604, 3, 25, 27.21, -8.3, 0.0058, 26, 9.01, -7.89, 0.88403, 27, -4.01, -8.78, 0.11017, 2, 25, 18.88, -8.21, 0.44101, 26, 0.68, -8.19, 0.55899, 3, 24, 23.88, -9.04, 0.04581, 25, 7.79, -8.1, 0.95367, 26, -10.4, -8.59, 5.3E-4, 2, 24, 18.43, -8.88, 0.36299, 25, 2.36, -8.64, 0.63701, 2, 24, 12.66, -8.7, 0.84967, 25, -3.38, -9.22, 0.15033, 2, 23, 19.22, -7.94, 0.38267, 24, 0.92, -7.93, 0.61733, 2, 23, 8.47, -7.06, 0.99906, 24, -9.84, -7.22, 9.4E-4, 1, 23, -5.22, -5.94, 1, 2, 23, 18.87, 0.51, 0.26905, 24, 0.44, 0.51, 0.73095, 2, 24, 18.09, 0.51, 0.11028, 25, 0.8, 0.62, 0.88972, 1, 25, 17.49, 0.19, 1, 2, 26, 14.55, 0.03, 0.51208, 27, -0.03, 0.03, 0.48792, 1, 24, 12.07, 0.51, 1, 1, 25, 6.75, 0.42, 1, 1, 27, 8.99, 0.91, 1, 1, 26, 7.52, 0.03, 1, 1, 23, 8.29, 0.43, 1 ],
  233. "hull": 24,
  234. "edges": [ 2, 0, 0, 46, 22, 24, 24, 26, 36, 38, 38, 40, 38, 50, 50, 10, 48, 56, 56, 50, 40, 56, 8, 10, 56, 8, 50, 58, 58, 52, 36, 58, 10, 12, 58, 12, 34, 36, 34, 52, 12, 14, 52, 14, 30, 54, 54, 18, 26, 28, 28, 30, 24, 60, 60, 54, 28, 60, 18, 20, 20, 22, 60, 20, 30, 32, 32, 34, 52, 62, 62, 54, 32, 62, 14, 16, 16, 18, 62, 16, 40, 42, 42, 48, 6, 8, 48, 6, 42, 44, 44, 46, 0, 64, 64, 48, 44, 64, 2, 4, 4, 6, 64, 4 ],
  235. "width": 24,
  236. "height": 100
  237. }
  238. },
  239. "weijing": {
  240. "weijing": {
  241. "type": "mesh",
  242. "uvs": [ 1, 0.20307, 0.9016, 0.36644, 0.68626, 0.46728, 0.75738, 0.58424, 0.84323, 0.72544, 0.89359, 0.80827, 0.93276, 0.87269, 0.4596, 1, 0.34041, 0.96542, 0.05541, 0.88272, 0.07927, 0.76428, 0.10794, 0.62198, 0.11677, 0.51367, 0, 0.36845, 0.0856, 0, 0.2811, 0.1123, 0.38487, 0.11945, 0.5446, 0.13046, 0.88176, 0, 0.3495, 0.79248, 0.3581, 0.62888, 0.36212, 0.51798, 0.3438, 0.90101, 0.36003, 0.39442 ],
  243. "triangles": [ 22, 10, 19, 9, 10, 22, 22, 19, 4, 22, 4, 5, 8, 9, 22, 7, 22, 5, 8, 22, 7, 7, 5, 6, 11, 12, 20, 19, 11, 20, 10, 11, 19, 19, 20, 3, 21, 23, 2, 12, 23, 21, 20, 12, 21, 20, 21, 2, 20, 2, 3, 19, 3, 4, 2, 23, 1, 1, 18, 0, 17, 18, 1, 13, 14, 15, 23, 15, 16, 23, 16, 17, 23, 17, 1, 13, 15, 23, 12, 13, 23 ],
  244. "vertices": [ 1, 29, -3.59, 27.01, 1, 2, 29, 5.98, 22.72, 0.61439, 30, -1.7, 22.57, 0.38561, 4, 29, 11.78, 13.58, 0.19852, 30, 4.45, 13.66, 0.78654, 31, -9.55, 13.43, 0.01428, 32, -20.28, 12.96, 6.6E-4, 4, 29, 18.73, 16.46, 0.01448, 30, 11.28, 16.8, 0.77441, 31, -2.79, 16.72, 0.17244, 32, -13.59, 16.39, 0.03867, 3, 30, 19.53, 20.6, 0.47537, 31, 5.38, 20.68, 0.33347, 32, -5.52, 20.53, 0.19115, 3, 30, 24.37, 22.82, 0.37509, 31, 10.17, 23.01, 0.34787, 32, -0.78, 22.96, 0.27704, 3, 30, 28.13, 24.55, 0.3519, 31, 13.9, 24.82, 0.34789, 32, 2.91, 24.85, 0.30021, 3, 30, 36.09, 4.85, 0.032, 31, 22.26, 5.29, 0.05587, 32, 11.7, 5.51, 0.91213, 3, 30, 34.16, -0.2, 0.00297, 31, 20.44, 0.2, 0.00378, 32, 9.99, 0.38, 0.99325, 2, 31, 16.09, -11.97, 0.16959, 32, 5.9, -11.88, 0.83041, 2, 31, 9.06, -11.28, 0.52322, 32, -1.14, -11.34, 0.47678, 4, 29, 20.51, -10.85, 7.6E-4, 30, 14.12, -10.42, 0.16323, 31, 0.62, -10.44, 0.78037, 32, -9.6, -10.68, 0.05564, 4, 29, 14.12, -10.38, 0.05877, 30, 7.73, -10.19, 0.63896, 31, -5.78, -10.34, 0.30151, 32, -16, -10.73, 7.6E-4, 3, 29, 5.48, -15.14, 0.43572, 30, -0.73, -15.28, 0.53415, 31, -14.12, -15.62, 0.03013, 1, 29, -16.2, -11.19, 1, 2, 29, -9.44, -3.09, 0.99966, 30, -16.1, -3.82, 3.4E-4, 2, 29, -8.95, 1.26, 0.99931, 30, -15.78, 0.55, 6.9E-4, 1, 29, -8.19, 7.96, 1, 1, 29, -15.65, 22.25, 1, 3, 30, 23.95, -0.05, 5.4E-4, 31, 10.23, 0.14, 0.63181, 32, -0.22, 0.1, 0.36765, 1, 31, 0.57, 0.08, 1, 1, 30, 7.75, 0.12, 1, 3, 30, 30.36, -0.14, 5.5E-4, 31, 16.64, 0.18, 0.00128, 32, 6.19, 0.28, 0.99818, 1, 29, 7.26, -0.05, 1 ],
  245. "hull": 19,
  246. "edges": [ 14, 12, 4, 2, 2, 0, 24, 26, 26, 28, 28, 30, 34, 36, 36, 0, 30, 32, 32, 34, 14, 16, 16, 18, 18, 20, 20, 38, 38, 8, 20, 22, 22, 24, 40, 38, 22, 40, 4, 6, 6, 8, 40, 6, 42, 40, 24, 42, 42, 4, 16, 44, 44, 38, 18, 44, 8, 10, 10, 12, 44, 10, 32, 46, 46, 42, 26, 46, 46, 2 ],
  247. "width": 42,
  248. "height": 59
  249. }
  250. },
  251. "yanbai": {
  252. "yanbai": { "x": 7.26, "y": 0.08, "rotation": -90.38, "width": 22, "height": 16 }
  253. },
  254. "yanqiu": {
  255. "yanqiu": { "x": -1.46, "y": -2.8, "rotation": -90.38, "width": 13, "height": 13 }
  256. },
  257. "yiling": {
  258. "yiling": {
  259. "type": "mesh",
  260. "uvs": [ 0.27013, 0.03728, 0.45784, 0.2916, 0.67163, 0.10557, 1, 0.19977, 1, 0.25157, 0.55691, 0.88267, 0.31706, 0.8756, 0, 0.29396 ],
  261. "triangles": [ 2, 3, 4, 7, 0, 1, 6, 7, 1, 4, 5, 1, 4, 1, 2, 6, 1, 5 ],
  262. "vertices": [ 63.98, 9.64, 48.53, -1.32, 60.4, -12.95, 55.1, -31.5, 51.89, -31.6, 12.06, -7.93, 12.1, 5.51, 47.64, 24.3 ],
  263. "hull": 8,
  264. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 0 ],
  265. "width": 56,
  266. "height": 62
  267. }
  268. },
  269. "youjiao": {
  270. "youjiao": {
  271. "type": "mesh",
  272. "uvs": [ 1, 0.51343, 1, 0.54243, 1, 0.56643, 1, 0.80443, 1, 0.83543, 1, 0.85943, 1, 1, 0.57796, 1, 0.57715, 0.96152, 0.57535, 0.87528, 0.66131, 0.84082, 0.65216, 0.81841, 0.64262, 0.79503, 0.56352, 0.60115, 0.55314, 0.57571, 0.54396, 0.55322, 0.37219, 0.13221, 0.69169, 0.06493, 1, 0, 0.87228, 0.85159, 0.86705, 0.8288, 0.85996, 0.79793, 0.804, 0.55417, 0.80984, 0.57958, 0.79784, 0.52733 ],
  273. "triangles": [ 17, 18, 0, 24, 17, 0, 22, 24, 0, 15, 16, 17, 15, 17, 24, 1, 22, 0, 23, 22, 1, 14, 15, 24, 14, 24, 22, 2, 23, 1, 13, 14, 22, 13, 22, 23, 12, 13, 23, 21, 23, 2, 12, 23, 21, 21, 2, 3, 11, 12, 21, 20, 21, 3, 11, 21, 20, 20, 3, 4, 10, 11, 20, 19, 20, 4, 10, 20, 19, 19, 4, 5, 8, 9, 10, 8, 10, 19, 7, 8, 19, 19, 5, 6, 7, 19, 6 ],
  274. "vertices": [ 2, 11, 18.3, 9.01, 0.56611, 12, -0.53, 9.01, 0.43389, 2, 11, 19.79, 8.75, 0.4323, 12, 0.95, 8.74, 0.5677, 2, 11, 21.02, 8.54, 0.32327, 12, 2.18, 8.51, 0.67673, 1, 12, 14.35, 6.28, 1, 1, 12, 15.93, 5.98, 1, 1, 12, 17.16, 5.76, 1, 2, 12, 24.35, 4.43, 0.7024, 13, -4.88, 4.47, 0.2976, 1, 13, 13.2, 2.88, 1, 2, 12, 19.09, -13.09, 7.0E-5, 13, 13.06, 0.88, 0.99993, 2, 12, 14.67, -12.35, 0.03748, 13, 12.75, -3.59, 0.96252, 2, 12, 13.58, -8.39, 0.35799, 13, 8.91, -5.05, 0.64201, 2, 12, 12.36, -8.57, 0.55706, 13, 9.2, -6.25, 0.44294, 3, 11, 30.13, -8.62, 5.5E-4, 12, 11.09, -8.75, 0.6887, 13, 9.5, -7.5, 0.31075, 3, 11, 19.62, -10.26, 0.42789, 12, 0.56, -10.27, 0.56739, 13, 12.01, -17.84, 0.00472, 3, 11, 18.24, -10.48, 0.54978, 12, -0.82, -10.47, 0.44858, 13, 12.34, -19.19, 0.00164, 3, 11, 17.02, -10.67, 0.65209, 12, -2.05, -10.65, 0.3475, 13, 12.63, -20.39, 4.1E-4, 1, 11, -5.81, -14.23, 1, 1, 11, -6.93, -0.1, 1, 1, 11, -8.01, 13.54, 1, 1, 12, 15.77, 0.43, 1, 1, 12, 14.56, 0.42, 1, 1, 12, 12.93, 0.41, 1, 2, 11, 18.96, 0.34, 0.47555, 12, 0.03, 0.34, 0.52445, 1, 12, 1.37, 0.35, 1, 1, 11, 17.54, 0.32, 1 ],
  275. "hull": 19,
  276. "edges": [ 12, 14, 18, 20, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 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 ],
  277. "width": 43,
  278. "height": 52
  279. }
  280. },
  281. "youshou": {
  282. "youshou": {
  283. "type": "mesh",
  284. "uvs": [ 0.44138, 0.20812, 0.46895, 0.2296, 0.50169, 0.2551, 0.81516, 0.49927, 0.84862, 0.52533, 0.88013, 0.54988, 1, 0.64324, 1, 1, 0.62827, 1, 0.45407, 0.80362, 0.42691, 0.77301, 0.40624, 0.74971, 0.15714, 0.46889, 0.13135, 0.43982, 0.10166, 0.40635, 0, 0.29175, 0, 0.05002, 0, 0, 0.17418, 0, 0.64284, 0.63831, 0.67475, 0.67063, 0.61865, 0.61618, 0.27535, 0.302, 0.30844, 0.33229, 0.3379, 0.35925 ],
  285. "triangles": [ 16, 17, 18, 22, 15, 16, 18, 22, 16, 0, 22, 18, 23, 22, 0, 23, 0, 1, 24, 23, 1, 24, 1, 2, 14, 15, 22, 13, 14, 22, 13, 22, 23, 12, 13, 23, 12, 23, 24, 21, 2, 3, 24, 2, 21, 19, 21, 3, 19, 3, 4, 20, 19, 4, 20, 4, 5, 11, 24, 21, 12, 24, 11, 10, 11, 21, 10, 21, 19, 9, 10, 19, 9, 19, 20, 8, 9, 20, 20, 5, 6, 20, 6, 7, 8, 20, 7 ],
  286. "vertices": [ 2, 8, 17.03, 8.65, 0.67958, 9, -0.3, 8.65, 0.32042, 2, 8, 18.8, 8.75, 0.49759, 9, 1.46, 8.8, 0.50241, 2, 8, 20.89, 8.87, 0.28688, 9, 3.56, 8.98, 0.71312, 2, 9, 23.6, 10.7, 0.43421, 10, 0.21, 10.7, 0.56579, 2, 9, 25.74, 10.88, 0.26536, 10, 2.35, 10.88, 0.73464, 2, 9, 27.76, 11.06, 0.14553, 10, 4.36, 11.05, 0.85447, 2, 9, 35.42, 11.71, 0.00122, 10, 12.03, 11.69, 0.99878, 1, 10, 28.79, -1.62, 1, 1, 10, 18.61, -14.43, 1, 3, 8, 44.75, -13.9, 1.1E-4, 9, 28.06, -13.09, 0.13937, 10, 4.62, -13.1, 0.86052, 3, 8, 42.57, -13.63, 0.00118, 9, 25.88, -12.89, 0.23609, 10, 2.44, -12.89, 0.76273, 3, 8, 40.92, -13.43, 0.00351, 9, 24.22, -12.73, 0.32766, 10, 0.78, -12.73, 0.66883, 3, 8, 20.96, -10.99, 0.68581, 9, 4.2, -10.87, 0.31369, 10, -19.23, -10.83, 5.0E-4, 2, 8, 18.9, -10.73, 0.82881, 9, 2.13, -10.68, 0.17119, 2, 8, 16.52, -10.44, 0.9422, 9, -0.25, -10.45, 0.0578, 1, 8, 8.38, -9.44, 1, 1, 8, -2.73, -0.12, 1, 1, 8, -5.02, 1.81, 1, 1, 8, -0.09, 7.68, 1, 2, 9, 25.44, -0.42, 0.0055, 10, 2.02, -0.43, 0.9945, 2, 9, 27.83, -0.53, 5.8E-4, 10, 4.41, -0.53, 0.99942, 3, 8, 40.79, -1.12, 0, 9, 23.74, -0.43, 0.17819, 10, 0.32, -0.43, 0.82181, 1, 8, 16.64, -0.56, 1, 2, 8, 18.97, -0.62, 0.81947, 9, 1.91, -0.56, 0.18053, 2, 8, 21.04, -0.67, 0.06117, 9, 3.98, -0.55, 0.93883 ],
  287. "hull": 19,
  288. "edges": [ 34, 36, 14, 12, 14, 16, 30, 32, 32, 34, 20, 38, 38, 8, 16, 18, 18, 20, 14, 40, 40, 38, 18, 40, 8, 10, 10, 12, 40, 10, 20, 22, 42, 38, 22, 42, 8, 6, 42, 6, 28, 30, 32, 44, 28, 44, 0, 36, 44, 0, 26, 28, 46, 44, 26, 46, 0, 2, 46, 2, 22, 24, 24, 26, 42, 48, 48, 46, 24, 48, 2, 4, 4, 6, 48, 4 ],
  289. "width": 44,
  290. "height": 60
  291. }
  292. },
  293. "youshou 1": {
  294. "youshou 1": {
  295. "type": "mesh",
  296. "uvs": [ 1, 1, 0.68931, 1, 0.26431, 0.68703, 0.20431, 0, 1, 0 ],
  297. "triangles": [ 2, 3, 4, 1, 2, 4, 1, 4, 0 ],
  298. "vertices": [ 29.32, -7.7, 19.05, -11.29, 2.63, -9.4, -4.56, 4.82, 21.72, 14.01 ],
  299. "hull": 5,
  300. "edges": [ 0, 8, 6, 8, 6, 4, 0, 2, 4, 2 ],
  301. "width": 35,
  302. "height": 23
  303. }
  304. },
  305. "youshou2": {
  306. "youshou2": {
  307. "type": "mesh",
  308. "uvs": [ 0.43697, 0.04689, 0.4619, 0.08086, 0.49576, 0.127, 0.79423, 0.53373, 0.7044, 0.72316, 0.61923, 0.90275, 0.25595, 0.56127, 0.225, 0.53218, 0.18687, 0.49634, 0, 0.32069, 0, 0, 0.40256, 0, 0.33118, 0.34, 0.30159, 0.30962, 0.36589, 0.37563 ],
  309. "triangles": [ 8, 9, 13, 2, 12, 1, 9, 10, 13, 13, 0, 1, 13, 11, 0, 13, 10, 11, 5, 6, 4, 6, 14, 4, 4, 14, 3, 6, 7, 14, 14, 2, 3, 14, 7, 12, 7, 8, 12, 8, 13, 12, 14, 12, 2, 12, 13, 1 ],
  310. "vertices": [ 2, 51, 24.43, -12.67, 0.06274, 52, 0.14, -12.67, 0.93726, 2, 51, 22.25, -12.29, 0.15392, 52, -2.01, -12.11, 0.84608, 2, 51, 19.29, -11.78, 0.34264, 52, -4.92, -11.34, 0.65736, 1, 51, -6.86, -7.3, 1, 1, 51, -7.25, 3.08, 1, 1, 51, -7.61, 12.92, 1, 2, 51, 20.14, 13.25, 0.9509, 52, -1.89, 13.52, 0.0491, 2, 51, 22.51, 13.28, 0.8733, 52, 0.47, 13.34, 0.1267, 2, 51, 25.42, 13.31, 0.71951, 52, 3.37, 13.12, 0.28049, 2, 51, 39.7, 13.48, 0.08207, 52, 17.61, 12.05, 0.91793, 1, 52, 25.02, -0.7, 1, 2, 51, 27.45, -13.18, 0.01147, 52, 3.09, -13.45, 0.98853, 1, 51, 22.13, 2.2, 1, 2, 51, 24.45, 2.13, 0.62066, 52, 1.44, 2.06, 0.37934, 1, 51, 19.39, 2.28, 1 ],
  311. "hull": 12,
  312. "edges": [ 18, 20, 20, 22, 6, 8, 8, 10, 14, 24, 24, 2, 14, 16, 16, 18, 20, 26, 26, 24, 16, 26, 2, 0, 0, 22, 26, 0, 10, 12, 12, 14, 8, 28, 28, 24, 12, 28, 2, 4, 4, 6, 28, 4 ],
  313. "width": 63,
  314. "height": 46
  315. }
  316. },
  317. "zuojiao": {
  318. "zuojiao": {
  319. "type": "mesh",
  320. "uvs": [ 1, 0.20149, 0.93235, 0.50353, 0.92791, 0.52336, 0.92328, 0.54404, 0.85596, 0.8446, 0.85061, 0.86851, 0.84918, 0.90155, 0.84306, 1, 0, 1, 0, 0.9238, 0, 0.88803, 0.21516, 0.83684, 0.20948, 0.80749, 0.20379, 0.78976, 0.12649, 0.54863, 0.12021, 0.52905, 0.11325, 0.50734, 0, 0.1541, 0, 0, 0.58826, 0, 1, 0, 0.52611, 0.87426, 0.53314, 0.84825, 0.53463, 0.82536, 0.55428, 0.52287, 0.55281, 0.54553, 0.55534, 0.5066 ],
  321. "triangles": [ 17, 18, 19, 19, 20, 0, 0, 26, 19, 26, 17, 19, 1, 26, 0, 16, 17, 26, 26, 15, 16, 2, 26, 1, 24, 26, 2, 24, 15, 26, 3, 24, 2, 24, 14, 15, 25, 24, 3, 25, 14, 24, 13, 14, 25, 23, 12, 13, 25, 23, 13, 22, 11, 12, 4, 25, 3, 23, 25, 4, 23, 22, 12, 5, 23, 4, 22, 23, 5, 21, 11, 22, 6, 22, 5, 21, 22, 6, 9, 10, 11, 9, 11, 21, 8, 9, 21, 7, 21, 6, 8, 21, 7 ],
  322. "vertices": [ 1, 14, 5.33, 8.35, 1, 2, 14, 19.86, 7.53, 0.8166, 15, -1.25, 7.53, 0.1834, 2, 14, 20.82, 7.47, 0.73299, 15, -0.3, 7.47, 0.26701, 2, 14, 21.81, 7.42, 0.63334, 15, 0.7, 7.41, 0.36666, 2, 15, 15.16, 6.57, 0.96154, 16, -6.96, -1.18, 0.03846, 2, 15, 16.31, 6.5, 0.90089, 16, -6.66, -0.07, 0.09911, 2, 15, 17.9, 6.52, 0.77137, 16, -6.35, 1.49, 0.22863, 2, 15, 22.63, 6.57, 0.46729, 16, -5.42, 6.12, 0.53271, 1, 16, 11.19, 3.21, 1, 1, 16, 10.56, -0.4, 1, 2, 15, 17.84, -10.47, 0.0016, 16, 10.26, -2.09, 0.9984, 2, 15, 15.23, -6.26, 0.30443, 16, 5.6, -3.76, 0.69557, 2, 15, 13.83, -6.42, 0.56875, 16, 5.47, -5.17, 0.43125, 2, 15, 12.98, -6.56, 0.67896, 16, 5.43, -6.03, 0.32104, 2, 14, 22.61, -8.5, 0.35673, 15, 1.47, -8.5, 0.64327, 2, 14, 21.68, -8.66, 0.45114, 15, 0.53, -8.66, 0.54886, 2, 14, 20.64, -8.84, 0.55625, 15, -0.5, -8.84, 0.44375, 1, 14, 3.78, -11.72, 1, 1, 14, -3.61, -11.98, 1, 1, 14, -4.04, -0.23, 1, 1, 14, -4.34, 8, 1, 1, 15, 16.81, 0.02, 1, 1, 15, 15.56, 0.12, 1, 1, 15, 14.46, 0.11, 1, 2, 14, 21.07, 0, 0.55243, 15, -0.06, 0, 0.44757, 1, 15, 1.03, 0.01, 1, 1, 14, 20.28, 0, 1 ],
  323. "hull": 21,
  324. "edges": [ 36, 38, 38, 40, 16, 18, 42, 18, 34, 36, 18, 20, 22, 20, 0, 40, 14, 16, 22, 42, 10, 12, 12, 14, 42, 12, 22, 24, 44, 42, 24, 44, 44, 10, 24, 26, 46, 44, 26, 46, 8, 10, 46, 8, 30, 48, 48, 4, 26, 28, 28, 30, 46, 50, 50, 48, 28, 50, 4, 6, 6, 8, 50, 6, 30, 32, 32, 34, 38, 52, 52, 48, 32, 52, 0, 2, 2, 4, 52, 2 ],
  325. "width": 20,
  326. "height": 48
  327. }
  328. },
  329. "zuoshou": {
  330. "zuoshou": {
  331. "type": "mesh",
  332. "uvs": [ 1, 0.30317, 0.91401, 0.40961, 0.88847, 0.44123, 0.86191, 0.47409, 0.58736, 0.81393, 0.56022, 0.84753, 0.53564, 0.87796, 0.43704, 1, 0.12443, 1, 0, 1, 0, 0.65493, 0.10002, 0.57573, 0.13625, 0.54704, 0.16648, 0.5231, 0.52947, 0.23565, 0.56473, 0.20773, 0.59897, 0.18062, 0.82706, 0, 1, 0, 0.41024, 0.66464, 0.7482, 0.28377, 0.72564, 0.30919, 0.7007, 0.3373, 0.38615, 0.69291, 0.35987, 0.72374 ],
  333. "triangles": [ 6, 7, 24, 7, 8, 24, 24, 8, 10, 24, 10, 11, 10, 8, 9, 6, 24, 5, 24, 23, 5, 5, 23, 4, 4, 23, 19, 4, 22, 3, 4, 19, 22, 11, 12, 24, 24, 12, 23, 12, 13, 23, 23, 13, 19, 19, 14, 22, 19, 13, 14, 22, 21, 3, 3, 21, 2, 21, 20, 2, 2, 20, 1, 1, 20, 0, 14, 15, 22, 22, 15, 21, 15, 16, 21, 21, 16, 20, 20, 18, 0, 20, 17, 18, 20, 16, 17 ],
  334. "vertices": [ 1, 5, 9.35, 8.39, 1, 2, 5, 16.2, 9.04, 0.97534, 7, -23.75, 10.28, 0.02466, 2, 5, 18.23, 9.23, 0.94197, 7, -21.71, 10.34, 0.05803, 2, 5, 20.35, 9.43, 0.88664, 7, -19.58, 10.41, 0.11336, 2, 5, 42.22, 11.5, 0.02569, 7, 2.38, 11.11, 0.97431, 2, 5, 44.38, 11.71, 0.00899, 7, 4.55, 11.18, 0.99101, 2, 5, 46.34, 11.89, 0.0023, 7, 6.51, 11.25, 0.9977, 1, 7, 14.4, 11.5, 1, 1, 7, 22.33, 0.26, 1, 1, 7, 25.48, -4.22, 1, 1, 7, 10.26, -14.95, 1, 2, 5, 45.62, -13.27, 0.00772, 7, 4.22, -13.82, 0.99228, 2, 5, 43.41, -13, 0.02135, 7, 2.04, -13.41, 0.97865, 2, 5, 41.57, -12.77, 0.04169, 7, 0.22, -13.07, 0.95831, 2, 5, 19.47, -10.04, 0.90066, 7, -21.67, -8.97, 0.09934, 2, 5, 17.32, -9.77, 0.9504, 7, -23.8, -8.57, 0.0496, 2, 5, 15.24, -9.51, 0.9795, 7, -25.86, -8.18, 0.0205, 1, 5, 1.35, -7.8, 1, 1, 5, -3.42, -1.87, 1, 1, 7, 0.28, 0.1, 1, 1, 5, 15.47, -0.91, 1, 2, 5, 17.16, -0.82, 0.99938, 7, -23.4, 0.38, 6.2E-4, 2, 5, 19.03, -0.73, 0.97966, 7, -21.53, 0.35, 0.02034, 2, 5, 42.67, 0.51, 2.0E-5, 7, 2.14, 0.11, 0.99998, 1, 7, 4.17, 0.13, 1 ],
  335. "hull": 19,
  336. "edges": [ 34, 36, 18, 20, 0, 36, 14, 16, 16, 18, 32, 34, 36, 40, 32, 40, 0, 2, 40, 2, 30, 32, 42, 40, 30, 42, 2, 4, 42, 4, 28, 30, 38, 44, 44, 42, 28, 44, 4, 6, 44, 6, 26, 28, 26, 38, 6, 8, 38, 8, 24, 26, 46, 38, 24, 46, 8, 10, 46, 10, 20, 22, 22, 24, 16, 48, 48, 46, 22, 48, 10, 12, 12, 14, 48, 12 ],
  337. "width": 44,
  338. "height": 54
  339. }
  340. },
  341. "zuoyan": {
  342. "zuoyan": { "x": 6.04, "y": -0.09, "rotation": -88.68, "width": 18, "height": 17 }
  343. }
  344. }
  345. },
  346. "animations": {
  347. "stand1": {
  348. "slots": {
  349. "biyan": {
  350. "attachment": [
  351. { "time": 0.1, "name": "biyan" },
  352. { "time": 0.2667, "name": null },
  353. { "time": 1.5, "name": "biyan" },
  354. { "time": 1.6333, "name": null },
  355. { "time": 2.8, "name": "biyan" },
  356. { "time": 2.9333, "name": null },
  357. { "time": 3.6, "name": "biyan" },
  358. { "time": 3.7333, "name": null }
  359. ]
  360. },
  361. "fangdajing": {
  362. "attachment": [
  363. { "time": 0, "name": null },
  364. { "time": 1.5333, "name": "fangdajing" }
  365. ]
  366. },
  367. "gaoguang": {
  368. "attachment": [
  369. { "time": 3.6, "name": null },
  370. { "time": 3.7333, "name": "gaoguang" }
  371. ],
  372. "attachment": [
  373. { "time": 0.1, "name": null },
  374. { "time": 0.2667, "name": "gaoguang" },
  375. { "time": 1.5, "name": null },
  376. { "time": 1.6333, "name": "gaoguang" },
  377. { "time": 2.8, "name": null },
  378. { "time": 2.9333, "name": "gaoguang" },
  379. { "time": 3.6, "name": null },
  380. { "time": 3.7333, "name": "gaoguang" }
  381. ]
  382. },
  383. "yanbai": {
  384. "attachment": [
  385. { "time": 0.1, "name": null },
  386. { "time": 0.2667, "name": "yanbai" },
  387. { "time": 1.5, "name": null },
  388. { "time": 1.6333, "name": "yanbai" },
  389. { "time": 2.8, "name": null },
  390. { "time": 2.9333, "name": "yanbai" },
  391. { "time": 3.6, "name": null },
  392. { "time": 3.7333, "name": "yanbai" }
  393. ]
  394. },
  395. "yanqiu": {
  396. "attachment": [
  397. { "time": 3.6, "name": null },
  398. { "time": 3.7333, "name": "yanqiu" }
  399. ],
  400. "attachment": [
  401. { "time": 0.1, "name": null },
  402. { "time": 0.2667, "name": "yanqiu" },
  403. { "time": 1.5, "name": null },
  404. { "time": 1.6333, "name": "yanqiu" },
  405. { "time": 2.8, "name": null },
  406. { "time": 2.9333, "name": "yanqiu" },
  407. { "time": 3.6, "name": null },
  408. { "time": 3.7333, "name": "yanqiu" }
  409. ]
  410. },
  411. "youshou": {
  412. "attachment": [
  413. { "time": 0.3, "name": null }
  414. ]
  415. },
  416. "youshou2": {
  417. "attachment": [
  418. { "time": 0, "name": null },
  419. { "time": 0.3, "name": "youshou2" }
  420. ]
  421. },
  422. "youshou 1": {
  423. "attachment": [
  424. { "time": 0, "name": null },
  425. { "time": 0.3, "name": "youshou 1" }
  426. ]
  427. },
  428. "zuoyan": {
  429. "attachment": [
  430. { "time": 0.1, "name": null },
  431. { "time": 0.2667, "name": "zuoyan" },
  432. { "time": 1.5, "name": null },
  433. { "time": 1.6333, "name": "zuoyan" },
  434. { "time": 2.8, "name": null },
  435. { "time": 2.9333, "name": "zuoyan" },
  436. { "time": 3.6, "name": null },
  437. { "time": 3.7333, "name": "zuoyan" }
  438. ]
  439. }
  440. },
  441. "bones": {
  442. "bone50": {
  443. "rotate": [
  444. { "time": 0, "angle": 0, "curve": "stepped" },
  445. { "time": 0.3, "angle": -65.52 },
  446. { "time": 0.6, "angle": -72.83, "curve": "stepped" },
  447. { "time": 0.8667, "angle": -72.83, "curve": "stepped" },
  448. { "time": 1.1667, "angle": -72.83, "curve": "stepped" },
  449. { "time": 1.5, "angle": -72.83 },
  450. { "time": 1.9, "angle": 277.04 },
  451. { "time": 2.1667, "angle": 267.11 }
  452. ],
  453. "translate": [
  454. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  455. { "time": 0.3, "x": -21.53, "y": 273.6, "curve": "stepped" },
  456. { "time": 0.6, "x": -21.53, "y": 273.6, "curve": "stepped" },
  457. { "time": 0.8667, "x": -21.53, "y": 273.6, "curve": "stepped" },
  458. { "time": 1.1667, "x": -21.53, "y": 273.6, "curve": "stepped" },
  459. { "time": 1.5, "x": -21.53, "y": 273.6, "curve": "stepped" },
  460. { "time": 1.9, "x": -21.53, "y": 273.6, "curve": "stepped" },
  461. { "time": 2.1667, "x": -21.53, "y": 273.6 }
  462. ],
  463. "scale": [
  464. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  465. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  466. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  467. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  468. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  469. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  470. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  471. { "time": 2.1667, "x": 1, "y": 1 }
  472. ]
  473. },
  474. "bone51": {
  475. "rotate": [
  476. { "time": 0, "angle": 0, "curve": "stepped" },
  477. { "time": 0.3, "angle": -233.05 },
  478. { "time": 0.6, "angle": -242.52 },
  479. { "time": 0.8667, "angle": -238.53 },
  480. { "time": 1.1667, "angle": -242.52 },
  481. { "time": 1.5, "angle": -238.53 },
  482. { "time": 1.5333, "angle": -265.48 },
  483. { "time": 1.7667, "angle": -283.35 },
  484. { "time": 2.0333, "angle": -277.71 }
  485. ],
  486. "translate": [
  487. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  488. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  489. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  490. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  491. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  492. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  493. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  494. { "time": 2.0333, "x": 0, "y": 0 }
  495. ],
  496. "scale": [
  497. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  498. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  499. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  500. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  501. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  502. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  503. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  504. { "time": 2.0333, "x": 1, "y": 1 }
  505. ]
  506. },
  507. "bone52": {
  508. "rotate": [
  509. { "time": 0, "angle": 0, "curve": "stepped" },
  510. { "time": 0.3, "angle": 0 },
  511. { "time": 0.6, "angle": -19.42 },
  512. { "time": 0.8667, "angle": -6.96 },
  513. { "time": 1.1667, "angle": -19.42 },
  514. { "time": 1.5, "angle": -6.96, "curve": "stepped" },
  515. {
  516. "time": 1.7667,
  517. "angle": -6.96,
  518. "curve": [ 0.25, 0, 0.75, 1 ]
  519. },
  520. { "time": 2.0333, "angle": -55.57 }
  521. ],
  522. "translate": [
  523. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  524. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  525. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  526. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  527. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  528. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  529. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  530. { "time": 2.0333, "x": 0, "y": 0 }
  531. ],
  532. "scale": [
  533. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  534. { "time": 0.3, "x": 1, "y": 1 },
  535. { "time": 0.6, "x": 0.8, "y": 1 },
  536. { "time": 0.8667, "x": 1, "y": 1 },
  537. { "time": 1.1667, "x": 0.8, "y": 1, "curve": "stepped" },
  538. { "time": 1.5, "x": 0.8, "y": 1 },
  539. { "time": 1.7667, "x": 1, "y": 1 }
  540. ]
  541. },
  542. "bone53": {
  543. "rotate": [
  544. { "time": 0, "angle": 0, "curve": "stepped" },
  545. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  546. { "time": 0.6, "angle": 0, "curve": "stepped" },
  547. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  548. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  549. { "time": 1.5, "angle": 0, "curve": "stepped" },
  550. {
  551. "time": 1.7667,
  552. "angle": 0,
  553. "curve": [ 0.25, 0, 0.75, 1 ]
  554. },
  555. { "time": 2.0333, "angle": 40.26 }
  556. ],
  557. "translate": [
  558. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  559. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  560. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  561. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  562. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  563. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  564. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  565. { "time": 2.0333, "x": 0, "y": 0 }
  566. ],
  567. "scale": [
  568. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  569. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  570. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  571. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  572. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  573. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  574. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  575. { "time": 2.0333, "x": 1, "y": 1 }
  576. ]
  577. },
  578. "root": {
  579. "scale": [
  580. { "time": 0, "x": 0.65, "y": 0.65 }
  581. ]
  582. },
  583. "bone": {
  584. "rotate": [
  585. { "time": 0, "angle": 0, "curve": "stepped" },
  586. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  587. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  588. { "time": 0.6, "angle": 0, "curve": "stepped" },
  589. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  590. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  591. { "time": 2, "angle": 0 }
  592. ],
  593. "translate": [
  594. { "time": 0, "x": 0, "y": 0 },
  595. { "time": 0.1667, "x": -0.2, "y": -1.06 },
  596. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  597. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  598. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  599. { "time": 1.6667, "x": 0, "y": 0 },
  600. { "time": 2, "x": 5.47, "y": 0 }
  601. ],
  602. "scale": [
  603. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  604. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  605. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  606. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  607. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  608. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  609. { "time": 2, "x": 1, "y": 1 }
  610. ]
  611. },
  612. "bone2": {
  613. "rotate": [
  614. { "time": 0, "angle": 0, "curve": "stepped" },
  615. {
  616. "time": 1.6667,
  617. "angle": 0,
  618. "curve": [ 0.244, 0, 0.694, 0.77 ]
  619. },
  620. { "time": 2.3333, "angle": -6.66 }
  621. ],
  622. "translate": [
  623. { "time": 0, "x": 0, "y": 0 }
  624. ],
  625. "scale": [
  626. { "time": 0, "x": 1, "y": 1 }
  627. ]
  628. },
  629. "bone3": {
  630. "rotate": [
  631. { "time": 0, "angle": 0, "curve": "stepped" },
  632. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  633. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  634. { "time": 0.6, "angle": 0, "curve": "stepped" },
  635. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  636. {
  637. "time": 1.6667,
  638. "angle": 0,
  639. "curve": [ 0.25, 0, 0.75, 1 ]
  640. },
  641. { "time": 2.1667, "angle": 3.9 }
  642. ],
  643. "translate": [
  644. { "time": 0, "x": 0, "y": 0 },
  645. { "time": 0.1667, "x": -0.92, "y": 0.03 },
  646. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  647. { "time": 1.5333, "x": 0, "y": 0 },
  648. { "time": 1.6667, "x": -1.16, "y": 0.03 },
  649. { "time": 2.1667, "x": 0, "y": 0 }
  650. ],
  651. "scale": [
  652. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  653. { "time": 1.6667, "x": 1, "y": 1 }
  654. ]
  655. },
  656. "bone4": {
  657. "rotate": [
  658. { "time": 0, "angle": 0, "curve": "stepped" },
  659. { "time": 0.3, "angle": 0, "curve": "stepped" },
  660. {
  661. "time": 1.7667,
  662. "angle": 0,
  663. "curve": [ 0.25, 0, 0.75, 1 ]
  664. },
  665. { "time": 2.2, "angle": -2.58 }
  666. ],
  667. "translate": [
  668. { "time": 0, "x": 0, "y": 0 },
  669. { "time": 0.1667, "x": 0.34, "y": 0.02 },
  670. { "time": 0.3, "x": 0, "y": 0 }
  671. ],
  672. "scale": [
  673. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  674. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  675. { "time": 0.3, "x": 1, "y": 1 }
  676. ]
  677. },
  678. "bone5": {
  679. "rotate": [
  680. { "time": 0, "angle": 0 },
  681. { "time": 0.1667, "angle": 24.56 },
  682. { "time": 0.3333, "angle": 30.7, "curve": "stepped" },
  683. { "time": 1.6667, "angle": 30.7 },
  684. { "time": 1.9333, "angle": -2.95 },
  685. { "time": 2.1, "angle": 3.45 },
  686. { "time": 2.2333, "angle": 9.85 }
  687. ],
  688. "translate": [
  689. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  690. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  691. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  692. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  693. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  694. { "time": 2.2333, "x": 0, "y": 0 }
  695. ],
  696. "scale": [
  697. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  698. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  699. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  700. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  701. { "time": 1.9333, "x": 1, "y": 1 }
  702. ]
  703. },
  704. "bone6": {
  705. "rotate": [
  706. { "time": 0, "angle": 0 },
  707. { "time": 0.1667, "angle": -11.92 },
  708. { "time": 0.3333, "angle": 3.16, "curve": "stepped" },
  709. { "time": 1.6667, "angle": 3.16 },
  710. { "time": 1.9333, "angle": 44.97 },
  711. { "time": 2.1, "angle": 47.35 },
  712. { "time": 2.2333, "angle": 43.78 }
  713. ],
  714. "translate": [
  715. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  716. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  717. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  718. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  719. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  720. { "time": 2.2333, "x": 0, "y": 0 }
  721. ],
  722. "scale": [
  723. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  724. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  725. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  726. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  727. { "time": 1.9333, "x": 1, "y": 1 }
  728. ]
  729. },
  730. "bone7": {
  731. "rotate": [
  732. { "time": 0, "angle": 0 },
  733. { "time": 0.1667, "angle": -13.45 },
  734. { "time": 0.3333, "angle": -6.99, "curve": "stepped" },
  735. { "time": 1.6667, "angle": -6.99 },
  736. { "time": 1.9333, "angle": 17.94 }
  737. ],
  738. "translate": [
  739. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  740. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  741. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  742. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  743. { "time": 1.9333, "x": 0, "y": 0 }
  744. ],
  745. "scale": [
  746. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  747. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  748. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  749. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  750. { "time": 1.9333, "x": 1, "y": 1 }
  751. ]
  752. },
  753. "bone8": {
  754. "rotate": [
  755. { "time": 0, "angle": 0 },
  756. { "time": 0.1667, "angle": -10.75 },
  757. { "time": 0.3, "angle": -33.15, "curve": "stepped" },
  758. { "time": 0.3333, "angle": -33.15 }
  759. ],
  760. "translate": [
  761. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  762. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  763. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  764. { "time": 0.3333, "x": 53.59, "y": -197.84 }
  765. ],
  766. "scale": [
  767. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  768. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  769. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  770. { "time": 0.3333, "x": 1, "y": 1 }
  771. ]
  772. },
  773. "bone9": {
  774. "rotate": [
  775. { "time": 0, "angle": 0 },
  776. { "time": 0.1667, "angle": -16.38 },
  777. { "time": 0.3, "angle": -48.85 }
  778. ],
  779. "translate": [
  780. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  781. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  782. { "time": 0.3, "x": 0, "y": 0 }
  783. ],
  784. "scale": [
  785. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  786. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  787. { "time": 0.3, "x": 1, "y": 1 }
  788. ]
  789. },
  790. "bone10": {
  791. "rotate": [
  792. { "time": 0, "angle": 0, "curve": "stepped" },
  793. { "time": 0.1667, "angle": 0 },
  794. { "time": 0.3, "angle": -20.28 }
  795. ],
  796. "translate": [
  797. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  798. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  799. { "time": 0.3, "x": 0, "y": 0 }
  800. ],
  801. "scale": [
  802. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  803. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  804. { "time": 0.3, "x": 1, "y": 1 }
  805. ]
  806. },
  807. "bone11": {
  808. "rotate": [
  809. { "time": 0, "angle": 0 },
  810. { "time": 0.1667, "angle": -1.59 },
  811. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  812. { "time": 1.6667, "angle": 0 },
  813. { "time": 2, "angle": -8.51 }
  814. ],
  815. "translate": [
  816. { "time": 0, "x": 0, "y": 0 },
  817. { "time": 0.1667, "x": 0.03, "y": 1.4 },
  818. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  819. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  820. { "time": 2, "x": 0, "y": 0 }
  821. ],
  822. "scale": [
  823. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  824. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  825. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  826. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  827. { "time": 2, "x": 1, "y": 1 }
  828. ]
  829. },
  830. "bone12": {
  831. "rotate": [
  832. { "time": 0, "angle": 0 },
  833. { "time": 0.1667, "angle": 3.96 },
  834. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  835. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  836. { "time": 2, "angle": 0 }
  837. ],
  838. "translate": [
  839. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  840. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  841. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  842. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  843. { "time": 2, "x": 0, "y": 0 }
  844. ],
  845. "scale": [
  846. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  847. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  848. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  849. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  850. { "time": 2, "x": 1, "y": 1 }
  851. ]
  852. },
  853. "bone13": {
  854. "rotate": [
  855. { "time": 0, "angle": 0, "curve": "stepped" },
  856. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  857. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  858. { "time": 1.6667, "angle": 0 },
  859. { "time": 2, "angle": 9.7 }
  860. ],
  861. "translate": [
  862. { "time": 0, "x": 0, "y": 0 }
  863. ],
  864. "scale": [
  865. { "time": 0, "x": 1, "y": 1 }
  866. ]
  867. },
  868. "bone14": {
  869. "rotate": [
  870. { "time": 0, "angle": 0 },
  871. { "time": 0.1667, "angle": -3.3 },
  872. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  873. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  874. { "time": 2, "angle": 0 }
  875. ],
  876. "translate": [
  877. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  878. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  879. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  880. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  881. { "time": 2, "x": 0, "y": 0 }
  882. ],
  883. "scale": [
  884. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  885. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  886. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  887. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  888. { "time": 2, "x": 1, "y": 1 }
  889. ]
  890. },
  891. "bone15": {
  892. "rotate": [
  893. { "time": 0, "angle": 0 },
  894. { "time": 0.1667, "angle": 8.75 },
  895. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  896. { "time": 1.6667, "angle": 0 },
  897. { "time": 2, "angle": 37.4 }
  898. ],
  899. "translate": [
  900. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  901. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  902. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  903. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  904. { "time": 2, "x": 0, "y": 0 }
  905. ],
  906. "scale": [
  907. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  908. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  909. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  910. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  911. { "time": 2, "x": 1, "y": 1 }
  912. ]
  913. },
  914. "bone16": {
  915. "rotate": [
  916. { "time": 0, "angle": 0 },
  917. { "time": 0.1667, "angle": -12.62 },
  918. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  919. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  920. { "time": 2, "angle": 0 }
  921. ]
  922. },
  923. "bone19": {
  924. "rotate": [
  925. { "time": 0, "angle": 5.97 },
  926. { "time": 0.1667, "angle": 0 }
  927. ]
  928. },
  929. "bone20": {
  930. "rotate": [
  931. {
  932. "time": 0,
  933. "angle": 0.09,
  934. "curve": [ 0.25, 0, 0.75, 1 ]
  935. },
  936. { "time": 0.4333, "angle": 0 },
  937. { "time": 0.9667, "angle": 20.48 },
  938. {
  939. "time": 1.8333,
  940. "angle": 0,
  941. "curve": [ 0.25, 0, 0.75, 1 ]
  942. },
  943. { "time": 2.7667, "angle": 20.48 },
  944. { "time": 3.9333, "angle": 0 }
  945. ],
  946. "translate": [
  947. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  948. { "time": 0.4333, "x": 0, "y": 0 },
  949. { "time": 0.9667, "x": -0.42, "y": 1.07 },
  950. {
  951. "time": 1.8333,
  952. "x": 0,
  953. "y": 0,
  954. "curve": [ 0.25, 0, 0.75, 1 ]
  955. },
  956. { "time": 2.7667, "x": -0.42, "y": 1.07 },
  957. { "time": 3.9333, "x": 0, "y": 0 }
  958. ],
  959. "scale": [
  960. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  961. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  962. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  963. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  964. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  965. { "time": 3.9333, "x": 1, "y": 1 }
  966. ]
  967. },
  968. "bone21": {
  969. "rotate": [
  970. {
  971. "time": 0,
  972. "angle": 7.05,
  973. "curve": [ 0.25, 0, 0.75, 1 ]
  974. },
  975. { "time": 0.4333, "angle": 0 },
  976. { "time": 0.9667, "angle": -10.92 },
  977. { "time": 1.3, "angle": -1.65 },
  978. {
  979. "time": 1.8333,
  980. "angle": 0,
  981. "curve": [ 0.25, 0, 0.75, 1 ]
  982. },
  983. { "time": 2.7667, "angle": -10.92 },
  984. { "time": 3.2333, "angle": -1.65 },
  985. { "time": 3.9333, "angle": 0 }
  986. ],
  987. "translate": [
  988. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  989. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  990. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  991. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  992. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  993. { "time": 3.9333, "x": 0, "y": 0 }
  994. ],
  995. "scale": [
  996. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  997. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  998. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  999. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1000. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1001. { "time": 3.9333, "x": 1, "y": 1 }
  1002. ]
  1003. },
  1004. "bone22": {
  1005. "rotate": [
  1006. {
  1007. "time": 0,
  1008. "angle": 7.05,
  1009. "curve": [ 0.25, 0, 0.75, 1 ]
  1010. },
  1011. { "time": 0.4333, "angle": 0 },
  1012. { "time": 0.9667, "angle": -0.88 },
  1013. { "time": 1.3, "angle": 14.84 },
  1014. {
  1015. "time": 1.8333,
  1016. "angle": 0,
  1017. "curve": [ 0.25, 0, 0.75, 1 ]
  1018. },
  1019. { "time": 2.7667, "angle": -0.88 },
  1020. { "time": 3.2333, "angle": 14.84 },
  1021. { "time": 3.9333, "angle": 0 }
  1022. ],
  1023. "translate": [
  1024. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1025. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1026. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  1027. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1028. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1029. { "time": 3.9333, "x": 0, "y": 0 }
  1030. ],
  1031. "scale": [
  1032. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1033. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1034. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  1035. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1036. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1037. { "time": 3.9333, "x": 1, "y": 1 }
  1038. ]
  1039. },
  1040. "bone24": {
  1041. "rotate": [
  1042. { "time": 0, "angle": -4.5 },
  1043. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1044. { "time": 0.3333, "angle": 0 }
  1045. ]
  1046. },
  1047. "bone25": {
  1048. "rotate": [
  1049. {
  1050. "time": 0,
  1051. "angle": -10.54,
  1052. "curve": [ 0.25, 0, 0.75, 1 ]
  1053. },
  1054. {
  1055. "time": 0.4667,
  1056. "angle": 3.15,
  1057. "curve": [ 0.243, 0, 0.691, 0.76 ]
  1058. },
  1059. {
  1060. "time": 1.5,
  1061. "angle": 3.64,
  1062. "curve": [ 0.37, 0.63, 0.709, 1 ]
  1063. },
  1064. { "time": 2.5, "angle": -13.76 },
  1065. { "time": 3.9333, "angle": 3.15 }
  1066. ],
  1067. "translate": [
  1068. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1069. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1070. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1071. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1072. { "time": 3.9333, "x": 0, "y": 0 }
  1073. ],
  1074. "scale": [
  1075. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1076. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1077. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1078. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1079. { "time": 3.9333, "x": 1, "y": 1 }
  1080. ]
  1081. },
  1082. "bone26": {
  1083. "rotate": [
  1084. {
  1085. "time": 0,
  1086. "angle": -14.39,
  1087. "curve": [ 0.25, 0, 0.75, 1 ]
  1088. },
  1089. {
  1090. "time": 0.4667,
  1091. "angle": 0.72,
  1092. "curve": [ 0.25, 0, 0.75, 1 ]
  1093. },
  1094. { "time": 1.5, "angle": 3.57 },
  1095. { "time": 2.1, "angle": 8.59 },
  1096. { "time": 2.5, "angle": -8.81 },
  1097. { "time": 3.9333, "angle": 0.72 }
  1098. ],
  1099. "translate": [
  1100. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1101. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1102. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1103. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1104. { "time": 3.9333, "x": 0, "y": 0 }
  1105. ],
  1106. "scale": [
  1107. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1108. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1109. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1110. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1111. { "time": 3.9333, "x": 1, "y": 1 }
  1112. ]
  1113. },
  1114. "bone27": {
  1115. "rotate": [
  1116. {
  1117. "time": 0,
  1118. "angle": -8.83,
  1119. "curve": [ 0.25, 0, 0.75, 1 ]
  1120. },
  1121. {
  1122. "time": 0.4667,
  1123. "angle": 7.25,
  1124. "curve": [ 0.25, 0, 0.75, 1 ]
  1125. },
  1126. { "time": 1.5, "angle": 16.5 },
  1127. { "time": 2.1, "angle": 22.79 },
  1128. { "time": 2.5, "angle": 0 },
  1129. { "time": 3.9333, "angle": 7.25 }
  1130. ],
  1131. "translate": [
  1132. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1133. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1134. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1135. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1136. { "time": 3.9333, "x": 0, "y": 0 }
  1137. ],
  1138. "scale": [
  1139. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1140. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1141. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1142. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1143. { "time": 3.9333, "x": 1, "y": 1 }
  1144. ]
  1145. },
  1146. "bone30": {
  1147. "rotate": [
  1148. {
  1149. "time": 0,
  1150. "angle": -8.36,
  1151. "curve": [ 0.25, 0, 0.75, 1 ]
  1152. },
  1153. { "time": 0.4, "angle": 0 },
  1154. { "time": 1.6333, "angle": -14.95 }
  1155. ],
  1156. "translate": [
  1157. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1158. { "time": 0.4, "x": 0, "y": 0 }
  1159. ],
  1160. "scale": [
  1161. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1162. { "time": 0.4, "x": 1, "y": 1 }
  1163. ]
  1164. },
  1165. "bone31": {
  1166. "rotate": [
  1167. {
  1168. "time": 0,
  1169. "angle": -13.4,
  1170. "curve": [ 0.25, 0, 0.75, 1 ]
  1171. },
  1172. { "time": 0.4, "angle": 0 },
  1173. { "time": 0.6, "angle": -8.68 },
  1174. { "time": 0.8667, "angle": 0 },
  1175. { "time": 1.1667, "angle": -8.68 },
  1176. { "time": 1.5, "angle": 0 },
  1177. {
  1178. "time": 1.6333,
  1179. "angle": -11.61,
  1180. "curve": [ 0.25, 0, 0.75, 1 ]
  1181. },
  1182. { "time": 2.1667, "angle": 8.35 }
  1183. ],
  1184. "translate": [
  1185. { "time": 1.5, "x": 0, "y": 0 },
  1186. {
  1187. "time": 1.6333,
  1188. "x": -1.14,
  1189. "y": 0.26,
  1190. "curve": [ 0.25, 0, 0.75, 1 ]
  1191. },
  1192. { "time": 2.1667, "x": 0, "y": 0 }
  1193. ]
  1194. },
  1195. "bone32": {
  1196. "rotate": [
  1197. {
  1198. "time": 0,
  1199. "angle": -13.4,
  1200. "curve": [ 0.25, 0, 0.75, 1 ]
  1201. },
  1202. { "time": 0.4, "angle": 0 },
  1203. { "time": 0.6, "angle": 16.96 },
  1204. { "time": 0.8667, "angle": 0 },
  1205. { "time": 1.1667, "angle": 16.96 },
  1206. { "time": 1.5, "angle": 0 },
  1207. { "time": 2.1667, "angle": -12.57 }
  1208. ],
  1209. "translate": [
  1210. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1211. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1212. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1213. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1214. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1215. { "time": 1.5, "x": 0, "y": 0 },
  1216. {
  1217. "time": 1.6333,
  1218. "x": -3.64,
  1219. "y": -3.66,
  1220. "curve": [ 0.25, 0, 0.75, 1 ]
  1221. },
  1222. { "time": 2.1667, "x": 0, "y": 0 }
  1223. ],
  1224. "scale": [
  1225. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1226. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1227. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1228. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1229. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1230. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1231. { "time": 2.1667, "x": 1, "y": 1 }
  1232. ]
  1233. },
  1234. "bone33": {
  1235. "rotate": [
  1236. { "time": 0, "angle": 0, "curve": "stepped" },
  1237. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1238. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  1239. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1240. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1241. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1242. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1243. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1244. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1245. { "time": 2.8, "angle": 0, "curve": "stepped" },
  1246. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1247. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  1248. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  1249. { "time": 3.6, "angle": 0, "curve": "stepped" },
  1250. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  1251. { "time": 3.8667, "angle": 0 }
  1252. ],
  1253. "translate": [
  1254. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1255. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1256. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1257. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1258. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1259. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1260. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1261. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1262. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1263. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  1264. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1265. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1266. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  1267. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  1268. { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
  1269. { "time": 3.8667, "x": 0, "y": 0 }
  1270. ],
  1271. "scale": [
  1272. { "time": 0, "x": 1, "y": 1 },
  1273. { "time": 0.1, "x": 0.366, "y": 1, "curve": "stepped" },
  1274. { "time": 0.2667, "x": 0.366, "y": 1 },
  1275. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1276. { "time": 1.3667, "x": 1, "y": 1 },
  1277. { "time": 1.5, "x": 0.313, "y": 1, "curve": "stepped" },
  1278. { "time": 1.6333, "x": 0.313, "y": 1 },
  1279. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1280. { "time": 2.6667, "x": 1, "y": 1 },
  1281. { "time": 2.8, "x": 0.313, "y": 1, "curve": "stepped" },
  1282. { "time": 2.9333, "x": 0.313, "y": 1 },
  1283. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1284. { "time": 3.4667, "x": 1, "y": 1 },
  1285. { "time": 3.6, "x": 0.313, "y": 1, "curve": "stepped" },
  1286. { "time": 3.7333, "x": 0.313, "y": 1 },
  1287. { "time": 3.8667, "x": 1, "y": 1 }
  1288. ]
  1289. },
  1290. "bone34": {
  1291. "rotate": [
  1292. { "time": 0, "angle": 0, "curve": "stepped" },
  1293. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1294. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  1295. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1296. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1297. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1298. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1299. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1300. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1301. { "time": 2.8, "angle": 0, "curve": "stepped" },
  1302. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1303. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  1304. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  1305. { "time": 3.6, "angle": 0, "curve": "stepped" },
  1306. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  1307. { "time": 3.8667, "angle": 0 }
  1308. ],
  1309. "translate": [
  1310. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1311. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1312. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1313. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1314. { "time": 1.3667, "x": 0, "y": 0 },
  1315. { "time": 1.5, "x": -2.37, "y": -0.01, "curve": "stepped" },
  1316. { "time": 1.6333, "x": -2.37, "y": -0.01, "curve": "stepped" },
  1317. { "time": 1.7667, "x": -2.37, "y": -0.01, "curve": "stepped" },
  1318. { "time": 1.8, "x": -2.37, "y": -0.01, "curve": "stepped" },
  1319. { "time": 2.6667, "x": -2.37, "y": -0.01, "curve": "stepped" },
  1320. { "time": 2.8, "x": -2.37, "y": -0.01, "curve": "stepped" },
  1321. { "time": 2.9333, "x": -2.37, "y": -0.01, "curve": "stepped" },
  1322. { "time": 3.0667, "x": -2.37, "y": -0.01, "curve": "stepped" },
  1323. { "time": 3.4667, "x": -2.37, "y": -0.01, "curve": "stepped" },
  1324. { "time": 3.6, "x": -2.37, "y": -0.01, "curve": "stepped" },
  1325. { "time": 3.7333, "x": -2.37, "y": -0.01, "curve": "stepped" },
  1326. { "time": 3.8667, "x": -2.37, "y": -0.01 }
  1327. ],
  1328. "scale": [
  1329. { "time": 0, "x": 1, "y": 1 },
  1330. { "time": 0.1, "x": 0.366, "y": 1, "curve": "stepped" },
  1331. { "time": 0.2667, "x": 0.366, "y": 1 },
  1332. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1333. { "time": 1.3667, "x": 1, "y": 1 },
  1334. { "time": 1.5, "x": 0.494, "y": 1, "curve": "stepped" },
  1335. { "time": 1.6333, "x": 0.494, "y": 1 },
  1336. { "time": 1.7667, "x": 1.3, "y": 1.3, "curve": "stepped" },
  1337. { "time": 1.8, "x": 1.3, "y": 1.3, "curve": "stepped" },
  1338. { "time": 2.6667, "x": 1.3, "y": 1.3 },
  1339. { "time": 2.8, "x": 0.494, "y": 1.3, "curve": "stepped" },
  1340. { "time": 2.9333, "x": 0.494, "y": 1.3 },
  1341. { "time": 3.0667, "x": 1.3, "y": 1.3, "curve": "stepped" },
  1342. { "time": 3.4667, "x": 1.3, "y": 1.3 },
  1343. { "time": 3.6, "x": 0.494, "y": 1.3, "curve": "stepped" },
  1344. { "time": 3.7333, "x": 0.494, "y": 1.3 },
  1345. { "time": 3.8667, "x": 1.3, "y": 1.3 }
  1346. ]
  1347. },
  1348. "bone35": {
  1349. "rotate": [
  1350. { "time": 0, "angle": 0, "curve": "stepped" },
  1351. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1352. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  1353. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1354. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1355. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1356. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1357. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1358. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1359. { "time": 2.8, "angle": 0, "curve": "stepped" },
  1360. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1361. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  1362. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  1363. { "time": 3.6, "angle": 0, "curve": "stepped" },
  1364. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  1365. { "time": 3.8667, "angle": 0 }
  1366. ],
  1367. "translate": [
  1368. { "time": 0, "x": 0, "y": 0 },
  1369. { "time": 0.1, "x": -1.8, "y": 0, "curve": "stepped" },
  1370. { "time": 0.2667, "x": -1.8, "y": 0 },
  1371. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1372. { "time": 1.3667, "x": 0, "y": 0 },
  1373. { "time": 1.5, "x": -1.11, "y": 0, "curve": "stepped" },
  1374. { "time": 1.6333, "x": -1.11, "y": 0 },
  1375. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1376. { "time": 2.6667, "x": 0, "y": 0 },
  1377. { "time": 2.8, "x": -1.11, "y": 0, "curve": "stepped" },
  1378. { "time": 2.9333, "x": -1.11, "y": 0 },
  1379. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1380. { "time": 3.4667, "x": 0, "y": 0 },
  1381. { "time": 3.6, "x": -1.11, "y": 0, "curve": "stepped" },
  1382. { "time": 3.7333, "x": -1.11, "y": 0 },
  1383. { "time": 3.8667, "x": 0, "y": 0 }
  1384. ],
  1385. "scale": [
  1386. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1387. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1388. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1389. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1390. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1391. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1392. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1393. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1394. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1395. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  1396. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1397. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1398. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  1399. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  1400. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  1401. { "time": 3.8667, "x": 1, "y": 1 }
  1402. ]
  1403. },
  1404. "bone36": {
  1405. "rotate": [
  1406. { "time": 0, "angle": 0, "curve": "stepped" },
  1407. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1408. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  1409. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1410. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  1411. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1412. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1413. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1414. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1415. { "time": 2.8, "angle": 0, "curve": "stepped" },
  1416. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1417. { "time": 3.0667, "angle": 0 }
  1418. ],
  1419. "translate": [
  1420. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1421. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1422. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1423. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1424. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1425. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1426. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1427. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1428. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1429. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  1430. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1431. { "time": 3.0667, "x": 0, "y": 0 }
  1432. ],
  1433. "scale": [
  1434. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1435. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1436. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1437. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1438. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1439. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1440. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1441. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1442. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1443. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  1444. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1445. { "time": 3.0667, "x": 1, "y": 1 }
  1446. ]
  1447. },
  1448. "bone37": {
  1449. "rotate": [
  1450. { "time": 0, "angle": 0, "curve": "stepped" },
  1451. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1452. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1453. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1454. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1455. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1456. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  1457. { "time": 3.9333, "angle": 0 }
  1458. ],
  1459. "translate": [
  1460. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1461. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1462. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1463. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1464. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1465. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1466. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  1467. { "time": 3.9333, "x": 0, "y": 0 }
  1468. ],
  1469. "scale": [
  1470. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1471. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1472. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1473. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1474. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1475. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1476. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  1477. { "time": 3.9333, "x": 1, "y": 1 }
  1478. ]
  1479. },
  1480. "bone38": {
  1481. "rotate": [
  1482. { "time": 0, "angle": 0, "curve": "stepped" },
  1483. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1484. {
  1485. "time": 0.5,
  1486. "angle": 0,
  1487. "curve": [ 0.25, 0, 0.75, 1 ]
  1488. },
  1489. {
  1490. "time": 1.1667,
  1491. "angle": 1.93,
  1492. "curve": [ 0.25, 0, 0.75, 1 ]
  1493. },
  1494. {
  1495. "time": 1.8333,
  1496. "angle": 0,
  1497. "curve": [ 0.25, 0, 0.75, 1 ]
  1498. },
  1499. {
  1500. "time": 2.5,
  1501. "angle": 1.93,
  1502. "curve": [ 0.25, 0, 0.75, 1 ]
  1503. },
  1504. {
  1505. "time": 3.1667,
  1506. "angle": 0,
  1507. "curve": [ 0.25, 0, 0.75, 1 ]
  1508. },
  1509. { "time": 3.9333, "angle": 1.93 }
  1510. ],
  1511. "translate": [
  1512. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1513. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1514. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1515. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1516. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1517. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1518. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  1519. { "time": 3.9333, "x": 0, "y": 0 }
  1520. ],
  1521. "scale": [
  1522. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1523. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1524. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1525. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1526. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1527. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1528. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  1529. { "time": 3.9333, "x": 1, "y": 1 }
  1530. ]
  1531. },
  1532. "bone39": {
  1533. "rotate": [
  1534. { "time": 0, "angle": 0 },
  1535. { "time": 0.1667, "angle": -2.98 },
  1536. {
  1537. "time": 0.5,
  1538. "angle": 0,
  1539. "curve": [ 0.25, 0, 0.75, 1 ]
  1540. },
  1541. {
  1542. "time": 1.1667,
  1543. "angle": 3.67,
  1544. "curve": [ 0.25, 0, 0.75, 1 ]
  1545. },
  1546. {
  1547. "time": 1.8333,
  1548. "angle": 0,
  1549. "curve": [ 0.25, 0, 0.75, 1 ]
  1550. },
  1551. {
  1552. "time": 2.5,
  1553. "angle": 3.67,
  1554. "curve": [ 0.25, 0, 0.75, 1 ]
  1555. },
  1556. {
  1557. "time": 3.1667,
  1558. "angle": 0,
  1559. "curve": [ 0.25, 0, 0.75, 1 ]
  1560. },
  1561. { "time": 3.9333, "angle": 3.67 }
  1562. ],
  1563. "translate": [
  1564. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1565. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1566. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1567. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1568. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1569. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1570. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  1571. { "time": 3.9333, "x": 0, "y": 0 }
  1572. ],
  1573. "scale": [
  1574. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1575. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1576. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1577. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1578. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1579. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1580. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  1581. { "time": 3.9333, "x": 1, "y": 1 }
  1582. ]
  1583. },
  1584. "bone40": {
  1585. "rotate": [
  1586. { "time": 0, "angle": 0 },
  1587. { "time": 0.1667, "angle": -2.98 },
  1588. {
  1589. "time": 0.5,
  1590. "angle": 0,
  1591. "curve": [ 0.25, 0, 0.75, 1 ]
  1592. },
  1593. {
  1594. "time": 1.1667,
  1595. "angle": 3.67,
  1596. "curve": [ 0.25, 0, 0.75, 1 ]
  1597. },
  1598. {
  1599. "time": 1.8333,
  1600. "angle": 0,
  1601. "curve": [ 0.25, 0, 0.75, 1 ]
  1602. },
  1603. {
  1604. "time": 2.5,
  1605. "angle": 3.67,
  1606. "curve": [ 0.25, 0, 0.75, 1 ]
  1607. },
  1608. {
  1609. "time": 3.1667,
  1610. "angle": 0,
  1611. "curve": [ 0.25, 0, 0.75, 1 ]
  1612. },
  1613. { "time": 3.9333, "angle": 3.67 }
  1614. ],
  1615. "translate": [
  1616. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1617. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1618. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1619. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1620. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1621. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1622. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  1623. { "time": 3.9333, "x": 0, "y": 0 }
  1624. ],
  1625. "scale": [
  1626. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1627. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1628. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1629. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1630. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1631. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1632. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  1633. { "time": 3.9333, "x": 1, "y": 1 }
  1634. ]
  1635. },
  1636. "bone41": {
  1637. "rotate": [
  1638. { "time": 0, "angle": 0 },
  1639. { "time": 0.1667, "angle": -2.98 },
  1640. {
  1641. "time": 0.5,
  1642. "angle": 0,
  1643. "curve": [ 0.25, 0, 0.75, 1 ]
  1644. },
  1645. {
  1646. "time": 1.1667,
  1647. "angle": 3.67,
  1648. "curve": [ 0.25, 0, 0.75, 1 ]
  1649. },
  1650. {
  1651. "time": 1.8333,
  1652. "angle": 0,
  1653. "curve": [ 0.25, 0, 0.75, 1 ]
  1654. },
  1655. {
  1656. "time": 2.5,
  1657. "angle": 3.67,
  1658. "curve": [ 0.25, 0, 0.75, 1 ]
  1659. },
  1660. {
  1661. "time": 3.1667,
  1662. "angle": 0,
  1663. "curve": [ 0.25, 0, 0.75, 1 ]
  1664. },
  1665. { "time": 3.9333, "angle": 3.67 }
  1666. ],
  1667. "translate": [
  1668. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1669. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1670. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1671. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1672. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1673. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1674. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  1675. { "time": 3.9333, "x": 0, "y": 0 }
  1676. ],
  1677. "scale": [
  1678. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1679. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1680. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1681. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1682. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1683. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1684. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  1685. { "time": 3.9333, "x": 1, "y": 1 }
  1686. ]
  1687. },
  1688. "bone42": {
  1689. "rotate": [
  1690. { "time": 0, "angle": 0, "curve": "stepped" },
  1691. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1692. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1693. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1694. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1695. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1696. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  1697. { "time": 3.9333, "angle": 0 }
  1698. ],
  1699. "translate": [
  1700. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1701. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1702. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1703. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1704. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1705. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1706. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  1707. { "time": 3.9333, "x": 0, "y": 0 }
  1708. ],
  1709. "scale": [
  1710. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1711. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1712. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1713. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1714. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1715. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1716. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  1717. { "time": 3.9333, "x": 1, "y": 1 }
  1718. ]
  1719. },
  1720. "bone43": {
  1721. "rotate": [
  1722. { "time": 0, "angle": 0 },
  1723. { "time": 0.1667, "angle": 4.76 },
  1724. {
  1725. "time": 0.5,
  1726. "angle": 0,
  1727. "curve": [ 0.25, 0, 0.75, 1 ]
  1728. },
  1729. {
  1730. "time": 1.1667,
  1731. "angle": 6.06,
  1732. "curve": [ 0.25, 0, 0.75, 1 ]
  1733. },
  1734. {
  1735. "time": 1.8333,
  1736. "angle": 0,
  1737. "curve": [ 0.25, 0, 0.75, 1 ]
  1738. },
  1739. {
  1740. "time": 2.5,
  1741. "angle": 6.06,
  1742. "curve": [ 0.25, 0, 0.75, 1 ]
  1743. },
  1744. {
  1745. "time": 3.1667,
  1746. "angle": 0,
  1747. "curve": [ 0.25, 0, 0.75, 1 ]
  1748. },
  1749. { "time": 3.9333, "angle": 6.06 }
  1750. ],
  1751. "translate": [
  1752. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1753. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1754. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1755. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1756. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1757. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1758. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  1759. { "time": 3.9333, "x": 0, "y": 0 }
  1760. ],
  1761. "scale": [
  1762. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1763. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1764. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1765. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1766. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1767. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  1768. { "time": 3.9333, "x": 1, "y": 1 }
  1769. ]
  1770. },
  1771. "bone44": {
  1772. "rotate": [
  1773. { "time": 0, "angle": 0 },
  1774. { "time": 0.1667, "angle": 4.76 },
  1775. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1776. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1777. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1778. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  1779. { "time": 3.9333, "angle": 0 }
  1780. ],
  1781. "translate": [
  1782. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1783. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1784. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1785. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1786. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1787. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  1788. { "time": 3.9333, "x": 0, "y": 0 }
  1789. ],
  1790. "scale": [
  1791. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1792. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1793. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1794. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1795. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1796. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  1797. { "time": 3.9333, "x": 1, "y": 1 }
  1798. ]
  1799. },
  1800. "bone45": {
  1801. "rotate": [
  1802. { "time": 0, "angle": 0 },
  1803. { "time": 0.1667, "angle": 4.76 },
  1804. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1805. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1806. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1807. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1808. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  1809. { "time": 3.9333, "angle": 0 }
  1810. ],
  1811. "translate": [
  1812. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1813. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1814. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1815. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1816. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1817. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1818. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  1819. { "time": 3.9333, "x": 0, "y": 0 }
  1820. ],
  1821. "scale": [
  1822. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1823. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1824. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1825. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1826. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1827. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1828. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  1829. { "time": 3.9333, "x": 1, "y": 1 }
  1830. ]
  1831. },
  1832. "bone46": {
  1833. "rotate": [
  1834. { "time": 0, "angle": 0, "curve": "stepped" },
  1835. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1836. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1837. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  1838. { "time": 3.9333, "angle": 0 }
  1839. ],
  1840. "translate": [
  1841. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1842. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1843. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1844. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  1845. { "time": 3.9333, "x": 0, "y": 0 }
  1846. ],
  1847. "scale": [
  1848. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1849. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1850. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1851. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  1852. { "time": 3.9333, "x": 1, "y": 1 }
  1853. ]
  1854. },
  1855. "bone47": {
  1856. "rotate": [
  1857. { "time": 0, "angle": 0 },
  1858. { "time": 0.1667, "angle": 5.08 },
  1859. {
  1860. "time": 0.5,
  1861. "angle": 0,
  1862. "curve": [ 0.25, 0, 0.75, 1 ]
  1863. },
  1864. {
  1865. "time": 1.1667,
  1866. "angle": 4.88,
  1867. "curve": [ 0.25, 0, 0.75, 1 ]
  1868. },
  1869. {
  1870. "time": 1.8333,
  1871. "angle": 0,
  1872. "curve": [ 0.25, 0, 0.75, 1 ]
  1873. },
  1874. {
  1875. "time": 2.5,
  1876. "angle": 4.88,
  1877. "curve": [ 0.25, 0, 0.75, 1 ]
  1878. },
  1879. {
  1880. "time": 3.1667,
  1881. "angle": 0,
  1882. "curve": [ 0.25, 0, 0.75, 1 ]
  1883. },
  1884. { "time": 3.9333, "angle": 4.88 }
  1885. ],
  1886. "translate": [
  1887. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1888. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1889. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1890. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1891. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1892. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1893. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  1894. { "time": 3.9333, "x": 0, "y": 0 }
  1895. ],
  1896. "scale": [
  1897. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1898. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1899. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1900. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1901. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1902. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1903. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  1904. { "time": 3.9333, "x": 1, "y": 1 }
  1905. ]
  1906. },
  1907. "bone48": {
  1908. "rotate": [
  1909. { "time": 0, "angle": 0 },
  1910. { "time": 0.1667, "angle": -2.39 },
  1911. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1912. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1913. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1914. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1915. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  1916. { "time": 3.9333, "angle": 0 }
  1917. ],
  1918. "translate": [
  1919. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1920. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1921. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1922. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1923. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1924. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1925. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  1926. { "time": 3.9333, "x": 0, "y": 0 }
  1927. ],
  1928. "scale": [
  1929. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1930. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1931. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1932. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1933. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1934. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1935. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  1936. { "time": 3.9333, "x": 1, "y": 1 }
  1937. ]
  1938. },
  1939. "bone49": {
  1940. "rotate": [
  1941. { "time": 0, "angle": 0 },
  1942. { "time": 0.1667, "angle": -2.39 },
  1943. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1944. { "time": 3.9333, "angle": 0 }
  1945. ],
  1946. "translate": [
  1947. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1948. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1949. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1950. { "time": 3.9333, "x": 0, "y": 0 }
  1951. ],
  1952. "scale": [
  1953. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1954. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1955. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1956. { "time": 3.9333, "x": 1, "y": 1 }
  1957. ]
  1958. },
  1959. "bone54": {
  1960. "rotate": [
  1961. { "time": 3.4667, "angle": 0 }
  1962. ],
  1963. "translate": [
  1964. { "time": 1.6333, "x": 0, "y": 0 },
  1965. { "time": 1.7667, "x": 0.44, "y": -1.28 },
  1966. { "time": 2.9333, "x": 0, "y": 0 },
  1967. { "time": 3.0667, "x": 0.44, "y": -1.28, "curve": "stepped" },
  1968. { "time": 3.4667, "x": 0.44, "y": -1.28 },
  1969. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  1970. { "time": 3.7333, "x": 0, "y": 0 },
  1971. { "time": 3.8667, "x": 0.44, "y": 0.3 }
  1972. ],
  1973. "scale": [
  1974. { "time": 3.4667, "x": 1, "y": 1 }
  1975. ]
  1976. },
  1977. "bone55": {
  1978. "rotate": [
  1979. { "time": 3.4667, "angle": 0 }
  1980. ],
  1981. "translate": [
  1982. { "time": 3.4667, "x": 0, "y": 0 }
  1983. ],
  1984. "scale": [
  1985. { "time": 3.4667, "x": 1, "y": 1 }
  1986. ]
  1987. }
  1988. },
  1989. "deform": {
  1990. "default": {
  1991. "waitaohou": {
  1992. "waitaohou": [
  1993. {
  1994. "time": 0,
  1995. "vertices": [ -7.14621, 0.8426, -5.15533, 2.06055, -3.32445, 4.35551, -3.07579, -11.94044, -11.40351, -17.16388, -12.5834, -13.02536, -13.67466, -3.87561, 0, 0, 0, 0, 0, 0, -5.85374, -7.05752, -7.58962, -3.98333 ]
  1996. },
  1997. { "time": 0.3333 },
  1998. {
  1999. "time": 1.5,
  2000. "vertices": [ -5.80336, 4.09832, -6.42092, 9.04501, -7.32334, 11.17632, -4.56202, 7.83692, -3.5806, 10.16995, -5.52269, 6.67878, -4.8635, 4.08171, 0, 0, 0, 0, 0, 0, -5.30015, 5.96972, -5.10262, 3.85088 ]
  2001. },
  2002. {
  2003. "time": 2.1667,
  2004. "vertices": [ -5.37464, 1.9029, -5.49009, 4.56286, -5.93963, 5.7235, -3.86799, 0.14597, -8.73843, -11.70463, -9.09505, -5.5749, -8.91171, -4.40047, 0, 0, 0, 0, 0, 0, -4.61364, -0.59095, -5.2613, -0.87704 ]
  2005. },
  2006. { "time": 3.9333 }
  2007. ]
  2008. },
  2009. "youshou2": {
  2010. "youshou2": [
  2011. {
  2012. "time": 0.3,
  2013. "vertices": [ 0.20703, 3.83282, 0.53858, 3.80033, 0.20703, 3.83282, 0.53858, 3.80033, 0.20703, 3.83282, 0.53858, 3.80033, 6.56782, 3.25912, 1.15477, -0.57042, 4.55291, -3.50618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.20703, 3.83282, 0.53858, 3.80033 ]
  2014. },
  2015. { "time": 0.6 }
  2016. ]
  2017. }
  2018. }
  2019. },
  2020. "drawOrder": [
  2021. {
  2022. "time": 0.3,
  2023. "offsets": [
  2024. { "slot": "youshou 1", "offset": -5 },
  2025. { "slot": "youshou2", "offset": -18 }
  2026. ]
  2027. },
  2028. {
  2029. "time": 1.5333,
  2030. "offsets": [
  2031. { "slot": "youshou 1", "offset": 13 }
  2032. ]
  2033. }
  2034. ]
  2035. },
  2036. "walk1": {
  2037. "slots": {
  2038. "biyan": {
  2039. "attachment": [
  2040. { "time": 1.1, "name": "biyan" },
  2041. { "time": 1.2, "name": null }
  2042. ]
  2043. },
  2044. "fangdajing": {
  2045. "attachment": [
  2046. { "time": 0, "name": null }
  2047. ]
  2048. },
  2049. "gaoguang": {
  2050. "attachment": [
  2051. { "time": 1.1, "name": null },
  2052. { "time": 1.2, "name": "gaoguang" }
  2053. ]
  2054. },
  2055. "yanbai": {
  2056. "attachment": [
  2057. { "time": 1.1, "name": null },
  2058. { "time": 1.2, "name": "yanbai" }
  2059. ]
  2060. },
  2061. "yanqiu": {
  2062. "attachment": [
  2063. { "time": 1.1, "name": null },
  2064. { "time": 1.2, "name": "yanqiu" }
  2065. ]
  2066. },
  2067. "youshou2": {
  2068. "attachment": [
  2069. { "time": 0, "name": null }
  2070. ]
  2071. },
  2072. "youshou 1": {
  2073. "attachment": [
  2074. { "time": 0, "name": null }
  2075. ]
  2076. },
  2077. "zuoyan": {
  2078. "attachment": [
  2079. { "time": 1.1, "name": null },
  2080. { "time": 1.2, "name": "zuoyan" }
  2081. ]
  2082. }
  2083. },
  2084. "bones": {
  2085. "root": {
  2086. "rotate": [
  2087. { "time": 0, "angle": 0 }
  2088. ],
  2089. "translate": [
  2090. { "time": 0, "x": 0, "y": 0 }
  2091. ],
  2092. "scale": [
  2093. { "time": 0, "x": 0.65, "y": 0.65 }
  2094. ]
  2095. },
  2096. "bone": {
  2097. "rotate": [
  2098. { "time": 0, "angle": 0, "curve": "stepped" },
  2099. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2100. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2101. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2102. { "time": 1, "angle": 0, "curve": "stepped" },
  2103. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2104. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2105. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2106. { "time": 2, "angle": 0 }
  2107. ],
  2108. "translate": [
  2109. { "time": 0, "x": 0, "y": 0 },
  2110. { "time": 0.1667, "x": 0, "y": 1.49 },
  2111. { "time": 0.5, "x": 0, "y": 0 },
  2112. { "time": 0.6667, "x": 0, "y": 1.49 },
  2113. { "time": 1, "x": 0, "y": 0 },
  2114. { "time": 1.1667, "x": 0, "y": 1.49 },
  2115. { "time": 1.5, "x": 0, "y": 0 },
  2116. { "time": 1.6667, "x": 0, "y": 1.49 },
  2117. { "time": 2, "x": 0, "y": 0 }
  2118. ],
  2119. "scale": [
  2120. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2121. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2122. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2123. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2124. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2125. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2126. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2127. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2128. { "time": 2, "x": 1, "y": 1 }
  2129. ]
  2130. },
  2131. "bone2": {
  2132. "rotate": [
  2133. { "time": 0, "angle": 0, "curve": "stepped" },
  2134. { "time": 1, "angle": 0 }
  2135. ],
  2136. "translate": [
  2137. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2138. { "time": 1, "x": 0, "y": 0 }
  2139. ],
  2140. "scale": [
  2141. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2142. { "time": 1, "x": 1, "y": 1 }
  2143. ]
  2144. },
  2145. "bone5": {
  2146. "rotate": [
  2147. {
  2148. "time": 0,
  2149. "angle": -308.54,
  2150. "curve": [ 0.25, 0, 0.75, 1 ]
  2151. },
  2152. {
  2153. "time": 0.5,
  2154. "angle": 24.54,
  2155. "curve": [ 0.25, 0, 0.75, 1 ]
  2156. },
  2157. {
  2158. "time": 1,
  2159. "angle": -308.54,
  2160. "curve": [ 0.25, 0, 0.75, 1 ]
  2161. },
  2162. {
  2163. "time": 1.5,
  2164. "angle": 24.54,
  2165. "curve": [ 0.25, 0, 0.75, 1 ]
  2166. },
  2167. { "time": 2, "angle": -308.54 }
  2168. ],
  2169. "translate": [
  2170. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2171. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2172. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2173. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2174. { "time": 2, "x": 0, "y": 0 }
  2175. ],
  2176. "scale": [
  2177. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2178. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2179. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2180. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2181. { "time": 2, "x": 1, "y": 1 }
  2182. ]
  2183. },
  2184. "bone6": {
  2185. "rotate": [
  2186. {
  2187. "time": 0,
  2188. "angle": -22.6,
  2189. "curve": [ 0.25, 0, 0.75, 1 ]
  2190. },
  2191. {
  2192. "time": 0.5,
  2193. "angle": -16.65,
  2194. "curve": [ 0.25, 0, 0.75, 1 ]
  2195. },
  2196. {
  2197. "time": 1,
  2198. "angle": -22.6,
  2199. "curve": [ 0.25, 0, 0.75, 1 ]
  2200. },
  2201. {
  2202. "time": 1.5,
  2203. "angle": -16.65,
  2204. "curve": [ 0.25, 0, 0.75, 1 ]
  2205. },
  2206. { "time": 2, "angle": -22.6 }
  2207. ],
  2208. "translate": [
  2209. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2210. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2211. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2212. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2213. { "time": 2, "x": 0, "y": 0 }
  2214. ],
  2215. "scale": [
  2216. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2217. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2218. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2219. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2220. { "time": 2, "x": 1, "y": 1 }
  2221. ]
  2222. },
  2223. "bone7": {
  2224. "rotate": [
  2225. { "time": 0, "angle": -12.04, "curve": "stepped" },
  2226. { "time": 0.5, "angle": -12.04, "curve": "stepped" },
  2227. { "time": 1, "angle": -12.04, "curve": "stepped" },
  2228. { "time": 1.5, "angle": -12.04, "curve": "stepped" },
  2229. { "time": 2, "angle": -12.04 }
  2230. ],
  2231. "translate": [
  2232. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2233. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2234. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2235. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2236. { "time": 2, "x": 0, "y": 0 }
  2237. ],
  2238. "scale": [
  2239. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2240. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2241. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2242. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2243. { "time": 2, "x": 1, "y": 1 }
  2244. ]
  2245. },
  2246. "bone8": {
  2247. "rotate": [
  2248. {
  2249. "time": 0,
  2250. "angle": -38.96,
  2251. "curve": [ 0.25, 0, 0.75, 1 ]
  2252. },
  2253. {
  2254. "time": 0.5,
  2255. "angle": -15.69,
  2256. "curve": [ 0.25, 0, 0.75, 1 ]
  2257. },
  2258. {
  2259. "time": 1,
  2260. "angle": -38.96,
  2261. "curve": [ 0.25, 0, 0.75, 1 ]
  2262. },
  2263. {
  2264. "time": 1.5,
  2265. "angle": -15.69,
  2266. "curve": [ 0.25, 0, 0.75, 1 ]
  2267. },
  2268. { "time": 2, "angle": -38.96 }
  2269. ],
  2270. "translate": [
  2271. {
  2272. "time": 0,
  2273. "x": 3.26,
  2274. "y": -2.51,
  2275. "curve": [ 0.25, 0, 0.75, 1 ]
  2276. },
  2277. {
  2278. "time": 0.5,
  2279. "x": 0,
  2280. "y": 0,
  2281. "curve": [ 0.25, 0, 0.75, 1 ]
  2282. },
  2283. {
  2284. "time": 1,
  2285. "x": 3.26,
  2286. "y": -2.51,
  2287. "curve": [ 0.25, 0, 0.75, 1 ]
  2288. },
  2289. {
  2290. "time": 1.5,
  2291. "x": 0,
  2292. "y": 0,
  2293. "curve": [ 0.25, 0, 0.75, 1 ]
  2294. },
  2295. { "time": 2, "x": 3.26, "y": -2.51 }
  2296. ],
  2297. "scale": [
  2298. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2299. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2300. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2301. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2302. { "time": 2, "x": 1, "y": 1 }
  2303. ]
  2304. },
  2305. "bone9": {
  2306. "rotate": [
  2307. {
  2308. "time": 0,
  2309. "angle": -16.5,
  2310. "curve": [ 0.25, 0, 0.75, 1 ]
  2311. },
  2312. {
  2313. "time": 0.5,
  2314. "angle": -6.56,
  2315. "curve": [ 0.25, 0, 0.75, 1 ]
  2316. },
  2317. {
  2318. "time": 1,
  2319. "angle": -16.5,
  2320. "curve": [ 0.25, 0, 0.75, 1 ]
  2321. },
  2322. {
  2323. "time": 1.5,
  2324. "angle": -6.56,
  2325. "curve": [ 0.25, 0, 0.75, 1 ]
  2326. },
  2327. { "time": 2, "angle": -16.5 }
  2328. ],
  2329. "translate": [
  2330. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2331. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2332. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2333. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2334. { "time": 2, "x": 0, "y": 0 }
  2335. ],
  2336. "scale": [
  2337. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2338. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2339. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2340. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2341. { "time": 2, "x": 1, "y": 1 }
  2342. ]
  2343. },
  2344. "bone10": {
  2345. "rotate": [
  2346. { "time": 0, "angle": -11.62, "curve": "stepped" },
  2347. { "time": 0.5, "angle": -11.62, "curve": "stepped" },
  2348. { "time": 1, "angle": -11.62, "curve": "stepped" },
  2349. { "time": 1.5, "angle": -11.62, "curve": "stepped" },
  2350. { "time": 2, "angle": -11.62 }
  2351. ],
  2352. "translate": [
  2353. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2354. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2355. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2356. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2357. { "time": 2, "x": 0, "y": 0 }
  2358. ],
  2359. "scale": [
  2360. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2361. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2362. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2363. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2364. { "time": 2, "x": 1, "y": 1 }
  2365. ]
  2366. },
  2367. "bone11": {
  2368. "rotate": [
  2369. { "time": 0, "angle": 12.51 },
  2370. { "time": 0.1667, "angle": -8.33 },
  2371. { "time": 0.3333, "angle": -23.61 },
  2372. { "time": 0.5, "angle": -36.35 },
  2373. { "time": 0.6667, "angle": -23.87 },
  2374. { "time": 0.8333, "angle": 3.23 },
  2375. { "time": 1, "angle": 12.51 },
  2376. { "time": 1.1667, "angle": -8.33 },
  2377. { "time": 1.3333, "angle": -23.61 },
  2378. { "time": 1.5, "angle": -36.35 },
  2379. { "time": 1.6667, "angle": -23.87 },
  2380. { "time": 1.8333, "angle": 3.23 },
  2381. { "time": 2, "angle": 12.51 }
  2382. ],
  2383. "translate": [
  2384. { "time": 0, "x": 0, "y": 0 },
  2385. { "time": 0.1667, "x": -1.73, "y": -0.45 },
  2386. { "time": 0.3333, "x": -3.1, "y": 0.57 },
  2387. { "time": 0.5, "x": -5.19, "y": -1.36 },
  2388. { "time": 0.6667, "x": -3.46, "y": -0.9 },
  2389. { "time": 0.8333, "x": -1.73, "y": -0.45 },
  2390. { "time": 1, "x": 0, "y": 0 },
  2391. { "time": 1.1667, "x": -1.73, "y": -0.45 },
  2392. { "time": 1.3333, "x": -3.1, "y": 0.57 },
  2393. { "time": 1.5, "x": -5.19, "y": -1.36 },
  2394. { "time": 1.6667, "x": -3.46, "y": -0.9 },
  2395. { "time": 1.8333, "x": -1.73, "y": -0.45 },
  2396. { "time": 2, "x": 0, "y": 0 }
  2397. ],
  2398. "scale": [
  2399. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2400. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2401. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2402. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2403. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2404. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2405. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2406. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2407. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2408. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2409. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2410. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2411. { "time": 2, "x": 1, "y": 1 }
  2412. ]
  2413. },
  2414. "bone12": {
  2415. "rotate": [
  2416. { "time": 0, "angle": 0 },
  2417. { "time": 0.1667, "angle": 38.68 },
  2418. { "time": 0.3333, "angle": 35.9 },
  2419. { "time": 0.5, "angle": 0 },
  2420. { "time": 0.6667, "angle": 17.15 },
  2421. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2422. { "time": 1, "angle": 0 },
  2423. { "time": 1.1667, "angle": 38.68 },
  2424. { "time": 1.3333, "angle": 35.9 },
  2425. { "time": 1.5, "angle": 0 },
  2426. { "time": 1.6667, "angle": 17.15 },
  2427. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2428. { "time": 2, "angle": 0 }
  2429. ],
  2430. "translate": [
  2431. { "time": 0, "x": 0, "y": 0 },
  2432. { "time": 0.1667, "x": -1.73, "y": -1.42 },
  2433. { "time": 0.3333, "x": -1.16, "y": -0.86 },
  2434. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2435. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2436. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2437. { "time": 1, "x": 0, "y": 0 },
  2438. { "time": 1.1667, "x": -1.73, "y": -1.42 },
  2439. { "time": 1.3333, "x": -1.16, "y": -0.86 },
  2440. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2441. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2442. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2443. { "time": 2, "x": 0, "y": 0 }
  2444. ],
  2445. "scale": [
  2446. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2447. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2448. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2449. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2450. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2451. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2452. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2453. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2454. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2455. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2456. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2457. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2458. { "time": 2, "x": 1, "y": 1 }
  2459. ]
  2460. },
  2461. "bone13": {
  2462. "rotate": [
  2463. { "time": 0, "angle": 0, "curve": "stepped" },
  2464. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2465. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2466. { "time": 0.5, "angle": 0 },
  2467. { "time": 0.6667, "angle": 14.84 },
  2468. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2469. { "time": 1, "angle": 0, "curve": "stepped" },
  2470. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2471. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2472. { "time": 1.5, "angle": 0 },
  2473. { "time": 1.6667, "angle": 14.84 },
  2474. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2475. { "time": 2, "angle": 0 }
  2476. ],
  2477. "translate": [
  2478. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2479. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2480. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2481. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2482. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2483. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2484. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2485. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2486. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2487. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2488. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2489. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2490. { "time": 2, "x": 0, "y": 0 }
  2491. ],
  2492. "scale": [
  2493. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2494. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2495. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2496. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2497. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2498. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2499. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2500. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2501. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2502. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2503. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2504. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2505. { "time": 2, "x": 1, "y": 1 }
  2506. ]
  2507. },
  2508. "bone14": {
  2509. "rotate": [
  2510. { "time": 0, "angle": -18.95 },
  2511. { "time": 0.1667, "angle": 0.34 },
  2512. { "time": 0.3333, "angle": 24.87 },
  2513. { "time": 0.5, "angle": 44.49 },
  2514. { "time": 0.6667, "angle": 16.35 },
  2515. { "time": 0.8333, "angle": -11.63 },
  2516. { "time": 1, "angle": -18.95 },
  2517. { "time": 1.1667, "angle": 0.34 },
  2518. { "time": 1.3333, "angle": 24.87 },
  2519. { "time": 1.5, "angle": 44.49 },
  2520. { "time": 1.6667, "angle": 16.35 },
  2521. { "time": 1.8333, "angle": -11.63 },
  2522. { "time": 2, "angle": -18.95 }
  2523. ],
  2524. "translate": [
  2525. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2526. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2527. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2528. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2529. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2530. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2531. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2532. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2533. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2534. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2535. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2536. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2537. { "time": 2, "x": 0, "y": 0 }
  2538. ],
  2539. "scale": [
  2540. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2541. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2542. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2543. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2544. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2545. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2546. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2547. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2548. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2549. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2550. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2551. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2552. { "time": 2, "x": 1, "y": 1 }
  2553. ]
  2554. },
  2555. "bone15": {
  2556. "rotate": [
  2557. { "time": 0, "angle": 0 },
  2558. { "time": 0.1667, "angle": 5.41 },
  2559. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2560. { "time": 0.5, "angle": 0 },
  2561. { "time": 0.6667, "angle": 49.77 },
  2562. { "time": 0.8333, "angle": 46.19 },
  2563. { "time": 1, "angle": 0 },
  2564. { "time": 1.1667, "angle": 5.41 },
  2565. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2566. { "time": 1.5, "angle": 0 },
  2567. { "time": 1.6667, "angle": 49.77 },
  2568. { "time": 1.8333, "angle": 46.19 },
  2569. { "time": 2, "angle": 0 }
  2570. ],
  2571. "translate": [
  2572. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2573. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2574. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2575. { "time": 0.5, "x": 0, "y": 0 },
  2576. { "time": 0.6667, "x": -1.26, "y": -0.85 },
  2577. { "time": 0.8333, "x": -1.42, "y": -1.49 },
  2578. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2579. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2580. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2581. { "time": 1.5, "x": 0, "y": 0 },
  2582. { "time": 1.6667, "x": -1.26, "y": -0.85 },
  2583. { "time": 1.8333, "x": -1.42, "y": -1.49 },
  2584. { "time": 2, "x": 0, "y": 0 }
  2585. ],
  2586. "scale": [
  2587. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2588. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2589. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2590. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2591. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2592. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2593. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2594. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2595. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2596. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2597. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2598. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2599. { "time": 2, "x": 1, "y": 1 }
  2600. ]
  2601. },
  2602. "bone16": {
  2603. "rotate": [
  2604. { "time": 0, "angle": 0 },
  2605. { "time": 0.1667, "angle": -6.7 },
  2606. { "time": 0.3333, "angle": -22.13 },
  2607. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2608. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2609. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2610. { "time": 1, "angle": 0 },
  2611. { "time": 1.1667, "angle": -6.7 },
  2612. { "time": 1.3333, "angle": -22.13 },
  2613. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2614. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2615. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2616. { "time": 2, "angle": 0 }
  2617. ],
  2618. "translate": [
  2619. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2620. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2621. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2622. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2623. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2624. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2625. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2626. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2627. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2628. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2629. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2630. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2631. { "time": 2, "x": 0, "y": 0 }
  2632. ],
  2633. "scale": [
  2634. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2635. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2636. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2637. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2638. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2639. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2640. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2641. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2642. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2643. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2644. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2645. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2646. { "time": 2, "x": 1, "y": 1 }
  2647. ]
  2648. },
  2649. "bone17": {
  2650. "rotate": [
  2651. { "time": 0, "angle": 0, "curve": "stepped" },
  2652. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2653. { "time": 1, "angle": 0, "curve": "stepped" },
  2654. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2655. { "time": 2, "angle": 0 }
  2656. ],
  2657. "translate": [
  2658. { "time": 0, "x": 0, "y": 0 },
  2659. { "time": 0.5, "x": 1.84, "y": 3.92 },
  2660. { "time": 1, "x": 0, "y": 0 },
  2661. { "time": 1.5, "x": 1.84, "y": 3.92 },
  2662. { "time": 2, "x": 0, "y": 0 }
  2663. ],
  2664. "scale": [
  2665. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2666. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2667. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2668. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2669. { "time": 2, "x": 1, "y": 1 }
  2670. ]
  2671. },
  2672. "bone19": {
  2673. "rotate": [
  2674. { "time": 0, "angle": 0, "curve": "stepped" },
  2675. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2676. { "time": 1, "angle": 0, "curve": "stepped" },
  2677. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2678. { "time": 2, "angle": 0 }
  2679. ],
  2680. "translate": [
  2681. {
  2682. "time": 0,
  2683. "x": 0,
  2684. "y": 0,
  2685. "curve": [ 0.25, 0, 0.75, 1 ]
  2686. },
  2687. {
  2688. "time": 0.5,
  2689. "x": -2.25,
  2690. "y": 0.2,
  2691. "curve": [ 0.25, 0, 0.75, 1 ]
  2692. },
  2693. {
  2694. "time": 1,
  2695. "x": 0,
  2696. "y": 0,
  2697. "curve": [ 0.25, 0, 0.75, 1 ]
  2698. },
  2699. {
  2700. "time": 1.5,
  2701. "x": -2.25,
  2702. "y": 0.2,
  2703. "curve": [ 0.25, 0, 0.75, 1 ]
  2704. },
  2705. { "time": 2, "x": 0, "y": 0 }
  2706. ],
  2707. "scale": [
  2708. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2709. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2710. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2711. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2712. { "time": 2, "x": 1, "y": 1 }
  2713. ]
  2714. },
  2715. "bone20": {
  2716. "rotate": [
  2717. {
  2718. "time": 0,
  2719. "angle": 0,
  2720. "curve": [ 0.25, 0, 0.75, 1 ]
  2721. },
  2722. {
  2723. "time": 0.5,
  2724. "angle": 8.36,
  2725. "curve": [ 0.25, 0, 0.75, 1 ]
  2726. },
  2727. {
  2728. "time": 1,
  2729. "angle": 0,
  2730. "curve": [ 0.25, 0, 0.75, 1 ]
  2731. },
  2732. {
  2733. "time": 1.5,
  2734. "angle": 8.36,
  2735. "curve": [ 0.25, 0, 0.75, 1 ]
  2736. },
  2737. { "time": 2, "angle": 0 }
  2738. ],
  2739. "translate": [
  2740. {
  2741. "time": 0,
  2742. "x": 0,
  2743. "y": 0,
  2744. "curve": [ 0.243, 0, 0.649, 0.6 ]
  2745. },
  2746. {
  2747. "time": 0.5,
  2748. "x": -1.09,
  2749. "y": 2.92,
  2750. "curve": [ 0.382, 0.57, 0.735, 1 ]
  2751. },
  2752. {
  2753. "time": 1,
  2754. "x": 0,
  2755. "y": 0,
  2756. "curve": [ 0.243, 0, 0.649, 0.6 ]
  2757. },
  2758. {
  2759. "time": 1.5,
  2760. "x": -1.09,
  2761. "y": 2.92,
  2762. "curve": [ 0.382, 0.57, 0.735, 1 ]
  2763. },
  2764. { "time": 2, "x": 0, "y": 0 }
  2765. ],
  2766. "scale": [
  2767. {
  2768. "time": 0,
  2769. "x": 1,
  2770. "y": 1,
  2771. "curve": [ 0.25, 0, 0.75, 1 ]
  2772. },
  2773. {
  2774. "time": 0.5,
  2775. "x": 1,
  2776. "y": 0.9,
  2777. "curve": [ 0.25, 0, 0.75, 1 ]
  2778. },
  2779. {
  2780. "time": 1,
  2781. "x": 1,
  2782. "y": 1,
  2783. "curve": [ 0.25, 0, 0.75, 1 ]
  2784. },
  2785. {
  2786. "time": 1.5,
  2787. "x": 1,
  2788. "y": 0.9,
  2789. "curve": [ 0.25, 0, 0.75, 1 ]
  2790. },
  2791. { "time": 2, "x": 1, "y": 1 }
  2792. ]
  2793. },
  2794. "bone21": {
  2795. "rotate": [
  2796. {
  2797. "time": 0,
  2798. "angle": 0,
  2799. "curve": [ 0.25, 0, 0.75, 1 ]
  2800. },
  2801. {
  2802. "time": 0.5,
  2803. "angle": 8.36,
  2804. "curve": [ 0.25, 0, 0.75, 1 ]
  2805. },
  2806. {
  2807. "time": 1,
  2808. "angle": 0,
  2809. "curve": [ 0.25, 0, 0.75, 1 ]
  2810. },
  2811. {
  2812. "time": 1.5,
  2813. "angle": 8.36,
  2814. "curve": [ 0.25, 0, 0.75, 1 ]
  2815. },
  2816. { "time": 2, "angle": 0 }
  2817. ],
  2818. "translate": [
  2819. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2820. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2821. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2822. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2823. { "time": 2, "x": 0, "y": 0 }
  2824. ],
  2825. "scale": [
  2826. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2827. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2828. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2829. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2830. { "time": 2, "x": 1, "y": 1 }
  2831. ]
  2832. },
  2833. "bone22": {
  2834. "rotate": [
  2835. {
  2836. "time": 0,
  2837. "angle": 0,
  2838. "curve": [ 0.25, 0, 0.75, 1 ]
  2839. },
  2840. {
  2841. "time": 0.5,
  2842. "angle": 8.36,
  2843. "curve": [ 0.25, 0, 0.75, 1 ]
  2844. },
  2845. {
  2846. "time": 1,
  2847. "angle": 0,
  2848. "curve": [ 0.25, 0, 0.75, 1 ]
  2849. },
  2850. {
  2851. "time": 1.5,
  2852. "angle": 8.36,
  2853. "curve": [ 0.25, 0, 0.75, 1 ]
  2854. },
  2855. { "time": 2, "angle": 0 }
  2856. ],
  2857. "translate": [
  2858. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2859. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2860. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2861. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2862. { "time": 2, "x": 0, "y": 0 }
  2863. ],
  2864. "scale": [
  2865. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2866. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2867. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2868. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2869. { "time": 2, "x": 1, "y": 1 }
  2870. ]
  2871. },
  2872. "bone23": {
  2873. "rotate": [
  2874. { "time": 0, "angle": 0, "curve": "stepped" },
  2875. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2876. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2877. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2878. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2879. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2880. { "time": 1, "angle": 0, "curve": "stepped" },
  2881. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2882. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2883. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2884. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2885. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2886. { "time": 2, "angle": 0 }
  2887. ],
  2888. "translate": [
  2889. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2890. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2891. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2892. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2893. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2894. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2895. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2896. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2897. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2898. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2899. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2900. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2901. { "time": 2, "x": 0, "y": 0 }
  2902. ],
  2903. "scale": [
  2904. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2905. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2906. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2907. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2908. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2909. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2910. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2911. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2912. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2913. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2914. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2915. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2916. { "time": 2, "x": 1, "y": 1 }
  2917. ]
  2918. },
  2919. "bone24": {
  2920. "scale": [
  2921. {
  2922. "time": 0,
  2923. "x": 1,
  2924. "y": 0.8,
  2925. "curve": [ 0.25, 0, 0.75, 1 ]
  2926. },
  2927. {
  2928. "time": 0.5,
  2929. "x": 1,
  2930. "y": 1,
  2931. "curve": [ 0.25, 0, 0.75, 1 ]
  2932. },
  2933. {
  2934. "time": 1,
  2935. "x": 1,
  2936. "y": 0.8,
  2937. "curve": [ 0.25, 0, 0.75, 1 ]
  2938. },
  2939. {
  2940. "time": 1.5,
  2941. "x": 1,
  2942. "y": 1,
  2943. "curve": [ 0.25, 0, 0.75, 1 ]
  2944. },
  2945. { "time": 2, "x": 1, "y": 0.8 }
  2946. ]
  2947. },
  2948. "bone25": {
  2949. "rotate": [
  2950. {
  2951. "time": 0,
  2952. "angle": -12.67,
  2953. "curve": [ 0.25, 0, 0.75, 1 ]
  2954. },
  2955. {
  2956. "time": 0.5,
  2957. "angle": 2.55,
  2958. "curve": [ 0.25, 0, 0.75, 1 ]
  2959. },
  2960. {
  2961. "time": 1,
  2962. "angle": -12.67,
  2963. "curve": [ 0.25, 0, 0.75, 1 ]
  2964. },
  2965. {
  2966. "time": 1.5,
  2967. "angle": 2.55,
  2968. "curve": [ 0.25, 0, 0.75, 1 ]
  2969. },
  2970. { "time": 2, "angle": -12.67 }
  2971. ],
  2972. "translate": [
  2973. {
  2974. "time": 0,
  2975. "x": -1.62,
  2976. "y": -1.22,
  2977. "curve": [ 0.25, 0, 0.75, 1 ]
  2978. },
  2979. {
  2980. "time": 0.5,
  2981. "x": 0,
  2982. "y": 0,
  2983. "curve": [ 0.25, 0, 0.75, 1 ]
  2984. },
  2985. {
  2986. "time": 1,
  2987. "x": -1.62,
  2988. "y": -1.22,
  2989. "curve": [ 0.25, 0, 0.75, 1 ]
  2990. },
  2991. {
  2992. "time": 1.5,
  2993. "x": 0,
  2994. "y": 0,
  2995. "curve": [ 0.25, 0, 0.75, 1 ]
  2996. },
  2997. { "time": 2, "x": -1.62, "y": -1.22 }
  2998. ],
  2999. "scale": [
  3000. {
  3001. "time": 0,
  3002. "x": 1,
  3003. "y": 0.8,
  3004. "curve": [ 0.25, 0, 0.75, 1 ]
  3005. },
  3006. {
  3007. "time": 0.5,
  3008. "x": 1,
  3009. "y": 1,
  3010. "curve": [ 0.25, 0, 0.75, 1 ]
  3011. },
  3012. {
  3013. "time": 1,
  3014. "x": 1,
  3015. "y": 0.8,
  3016. "curve": [ 0.25, 0, 0.75, 1 ]
  3017. },
  3018. {
  3019. "time": 1.5,
  3020. "x": 1,
  3021. "y": 1,
  3022. "curve": [ 0.25, 0, 0.75, 1 ]
  3023. },
  3024. { "time": 2, "x": 1, "y": 0.8 }
  3025. ]
  3026. },
  3027. "bone26": {
  3028. "rotate": [
  3029. { "time": 0, "angle": -12.67 },
  3030. { "time": 0.2333, "angle": -7.31 },
  3031. {
  3032. "time": 0.5,
  3033. "angle": 2.55,
  3034. "curve": [ 0.25, 0, 0.75, 1 ]
  3035. },
  3036. { "time": 1, "angle": -12.67 },
  3037. { "time": 1.2333, "angle": -7.31 },
  3038. {
  3039. "time": 1.5,
  3040. "angle": 2.55,
  3041. "curve": [ 0.25, 0, 0.75, 1 ]
  3042. },
  3043. { "time": 2, "angle": -12.67 }
  3044. ],
  3045. "translate": [
  3046. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3047. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3048. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3049. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3050. { "time": 2, "x": 0, "y": 0 }
  3051. ],
  3052. "scale": [
  3053. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3054. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3055. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3056. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3057. { "time": 2, "x": 1, "y": 1 }
  3058. ]
  3059. },
  3060. "bone27": {
  3061. "rotate": [
  3062. { "time": 0, "angle": -12.67 },
  3063. { "time": 0.2333, "angle": -13.78 },
  3064. {
  3065. "time": 0.5,
  3066. "angle": 2.55,
  3067. "curve": [ 0.25, 0, 0.75, 1 ]
  3068. },
  3069. { "time": 1, "angle": -12.67 },
  3070. { "time": 1.2333, "angle": -13.78 },
  3071. {
  3072. "time": 1.5,
  3073. "angle": 2.55,
  3074. "curve": [ 0.25, 0, 0.75, 1 ]
  3075. },
  3076. { "time": 2, "angle": -12.67 }
  3077. ],
  3078. "translate": [
  3079. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3080. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3081. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3082. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3083. { "time": 2, "x": 0, "y": 0 }
  3084. ],
  3085. "scale": [
  3086. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3087. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3088. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3089. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3090. { "time": 2, "x": 1, "y": 1 }
  3091. ]
  3092. },
  3093. "bone28": {
  3094. "rotate": [
  3095. { "time": 0, "angle": 0, "curve": "stepped" },
  3096. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3097. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3098. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3099. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3100. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3101. { "time": 1, "angle": 0, "curve": "stepped" },
  3102. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3103. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3104. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3105. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3106. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3107. { "time": 2, "angle": 0 }
  3108. ],
  3109. "translate": [
  3110. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3111. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3112. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3113. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3114. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3115. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3116. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3117. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3118. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3119. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3120. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3121. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3122. { "time": 2, "x": 0, "y": 0 }
  3123. ],
  3124. "scale": [
  3125. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3126. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3127. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3128. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3129. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3130. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3131. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3132. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3133. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3134. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3135. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3136. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3137. { "time": 2, "x": 1, "y": 1 }
  3138. ]
  3139. },
  3140. "bone30": {
  3141. "rotate": [
  3142. {
  3143. "time": 0,
  3144. "angle": 0,
  3145. "curve": [ 0.25, 0, 0.75, 1 ]
  3146. },
  3147. { "time": 0.5, "angle": -5.88 },
  3148. {
  3149. "time": 1,
  3150. "angle": 0,
  3151. "curve": [ 0.25, 0, 0.75, 1 ]
  3152. },
  3153. { "time": 1.5, "angle": -5.88 },
  3154. { "time": 2, "angle": 0 }
  3155. ],
  3156. "translate": [
  3157. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3158. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3159. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3160. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3161. { "time": 2, "x": 0, "y": 0 }
  3162. ],
  3163. "scale": [
  3164. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3165. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3166. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3167. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3168. { "time": 2, "x": 1, "y": 1 }
  3169. ]
  3170. },
  3171. "bone31": {
  3172. "rotate": [
  3173. {
  3174. "time": 0,
  3175. "angle": 0,
  3176. "curve": [ 0.25, 0, 0.75, 1 ]
  3177. },
  3178. { "time": 0.5, "angle": -16.35 },
  3179. {
  3180. "time": 1,
  3181. "angle": 0,
  3182. "curve": [ 0.25, 0, 0.75, 1 ]
  3183. },
  3184. { "time": 1.5, "angle": -16.35 },
  3185. { "time": 2, "angle": 0 }
  3186. ],
  3187. "translate": [
  3188. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3189. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3190. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3191. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3192. { "time": 2, "x": 0, "y": 0 }
  3193. ],
  3194. "scale": [
  3195. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3196. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3197. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3198. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3199. { "time": 2, "x": 1, "y": 1 }
  3200. ]
  3201. },
  3202. "bone32": {
  3203. "rotate": [
  3204. {
  3205. "time": 0,
  3206. "angle": 0,
  3207. "curve": [ 0.25, 0, 0.75, 1 ]
  3208. },
  3209. { "time": 0.5, "angle": -16.35 },
  3210. {
  3211. "time": 1,
  3212. "angle": 0,
  3213. "curve": [ 0.25, 0, 0.75, 1 ]
  3214. },
  3215. { "time": 1.5, "angle": -16.35 },
  3216. { "time": 2, "angle": 0 }
  3217. ],
  3218. "translate": [
  3219. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3220. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3221. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3222. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3223. { "time": 2, "x": 0, "y": 0 }
  3224. ],
  3225. "scale": [
  3226. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3227. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3228. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3229. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3230. { "time": 2, "x": 1, "y": 1 }
  3231. ]
  3232. },
  3233. "bone33": {
  3234. "rotate": [
  3235. { "time": 0, "angle": 0, "curve": "stepped" },
  3236. { "time": 1, "angle": 0, "curve": "stepped" },
  3237. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3238. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3239. { "time": 1.3667, "angle": 0 }
  3240. ],
  3241. "translate": [
  3242. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3243. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3244. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3245. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3246. { "time": 1.3667, "x": 0, "y": 0 }
  3247. ],
  3248. "scale": [
  3249. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3250. { "time": 1, "x": 1, "y": 1 },
  3251. { "time": 1.1, "x": 0.365, "y": 1, "curve": "stepped" },
  3252. { "time": 1.2, "x": 0.365, "y": 1 },
  3253. { "time": 1.3667, "x": 1, "y": 1 }
  3254. ]
  3255. },
  3256. "bone34": {
  3257. "rotate": [
  3258. { "time": 0, "angle": 0, "curve": "stepped" },
  3259. { "time": 1, "angle": 0, "curve": "stepped" },
  3260. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3261. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3262. { "time": 1.3667, "angle": 0 }
  3263. ],
  3264. "translate": [
  3265. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3266. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3267. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3268. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3269. { "time": 1.3667, "x": 0, "y": 0 }
  3270. ],
  3271. "scale": [
  3272. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3273. { "time": 1, "x": 1, "y": 1 },
  3274. { "time": 1.1, "x": 0.365, "y": 1, "curve": "stepped" },
  3275. { "time": 1.2, "x": 0.365, "y": 1 },
  3276. { "time": 1.3667, "x": 1, "y": 1 }
  3277. ]
  3278. },
  3279. "bone35": {
  3280. "rotate": [
  3281. { "time": 0, "angle": 0, "curve": "stepped" },
  3282. { "time": 1, "angle": 0, "curve": "stepped" },
  3283. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3284. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3285. { "time": 1.3667, "angle": 0 }
  3286. ],
  3287. "translate": [
  3288. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3289. { "time": 1, "x": 0, "y": 0 },
  3290. { "time": 1.1, "x": -1.08, "y": 0, "curve": "stepped" },
  3291. { "time": 1.2, "x": -1.08, "y": 0 },
  3292. { "time": 1.3667, "x": 0, "y": 0 }
  3293. ],
  3294. "scale": [
  3295. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3296. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3297. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3298. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  3299. { "time": 1.3667, "x": 1, "y": 1 }
  3300. ]
  3301. },
  3302. "bone36": {
  3303. "rotate": [
  3304. { "time": 0, "angle": 0 }
  3305. ],
  3306. "translate": [
  3307. { "time": 0, "x": -1.34, "y": 0 }
  3308. ],
  3309. "scale": [
  3310. { "time": 0, "x": 1, "y": 1 }
  3311. ]
  3312. },
  3313. "bone37": {
  3314. "rotate": [
  3315. { "time": 0, "angle": 0, "curve": "stepped" },
  3316. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3317. { "time": 1, "angle": 0, "curve": "stepped" },
  3318. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3319. { "time": 2, "angle": 0 }
  3320. ],
  3321. "translate": [
  3322. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3323. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3324. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3325. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3326. { "time": 2, "x": 0, "y": 0 }
  3327. ],
  3328. "scale": [
  3329. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3330. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3331. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3332. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3333. { "time": 2, "x": 1, "y": 1 }
  3334. ]
  3335. },
  3336. "bone38": {
  3337. "rotate": [
  3338. {
  3339. "time": 0,
  3340. "angle": 0,
  3341. "curve": [ 0.25, 0, 0.75, 1 ]
  3342. },
  3343. {
  3344. "time": 0.5,
  3345. "angle": -1.99,
  3346. "curve": [ 0.25, 0, 0.75, 1 ]
  3347. },
  3348. {
  3349. "time": 1,
  3350. "angle": 0,
  3351. "curve": [ 0.25, 0, 0.75, 1 ]
  3352. },
  3353. {
  3354. "time": 1.5,
  3355. "angle": -1.99,
  3356. "curve": [ 0.25, 0, 0.75, 1 ]
  3357. },
  3358. { "time": 2, "angle": 0 }
  3359. ],
  3360. "translate": [
  3361. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3362. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3363. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3364. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3365. { "time": 2, "x": 0, "y": 0 }
  3366. ],
  3367. "scale": [
  3368. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3369. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3370. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3371. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3372. { "time": 2, "x": 1, "y": 1 }
  3373. ]
  3374. },
  3375. "bone39": {
  3376. "rotate": [
  3377. {
  3378. "time": 0,
  3379. "angle": 0,
  3380. "curve": [ 0.25, 0, 0.75, 1 ]
  3381. },
  3382. {
  3383. "time": 0.5,
  3384. "angle": -5.04,
  3385. "curve": [ 0.25, 0, 0.75, 1 ]
  3386. },
  3387. {
  3388. "time": 1,
  3389. "angle": 0,
  3390. "curve": [ 0.25, 0, 0.75, 1 ]
  3391. },
  3392. {
  3393. "time": 1.5,
  3394. "angle": -5.04,
  3395. "curve": [ 0.25, 0, 0.75, 1 ]
  3396. },
  3397. { "time": 2, "angle": 0 }
  3398. ],
  3399. "translate": [
  3400. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3401. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3402. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3403. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3404. { "time": 2, "x": 0, "y": 0 }
  3405. ],
  3406. "scale": [
  3407. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3408. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3409. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3410. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3411. { "time": 2, "x": 1, "y": 1 }
  3412. ]
  3413. },
  3414. "bone40": {
  3415. "rotate": [
  3416. {
  3417. "time": 0,
  3418. "angle": 0,
  3419. "curve": [ 0.25, 0, 0.75, 1 ]
  3420. },
  3421. {
  3422. "time": 0.5,
  3423. "angle": -0.51,
  3424. "curve": [ 0.25, 0, 0.75, 1 ]
  3425. },
  3426. {
  3427. "time": 1,
  3428. "angle": 0,
  3429. "curve": [ 0.25, 0, 0.75, 1 ]
  3430. },
  3431. {
  3432. "time": 1.5,
  3433. "angle": -0.51,
  3434. "curve": [ 0.25, 0, 0.75, 1 ]
  3435. },
  3436. { "time": 2, "angle": 0 }
  3437. ],
  3438. "translate": [
  3439. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3440. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3441. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3442. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3443. { "time": 2, "x": 0, "y": 0 }
  3444. ],
  3445. "scale": [
  3446. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3447. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3448. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3449. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3450. { "time": 2, "x": 1, "y": 1 }
  3451. ]
  3452. },
  3453. "bone41": {
  3454. "rotate": [
  3455. {
  3456. "time": 0,
  3457. "angle": 0,
  3458. "curve": [ 0.25, 0, 0.75, 1 ]
  3459. },
  3460. {
  3461. "time": 0.5,
  3462. "angle": -0.51,
  3463. "curve": [ 0.25, 0, 0.75, 1 ]
  3464. },
  3465. {
  3466. "time": 1,
  3467. "angle": 0,
  3468. "curve": [ 0.25, 0, 0.75, 1 ]
  3469. },
  3470. {
  3471. "time": 1.5,
  3472. "angle": -0.51,
  3473. "curve": [ 0.25, 0, 0.75, 1 ]
  3474. },
  3475. { "time": 2, "angle": 0 }
  3476. ],
  3477. "translate": [
  3478. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3479. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3480. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3481. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3482. { "time": 2, "x": 0, "y": 0 }
  3483. ],
  3484. "scale": [
  3485. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3486. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3487. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3488. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3489. { "time": 2, "x": 1, "y": 1 }
  3490. ]
  3491. },
  3492. "bone42": {
  3493. "rotate": [
  3494. {
  3495. "time": 0,
  3496. "angle": 0,
  3497. "curve": [ 0.25, 0, 0.75, 1 ]
  3498. },
  3499. {
  3500. "time": 0.5,
  3501. "angle": 1.88,
  3502. "curve": [ 0.25, 0, 0.75, 1 ]
  3503. },
  3504. {
  3505. "time": 1,
  3506. "angle": 0,
  3507. "curve": [ 0.25, 0, 0.75, 1 ]
  3508. },
  3509. {
  3510. "time": 1.5,
  3511. "angle": 1.88,
  3512. "curve": [ 0.25, 0, 0.75, 1 ]
  3513. },
  3514. { "time": 2, "angle": 0 }
  3515. ],
  3516. "translate": [
  3517. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3518. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3519. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3520. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3521. { "time": 2, "x": 0, "y": 0 }
  3522. ],
  3523. "scale": [
  3524. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3525. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3526. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3527. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3528. { "time": 2, "x": 1, "y": 1 }
  3529. ]
  3530. },
  3531. "bone43": {
  3532. "rotate": [
  3533. {
  3534. "time": 0,
  3535. "angle": 0,
  3536. "curve": [ 0.25, 0, 0.75, 1 ]
  3537. },
  3538. {
  3539. "time": 0.5,
  3540. "angle": 10.14,
  3541. "curve": [ 0.25, 0, 0.75, 1 ]
  3542. },
  3543. {
  3544. "time": 1,
  3545. "angle": 0,
  3546. "curve": [ 0.25, 0, 0.75, 1 ]
  3547. },
  3548. {
  3549. "time": 1.5,
  3550. "angle": 10.14,
  3551. "curve": [ 0.25, 0, 0.75, 1 ]
  3552. },
  3553. { "time": 2, "angle": 0 }
  3554. ],
  3555. "translate": [
  3556. {
  3557. "time": 0,
  3558. "x": 0,
  3559. "y": 0,
  3560. "curve": [ 0.25, 0, 0.75, 1 ]
  3561. },
  3562. {
  3563. "time": 0.5,
  3564. "x": 0.76,
  3565. "y": 0.27,
  3566. "curve": [ 0.25, 0, 0.75, 1 ]
  3567. },
  3568. {
  3569. "time": 1,
  3570. "x": 0,
  3571. "y": 0,
  3572. "curve": [ 0.25, 0, 0.75, 1 ]
  3573. },
  3574. {
  3575. "time": 1.5,
  3576. "x": 0.76,
  3577. "y": 0.27,
  3578. "curve": [ 0.25, 0, 0.75, 1 ]
  3579. },
  3580. { "time": 2, "x": 0, "y": 0 }
  3581. ],
  3582. "scale": [
  3583. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3584. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3585. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3586. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3587. { "time": 2, "x": 1, "y": 1 }
  3588. ]
  3589. },
  3590. "bone44": {
  3591. "rotate": [
  3592. {
  3593. "time": 0,
  3594. "angle": 7.93,
  3595. "curve": [ 0.25, 0, 0.75, 1 ]
  3596. },
  3597. {
  3598. "time": 0.5,
  3599. "angle": 4.71,
  3600. "curve": [ 0.25, 0, 0.75, 1 ]
  3601. },
  3602. {
  3603. "time": 1,
  3604. "angle": 7.93,
  3605. "curve": [ 0.25, 0, 0.75, 1 ]
  3606. },
  3607. {
  3608. "time": 1.5,
  3609. "angle": 4.71,
  3610. "curve": [ 0.25, 0, 0.75, 1 ]
  3611. },
  3612. { "time": 2, "angle": 7.93 }
  3613. ],
  3614. "translate": [
  3615. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3616. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3617. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3618. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3619. { "time": 2, "x": 0, "y": 0 }
  3620. ],
  3621. "scale": [
  3622. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3623. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3624. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3625. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3626. { "time": 2, "x": 1, "y": 1 }
  3627. ]
  3628. },
  3629. "bone45": {
  3630. "rotate": [
  3631. {
  3632. "time": 0,
  3633. "angle": 0,
  3634. "curve": [ 0.25, 0, 0.75, 1 ]
  3635. },
  3636. {
  3637. "time": 0.5,
  3638. "angle": 4.71,
  3639. "curve": [ 0.25, 0, 0.75, 1 ]
  3640. },
  3641. {
  3642. "time": 1,
  3643. "angle": 0,
  3644. "curve": [ 0.25, 0, 0.75, 1 ]
  3645. },
  3646. {
  3647. "time": 1.5,
  3648. "angle": 4.71,
  3649. "curve": [ 0.25, 0, 0.75, 1 ]
  3650. },
  3651. { "time": 2, "angle": 0 }
  3652. ],
  3653. "translate": [
  3654. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3655. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3656. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3657. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3658. { "time": 2, "x": 0, "y": 0 }
  3659. ],
  3660. "scale": [
  3661. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3662. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3663. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3664. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3665. { "time": 2, "x": 1, "y": 1 }
  3666. ]
  3667. },
  3668. "bone46": {
  3669. "rotate": [
  3670. { "time": 0, "angle": 0, "curve": "stepped" },
  3671. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3672. { "time": 1, "angle": 0, "curve": "stepped" },
  3673. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3674. { "time": 2, "angle": 0 }
  3675. ],
  3676. "translate": [
  3677. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3678. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3679. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3680. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3681. { "time": 2, "x": 0, "y": 0 }
  3682. ],
  3683. "scale": [
  3684. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3685. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3686. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3687. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3688. { "time": 2, "x": 1, "y": 1 }
  3689. ]
  3690. },
  3691. "bone47": {
  3692. "rotate": [
  3693. {
  3694. "time": 0,
  3695. "angle": 0,
  3696. "curve": [ 0.25, 0, 0.75, 1 ]
  3697. },
  3698. {
  3699. "time": 0.5,
  3700. "angle": 10.37,
  3701. "curve": [ 0.25, 0, 0.75, 1 ]
  3702. },
  3703. {
  3704. "time": 1,
  3705. "angle": 0,
  3706. "curve": [ 0.25, 0, 0.75, 1 ]
  3707. },
  3708. {
  3709. "time": 1.5,
  3710. "angle": 10.37,
  3711. "curve": [ 0.25, 0, 0.75, 1 ]
  3712. },
  3713. { "time": 2, "angle": 0 }
  3714. ],
  3715. "translate": [
  3716. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3717. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3718. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3719. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3720. { "time": 2, "x": 0, "y": 0 }
  3721. ],
  3722. "scale": [
  3723. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3724. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3725. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3726. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3727. { "time": 2, "x": 1, "y": 1 }
  3728. ]
  3729. },
  3730. "bone48": {
  3731. "rotate": [
  3732. {
  3733. "time": 0,
  3734. "angle": 0,
  3735. "curve": [ 0.25, 0, 0.75, 1 ]
  3736. },
  3737. {
  3738. "time": 0.5,
  3739. "angle": -9.9,
  3740. "curve": [ 0.25, 0, 0.75, 1 ]
  3741. },
  3742. {
  3743. "time": 1,
  3744. "angle": 0,
  3745. "curve": [ 0.25, 0, 0.75, 1 ]
  3746. },
  3747. {
  3748. "time": 1.5,
  3749. "angle": -9.9,
  3750. "curve": [ 0.25, 0, 0.75, 1 ]
  3751. },
  3752. { "time": 2, "angle": 0 }
  3753. ],
  3754. "translate": [
  3755. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3756. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3757. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3758. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3759. { "time": 2, "x": 0, "y": 0 }
  3760. ],
  3761. "scale": [
  3762. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3763. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3764. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3765. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3766. { "time": 2, "x": 1, "y": 1 }
  3767. ]
  3768. },
  3769. "bone49": {
  3770. "rotate": [
  3771. {
  3772. "time": 0,
  3773. "angle": 0,
  3774. "curve": [ 0.25, 0, 0.75, 1 ]
  3775. },
  3776. {
  3777. "time": 0.5,
  3778. "angle": -6.56,
  3779. "curve": [ 0.25, 0, 0.75, 1 ]
  3780. },
  3781. {
  3782. "time": 1,
  3783. "angle": 0,
  3784. "curve": [ 0.25, 0, 0.75, 1 ]
  3785. },
  3786. {
  3787. "time": 1.5,
  3788. "angle": -6.56,
  3789. "curve": [ 0.25, 0, 0.75, 1 ]
  3790. },
  3791. { "time": 2, "angle": 0 }
  3792. ],
  3793. "translate": [
  3794. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3795. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3796. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3797. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3798. { "time": 2, "x": 0, "y": 0 }
  3799. ],
  3800. "scale": [
  3801. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3802. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3803. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3804. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3805. { "time": 2, "x": 1, "y": 1 }
  3806. ]
  3807. },
  3808. "bone29": {
  3809. "translate": [
  3810. { "time": 0, "x": 0.08, "y": -1.1, "curve": "stepped" },
  3811. { "time": 1, "x": 0.08, "y": -1.1 }
  3812. ]
  3813. },
  3814. "bone4": {
  3815. "translate": [
  3816. { "time": 0, "x": 0.07, "y": -1.11, "curve": "stepped" },
  3817. { "time": 1, "x": 0.07, "y": -1.11 }
  3818. ]
  3819. }
  3820. },
  3821. "deform": {
  3822. "default": {
  3823. "chenyi": {
  3824. "chenyi": [
  3825. {
  3826. "time": 0,
  3827. "offset": 34,
  3828. "vertices": [ -0.21918, -10.04058, 0.05614, -10.04282, 2.04752, -13.65644, 2.42107, -13.59519, 1.77298, -1.25114, 3.61602, 8.12716, 0.03322, 7.65418, 0, 0, 1.92733, -2.81433, -0.78955, -4.37572, -0.66937, -4.39571, -0.54735, -4.82689, -0.4149, -4.84008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.56107, -0.20083 ],
  3829. "curve": "stepped"
  3830. },
  3831. {
  3832. "time": 1,
  3833. "offset": 34,
  3834. "vertices": [ -0.21918, -10.04058, 0.05614, -10.04282, 2.04752, -13.65644, 2.42107, -13.59519, 1.77298, -1.25114, 3.61602, 8.12716, 0.03322, 7.65418, 0, 0, 1.92733, -2.81433, -0.78955, -4.37572, -0.66937, -4.39571, -0.54735, -4.82689, -0.4149, -4.84008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.56107, -0.20083 ]
  3835. }
  3836. ]
  3837. },
  3838. "toufa2": {
  3839. "toufa2": [
  3840. {
  3841. "time": 0,
  3842. "offset": 2,
  3843. "vertices": [ -2.03989, 0.00681 ]
  3844. },
  3845. { "time": 0.5 },
  3846. {
  3847. "time": 1,
  3848. "offset": 2,
  3849. "vertices": [ -2.03989, 0.00681 ]
  3850. },
  3851. { "time": 1.5 },
  3852. {
  3853. "time": 2,
  3854. "offset": 2,
  3855. "vertices": [ -2.03989, 0.00681 ]
  3856. }
  3857. ]
  3858. },
  3859. "toufa5": {
  3860. "toufa5": [
  3861. { "time": 0 },
  3862. {
  3863. "time": 0.5,
  3864. "offset": 6,
  3865. "vertices": [ -1.6359, -1.21858, 0.20347, -0.20467, -0.60434, 2.24601 ]
  3866. },
  3867. { "time": 1 },
  3868. {
  3869. "time": 1.5,
  3870. "offset": 6,
  3871. "vertices": [ -1.6359, -1.21858, 0.20347, -0.20467, -0.60434, 2.24601 ]
  3872. },
  3873. { "time": 2 }
  3874. ]
  3875. },
  3876. "waitaohou": {
  3877. "waitaohou": [
  3878. {
  3879. "time": 0,
  3880. "vertices": [ -2.5376, 0.04491, -2.52264, 0.89078, -3.54265, 4.4574, -5.14863, -5.69977, -9.35645, -16.04894, -9.4333, -9.48458, -8.77579, -5.05651, 0, 0, 0, 0, 0, 0, -3.97716, -4.94838, -3.57415, -3.99036 ]
  3881. },
  3882. {
  3883. "time": 0.5,
  3884. "vertices": [ -11.12916, 6.13391, -10.8797, 8.24981, -12.07646, 12.51166, -6.01128, 4.95113, -5.47238, -0.42822, -5.55107, 0.83336, -9.46989, 1.32878, 0, 0, 0, 0, 0, 0, -9.40202, 4.93815, -8.05604, 3.40007 ]
  3885. },
  3886. {
  3887. "time": 1,
  3888. "vertices": [ -2.5376, 0.04491, -2.52264, 0.89078, -3.54265, 4.4574, -5.14863, -5.69977, -9.35645, -16.04894, -9.4333, -9.48458, -8.77579, -5.05651, 0, 0, 0, 0, 0, 0, -3.97716, -4.94838, -3.57415, -3.99036 ]
  3889. },
  3890. {
  3891. "time": 1.5,
  3892. "vertices": [ -11.12916, 6.13391, -10.8797, 8.24981, -12.07646, 12.51166, -6.01128, 4.95113, -5.47238, -0.42822, -5.55107, 0.83336, -9.46989, 1.32878, 0, 0, 0, 0, 0, 0, -9.40202, 4.93815, -8.05604, 3.40007 ]
  3893. },
  3894. {
  3895. "time": 2,
  3896. "vertices": [ -2.5376, 0.04491, -2.52264, 0.89078, -3.54265, 4.4574, -5.14863, -5.69977, -9.35645, -16.04894, -9.4333, -9.48458, -8.77579, -5.05651, 0, 0, 0, 0, 0, 0, -3.97716, -4.94838, -3.57415, -3.99036 ]
  3897. }
  3898. ]
  3899. },
  3900. "waitaoyou": {
  3901. "waitaoyou": [
  3902. {
  3903. "time": 0,
  3904. "offset": 2,
  3905. "vertices": [ 0.80276, 3.25943 ],
  3906. "curve": "stepped"
  3907. },
  3908. {
  3909. "time": 1,
  3910. "offset": 2,
  3911. "vertices": [ 0.80276, 3.25943 ]
  3912. }
  3913. ]
  3914. },
  3915. "yiling": {
  3916. "yiling": [
  3917. {
  3918. "time": 0,
  3919. "offset": 14,
  3920. "vertices": [ -2.85715, 0.58546 ]
  3921. },
  3922. {
  3923. "time": 0.5,
  3924. "offset": 8,
  3925. "vertices": [ -4.5071, -0.13072 ]
  3926. },
  3927. {
  3928. "time": 1,
  3929. "offset": 14,
  3930. "vertices": [ -2.85715, 0.58546 ]
  3931. },
  3932. {
  3933. "time": 1.5,
  3934. "offset": 8,
  3935. "vertices": [ -4.5071, -0.13072 ]
  3936. },
  3937. {
  3938. "time": 2,
  3939. "offset": 14,
  3940. "vertices": [ -2.85715, 0.58546 ]
  3941. }
  3942. ]
  3943. },
  3944. "youshou": {
  3945. "youshou": [
  3946. {
  3947. "time": 0,
  3948. "offset": 66,
  3949. "vertices": [ 1.06472, -2.85829, 3.44069, 0.02202, 3.10467, 0.45833 ],
  3950. "curve": "stepped"
  3951. },
  3952. {
  3953. "time": 1,
  3954. "offset": 66,
  3955. "vertices": [ 1.06472, -2.85829, 3.44069, 0.02202, 3.10467, 0.45833 ],
  3956. "curve": "stepped"
  3957. },
  3958. {
  3959. "time": 2,
  3960. "offset": 66,
  3961. "vertices": [ 1.06472, -2.85829, 3.44069, 0.02202, 3.10467, 0.45833 ]
  3962. }
  3963. ]
  3964. }
  3965. }
  3966. }
  3967. }
  3968. }
  3969. }