60002.json 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948
  1. {
  2. "skeleton": { "hash": "p0iNyv2Ydz/lZhFMFtoCAL+uJ64", "spine": "3.6.53", "width": 100, "height": 205, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -1.88, "y": 63.8 },
  6. { "name": "bone2", "parent": "bone", "length": 21.53, "rotation": 91.09, "x": 0.21, "y": 0.61 },
  7. { "name": "bone3", "parent": "bone2", "length": 19.27, "rotation": -2.31, "x": 21.32 },
  8. { "name": "bone4", "parent": "bone", "length": 10.21, "rotation": 90.83, "x": 0.17, "y": -9.86 },
  9. { "name": "zuoshou", "parent": "bone3", "length": 18.54, "rotation": 161.76, "x": 18.74, "y": 11.3, "color": "30b01bff" },
  10. { "name": "bone5", "parent": "zuoshou", "length": 16.87, "rotation": -4.76, "x": 18.54, "color": "30b01bff" },
  11. { "name": "bone6", "parent": "bone5", "length": 15.08, "rotation": -4.33, "x": 16.87, "color": "30b01bff" },
  12. { "name": "bone7", "parent": "bone", "length": 28.08, "rotation": -79.64, "x": 12.37, "y": -9.61, "color": "01c8c2ff" },
  13. { "name": "youshou", "parent": "bone3", "length": 21.25, "rotation": -152.39, "x": 21.53, "y": -14.03, "color": "f6213fff" },
  14. { "name": "bone8", "parent": "youshou", "length": 19.93, "rotation": 1.44, "x": 21.25, "color": "f6213fff" },
  15. { "name": "bone9", "parent": "bone8", "length": 10.81, "rotation": -5.62, "x": 19.93, "color": "f6213fff" },
  16. { "name": "bone10", "parent": "bone3", "length": 55.13, "rotation": 5.33, "x": 24.91, "y": 1.86 },
  17. { "name": "bone11", "parent": "bone10", "x": 28.43, "y": 6.48 },
  18. { "name": "bone12", "parent": "bone10", "length": 11.82, "rotation": 2.15, "x": 16.73, "y": 18.94 },
  19. { "name": "bone13", "parent": "bone10", "length": 11.52, "rotation": 3.12, "x": 16.25, "y": -10.24 },
  20. { "name": "bone14", "parent": "bone10", "x": 18.57, "y": 6.22 },
  21. { "name": "bone15", "parent": "bone10", "length": 9.98, "rotation": 174.97, "x": 35.85, "y": 26.61 },
  22. { "name": "bone16", "parent": "bone15", "length": 6.14, "rotation": -3.59, "x": 9.98 },
  23. { "name": "bone17", "parent": "bone16", "length": 6.73, "rotation": -6.53, "x": 6.14 },
  24. { "name": "bone18", "parent": "bone10", "length": 12.89, "rotation": 162.95, "x": 26, "y": -42.76 },
  25. { "name": "bone19", "parent": "bone18", "length": 9.49, "rotation": -13.62, "x": 12.89 },
  26. { "name": "bone20", "parent": "bone10", "length": 7.91, "rotation": 3.17, "x": 1.67, "y": 2.88 },
  27. { "name": "zuotui", "parent": "bone4", "length": 21.87, "rotation": 172.52, "x": 2.71, "y": 9.9, "color": "cf23ffff" },
  28. { "name": "bone21", "parent": "zuotui", "length": 22.32, "rotation": 2.47, "x": 21.87, "color": "cf23ffff" },
  29. { "name": "bone22", "parent": "bone21", "length": 10, "rotation": -77.61, "x": 26.55, "y": 1.76, "color": "cf23ffff" },
  30. { "name": "bone23", "parent": "bone7", "length": 19.92, "rotation": -0.05, "x": 28.08, "color": "01c8c2ff" },
  31. { "name": "youtui", "parent": "bone4", "length": 25.11, "rotation": -175.04, "x": 5.08, "y": -13.67, "color": "8691f6ff" },
  32. { "name": "bone24", "parent": "youtui", "length": 26.31, "rotation": 2.11, "x": 25.3, "y": 0.16, "color": "8691f6ff" },
  33. { "name": "bone25", "parent": "bone24", "length": 19.35, "rotation": -87.12, "x": 26.31, "color": "8691f6ff" },
  34. { "name": "bone26", "parent": "bone23", "length": 10, "rotation": 70.87, "x": 19.92, "color": "01c8c2ff" },
  35. { "name": "bone27", "parent": "bone26", "length": 9.94, "rotation": 3.22, "x": 9.66, "y": -0.13, "color": "01c8c2ff" },
  36. { "name": "bone28", "parent": "bone22", "length": 10.43, "rotation": 1.43, "x": 9.95, "y": 0.24, "color": "cf23ffff" }
  37. ],
  38. "slots": [
  39. { "name": "zuoshou", "bone": "zuoshou", "attachment": "zuoshou" },
  40. { "name": "toufa2", "bone": "bone18", "attachment": "toufa2" },
  41. { "name": "zuotui", "bone": "zuotui", "attachment": "zuotui" },
  42. { "name": "youtui", "bone": "youtui", "attachment": "youtui" },
  43. { "name": "kudang", "bone": "bone4", "attachment": "kudang" },
  44. { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
  45. { "name": "youshou", "bone": "youshou", "attachment": "youshou" },
  46. { "name": "toufa3", "bone": "bone15", "attachment": "toufa3" },
  47. { "name": "lian", "bone": "bone10", "attachment": "lian" },
  48. { "name": "zuiba", "bone": "bone20", "attachment": "zuiba" },
  49. { "name": "zuoyan", "bone": "bone12", "attachment": "zuoyan" },
  50. { "name": "youyan", "bone": "bone13", "attachment": "youyan" },
  51. { "name": "biyan", "bone": "bone14" },
  52. { "name": "meimao", "bone": "bone11", "attachment": "meimao" },
  53. { "name": "erduo", "bone": "bone10", "attachment": "erduo" },
  54. { "name": "toufa1", "bone": "bone10", "attachment": "toufa1" },
  55. { "name": "youtuitiji", "bone": "root", "attachment": "youtuitiji" },
  56. { "name": "zuiba2", "bone": "bone20", "attachment": "zuiba2" }
  57. ],
  58. "skins": {
  59. "default": {
  60. "biyan": {
  61. "biyan": { "x": 0.45, "y": -2.35, "rotation": -94.11, "width": 50, "height": 8 }
  62. },
  63. "erduo": {
  64. "erduo": { "x": 22.24, "y": -41.97, "rotation": -94.11, "width": 19, "height": 23 }
  65. },
  66. "kudang": {
  67. "kudang": {
  68. "type": "mesh",
  69. "uvs": [ 1, 0.57179, 1, 1, 0.87185, 1, 0.09594, 1, 0, 1, 0, 0.5621, 0, 0, 0.09165, 0, 0.84014, 0, 1, 0, 0.85481, 0.57038, 0.09808, 0.56305 ],
  70. "triangles": [ 5, 6, 7, 11, 7, 8, 5, 7, 11, 10, 8, 9, 11, 8, 10, 10, 9, 0, 4, 5, 11, 3, 4, 11, 3, 11, 10, 2, 10, 0, 3, 10, 2, 2, 0, 1 ],
  71. "vertices": [ 2.64, -24.12, -2.92, -24.04, -2.85, -18.78, -2.38, 13.02, -2.33, 16.96, 3.36, 16.88, 10.67, 16.77, 10.62, 13.01, 10.17, -17.67, 10.08, -24.23, 2.75, -18.17, 3.29, 12.85 ],
  72. "hull": 10,
  73. "edges": [ 8, 10, 10, 12, 2, 0, 0, 18, 16, 18, 0, 20, 16, 20, 2, 4, 20, 4, 12, 14, 14, 16, 10, 22, 22, 20, 14, 22, 4, 6, 6, 8, 22, 6 ],
  74. "width": 41,
  75. "height": 13
  76. }
  77. },
  78. "lian": {
  79. "lian": { "x": 36.01, "y": -3.86, "rotation": -94.11, "width": 77, "height": 85 }
  80. },
  81. "meimao": {
  82. "meimao": { "x": 4.52, "y": -4.11, "rotation": -94.11, "width": 59, "height": 16 }
  83. },
  84. "shenti": {
  85. "shenti": {
  86. "type": "mesh",
  87. "uvs": [ 0.77291, 0.0662, 0.81104, 0.08645, 0.8371, 0.10028, 0.92361, 0.43845, 0.93591, 0.48651, 0.94788, 0.53332, 1, 0.73702, 1, 0.8736, 1, 1, 0.45291, 1, 0, 1, 0, 0.8736, 0, 0.69688, 0, 0.53373, 0, 0.49099, 0, 0.44587, 0.16041, 0.10948, 0.1633, 0.08839, 0.16697, 0.06155, 0.17541, 0, 0.44291, 0, 0.76041, 0, 0.44291, 0.5285, 0.44291, 0.10948, 0.44291, 0.0662, 0.44291, 0.08728, 0.44291, 0.44825, 0.44291, 0.4897, 0.44673, 0.70856, 0.44998, 0.86195 ],
  88. "triangles": [ 27, 14, 26, 14, 15, 26, 27, 26, 3, 15, 16, 26, 26, 2, 3, 16, 23, 26, 26, 23, 2, 16, 17, 23, 23, 1, 2, 17, 25, 23, 23, 25, 1, 17, 18, 25, 25, 0, 1, 18, 24, 25, 25, 24, 0, 18, 19, 24, 24, 21, 0, 19, 20, 24, 24, 20, 21, 9, 7, 8, 9, 11, 29, 9, 29, 7, 9, 10, 11, 29, 6, 7, 11, 28, 29, 11, 12, 28, 29, 28, 6, 28, 5, 6, 12, 22, 28, 28, 22, 5, 12, 13, 22, 13, 14, 22, 22, 4, 5, 14, 27, 22, 22, 27, 4, 27, 3, 4 ],
  89. "vertices": [ 2, 2, 48.6, -17.07, 0.08192, 3, 27.94, -15.96, 0.91808, 2, 2, 47.33, -18.87, 0.11303, 3, 26.75, -17.81, 0.88697, 2, 2, 46.46, -20.11, 0.12788, 3, 25.93, -19.08, 0.87212, 2, 2, 25.76, -23.87, 0.7548, 3, 5.4, -23.67, 0.2452, 2, 2, 22.82, -24.4, 0.84304, 3, 2.48, -24.33, 0.15696, 2, 2, 19.95, -24.92, 0.90792, 3, -0.37, -24.96, 0.09208, 2, 2, 7.48, -27.19, 0.99951, 3, -12.74, -27.73, 4.9E-4, 2, 2, -0.85, -27.03, 0.99977, 3, -21.06, -27.9, 2.3E-4, 1, 2, -8.56, -26.88, 1, 1, 2, -8.06, -0.63, 1, 1, 2, -7.64, 21.11, 1, 2, 2, 0.07, 20.96, 0.93384, 3, -22.09, 20.09, 0.06616, 2, 2, 10.84, 20.76, 0.84134, 3, -11.31, 20.31, 0.15866, 2, 2, 20.79, 20.57, 0.75595, 3, -1.36, 20.53, 0.24405, 2, 2, 23.4, 20.52, 0.65533, 3, 1.25, 20.58, 0.34467, 2, 2, 26.15, 20.47, 0.55552, 3, 4, 20.64, 0.44448, 2, 2, 46.52, 12.38, 0.00451, 3, 24.68, 13.38, 0.99549, 2, 2, 47.81, 12.21, 0.0019, 3, 25.97, 13.27, 0.9981, 2, 2, 49.44, 12.01, 4.6E-4, 3, 27.61, 13.13, 0.99954, 1, 3, 31.37, 12.8, 1, 2, 2, 52.94, -1.31, 7.9E-4, 3, 31.64, -0.04, 0.99921, 2, 2, 52.65, -16.54, 0.05265, 3, 31.97, -15.27, 0.94735, 2, 2, 20.71, -0.69, 0.62233, 3, -0.59, -0.72, 0.37767, 2, 2, 46.26, -1.18, 0.00134, 3, 24.97, -0.18, 0.99866, 2, 2, 48.9, -1.23, 9.2E-4, 3, 27.61, -0.12, 0.99908, 2, 2, 47.62, -1.21, 0.00114, 3, 26.32, -0.15, 0.99886, 2, 2, 25.6, -0.79, 0.04707, 3, 4.31, -0.62, 0.95293, 2, 2, 23.07, -0.74, 0.28702, 3, 1.78, -0.67, 0.71298, 2, 2, 9.72, -0.67, 0.76656, 3, -11.56, -1.14, 0.23344, 2, 2, 0.37, -0.65, 0.88942, 3, -20.92, -1.49, 0.11058 ],
  90. "hull": 22,
  91. "edges": [ 16, 18, 18, 20, 30, 32, 38, 40, 40, 42, 42, 0, 32, 46, 46, 4, 36, 38, 40, 48, 36, 48, 48, 0, 32, 34, 34, 36, 46, 50, 50, 48, 34, 50, 0, 2, 2, 4, 50, 2, 52, 46, 30, 52, 4, 6, 52, 6, 26, 44, 10, 12, 44, 10, 26, 28, 28, 30, 44, 54, 54, 52, 28, 54, 6, 8, 8, 10, 54, 8, 24, 26, 56, 44, 24, 56, 56, 12, 20, 22, 22, 24, 18, 58, 58, 56, 22, 58, 12, 14, 14, 16, 58, 14 ],
  92. "width": 48,
  93. "height": 61
  94. }
  95. },
  96. "toufa1": {
  97. "toufa1": {
  98. "type": "mesh",
  99. "uvs": [ 1, 0.1881, 1, 1, 0.73485, 1, 0.62435, 0.79025, 0.27959, 0.80103, 0, 0.7579, 0, 0.29152, 0.25978, 0, 0.79614, 0 ],
  100. "triangles": [ 6, 4, 5, 3, 7, 8, 3, 8, 0, 7, 4, 6, 7, 3, 4, 1, 2, 3, 1, 3, 0 ],
  101. "vertices": [ 73.36, -57.17, 6.96, -52.41, 8.86, -25.96, 26.8, -16.17, 28.39, 18.28, 33.92, 45.91, 72.07, 43.18, 94.05, 15.55, 90.21, -37.95 ],
  102. "hull": 9,
  103. "edges": [ 10, 8, 8, 6, 2, 4, 6, 4, 2, 0, 16, 0, 14, 16, 10, 12, 14, 12 ],
  104. "width": 100,
  105. "height": 82
  106. }
  107. },
  108. "toufa2": {
  109. "toufa2": {
  110. "type": "mesh",
  111. "uvs": [ 1, 0.24139, 0.75579, 0.65428, 0.71767, 0.71872, 0.67175, 0.77573, 0.49111, 1, 0.28759, 1, 0, 1, 0, 0.86539, 0.28375, 0.62805, 0.29142, 0.57354, 0.30047, 0.50916, 0.37207, 0, 0.72535, 0, 1, 0, 0.52183, 0.64139, 0.48782, 0.69345, 0.53801, 0.5904 ],
  112. "triangles": [ 5, 15, 4, 4, 15, 3, 5, 7, 8, 5, 8, 15, 5, 6, 7, 15, 14, 3, 3, 14, 2, 14, 15, 9, 15, 8, 9, 14, 16, 2, 2, 16, 1, 1, 16, 0, 14, 9, 16, 9, 10, 16, 10, 11, 16, 16, 12, 0, 16, 11, 12, 12, 13, 0 ],
  113. "vertices": [ 1, 20, -3.97, 8.3, 1, 2, 20, 11.88, 5.68, 0.61478, 21, -2.32, 5.29, 0.38522, 2, 20, 14.36, 5.27, 0.24516, 21, 0.18, 5.47, 0.75484, 2, 20, 16.61, 4.62, 0.03611, 21, 2.53, 5.36, 0.96389, 1, 21, 11.77, 4.93, 1, 1, 21, 14.05, 0.38, 1, 1, 21, 17.26, -6.05, 1, 1, 21, 12.93, -8.22, 1, 2, 20, 13.61, -6.03, 0.33658, 21, 2.12, -5.69, 0.66342, 2, 20, 11.65, -6.28, 0.66001, 21, 0.27, -6.4, 0.33999, 2, 20, 9.34, -6.58, 0.89517, 21, -1.9, -7.23, 0.10483, 1, 20, -8.92, -8.94, 1, 1, 20, -10.9, -0.33, 1, 1, 20, -12.44, 6.36, 1, 2, 20, 12.74, -0.12, 0.69915, 21, -0.12, -0.15, 0.30085, 2, 20, 14.76, -0.53, 0.00209, 21, 1.94, -0.07, 0.99791, 1, 20, 10.86, -0.14, 1 ],
  114. "hull": 14,
  115. "edges": [ 24, 26, 10, 12, 22, 24, 12, 14, 16, 14, 0, 26, 8, 10, 10, 30, 30, 28, 16, 30, 4, 6, 6, 8, 30, 6, 16, 18, 18, 28, 28, 4, 18, 20, 20, 22, 24, 32, 32, 28, 20, 32, 0, 2, 2, 4, 32, 2 ],
  116. "width": 25,
  117. "height": 36
  118. }
  119. },
  120. "toufa3": {
  121. "toufa3": {
  122. "type": "mesh",
  123. "uvs": [ 1, 0.31428, 1, 0.37522, 1, 0.43945, 1, 0.4971, 1, 0.53334, 1, 0.60581, 1, 0.67992, 1, 0.80345, 1, 0.92039, 1, 1, 0.41733, 1, 0, 1, 0, 0.88745, 0, 0.79192, 0, 0.66839, 0, 0.61404, 0, 0.53828, 0, 0.48228, 0, 0.4411, 0, 0.37028, 0, 0.31098, 0, 0, 0.4696, 0, 1, 0, 0.46587, 0.43122, 0.44347, 0.60745, 0.43896, 0.67507, 0.45296, 0.53274, 0.45849, 0.48924, 0.43106, 0.79379, 0.46681, 0.32251, 0.46641, 0.36862, 0.42448, 0.89258 ],
  124. "triangles": [ 26, 14, 15, 25, 26, 15, 26, 25, 6, 29, 13, 14, 26, 29, 14, 26, 6, 7, 29, 26, 7, 32, 12, 13, 29, 32, 13, 29, 7, 8, 32, 29, 8, 10, 11, 12, 32, 10, 12, 32, 8, 9, 10, 32, 9, 28, 17, 18, 24, 28, 18, 28, 24, 3, 27, 17, 28, 28, 3, 4, 27, 28, 4, 16, 17, 27, 27, 4, 5, 25, 16, 27, 25, 27, 5, 15, 16, 25, 25, 5, 6, 20, 21, 22, 22, 23, 0, 30, 20, 22, 30, 22, 0, 30, 19, 20, 31, 19, 30, 30, 0, 1, 31, 30, 1, 24, 19, 31, 24, 31, 1, 24, 1, 2, 18, 19, 24, 24, 2, 3 ],
  125. "vertices": [ 2, 17, 5.71, 7.98, 0.90397, 18, -4.76, 7.69, 0.09603, 3, 17, 7.79, 8.01, 0.78085, 18, -2.69, 7.86, 0.21867, 19, -9.67, 6.8, 4.8E-4, 3, 17, 9.97, 8.04, 0.58748, 18, -0.52, 8.03, 0.39909, 19, -7.52, 7.22, 0.01343, 3, 17, 11.93, 8.08, 0.39274, 18, 1.44, 8.18, 0.54989, 19, -5.6, 7.59, 0.05738, 3, 17, 13.16, 8.1, 0.28186, 18, 2.67, 8.28, 0.60676, 19, -4.39, 7.83, 0.11138, 3, 17, 15.63, 8.14, 0.1195, 18, 5.12, 8.47, 0.5885, 19, -1.97, 8.3, 0.292, 3, 17, 18.15, 8.18, 0.03579, 18, 7.63, 8.67, 0.42586, 19, 0.5, 8.79, 0.53834, 3, 17, 22.34, 8.24, 3.0E-4, 18, 11.82, 9, 0.14822, 19, 4.62, 9.59, 0.85149, 3, 17, 26.32, 8.31, 4.0E-4, 18, 15.78, 9.31, 0.03426, 19, 8.53, 10.35, 0.96534, 3, 17, 29.03, 8.35, 9.3E-4, 18, 18.48, 9.53, 0.0067, 19, 11.18, 10.87, 0.99237, 2, 17, 29.17, -0.39, 1.3E-4, 19, 12.86, 2.29, 0.99987, 2, 17, 29.27, -6.65, 2.0E-5, 19, 14.06, -3.85, 0.99998, 2, 17, 25.44, -6.71, 1.0E-5, 19, 10.3, -4.59, 0.99999, 3, 17, 22.19, -6.76, 0, 18, 12.61, -5.98, 0.01241, 19, 7.11, -5.21, 0.98759, 3, 17, 18, -6.83, 0.00424, 18, 8.42, -6.31, 0.22869, 19, 2.99, -6.01, 0.76707, 3, 17, 16.15, -6.86, 0.02881, 18, 6.58, -6.46, 0.4344, 19, 1.18, -6.37, 0.53678, 3, 17, 13.57, -6.9, 0.14448, 18, 4.01, -6.66, 0.64205, 19, -1.35, -6.86, 0.21347, 3, 17, 11.67, -6.93, 0.31938, 18, 2.12, -6.81, 0.60655, 19, -3.22, -7.22, 0.07406, 3, 17, 10.27, -6.95, 0.48566, 18, 0.72, -6.92, 0.48803, 19, -4.6, -7.49, 0.02631, 3, 17, 7.86, -6.99, 0.75722, 18, -1.68, -7.11, 0.24179, 19, -6.96, -7.95, 9.9E-4, 2, 17, 5.84, -7.02, 0.90204, 18, -3.69, -7.27, 0.09796, 1, 17, -4.73, -7.19, 1, 1, 17, -4.84, -0.15, 1, 1, 17, -4.97, 7.8, 1, 2, 17, 9.82, 0.03, 0.70183, 18, -0.17, 0.02, 0.29817, 3, 17, 15.82, -0.21, 1.1E-4, 18, 5.83, 0.16, 0.92766, 19, -0.32, 0.12, 0.07223, 2, 18, 8.13, 0.27, 0.01151, 19, 1.95, 0.49, 0.98849, 2, 17, 13.27, -0.11, 4.7E-4, 18, 3.29, 0.1, 0.99953, 1, 18, 1.81, 0.06, 1, 3, 17, 22.15, -0.29, 0, 18, 12.17, 0.47, 0.0027, 19, 5.94, 1.15, 0.9973, 1, 17, 6.12, -0.02, 1, 1, 17, 7.69, 0, 1, 2, 17, 25.51, -0.34, 6.0E-5, 19, 9.25, 1.7, 0.99994 ],
  126. "hull": 24,
  127. "edges": [ 42, 44, 44, 46, 18, 20, 20, 22, 30, 50, 50, 10, 28, 30, 52, 50, 28, 52, 10, 12, 52, 12, 30, 32, 54, 50, 32, 54, 10, 8, 54, 8, 36, 48, 48, 4, 32, 34, 34, 36, 48, 56, 56, 54, 34, 56, 4, 6, 6, 8, 56, 6, 26, 28, 58, 52, 26, 58, 12, 14, 58, 14, 40, 42, 44, 60, 40, 60, 0, 46, 60, 0, 36, 38, 38, 40, 48, 62, 62, 60, 38, 62, 0, 2, 2, 4, 62, 2, 22, 24, 24, 26, 20, 64, 64, 58, 24, 64, 14, 16, 16, 18, 64, 16 ],
  128. "width": 15,
  129. "height": 34
  130. }
  131. },
  132. "youshou": {
  133. "youshou": {
  134. "type": "mesh",
  135. "uvs": [ 0.62494, 0.30756, 0.65279, 0.33125, 0.69622, 0.3682, 0.98491, 0.61376, 1, 0.64242, 1, 0.6709, 1, 1, 0.88969, 1, 0.63365, 1, 0.55342, 0.78562, 0.50205, 0.77039, 0.454, 0.75247, 0.24781, 0.47989, 0.22136, 0.44492, 0.20009, 0.41679, 0, 0.15227, 0, 0, 0.26337, 0, 0.4287, 0.3901, 0.70409, 0.71847, 0.68556, 0.69197, 0.72155, 0.74243, 0.4531, 0.41878, 0.40712, 0.37046 ],
  136. "triangles": [ 19, 3, 4, 20, 2, 3, 19, 20, 3, 4, 21, 19, 5, 21, 4, 10, 11, 20, 10, 20, 19, 9, 10, 19, 9, 19, 21, 8, 9, 21, 7, 21, 5, 8, 21, 7, 7, 5, 6, 18, 23, 0, 18, 0, 1, 22, 18, 1, 22, 1, 2, 13, 23, 18, 12, 13, 18, 12, 18, 22, 20, 22, 2, 11, 22, 20, 12, 22, 11, 23, 15, 16, 23, 17, 0, 23, 16, 17, 14, 15, 23, 13, 14, 23 ],
  137. "vertices": [ 2, 9, 20.69, 8.53, 0.48999, 10, -0.35, 8.54, 0.51001, 2, 9, 22.37, 8.78, 0.3217, 10, 1.34, 8.75, 0.6783, 3, 9, 25, 9.17, 0.12973, 10, 3.98, 9.08, 0.87022, 11, -16.76, 7.47, 4.0E-5, 2, 10, 21.51, 11.25, 0.33854, 11, 0.47, 11.35, 0.66146, 2, 10, 23.25, 10.92, 0.24875, 11, 2.24, 11.2, 0.75125, 2, 10, 24.74, 10.14, 0.1704, 11, 3.79, 10.56, 0.8296, 1, 11, 21.77, 3.22, 1, 1, 11, 20.31, -0.36, 1, 1, 11, 16.92, -8.65, 1, 2, 10, 23.43, -6.84, 0.34537, 11, 4.15, -6.47, 0.65463, 2, 10, 21.79, -8.01, 0.60039, 11, 2.64, -7.79, 0.39961, 2, 10, 20.07, -9.01, 0.75251, 11, 1.02, -8.95, 0.24749, 2, 9, 23.93, -7.81, 0.18808, 10, 2.48, -7.88, 0.81192, 2, 9, 21.67, -7.73, 0.41337, 10, 0.22, -7.73, 0.58663, 2, 9, 19.85, -7.66, 0.62652, 10, -1.59, -7.62, 0.37348, 1, 9, 2.76, -6.99, 1, 1, 9, -5.29, -3, 1, 1, 9, -1.19, 5.26, 1, 1, 10, 0.75, 0.19, 1, 2, 10, 22.38, -0.33, 0.00799, 11, 2.47, -0.09, 0.99201, 1, 11, 0.78, -0.1, 1, 2, 10, 23.92, -0.45, 0.00119, 11, 4.01, -0.06, 0.99881, 1, 10, 2.65, 0.16, 1, 2, 9, 20.62, 0.05, 0.96547, 10, -0.63, 0.07, 0.03453 ],
  138. "hull": 18,
  139. "edges": [ 32, 34, 30, 32, 18, 16, 10, 12, 18, 20, 20, 22, 6, 8, 8, 10, 8, 38, 38, 20, 6, 40, 40, 22, 40, 38, 10, 42, 42, 18, 38, 42, 12, 14, 14, 16, 42, 14, 26, 36, 36, 2, 22, 24, 24, 26, 36, 44, 44, 40, 24, 44, 2, 4, 4, 6, 44, 4, 26, 28, 28, 30, 32, 46, 46, 36, 28, 46, 2, 0, 0, 34, 46, 0 ],
  140. "width": 35,
  141. "height": 59
  142. }
  143. },
  144. "youtui": {
  145. "youtui": {
  146. "type": "mesh",
  147. "uvs": [ 0.9045, 0.365, 0.91153, 0.39031, 0.91867, 0.41601, 0.99466, 0.68971, 0.99999, 0.73247, 1, 0.76605, 1, 1, 0, 1, 0, 0.91254, 0, 0.82316, 0.32034, 0.77102, 0.37116, 0.74371, 0.36786, 0.71464, 0.28771, 0.43417, 0.28162, 0.41286, 0.27567, 0.39206, 0.16363, 0, 0.48128, 0, 0.80316, 0, 0.57681, 0.38122, 0.68034, 0.85295, 0.6585, 0.74781, 0.66873, 0.78173, 0.65396, 0.71302, 0.58173, 0.40241, 0.58591, 0.42034 ],
  148. "triangles": [ 8, 9, 10, 20, 8, 10, 20, 10, 22, 7, 8, 20, 7, 20, 6, 19, 18, 0, 24, 19, 0, 24, 0, 1, 14, 19, 24, 25, 24, 1, 25, 1, 2, 13, 24, 25, 23, 25, 2, 23, 2, 3, 12, 13, 25, 12, 25, 23, 11, 12, 23, 21, 23, 3, 21, 3, 4, 11, 23, 21, 22, 21, 4, 5, 22, 4, 11, 21, 22, 10, 11, 22, 20, 22, 5, 20, 5, 6, 19, 17, 18, 15, 16, 17, 15, 17, 19, 14, 15, 19, 13, 14, 24 ],
  149. "vertices": [ 2, 27, 25.34, 11.74, 0.08143, 28, 0.46, 11.57, 0.91857, 2, 27, 26.82, 11.83, 0.0368, 28, 1.94, 11.6, 0.9632, 2, 27, 28.33, 11.92, 0.01232, 28, 3.45, 11.64, 0.98768, 2, 28, 19.53, 12.02, 0.99936, 29, -12.34, -6.17, 6.4E-4, 2, 28, 22.01, 11.85, 0.98674, 29, -12.05, -3.7, 0.01326, 2, 28, 23.94, 11.59, 0.95514, 29, -11.69, -1.79, 0.04486, 2, 28, 37.38, 9.72, 0.43135, 29, -9.15, 11.54, 0.56865, 1, 29, 24.25, 5.18, 1, 1, 29, 23.3, 0.2, 1, 1, 29, 22.33, -4.89, 1, 3, 27, 46.76, -10.4, 6.0E-5, 28, 21.05, -11.34, 0.1558, 29, 11.06, -5.83, 0.84414, 3, 27, 45.36, -8.52, 0.0014, 28, 19.72, -9.41, 0.42217, 29, 9.07, -7.06, 0.57642, 3, 27, 43.67, -8.46, 0.00619, 28, 18.03, -9.29, 0.63346, 29, 8.87, -8.74, 0.36035, 2, 27, 27.21, -9.53, 0.76692, 28, 1.55, -9.75, 0.23308, 2, 27, 25.96, -9.61, 0.85478, 28, 0.29, -9.79, 0.14522, 2, 27, 24.74, -9.69, 0.9212, 28, -0.93, -9.82, 0.0788, 1, 27, 1.73, -11.18, 1, 1, 27, 2.82, -0.44, 1, 2, 27, 3.93, 10.45, 0.98839, 28, -20.99, 11.07, 0.01161, 1, 28, -0.14, 0.4, 1, 2, 28, 27.44, 0.13, 0.24455, 29, -0.07, 1.13, 0.75545, 1, 28, 21.3, 0.23, 1, 1, 28, 23.3, 0.3, 1, 1, 28, 19.28, 0.36, 1, 1, 28, 1.1, 0.4, 1, 1, 28, 2.15, 0.4, 1 ],
  150. "hull": 19,
  151. "edges": [ 12, 14, 34, 38, 14, 16, 40, 16, 32, 34, 22, 20, 16, 18, 20, 18, 34, 36, 8, 10, 10, 12, 22, 42, 42, 8, 40, 44, 44, 42, 20, 44, 44, 10, 22, 24, 46, 42, 24, 46, 8, 6, 46, 6, 30, 32, 30, 38, 0, 36, 38, 0, 28, 30, 38, 48, 28, 48, 0, 2, 48, 2, 24, 26, 26, 28, 46, 50, 50, 48, 26, 50, 2, 4, 4, 6, 50, 4 ],
  152. "width": 34,
  153. "height": 58
  154. }
  155. },
  156. "youtuitiji": {
  157. "youtuitiji": {
  158. "type": "mesh",
  159. "uvs": [ 0.60372, 0.36576, 0.60838, 0.38934, 0.61399, 0.41768, 0.67539, 0.72791, 0.68025, 0.7525, 0.72617, 0.76386, 0.75912, 0.772, 0.78775, 0.77909, 1, 0.83159, 1, 0.91622, 1, 1, 0.72846, 1, 0.66934, 1, 0.63359, 1, 0.21336, 1, 0.17195, 0.82971, 0.16607, 0.80555, 0.16139, 0.78631, 0.09021, 0.49361, 0.08452, 0.47018, 0.07915, 0.44812, 0, 0.12262, 0, 0, 0.24106, 0, 0.53133, 0, 0.44441, 0.8612, 0.42892, 0.79557, 0.42331, 0.77182, 0.41919, 0.75439, 0.35019, 0.46217, 0.34417, 0.43667, 0.33856, 0.4129, 0.68953, 0.88547, 0.72976, 0.88946, 0.65795, 0.88235 ],
  160. "triangles": [ 17, 18, 29, 28, 29, 2, 18, 30, 29, 18, 19, 30, 19, 31, 30, 19, 20, 31, 29, 1, 2, 29, 30, 1, 20, 21, 31, 30, 0, 1, 30, 31, 0, 21, 23, 31, 31, 24, 0, 31, 23, 24, 21, 22, 23, 14, 25, 13, 25, 15, 26, 25, 14, 15, 15, 27, 26, 15, 16, 27, 16, 28, 27, 16, 17, 28, 26, 3, 4, 26, 27, 3, 17, 29, 28, 27, 28, 3, 28, 2, 3, 12, 34, 32, 13, 25, 34, 33, 32, 6, 32, 5, 6, 32, 34, 5, 34, 4, 5, 4, 34, 26, 34, 25, 26, 11, 9, 10, 12, 32, 11, 11, 33, 9, 11, 32, 33, 13, 34, 12, 33, 7, 9, 7, 8, 9, 33, 6, 7 ],
  161. "vertices": [ 3, 30, 2.07, 28.71, 9.3E-4, 26, -6.52, 11.36, 0.10649, 8, 21.57, 11.36, 0.89259, 3, 30, 2.46, 27.41, 0.00243, 26, -5.17, 11.3, 0.1599, 8, 22.92, 11.31, 0.83768, 3, 30, 2.93, 25.85, 0.00584, 26, -3.54, 11.23, 0.24291, 8, 24.55, 11.24, 0.75126, 4, 31, -1.09, 8.96, 6.5E-4, 30, 8.06, 8.75, 0.56857, 26, 14.3, 10.49, 0.43023, 8, 42.39, 10.47, 5.5E-4, 3, 31, -0.76, 7.58, 0.01175, 30, 8.47, 7.4, 0.70511, 26, 15.71, 10.43, 0.28314, 3, 31, 1.13, 7.12, 0.10324, 30, 10.39, 7.04, 0.76748, 26, 16.68, 12.12, 0.12928, 3, 31, 2.49, 6.78, 0.2371, 30, 11.76, 6.78, 0.69005, 26, 17.37, 13.33, 0.07286, 3, 31, 3.67, 6.49, 0.38595, 30, 12.95, 6.56, 0.5733, 26, 17.97, 14.39, 0.04075, 2, 31, 12.41, 4.35, 0.99055, 30, 21.8, 4.9, 0.00945, 1, 31, 12.88, -0.46, 1, 1, 31, 13.35, -5.21, 1, 2, 31, 2.54, -6.27, 0.99233, 30, 12.54, -6.25, 0.00767, 2, 31, 0.18, -6.5, 0.89536, 30, 10.2, -6.61, 0.10464, 2, 31, -1.24, -6.64, 0.76486, 30, 8.79, -6.83, 0.23514, 3, 31, -17.97, -8.28, 1.5E-4, 30, -7.82, -9.41, 0.23808, 26, 26.25, -10.47, 0.76177, 2, 30, -10.95, -0.07, 0.0087, 26, 16.4, -10.36, 0.9913, 2, 30, -11.39, 1.25, 0.00132, 26, 15.01, -10.35, 0.99868, 1, 26, 13.9, -10.34, 1, 2, 26, -3.03, -10.15, 0.25829, 8, 25.04, -10.15, 0.74171, 2, 26, -4.38, -10.14, 0.17305, 8, 23.69, -10.14, 0.82695, 2, 26, -5.66, -10.13, 0.11067, 8, 22.41, -10.12, 0.88933, 1, 8, 3.59, -9.9, 1, 1, 8, -3.29, -8.64, 1, 1, 8, -1.55, 0.84, 1, 1, 8, 0.54, 12.26, 1, 3, 31, -9.54, 0.5, 4.5E-4, 30, 0.1, -0.17, 0.61581, 26, 20.12, 0.04, 0.38373, 2, 30, -1.09, 3.43, 0.00246, 26, 16.33, 0.1, 0.99754, 2, 30, -1.52, 4.73, 0.00379, 26, 14.96, 0.12, 0.99621, 2, 30, -1.83, 5.69, 0.00467, 26, 13.95, 0.13, 0.99533, 3, 30, -7.11, 21.72, 2.0E-5, 26, -2.93, 0.4, 0.00436, 8, 25.15, 0.4, 0.99562, 3, 30, -7.57, 23.12, 1.0E-5, 26, -4.4, 0.42, 0.00306, 8, 23.67, 0.42, 0.99693, 2, 26, -5.78, 0.44, 8.7E-4, 8, 22.3, 0.45, 0.99913, 2, 31, 0.35, 0.08, 0.22365, 30, 10, -0.04, 0.77635, 3, 31, 1.97, 0.01, 0.99609, 30, 11.63, -0.02, 0.00389, 26, 23.75, 10.98, 2.0E-5, 1, 30, 8.72, -0.06, 1 ],
  162. "hull": 25,
  163. "edges": [ 42, 44, 44, 46, 46, 48, 16, 18, 18, 20, 28, 30, 52, 50, 30, 52, 52, 8, 30, 32, 54, 52, 32, 54, 8, 6, 54, 6, 32, 34, 56, 54, 34, 56, 56, 6, 34, 36, 58, 56, 36, 58, 6, 4, 58, 4, 36, 38, 60, 58, 38, 60, 4, 2, 60, 2, 38, 40, 40, 42, 46, 62, 62, 60, 40, 62, 2, 0, 0, 48, 62, 0, 12, 64, 64, 24, 12, 14, 14, 16, 18, 66, 66, 64, 14, 66, 20, 22, 22, 24, 66, 22, 8, 10, 10, 12, 50, 68, 68, 64, 10, 68, 24, 26, 26, 28, 68, 26 ],
  164. "width": 40,
  165. "height": 57
  166. }
  167. },
  168. "youyan": {
  169. "youyan": { "x": 5.49, "y": -2.43, "rotation": -97.22, "width": 26, "height": 22 }
  170. },
  171. "zuiba": {
  172. "zuiba": { "x": 1.56, "y": -1.47, "rotation": -97.27, "width": 11, "height": 11 }
  173. },
  174. "zuiba2": {
  175. "zuiba2": { "x": 1.61, "y": -2.07, "rotation": -97.27, "width": 11, "height": 5 }
  176. },
  177. "zuoshou": {
  178. "zuoshou": {
  179. "type": "mesh",
  180. "uvs": [ 1, 0.13361, 0.81661, 0.40608, 0.80338, 0.42574, 0.78822, 0.44825, 0.61778, 0.70149, 0.56703, 0.71572, 0.5332, 0.74103, 0.44862, 1, 0, 1, 0, 0.77267, 0.17311, 0.6572, 0.20695, 0.62398, 0.19487, 0.55279, 0.38347, 0.32453, 0.39689, 0.30829, 0.41804, 0.2827, 0.65162, 0, 0.91739, 0, 1, 0, 0.41417, 0.6299, 0.385, 0.66934, 0.36236, 0.70126, 0.63966, 0.34764, 0.62371, 0.3676, 0.60465, 0.39146 ],
  181. "triangles": [ 21, 11, 20, 10, 11, 21, 6, 20, 5, 21, 20, 6, 8, 9, 10, 8, 10, 21, 7, 21, 6, 8, 21, 7, 19, 11, 12, 19, 13, 24, 19, 12, 13, 20, 11, 19, 4, 24, 3, 19, 24, 4, 5, 19, 4, 20, 19, 5, 17, 18, 0, 22, 15, 16, 22, 16, 17, 23, 15, 22, 14, 15, 23, 24, 14, 23, 13, 14, 24, 0, 1, 22, 0, 22, 17, 2, 22, 1, 23, 22, 2, 3, 23, 2, 24, 23, 3 ],
  182. "vertices": [ 1, 5, 0.36, 10.04, 1, 2, 5, 16.14, 8.73, 0.68955, 6, -1.37, 8.88, 0.31045, 2, 5, 17.18, 8.71, 0.60283, 6, -0.35, 8.72, 0.39717, 2, 5, 18.37, 8.73, 0.49745, 6, 0.81, 8.59, 0.50255, 3, 5, 32.99, 10.64, 8.0E-5, 6, 15.18, 8.76, 0.7498, 7, -2.34, 8.6, 0.25012, 2, 6, 16.65, 7.41, 0.60909, 7, -0.78, 7.37, 0.39091, 2, 6, 18.41, 6.87, 0.37409, 7, 1.03, 6.97, 0.62591, 1, 7, 14.99, 11.1, 1, 1, 7, 22.71, -3.09, 1, 1, 7, 11.73, -9.06, 1, 2, 6, 19.53, -6.84, 0.15847, 7, 3.17, -6.62, 0.84153, 2, 6, 17.36, -6.48, 0.54542, 7, 0.98, -6.42, 0.45458, 2, 6, 13.97, -8.48, 0.96389, 7, -2.25, -8.68, 0.03611, 2, 5, 18.33, -7.52, 0.53765, 6, -1.05, -7.36, 0.46235, 2, 5, 17.07, -7.38, 0.70449, 6, -2.29, -7.11, 0.29551, 2, 5, 15.21, -7.07, 0.8937, 6, -4.11, -6.63, 0.1063, 2, 5, -2.39, -4.24, 1, 6, -21.28, -1.8, 0, 1, 5, -5.58, 4.79, 1, 1, 5, -6.57, 7.59, 1, 2, 6, 14.6, 0.46, 0.94905, 7, -2.3, 0.28, 0.05095, 2, 6, 17.01, 0.39, 0.44447, 7, 0.11, 0.4, 0.55553, 2, 6, 18.94, 0.37, 0.06044, 7, 2.04, 0.52, 0.93956, 2, 5, 15.73, 1.65, 0.85305, 6, -2.6, 1.96, 0.14695, 2, 5, 16.92, 1.48, 0.74127, 6, -1.43, 1.64, 0.25873, 2, 5, 18.35, 1.34, 0.53267, 6, -0.03, 1.34, 0.46733 ],
  183. "hull": 19,
  184. "edges": [ 24, 22, 22, 20, 16, 18, 20, 18, 0, 36, 8, 10, 10, 12, 14, 16, 12, 14, 32, 34, 34, 36, 8, 38, 38, 24, 10, 40, 40, 22, 38, 40, 12, 42, 42, 20, 40, 42, 42, 16, 30, 32, 34, 44, 30, 44, 0, 2, 44, 2, 28, 30, 46, 44, 28, 46, 2, 4, 46, 4, 24, 26, 26, 28, 38, 48, 48, 46, 26, 48, 4, 6, 6, 8, 48, 6 ],
  185. "width": 36,
  186. "height": 55
  187. }
  188. },
  189. "zuotui": {
  190. "zuotui": {
  191. "type": "mesh",
  192. "uvs": [ 0.9887, 0.392, 0.98788, 0.42036, 0.98718, 0.4446, 0.97816, 0.75758, 0.96288, 0.78404, 0.952, 0.80286, 0.89741, 0.99999, 0.38311, 1, 0.35295, 1, 0.29165, 1, 0, 1, 0, 0.89689, 0, 0.82724, 0.18367, 0.78943, 0.21613, 0.78274, 0.24954, 0.77587, 0.32144, 0.76107, 0.33663, 0.7433, 0.35419, 0.72276, 0.41583, 0.41486, 0.4203, 0.39249, 0.42554, 0.36633, 0.49887, 0, 0.71179, 0, 1, 0, 0.58622, 0.83072, 0.60085, 0.73391, 0.59286, 0.78682, 0.59734, 0.75714, 0.65423, 0.38078, 0.65037, 0.40632, 0.64693, 0.42911, 0.30304, 0.86269, 0.33173, 0.85945, 0.25986, 0.86756 ],
  193. "triangles": [ 10, 34, 9, 10, 11, 34, 9, 32, 8, 9, 34, 32, 32, 33, 8, 8, 33, 7, 7, 33, 25, 11, 13, 34, 11, 12, 13, 13, 14, 34, 34, 14, 32, 14, 15, 32, 32, 15, 33, 7, 25, 6, 6, 25, 5, 5, 25, 27, 15, 16, 33, 33, 16, 25, 25, 16, 27, 16, 17, 27, 27, 28, 5, 5, 28, 4, 27, 17, 28, 28, 26, 4, 4, 26, 3, 26, 31, 3, 3, 31, 2, 17, 18, 28, 28, 18, 26, 18, 19, 26, 26, 19, 31, 31, 30, 2, 2, 30, 1, 19, 20, 31, 31, 20, 30, 30, 29, 1, 1, 29, 0, 20, 21, 30, 30, 21, 29, 29, 23, 0, 0, 23, 24, 21, 22, 29, 29, 22, 23 ],
  194. "vertices": [ 2, 23, 21.49, 13.18, 0.48765, 24, 0.19, 13.18, 0.51235, 3, 23, 23.13, 13.34, 0.38348, 24, 1.83, 13.27, 0.61647, 25, -16.54, -21.67, 4.0E-5, 3, 23, 24.53, 13.47, 0.30122, 24, 3.24, 13.35, 0.6982, 25, -16.32, -20.28, 5.7E-4, 2, 24, 21.37, 14.34, 0.57862, 25, -13.4, -2.36, 0.42138, 2, 24, 22.94, 13.89, 0.4895, 25, -12.62, -0.93, 0.5105, 2, 24, 24.06, 13.56, 0.41107, 25, -12.06, 0.1, 0.58893, 3, 24, 35.61, 12.38, 0.00188, 25, -8.43, 11.13, 0.9815, 32, -18.1, 11.34, 0.01662, 2, 25, 10.4, 8.41, 0.06929, 32, 0.66, 8.15, 0.93071, 2, 25, 11.51, 8.25, 0.02667, 32, 1.76, 7.97, 0.97333, 2, 25, 13.75, 7.93, 4.4E-4, 32, 4, 7.59, 0.99956, 1, 32, 14.64, 5.78, 1, 1, 32, 13.63, -0.12, 1, 2, 25, 23, -3.53, 0.00317, 32, 12.96, -4.1, 0.99683, 3, 24, 25.35, -14.84, 0.00864, 25, 15.96, -4.73, 0.28985, 32, 5.89, -5.12, 0.70151, 3, 24, 24.88, -13.68, 0.02281, 25, 14.72, -4.94, 0.43668, 32, 4.64, -5.3, 0.54051, 3, 24, 24.39, -12.47, 0.05196, 25, 13.44, -5.16, 0.60186, 32, 3.36, -5.49, 0.34618, 3, 24, 23.34, -9.88, 0.20981, 25, 10.68, -5.63, 0.74995, 32, 0.59, -5.89, 0.04024, 3, 24, 22.27, -9.4, 0.33682, 25, 9.98, -6.57, 0.65444, 32, -0.14, -6.81, 0.00874, 3, 24, 21.04, -8.83, 0.49041, 25, 9.17, -7.66, 0.50939, 32, -0.98, -7.88, 2.1E-4, 2, 23, 25.26, -7.72, 0.16754, 24, 3.06, -7.86, 0.83246, 2, 23, 23.95, -7.71, 0.27851, 24, 1.75, -7.79, 0.72149, 2, 23, 22.43, -7.69, 0.44302, 24, 0.23, -7.71, 0.55698, 1, 23, 1.01, -7.46, 1, 1, 23, 0.09, 0.36, 1, 1, 23, -1.14, 10.96, 1, 2, 24, 26.65, 0.18, 0.02033, 25, 1.56, -0.24, 0.97967, 2, 24, 21.02, 0.31, 0.9994, 25, 0.23, -5.72, 6.0E-4, 2, 24, 24.1, 0.24, 0.59131, 25, 0.96, -2.72, 0.40869, 2, 24, 22.37, 0.28, 0.99116, 25, 0.55, -4.4, 0.00884, 2, 23, 22.28, 0.81, 0.26461, 24, 0.44, 0.79, 0.73539, 2, 23, 23.77, 0.84, 0.03861, 24, 1.93, 0.76, 0.96139, 2, 23, 25.09, 0.86, 0.00867, 24, 3.26, 0.72, 0.99133, 3, 24, 29.27, -10.13, 9.0E-4, 25, 12.2, 0.1, 0.0208, 32, 2.25, -0.19, 0.97829, 3, 24, 29, -9.09, 0.00141, 25, 11.12, 0.07, 0.07121, 32, 1.17, -0.2, 0.92738, 3, 24, 29.67, -11.7, 4.7E-4, 25, 13.82, 0.16, 0.01674, 32, 3.87, -0.18, 0.9828 ],
  195. "hull": 25,
  196. "edges": [ 46, 48, 20, 22, 44, 46, 22, 24, 10, 12, 36, 52, 52, 6, 50, 54, 32, 54, 54, 10, 32, 34, 34, 36, 52, 56, 56, 54, 34, 56, 6, 8, 8, 10, 56, 8, 42, 44, 46, 58, 42, 58, 0, 48, 58, 0, 40, 42, 60, 58, 40, 60, 0, 2, 60, 2, 36, 38, 38, 40, 52, 62, 62, 60, 38, 62, 2, 4, 4, 6, 62, 4, 28, 64, 64, 16, 28, 30, 30, 32, 50, 66, 66, 64, 30, 66, 12, 14, 14, 16, 66, 14, 24, 26, 26, 28, 22, 68, 68, 64, 26, 68, 16, 18, 18, 20, 68, 18 ],
  197. "width": 37,
  198. "height": 58
  199. }
  200. },
  201. "zuoyan": {
  202. "zuoyan": { "x": 6.11, "y": 1.98, "rotation": -96.25, "width": 27, "height": 21 }
  203. }
  204. }
  205. },
  206. "animations": {
  207. "stand1": {
  208. "slots": {
  209. "biyan": {
  210. "attachment": [
  211. { "time": 0.1, "name": "biyan" },
  212. { "time": 0.2, "name": null },
  213. { "time": 1.6, "name": "biyan" },
  214. { "time": 1.7, "name": null }
  215. ]
  216. },
  217. "youtui": {
  218. "attachment": [
  219. { "time": 0, "name": null },
  220. { "time": 0.8333, "name": null },
  221. { "time": 1.6667, "name": null },
  222. { "time": 2.5, "name": null },
  223. { "time": 3.3333, "name": null }
  224. ]
  225. },
  226. "youyan": {
  227. "attachment": [
  228. { "time": 0.1, "name": null },
  229. { "time": 0.2, "name": "youyan" },
  230. { "time": 1.6, "name": null },
  231. { "time": 1.7, "name": "youyan" }
  232. ]
  233. },
  234. "zuiba2": {
  235. "attachment": [
  236. { "time": 0, "name": null }
  237. ]
  238. },
  239. "zuoyan": {
  240. "attachment": [
  241. { "time": 0.1, "name": null },
  242. { "time": 0.2, "name": "zuoyan" },
  243. { "time": 1.6, "name": null },
  244. { "time": 1.7, "name": "zuoyan" }
  245. ]
  246. }
  247. },
  248. "bones": {
  249. "bone": {
  250. "rotate": [
  251. { "time": 0, "angle": 0, "curve": "stepped" },
  252. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  253. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  254. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  255. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  256. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  257. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  258. { "time": 2, "angle": 0, "curve": "stepped" },
  259. { "time": 2.1, "angle": 0, "curve": "stepped" },
  260. { "time": 2.5, "angle": 0, "curve": "stepped" },
  261. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  262. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  263. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  264. { "time": 3.3333, "angle": 0 }
  265. ],
  266. "translate": [
  267. {
  268. "time": 0,
  269. "x": 0,
  270. "y": -5.98,
  271. "curve": [ 0.25, 0, 0.75, 1 ]
  272. },
  273. {
  274. "time": 0.1667,
  275. "x": -3.05,
  276. "y": 0.2,
  277. "curve": [ 0.25, 0, 0.75, 1 ]
  278. },
  279. {
  280. "time": 0.3333,
  281. "x": -5.88,
  282. "y": -4.41,
  283. "curve": [ 0.25, 0, 0.75, 1 ]
  284. },
  285. {
  286. "time": 0.4333,
  287. "x": -5.87,
  288. "y": -7.56,
  289. "curve": [ 0.25, 0, 0.75, 1 ]
  290. },
  291. {
  292. "time": 0.6667,
  293. "x": -3.05,
  294. "y": 0.2,
  295. "curve": [ 0.25, 0, 0.75, 1 ]
  296. },
  297. {
  298. "time": 0.8333,
  299. "x": 0,
  300. "y": -5.98,
  301. "curve": [ 0.25, 0, 0.75, 1 ]
  302. },
  303. {
  304. "time": 1,
  305. "x": -3.05,
  306. "y": 0.2,
  307. "curve": [ 0.25, 0, 0.75, 1 ]
  308. },
  309. {
  310. "time": 1.1667,
  311. "x": -5.88,
  312. "y": -4.41,
  313. "curve": [ 0.25, 0, 0.75, 1 ]
  314. },
  315. {
  316. "time": 1.2667,
  317. "x": -5.87,
  318. "y": -7.56,
  319. "curve": [ 0.25, 0, 0.75, 1 ]
  320. },
  321. {
  322. "time": 1.5,
  323. "x": -3.05,
  324. "y": 0.2,
  325. "curve": [ 0.25, 0, 0.75, 1 ]
  326. },
  327. {
  328. "time": 1.6667,
  329. "x": 0,
  330. "y": -5.98,
  331. "curve": [ 0.25, 0, 0.75, 1 ]
  332. },
  333. {
  334. "time": 1.8333,
  335. "x": -3.05,
  336. "y": 0.2,
  337. "curve": [ 0.25, 0, 0.75, 1 ]
  338. },
  339. {
  340. "time": 2,
  341. "x": -5.88,
  342. "y": -4.41,
  343. "curve": [ 0.25, 0, 0.75, 1 ]
  344. },
  345. {
  346. "time": 2.1,
  347. "x": -5.87,
  348. "y": -7.56,
  349. "curve": [ 0.25, 0, 0.75, 1 ]
  350. },
  351. {
  352. "time": 2.3333,
  353. "x": -3.05,
  354. "y": 0.2,
  355. "curve": [ 0.25, 0, 0.75, 1 ]
  356. },
  357. {
  358. "time": 2.5,
  359. "x": 0,
  360. "y": -5.98,
  361. "curve": [ 0.25, 0, 0.75, 1 ]
  362. },
  363. {
  364. "time": 2.6667,
  365. "x": -3.05,
  366. "y": 0.2,
  367. "curve": [ 0.25, 0, 0.75, 1 ]
  368. },
  369. {
  370. "time": 2.8333,
  371. "x": -5.88,
  372. "y": -4.41,
  373. "curve": [ 0.25, 0, 0.75, 1 ]
  374. },
  375. {
  376. "time": 2.9333,
  377. "x": -5.87,
  378. "y": -7.56,
  379. "curve": [ 0.25, 0, 0.75, 1 ]
  380. },
  381. {
  382. "time": 3.1667,
  383. "x": -3.05,
  384. "y": 0.2,
  385. "curve": [ 0.25, 0, 0.75, 1 ]
  386. },
  387. { "time": 3.3333, "x": 0, "y": -5.98 }
  388. ],
  389. "scale": [
  390. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  391. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  392. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  393. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  394. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  395. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  396. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  397. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  398. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  399. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  400. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  401. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  402. { "time": 3.3333, "x": 1, "y": 1 }
  403. ]
  404. },
  405. "bone2": {
  406. "rotate": [
  407. {
  408. "time": 0,
  409. "angle": -5.41,
  410. "curve": [ 0.25, 0, 0.75, 1 ]
  411. },
  412. {
  413. "time": 0.4333,
  414. "angle": 1.58,
  415. "curve": [ 0.25, 0, 0.75, 1 ]
  416. },
  417. {
  418. "time": 0.8333,
  419. "angle": -5.41,
  420. "curve": [ 0.25, 0, 0.75, 1 ]
  421. },
  422. {
  423. "time": 1.2667,
  424. "angle": 1.58,
  425. "curve": [ 0.25, 0, 0.75, 1 ]
  426. },
  427. {
  428. "time": 1.6667,
  429. "angle": -5.41,
  430. "curve": [ 0.25, 0, 0.75, 1 ]
  431. },
  432. {
  433. "time": 2.1,
  434. "angle": 1.58,
  435. "curve": [ 0.25, 0, 0.75, 1 ]
  436. },
  437. {
  438. "time": 2.5,
  439. "angle": -5.41,
  440. "curve": [ 0.259, 0, 0.618, 0.45 ]
  441. },
  442. {
  443. "time": 2.6667,
  444. "angle": -2.98,
  445. "curve": [ 0.36, 0.43, 0.755, 1 ]
  446. },
  447. {
  448. "time": 2.9333,
  449. "angle": 1.58,
  450. "curve": [ 0.25, 0, 0.75, 1 ]
  451. },
  452. { "time": 3.3333, "angle": -5.41 }
  453. ],
  454. "translate": [
  455. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  456. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  457. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  458. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  459. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  460. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  461. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  462. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  463. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  464. { "time": 3.3333, "x": 0, "y": 0 }
  465. ],
  466. "scale": [
  467. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  468. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  469. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  470. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  471. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  472. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  473. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  474. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  475. { "time": 3.3333, "x": 1, "y": 1 }
  476. ]
  477. },
  478. "bone3": {
  479. "rotate": [
  480. {
  481. "time": 0,
  482. "angle": -0.02,
  483. "curve": [ 0.25, 0, 0.75, 1 ]
  484. },
  485. {
  486. "time": 0.4333,
  487. "angle": -4.15,
  488. "curve": [ 0.25, 0, 0.75, 1 ]
  489. },
  490. {
  491. "time": 0.8333,
  492. "angle": -0.02,
  493. "curve": [ 0.25, 0, 0.75, 1 ]
  494. },
  495. {
  496. "time": 1.2667,
  497. "angle": -4.15,
  498. "curve": [ 0.25, 0, 0.75, 1 ]
  499. },
  500. {
  501. "time": 1.6667,
  502. "angle": -0.02,
  503. "curve": [ 0.25, 0, 0.75, 1 ]
  504. },
  505. {
  506. "time": 2.1,
  507. "angle": -4.15,
  508. "curve": [ 0.25, 0, 0.75, 1 ]
  509. },
  510. {
  511. "time": 2.5,
  512. "angle": -0.02,
  513. "curve": [ 0.259, 0, 0.618, 0.45 ]
  514. },
  515. {
  516. "time": 2.6667,
  517. "angle": -1.45,
  518. "curve": [ 0.36, 0.43, 0.755, 1 ]
  519. },
  520. {
  521. "time": 2.9333,
  522. "angle": -4.15,
  523. "curve": [ 0.25, 0, 0.75, 1 ]
  524. },
  525. { "time": 3.3333, "angle": -0.02 }
  526. ],
  527. "translate": [
  528. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  529. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  530. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  531. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  532. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  533. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  534. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  535. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  536. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  537. { "time": 3.3333, "x": 0, "y": 0 }
  538. ],
  539. "scale": [
  540. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  541. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  542. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  543. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  544. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  545. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  546. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  547. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  548. { "time": 3.3333, "x": 1, "y": 1 }
  549. ]
  550. },
  551. "zuoshou": {
  552. "rotate": [
  553. {
  554. "time": 0,
  555. "angle": -1.15,
  556. "curve": [ 0.25, 0, 0.75, 1 ]
  557. },
  558. {
  559. "time": 0.4333,
  560. "angle": -32.02,
  561. "curve": [ 0.25, 0, 0.75, 1 ]
  562. },
  563. {
  564. "time": 0.8333,
  565. "angle": -1.15,
  566. "curve": [ 0.25, 0, 0.75, 1 ]
  567. },
  568. {
  569. "time": 1.2667,
  570. "angle": -32.02,
  571. "curve": [ 0.25, 0, 0.75, 1 ]
  572. },
  573. {
  574. "time": 1.6667,
  575. "angle": -1.15,
  576. "curve": [ 0.25, 0, 0.75, 1 ]
  577. },
  578. {
  579. "time": 2.1,
  580. "angle": -32.02,
  581. "curve": [ 0.25, 0, 0.75, 1 ]
  582. },
  583. {
  584. "time": 2.5,
  585. "angle": -1.15,
  586. "curve": [ 0.259, 0, 0.618, 0.45 ]
  587. },
  588. {
  589. "time": 2.6667,
  590. "angle": -11.89,
  591. "curve": [ 0.36, 0.43, 0.755, 1 ]
  592. },
  593. {
  594. "time": 2.9333,
  595. "angle": -32.02,
  596. "curve": [ 0.25, 0, 0.75, 1 ]
  597. },
  598. { "time": 3.3333, "angle": -1.15 }
  599. ],
  600. "translate": [
  601. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  602. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  603. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  604. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  605. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  606. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  607. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  608. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  609. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  610. { "time": 3.3333, "x": 0, "y": 0 }
  611. ],
  612. "scale": [
  613. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  614. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  615. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  616. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  617. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  618. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  619. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  620. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  621. { "time": 3.3333, "x": 1, "y": 1 }
  622. ]
  623. },
  624. "bone5": {
  625. "rotate": [
  626. {
  627. "time": 0,
  628. "angle": -35.45,
  629. "curve": [ 0.25, 0, 0.75, 1 ]
  630. },
  631. {
  632. "time": 0.4333,
  633. "angle": -33.69,
  634. "curve": [ 0.25, 0, 0.75, 1 ]
  635. },
  636. {
  637. "time": 0.8333,
  638. "angle": -35.45,
  639. "curve": [ 0.25, 0, 0.75, 1 ]
  640. },
  641. {
  642. "time": 1.2667,
  643. "angle": -33.69,
  644. "curve": [ 0.25, 0, 0.75, 1 ]
  645. },
  646. {
  647. "time": 1.6667,
  648. "angle": -35.45,
  649. "curve": [ 0.25, 0, 0.75, 1 ]
  650. },
  651. {
  652. "time": 2.1,
  653. "angle": -33.69,
  654. "curve": [ 0.25, 0, 0.75, 1 ]
  655. },
  656. {
  657. "time": 2.5,
  658. "angle": -35.45,
  659. "curve": [ 0.259, 0, 0.618, 0.45 ]
  660. },
  661. {
  662. "time": 2.6667,
  663. "angle": -34.84,
  664. "curve": [ 0.36, 0.43, 0.755, 1 ]
  665. },
  666. {
  667. "time": 2.9333,
  668. "angle": -33.69,
  669. "curve": [ 0.25, 0, 0.75, 1 ]
  670. },
  671. { "time": 3.3333, "angle": -35.45 }
  672. ],
  673. "translate": [
  674. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  675. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  676. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  677. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  678. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  679. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  680. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  681. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  682. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  683. { "time": 3.3333, "x": 0, "y": 0 }
  684. ],
  685. "scale": [
  686. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  687. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  688. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  689. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  690. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  691. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  692. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  693. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  694. { "time": 3.3333, "x": 1, "y": 1 }
  695. ]
  696. },
  697. "bone6": {
  698. "rotate": [
  699. {
  700. "time": 0,
  701. "angle": -29.71,
  702. "curve": [ 0.25, 0, 0.75, 1 ]
  703. },
  704. {
  705. "time": 0.4333,
  706. "angle": -22.08,
  707. "curve": [ 0.25, 0, 0.75, 1 ]
  708. },
  709. {
  710. "time": 0.8333,
  711. "angle": -29.71,
  712. "curve": [ 0.25, 0, 0.75, 1 ]
  713. },
  714. {
  715. "time": 1.2667,
  716. "angle": -22.08,
  717. "curve": [ 0.25, 0, 0.75, 1 ]
  718. },
  719. {
  720. "time": 1.6667,
  721. "angle": -29.71,
  722. "curve": [ 0.25, 0, 0.75, 1 ]
  723. },
  724. {
  725. "time": 2.1,
  726. "angle": -22.08,
  727. "curve": [ 0.25, 0, 0.75, 1 ]
  728. },
  729. {
  730. "time": 2.5,
  731. "angle": -29.71,
  732. "curve": [ 0.259, 0, 0.618, 0.45 ]
  733. },
  734. {
  735. "time": 2.6667,
  736. "angle": -27.05,
  737. "curve": [ 0.36, 0.43, 0.755, 1 ]
  738. },
  739. {
  740. "time": 2.9333,
  741. "angle": -22.08,
  742. "curve": [ 0.25, 0, 0.75, 1 ]
  743. },
  744. { "time": 3.3333, "angle": -29.71 }
  745. ],
  746. "translate": [
  747. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  748. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  749. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  750. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  751. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  752. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  753. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  754. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  755. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  756. { "time": 3.3333, "x": 0, "y": 0 }
  757. ],
  758. "scale": [
  759. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  760. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  761. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  762. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  763. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  764. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  765. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  766. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  767. { "time": 3.3333, "x": 1, "y": 1 }
  768. ]
  769. },
  770. "youshou": {
  771. "rotate": [
  772. {
  773. "time": 0,
  774. "angle": 33.27,
  775. "curve": [ 0.25, 0, 0.75, 1 ]
  776. },
  777. {
  778. "time": 0.4333,
  779. "angle": 45.9,
  780. "curve": [ 0.25, 0, 0.75, 1 ]
  781. },
  782. {
  783. "time": 0.8333,
  784. "angle": 33.27,
  785. "curve": [ 0.25, 0, 0.75, 1 ]
  786. },
  787. {
  788. "time": 1.2667,
  789. "angle": 45.9,
  790. "curve": [ 0.25, 0, 0.75, 1 ]
  791. },
  792. {
  793. "time": 1.6667,
  794. "angle": 33.27,
  795. "curve": [ 0.25, 0, 0.75, 1 ]
  796. },
  797. {
  798. "time": 2.1,
  799. "angle": 45.9,
  800. "curve": [ 0.25, 0, 0.75, 1 ]
  801. },
  802. {
  803. "time": 2.5,
  804. "angle": 33.27,
  805. "curve": [ 0.259, 0, 0.618, 0.45 ]
  806. },
  807. {
  808. "time": 2.6667,
  809. "angle": 37.66,
  810. "curve": [ 0.36, 0.43, 0.755, 1 ]
  811. },
  812. {
  813. "time": 2.9333,
  814. "angle": 45.9,
  815. "curve": [ 0.25, 0, 0.75, 1 ]
  816. },
  817. { "time": 3.3333, "angle": 33.27 }
  818. ],
  819. "translate": [
  820. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  821. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  822. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  823. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  824. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  825. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  826. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  827. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  828. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  829. { "time": 3.3333, "x": 0, "y": 0 }
  830. ],
  831. "scale": [
  832. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  833. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  834. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  835. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  836. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  837. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  838. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  839. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  840. { "time": 3.3333, "x": 1, "y": 1 }
  841. ]
  842. },
  843. "bone8": {
  844. "rotate": [
  845. {
  846. "time": 0,
  847. "angle": -159.43,
  848. "curve": [ 0.25, 0, 0.75, 1 ]
  849. },
  850. {
  851. "time": 0.4333,
  852. "angle": -146.92,
  853. "curve": [ 0.25, 0, 0.75, 1 ]
  854. },
  855. {
  856. "time": 0.8333,
  857. "angle": -159.43,
  858. "curve": [ 0.25, 0, 0.75, 1 ]
  859. },
  860. {
  861. "time": 1.2667,
  862. "angle": -146.92,
  863. "curve": [ 0.25, 0, 0.75, 1 ]
  864. },
  865. {
  866. "time": 1.6667,
  867. "angle": -159.43,
  868. "curve": [ 0.25, 0, 0.75, 1 ]
  869. },
  870. {
  871. "time": 2.1,
  872. "angle": -146.92,
  873. "curve": [ 0.25, 0, 0.75, 1 ]
  874. },
  875. {
  876. "time": 2.5,
  877. "angle": -159.43,
  878. "curve": [ 0.259, 0, 0.618, 0.45 ]
  879. },
  880. {
  881. "time": 2.6667,
  882. "angle": -155.08,
  883. "curve": [ 0.36, 0.43, 0.755, 1 ]
  884. },
  885. {
  886. "time": 2.9333,
  887. "angle": -146.92,
  888. "curve": [ 0.25, 0, 0.75, 1 ]
  889. },
  890. { "time": 3.3333, "angle": -159.43 }
  891. ],
  892. "translate": [
  893. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  894. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  895. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  896. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  897. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  898. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  899. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  900. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  901. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  902. { "time": 3.3333, "x": 0, "y": 0 }
  903. ],
  904. "scale": [
  905. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  906. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  907. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  908. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  909. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  910. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  911. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  912. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  913. { "time": 3.3333, "x": 1, "y": 1 }
  914. ]
  915. },
  916. "bone9": {
  917. "rotate": [
  918. {
  919. "time": 0,
  920. "angle": 16.85,
  921. "curve": [ 0.25, 0, 0.75, 1 ]
  922. },
  923. {
  924. "time": 0.4333,
  925. "angle": -8.73,
  926. "curve": [ 0.25, 0, 0.75, 1 ]
  927. },
  928. {
  929. "time": 0.8333,
  930. "angle": 16.85,
  931. "curve": [ 0.25, 0, 0.75, 1 ]
  932. },
  933. {
  934. "time": 1.2667,
  935. "angle": -8.73,
  936. "curve": [ 0.25, 0, 0.75, 1 ]
  937. },
  938. {
  939. "time": 1.6667,
  940. "angle": 16.85,
  941. "curve": [ 0.25, 0, 0.75, 1 ]
  942. },
  943. {
  944. "time": 2.1,
  945. "angle": -8.73,
  946. "curve": [ 0.25, 0, 0.75, 1 ]
  947. },
  948. {
  949. "time": 2.5,
  950. "angle": 16.85,
  951. "curve": [ 0.259, 0, 0.618, 0.45 ]
  952. },
  953. {
  954. "time": 2.6667,
  955. "angle": 7.95,
  956. "curve": [ 0.36, 0.43, 0.755, 1 ]
  957. },
  958. {
  959. "time": 2.9333,
  960. "angle": -8.73,
  961. "curve": [ 0.25, 0, 0.75, 1 ]
  962. },
  963. { "time": 3.3333, "angle": 16.85 }
  964. ],
  965. "translate": [
  966. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  967. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  968. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  969. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  970. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  971. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  972. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  973. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  974. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  975. { "time": 3.3333, "x": 0, "y": 0 }
  976. ],
  977. "scale": [
  978. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  979. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  980. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  981. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  982. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  983. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  984. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  985. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  986. { "time": 3.3333, "x": 1, "y": 1 }
  987. ]
  988. },
  989. "bone10": {
  990. "rotate": [
  991. {
  992. "time": 0,
  993. "angle": 3.69,
  994. "curve": [ 0.25, 0, 0.75, 1 ]
  995. },
  996. {
  997. "time": 0.4333,
  998. "angle": -1.65,
  999. "curve": [ 0.25, 0, 0.75, 1 ]
  1000. },
  1001. {
  1002. "time": 0.8333,
  1003. "angle": 3.69,
  1004. "curve": [ 0.25, 0, 0.75, 1 ]
  1005. },
  1006. {
  1007. "time": 1.2667,
  1008. "angle": -1.65,
  1009. "curve": [ 0.25, 0, 0.75, 1 ]
  1010. },
  1011. {
  1012. "time": 1.6667,
  1013. "angle": 3.69,
  1014. "curve": [ 0.25, 0, 0.75, 1 ]
  1015. },
  1016. {
  1017. "time": 2.1,
  1018. "angle": -1.65,
  1019. "curve": [ 0.25, 0, 0.75, 1 ]
  1020. },
  1021. {
  1022. "time": 2.5,
  1023. "angle": 3.69,
  1024. "curve": [ 0.259, 0, 0.618, 0.45 ]
  1025. },
  1026. {
  1027. "time": 2.6667,
  1028. "angle": 1.83,
  1029. "curve": [ 0.36, 0.43, 0.755, 1 ]
  1030. },
  1031. {
  1032. "time": 2.9333,
  1033. "angle": -1.65,
  1034. "curve": [ 0.25, 0, 0.75, 1 ]
  1035. },
  1036. { "time": 3.3333, "angle": 3.69 }
  1037. ],
  1038. "translate": [
  1039. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1040. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1041. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1042. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1043. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1044. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1045. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1046. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1047. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1048. { "time": 3.3333, "x": 0, "y": 0 }
  1049. ],
  1050. "scale": [
  1051. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1052. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1053. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1054. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1055. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1056. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1057. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1058. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1059. { "time": 3.3333, "x": 1, "y": 1 }
  1060. ]
  1061. },
  1062. "bone15": {
  1063. "rotate": [
  1064. {
  1065. "time": 0,
  1066. "angle": 0,
  1067. "curve": [ 0.25, 0, 0.75, 1 ]
  1068. },
  1069. {
  1070. "time": 0.4333,
  1071. "angle": -8.96,
  1072. "curve": [ 0.25, 0, 0.75, 1 ]
  1073. },
  1074. {
  1075. "time": 0.8333,
  1076. "angle": 0,
  1077. "curve": [ 0.25, 0, 0.75, 1 ]
  1078. },
  1079. {
  1080. "time": 1.2667,
  1081. "angle": -8.96,
  1082. "curve": [ 0.25, 0, 0.75, 1 ]
  1083. },
  1084. {
  1085. "time": 1.6667,
  1086. "angle": 0,
  1087. "curve": [ 0.25, 0, 0.75, 1 ]
  1088. },
  1089. {
  1090. "time": 2.1,
  1091. "angle": -8.96,
  1092. "curve": [ 0.25, 0, 0.75, 1 ]
  1093. },
  1094. {
  1095. "time": 2.5,
  1096. "angle": 0,
  1097. "curve": [ 0.259, 0, 0.618, 0.45 ]
  1098. },
  1099. {
  1100. "time": 2.6667,
  1101. "angle": -3.12,
  1102. "curve": [ 0.36, 0.43, 0.755, 1 ]
  1103. },
  1104. {
  1105. "time": 2.9333,
  1106. "angle": -8.96,
  1107. "curve": [ 0.25, 0, 0.75, 1 ]
  1108. },
  1109. { "time": 3.3333, "angle": 0 }
  1110. ],
  1111. "translate": [
  1112. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1113. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1114. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1115. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1116. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1117. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1118. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1119. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1120. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1121. { "time": 3.3333, "x": 0, "y": 0 }
  1122. ],
  1123. "scale": [
  1124. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1125. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1126. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1127. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1128. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1129. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1130. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1131. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1132. { "time": 3.3333, "x": 1, "y": 1 }
  1133. ]
  1134. },
  1135. "bone16": {
  1136. "rotate": [
  1137. {
  1138. "time": 0,
  1139. "angle": 0,
  1140. "curve": [ 0.25, 0, 0.75, 1 ]
  1141. },
  1142. {
  1143. "time": 0.4333,
  1144. "angle": -8.96,
  1145. "curve": [ 0.25, 0, 0.75, 1 ]
  1146. },
  1147. {
  1148. "time": 0.8333,
  1149. "angle": 0,
  1150. "curve": [ 0.25, 0, 0.75, 1 ]
  1151. },
  1152. {
  1153. "time": 1.2667,
  1154. "angle": -8.96,
  1155. "curve": [ 0.25, 0, 0.75, 1 ]
  1156. },
  1157. {
  1158. "time": 1.6667,
  1159. "angle": 0,
  1160. "curve": [ 0.25, 0, 0.75, 1 ]
  1161. },
  1162. {
  1163. "time": 2.1,
  1164. "angle": -8.96,
  1165. "curve": [ 0.25, 0, 0.75, 1 ]
  1166. },
  1167. {
  1168. "time": 2.5,
  1169. "angle": 0,
  1170. "curve": [ 0.259, 0, 0.618, 0.45 ]
  1171. },
  1172. {
  1173. "time": 2.6667,
  1174. "angle": -3.12,
  1175. "curve": [ 0.36, 0.43, 0.755, 1 ]
  1176. },
  1177. {
  1178. "time": 2.9333,
  1179. "angle": -8.96,
  1180. "curve": [ 0.25, 0, 0.75, 1 ]
  1181. },
  1182. { "time": 3.3333, "angle": 0 }
  1183. ],
  1184. "translate": [
  1185. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1186. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1187. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1188. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1189. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1190. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1191. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1192. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1193. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1194. { "time": 3.3333, "x": 0, "y": 0 }
  1195. ],
  1196. "scale": [
  1197. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1198. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1199. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1200. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1201. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1202. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1203. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1204. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1205. { "time": 3.3333, "x": 1, "y": 1 }
  1206. ]
  1207. },
  1208. "bone17": {
  1209. "rotate": [
  1210. {
  1211. "time": 0,
  1212. "angle": 0,
  1213. "curve": [ 0.25, 0, 0.75, 1 ]
  1214. },
  1215. {
  1216. "time": 0.4333,
  1217. "angle": -8.96,
  1218. "curve": [ 0.25, 0, 0.75, 1 ]
  1219. },
  1220. {
  1221. "time": 0.8333,
  1222. "angle": 0,
  1223. "curve": [ 0.25, 0, 0.75, 1 ]
  1224. },
  1225. {
  1226. "time": 1.2667,
  1227. "angle": -8.96,
  1228. "curve": [ 0.25, 0, 0.75, 1 ]
  1229. },
  1230. {
  1231. "time": 1.6667,
  1232. "angle": 0,
  1233. "curve": [ 0.25, 0, 0.75, 1 ]
  1234. },
  1235. {
  1236. "time": 2.1,
  1237. "angle": -8.96,
  1238. "curve": [ 0.25, 0, 0.75, 1 ]
  1239. },
  1240. {
  1241. "time": 2.5,
  1242. "angle": 0,
  1243. "curve": [ 0.259, 0, 0.618, 0.45 ]
  1244. },
  1245. {
  1246. "time": 2.6667,
  1247. "angle": -3.12,
  1248. "curve": [ 0.36, 0.43, 0.755, 1 ]
  1249. },
  1250. {
  1251. "time": 2.9333,
  1252. "angle": -8.96,
  1253. "curve": [ 0.25, 0, 0.75, 1 ]
  1254. },
  1255. { "time": 3.3333, "angle": 0 }
  1256. ],
  1257. "translate": [
  1258. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1259. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1260. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1261. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1262. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1263. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1264. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1265. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1266. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1267. { "time": 3.3333, "x": 0, "y": 0 }
  1268. ],
  1269. "scale": [
  1270. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1271. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1272. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1273. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1274. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1275. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1276. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1277. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1278. { "time": 3.3333, "x": 1, "y": 1 }
  1279. ]
  1280. },
  1281. "bone18": {
  1282. "rotate": [
  1283. {
  1284. "time": 0,
  1285. "angle": 0,
  1286. "curve": [ 0.25, 0, 0.75, 1 ]
  1287. },
  1288. {
  1289. "time": 0.4333,
  1290. "angle": -4.07,
  1291. "curve": [ 0.25, 0, 0.75, 1 ]
  1292. },
  1293. {
  1294. "time": 0.8333,
  1295. "angle": 0,
  1296. "curve": [ 0.25, 0, 0.75, 1 ]
  1297. },
  1298. {
  1299. "time": 1.2667,
  1300. "angle": -4.07,
  1301. "curve": [ 0.25, 0, 0.75, 1 ]
  1302. },
  1303. {
  1304. "time": 1.6667,
  1305. "angle": 0,
  1306. "curve": [ 0.25, 0, 0.75, 1 ]
  1307. },
  1308. {
  1309. "time": 2.1,
  1310. "angle": -4.07,
  1311. "curve": [ 0.25, 0, 0.75, 1 ]
  1312. },
  1313. {
  1314. "time": 2.5,
  1315. "angle": 0,
  1316. "curve": [ 0.259, 0, 0.618, 0.45 ]
  1317. },
  1318. {
  1319. "time": 2.6667,
  1320. "angle": -1.41,
  1321. "curve": [ 0.36, 0.43, 0.755, 1 ]
  1322. },
  1323. {
  1324. "time": 2.9333,
  1325. "angle": -4.07,
  1326. "curve": [ 0.25, 0, 0.75, 1 ]
  1327. },
  1328. { "time": 3.3333, "angle": 0 }
  1329. ],
  1330. "translate": [
  1331. {
  1332. "time": 0,
  1333. "x": 0,
  1334. "y": 0,
  1335. "curve": [ 0.25, 0, 0.75, 1 ]
  1336. },
  1337. {
  1338. "time": 0.4333,
  1339. "x": 0.39,
  1340. "y": 1.02,
  1341. "curve": [ 0.25, 0, 0.75, 1 ]
  1342. },
  1343. {
  1344. "time": 0.8333,
  1345. "x": 0,
  1346. "y": 0,
  1347. "curve": [ 0.25, 0, 0.75, 1 ]
  1348. },
  1349. {
  1350. "time": 1.2667,
  1351. "x": 0.39,
  1352. "y": 1.02,
  1353. "curve": [ 0.25, 0, 0.75, 1 ]
  1354. },
  1355. {
  1356. "time": 1.6667,
  1357. "x": 0,
  1358. "y": 0,
  1359. "curve": [ 0.25, 0, 0.75, 1 ]
  1360. },
  1361. {
  1362. "time": 2.1,
  1363. "x": 0.39,
  1364. "y": 1.02,
  1365. "curve": [ 0.25, 0, 0.75, 1 ]
  1366. },
  1367. {
  1368. "time": 2.5,
  1369. "x": 0,
  1370. "y": 0,
  1371. "curve": [ 0.259, 0, 0.618, 0.45 ]
  1372. },
  1373. {
  1374. "time": 2.6667,
  1375. "x": 0.14,
  1376. "y": 0.35,
  1377. "curve": [ 0.36, 0.43, 0.755, 1 ]
  1378. },
  1379. {
  1380. "time": 2.9333,
  1381. "x": 0.39,
  1382. "y": 1.02,
  1383. "curve": [ 0.25, 0, 0.75, 1 ]
  1384. },
  1385. { "time": 3.3333, "x": 0, "y": 0 }
  1386. ],
  1387. "scale": [
  1388. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1389. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1390. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1391. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1392. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1393. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1394. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1395. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1396. { "time": 3.3333, "x": 1, "y": 1 }
  1397. ]
  1398. },
  1399. "bone19": {
  1400. "rotate": [
  1401. {
  1402. "time": 0,
  1403. "angle": 4.63,
  1404. "curve": [ 0.25, 0, 0.75, 1 ]
  1405. },
  1406. {
  1407. "time": 0.4333,
  1408. "angle": 0,
  1409. "curve": [ 0.25, 0, 0.75, 1 ]
  1410. },
  1411. {
  1412. "time": 0.8333,
  1413. "angle": 4.63,
  1414. "curve": [ 0.25, 0, 0.75, 1 ]
  1415. },
  1416. {
  1417. "time": 1.2667,
  1418. "angle": 0,
  1419. "curve": [ 0.25, 0, 0.75, 1 ]
  1420. },
  1421. {
  1422. "time": 1.6667,
  1423. "angle": 4.63,
  1424. "curve": [ 0.25, 0, 0.75, 1 ]
  1425. },
  1426. {
  1427. "time": 2.1,
  1428. "angle": 0,
  1429. "curve": [ 0.25, 0, 0.75, 1 ]
  1430. },
  1431. {
  1432. "time": 2.5,
  1433. "angle": 4.63,
  1434. "curve": [ 0.259, 0, 0.618, 0.45 ]
  1435. },
  1436. {
  1437. "time": 2.6667,
  1438. "angle": 3.02,
  1439. "curve": [ 0.36, 0.43, 0.755, 1 ]
  1440. },
  1441. {
  1442. "time": 2.9333,
  1443. "angle": 0,
  1444. "curve": [ 0.25, 0, 0.75, 1 ]
  1445. },
  1446. { "time": 3.3333, "angle": 4.63 }
  1447. ],
  1448. "translate": [
  1449. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1450. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1451. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1452. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1453. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1454. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1455. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1456. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1457. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1458. { "time": 3.3333, "x": 0, "y": 0 }
  1459. ],
  1460. "scale": [
  1461. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1462. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1463. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1464. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1465. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1466. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1467. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1468. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1469. { "time": 3.3333, "x": 1, "y": 1 }
  1470. ]
  1471. },
  1472. "bone4": {
  1473. "rotate": [
  1474. { "time": 0, "angle": 0, "curve": "stepped" },
  1475. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1476. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1477. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  1478. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  1479. { "time": 2.1, "angle": 0, "curve": "stepped" },
  1480. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1481. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1482. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1483. { "time": 3.3333, "angle": 0 }
  1484. ],
  1485. "translate": [
  1486. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1487. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1488. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1489. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1490. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1491. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1492. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1493. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1494. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1495. { "time": 3.3333, "x": 0, "y": 0 }
  1496. ],
  1497. "scale": [
  1498. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1499. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1500. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1501. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1502. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1503. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1504. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1505. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1506. { "time": 3.3333, "x": 1, "y": 1 }
  1507. ]
  1508. },
  1509. "zuotui": {
  1510. "rotate": [
  1511. {
  1512. "time": 0,
  1513. "angle": -29.31,
  1514. "curve": [ 0.242, 0, 0.671, 0.68 ]
  1515. },
  1516. {
  1517. "time": 0.3333,
  1518. "angle": -46,
  1519. "curve": [ 0.378, 0.61, 0.721, 1 ]
  1520. },
  1521. {
  1522. "time": 0.4333,
  1523. "angle": -52.98,
  1524. "curve": [ 0.25, 0, 0.75, 1 ]
  1525. },
  1526. {
  1527. "time": 0.8333,
  1528. "angle": -29.31,
  1529. "curve": [ 0.25, 0, 0.75, 1 ]
  1530. },
  1531. {
  1532. "time": 1.2667,
  1533. "angle": -49.27,
  1534. "curve": [ 0.25, 0, 0.75, 1 ]
  1535. },
  1536. {
  1537. "time": 1.6667,
  1538. "angle": -29.31,
  1539. "curve": [ 0.25, 0, 0.75, 1 ]
  1540. },
  1541. {
  1542. "time": 2,
  1543. "angle": -46,
  1544. "curve": [ 0.378, 0.61, 0.721, 1 ]
  1545. },
  1546. {
  1547. "time": 2.1,
  1548. "angle": -52.98,
  1549. "curve": [ 0.25, 0, 0.75, 1 ]
  1550. },
  1551. {
  1552. "time": 2.5,
  1553. "angle": -29.31,
  1554. "curve": [ 0.259, 0, 0.618, 0.45 ]
  1555. },
  1556. {
  1557. "time": 2.6667,
  1558. "angle": -36.25,
  1559. "curve": [ 0.36, 0.43, 0.755, 1 ]
  1560. },
  1561. {
  1562. "time": 2.9333,
  1563. "angle": -49.27,
  1564. "curve": [ 0.25, 0, 0.75, 1 ]
  1565. },
  1566. { "time": 3.3333, "angle": -29.31 }
  1567. ],
  1568. "translate": [
  1569. {
  1570. "time": 0,
  1571. "x": 1.89,
  1572. "y": -0.86,
  1573. "curve": [ 0.242, 0, 0.671, 0.68 ]
  1574. },
  1575. {
  1576. "time": 0.3333,
  1577. "x": 1.14,
  1578. "y": -1.41,
  1579. "curve": [ 0.378, 0.61, 0.721, 1 ]
  1580. },
  1581. {
  1582. "time": 0.4333,
  1583. "x": 1,
  1584. "y": -1.52,
  1585. "curve": [ 0.25, 0, 0.75, 1 ]
  1586. },
  1587. {
  1588. "time": 0.8333,
  1589. "x": 1.89,
  1590. "y": -0.86,
  1591. "curve": [ 0.25, 0, 0.75, 1 ]
  1592. },
  1593. {
  1594. "time": 1.2667,
  1595. "x": 1,
  1596. "y": -1.52,
  1597. "curve": [ 0.25, 0, 0.75, 1 ]
  1598. },
  1599. {
  1600. "time": 1.6667,
  1601. "x": 1.89,
  1602. "y": -0.86,
  1603. "curve": [ 0.25, 0, 0.75, 1 ]
  1604. },
  1605. {
  1606. "time": 2,
  1607. "x": 1.14,
  1608. "y": -1.41,
  1609. "curve": [ 0.378, 0.61, 0.721, 1 ]
  1610. },
  1611. {
  1612. "time": 2.1,
  1613. "x": 1,
  1614. "y": -1.52,
  1615. "curve": [ 0.25, 0, 0.75, 1 ]
  1616. },
  1617. {
  1618. "time": 2.5,
  1619. "x": 1.89,
  1620. "y": -0.86,
  1621. "curve": [ 0.259, 0, 0.618, 0.45 ]
  1622. },
  1623. {
  1624. "time": 2.6667,
  1625. "x": 1.58,
  1626. "y": -1.09,
  1627. "curve": [ 0.36, 0.43, 0.755, 1 ]
  1628. },
  1629. {
  1630. "time": 2.9333,
  1631. "x": 1,
  1632. "y": -1.52,
  1633. "curve": [ 0.25, 0, 0.75, 1 ]
  1634. },
  1635. { "time": 3.3333, "x": 1.89, "y": -0.86 }
  1636. ],
  1637. "scale": [
  1638. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1639. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1640. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1641. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1642. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1643. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1644. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1645. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1646. { "time": 3.3333, "x": 1, "y": 1 }
  1647. ]
  1648. },
  1649. "bone21": {
  1650. "rotate": [
  1651. {
  1652. "time": 0,
  1653. "angle": 15.97,
  1654. "curve": [ 0.242, 0, 0.671, 0.68 ]
  1655. },
  1656. {
  1657. "time": 0.3333,
  1658. "angle": 70.04,
  1659. "curve": [ 0.378, 0.61, 0.721, 1 ]
  1660. },
  1661. {
  1662. "time": 0.4333,
  1663. "angle": 83.23,
  1664. "curve": [ 0.25, 0, 0.75, 1 ]
  1665. },
  1666. {
  1667. "time": 0.8333,
  1668. "angle": 15.97,
  1669. "curve": [ 0.25, 0, 0.75, 1 ]
  1670. },
  1671. {
  1672. "time": 1.2667,
  1673. "angle": 72.26,
  1674. "curve": [ 0.25, 0, 0.75, 1 ]
  1675. },
  1676. {
  1677. "time": 1.6667,
  1678. "angle": 15.97,
  1679. "curve": [ 0.25, 0, 0.75, 1 ]
  1680. },
  1681. {
  1682. "time": 2,
  1683. "angle": 70.04,
  1684. "curve": [ 0.378, 0.61, 0.721, 1 ]
  1685. },
  1686. {
  1687. "time": 2.1,
  1688. "angle": 83.23,
  1689. "curve": [ 0.25, 0, 0.75, 1 ]
  1690. },
  1691. {
  1692. "time": 2.5,
  1693. "angle": 15.97,
  1694. "curve": [ 0.259, 0, 0.618, 0.45 ]
  1695. },
  1696. {
  1697. "time": 2.6667,
  1698. "angle": 35.54,
  1699. "curve": [ 0.36, 0.43, 0.755, 1 ]
  1700. },
  1701. {
  1702. "time": 2.9333,
  1703. "angle": 72.26,
  1704. "curve": [ 0.25, 0, 0.75, 1 ]
  1705. },
  1706. { "time": 3.3333, "angle": 15.97 }
  1707. ],
  1708. "translate": [
  1709. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1710. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1711. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1712. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1713. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1714. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1715. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1716. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1717. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1718. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1719. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1720. { "time": 3.3333, "x": 0, "y": 0 }
  1721. ],
  1722. "scale": [
  1723. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1724. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1725. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1726. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1727. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1728. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1729. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1730. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1731. { "time": 3.3333, "x": 1, "y": 1 }
  1732. ]
  1733. },
  1734. "bone22": {
  1735. "rotate": [
  1736. {
  1737. "time": 0,
  1738. "angle": 17.64,
  1739. "curve": [ 0.242, 0, 0.671, 0.68 ]
  1740. },
  1741. {
  1742. "time": 0.3333,
  1743. "angle": 2,
  1744. "curve": [ 0.378, 0.61, 0.721, 1 ]
  1745. },
  1746. {
  1747. "time": 0.4333,
  1748. "angle": -4.76,
  1749. "curve": [ 0.25, 0, 0.75, 1 ]
  1750. },
  1751. {
  1752. "time": 0.8333,
  1753. "angle": 17.64,
  1754. "curve": [ 0.25, 0, 0.75, 1 ]
  1755. },
  1756. {
  1757. "time": 1.2667,
  1758. "angle": -1.05,
  1759. "curve": [ 0.25, 0, 0.75, 1 ]
  1760. },
  1761. {
  1762. "time": 1.6667,
  1763. "angle": 17.64,
  1764. "curve": [ 0.25, 0, 0.75, 1 ]
  1765. },
  1766. {
  1767. "time": 2,
  1768. "angle": 2,
  1769. "curve": [ 0.378, 0.61, 0.721, 1 ]
  1770. },
  1771. {
  1772. "time": 2.1,
  1773. "angle": -4.76,
  1774. "curve": [ 0.25, 0, 0.75, 1 ]
  1775. },
  1776. {
  1777. "time": 2.5,
  1778. "angle": 17.64,
  1779. "curve": [ 0.259, 0, 0.618, 0.45 ]
  1780. },
  1781. {
  1782. "time": 2.6667,
  1783. "angle": 11.14,
  1784. "curve": [ 0.36, 0.43, 0.755, 1 ]
  1785. },
  1786. {
  1787. "time": 2.9333,
  1788. "angle": -1.05,
  1789. "curve": [ 0.25, 0, 0.75, 1 ]
  1790. },
  1791. { "time": 3.3333, "angle": 17.64 }
  1792. ],
  1793. "translate": [
  1794. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1795. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1796. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1797. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1798. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1799. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1800. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1801. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1802. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1803. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1804. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1805. { "time": 3.3333, "x": 0, "y": 0 }
  1806. ],
  1807. "scale": [
  1808. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1809. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1810. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1811. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1812. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1813. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1814. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1815. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1816. { "time": 3.3333, "x": 1, "y": 1 }
  1817. ]
  1818. },
  1819. "youtui": {
  1820. "rotate": [
  1821. { "time": 0, "angle": 0, "curve": "stepped" },
  1822. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1823. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1824. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  1825. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  1826. { "time": 2.1, "angle": 0, "curve": "stepped" },
  1827. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1828. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1829. { "time": 3.3333, "angle": 0 }
  1830. ],
  1831. "translate": [
  1832. { "time": 0, "x": -1.3, "y": -118.89, "curve": "stepped" },
  1833. { "time": 0.4333, "x": -1.3, "y": -118.89, "curve": "stepped" },
  1834. { "time": 0.8333, "x": -1.3, "y": -118.89, "curve": "stepped" },
  1835. { "time": 1.2667, "x": -1.3, "y": -118.89, "curve": "stepped" },
  1836. { "time": 1.6667, "x": -1.3, "y": -118.89, "curve": "stepped" },
  1837. { "time": 2.1, "x": -1.3, "y": -118.89, "curve": "stepped" },
  1838. { "time": 2.5, "x": -1.3, "y": -118.89, "curve": "stepped" },
  1839. { "time": 2.9333, "x": -1.3, "y": -118.89, "curve": "stepped" },
  1840. { "time": 3.3333, "x": -1.3, "y": -118.89 }
  1841. ],
  1842. "scale": [
  1843. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1844. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1845. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1846. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1847. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1848. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1849. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1850. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1851. { "time": 3.3333, "x": 1, "y": 1 }
  1852. ]
  1853. },
  1854. "bone24": {
  1855. "rotate": [
  1856. { "time": 0, "angle": 0, "curve": "stepped" },
  1857. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1858. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1859. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  1860. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  1861. { "time": 2.1, "angle": 0, "curve": "stepped" },
  1862. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1863. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1864. { "time": 3.3333, "angle": 0 }
  1865. ],
  1866. "translate": [
  1867. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1868. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1869. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1870. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1871. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1872. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1873. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1874. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1875. { "time": 3.3333, "x": 0, "y": 0 }
  1876. ],
  1877. "scale": [
  1878. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1879. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1880. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1881. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1882. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1883. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1884. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1885. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1886. { "time": 3.3333, "x": 1, "y": 1 }
  1887. ]
  1888. },
  1889. "bone25": {
  1890. "rotate": [
  1891. { "time": 0, "angle": 0, "curve": "stepped" },
  1892. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1893. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1894. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  1895. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  1896. { "time": 2.1, "angle": 0, "curve": "stepped" },
  1897. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1898. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1899. { "time": 3.3333, "angle": 0 }
  1900. ],
  1901. "translate": [
  1902. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1903. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1904. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1905. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1906. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1907. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1908. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1909. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1910. { "time": 3.3333, "x": 0, "y": 0 }
  1911. ],
  1912. "scale": [
  1913. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1914. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1915. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1916. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1917. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1918. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1919. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1920. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1921. { "time": 3.3333, "x": 1, "y": 1 }
  1922. ]
  1923. },
  1924. "bone20": {
  1925. "rotate": [
  1926. { "time": 0, "angle": 0, "curve": "stepped" },
  1927. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1928. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1929. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  1930. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  1931. { "time": 2.1, "angle": 0, "curve": "stepped" },
  1932. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1933. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1934. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1935. { "time": 3.3333, "angle": 0 }
  1936. ],
  1937. "translate": [
  1938. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1939. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1940. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1941. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1942. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1943. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1944. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1945. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1946. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1947. { "time": 3.3333, "x": 0, "y": 0 }
  1948. ],
  1949. "scale": [
  1950. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1951. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1952. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1953. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1954. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1955. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1956. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1957. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1958. { "time": 3.3333, "x": 1, "y": 1 }
  1959. ]
  1960. },
  1961. "bone11": {
  1962. "rotate": [
  1963. { "time": 0, "angle": 0, "curve": "stepped" },
  1964. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1965. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1966. { "time": 0.3, "angle": 0, "curve": "stepped" },
  1967. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1968. { "time": 1.6, "angle": 0, "curve": "stepped" },
  1969. { "time": 1.7, "angle": 0, "curve": "stepped" },
  1970. { "time": 1.8, "angle": 0, "curve": "stepped" },
  1971. { "time": 2.6667, "angle": 0 }
  1972. ],
  1973. "translate": [
  1974. { "time": 0, "x": 0, "y": 0 },
  1975. { "time": 0.1, "x": -1.82, "y": 0, "curve": "stepped" },
  1976. { "time": 0.2, "x": -1.82, "y": 0 },
  1977. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1978. { "time": 1.5, "x": 0, "y": 0 },
  1979. { "time": 1.6, "x": -1.82, "y": 0, "curve": "stepped" },
  1980. { "time": 1.7, "x": -1.82, "y": 0 },
  1981. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  1982. { "time": 2.6667, "x": 0, "y": 0 }
  1983. ],
  1984. "scale": [
  1985. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1986. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1987. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1988. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1989. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1990. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1991. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1992. { "time": 1.8, "x": 1, "y": 1 }
  1993. ]
  1994. },
  1995. "bone12": {
  1996. "rotate": [
  1997. { "time": 0, "angle": 0, "curve": "stepped" },
  1998. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1999. { "time": 0.2, "angle": 0, "curve": "stepped" },
  2000. { "time": 0.3, "angle": 0, "curve": "stepped" },
  2001. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2002. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2003. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2004. { "time": 1.8, "angle": 0, "curve": "stepped" },
  2005. { "time": 2.6667, "angle": 0 }
  2006. ],
  2007. "translate": [
  2008. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2009. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2010. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  2011. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2012. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2013. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2014. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2015. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2016. { "time": 2.6667, "x": 0, "y": 0 }
  2017. ],
  2018. "scale": [
  2019. { "time": 0, "x": 1, "y": 1 },
  2020. { "time": 0.1, "x": 0.485, "y": 1, "curve": "stepped" },
  2021. { "time": 0.2, "x": 0.485, "y": 1 },
  2022. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2023. { "time": 1.5, "x": 1, "y": 1 },
  2024. { "time": 1.6, "x": 0.485, "y": 1, "curve": "stepped" },
  2025. { "time": 1.7, "x": 0.485, "y": 1 },
  2026. { "time": 1.8, "x": 1, "y": 1 }
  2027. ]
  2028. },
  2029. "bone13": {
  2030. "rotate": [
  2031. { "time": 0, "angle": 0, "curve": "stepped" },
  2032. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2033. { "time": 0.2, "angle": 0, "curve": "stepped" },
  2034. { "time": 0.3, "angle": 0, "curve": "stepped" },
  2035. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2036. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2037. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2038. { "time": 1.8, "angle": 0, "curve": "stepped" },
  2039. { "time": 2.6667, "angle": 0 }
  2040. ],
  2041. "translate": [
  2042. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2043. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2044. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  2045. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2046. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2047. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2048. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2049. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2050. { "time": 2.6667, "x": 0, "y": 0 }
  2051. ],
  2052. "scale": [
  2053. {
  2054. "time": 0,
  2055. "x": 1,
  2056. "y": 1,
  2057. "curve": [ 0.25, 0, 0.75, 1 ]
  2058. },
  2059. { "time": 0.1, "x": 0.493, "y": 1, "curve": "stepped" },
  2060. {
  2061. "time": 0.2,
  2062. "x": 0.493,
  2063. "y": 1,
  2064. "curve": [ 0.25, 0, 0.75, 1 ]
  2065. },
  2066. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2067. {
  2068. "time": 1.5,
  2069. "x": 1,
  2070. "y": 1,
  2071. "curve": [ 0.25, 0, 0.75, 1 ]
  2072. },
  2073. { "time": 1.6, "x": 0.493, "y": 1, "curve": "stepped" },
  2074. {
  2075. "time": 1.7,
  2076. "x": 0.493,
  2077. "y": 1,
  2078. "curve": [ 0.25, 0, 0.75, 1 ]
  2079. },
  2080. { "time": 1.8, "x": 1, "y": 1 }
  2081. ]
  2082. },
  2083. "bone14": {
  2084. "rotate": [
  2085. { "time": 0, "angle": 0, "curve": "stepped" },
  2086. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2087. { "time": 0.2, "angle": 0, "curve": "stepped" },
  2088. { "time": 0.3, "angle": 0, "curve": "stepped" },
  2089. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2090. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2091. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2092. { "time": 1.8, "angle": 0, "curve": "stepped" },
  2093. { "time": 2.6667, "angle": 0 }
  2094. ],
  2095. "translate": [
  2096. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2097. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2098. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  2099. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2100. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2101. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2102. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2103. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2104. { "time": 2.6667, "x": 0, "y": 0 }
  2105. ],
  2106. "scale": [
  2107. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2108. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2109. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  2110. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2111. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2112. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2113. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2114. { "time": 1.8, "x": 1, "y": 1 }
  2115. ]
  2116. },
  2117. "root": {
  2118. "rotate": [
  2119. { "time": 0, "angle": 0, "curve": "stepped" },
  2120. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2121. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2122. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  2123. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2124. { "time": 2.1, "angle": 0, "curve": "stepped" },
  2125. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2126. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2127. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2128. { "time": 3.3333, "angle": 0 }
  2129. ],
  2130. "translate": [
  2131. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2132. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2133. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2134. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2135. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2136. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  2137. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2138. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2139. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2140. { "time": 3.3333, "x": 0, "y": 0 }
  2141. ],
  2142. "scale": [
  2143. { "time": 0, "x": 0.65, "y": 0.65 }
  2144. ]
  2145. },
  2146. "bone7": {
  2147. "rotate": [
  2148. {
  2149. "time": 0,
  2150. "angle": 25.88,
  2151. "curve": [ 0.25, 0, 0.75, 1 ]
  2152. },
  2153. {
  2154. "time": 0.4333,
  2155. "angle": 28.61,
  2156. "curve": [ 0.25, 0, 0.75, 1 ]
  2157. },
  2158. {
  2159. "time": 0.8333,
  2160. "angle": 25.88,
  2161. "curve": [ 0.25, 0, 0.75, 1 ]
  2162. },
  2163. {
  2164. "time": 1.2667,
  2165. "angle": 28.61,
  2166. "curve": [ 0.25, 0, 0.75, 1 ]
  2167. },
  2168. {
  2169. "time": 1.6667,
  2170. "angle": 25.88,
  2171. "curve": [ 0.25, 0, 0.75, 1 ]
  2172. },
  2173. {
  2174. "time": 2.1,
  2175. "angle": 28.61,
  2176. "curve": [ 0.25, 0, 0.75, 1 ]
  2177. },
  2178. {
  2179. "time": 2.5,
  2180. "angle": 25.88,
  2181. "curve": [ 0.259, 0, 0.618, 0.45 ]
  2182. },
  2183. {
  2184. "time": 2.6667,
  2185. "angle": 26.83,
  2186. "curve": [ 0.36, 0.43, 0.755, 1 ]
  2187. },
  2188. {
  2189. "time": 2.9333,
  2190. "angle": 28.61,
  2191. "curve": [ 0.25, 0, 0.75, 1 ]
  2192. },
  2193. { "time": 3.3333, "angle": 25.88 }
  2194. ],
  2195. "translate": [
  2196. {
  2197. "time": 0,
  2198. "x": -1.5,
  2199. "y": 3.1,
  2200. "curve": [ 0.25, 0, 0.75, 1 ]
  2201. },
  2202. {
  2203. "time": 0.4333,
  2204. "x": -2.49,
  2205. "y": 3.38,
  2206. "curve": [ 0.25, 0, 0.75, 1 ]
  2207. },
  2208. {
  2209. "time": 0.8333,
  2210. "x": -1.5,
  2211. "y": 3.1,
  2212. "curve": [ 0.25, 0, 0.75, 1 ]
  2213. },
  2214. {
  2215. "time": 1.2667,
  2216. "x": -2.49,
  2217. "y": 3.38,
  2218. "curve": [ 0.25, 0, 0.75, 1 ]
  2219. },
  2220. {
  2221. "time": 1.6667,
  2222. "x": -1.5,
  2223. "y": 3.1,
  2224. "curve": [ 0.25, 0, 0.75, 1 ]
  2225. },
  2226. {
  2227. "time": 2.1,
  2228. "x": -2.49,
  2229. "y": 3.38,
  2230. "curve": [ 0.25, 0, 0.75, 1 ]
  2231. },
  2232. {
  2233. "time": 2.5,
  2234. "x": -1.5,
  2235. "y": 3.1,
  2236. "curve": [ 0.259, 0, 0.618, 0.45 ]
  2237. },
  2238. {
  2239. "time": 2.6667,
  2240. "x": -1.85,
  2241. "y": 3.2,
  2242. "curve": [ 0.36, 0.43, 0.755, 1 ]
  2243. },
  2244. {
  2245. "time": 2.9333,
  2246. "x": -2.49,
  2247. "y": 3.38,
  2248. "curve": [ 0.25, 0, 0.75, 1 ]
  2249. },
  2250. { "time": 3.3333, "x": -1.5, "y": 3.1 }
  2251. ],
  2252. "scale": [
  2253. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2254. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2255. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2256. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2258. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  2259. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2260. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2261. { "time": 3.3333, "x": 1, "y": 1 }
  2262. ]
  2263. },
  2264. "bone23": {
  2265. "rotate": [
  2266. {
  2267. "time": 0,
  2268. "angle": -64.92,
  2269. "curve": [ 0.25, 0, 0.75, 1 ]
  2270. },
  2271. {
  2272. "time": 0.4333,
  2273. "angle": -18.65,
  2274. "curve": [ 0.25, 0, 0.75, 1 ]
  2275. },
  2276. {
  2277. "time": 0.8333,
  2278. "angle": -64.92,
  2279. "curve": [ 0.25, 0, 0.75, 1 ]
  2280. },
  2281. {
  2282. "time": 1.2667,
  2283. "angle": -18.65,
  2284. "curve": [ 0.25, 0, 0.75, 1 ]
  2285. },
  2286. {
  2287. "time": 1.6667,
  2288. "angle": -64.92,
  2289. "curve": [ 0.25, 0, 0.75, 1 ]
  2290. },
  2291. {
  2292. "time": 2.1,
  2293. "angle": -18.65,
  2294. "curve": [ 0.25, 0, 0.75, 1 ]
  2295. },
  2296. {
  2297. "time": 2.5,
  2298. "angle": -64.92,
  2299. "curve": [ 0.259, 0, 0.618, 0.45 ]
  2300. },
  2301. {
  2302. "time": 2.6667,
  2303. "angle": -48.83,
  2304. "curve": [ 0.36, 0.43, 0.755, 1 ]
  2305. },
  2306. {
  2307. "time": 2.9333,
  2308. "angle": -18.65,
  2309. "curve": [ 0.25, 0, 0.75, 1 ]
  2310. },
  2311. { "time": 3.3333, "angle": -64.92 }
  2312. ],
  2313. "translate": [
  2314. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2315. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2316. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2317. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2318. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2319. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  2320. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2321. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2322. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2323. { "time": 3.3333, "x": 0, "y": 0 }
  2324. ],
  2325. "scale": [
  2326. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2327. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2328. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2329. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2330. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2331. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  2332. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2333. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2334. { "time": 3.3333, "x": 1, "y": 1 }
  2335. ]
  2336. },
  2337. "bone26": {
  2338. "rotate": [
  2339. {
  2340. "time": 0,
  2341. "angle": 15.26,
  2342. "curve": [ 0.25, 0, 0.75, 1 ]
  2343. },
  2344. {
  2345. "time": 0.4333,
  2346. "angle": -19.24,
  2347. "curve": [ 0.25, 0, 0.75, 1 ]
  2348. },
  2349. {
  2350. "time": 0.8333,
  2351. "angle": 15.26,
  2352. "curve": [ 0.25, 0, 0.75, 1 ]
  2353. },
  2354. {
  2355. "time": 1.2667,
  2356. "angle": -19.24,
  2357. "curve": [ 0.25, 0, 0.75, 1 ]
  2358. },
  2359. {
  2360. "time": 1.6667,
  2361. "angle": 15.26,
  2362. "curve": [ 0.25, 0, 0.75, 1 ]
  2363. },
  2364. {
  2365. "time": 2.1,
  2366. "angle": -19.24,
  2367. "curve": [ 0.25, 0, 0.75, 1 ]
  2368. },
  2369. {
  2370. "time": 2.5,
  2371. "angle": 15.26,
  2372. "curve": [ 0.259, 0, 0.618, 0.45 ]
  2373. },
  2374. {
  2375. "time": 2.6667,
  2376. "angle": 3.27,
  2377. "curve": [ 0.36, 0.43, 0.755, 1 ]
  2378. },
  2379. {
  2380. "time": 2.9333,
  2381. "angle": -19.24,
  2382. "curve": [ 0.25, 0, 0.75, 1 ]
  2383. },
  2384. { "time": 3.3333, "angle": 15.26 }
  2385. ],
  2386. "translate": [
  2387. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2388. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2389. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2390. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2391. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2392. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  2393. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2394. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2395. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2396. { "time": 3.3333, "x": 0, "y": 0 }
  2397. ],
  2398. "scale": [
  2399. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2400. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2401. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2402. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2403. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2404. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  2405. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2406. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2407. { "time": 3.3333, "x": 1, "y": 1 }
  2408. ]
  2409. },
  2410. "bone27": {
  2411. "rotate": [
  2412. {
  2413. "time": 0,
  2414. "angle": 25.05,
  2415. "curve": [ 0.25, 0, 0.75, 1 ]
  2416. },
  2417. {
  2418. "time": 0.4333,
  2419. "angle": 5.73,
  2420. "curve": [ 0.25, 0, 0.75, 1 ]
  2421. },
  2422. {
  2423. "time": 0.8333,
  2424. "angle": 25.05,
  2425. "curve": [ 0.25, 0, 0.75, 1 ]
  2426. },
  2427. {
  2428. "time": 1.2667,
  2429. "angle": 5.73,
  2430. "curve": [ 0.25, 0, 0.75, 1 ]
  2431. },
  2432. {
  2433. "time": 1.6667,
  2434. "angle": 25.05,
  2435. "curve": [ 0.25, 0, 0.75, 1 ]
  2436. },
  2437. {
  2438. "time": 2.1,
  2439. "angle": 5.73,
  2440. "curve": [ 0.25, 0, 0.75, 1 ]
  2441. },
  2442. {
  2443. "time": 2.5,
  2444. "angle": 25.05,
  2445. "curve": [ 0.259, 0, 0.618, 0.45 ]
  2446. },
  2447. {
  2448. "time": 2.6667,
  2449. "angle": 18.33,
  2450. "curve": [ 0.36, 0.43, 0.755, 1 ]
  2451. },
  2452. {
  2453. "time": 2.9333,
  2454. "angle": 5.73,
  2455. "curve": [ 0.25, 0, 0.75, 1 ]
  2456. },
  2457. { "time": 3.3333, "angle": 25.05 }
  2458. ],
  2459. "translate": [
  2460. { "time": 2.6667, "x": 0, "y": 0 }
  2461. ]
  2462. },
  2463. "bone28": {
  2464. "rotate": [
  2465. {
  2466. "time": 0,
  2467. "angle": 0,
  2468. "curve": [ 0.25, 0, 0.75, 1 ]
  2469. },
  2470. {
  2471. "time": 0.4333,
  2472. "angle": -18.5,
  2473. "curve": [ 0.25, 0, 0.75, 1 ]
  2474. },
  2475. {
  2476. "time": 0.8333,
  2477. "angle": 0,
  2478. "curve": [ 0.25, 0, 0.75, 1 ]
  2479. },
  2480. {
  2481. "time": 1.2667,
  2482. "angle": -18.5,
  2483. "curve": [ 0.25, 0, 0.75, 1 ]
  2484. },
  2485. {
  2486. "time": 1.6667,
  2487. "angle": 0,
  2488. "curve": [ 0.25, 0, 0.75, 1 ]
  2489. },
  2490. {
  2491. "time": 2.1,
  2492. "angle": -18.5,
  2493. "curve": [ 0.25, 0, 0.75, 1 ]
  2494. },
  2495. {
  2496. "time": 2.5,
  2497. "angle": 0,
  2498. "curve": [ 0.259, 0, 0.618, 0.45 ]
  2499. },
  2500. {
  2501. "time": 2.6667,
  2502. "angle": -6.44,
  2503. "curve": [ 0.36, 0.43, 0.755, 1 ]
  2504. },
  2505. {
  2506. "time": 2.9333,
  2507. "angle": -18.5,
  2508. "curve": [ 0.25, 0, 0.75, 1 ]
  2509. },
  2510. { "time": 3.3333, "angle": 0 }
  2511. ],
  2512. "translate": [
  2513. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2514. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2515. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2516. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2517. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2518. { "time": 3.3333, "x": 0, "y": 0 }
  2519. ]
  2520. }
  2521. },
  2522. "deform": {
  2523. "default": {
  2524. "shenti": {
  2525. "shenti": [
  2526. {
  2527. "time": 0,
  2528. "offset": 34,
  2529. "vertices": [ -0.0862, -4.52605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, 0, 0, 0, 0, 0, 0, 0, 0, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583 ],
  2530. "curve": [ 0.25, 0, 0.75, 1 ]
  2531. },
  2532. {
  2533. "time": 0.4333,
  2534. "curve": [ 0.25, 0, 0.75, 1 ]
  2535. },
  2536. {
  2537. "time": 0.8333,
  2538. "offset": 34,
  2539. "vertices": [ -0.0862, -4.52605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, 0, 0, 0, 0, 0, 0, 0, 0, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583 ],
  2540. "curve": [ 0.25, 0, 0.75, 1 ]
  2541. },
  2542. {
  2543. "time": 1.2667,
  2544. "curve": [ 0.25, 0, 0.75, 1 ]
  2545. },
  2546. {
  2547. "time": 1.6667,
  2548. "offset": 34,
  2549. "vertices": [ -0.0862, -4.52605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, 0, 0, 0, 0, 0, 0, 0, 0, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583 ],
  2550. "curve": [ 0.25, 0, 0.75, 1 ]
  2551. },
  2552. {
  2553. "time": 2.1,
  2554. "curve": [ 0.25, 0, 0.75, 1 ]
  2555. },
  2556. {
  2557. "time": 2.5,
  2558. "offset": 34,
  2559. "vertices": [ -0.0862, -4.52605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, 0, 0, 0, 0, 0, 0, 0, 0, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583 ],
  2560. "curve": [ 0.25, 0, 0.75, 1 ]
  2561. },
  2562. {
  2563. "time": 2.9333,
  2564. "curve": [ 0.25, 0, 0.75, 1 ]
  2565. },
  2566. {
  2567. "time": 3.3333,
  2568. "offset": 34,
  2569. "vertices": [ -0.0862, -4.52605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, 0, 0, 0, 0, 0, 0, 0, 0, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583, -0.0862, -4.52605, 0.09772, -4.52583 ]
  2570. }
  2571. ]
  2572. },
  2573. "toufa1": {
  2574. "toufa1": [
  2575. {
  2576. "time": 0,
  2577. "vertices": [ -0.28127, -3.91804, -0.28127, -3.91804, 0, 0, 0, 0, 0, 0, -3.59789, -4.13485, 0.66074, -4.73932 ],
  2578. "curve": [ 0.25, 0, 0.75, 1 ]
  2579. },
  2580. {
  2581. "time": 0.4333,
  2582. "offset": 6,
  2583. "vertices": [ 0.24165, 2.64097, 0.28192, 3.0811 ],
  2584. "curve": [ 0.25, 0, 0.75, 1 ]
  2585. },
  2586. {
  2587. "time": 0.8333,
  2588. "vertices": [ -0.28127, -3.91804, -0.28127, -3.91804, 0, 0, 0, 0, 0, 0, -3.59789, -4.13485, 0.66074, -4.73932 ],
  2589. "curve": [ 0.25, 0, 0.75, 1 ]
  2590. },
  2591. {
  2592. "time": 1.2667,
  2593. "offset": 6,
  2594. "vertices": [ 0.24165, 2.64097, 0.28192, 3.0811 ],
  2595. "curve": [ 0.25, 0, 0.75, 1 ]
  2596. },
  2597. {
  2598. "time": 1.6667,
  2599. "vertices": [ -0.28127, -3.91804, -0.28127, -3.91804, 0, 0, 0, 0, 0, 0, -3.59789, -4.13485, 0.66074, -4.73932 ],
  2600. "curve": [ 0.25, 0, 0.75, 1 ]
  2601. },
  2602. {
  2603. "time": 2.1,
  2604. "offset": 6,
  2605. "vertices": [ 0.24165, 2.64097, 0.28192, 3.0811 ],
  2606. "curve": [ 0.25, 0, 0.75, 1 ]
  2607. },
  2608. {
  2609. "time": 2.5,
  2610. "vertices": [ -0.28127, -3.91804, -0.28127, -3.91804, 0, 0, 0, 0, 0, 0, -3.59789, -4.13485, 0.66074, -4.73932 ],
  2611. "curve": [ 0.25, 0, 0.75, 1 ]
  2612. },
  2613. {
  2614. "time": 2.9333,
  2615. "offset": 6,
  2616. "vertices": [ 0.24165, 2.64097, 0.28192, 3.0811 ],
  2617. "curve": [ 0.25, 0, 0.75, 1 ]
  2618. },
  2619. {
  2620. "time": 3.3333,
  2621. "vertices": [ -0.28127, -3.91804, -0.28127, -3.91804, 0, 0, 0, 0, 0, 0, -3.59789, -4.13485, 0.66074, -4.73932 ]
  2622. }
  2623. ]
  2624. },
  2625. "youshou": {
  2626. "youshou": [
  2627. {
  2628. "time": 0,
  2629. "offset": 28,
  2630. "vertices": [ -1.23392, -6.05208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.62907, -3.92197, -0.14714, -3.96939 ],
  2631. "curve": "stepped"
  2632. },
  2633. {
  2634. "time": 0.8333,
  2635. "offset": 28,
  2636. "vertices": [ -1.23392, -6.05208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.62907, -3.92197, -0.14714, -3.96939 ],
  2637. "curve": "stepped"
  2638. },
  2639. {
  2640. "time": 1.6667,
  2641. "offset": 28,
  2642. "vertices": [ -1.23392, -6.05208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.62907, -3.92197, -0.14714, -3.96939 ],
  2643. "curve": "stepped"
  2644. },
  2645. {
  2646. "time": 2.5,
  2647. "offset": 28,
  2648. "vertices": [ -1.23392, -6.05208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.62907, -3.92197, -0.14714, -3.96939 ],
  2649. "curve": "stepped"
  2650. },
  2651. {
  2652. "time": 3.3333,
  2653. "offset": 28,
  2654. "vertices": [ -1.23392, -6.05208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.62907, -3.92197, -0.14714, -3.96939 ]
  2655. }
  2656. ]
  2657. },
  2658. "youtuitiji": {
  2659. "youtuitiji": [
  2660. {
  2661. "time": 0,
  2662. "offset": 86,
  2663. "vertices": [ 1.40163, -1.55805, -0.81899, -1.92904, 0.64136, -1.33622, -0.93954, -1.14634, -0.26487, -1.51375, -1.48373, -0.40023, 0, 0, -2.91344, -2.07996 ],
  2664. "curve": [ 0.25, 0, 0.75, 1 ]
  2665. },
  2666. {
  2667. "time": 0.4333,
  2668. "offset": 86,
  2669. "vertices": [ 1.40163, -1.55805, -0.81899, -1.92904, 0.64136, -1.33622, -0.93954, -1.14634, -0.26487, -1.51375, -1.48373, -0.40023, 0, 0, -2.91344, -2.07996, 3.09139, 1.61132, 2.81816, 3.26265 ],
  2670. "curve": [ 0.25, 0, 0.75, 1 ]
  2671. },
  2672. {
  2673. "time": 0.8333,
  2674. "offset": 86,
  2675. "vertices": [ 1.40163, -1.55805, -0.81899, -1.92904, 0.64136, -1.33622, -0.93954, -1.14634, -0.26487, -1.51375, -1.48373, -0.40023, 0, 0, -2.91344, -2.07996 ],
  2676. "curve": [ 0.25, 0, 0.75, 1 ]
  2677. },
  2678. {
  2679. "time": 1.2667,
  2680. "offset": 86,
  2681. "vertices": [ 1.40163, -1.55805, -0.81899, -1.92904, 0.64136, -1.33622, -0.93954, -1.14634, -0.26487, -1.51375, -1.48373, -0.40023, 0, 0, -2.91344, -2.07996, 3.09139, 1.61132, 2.81816, 3.26265 ],
  2682. "curve": [ 0.25, 0, 0.75, 1 ]
  2683. },
  2684. {
  2685. "time": 1.6667,
  2686. "offset": 86,
  2687. "vertices": [ 1.40163, -1.55805, -0.81899, -1.92904, 0.64136, -1.33622, -0.93954, -1.14634, -0.26487, -1.51375, -1.48373, -0.40023, 0, 0, -2.91344, -2.07996 ],
  2688. "curve": [ 0.25, 0, 0.75, 1 ]
  2689. },
  2690. {
  2691. "time": 2.1,
  2692. "offset": 86,
  2693. "vertices": [ 1.40163, -1.55805, -0.81899, -1.92904, 0.64136, -1.33622, -0.93954, -1.14634, -0.26487, -1.51375, -1.48373, -0.40023, 0, 0, -2.91344, -2.07996, 3.09139, 1.61132, 2.81816, 3.26265 ],
  2694. "curve": [ 0.25, 0, 0.75, 1 ]
  2695. },
  2696. {
  2697. "time": 2.5,
  2698. "offset": 86,
  2699. "vertices": [ 1.40163, -1.55805, -0.81899, -1.92904, 0.64136, -1.33622, -0.93954, -1.14634, -0.26487, -1.51375, -1.48373, -0.40023, 0, 0, -2.91344, -2.07996 ],
  2700. "curve": [ 0.25, 0, 0.75, 1 ]
  2701. },
  2702. {
  2703. "time": 2.9333,
  2704. "offset": 86,
  2705. "vertices": [ 1.40163, -1.55805, -0.81899, -1.92904, 0.64136, -1.33622, -0.93954, -1.14634, -0.26487, -1.51375, -1.48373, -0.40023, 0, 0, -2.91344, -2.07996, 3.09139, 1.61132, 2.81816, 3.26265 ],
  2706. "curve": [ 0.25, 0, 0.75, 1 ]
  2707. },
  2708. {
  2709. "time": 3.3333,
  2710. "offset": 86,
  2711. "vertices": [ 1.40163, -1.55805, -0.81899, -1.92904, 0.64136, -1.33622, -0.93954, -1.14634, -0.26487, -1.51375, -1.48373, -0.40023, 0, 0, -2.91344, -2.07996 ]
  2712. }
  2713. ]
  2714. },
  2715. "zuotui": {
  2716. "zuotui": [
  2717. {
  2718. "time": 0,
  2719. "offset": 102,
  2720. "vertices": [ -3.83094, -1.66737, 0, 0, -3.70806, 1.53505 ],
  2721. "curve": [ 0.25, 0, 0.75, 1 ]
  2722. },
  2723. {
  2724. "time": 0.4333,
  2725. "vertices": [ -9.56535, 4.60873, 5.11798, 9.30284, -6.79689, 5.4245, 5.78315, 6.49443, -5.23077, 6.94707, -5.83502, 5.94754, 6.25348, 5.5057, -4.16891, 7.21384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.20996, -4.78911, -4.06474, -1.45791, -5.89054, -2.4896 ],
  2726. "curve": [ 0.25, 0, 0.75, 1 ]
  2727. },
  2728. {
  2729. "time": 0.8333,
  2730. "offset": 102,
  2731. "vertices": [ -3.83094, -1.66737, 0, 0, -3.70806, 1.53505 ],
  2732. "curve": [ 0.25, 0, 0.75, 1 ]
  2733. },
  2734. {
  2735. "time": 1.2667,
  2736. "vertices": [ -9.56535, 4.60873, 5.11798, 9.30284, -6.79689, 5.4245, 5.78315, 6.49443, -5.23077, 6.94707, -5.83502, 5.94754, 6.25348, 5.5057, -4.16891, 7.21384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.20996, -4.78911, -4.06474, -1.45791, -5.89054, -2.4896 ],
  2737. "curve": [ 0.25, 0, 0.75, 1 ]
  2738. },
  2739. {
  2740. "time": 1.6667,
  2741. "offset": 102,
  2742. "vertices": [ -3.83094, -1.66737, 0, 0, -3.70806, 1.53505 ],
  2743. "curve": [ 0.25, 0, 0.75, 1 ]
  2744. },
  2745. {
  2746. "time": 2.1,
  2747. "vertices": [ -9.56535, 4.60873, 5.11798, 9.30284, -6.79689, 5.4245, 5.78315, 6.49443, -5.23077, 6.94707, -5.83502, 5.94754, 6.25348, 5.5057, -4.16891, 7.21384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.20996, -4.78911, -4.06474, -1.45791, -5.89054, -2.4896 ],
  2748. "curve": [ 0.25, 0, 0.75, 1 ]
  2749. },
  2750. {
  2751. "time": 2.5,
  2752. "offset": 102,
  2753. "vertices": [ -3.83094, -1.66737, 0, 0, -3.70806, 1.53505 ],
  2754. "curve": [ 0.25, 0, 0.75, 1 ]
  2755. },
  2756. {
  2757. "time": 2.9333,
  2758. "vertices": [ -9.56535, 4.60873, 5.11798, 9.30284, -6.79689, 5.4245, 5.78315, 6.49443, -5.23077, 6.94707, -5.83502, 5.94754, 6.25348, 5.5057, -4.16891, 7.21384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.20996, -4.78911, -4.06474, -1.45791, -5.89054, -2.4896 ],
  2759. "curve": [ 0.25, 0, 0.75, 1 ]
  2760. },
  2761. {
  2762. "time": 3.3333,
  2763. "offset": 102,
  2764. "vertices": [ -3.83094, -1.66737, 0, 0, -3.70806, 1.53505 ]
  2765. }
  2766. ]
  2767. }
  2768. }
  2769. }
  2770. },
  2771. "walk1": {
  2772. "slots": {
  2773. "biyan": {
  2774. "attachment": [
  2775. { "time": 1.0667, "name": "biyan" },
  2776. { "time": 1.1667, "name": null }
  2777. ]
  2778. },
  2779. "youtuitiji": {
  2780. "attachment": [
  2781. { "time": 0, "name": null }
  2782. ]
  2783. },
  2784. "youyan": {
  2785. "attachment": [
  2786. { "time": 1.0667, "name": null },
  2787. { "time": 1.1667, "name": "youyan" }
  2788. ]
  2789. },
  2790. "zuiba": {
  2791. "attachment": [
  2792. { "time": 0, "name": null }
  2793. ]
  2794. },
  2795. "zuoyan": {
  2796. "attachment": [
  2797. { "time": 1.0667, "name": null },
  2798. { "time": 1.1667, "name": "zuoyan" }
  2799. ]
  2800. }
  2801. },
  2802. "bones": {
  2803. "bone": {
  2804. "rotate": [
  2805. { "time": 0, "angle": 0, "curve": "stepped" },
  2806. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2807. { "time": 1, "angle": 0, "curve": "stepped" },
  2808. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2809. { "time": 2, "angle": 0 }
  2810. ],
  2811. "translate": [
  2812. { "time": 0, "x": 0, "y": -1.3 },
  2813. { "time": 0.1667, "x": 0, "y": -0.3 },
  2814. { "time": 0.5, "x": 0, "y": -1.3 },
  2815. { "time": 0.6667, "x": 0, "y": -0.3 },
  2816. { "time": 1, "x": 0, "y": -1.3 },
  2817. { "time": 1.1667, "x": 0, "y": -0.3 },
  2818. { "time": 1.5, "x": 0, "y": -1.3 },
  2819. { "time": 1.6667, "x": 0, "y": -0.3 },
  2820. { "time": 2, "x": 0, "y": -1.3 }
  2821. ],
  2822. "scale": [
  2823. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2824. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2825. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2826. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2827. { "time": 2, "x": 1, "y": 1 }
  2828. ]
  2829. },
  2830. "bone2": {
  2831. "rotate": [
  2832. { "time": 0, "angle": -5.76 },
  2833. { "time": 0.1667, "angle": -3.84 },
  2834. { "time": 0.3333, "angle": -1.92 },
  2835. { "time": 0.5, "angle": 0 },
  2836. { "time": 0.6667, "angle": -1.92 },
  2837. { "time": 0.8333, "angle": -3.84 },
  2838. { "time": 1, "angle": -5.76 },
  2839. { "time": 1.1667, "angle": -3.84 },
  2840. { "time": 1.3333, "angle": -1.92 },
  2841. { "time": 1.5, "angle": 0 },
  2842. { "time": 1.6667, "angle": -1.92 },
  2843. { "time": 1.8333, "angle": -3.84 },
  2844. { "time": 2, "angle": -5.76 }
  2845. ],
  2846. "translate": [
  2847. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2848. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2849. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2850. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2851. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2852. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2853. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2854. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2855. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2856. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2857. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2858. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2859. { "time": 2, "x": 0, "y": 0 }
  2860. ],
  2861. "scale": [
  2862. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2863. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2864. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2865. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2866. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2867. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2868. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2869. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2870. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2871. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2872. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2873. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2874. { "time": 2, "x": 1, "y": 1 }
  2875. ]
  2876. },
  2877. "bone3": {
  2878. "rotate": [
  2879. { "time": 0, "angle": 8.91 },
  2880. { "time": 0.5, "angle": 0 },
  2881. { "time": 1, "angle": 8.91 },
  2882. { "time": 1.5, "angle": 0 },
  2883. { "time": 2, "angle": 8.91 }
  2884. ],
  2885. "translate": [
  2886. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2887. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2888. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2889. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2890. { "time": 2, "x": 0, "y": 0 }
  2891. ],
  2892. "scale": [
  2893. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2894. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2895. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2896. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2897. { "time": 2, "x": 1, "y": 1 }
  2898. ]
  2899. },
  2900. "zuoshou": {
  2901. "rotate": [
  2902. {
  2903. "time": 0,
  2904. "angle": -5.56,
  2905. "curve": [ 0.25, 0, 0.75, 1 ]
  2906. },
  2907. {
  2908. "time": 0.5,
  2909. "angle": -303.06,
  2910. "curve": [ 0.25, 0, 0.75, 1 ]
  2911. },
  2912. {
  2913. "time": 1,
  2914. "angle": -5.56,
  2915. "curve": [ 0.25, 0, 0.75, 1 ]
  2916. },
  2917. {
  2918. "time": 1.5,
  2919. "angle": -303.06,
  2920. "curve": [ 0.25, 0, 0.75, 1 ]
  2921. },
  2922. { "time": 2, "angle": -5.56 }
  2923. ],
  2924. "translate": [
  2925. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2926. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2927. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2928. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2929. { "time": 2, "x": 0, "y": 0 }
  2930. ],
  2931. "scale": [
  2932. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2933. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2934. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2935. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2936. { "time": 2, "x": 1, "y": 1 }
  2937. ]
  2938. },
  2939. "bone5": {
  2940. "rotate": [
  2941. {
  2942. "time": 0,
  2943. "angle": -34.08,
  2944. "curve": [ 0.25, 0, 0.75, 1 ]
  2945. },
  2946. {
  2947. "time": 0.5,
  2948. "angle": -12.28,
  2949. "curve": [ 0.25, 0, 0.75, 1 ]
  2950. },
  2951. {
  2952. "time": 1,
  2953. "angle": -34.08,
  2954. "curve": [ 0.25, 0, 0.75, 1 ]
  2955. },
  2956. {
  2957. "time": 1.5,
  2958. "angle": -12.28,
  2959. "curve": [ 0.25, 0, 0.75, 1 ]
  2960. },
  2961. { "time": 2, "angle": -34.08 }
  2962. ],
  2963. "translate": [
  2964. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2965. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2966. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2967. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2968. { "time": 2, "x": 0, "y": 0 }
  2969. ],
  2970. "scale": [
  2971. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2972. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2973. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2974. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2975. { "time": 2, "x": 1, "y": 1 }
  2976. ]
  2977. },
  2978. "bone6": {
  2979. "rotate": [
  2980. {
  2981. "time": 0,
  2982. "angle": -8.11,
  2983. "curve": [ 0.25, 0, 0.75, 1 ]
  2984. },
  2985. {
  2986. "time": 0.5,
  2987. "angle": 6.92,
  2988. "curve": [ 0.25, 0, 0.75, 1 ]
  2989. },
  2990. {
  2991. "time": 1,
  2992. "angle": -8.11,
  2993. "curve": [ 0.25, 0, 0.75, 1 ]
  2994. },
  2995. {
  2996. "time": 1.5,
  2997. "angle": 6.92,
  2998. "curve": [ 0.25, 0, 0.75, 1 ]
  2999. },
  3000. { "time": 2, "angle": -8.11 }
  3001. ],
  3002. "translate": [
  3003. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3004. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3005. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3006. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3007. { "time": 2, "x": 0, "y": 0 }
  3008. ],
  3009. "scale": [
  3010. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3011. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3012. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3013. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3014. { "time": 2, "x": 1, "y": 1 }
  3015. ]
  3016. },
  3017. "youshou": {
  3018. "rotate": [
  3019. {
  3020. "time": 0,
  3021. "angle": 7.03,
  3022. "curve": [ 0.25, 0, 0.75, 1 ]
  3023. },
  3024. {
  3025. "time": 0.5,
  3026. "angle": 305.55,
  3027. "curve": [ 0.25, 0, 0.75, 1 ]
  3028. },
  3029. {
  3030. "time": 1,
  3031. "angle": 7.03,
  3032. "curve": [ 0.25, 0, 0.75, 1 ]
  3033. },
  3034. {
  3035. "time": 1.5,
  3036. "angle": 305.55,
  3037. "curve": [ 0.25, 0, 0.75, 1 ]
  3038. },
  3039. { "time": 2, "angle": 7.03 }
  3040. ],
  3041. "translate": [
  3042. {
  3043. "time": 0,
  3044. "x": 0,
  3045. "y": 0,
  3046. "curve": [ 0.25, 0, 0.75, 1 ]
  3047. },
  3048. {
  3049. "time": 0.5,
  3050. "x": -1.14,
  3051. "y": 3.22,
  3052. "curve": [ 0.25, 0, 0.75, 1 ]
  3053. },
  3054. {
  3055. "time": 1,
  3056. "x": 0,
  3057. "y": 0,
  3058. "curve": [ 0.25, 0, 0.75, 1 ]
  3059. },
  3060. {
  3061. "time": 1.5,
  3062. "x": -1.14,
  3063. "y": 3.22,
  3064. "curve": [ 0.25, 0, 0.75, 1 ]
  3065. },
  3066. { "time": 2, "x": 0, "y": 0 }
  3067. ],
  3068. "scale": [
  3069. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3070. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3071. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3072. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3073. { "time": 2, "x": 1, "y": 1 }
  3074. ]
  3075. },
  3076. "bone8": {
  3077. "rotate": [
  3078. {
  3079. "time": 0,
  3080. "angle": -8.79,
  3081. "curve": [ 0.25, 0, 0.75, 1 ]
  3082. },
  3083. {
  3084. "time": 0.5,
  3085. "angle": -37,
  3086. "curve": [ 0.25, 0, 0.75, 1 ]
  3087. },
  3088. {
  3089. "time": 1,
  3090. "angle": -8.79,
  3091. "curve": [ 0.25, 0, 0.75, 1 ]
  3092. },
  3093. {
  3094. "time": 1.5,
  3095. "angle": -37,
  3096. "curve": [ 0.25, 0, 0.75, 1 ]
  3097. },
  3098. { "time": 2, "angle": -8.79 }
  3099. ],
  3100. "translate": [
  3101. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3102. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3103. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3104. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3105. { "time": 2, "x": 0, "y": 0 }
  3106. ],
  3107. "scale": [
  3108. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3109. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3110. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3111. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3112. { "time": 2, "x": 1, "y": 1 }
  3113. ]
  3114. },
  3115. "bone9": {
  3116. "rotate": [
  3117. { "time": 0, "angle": -27.83, "curve": "stepped" },
  3118. { "time": 0.5, "angle": -27.83, "curve": "stepped" },
  3119. { "time": 1, "angle": -27.83, "curve": "stepped" },
  3120. { "time": 1.5, "angle": -27.83, "curve": "stepped" },
  3121. { "time": 2, "angle": -27.83 }
  3122. ],
  3123. "translate": [
  3124. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3125. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3126. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3127. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3128. { "time": 2, "x": 0, "y": 0 }
  3129. ],
  3130. "scale": [
  3131. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3132. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3133. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3134. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3135. { "time": 2, "x": 1, "y": 1 }
  3136. ]
  3137. },
  3138. "bone10": {
  3139. "rotate": [
  3140. { "time": 0, "angle": -5.85 }
  3141. ],
  3142. "translate": [
  3143. { "time": 0, "x": 0, "y": 0 }
  3144. ],
  3145. "scale": [
  3146. { "time": 0, "x": 1, "y": 1 }
  3147. ]
  3148. },
  3149. "bone11": {
  3150. "rotate": [
  3151. { "time": 1, "angle": 0, "curve": "stepped" },
  3152. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  3153. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3154. { "time": 1.3, "angle": 0 }
  3155. ],
  3156. "translate": [
  3157. { "time": 1, "x": 0, "y": 0 },
  3158. { "time": 1.0667, "x": -1.76, "y": 0, "curve": "stepped" },
  3159. { "time": 1.1667, "x": -1.76, "y": 0 },
  3160. { "time": 1.3, "x": 0, "y": 0 }
  3161. ],
  3162. "scale": [
  3163. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3164. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3165. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3166. { "time": 1.3, "x": 1, "y": 1 }
  3167. ]
  3168. },
  3169. "bone12": {
  3170. "rotate": [
  3171. { "time": 1, "angle": 0, "curve": "stepped" },
  3172. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  3173. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3174. { "time": 1.3, "angle": 0 }
  3175. ],
  3176. "translate": [
  3177. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3178. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3179. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3180. { "time": 1.3, "x": 0, "y": 0 }
  3181. ],
  3182. "scale": [
  3183. { "time": 1, "x": 1, "y": 1 },
  3184. { "time": 1.0667, "x": 0.524, "y": 1, "curve": "stepped" },
  3185. { "time": 1.1667, "x": 0.524, "y": 1 },
  3186. { "time": 1.3, "x": 1, "y": 1 }
  3187. ]
  3188. },
  3189. "bone13": {
  3190. "rotate": [
  3191. { "time": 1, "angle": 0, "curve": "stepped" },
  3192. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  3193. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3194. { "time": 1.3, "angle": 0 }
  3195. ],
  3196. "translate": [
  3197. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3198. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3199. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3200. { "time": 1.3, "x": 0, "y": 0 }
  3201. ],
  3202. "scale": [
  3203. { "time": 1, "x": 1, "y": 1 },
  3204. { "time": 1.0667, "x": 0.563, "y": 1, "curve": "stepped" },
  3205. { "time": 1.1667, "x": 0.563, "y": 1 },
  3206. { "time": 1.3, "x": 1, "y": 1 }
  3207. ]
  3208. },
  3209. "bone14": {
  3210. "rotate": [
  3211. { "time": 1, "angle": 0, "curve": "stepped" },
  3212. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  3213. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3214. { "time": 1.3, "angle": 0 }
  3215. ],
  3216. "translate": [
  3217. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3218. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3219. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3220. { "time": 1.3, "x": 0, "y": 0 }
  3221. ],
  3222. "scale": [
  3223. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3224. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3225. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3226. { "time": 1.3, "x": 1, "y": 1 }
  3227. ]
  3228. },
  3229. "bone15": {
  3230. "rotate": [
  3231. { "time": 0, "angle": 0 },
  3232. { "time": 0.1667, "angle": -3.46 },
  3233. { "time": 0.3333, "angle": -6.92 },
  3234. { "time": 0.5, "angle": -10.38 },
  3235. { "time": 0.6667, "angle": -6.92 },
  3236. { "time": 0.8333, "angle": -3.46 },
  3237. { "time": 1, "angle": 0 },
  3238. { "time": 1.1667, "angle": -3.46 },
  3239. { "time": 1.3333, "angle": -6.92 },
  3240. { "time": 1.5, "angle": -10.38 },
  3241. { "time": 1.6667, "angle": -6.92 },
  3242. { "time": 1.8333, "angle": -3.46 },
  3243. { "time": 2, "angle": 0 }
  3244. ],
  3245. "translate": [
  3246. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3247. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3248. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3249. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3250. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3251. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3252. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3253. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3254. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3255. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3256. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3257. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3258. { "time": 2, "x": 0, "y": 0 }
  3259. ],
  3260. "scale": [
  3261. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3262. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3263. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3264. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3265. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3266. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3267. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3268. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3269. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3270. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3271. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3272. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3273. { "time": 2, "x": 1, "y": 1 }
  3274. ]
  3275. },
  3276. "bone16": {
  3277. "rotate": [
  3278. { "time": 0, "angle": 0 },
  3279. { "time": 0.1667, "angle": -2.3 },
  3280. { "time": 0.3333, "angle": -4.59 },
  3281. { "time": 0.5, "angle": -6.89 },
  3282. { "time": 0.6667, "angle": -4.59 },
  3283. { "time": 0.8333, "angle": -2.3 },
  3284. { "time": 1, "angle": 0 },
  3285. { "time": 1.1667, "angle": -2.3 },
  3286. { "time": 1.3333, "angle": -4.59 },
  3287. { "time": 1.5, "angle": -6.89 },
  3288. { "time": 1.6667, "angle": -4.59 },
  3289. { "time": 1.8333, "angle": -2.3 },
  3290. { "time": 2, "angle": 0 }
  3291. ],
  3292. "translate": [
  3293. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3294. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3295. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3296. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3297. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3298. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3299. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3300. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3301. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3302. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3303. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3304. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3305. { "time": 2, "x": 0, "y": 0 }
  3306. ],
  3307. "scale": [
  3308. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3309. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3310. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3311. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3312. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3313. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3314. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3315. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3316. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3317. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3318. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3319. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3320. { "time": 2, "x": 1, "y": 1 }
  3321. ]
  3322. },
  3323. "bone17": {
  3324. "rotate": [
  3325. { "time": 0, "angle": 0 },
  3326. { "time": 0.1667, "angle": -2.3 },
  3327. { "time": 0.3333, "angle": -4.59 },
  3328. { "time": 0.5, "angle": -6.89 },
  3329. { "time": 0.6667, "angle": -4.59 },
  3330. { "time": 0.8333, "angle": -2.3 },
  3331. { "time": 1, "angle": 0 },
  3332. { "time": 1.1667, "angle": -2.3 },
  3333. { "time": 1.3333, "angle": -4.59 },
  3334. { "time": 1.5, "angle": -6.89 },
  3335. { "time": 1.6667, "angle": -4.59 },
  3336. { "time": 1.8333, "angle": -2.3 },
  3337. { "time": 2, "angle": 0 }
  3338. ],
  3339. "translate": [
  3340. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3341. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3342. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3343. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3344. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3345. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3346. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3347. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3348. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3349. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3350. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3351. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3352. { "time": 2, "x": 0, "y": 0 }
  3353. ],
  3354. "scale": [
  3355. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3356. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3357. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3358. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3359. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3360. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3361. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3362. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3363. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3364. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3365. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3366. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3367. { "time": 2, "x": 1, "y": 1 }
  3368. ]
  3369. },
  3370. "bone18": {
  3371. "rotate": [
  3372. { "time": 0, "angle": 7.39 },
  3373. { "time": 0.5, "angle": -2.16 },
  3374. { "time": 1, "angle": 7.39 },
  3375. { "time": 1.5, "angle": -2.16 },
  3376. { "time": 2, "angle": 7.39 }
  3377. ],
  3378. "translate": [
  3379. { "time": 0, "x": 0.43, "y": 2.54 },
  3380. { "time": 0.5, "x": -1.12, "y": 2.69 },
  3381. { "time": 1, "x": 0.43, "y": 2.54 },
  3382. { "time": 1.5, "x": -1.12, "y": 2.69 },
  3383. { "time": 2, "x": 0.43, "y": 2.54 }
  3384. ],
  3385. "scale": [
  3386. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3387. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3388. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3389. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3390. { "time": 2, "x": 1, "y": 1 }
  3391. ]
  3392. },
  3393. "bone19": {
  3394. "rotate": [
  3395. { "time": 0, "angle": -6.58 },
  3396. { "time": 0.5, "angle": -7.47 },
  3397. { "time": 1, "angle": -6.58 },
  3398. { "time": 1.5, "angle": -7.47 },
  3399. { "time": 2, "angle": -6.58 }
  3400. ],
  3401. "translate": [
  3402. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3403. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3404. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3405. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3406. { "time": 2, "x": 0, "y": 0 }
  3407. ],
  3408. "scale": [
  3409. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3410. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3411. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3412. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3413. { "time": 2, "x": 1, "y": 1 }
  3414. ]
  3415. },
  3416. "bone4": {
  3417. "rotate": [
  3418. { "time": 0, "angle": 0, "curve": "stepped" },
  3419. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3420. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3421. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3422. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3423. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3424. { "time": 1, "angle": 0, "curve": "stepped" },
  3425. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3426. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3427. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3428. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3429. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3430. { "time": 2, "angle": 0 }
  3431. ],
  3432. "translate": [
  3433. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3434. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3435. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3436. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3437. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3438. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3439. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3440. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3441. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3442. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3443. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3444. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3445. { "time": 2, "x": 0, "y": 0 }
  3446. ],
  3447. "scale": [
  3448. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3449. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3450. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3451. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3452. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3453. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3454. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3455. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3456. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3457. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3458. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3459. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3460. { "time": 2, "x": 1, "y": 1 }
  3461. ]
  3462. },
  3463. "zuotui": {
  3464. "rotate": [
  3465. { "time": 0, "angle": 50.67 },
  3466. { "time": 0.1667, "angle": -346.86 },
  3467. { "time": 0.3333, "angle": -22.9 },
  3468. { "time": 0.5, "angle": -12.85 },
  3469. { "time": 0.6667, "angle": -1.07 },
  3470. { "time": 0.8333, "angle": -328.3 },
  3471. { "time": 1, "angle": 50.67 },
  3472. { "time": 1.1667, "angle": -346.86 },
  3473. { "time": 1.3333, "angle": -22.9 },
  3474. { "time": 1.5, "angle": -12.85 },
  3475. { "time": 1.6667, "angle": -1.07 },
  3476. { "time": 1.8333, "angle": -328.3 },
  3477. { "time": 2, "angle": 50.67 }
  3478. ],
  3479. "translate": [
  3480. { "time": 0, "x": 2.34, "y": -1.03 },
  3481. { "time": 0.1667, "x": 2.29, "y": 0.98 },
  3482. { "time": 0.3333, "x": 5.95, "y": -0.09 },
  3483. { "time": 0.5, "x": 4.39, "y": -1.1 },
  3484. { "time": 0.6667, "x": 3.85, "y": -0.8 },
  3485. { "time": 0.8333, "x": 1.97, "y": -0.11 },
  3486. { "time": 1, "x": 2.34, "y": -1.03 },
  3487. { "time": 1.1667, "x": 2.29, "y": 0.98 },
  3488. { "time": 1.3333, "x": 5.95, "y": -0.09 },
  3489. { "time": 1.5, "x": 4.39, "y": -1.1 },
  3490. { "time": 1.6667, "x": 3.85, "y": -0.8 },
  3491. { "time": 1.8333, "x": 1.97, "y": -0.11 },
  3492. { "time": 2, "x": 2.34, "y": -1.03 }
  3493. ],
  3494. "scale": [
  3495. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3496. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3497. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3498. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3499. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3500. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3501. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3502. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3503. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3504. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3505. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3506. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3507. { "time": 2, "x": 1, "y": 1 }
  3508. ]
  3509. },
  3510. "bone21": {
  3511. "rotate": [
  3512. { "time": 0, "angle": 2.81 },
  3513. { "time": 0.1667, "angle": 72.58 },
  3514. { "time": 0.2667, "angle": 66.26 },
  3515. { "time": 0.3333, "angle": 39.31 },
  3516. { "time": 0.5, "angle": 5.03 },
  3517. { "time": 0.6667, "angle": 12.91 },
  3518. { "time": 0.8333, "angle": -0.93 },
  3519. { "time": 1, "angle": 2.81 },
  3520. { "time": 1.1667, "angle": 72.58 },
  3521. { "time": 1.2667, "angle": 66.26 },
  3522. { "time": 1.3333, "angle": 39.31 },
  3523. { "time": 1.5, "angle": 5.03 },
  3524. { "time": 1.6667, "angle": 12.91 },
  3525. { "time": 1.8333, "angle": -0.93 },
  3526. { "time": 2, "angle": 2.81 }
  3527. ],
  3528. "translate": [
  3529. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3530. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3531. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3532. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3533. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3534. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3535. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3536. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3537. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3538. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3539. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3540. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3541. { "time": 2, "x": 0, "y": 0 }
  3542. ],
  3543. "scale": [
  3544. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3545. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3546. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3547. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3548. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3549. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3550. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3551. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3552. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3553. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3554. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3555. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3556. { "time": 2, "x": 1, "y": 1 }
  3557. ]
  3558. },
  3559. "bone22": {
  3560. "rotate": [
  3561. { "time": 0, "angle": 0 },
  3562. { "time": 0.1667, "angle": -15.57 },
  3563. { "time": 0.3333, "angle": -3.53 },
  3564. { "time": 0.5, "angle": -12.48 },
  3565. { "time": 0.6667, "angle": -13.75 },
  3566. { "time": 0.8333, "angle": -27.47 },
  3567. { "time": 1, "angle": 0 },
  3568. { "time": 1.1667, "angle": -15.57 },
  3569. { "time": 1.3333, "angle": -3.53 },
  3570. { "time": 1.5, "angle": -12.48 },
  3571. { "time": 1.6667, "angle": -13.75 },
  3572. { "time": 1.8333, "angle": -27.47 },
  3573. { "time": 2, "angle": 0 }
  3574. ],
  3575. "translate": [
  3576. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3577. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3578. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3579. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3580. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3581. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3582. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3583. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3584. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3585. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3586. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3587. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3588. { "time": 2, "x": 0, "y": 0 }
  3589. ],
  3590. "scale": [
  3591. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3592. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3593. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3594. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3595. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3596. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3597. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3598. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3599. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3600. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3601. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3602. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3603. { "time": 2, "x": 1, "y": 1 }
  3604. ]
  3605. },
  3606. "youtui": {
  3607. "rotate": [
  3608. { "time": 0, "angle": -32.44 },
  3609. { "time": 0.1667, "angle": 333.21 },
  3610. { "time": 0.3333, "angle": 1.4 },
  3611. { "time": 0.5, "angle": 10.3 },
  3612. { "time": 0.6667, "angle": 351.34 },
  3613. { "time": 0.8333, "angle": 312.21 },
  3614. { "time": 1, "angle": -32.44 },
  3615. { "time": 1.1667, "angle": 333.21 },
  3616. { "time": 1.3333, "angle": 1.4 },
  3617. { "time": 1.5, "angle": 10.3 },
  3618. { "time": 1.6667, "angle": 351.34 },
  3619. { "time": 1.8333, "angle": 312.21 },
  3620. { "time": 2, "angle": -32.44 }
  3621. ],
  3622. "translate": [
  3623. { "time": 0, "x": 0.74, "y": 5.37 },
  3624. { "time": 0.1667, "x": -0.01, "y": 2.93 },
  3625. { "time": 0.3333, "x": 0.55, "y": 5.17 },
  3626. { "time": 0.5, "x": 0.92, "y": 3.25 },
  3627. { "time": 0.6667, "x": 2.1, "y": 10.29 },
  3628. { "time": 0.8333, "x": 0.14, "y": 4.41 },
  3629. { "time": 1, "x": 0.74, "y": 5.37 },
  3630. { "time": 1.1667, "x": -0.01, "y": 2.93 },
  3631. { "time": 1.3333, "x": 0.55, "y": 5.17 },
  3632. { "time": 1.5, "x": 0.92, "y": 3.25 },
  3633. { "time": 1.6667, "x": 2.1, "y": 10.29 },
  3634. { "time": 1.8333, "x": 0.14, "y": 4.41 },
  3635. { "time": 2, "x": 0.74, "y": 5.37 }
  3636. ],
  3637. "scale": [
  3638. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3639. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3640. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3641. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3642. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3643. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3644. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3645. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3646. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3647. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3648. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3649. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3650. { "time": 2, "x": 1, "y": 1 }
  3651. ]
  3652. },
  3653. "bone24": {
  3654. "rotate": [
  3655. { "time": 0, "angle": 6.82 },
  3656. { "time": 0.1667, "angle": 15.36 },
  3657. { "time": 0.3333, "angle": 4.39 },
  3658. { "time": 0.5, "angle": 32.12 },
  3659. { "time": 0.6667, "angle": 57.76 },
  3660. { "time": 0.7333, "angle": 59.48 },
  3661. { "time": 0.8333, "angle": 34.08 },
  3662. { "time": 1, "angle": 6.82 },
  3663. { "time": 1.1667, "angle": 15.36 },
  3664. { "time": 1.3333, "angle": 4.39 },
  3665. { "time": 1.5, "angle": 32.12 },
  3666. { "time": 1.6667, "angle": 57.76 },
  3667. { "time": 1.7333, "angle": 59.48 },
  3668. { "time": 1.8333, "angle": 34.08 },
  3669. { "time": 2, "angle": 6.82 }
  3670. ],
  3671. "translate": [
  3672. { "time": 0, "x": 0, "y": 0 },
  3673. { "time": 0.1667, "x": -1.39, "y": 0.37 },
  3674. { "time": 0.3333, "x": -2.26, "y": -0.14 },
  3675. { "time": 0.5, "x": -3.95, "y": -0.85 },
  3676. { "time": 0.6667, "x": -2.31, "y": 1.05 },
  3677. { "time": 0.8333, "x": -1.06, "y": -0.66 },
  3678. { "time": 1, "x": 0, "y": 0 },
  3679. { "time": 1.1667, "x": -1.39, "y": 0.37 },
  3680. { "time": 1.3333, "x": -2.26, "y": -0.14 },
  3681. { "time": 1.5, "x": -3.95, "y": -0.85 },
  3682. { "time": 1.6667, "x": -2.31, "y": 1.05 },
  3683. { "time": 1.8333, "x": -1.06, "y": -0.66 },
  3684. { "time": 2, "x": 0, "y": 0 }
  3685. ],
  3686. "scale": [
  3687. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3688. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3689. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3690. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3691. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3692. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3693. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3694. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3695. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3696. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3697. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3698. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3699. { "time": 2, "x": 1, "y": 1 }
  3700. ]
  3701. },
  3702. "bone25": {
  3703. "rotate": [
  3704. { "time": 0, "angle": 10.64 },
  3705. { "time": 0.1667, "angle": 13.85 },
  3706. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3707. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3708. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3709. { "time": 0.8333, "angle": 0 },
  3710. { "time": 1, "angle": 10.64 },
  3711. { "time": 1.1667, "angle": 13.85 },
  3712. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3713. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3714. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3715. { "time": 1.8333, "angle": 0 },
  3716. { "time": 2, "angle": 10.64 }
  3717. ],
  3718. "translate": [
  3719. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3720. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3721. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3722. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3723. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3724. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3725. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3726. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3727. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3728. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3729. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3730. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3731. { "time": 2, "x": 0, "y": 0 }
  3732. ],
  3733. "scale": [
  3734. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3735. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3736. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3737. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3738. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3739. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3740. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3741. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3742. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3743. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3744. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3745. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3746. { "time": 2, "x": 1, "y": 1 }
  3747. ]
  3748. },
  3749. "bone20": {
  3750. "rotate": [
  3751. { "time": 0, "angle": 0, "curve": "stepped" },
  3752. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3753. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3754. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3755. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3756. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3757. { "time": 1, "angle": 0, "curve": "stepped" },
  3758. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3759. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3760. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3761. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3762. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3763. { "time": 2, "angle": 0 }
  3764. ],
  3765. "translate": [
  3766. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3767. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3768. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3769. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3770. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3771. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3772. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3773. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3774. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3775. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3776. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3777. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3778. { "time": 2, "x": 0, "y": 0 }
  3779. ],
  3780. "scale": [
  3781. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3782. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3783. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3784. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3785. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3786. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3787. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3788. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3789. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3790. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3791. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3792. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3793. { "time": 2, "x": 1, "y": 1 }
  3794. ]
  3795. },
  3796. "root": {
  3797. "rotate": [
  3798. { "time": 0, "angle": 0 }
  3799. ],
  3800. "translate": [
  3801. { "time": 0, "x": 0, "y": 0 }
  3802. ],
  3803. "scale": [
  3804. { "time": 0, "x": 0.65, "y": 0.65 }
  3805. ]
  3806. }
  3807. },
  3808. "deform": {
  3809. "default": {
  3810. "kudang": {
  3811. "kudang": [
  3812. {
  3813. "time": 0,
  3814. "vertices": [ -1.44094, 2.01606, -2.95648, 10.13589, -0.71222, 7.85817, 0.18362, -5.54721, -1.7906, -6.92376, -2.29795, -0.67079, -1.01859, 8.73266, -0.38385, 3.87793, 0, 0, 0, 0, -0.01197, 3.24551, -0.20787, -2.19721 ]
  3815. },
  3816. {
  3817. "time": 0.1667,
  3818. "vertices": [ -0.35741, 0.73424, -2.08166, 7.56496, -0.55782, 6.16208, 0.12241, -3.69814, -1.32622, -1.7893, -0.80327, 1.9465, 0.81279, 6.97527, -0.2559, 2.58529, 1.21058, -0.38157, 1.54001, -1.25045, 0.01964, 2.80501, -0.29036, 0.20955 ]
  3819. },
  3820. {
  3821. "time": 0.3333,
  3822. "vertices": [ 0.72611, -0.54759, -1.20684, 4.99403, -0.40342, 4.46599, 0.48966, 3.42523, 0.66403, 5.39124, 1.84617, 5.29511, 2.64418, 5.21789, -0.12795, 1.29264, 2.42117, -0.76315, 3.08002, -2.50089, 0.05126, 2.36451, 0.67988, 2.38104 ]
  3823. },
  3824. {
  3825. "time": 0.5,
  3826. "vertices": [ 1.80964, -1.82941, -0.33202, 2.4231, -0.24902, 2.7699, 0.28819, 1.66797, 0.48391, 2.48224, 0.72355, 3.41789, 4.47557, 3.4605, 3.28495, 1.97659, 3.63175, -1.14472, 4.62004, -3.75134, 0.08288, 1.92402, 0.36725, 1.05078 ]
  3827. },
  3828. {
  3829. "time": 0.6667,
  3830. "vertices": [ 0.04017, 1.46454, -2.60152, 7.44549, -0.11782, 6.51005, 0, 0, 0.52916, -0.19468, 0.69491, 0.75003, 2.76576, 3.48528, 0, 0, 2.42117, -0.76315, 3.08002, -2.50089, -0.06006, 3.51825 ]
  3831. },
  3832. {
  3833. "time": 1,
  3834. "vertices": [ -1.44094, 2.01606, -2.95648, 10.13589, -0.71222, 7.85817, 0.18362, -5.54721, -1.7906, -6.92376, -2.29795, -0.67079, -1.01859, 8.73266, -0.38385, 3.87793, 0, 0, 0, 0, -0.01197, 3.24551, -0.20787, -2.19721 ]
  3835. },
  3836. {
  3837. "time": 1.1667,
  3838. "vertices": [ -0.35741, 0.73424, -2.08166, 7.56496, -0.55782, 6.16208, 0.12241, -3.69814, -1.32622, -1.7893, -0.80327, 1.9465, 0.81279, 6.97527, -0.2559, 2.58529, 1.21058, -0.38157, 1.54001, -1.25045, 0.01964, 2.80501, -0.29036, 0.20955 ]
  3839. },
  3840. {
  3841. "time": 1.3333,
  3842. "vertices": [ 0.72611, -0.54759, -1.20684, 4.99403, -0.40342, 4.46599, 0.48966, 3.42523, 0.66403, 5.39124, 1.84617, 5.29511, 2.64418, 5.21789, -0.12795, 1.29264, 2.42117, -0.76315, 3.08002, -2.50089, 0.05126, 2.36451, 0.67988, 2.38104 ]
  3843. },
  3844. {
  3845. "time": 1.5,
  3846. "vertices": [ 1.80964, -1.82941, -0.33202, 2.4231, -0.24902, 2.7699, 0.28819, 1.66797, 0.48391, 2.48224, 0.72355, 3.41789, 4.47557, 3.4605, 3.28495, 1.97659, 3.63175, -1.14472, 4.62004, -3.75134, 0.08288, 1.92402, 0.36725, 1.05078 ]
  3847. },
  3848. {
  3849. "time": 1.6667,
  3850. "vertices": [ 0.04017, 1.46454, -2.60152, 7.44549, -0.11782, 6.51005, 0, 0, 0.52916, -0.19468, 0.69491, 0.75003, 2.76576, 3.48528, 0, 0, 2.42117, -0.76315, 3.08002, -2.50089, -0.06006, 3.51825 ]
  3851. },
  3852. {
  3853. "time": 2,
  3854. "vertices": [ -1.44094, 2.01606, -2.95648, 10.13589, -0.71222, 7.85817, 0.18362, -5.54721, -1.7906, -6.92376, -2.29795, -0.67079, -1.01859, 8.73266, -0.38385, 3.87793, 0, 0, 0, 0, -0.01197, 3.24551, -0.20787, -2.19721 ]
  3855. }
  3856. ]
  3857. },
  3858. "shenti": {
  3859. "shenti": [
  3860. { "time": 0 },
  3861. {
  3862. "time": 0.5,
  3863. "offset": 34,
  3864. "vertices": [ 0.07678, 4.03127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.07678, 4.03127, -0.08581, 4.03109, 0.07678, 4.03127, -0.08581, 4.03109, 0.07678, 4.03127, -0.08581, 4.03109, 0.07678, 4.03127, -0.08581, 4.03109, 0.07678, 4.03127, -0.08581, 4.03109, 0.07678, 4.03127, -0.08581, 4.03109, 0.07204, 3.77929, -0.08051, 3.77911, 0.07204, 3.77929, -0.08051, 3.77911 ]
  3865. },
  3866. { "time": 1 },
  3867. {
  3868. "time": 1.5,
  3869. "offset": 34,
  3870. "vertices": [ 0.07678, 4.03127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.07678, 4.03127, -0.08581, 4.03109, 0.07678, 4.03127, -0.08581, 4.03109, 0.07678, 4.03127, -0.08581, 4.03109, 0.07678, 4.03127, -0.08581, 4.03109, 0.07678, 4.03127, -0.08581, 4.03109, 0.07678, 4.03127, -0.08581, 4.03109, 0.07204, 3.77929, -0.08051, 3.77911, 0.07204, 3.77929, -0.08051, 3.77911 ]
  3871. },
  3872. { "time": 2 }
  3873. ]
  3874. },
  3875. "toufa1": {
  3876. "toufa1": [
  3877. { "time": 0, "curve": "stepped" },
  3878. { "time": 1, "curve": "stepped" },
  3879. { "time": 2 }
  3880. ]
  3881. },
  3882. "youtui": {
  3883. "youtui": [
  3884. {
  3885. "time": 0,
  3886. "vertices": [ -2.61809, 1.40518, -2.56447, 1.50081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.44852, 0.32394, -0.24571, 3.09884, -2.61809, 1.40518, -2.56447, 1.50081 ]
  3887. },
  3888. {
  3889. "time": 0.5,
  3890. "offset": 64,
  3891. "vertices": [ -3.131, -2.14814, 0, 0, 1.90646, -1.24785, 0.96142, -2.06601 ]
  3892. },
  3893. {
  3894. "time": 0.6667,
  3895. "vertices": [ -0.23695, 6.73412, 4.88377, 3.09513, 1.04187, 5.70183, 5.45466, 1.96059, 1.04187, 5.70183, 5.45466, 1.96059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.60449, -1.32411, -2.59892, 4.97609, -0.65527, 8.298, 5.73443, 4.08072 ]
  3896. },
  3897. {
  3898. "time": 0.8333,
  3899. "vertices": [ -1.74539, 0.93679, -1.70965, 1.00054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.07799, -0.50009, -0.16381, 2.06589, -5.76562, 2.73768, -3.83756, 4.85012 ]
  3900. },
  3901. {
  3902. "time": 1,
  3903. "vertices": [ -2.61809, 1.40518, -2.56447, 1.50081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.44852, 0.32394, -0.24571, 3.09884, -2.61809, 1.40518, -2.56447, 1.50081 ]
  3904. },
  3905. {
  3906. "time": 1.5,
  3907. "offset": 64,
  3908. "vertices": [ -3.131, -2.14814, 0, 0, 1.90646, -1.24785, 0.96142, -2.06601 ]
  3909. },
  3910. {
  3911. "time": 1.6667,
  3912. "vertices": [ -0.23695, 6.73412, 4.88377, 3.09513, 1.04187, 5.70183, 5.45466, 1.96059, 1.04187, 5.70183, 5.45466, 1.96059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.60449, -1.32411, -2.59892, 4.97609, -0.65527, 8.298, 5.73443, 4.08072 ]
  3913. },
  3914. {
  3915. "time": 1.8333,
  3916. "vertices": [ -1.74539, 0.93679, -1.70965, 1.00054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.07799, -0.50009, -0.16381, 2.06589, -5.76562, 2.73768, -3.83756, 4.85012 ]
  3917. },
  3918. {
  3919. "time": 2,
  3920. "vertices": [ -2.61809, 1.40518, -2.56447, 1.50081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.44852, 0.32394, -0.24571, 3.09884, -2.61809, 1.40518, -2.56447, 1.50081 ]
  3921. }
  3922. ]
  3923. },
  3924. "youtuitiji": {
  3925. "youtuitiji": [
  3926. { "time": 0 }
  3927. ]
  3928. },
  3929. "zuotui": {
  3930. "zuotui": [
  3931. { "time": 0 },
  3932. {
  3933. "time": 0.2667,
  3934. "vertices": [ 0.49021, 3.07436, 0.62222, 3.05038, 0.91206, 1.98981, 0.99695, 1.94867, -1.68932, 1.39191, 1.6535, 1.4321, 1.71367, 1.35953, -0.9601, 1.9655 ]
  3935. },
  3936. { "time": 1 },
  3937. {
  3938. "time": 1.2667,
  3939. "vertices": [ 0.49021, 3.07436, 0.62222, 3.05038, 0.91206, 1.98981, 0.99695, 1.94867, -1.68932, 1.39191, 1.6535, 1.4321, 1.71367, 1.35953, -0.9601, 1.9655 ]
  3940. },
  3941. { "time": 2 }
  3942. ]
  3943. }
  3944. }
  3945. }
  3946. }
  3947. }
  3948. }