role402.json 164 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262
  1. {
  2. "skeleton": {
  3. "hash": "Y7+ma2w0n2doH29O6svC+slC9Vw",
  4. "spine": "3.8.99",
  5. "x": -533,
  6. "y": -36.75,
  7. "width": 1152,
  8. "height": 404.62,
  9. "images": "./images/",
  10. "audio": "E:/202412/1220/1Spine/5-猫鼬"
  11. },
  12. "bones": [
  13. { "name": "root" },
  14. { "name": "bone_down", "parent": "root", "y": -50, "color": "a500ffff" },
  15. { "name": "bone_right", "parent": "root", "x": -421.03, "y": -50, "color": "1bff01ff" },
  16. { "name": "bone_up", "parent": "root", "x": 502.13, "y": -50, "color": "fdff00ff" },
  17. { "name": "bone_right2", "parent": "bone_right", "x": 0.97, "y": 79.84, "color": "1bff01ff" },
  18. { "name": "bone_right3", "parent": "bone_right2", "length": 40.77, "rotation": 103.83, "x": 0.61, "color": "1bff01ff" },
  19. { "name": "bone_right4", "parent": "bone_right3", "length": 42.67, "rotation": -16.28, "x": 40.77, "color": "1bff01ff" },
  20. {
  21. "name": "bone_right5",
  22. "parent": "bone_right4",
  23. "length": 124.24,
  24. "rotation": 2.17,
  25. "x": 44.68,
  26. "y": -4.18,
  27. "color": "1bff01ff"
  28. },
  29. {
  30. "name": "bone_right6",
  31. "parent": "bone_right5",
  32. "length": 20.47,
  33. "rotation": -30.1,
  34. "x": 136.98,
  35. "y": 8.59,
  36. "color": "1bff01ff"
  37. },
  38. {
  39. "name": "bone_right7",
  40. "parent": "bone_right5",
  41. "length": 23.69,
  42. "rotation": -45.76,
  43. "x": 137.73,
  44. "y": -20.03,
  45. "color": "1bff01ff"
  46. },
  47. {
  48. "name": "bone_right8",
  49. "parent": "bone_right5",
  50. "length": 40.27,
  51. "rotation": 86.81,
  52. "x": 63.02,
  53. "y": 64.25,
  54. "color": "1bff01ff"
  55. },
  56. {
  57. "name": "bone_right9",
  58. "parent": "bone_right5",
  59. "length": 27.65,
  60. "rotation": -82.12,
  61. "x": 78.24,
  62. "y": -59.3,
  63. "color": "1bff01ff"
  64. },
  65. { "name": "1e1", "parent": "bone_right5", "x": 51.23, "y": -15.58, "color": "1bff01ff" },
  66. { "name": "1e2", "parent": "bone_right5", "x": 54.52, "y": -64.29, "color": "1bff01ff" },
  67. {
  68. "name": "1bizi",
  69. "parent": "bone_right5",
  70. "length": 30.08,
  71. "rotation": -57.96,
  72. "x": 25.29,
  73. "y": -64.43,
  74. "color": "1bff01ff"
  75. },
  76. { "name": "1zui", "parent": "bone_right5", "x": 11.13, "y": -33.44, "color": "1bff01ff" },
  77. {
  78. "name": "1shou1",
  79. "parent": "bone_right4",
  80. "length": 28.63,
  81. "rotation": 158.62,
  82. "x": 28.06,
  83. "y": 28.02,
  84. "color": "1bff01ff"
  85. },
  86. { "name": "1shou2", "parent": "1shou1", "length": 27.48, "rotation": 36.64, "x": 28.63, "color": "1bff01ff" },
  87. {
  88. "name": "1shou3",
  89. "parent": "bone_right4",
  90. "length": 30.16,
  91. "rotation": -130.91,
  92. "x": 32.86,
  93. "y": -41.26,
  94. "color": "1bff01ff"
  95. },
  96. { "name": "1shou4", "parent": "1shou3", "length": 28.73, "rotation": 22.24, "x": 30.16, "color": "1bff01ff" },
  97. {
  98. "name": "1weiba",
  99. "parent": "bone_right3",
  100. "length": 30.46,
  101. "rotation": 77.32,
  102. "x": 10.37,
  103. "y": 31.94,
  104. "color": "1bff01ff"
  105. },
  106. { "name": "1weiba2", "parent": "1weiba", "length": 21.52, "rotation": -26.26, "x": 30.46, "color": "1bff01ff" },
  107. { "name": "1weiba3", "parent": "1weiba2", "length": 23.93, "rotation": -50.14, "x": 21.52, "color": "1bff01ff" },
  108. {
  109. "name": "1tui1",
  110. "parent": "bone_right2",
  111. "length": 36.41,
  112. "rotation": -84.92,
  113. "x": -28.75,
  114. "y": 7.64,
  115. "color": "1bff01ff"
  116. },
  117. {
  118. "name": "1tui2",
  119. "parent": "bone_right2",
  120. "length": 38.14,
  121. "rotation": -96.67,
  122. "x": 29.68,
  123. "y": 8.45,
  124. "color": "1bff01ff"
  125. },
  126. { "name": "bone_right10", "parent": "bone_right4", "rotation": -87.55, "x": 29.18, "y": 40.93, "color": "1bff01ff" },
  127. { "name": "bone_right11", "parent": "bone_right3", "rotation": -103.83, "x": 2.18, "y": -48.56, "color": "1bff01ff" },
  128. { "name": "gun1", "parent": "bone_right", "x": 29.59, "y": 148.5, "color": "1bff01ff" },
  129. { "name": "ik1", "parent": "gun1", "x": 54.48, "y": -28.55, "color": "ff3f00ff" },
  130. { "name": "1wuqi", "parent": "ik1", "rotation": 18.6, "x": 13.07, "y": 86.56, "color": "1bff01ff" },
  131. { "name": "1wuqi2", "parent": "bone_right", "x": 124.23, "y": 194.33, "color": "1bff01ff" },
  132. { "name": "bone_down2", "parent": "bone_down", "x": -0.42, "y": 80.15, "color": "a500ffff" },
  133. { "name": "bone_down3", "parent": "bone_down2", "length": 37.47, "rotation": 89.36, "color": "a500ffff" },
  134. { "name": "bone_down4", "parent": "bone_down3", "length": 46.74, "rotation": 1.68, "x": 37.47, "color": "a500ffff" },
  135. { "name": "bone_down5", "parent": "bone_down4", "length": 118.73, "rotation": -1.84, "x": 46.74, "color": "a500ffff" },
  136. {
  137. "name": "bone_down6",
  138. "parent": "bone_down5",
  139. "length": 21.09,
  140. "rotation": 4.25,
  141. "x": 124.62,
  142. "y": 0.93,
  143. "color": "a500ffff"
  144. },
  145. { "name": "bone_down7", "parent": "bone_down6", "length": 19.37, "rotation": -3.43, "x": 21.09, "color": "a500ffff" },
  146. {
  147. "name": "2er1",
  148. "parent": "bone_down5",
  149. "length": 46.74,
  150. "rotation": 83.05,
  151. "x": 61.39,
  152. "y": 65.29,
  153. "color": "a500ffff"
  154. },
  155. {
  156. "name": "2er2",
  157. "parent": "bone_down5",
  158. "length": 48.05,
  159. "rotation": -81.13,
  160. "x": 63.2,
  161. "y": -62.26,
  162. "color": "a500ffff"
  163. },
  164. {
  165. "name": "2shou2",
  166. "parent": "bone_down4",
  167. "length": 37.1,
  168. "rotation": 151.24,
  169. "x": 39.01,
  170. "y": 38.46,
  171. "color": "a500ffff"
  172. },
  173. { "name": "2shou3", "parent": "2shou2", "length": 39.58, "rotation": 3.89, "x": 37.1, "color": "a500ffff" },
  174. {
  175. "name": "2shou1",
  176. "parent": "bone_down4",
  177. "length": 46.26,
  178. "rotation": -167.88,
  179. "x": 29.47,
  180. "y": -47.03,
  181. "color": "a500ffff"
  182. },
  183. {
  184. "name": "2tui1",
  185. "parent": "bone_down2",
  186. "length": 40.07,
  187. "rotation": -86.39,
  188. "x": -29.71,
  189. "y": 8.56,
  190. "color": "a500ffff"
  191. },
  192. {
  193. "name": "2tui2",
  194. "parent": "bone_down2",
  195. "length": 36.82,
  196. "rotation": -95.91,
  197. "x": 31.33,
  198. "y": 5.62,
  199. "color": "a500ffff"
  200. },
  201. { "name": "2e1", "parent": "bone_down5", "x": 50, "y": 36.62, "color": "a500ffff" },
  202. { "name": "2e2", "parent": "bone_down5", "x": 49.81, "y": -35.86, "color": "a500ffff" },
  203. { "name": "2zui", "parent": "bone_down5", "x": 12.94, "y": 29.02, "color": "a500ffff" },
  204. { "name": "bone_down8", "parent": "bone_down4", "x": 32.4, "y": 48.67, "color": "a500ffff" },
  205. { "name": "bone_down9", "parent": "bone_down3", "x": 8.53, "y": -49.27, "color": "a500ffff" },
  206. { "name": "gun2", "parent": "bone_down", "x": 56.24, "y": 150.03, "color": "a500ffff" },
  207. { "name": "ik2", "parent": "gun2", "x": 0.76, "y": -47.13, "color": "ff3f00ff" },
  208. { "name": "2wuqi", "parent": "ik2", "rotation": -176.7, "x": 55.5, "y": 15.59, "color": "a500ffff" },
  209. { "name": "bone_up2", "parent": "bone_up", "x": 0.58, "y": 84.21, "color": "fdff00ff" },
  210. { "name": "bone_up3", "parent": "bone_up2", "length": 39.13, "rotation": 88.51, "color": "fdff00ff" },
  211. { "name": "bone_up4", "parent": "bone_up3", "length": 41.66, "rotation": 1.49, "x": 39.13, "color": "fdff00ff" },
  212. { "name": "bone_up5", "parent": "bone_up4", "length": 124.46, "x": 41.66, "color": "fdff00ff" },
  213. { "name": "bone_up6", "parent": "bone_up5", "length": 20.38, "rotation": 4.29, "x": 124.46, "color": "fdff00ff" },
  214. { "name": "bone_up7", "parent": "bone_up6", "length": 23.37, "rotation": -3.04, "x": 20.38, "color": "fdff00ff" },
  215. {
  216. "name": "bone_up8",
  217. "parent": "bone_up5",
  218. "length": 34.68,
  219. "rotation": 84.96,
  220. "x": 66.04,
  221. "y": 76.71,
  222. "color": "fdff00ff"
  223. },
  224. {
  225. "name": "bone_up9",
  226. "parent": "bone_up5",
  227. "length": 39.63,
  228. "rotation": -89.27,
  229. "x": 70.1,
  230. "y": -68.58,
  231. "color": "fdff00ff"
  232. },
  233. {
  234. "name": "3shou1",
  235. "parent": "bone_up4",
  236. "length": 41.13,
  237. "rotation": -154.38,
  238. "x": 38.61,
  239. "y": -36.07,
  240. "color": "fdff00ff"
  241. },
  242. { "name": "3shou2", "parent": "3shou1", "length": 36.51, "rotation": -4.41, "x": 41.13, "color": "fdff00ff" },
  243. {
  244. "name": "3shou3",
  245. "parent": "bone_up4",
  246. "length": 51.8,
  247. "rotation": 26.82,
  248. "x": -7.11,
  249. "y": 37.59,
  250. "color": "fdff00ff"
  251. },
  252. { "name": "3shou4", "parent": "3shou3", "length": 46.84, "rotation": -30.55, "x": 51.8, "color": "fdff00ff" },
  253. {
  254. "name": "3tui1",
  255. "parent": "bone_up2",
  256. "length": 35.42,
  257. "rotation": -81.75,
  258. "x": -33.02,
  259. "y": 3.05,
  260. "color": "fdff00ff"
  261. },
  262. {
  263. "name": "3tui2",
  264. "parent": "bone_up2",
  265. "length": 38.32,
  266. "rotation": -96.09,
  267. "x": 32,
  268. "y": 5.08,
  269. "color": "fdff00ff"
  270. },
  271. {
  272. "name": "3weiba",
  273. "parent": "bone_up3",
  274. "length": 20.59,
  275. "rotation": 80.63,
  276. "x": -3.11,
  277. "y": -8.35,
  278. "color": "fdff00ff"
  279. },
  280. { "name": "3weiba2", "parent": "3weiba", "length": 20.39, "rotation": -31.94, "x": 20.59, "color": "fdff00ff" },
  281. { "name": "3weiba3", "parent": "3weiba2", "length": 18.52, "rotation": -25.24, "x": 20.39, "color": "fdff00ff" },
  282. { "name": "bone_up10", "parent": "bone_up4", "x": 24.45, "y": -45.62, "color": "fdff00ff" },
  283. { "name": "bone_up11", "parent": "bone_up3", "x": 5.15, "y": 51.2, "color": "fdff00ff" },
  284. { "name": "gun3", "parent": "bone_up2", "x": -50.42, "y": 29.57, "color": "fdff00ff" },
  285. { "name": "ik3", "parent": "gun3", "x": -6.5, "y": 95.36, "color": "ff3f00ff" },
  286. { "name": "3wuqi", "parent": "ik3", "x": -43.97, "y": 71.49, "color": "fdff00ff" },
  287. { "name": "2touying", "parent": "bone_down", "x": -0.26, "y": 50.06, "color": "a500ffff" },
  288. { "name": "1touying", "parent": "bone_right", "x": 2.08, "y": 49.08, "color": "1bff01ff" },
  289. { "name": "3touying", "parent": "bone_up", "x": 3.53, "y": 46.14, "color": "fdff00ff" },
  290. { "name": "effect_down", "parent": "2wuqi", "x": -0.47, "y": -96.81, "color": "a500ffff" },
  291. { "name": "effect_right", "parent": "1wuqi", "x": -10.86, "y": 159.69, "color": "1bff01ff" },
  292. { "name": "effect_up", "parent": "3wuqi", "x": -1.01, "y": 90.33, "color": "fdff00ff" }
  293. ],
  294. "slots": [
  295. { "name": "1touying", "bone": "1touying", "attachment": "1touying" },
  296. { "name": "1shou2", "bone": "1shou3", "attachment": "1shou2" },
  297. { "name": "1wuqi", "bone": "1wuqi", "attachment": "1wuqi" },
  298. { "name": "1wuqi2", "bone": "1wuqi2" },
  299. { "name": "1weiba", "bone": "1weiba", "attachment": "1weiba" },
  300. { "name": "1tui2", "bone": "1tui2", "attachment": "1tui2" },
  301. { "name": "1tui1", "bone": "1tui1", "attachment": "1tui1" },
  302. { "name": "1body", "bone": "bone_right2", "attachment": "1body" },
  303. { "name": "1shou1", "bone": "1shou1", "attachment": "1shou1" },
  304. { "name": "1daizyy", "bone": "bone_right2", "attachment": "1daizyy" },
  305. { "name": "1daiz", "bone": "bone_right2", "attachment": "1daiz" },
  306. { "name": "1er2", "bone": "bone_right9", "attachment": "1er2" },
  307. { "name": "1er1", "bone": "bone_right8", "attachment": "1er1" },
  308. { "name": "1tou", "bone": "bone_right5", "attachment": "1tou" },
  309. { "name": "1zui", "bone": "1zui", "attachment": "1zui" },
  310. { "name": "1bizi", "bone": "1bizi", "attachment": "1bizi" },
  311. { "name": "1e2", "bone": "1e2", "attachment": "1e2" },
  312. { "name": "1mm2", "bone": "bone_right5", "attachment": "1mm2" },
  313. { "name": "1e1", "bone": "1e1", "attachment": "1e1" },
  314. { "name": "1mm1", "bone": "bone_right5", "attachment": "1mm1" },
  315. { "name": "1fa", "bone": "bone_right5", "attachment": "1fa" },
  316. { "name": "2touying", "bone": "2touying", "attachment": "2touying" },
  317. { "name": "2er2", "bone": "2er2", "attachment": "2er2" },
  318. { "name": "2er1", "bone": "2er1", "attachment": "2er1" },
  319. { "name": "2tui2", "bone": "2tui2", "attachment": "2tui2" },
  320. { "name": "2tui1", "bone": "2tui1", "attachment": "2tui1" },
  321. { "name": "2shou2", "bone": "2shou2", "attachment": "2shou2" },
  322. { "name": "2body", "bone": "bone_down2", "attachment": "2body" },
  323. { "name": "2daiziyy", "bone": "bone_down2", "attachment": "2daiziyy" },
  324. { "name": "2daizi", "bone": "bone_down2", "attachment": "2daizi" },
  325. { "name": "2tou", "bone": "bone_down5", "attachment": "2tou" },
  326. { "name": "2fa", "bone": "bone_down6", "attachment": "2fa" },
  327. { "name": "2bizi", "bone": "bone_down5", "attachment": "2bizi" },
  328. { "name": "2e2", "bone": "2e2", "attachment": "2e2" },
  329. { "name": "2e1", "bone": "2e1", "attachment": "2e1" },
  330. { "name": "2mm2", "bone": "bone_down5", "attachment": "2mm2" },
  331. { "name": "2mm1", "bone": "bone_down5", "attachment": "2mm1" },
  332. { "name": "2shou1", "bone": "2shou1", "attachment": "2shou1" },
  333. { "name": "2zui", "bone": "2zui", "attachment": "2zui" },
  334. { "name": "2wuqi", "bone": "2wuqi", "attachment": "2wuqi" },
  335. { "name": "3touying", "bone": "3touying", "attachment": "3touying" },
  336. { "name": "3wuqi", "bone": "3wuqi", "attachment": "3wuqi" },
  337. { "name": "3shou2", "bone": "3shou3", "attachment": "3shou2" },
  338. { "name": "3shou1", "bone": "3shou1", "attachment": "3shou1" },
  339. { "name": "3tui2", "bone": "3tui2", "attachment": "3tui2" },
  340. { "name": "3tui1", "bone": "3tui1", "attachment": "3tui1" },
  341. { "name": "3body", "bone": "bone_up2", "attachment": "3body" },
  342. { "name": "3tou", "bone": "bone_up5", "attachment": "3tou" },
  343. { "name": "3fa", "bone": "bone_up6", "attachment": "3fa" },
  344. { "name": "3er2", "bone": "bone_up8", "attachment": "3er2" },
  345. { "name": "3er1", "bone": "bone_up9", "attachment": "3er1" },
  346. { "name": "3daizi", "bone": "bone_up2", "attachment": "3daizi" },
  347. { "name": "3weiba", "bone": "3weiba", "attachment": "3weiba" },
  348. { "name": "effect_down", "bone": "effect_down" },
  349. { "name": "effect_right", "bone": "effect_right" },
  350. { "name": "effect_up", "bone": "effect_up" }
  351. ],
  352. "ik": [
  353. {
  354. "name": "ik1",
  355. "bones": [ "1shou3", "1shou4" ],
  356. "target": "ik1"
  357. },
  358. {
  359. "name": "ik2",
  360. "order": 1,
  361. "bones": [ "2shou1" ],
  362. "target": "ik2"
  363. },
  364. {
  365. "name": "ik3",
  366. "order": 2,
  367. "bones": [ "3shou3", "3shou4" ],
  368. "target": "ik3",
  369. "bendPositive": false
  370. }
  371. ],
  372. "skins": [
  373. {
  374. "name": "default",
  375. "attachments": {
  376. "1bizi": {
  377. "1bizi": { "x": 9.98, "y": -0.12, "rotation": -31.76, "width": 42, "height": 36 }
  378. },
  379. "1body": {
  380. "1body": {
  381. "type": "mesh",
  382. "uvs": [ 0.84268, 0.07259, 0.92723, 0.25548, 0.98033, 0.41573, 0.99262, 0.62294, 0.95428, 0.81082, 0.83626, 0.93239, 0.67153, 0.99171, 0.28797, 0.99447, 0.0421, 0.9462, 0, 0.70583, 0.00984, 0.4627, 0.03472, 0.26654, 0.06668, 0.11457, 0.29531, 1.0E-5, 0.57362, 1.0E-5, 0.28848, 0.252, 0.61913, 0.2356, 0.28119, 0.48968, 0.65316, 0.48694, 0.28362, 0.74375, 0.67018, 0.74375 ],
  383. "triangles": [ 18, 1, 2, 18, 2, 3, 9, 10, 17, 18, 19, 17, 9, 17, 19, 20, 18, 3, 4, 20, 3, 5, 20, 4, 8, 9, 19, 6, 20, 5, 20, 7, 19, 20, 19, 18, 7, 20, 6, 8, 19, 7, 16, 14, 0, 15, 12, 13, 16, 0, 1, 11, 12, 15, 18, 16, 1, 17, 11, 15, 10, 11, 17, 15, 13, 14, 16, 15, 14, 17, 15, 16, 16, 18, 17 ],
  384. "vertices": [ 2, 6, 39.47, -44.4, 0.72714, 5, 66.21, -53.69, 0.27286, 2, 6, 22.14, -54.37, 0.52798, 5, 46.78, -58.4, 0.47202, 2, 6, 6.86, -60.82, 0.33215, 5, 30.3, -60.3, 0.66785, 2, 6, -13.16, -63.02, 0.14636, 5, 10.46, -56.8, 0.85364, 2, 6, -31.55, -59.62, 0.0502, 5, -6.23, -48.38, 0.9498, 2, 6, -43.88, -47.27, 0.01082, 5, -14.61, -33.07, 0.98918, 1, 5, -15.9, -14.26, 1, 2, 6, -52.46, 12.18, 0.00515, 5, -6.17, 26.4, 0.99485, 2, 6, -48.93, 39.15, 0.06019, 5, 4.78, 51.3, 0.93981, 2, 6, -25.83, 44.74, 0.21817, 5, 28.52, 50.18, 0.78183, 2, 6, -2.22, 44.68, 0.5915, 5, 51.16, 43.51, 0.4085, 2, 6, 16.91, 42.78, 0.88353, 5, 68.99, 36.32, 0.11647, 2, 6, 31.78, 39.93, 0.97603, 5, 82.47, 29.42, 0.02397, 1, 6, 43.95, 15.51, 1, 2, 6, 45.25, -14.8, 0.95629, 5, 80.05, -26.89, 0.04371, 2, 6, 19.5, 15.21, 0.98302, 5, 63.75, 9.13, 0.01698, 2, 6, 22.63, -20.73, 0.80659, 5, 56.68, -26.25, 0.19341, 2, 6, -3.57, 15.01, 0.50335, 5, 41.55, 15.41, 0.49665, 2, 6, -1.57, -25.48, 0.28321, 5, 32.12, -24.02, 0.71679, 2, 6, -28.18, 13.69, 0.0515, 5, 17.56, 21.04, 0.9485, 2, 6, -26.38, -28.4, 0.02136, 5, 7.49, -19.87, 0.97864 ],
  385. "hull": 15,
  386. "edges": [ 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 28, 26, 28, 26, 24, 24, 22, 22, 20, 18, 20, 18, 16, 12, 14, 16, 14 ],
  387. "width": 109,
  388. "height": 97
  389. }
  390. },
  391. "1daiz": {
  392. "1daiz": {
  393. "type": "mesh",
  394. "uvs": [ 0.17045, 0.0394, 0.30654, 0.10823, 0.41719, 0.1686, 0.50642, 0.22046, 0.5798, 0.10617, 0.74089, 0.19968, 0.8823, 0.3919, 0.84471, 0.46723, 0.91094, 0.52177, 1, 0.5997, 1, 0.71659, 0.95926, 0.88803, 0.88588, 1, 0.76237, 0.89842, 0.68004, 0.80751, 0.63529, 0.86465, 0.37217, 0.63087, 0.39544, 0.50619, 0.32206, 0.44385, 0.20213, 0.32956, 0.09295, 0.24643, 1.0E-5, 0.19426, 0.06147, 0 ],
  395. "triangles": [ 7, 5, 6, 8, 9, 10, 5, 3, 4, 7, 3, 5, 7, 14, 3, 17, 3, 14, 16, 17, 14, 15, 16, 14, 10, 13, 8, 8, 13, 14, 8, 14, 7, 11, 13, 10, 12, 13, 11, 20, 22, 0, 21, 22, 20, 19, 0, 1, 20, 0, 19, 18, 1, 2, 19, 1, 18, 17, 18, 2, 17, 2, 3 ],
  396. "vertices": [ 2, 25, 9.12, 5.44, 0.97257, 26, -86.89, 62.21, 0.02743, 2, 25, 25.32, -0.2, 0.81494, 26, -70.69, 56.56, 0.18506, 2, 25, 38.48, -5.15, 0.62658, 26, -57.53, 51.61, 0.37342, 2, 25, 49.1, -9.41, 0.43541, 26, -46.91, 47.36, 0.56459, 2, 25, 57.84, -0.03, 0.33633, 26, -38.18, 56.73, 0.66367, 2, 25, 77.01, -7.7, 0.24291, 26, -19.01, 49.07, 0.75709, 2, 25, 93.83, -23.46, 0.14443, 26, -2.18, 33.3, 0.85557, 2, 25, 89.36, -29.64, 0.11386, 26, -6.65, 27.13, 0.88614, 2, 25, 97.24, -34.11, 0.04447, 26, 1.23, 22.65, 0.95553, 2, 25, 107.84, -40.5, 0.00879, 26, 11.83, 16.26, 0.99121, 2, 25, 107.84, -50.09, 0.00184, 26, 11.83, 6.68, 0.99816, 1, 26, 6.98, -7.38, 1, 2, 25, 94.26, -73.33, 1.2E-4, 26, -1.75, -16.56, 0.99988, 2, 25, 79.56, -65, 0.03192, 26, -16.45, -8.23, 0.96808, 2, 25, 69.76, -57.54, 0.1187, 26, -26.25, -0.78, 0.8813, 2, 25, 64.44, -62.23, 0.15448, 26, -31.57, -5.46, 0.84552, 2, 25, 33.13, -43.06, 0.36355, 26, -62.88, 13.71, 0.63645, 2, 25, 35.9, -32.84, 0.45104, 26, -60.12, 23.93, 0.54896, 2, 25, 27.16, -27.72, 0.62503, 26, -68.85, 29.04, 0.37497, 2, 25, 12.89, -18.35, 0.85451, 26, -83.12, 38.42, 0.14549, 2, 25, -0.1, -11.54, 0.97972, 26, -96.11, 45.23, 0.02028, 1, 25, -11.16, -7.26, 1, 1, 25, -3.85, 8.67, 1 ],
  397. "hull": 23,
  398. "edges": [ 42, 40, 40, 38, 38, 36, 36, 34, 34, 32, 32, 30, 30, 28, 28, 26, 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 44, 44, 42 ],
  399. "width": 119,
  400. "height": 82
  401. }
  402. },
  403. "1daizyy": {
  404. "1daizyy": {
  405. "type": "mesh",
  406. "uvs": [ 0.61176, 0.32719, 0.91932, 0.65837, 1, 0.83245, 1, 1, 0.77363, 1, 0.44665, 0.7815, 0.25887, 0.47155, 0, 0.19557, 0, 0, 0.25887, 0 ],
  407. "triangles": [ 4, 2, 3, 4, 1, 2, 4, 5, 1, 5, 0, 1, 5, 6, 0, 7, 9, 6, 6, 9, 0, 7, 8, 9 ],
  408. "vertices": [ 2, 25, 48.78, -22.29, 0.66667, 26, -47.23, 34.48, 0.33333, 2, 25, 73.38, -42.49, 0.33333, 26, -22.63, 14.28, 0.66667, 2, 25, 79.84, -53.11, 0.11111, 26, -16.17, 3.66, 0.88889, 2, 25, 79.84, -63.33, 0.11111, 26, -16.17, -6.56, 0.88889, 2, 25, 61.73, -63.33, 0.33333, 26, -34.28, -6.56, 0.66667, 2, 25, 35.57, -50, 0.66667, 26, -60.44, 6.77, 0.33333, 2, 25, 20.55, -31.09, 0.88889, 26, -75.46, 25.68, 0.11111, 1, 25, -0.16, -14.26, 1, 1, 25, -0.16, -2.33, 1, 2, 25, 20.55, -2.33, 0.88889, 26, -75.46, 54.44, 0.11111 ],
  409. "hull": 10,
  410. "edges": [ 14, 16, 14, 12, 12, 10, 6, 8, 10, 8, 16, 18, 18, 0, 0, 2, 6, 4, 2, 4 ],
  411. "width": 80,
  412. "height": 61
  413. }
  414. },
  415. "1e1": {
  416. "1e1": { "x": 1.46, "y": -0.27, "rotation": -89.72, "width": 24, "height": 33 }
  417. },
  418. "1e2": {
  419. "1e2": { "x": -0.08, "y": 0.45, "rotation": -89.72, "width": 16, "height": 24 }
  420. },
  421. "1er1": {
  422. "1er1": { "x": 13.3, "y": -5.49, "rotation": -176.53, "width": 66, "height": 89 }
  423. },
  424. "1er2": {
  425. "1er2": { "x": 11.02, "y": -3.82, "rotation": -7.59, "width": 44, "height": 53 }
  426. },
  427. "1fa": {
  428. "1fa": {
  429. "type": "mesh",
  430. "uvs": [ 0.96686, 0.11268, 0.95026, 0.32702, 0.89863, 0.52528, 0.99078, 0.65121, 0.99494, 0.75128, 0.93876, 0.88136, 0.86767, 0.98234, 0.7179, 1, 0.622, 0.87894, 0.49107, 0.79321, 0.31772, 0.76374, 0.11671, 0.75838, 0, 0.71015, 0.07245, 0.54672, 0.14068, 0.37525, 0.22541, 0.21438, 0.31208, 0.08034, 0.41011, 1.0E-5, 0.48746, 0.06989, 0.50242, 0.23845, 0.59995, 0.16336, 0.73826, 0.08578, 0.88018, 0.04555 ],
  431. "triangles": [ 10, 11, 13, 9, 10, 19, 8, 9, 2, 6, 8, 5, 7, 8, 6, 8, 2, 5, 12, 13, 11, 1, 22, 0, 1, 21, 22, 2, 21, 1, 20, 2, 19, 2, 20, 21, 2, 9, 19, 4, 5, 2, 4, 2, 3, 16, 17, 18, 16, 18, 19, 15, 16, 19, 10, 15, 19, 14, 15, 10, 10, 13, 14 ],
  432. "vertices": [ 2, 8, 46.63, -35.81, 0.00134, 9, 33.54, -2.46, 0.99866, 1, 9, 24.74, -9.75, 1, 1, 9, 14.58, -14.55, 1, 2, 9, 15.06, -24.28, 0.88889, 7, 130.84, -47.76, 0.11111, 2, 9, 11.6, -28.32, 0.66667, 7, 125.54, -48.1, 0.33333, 2, 9, 3.7, -30.28, 0.33333, 7, 118.62, -43.81, 0.66667, 2, 9, -3.95, -30.33, 0.11111, 7, 113.24, -38.36, 0.88889, 1, 7, 112.25, -26.84, 1, 1, 7, 118.63, -19.42, 1, 1, 7, 123.13, -9.32, 1, 1, 7, 124.62, 4.04, 1, 2, 8, -16, 3.36, 0.11111, 7, 124.83, 19.52, 0.88889, 2, 8, -18.33, 12.41, 0.33333, 7, 127.34, 28.52, 0.66667, 2, 8, -8.04, 11.97, 0.66667, 7, 136.03, 22.98, 0.33333, 2, 8, 2.46, 12.04, 0.88889, 7, 145.15, 17.77, 0.11111, 1, 8, 13.11, 10.72, 1, 2, 8, 22.61, 8.56, 0.99841, 9, -1.56, 33.77, 0.00159, 2, 8, 30.1, 4.2, 0.95958, 9, 6.83, 31.6, 0.04042, 2, 8, 29.92, -2.81, 0.82876, 9, 8.54, 24.8, 0.17124, 2, 8, 22.8, -8.33, 0.59133, 9, 3.17, 17.57, 0.40867, 2, 8, 30.03, -12.79, 0.31728, 9, 11.34, 15.22, 0.68272, 2, 8, 38.96, -19.9, 0.11612, 9, 21.86, 10.79, 0.88388, 2, 8, 46.33, -28.25, 0.0218, 9, 31.21, 4.74, 0.9782 ],
  433. "hull": 23,
  434. "edges": [ 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 12, 14, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 44, 44, 42, 42, 40, 40, 38, 38, 36, 36, 34, 34, 32, 32, 30, 30, 28, 28, 26, 26, 24 ],
  435. "width": 77,
  436. "height": 53
  437. }
  438. },
  439. "1mm1": {
  440. "1mm1": { "x": 64.22, "y": -19.79, "rotation": -89.72, "width": 30, "height": 26 }
  441. },
  442. "1mm2": {
  443. "1mm2": { "x": 66.42, "y": -61.28, "rotation": -89.72, "width": 19, "height": 20 }
  444. },
  445. "1shou1": {
  446. "1shou1": {
  447. "type": "mesh",
  448. "uvs": [ 0.97933, 0.15936, 0.91258, 0.31866, 0.88847, 0.46936, 0.93669, 0.61144, 0.96211, 0.79873, 0.82647, 0.9279, 0.61636, 0.99139, 0.26847, 0.98278, 0.10314, 0.90422, 0.01033, 0.74922, 0.02411, 0.5447, 0.09969, 0.35741, 0.23403, 0.16797, 0.4028, 1.0E-5, 0.82647, 0 ],
  449. "triangles": [ 1, 14, 0, 1, 13, 14, 1, 12, 13, 1, 11, 12, 2, 11, 1, 10, 2, 3, 2, 10, 11, 7, 9, 6, 3, 9, 10, 9, 7, 8, 4, 5, 3, 6, 9, 3, 5, 6, 3 ],
  450. "vertices": [ 2, 17, -15.07, 28.69, 0.00219, 16, -0.59, 14.02, 0.99781, 2, 17, -4.56, 23.22, 0.0967, 16, 11.12, 15.91, 0.9033, 2, 17, 5.78, 19.76, 0.49434, 16, 21.48, 19.3, 0.50566, 2, 17, 16.24, 19.6, 0.85734, 16, 29.96, 25.42, 0.14266, 2, 17, 29.64, 17.73, 0.99033, 16, 41.83, 31.92, 0.00967, 1, 17, 37.36, 9.72, 1, 1, 17, 39.72, -0.51, 1, 1, 17, 35.65, -15.64, 1, 1, 17, 28.48, -21.64, 1, 1, 17, 16.68, -23.24, 1, 2, 17, 2.45, -19.38, 0.91166, 16, 42.16, -14.08, 0.08834, 2, 17, -9.94, -13.07, 0.32742, 16, 28.45, -16.42, 0.67258, 2, 17, -21.9, -4.15, 0.00193, 16, 13.53, -16.4, 0.99807, 1, 16, -0.6, -14.34, 1, 1, 16, -8.3, 3.09, 1 ],
  451. "hull": 15,
  452. "edges": [ 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 28, 26, 28, 26, 24, 24, 22, 22, 20, 18, 20, 18, 16, 12, 14, 16, 14 ],
  453. "width": 45,
  454. "height": 72
  455. }
  456. },
  457. "1shou2": {
  458. "1shou2": {
  459. "type": "mesh",
  460. "uvs": [ 0.4495, 0.13588, 0.64395, 0.24022, 0.79083, 0.26851, 0.96008, 0.33814, 1, 0.58019, 0.94076, 0.82224, 0.81622, 0.96353, 0.5708, 1, 0.35641, 0.79903, 0.14484, 0.53709, 0.00282, 0.27182, 0.04796, 0.01658, 0.27178, 0 ],
  461. "triangles": [ 4, 5, 2, 4, 2, 3, 5, 1, 2, 7, 8, 1, 6, 7, 1, 5, 6, 1, 12, 10, 11, 9, 12, 0, 9, 10, 12, 8, 9, 0, 8, 0, 1 ],
  462. "vertices": [ 2, 18, 12.45, 16.95, 0.81334, 19, -9.98, 22.39, 0.18666, 2, 18, 26, 21.57, 0.24059, 19, 4.32, 21.53, 0.75941, 2, 18, 34.26, 27.15, 0.03348, 19, 14.08, 23.58, 0.96652, 2, 18, 45.23, 32.05, 1.0E-5, 19, 26.09, 23.96, 0.99999, 1, 19, 33.55, 12.06, 1, 1, 19, 34.82, -2.24, 1, 1, 19, 29.94, -12.76, 1, 2, 18, 52.18, -13.28, 0.03354, 19, 15.35, -20.63, 0.96646, 2, 18, 33.87, -14.82, 0.55994, 19, -2.17, -15.12, 0.44006, 1, 18, 13.31, -13.7, 1, 1, 18, -3.99, -9.24, 1, 1, 18, -11.78, 3.42, 1, 2, 18, -1.53, 14.4, 0.99119, 19, -23.88, 25.32, 0.00881 ],
  463. "hull": 13,
  464. "edges": [ 20, 22, 20, 18, 18, 16, 16, 14, 12, 14, 12, 10, 22, 24, 24, 0, 4, 6, 10, 8, 6, 8, 0, 2, 2, 4 ],
  465. "width": 67,
  466. "height": 57
  467. }
  468. },
  469. "1tou": {
  470. "1tou": {
  471. "type": "mesh",
  472. "uvs": [ 0.70209, 0.04424, 0.81346, 0.11878, 0.88187, 0.26969, 0.93307, 0.42212, 0.99523, 0.58969, 0.99523, 0.74036, 0.94267, 0.87491, 0.82653, 0.95854, 0.68335, 1, 0.45426, 1, 0.3063, 0.97127, 0.16789, 0.94764, 0.05176, 0.87491, 0, 0.77127, 0, 0.61696, 0.05597, 0.50242, 0.08143, 0.34424, 0.13711, 0.16242, 0.24529, 0.07151, 0.3662, 0, 0.57482, 0 ],
  473. "triangles": [ 11, 12, 13, 13, 14, 11, 4, 7, 3, 5, 7, 4, 18, 16, 17, 16, 10, 15, 10, 11, 15, 11, 14, 15, 18, 19, 20, 18, 20, 16, 20, 0, 16, 1, 2, 0, 2, 9, 10, 5, 6, 7, 0, 2, 10, 9, 2, 3, 10, 16, 0, 3, 8, 9, 7, 8, 3 ],
  474. "vertices": [ 127.49, -37.05, 116.11, -56.71, 92.93, -68.86, 69.5, -77.99, 43.74, -89.05, 20.54, -89.17, -0.22, -80.02, -13.2, -59.64, -19.71, -34.47, -19.91, 5.84, -15.61, 31.91, -12.09, 56.28, -0.99, 76.78, 14.92, 85.97, 38.69, 86.08, 56.37, 76.32, 80.76, 71.96, 108.8, 62.29, 122.9, 43.32, 134.01, 22.1, 134.19, -14.62 ],
  475. "hull": 21,
  476. "edges": [ 26, 24, 24, 22, 22, 20, 20, 18, 16, 18, 16, 14, 14, 12, 12, 10, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 0, 0, 2, 2, 4, 4, 6, 10, 8, 6, 8 ],
  477. "width": 176,
  478. "height": 154
  479. }
  480. },
  481. "1touying": {
  482. "1touying": { "x": -0.25, "y": 0.92, "scaleX": 1.36, "scaleY": 2, "width": 158, "height": 26 }
  483. },
  484. "1tui1": {
  485. "1tui1": {
  486. "type": "mesh",
  487. "uvs": [ 0.85814, 0.09655, 1, 0.26059, 1, 0.54898, 0.95028, 0.84267, 0.84569, 1, 0.36947, 1, 0.23251, 0.91702, 0.14535, 0.68947, 0.07065, 0.41431, 0, 0.13348, 0.14844, 0.07009, 0.40991, 0, 0.6415, 0 ],
  488. "triangles": [ 8, 9, 10, 0, 1, 2, 11, 7, 8, 0, 2, 12, 10, 11, 8, 12, 6, 7, 12, 7, 11, 12, 2, 6, 2, 5, 6, 3, 5, 2, 4, 5, 3 ],
  489. "vertices": [ -0.23, 18.67, 8.25, 25.18, 22.04, 23.96, 35.85, 20.18, 42.9, 14.2, 40.75, -9.99, 36.17, -16.59, 24.9, -20.06, 11.4, -22.68, -2.34, -25.08, -4.7, -17.27, -6.87, -3.69, -5.83, 8.08 ],
  490. "hull": 13,
  491. "edges": [ 18, 20, 20, 22, 22, 24, 24, 0, 0, 2, 2, 4, 4, 6, 6, 8, 18, 16, 16, 14, 14, 12, 8, 10, 12, 10 ],
  492. "width": 51,
  493. "height": 48
  494. }
  495. },
  496. "1tui2": {
  497. "1tui2": {
  498. "type": "mesh",
  499. "uvs": [ 0.79105, 0.06204, 0.95867, 0.13696, 0.94536, 0.38754, 0.91878, 0.60546, 0.86722, 0.80621, 0.7758, 0.99999, 0.32127, 1, 0.05887, 0.95508, 0.02756, 0.73242, 0.0223, 0.5756, 0.02382, 0.41133, 0.02292, 0.29238, 0.23443, 0.12921, 0.50998, 1.0E-5 ],
  500. "triangles": [ 2, 0, 1, 10, 11, 12, 2, 13, 0, 2, 12, 13, 3, 12, 2, 10, 12, 3, 9, 10, 3, 4, 8, 9, 3, 4, 9, 8, 6, 7, 8, 4, 6, 4, 5, 6 ],
  501. "vertices": [ -6.1, 11.34, -3.4, 19.25, 8.61, 20.06, 19.14, 20.09, 28.98, 18.9, 38.7, 15.9, 41.08, -4.42, 40.31, -16.4, 29.86, -19.04, 22.41, -20.15, 14.57, -21, 8.9, -21.7, 0.02, -13.16, -7.58, -1.56 ],
  502. "hull": 14,
  503. "edges": [ 12, 14, 14, 16, 20, 22, 22, 24, 24, 26, 26, 0, 0, 2, 2, 4, 4, 6, 6, 8, 10, 12, 8, 10, 16, 8, 16, 18, 18, 20, 6, 18 ],
  504. "width": 45,
  505. "height": 48
  506. }
  507. },
  508. "1weiba": {
  509. "1weiba": {
  510. "type": "mesh",
  511. "uvs": [ 0.19049, 0.16707, 0.27699, 0.29991, 0.44108, 0.30506, 0.62561, 0.23813, 0.76629, 0.16975, 0.92967, 0.36025, 0.97921, 0.54623, 0.97921, 0.82859, 0.87602, 0.965, 0.65968, 1, 0.41067, 0.95175, 0.2167, 0.86216, 0.0804, 0.69534, 0, 0.47291, 0, 0.22268, 0.07515, 0, 0.13806, 0 ],
  512. "triangles": [ 7, 8, 9, 9, 3, 6, 7, 9, 6, 6, 3, 5, 9, 10, 3, 3, 10, 2, 3, 4, 5, 10, 11, 2, 11, 1, 2, 11, 12, 1, 1, 12, 13, 1, 13, 0, 0, 15, 16, 14, 15, 0, 0, 13, 14 ],
  513. "vertices": [ 2, 22, 15.92, -5.7, 0.98498, 21, 27.35, -15.87, 0.01502, 3, 22, 7.27, -9.33, 0.55393, 21, 19.02, -11.56, 0.43366, 20, 42.4, -18.78, 0.01241, 3, 22, 4.24, -19.73, 0.0501, 21, 9.1, -15.89, 0.67016, 20, 31.58, -18.28, 0.27973, 3, 22, 4.76, -32.46, 5.0E-5, 21, -0.34, -24.46, 0.23187, 20, 19.33, -21.78, 0.76808, 2, 21, -7.12, -31.86, 0.10178, 20, 9.97, -25.42, 0.89822, 2, 21, -21.42, -26.78, 0.01916, 20, -0.6, -14.54, 0.98084, 2, 21, -28.8, -18.74, 1.9E-4, 20, -3.66, -4.06, 0.99981, 1, 20, -3.34, 11.74, 1, 1, 20, 3.62, 19.25, 1, 2, 21, -20.49, 13.22, 0.00351, 20, 17.93, 20.92, 0.99649, 2, 21, -4.46, 17.75, 0.36942, 20, 34.31, 17.89, 0.63058, 2, 21, 9.26, 18.64, 0.89492, 20, 47.01, 12.62, 0.10508, 3, 22, -10.84, 8.86, 0.058, 21, 21.37, 14, 0.94165, 20, 55.82, 3.1, 3.5E-4, 2, 22, 2.55, 10.82, 0.82555, 21, 31.46, 4.97, 0.17445, 1, 22, 16.11, 7.25, 1, 1, 22, 26.9, -0.72, 1, 1, 22, 25.85, -4.73, 1 ],
  514. "hull": 17,
  515. "edges": [ 26, 24, 24, 22, 22, 20, 20, 18, 16, 18, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 32, 30, 32, 26, 28, 30, 28 ],
  516. "width": 66,
  517. "height": 56
  518. }
  519. },
  520. "1wuqi": {
  521. "1wuqi": { "x": -9.73, "y": 41.28, "rotation": 38.17, "width": 245, "height": 266 }
  522. },
  523. "1wuqi2": {
  524. "1wuqi": { "x": 15.3, "y": 37.67, "width": 245, "height": 266 }
  525. },
  526. "1zui": {
  527. "1zui": { "x": 0.17, "y": -1.61, "rotation": -89.72, "width": 28, "height": 18 }
  528. },
  529. "2bizi": {
  530. "2bizi": { "x": 30.67, "y": -0.9, "rotation": -89.19, "width": 53, "height": 34 }
  531. },
  532. "2body": {
  533. "2body": {
  534. "type": "mesh",
  535. "uvs": [ 0.70812, 0.03977, 0.84776, 0.09664, 0.92976, 0.25534, 0.96759, 0.38048, 0.9873, 0.53754, 0.9873, 0.71006, 0.95489, 0.88309, 0.86418, 0.92863, 0.69063, 0.97062, 0.44393, 1, 0.22408, 0.9496, 0.06129, 0.89553, 0.00722, 0.75856, 0.00433, 0.54423, 0.03229, 0.36434, 0.07471, 0.21773, 0.1603, 0.07251, 0.32944, 0.0115, 0.58615, 0.00289, 0.35653, 0.22453, 0.64917, 0.22031, 0.35282, 0.45862, 0.65843, 0.4544, 0.34727, 0.72434, 0.67696, 0.71169 ],
  536. "triangles": [ 10, 23, 9, 9, 23, 24, 9, 24, 8, 22, 23, 21, 23, 22, 24, 8, 24, 7, 10, 11, 23, 6, 7, 5, 11, 12, 23, 5, 7, 24, 12, 13, 23, 23, 13, 21, 5, 24, 4, 4, 24, 22, 22, 21, 20, 21, 19, 20, 13, 14, 21, 22, 3, 4, 14, 15, 21, 21, 15, 19, 22, 2, 3, 2, 20, 1, 1, 20, 0, 20, 2, 22, 15, 16, 19, 16, 17, 19, 19, 18, 20, 19, 17, 18, 20, 18, 0 ],
  537. "vertices": [ 2, 33, 42.92, -25.21, 0.99759, 32, 81.11, -23.94, 0.00241, 2, 33, 36.89, -41.16, 0.96198, 32, 75.54, -40.06, 0.03802, 2, 33, 20.69, -50.3, 0.83788, 32, 59.62, -49.67, 0.16212, 2, 33, 7.97, -54.42, 0.68576, 32, 47.03, -54.16, 0.31424, 2, 33, -7.93, -56.4, 0.46548, 32, 31.2, -56.61, 0.53452, 2, 33, -25.35, -56.09, 0.2557, 32, 13.77, -56.8, 0.7443, 2, 33, -42.76, -52.05, 0.13831, 32, -3.74, -53.27, 0.86169, 2, 33, -47.17, -41.53, 0.0993, 32, -8.46, -42.89, 0.9007, 2, 33, -51.05, -21.5, 0.02175, 32, -12.93, -22.98, 0.97825, 2, 33, -53.5, 6.92, 7.5E-4, 32, -16.21, 5.35, 0.99925, 2, 33, -47.96, 32.11, 0.06347, 32, -11.41, 30.69, 0.93653, 2, 33, -42.16, 50.73, 0.14167, 32, -6.15, 49.47, 0.85833, 2, 33, -28.22, 56.69, 0.21882, 32, 7.61, 55.84, 0.78118, 2, 33, -6.57, 56.64, 0.43619, 32, 29.25, 56.42, 0.56381, 2, 33, 11.54, 53.09, 0.67518, 32, 47.45, 53.41, 0.32482, 2, 33, 26.26, 47.95, 0.84279, 32, 62.32, 48.7, 0.15721, 2, 33, 40.75, 37.84, 0.95091, 32, 77.09, 39.02, 0.04909, 2, 33, 46.56, 18.28, 0.99756, 32, 83.47, 19.64, 0.00244, 1, 33, 46.89, -11.25, 1, 2, 33, 24.99, 15.56, 0.97089, 32, 61.99, 16.28, 0.02911, 2, 33, 24.81, -18.1, 0.98904, 32, 62.8, -17.37, 0.01096, 2, 33, 1.36, 16.41, 0.59794, 32, 38.35, 16.44, 0.40206, 2, 33, 1.15, -18.74, 0.65376, 32, 39.17, -18.7, 0.34624, 2, 33, -25.47, 17.53, 0.07401, 32, 11.5, 16.78, 0.92599, 2, 33, -24.87, -20.4, 0.09798, 32, 13.21, -21.12, 0.90202 ],
  538. "hull": 19,
  539. "edges": [ 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 0, 0, 2, 2, 4, 4, 6, 10, 8, 6, 8 ],
  540. "width": 115,
  541. "height": 101
  542. }
  543. },
  544. "2daizi": {
  545. "2daizi": {
  546. "type": "mesh",
  547. "uvs": [ 0.23893, 0.1198, 0.33809, 0.19813, 0.43893, 0.25956, 0.49022, 0.19274, 0.63554, 0.27109, 0.76677, 0.42069, 0.75661, 0.47396, 0.85783, 0.52001, 0.96373, 0.57513, 0.98989, 0.69703, 0.97809, 0.87713, 0.89542, 1, 0.77916, 0.95087, 0.66119, 0.87943, 0.58254, 0.81952, 0.54151, 0.87022, 0.27369, 0.63446, 0.30103, 0.54531, 0.21154, 0.44622, 0.10725, 0.29874, 0.00342, 0.12591, 0.03419, 0.02074, 0.1329, 0 ],
  548. "triangles": [ 11, 12, 10, 10, 12, 9, 9, 12, 7, 12, 13, 7, 13, 6, 7, 13, 14, 6, 8, 9, 7, 14, 15, 17, 15, 16, 17, 17, 2, 14, 14, 2, 4, 14, 4, 6, 4, 2, 3, 6, 4, 5, 17, 1, 2, 17, 18, 1, 18, 0, 1, 18, 19, 0, 19, 20, 22, 19, 22, 0, 22, 20, 21 ],
  549. "vertices": [ 2, 47, 0.53, -16.88, 0.92897, 48, 60.93, 82.01, 0.07103, 2, 47, -6.89, -29.05, 0.77146, 48, 53.86, 69.63, 0.22854, 2, 47, -12.77, -41.45, 0.56772, 48, 48.35, 57.07, 0.43228, 2, 47, -6.74, -47.92, 0.49645, 48, 54.57, 50.78, 0.50355, 2, 47, -14.27, -65.81, 0.3777, 48, 47.57, 32.68, 0.6223, 2, 47, -28.32, -81.83, 0.2329, 48, 33.99, 16.25, 0.7671, 2, 47, -33.2, -80.48, 0.19278, 48, 29.07, 17.46, 0.80722, 2, 47, -37.66, -92.95, 0.06492, 48, 24.98, 4.86, 0.93508, 2, 47, -42.97, -105.99, 0.0134, 48, 20.05, -8.33, 0.9866, 2, 47, -54.24, -109.03, 0.00149, 48, 8.87, -11.7, 0.99851, 1, 48, -7.71, -10.42, 1, 2, 47, -81.9, -96.82, 5.3E-4, 48, -19.13, -0.3, 0.99947, 2, 47, -77.12, -82.48, 0.02664, 48, -14.77, 14.17, 0.97336, 2, 47, -70.28, -67.98, 0.1174, 48, -8.36, 28.87, 0.8826, 2, 47, -64.6, -58.33, 0.228, 48, -2.96, 38.68, 0.772, 2, 47, -69.17, -53.15, 0.26822, 48, -7.68, 43.72, 0.73178, 2, 47, -46.88, -20.34, 0.5184, 48, 13.63, 77.17, 0.4816, 2, 47, -38.74, -23.88, 0.57936, 48, 21.87, 73.87, 0.42064, 2, 47, -29.43, -12.95, 0.77004, 48, 30.86, 85.07, 0.22996, 2, 47, -15.63, -0.26, 0.94442, 48, 44.29, 98.15, 0.05557, 1, 47, 0.5, 12.32, 1, 1, 47, 10.1, 8.33, 1, 2, 47, 11.79, -3.94, 0.99956, 48, 71.8, 95.28, 4.4E-4 ],
  550. "hull": 23,
  551. "edges": [ 40, 42, 40, 38, 38, 36, 36, 34, 34, 32, 32, 30, 30, 28, 28, 26, 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 42, 44, 0, 44 ],
  552. "width": 124,
  553. "height": 92
  554. }
  555. },
  556. "2daiziyy": {
  557. "2daiziyy": {
  558. "type": "mesh",
  559. "uvs": [ 0.26533, 0.23271, 0.52224, 0.48778, 0.77605, 0.6441, 1, 0.75518, 0.90914, 1, 0.69557, 0.93619, 0.39533, 0.70993, 0.14462, 0.42195, 0, 0.16689, 0, 0, 0.06724, 0 ],
  560. "triangles": [ 6, 7, 1, 5, 1, 2, 4, 5, 2, 6, 1, 5, 3, 4, 2, 8, 9, 10, 8, 10, 0, 7, 8, 0, 1, 7, 0 ],
  561. "vertices": [ 2, 47, -20.95, -23.73, 0.66667, 48, 39.65, 74.54, 0.33333, 2, 47, -41.59, -50.34, 0.33333, 48, 19.8, 47.34, 0.66667, 2, 47, -54.42, -76.76, 0.11111, 48, 7.76, 20.55, 0.88889, 1, 48, -0.76, -3.06, 1, 1, 48, -20.2, 6.26, 1, 2, 47, -77.33, -67.9, 0.11111, 48, -15.41, 28.74, 0.88889, 2, 47, -58.89, -36.7, 0.33333, 48, 2.11, 60.46, 0.66667, 2, 47, -35.67, -10.79, 0.66667, 48, 24.56, 87.04, 0.33333, 2, 47, -15.25, 4.03, 0.88889, 48, 44.54, 102.45, 0.11111, 1, 47, -2.07, 3.79, 1, 2, 47, -2.2, -3.27, 0.88889, 48, 57.8, 95.54, 0.11111 ],
  562. "hull": 11,
  563. "edges": [ 16, 18, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 18, 20, 0, 20 ],
  564. "width": 105,
  565. "height": 79
  566. }
  567. },
  568. "2e1": {
  569. "2e1": { "x": 0.65, "y": -0.73, "rotation": -89.19, "width": 22, "height": 31 }
  570. },
  571. "2e2": {
  572. "2e2": { "x": 1.86, "y": -0.25, "rotation": -89.19, "width": 22, "height": 31 }
  573. },
  574. "2er1": {
  575. "2er1": { "x": 22.97, "y": -3.77, "rotation": -172.23, "width": 57, "height": 77 }
  576. },
  577. "2er2": {
  578. "2er2": { "x": 24.41, "y": 3.45, "rotation": -8.06, "width": 60, "height": 77 }
  579. },
  580. "2fa": {
  581. "2fa": {
  582. "type": "mesh",
  583. "uvs": [ 0.80019, 0.16818, 0.93845, 0.37569, 1, 0.68291, 0.81401, 0.85538, 0.5444, 1, 0.20912, 0.85538, 0.00346, 0.70716, 0.02765, 0.44845, 0.16419, 0.17896, 0.3543, 0, 0.61008, 0 ],
  584. "triangles": [ 6, 7, 5, 3, 5, 1, 3, 1, 2, 4, 5, 3, 1, 5, 7, 7, 8, 1, 8, 9, 10, 10, 0, 8, 0, 1, 8 ],
  585. "vertices": [ 3, 36, 14.06, -15.07, 0.78017, 35, 34.22, -15.88, 0.10872, 34, 159.92, -12.38, 0.11111, 3, 36, 1.82, -21.43, 0.5153, 35, 21.62, -21.5, 0.15137, 34, 147.77, -18.91, 0.33333, 3, 36, -16.31, -24.26, 0.23398, 35, 3.36, -23.24, 0.09935, 34, 129.68, -22, 0.66667, 3, 36, -26.48, -15.7, 0.06378, 35, -6.29, -14.09, 0.04733, 34, 119.39, -13.59, 0.88889, 1, 34, 110.68, -1.31, 1, 3, 36, -26.48, 12.12, 0.06463, 35, -4.62, 13.69, 0.04648, 34, 118.99, 14.23, 0.88889, 3, 36, -17.74, 21.58, 0.23917, 35, 4.67, 22.61, 0.09416, 34, 127.6, 23.82, 0.66667, 3, 36, -2.47, 20.47, 0.52482, 35, 19.84, 20.58, 0.14184, 34, 142.88, 22.92, 0.33333, 3, 36, 13.43, 14.19, 0.79232, 35, 35.34, 13.36, 0.09657, 34, 158.87, 16.87, 0.11111, 2, 36, 23.98, 5.44, 0.94642, 35, 45.35, 4, 0.05358, 2, 36, 23.98, -6.32, 0.94209, 35, 44.65, -7.75, 0.05791 ],
  586. "hull": 11,
  587. "edges": [ 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 20, 18, 20, 18, 16, 12, 14, 16, 14 ],
  588. "width": 46,
  589. "height": 59
  590. }
  591. },
  592. "2mm1": {
  593. "2mm1": { "x": 64.18, "y": 33.58, "rotation": -89.19, "width": 39, "height": 26 }
  594. },
  595. "2mm2": {
  596. "2mm2": { "x": 65.13, "y": -33.42, "rotation": -89.19, "width": 39, "height": 26 }
  597. },
  598. "2shou1": {
  599. "2shou1": {
  600. "type": "mesh",
  601. "uvs": [ 0.76985, 0.15972, 0.9043, 0.33695, 0.97068, 0.60233, 0.94136, 0.81745, 0.76057, 0.95789, 0.34801, 0.9785, 0.04657, 0.84472, 0.03853, 0.57789, 0.05012, 0.29828, 0.08373, 0.08239, 0.54444, 0 ],
  602. "triangles": [ 8, 1, 7, 2, 6, 7, 8, 9, 10, 0, 8, 10, 1, 2, 7, 1, 8, 0, 3, 4, 2, 2, 5, 6, 4, 5, 2 ],
  603. "vertices": [ 7.87, 18.06, 18.54, 21.65, 33.16, 21.23, 44.18, 17.33, 49.75, 7.86, 46.7, -10.07, 36.65, -21.34, 22.54, -18.41, 7.95, -14.48, -3.06, -10.38, -2.78, 10.37 ],
  604. "hull": 11,
  605. "edges": [ 18, 20, 20, 0, 0, 2, 2, 4, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 4, 6, 8, 6 ],
  606. "width": 44,
  607. "height": 54
  608. }
  609. },
  610. "2shou2": {
  611. "2shou2": {
  612. "type": "mesh",
  613. "uvs": [ 0.97507, 0.13111, 0.9439, 0.3778, 0.8808, 0.60709, 0.77662, 0.82279, 0.57657, 0.98478, 0.18383, 0.97608, 0.04363, 0.86923, 0.00935, 0.71638, 0.12295, 0.48492, 0.27312, 0.28771, 0.43653, 0.13672, 0.67503, 0 ],
  614. "triangles": [ 8, 9, 2, 3, 8, 2, 7, 8, 3, 5, 6, 7, 7, 4, 5, 3, 4, 7, 0, 10, 11, 1, 10, 0, 1, 9, 10, 2, 9, 1 ],
  615. "vertices": [ 1, 39, -3, 10.45, 1, 2, 39, 16.65, 18.67, 0.9998, 40, -19.14, 20.01, 2.0E-4, 2, 39, 35.86, 24.49, 0.72877, 40, 0.43, 24.52, 0.27123, 2, 39, 55.19, 27.59, 0.21332, 40, 19.92, 26.3, 0.78668, 2, 39, 73.11, 23.45, 0.03257, 40, 37.52, 20.95, 0.96743, 1, 40, 46.36, -0.9, 1, 1, 40, 41.35, -12.31, 1, 1, 40, 30.16, -19.51, 1, 2, 39, 47.72, -20.64, 0.04742, 40, 9.2, -21.32, 0.95258, 2, 39, 28.51, -20.56, 0.68222, 40, -9.96, -19.93, 0.31778, 2, 39, 12.46, -17.92, 0.9791, 40, -25.8, -16.21, 0.0209, 1, 39, -4.61, -10.73, 1 ],
  616. "hull": 12,
  617. "edges": [ 8, 6, 6, 4, 4, 2, 2, 0, 0, 22, 22, 20, 20, 18, 18, 16, 16, 14, 12, 14, 8, 10, 12, 10 ],
  618. "width": 60,
  619. "height": 86
  620. }
  621. },
  622. "2tou": {
  623. "2tou": {
  624. "type": "mesh",
  625. "uvs": [ 0.74342, 0.06627, 0.85992, 0.1717, 0.92546, 0.35513, 0.94689, 0.53085, 0.99999, 0.68454, 0.9532, 0.85101, 0.84858, 0.94811, 0.71624, 1, 0.28518, 1, 0.14401, 0.94349, 0.04948, 0.84022, 0, 0.72461, 0, 0.65176, 0.05067, 0.55157, 0.06958, 0.41593, 0.11117, 0.23867, 0.1931, 0.11535, 0.31157, 0.03828, 0.41871, 0, 0.60399, 1.0E-5 ],
  626. "triangles": [ 11, 12, 13, 10, 11, 13, 5, 3, 4, 15, 17, 14, 14, 8, 13, 9, 13, 8, 10, 13, 9, 2, 3, 19, 2, 0, 1, 2, 19, 0, 6, 3, 5, 16, 17, 15, 14, 18, 8, 17, 18, 14, 18, 3, 8, 3, 18, 19, 3, 7, 8, 6, 7, 3 ],
  627. "vertices": [ 125.91, -45.79, 109.67, -68.39, 81.06, -81.38, 53.53, -85.89, 29.55, -96.43, 3.29, -87.81, -12.24, -67.95, -20.75, -42.65, -21.92, 40.1, -13.43, 67.33, 2.52, 85.71, 20.53, 95.46, 31.97, 95.63, 47.84, 86.12, 69.18, 82.79, 97.12, 75.2, 116.7, 59.75, 129.12, 37.18, 135.43, 16.69, 135.93, -18.88 ],
  628. "hull": 20,
  629. "edges": [ 22, 20, 20, 18, 18, 16, 14, 16, 14, 12, 12, 10, 10, 8, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 0, 0, 2, 2, 4, 4, 6, 6, 8 ],
  630. "width": 192,
  631. "height": 157
  632. }
  633. },
  634. "2touying": {
  635. "2touying": { "x": 0.26, "y": -0.06, "scaleX": 1.36, "scaleY": 2, "width": 159, "height": 26 }
  636. },
  637. "2tui1": {
  638. "2tui1": {
  639. "type": "mesh",
  640. "uvs": [ 0.95125, 0.20317, 0.98848, 0.39631, 0.9808, 0.71707, 0.91284, 0.97586, 0.33286, 0.98276, 0.18307, 0.74121, 0.0832, 0.48598, 1.0E-5, 0.16178, 0.24068, 0.02759, 0.67854, 0.02759 ],
  641. "triangles": [ 6, 7, 8, 1, 9, 0, 9, 5, 6, 5, 9, 2, 1, 2, 9, 8, 9, 6, 3, 4, 2, 2, 4, 5 ],
  642. "vertices": [ 4.79, 17.72, 14.34, 18.75, 30.01, 17.43, 42.47, 13.64, 41.2, -11.85, 28.98, -17.68, 16.22, -21.28, 0.13, -23.93, -5.76, -12.94, -4.55, 6.28 ],
  643. "hull": 10,
  644. "edges": [ 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 0, 0, 18, 16, 18, 16, 14 ],
  645. "width": 44,
  646. "height": 49
  647. }
  648. },
  649. "2tui2": {
  650. "2tui2": {
  651. "type": "mesh",
  652. "uvs": [ 0.99717, 0.09593, 0.90955, 0.41099, 0.80653, 0.69065, 0.67693, 0.98764, 0.12305, 0.97527, 0.07101, 0.62531, 0.05185, 0.34304, 0.0782, 0, 0.56778, 0.00618 ],
  653. "triangles": [ 1, 8, 0, 8, 5, 6, 2, 8, 1, 7, 8, 6, 2, 5, 8, 5, 3, 4, 2, 3, 5 ],
  654. "vertices": [ -2.48, 23.82, 11.74, 21.06, 24.49, 17.41, 38.13, 12.57, 40.33, -13.93, 25.27, -18, 13.01, -20.2, -2.14, -20.49, -4.28, 2.91 ],
  655. "hull": 9,
  656. "edges": [ 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 0, 14, 16, 0, 16 ],
  657. "width": 48,
  658. "height": 44
  659. }
  660. },
  661. "2wuqi": {
  662. "2wuqi": {
  663. "type": "mesh",
  664. "uvs": [ 1, 1, 0, 1, 0, 0.5, 0, 0, 0.42032, 0, 0.58911, 0, 1, 0, 1, 0.5, 0.49744, 0.2187, 0.07306, 0.20633, 0.18236, 0.09031, 0.85059, 0.10166, 0.92115, 0.20633, 0.02603, 0.35891, 0.97787, 0.38161, 0.23217, 0.8192, 0.04678, 0.70697, 0.4978, 0.51403, 0.76896, 0.83307, 0.96265, 0.67922 ],
  665. "triangles": [ 10, 3, 4, 11, 5, 6, 12, 11, 6, 9, 3, 10, 8, 4, 5, 8, 5, 11, 10, 4, 8, 13, 3, 9, 14, 12, 6, 13, 2, 3, 14, 6, 7, 8, 14, 17, 12, 8, 11, 14, 8, 12, 17, 14, 7, 19, 17, 7, 13, 17, 2, 16, 2, 17, 9, 8, 17, 8, 9, 10, 9, 17, 13, 15, 16, 17, 18, 17, 19, 15, 17, 18, 1, 2, 16, 1, 16, 15, 19, 7, 0, 18, 19, 0, 1, 15, 18, 0, 1, 18 ],
  666. "vertices": [ 102.5, -126.49, -103.5, -126.49, -103.5, -13.49, -103.5, 99.51, -16.91, 99.51, 17.86, 99.51, 102.5, 99.51, 102.5, -13.49, -1.03, 50.08, -88.45, 52.88, -65.93, 79.1, 71.72, 76.54, 86.26, 52.88, -98.14, 18.4, 97.94, 13.27, -55.67, -85.63, -93.86, -60.26, -0.95, -16.66, 54.91, -88.76, 94.81, -53.99 ],
  667. "hull": 8,
  668. "edges": [ 0, 2, 2, 4, 4, 6, 12, 14, 14, 0, 6, 8, 8, 10, 10, 12 ],
  669. "width": 206,
  670. "height": 226
  671. }
  672. },
  673. "2zui": {
  674. "2zui": { "x": 0.82, "y": -1.66, "rotation": -89.19, "width": 26, "height": 19 }
  675. },
  676. "3body": {
  677. "3body": {
  678. "type": "mesh",
  679. "uvs": [ 0.84127, 0.08733, 0.92219, 0.201, 0.971, 0.3715, 1, 0.52818, 1, 0.71405, 0.96458, 0.86458, 0.89522, 0.90606, 0.74108, 0.94446, 0.62933, 1, 0.4585, 1, 0.31078, 0.97364, 0.17334, 0.90606, 0.03847, 0.87994, 0, 0.68947, 0.02691, 0.39608, 0.06159, 0.23172, 0.12453, 0.08733, 0.31849, 0, 0.75778, 0, 0.34641, 0.26134, 0.65961, 0.25832, 0.34135, 0.48486, 0.67982, 0.48184, 0.34135, 0.71443, 0.68992, 0.6963 ],
  680. "triangles": [ 20, 18, 0, 20, 17, 18, 16, 17, 19, 7, 8, 24, 10, 23, 9, 8, 9, 24, 24, 23, 22, 24, 9, 23, 20, 22, 21, 10, 11, 23, 7, 24, 6, 5, 6, 4, 23, 11, 13, 11, 12, 13, 4, 6, 24, 13, 21, 23, 22, 23, 21, 24, 3, 4, 24, 22, 3, 13, 14, 21, 22, 2, 3, 21, 14, 19, 19, 14, 15, 21, 19, 20, 2, 20, 1, 1, 20, 0, 20, 2, 22, 15, 16, 19, 19, 17, 20 ],
  681. "vertices": [ 3, 54, 32.2, -38.87, 0.2649, 53, 72.33, -38.02, 0.06843, 55, -9.46, -38.87, 0.66667, 3, 54, 21.17, -48.25, 0.45486, 53, 61.55, -47.69, 0.21181, 55, -20.48, -48.25, 0.33333, 2, 54, 4.63, -53.92, 0.57507, 53, 45.16, -53.78, 0.42493, 2, 54, -10.56, -57.28, 0.37141, 53, 30.06, -57.53, 0.62859, 2, 54, -28.59, -57.28, 0.21724, 53, 12.03, -58, 0.78276, 2, 54, -43.19, -53.17, 0.12452, 53, -2.67, -54.27, 0.87548, 2, 54, -47.22, -45.12, 0.07097, 53, -6.9, -46.33, 0.92903, 2, 54, -50.94, -27.24, 0.03561, 53, -11.09, -28.56, 0.96439, 2, 54, -56.33, -14.28, 0.00812, 53, -16.81, -15.74, 0.99188, 2, 54, -56.33, 5.54, 4.2E-4, 53, -17.33, 4.07, 0.99958, 2, 54, -53.77, 22.67, 2.0E-5, 53, -15.22, 21.27, 0.99998, 2, 54, -47.22, 38.61, 0.00127, 53, -9.08, 37.37, 0.99873, 2, 54, -44.68, 54.26, 0.01583, 53, -6.95, 53.08, 0.98417, 2, 54, -26.21, 58.72, 0.11052, 53, 11.4, 58.02, 0.88948, 2, 54, 2.25, 55.6, 0.27337, 53, 39.93, 55.64, 0.72663, 3, 54, 18.19, 51.58, 0.25882, 53, 55.98, 52.03, 0.40785, 55, -23.46, 51.58, 0.33333, 3, 54, 32.2, 44.28, 0.1641, 53, 70.17, 45.1, 0.16923, 55, -9.46, 44.28, 0.66667, 1, 55, -0.99, 21.78, 1, 1, 55, -0.99, -29.18, 1, 2, 54, 15.32, 18.54, 0.72352, 53, 53.96, 18.93, 0.27648, 2, 54, 15.61, -17.79, 0.9218, 53, 55.2, -17.38, 0.0782, 2, 54, -6.36, 19.12, 0.162, 53, 32.27, 18.95, 0.838, 2, 54, -6.07, -20.14, 0.37278, 53, 33.59, -20.29, 0.62722, 2, 54, -28.63, 19.12, 0.00301, 53, 10.01, 18.37, 0.99699, 2, 54, -26.87, -21.31, 0.06835, 53, 12.82, -22, 0.93165 ],
  682. "hull": 19,
  683. "edges": [ 26, 24, 24, 22, 22, 20, 20, 18, 16, 18, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 36, 34, 36, 34, 32, 32, 30, 30, 28, 28, 26 ],
  684. "width": 116,
  685. "height": 97
  686. }
  687. },
  688. "3daizi": {
  689. "3daizi": {
  690. "type": "mesh",
  691. "uvs": [ 0.90759, 0.21458, 0.78703, 0.40029, 0.64025, 0.586, 0.48311, 0.74346, 0.30853, 0.90058, 0.10558, 1, 0.02735, 0.947, 1.0E-5, 0.54849, 0.18193, 0.44436, 0.34044, 0.34999, 0.49872, 0.23779, 0.61404, 0.15267, 0.80537, 0, 1, 0 ],
  692. "triangles": [ 2, 3, 9, 2, 9, 10, 3, 4, 8, 3, 8, 9, 5, 6, 7, 8, 5, 7, 4, 5, 8, 0, 12, 13, 1, 11, 12, 1, 12, 0, 2, 11, 1, 10, 11, 2 ],
  693. "vertices": [ 2, 69, -10.8, -4.2, 0.98526, 70, 48.91, -100.65, 0.01474, 2, 69, -26.4, 10.75, 0.84132, 70, 32.93, -86.11, 0.15868, 2, 69, -42, 28.95, 0.58572, 70, 16.86, -68.32, 0.41428, 2, 69, -55.23, 48.44, 0.31803, 70, 3.13, -49.19, 0.68197, 2, 69, -68.43, 70.08, 0.09584, 70, -10.62, -27.89, 0.90416, 2, 69, -76.78, 95.25, 0.00266, 70, -19.63, -2.95, 0.99734, 1, 70, -15.43, 6.87, 1, 2, 69, -38.85, 108.34, 0.00656, 70, 17.95, 11.12, 0.99344, 2, 69, -30.11, 85.78, 0.10829, 70, 27.28, -11.2, 0.89171, 2, 69, -22.18, 66.13, 0.32016, 70, 35.71, -30.64, 0.67984, 2, 69, -12.75, 46.5, 0.59061, 70, 45.64, -50.02, 0.40939, 2, 69, -5.6, 32.2, 0.78185, 70, 53.16, -64.13, 0.21815, 2, 69, 7.22, 8.48, 0.98563, 70, 66.6, -87.51, 0.01437, 1, 69, 7.22, -15.66, 1 ],
  694. "hull": 14,
  695. "edges": [ 10, 12, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 26, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 24, 26, 22, 24 ],
  696. "width": 124,
  697. "height": 84
  698. }
  699. },
  700. "3er1": {
  701. "3er1": {
  702. "type": "mesh",
  703. "uvs": [ 0.66447, 0.18351, 0.90909, 0.37431, 1, 0.55098, 0.91419, 0.76651, 0.77659, 0.92905, 0.56256, 1, 0.26188, 0.84071, 0.08861, 0.59691, 0, 0.28951, 0, 0, 0.27207, 0 ],
  704. "triangles": [ 5, 6, 4, 6, 7, 3, 7, 8, 0, 8, 9, 10, 4, 6, 3, 3, 7, 2, 7, 1, 2, 7, 0, 1, 8, 10, 0 ],
  705. "vertices": [ 1, 59, 29.55, 22.77, 1, 1, 59, 42.08, 8.3, 1, 1, 59, 46.64, -5.01, 1, 1, 59, 41.97, -21.12, 1, 2, 59, 34.66, -33.22, 0.66667, 55, 37.34, -103.66, 0.33333, 1, 55, 32.01, -92.53, 1, 1, 55, 43.96, -76.9, 1, 1, 55, 62.25, -67.89, 1, 1, 55, 85.3, -63.28, 1, 2, 59, -4.83, 36.97, 0.33333, 55, 107.01, -63.28, 0.66667, 2, 59, 9.32, 36.79, 0.66667, 55, 107.01, -77.43, 0.33333 ],
  706. "hull": 11,
  707. "edges": [ 16, 18, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 18, 20, 0, 20 ],
  708. "width": 52,
  709. "height": 75
  710. }
  711. },
  712. "3er2": {
  713. "3er2": {
  714. "type": "mesh",
  715. "uvs": [ 0.92927, 0.4153, 0.76666, 0.75022, 0.59297, 0.99384, 0.37543, 0.99589, 0.14543, 0.84654, 0.03215, 0.6486, 0.03215, 0.46557, 0.23327, 0.27876, 0.50681, 0.11746, 0.83019, 0, 0.98538, 0.01232 ],
  716. "triangles": [ 8, 9, 0, 1, 7, 0, 2, 3, 1, 0, 9, 10, 1, 5, 6, 0, 7, 8, 1, 6, 7, 4, 5, 1, 1, 3, 4 ],
  717. "vertices": [ 1, 55, 76.28, 68.4, 1, 1, 55, 51.5, 76.86, 1, 2, 58, 6.28, 33.25, 0.33333, 55, 33.47, 85.89, 0.66667, 2, 58, 17.54, 34.4, 0.66667, 55, 33.32, 97.2, 0.33333, 1, 58, 30.42, 24.44, 1, 1, 58, 37.58, 10.37, 1, 1, 58, 38.77, -3.13, 1, 1, 58, 29.56, -17.82, 1, 2, 58, 16.44, -30.96, 0.66667, 55, 98.32, 90.37, 0.33333, 2, 58, 0.46, -41.09, 0.33333, 55, 107.01, 73.55, 0.66667, 1, 55, 106.1, 65.48, 1 ],
  718. "hull": 11,
  719. "edges": [ 10, 8, 8, 6, 4, 6, 4, 2, 2, 0, 0, 20, 18, 20, 18, 16, 16, 14, 10, 12, 14, 12 ],
  720. "width": 52,
  721. "height": 74
  722. }
  723. },
  724. "3fa": {
  725. "3fa": {
  726. "type": "mesh",
  727. "uvs": [ 0.82479, 0.2116, 0.95096, 0.47701, 0.98365, 0.80878, 0.65314, 1, 0.22401, 1, 0, 0.80141, 0.02043, 0.54705, 0.17905, 0.20423, 0.37114, 0, 0.63271, 0 ],
  728. "triangles": [ 6, 3, 4, 5, 6, 4, 3, 1, 2, 1, 3, 6, 6, 7, 1, 8, 9, 0, 0, 7, 8, 0, 1, 7 ],
  729. "vertices": [ 2, 57, 15.1, -16.08, 0.98917, 56, 34.6, -16.85, 0.01083, 2, 57, 1.44, -21.58, 0.67671, 56, 20.67, -21.63, 0.32329, 1, 55, 129.77, -21.53, 1, 1, 55, 120.01, -6.32, 1, 1, 55, 120.01, 13.42, 1, 1, 55, 130.14, 23.72, 1, 2, 57, -1.2, 21.29, 0.49642, 56, 20.31, 21.32, 0.50358, 2, 57, 16.12, 13.61, 0.99441, 56, 37.19, 12.74, 0.00559, 1, 57, 26.34, 4.55, 1, 1, 57, 26.08, -7.48, 1 ],
  730. "hull": 10,
  731. "edges": [ 10, 8, 6, 8, 6, 4, 10, 12, 12, 14, 14, 16, 16, 18, 18, 0, 4, 2, 0, 2 ],
  732. "width": 46,
  733. "height": 51
  734. }
  735. },
  736. "3shou1": {
  737. "3shou1": {
  738. "type": "mesh",
  739. "uvs": [ 0.52822, 0.11643, 0.68942, 0.26759, 0.83365, 0.43268, 0.94395, 0.61766, 1, 0.81656, 0.85204, 0.98655, 0.46882, 1, 0.29208, 0.83248, 0.16904, 0.63556, 0.08471, 0.43415, 0.05474, 0.23091, 0.05046, 0.07885, 0.32874, 0 ],
  740. "triangles": [ 10, 11, 12, 0, 9, 10, 0, 10, 12, 9, 0, 1, 8, 9, 1, 8, 1, 2, 8, 2, 3, 7, 8, 3, 7, 3, 4, 4, 6, 7, 5, 6, 4 ],
  741. "vertices": [ 2, 61, -33.27, 15.31, 0.00197, 60, 9.13, 17.82, 0.99803, 2, 61, -16.71, 19.95, 0.15295, 60, 26, 21.17, 0.84705, 2, 61, 0.64, 23.12, 0.72891, 60, 43.54, 23, 0.27109, 2, 61, 18.88, 23.61, 0.99602, 60, 61.77, 22.09, 0.00398, 1, 61, 37.05, 20.41, 1, 1, 61, 48.05, 5.98, 1, 1, 61, 40.32, -17.32, 1, 2, 61, 22.01, -22.35, 0.99811, 60, 61.36, -23.98, 0.00189, 2, 61, 2.46, -23.21, 0.72019, 60, 41.79, -23.33, 0.27981, 2, 61, -16.58, -21.61, 0.13526, 60, 22.93, -20.28, 0.86474, 2, 61, -34.52, -16.71, 0.00111, 60, 5.43, -14.01, 0.99889, 1, 60, -7.17, -8.27, 1, 1, 60, -5.94, 10.89, 1 ],
  742. "hull": 13,
  743. "edges": [ 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 24, 0, 0, 2, 2, 4, 4, 6, 6, 8, 10, 12, 8, 10 ],
  744. "width": 64,
  745. "height": 91
  746. }
  747. },
  748. "3shou2": {
  749. "3shou2": {
  750. "type": "mesh",
  751. "uvs": [ 0.92047, 0.12865, 0.9381, 0.27927, 0.89099, 0.42546, 0.88918, 0.56776, 0.91797, 0.6959, 1, 0.81483, 0.97642, 0.95834, 0.7329, 1, 0.45378, 0.91257, 0.19255, 0.76974, 0.02982, 0.57455, 0.00969, 0.37829, 0.046, 0.19456, 0.22889, 0.01765, 0.60782, 0 ],
  752. "triangles": [ 2, 3, 10, 9, 3, 4, 3, 9, 10, 8, 9, 4, 8, 4, 5, 5, 7, 8, 6, 7, 5, 14, 1, 13, 1, 14, 0, 1, 2, 13, 2, 10, 11, 2, 12, 13, 11, 12, 2 ],
  753. "vertices": [ 2, 63, 41.63, -25.05, 0.99999, 62, 74.92, -42.73, 1.0E-5, 2, 63, 25.77, -27.09, 0.9701, 62, 60.22, -36.43, 0.0299, 2, 63, 10.13, -25.42, 0.73653, 62, 47.6, -27.04, 0.26347, 2, 63, -4.93, -26.3, 0.24393, 62, 34.19, -20.14, 0.75607, 2, 63, -18.38, -28.82, 0.02369, 62, 21.33, -15.48, 0.97631, 1, 62, 7.97, -13.97, 1, 1, 62, -5, -5.9, 1, 1, 62, -2.68, 8.48, 1, 1, 62, 12.77, 18.49, 1, 2, 63, -28.88, 11.93, 0.00247, 62, 32.99, 24.95, 0.99753, 2, 63, -8.83, 22.53, 0.34429, 62, 55.64, 23.9, 0.65571, 2, 63, 11.85, 25.03, 0.93089, 62, 74.73, 15.54, 0.06911, 1, 63, 31.42, 24.24, 1, 1, 63, 50.81, 15.05, 1, 1, 63, 54.08, -6.38, 1 ],
  754. "hull": 15,
  755. "edges": [ 20, 18, 18, 16, 12, 14, 16, 14, 12, 10, 2, 0, 0, 28, 26, 28, 26, 24, 20, 22, 22, 24, 2, 4, 4, 6, 6, 8, 8, 10 ],
  756. "width": 57,
  757. "height": 106
  758. }
  759. },
  760. "3tou": {
  761. "3tou": {
  762. "type": "mesh",
  763. "uvs": [ 0.7271, 0.05727, 0.8316, 0.12221, 0.9076, 0.25497, 0.93491, 0.43823, 0.96935, 0.58254, 1, 0.7066, 0.9551, 0.8408, 0.85298, 0.9548, 0.6986, 1, 0.29674, 1, 0.13286, 0.93171, 0.04974, 0.85234, 0, 0.71957, 0.02543, 0.55207, 0.06581, 0.38323, 0.12518, 0.19852, 0.20593, 0.1004, 0.31043, 0.04123, 0.41137, 0, 0.61666, 0 ],
  764. "triangles": [ 3, 4, 8, 6, 4, 5, 10, 11, 13, 12, 13, 11, 15, 17, 14, 14, 9, 13, 9, 10, 13, 3, 0, 2, 2, 0, 1, 6, 7, 4, 16, 17, 15, 17, 9, 14, 18, 19, 0, 3, 9, 17, 17, 18, 3, 0, 3, 18, 4, 7, 8, 3, 8, 9 ],
  765. "vertices": [ 1, 55, 127.96, -42.88, 1, 1, 55, 117.7, -62.95, 1, 1, 55, 96.73, -77.54, 1, 1, 55, 67.77, -82.78, 1, 1, 55, 44.97, -89.39, 1, 1, 55, 25.37, -95.28, 1, 1, 55, 4.17, -86.66, 1, 2, 55, -13.84, -67.05, 0.66667, 54, 27.81, -67.05, 0.33333, 2, 55, -20.99, -37.41, 0.33333, 54, 20.67, -37.41, 0.66667, 2, 55, -20.99, 39.75, 0.33333, 54, 20.67, 39.75, 0.66667, 2, 55, -10.2, 71.21, 0.66667, 54, 31.46, 71.21, 0.33333, 1, 55, 2.34, 87.17, 1, 1, 55, 23.32, 96.72, 1, 1, 55, 49.79, 91.84, 1, 1, 55, 76.46, 84.09, 1, 1, 55, 105.65, 72.69, 1, 1, 55, 121.15, 57.18, 1, 1, 55, 130.5, 37.12, 1, 1, 55, 137.01, 17.74, 1, 1, 55, 137.01, -21.68, 1 ],
  766. "hull": 20,
  767. "edges": [ 24, 22, 22, 20, 20, 18, 16, 18, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 38, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 36, 38, 34, 36 ],
  768. "width": 192,
  769. "height": 158
  770. }
  771. },
  772. "3touying": {
  773. "3touying": { "x": 0.91, "y": -0.84, "scaleX": 1.36, "scaleY": 2, "width": 158, "height": 26 }
  774. },
  775. "3tui1": {
  776. "3tui1": {
  777. "type": "mesh",
  778. "uvs": [ 0.95195, 0.389, 0.94921, 0.72953, 0.90739, 0.95558, 0.57104, 0.98511, 0.29452, 0.9478, 0.21835, 0.73394, 0.12024, 0.47711, 0.00291, 0.21146, 0.30078, 0.03034, 0.70565, 0, 0.94326, 0.12507 ],
  779. "triangles": [ 6, 7, 8, 10, 0, 9, 6, 0, 5, 9, 6, 8, 9, 0, 6, 1, 5, 0, 3, 4, 5, 5, 1, 3, 2, 3, 1 ],
  780. "vertices": [ 14.82, 20.19, 29.96, 17.87, 39.75, 14.5, 38.85, -1, 35.36, -13.35, 25.34, -15.44, 13.25, -18.24, 0.65, -21.87, -5.45, -7.14, -4.13, 11.49, 3, 21.5 ],
  781. "hull": 11,
  782. "edges": [ 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 20, 14, 16, 18, 20, 16, 18, 10, 2 ],
  783. "width": 46,
  784. "height": 45
  785. }
  786. },
  787. "3tui2": {
  788. "3tui2": {
  789. "type": "mesh",
  790. "uvs": [ 0.77078, 0.07029, 0.99999, 0.25381, 0.9233, 0.51444, 0.8276, 0.78306, 0.75941, 0.98138, 0.10601, 0.99202, 0.04351, 0.69795, 0.01136, 0.37349, 0, 0.07561, 0.40998, 0 ],
  791. "triangles": [ 2, 9, 0, 2, 0, 1, 7, 8, 9, 5, 6, 4, 4, 6, 3, 2, 3, 9, 7, 9, 3, 3, 6, 7 ],
  792. "vertices": [ 1, 53, 8.58, -42, 1, 2, 65, 4.04, 20.84, 0.33333, 53, 0.22, -52.31, 0.66667, 2, 65, 16.57, 18.78, 0.66667, 53, -12.12, -49.25, 0.33333, 1, 65, 29.58, 15.93, 1, 1, 65, 39.16, 13.94, 1, 1, 65, 42.71, -14.6, 1, 1, 65, 29.26, -18.8, 1, 2, 65, 14.24, -21.82, 0.66667, 53, -6.54, -8.97, 0.33333, 2, 65, 0.38, -23.8, 0.33333, 53, 7.44, -8.1, 0.66667, 1, 53, 11.47, -26.05, 1 ],
  793. "hull": 10,
  794. "edges": [ 10, 12, 12, 14, 8, 10, 8, 6, 6, 4, 4, 2, 2, 0, 0, 18, 14, 16, 18, 16 ],
  795. "width": 44,
  796. "height": 47
  797. }
  798. },
  799. "3weiba": {
  800. "3weiba": {
  801. "type": "mesh",
  802. "uvs": [ 0.29221, 0.20787, 0.44051, 0.34359, 0.60285, 0.45519, 0.86152, 0.46791, 0.97498, 0.59163, 0.98845, 0.75723, 0.9153, 0.90039, 0.7327, 0.98776, 0.55451, 0.98164, 0.30907, 0.87219, 0.12194, 0.63411, 0.00771, 0.35607, 0.06249, 0.02988, 0.14605, 0.02016 ],
  803. "triangles": [ 3, 6, 7, 3, 7, 2, 2, 7, 8, 8, 9, 2, 5, 3, 4, 5, 6, 3, 9, 1, 2, 9, 10, 1, 10, 0, 1, 10, 11, 0, 0, 12, 13, 12, 0, 11 ],
  804. "vertices": [ 2, 68, 7.88, -7.16, 0.8683, 67, 24.46, -9.84, 0.1317, 3, 68, -1.35, -11.92, 0.14952, 67, 14.08, -10.2, 0.79264, 66, 27.14, -16.1, 0.05784, 3, 68, -9.75, -17.81, 4.3E-4, 67, 3.97, -11.95, 0.40412, 66, 17.64, -12.25, 0.59545, 2, 67, -6.52, -20.8, 0.00356, 66, 4.05, -14.2, 0.99644, 1, 66, -3.02, -9.26, 1, 1, 66, -5.28, -1.26, 1, 1, 66, -2.82, 6.5, 1, 1, 66, 5.86, 12.61, 1, 2, 67, -12.03, 9.1, 0.05558, 66, 15.2, 14.09, 0.94442, 2, 67, 1.23, 13.93, 0.76588, 66, 29, 11.16, 0.23412, 2, 68, -8.51, 9.18, 0.02044, 67, 16.6, 11.93, 0.97956, 2, 68, 6.65, 9.59, 0.95693, 67, 30.49, 5.84, 0.04307, 1, 68, 20.69, 0.8, 1, 1, 68, 19.48, -3.49, 1 ],
  805. "hull": 14,
  806. "edges": [ 22, 24, 22, 20, 20, 18, 18, 16, 14, 16, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 24, 26, 0, 26 ],
  807. "width": 53,
  808. "height": 50
  809. }
  810. },
  811. "3wuqi": {
  812. "3wuqi": {
  813. "type": "mesh",
  814. "uvs": [ 1, 0.32617, 1, 1, 0, 1, 0, 0.33322, 0, 0, 0.50084, 0, 1, 0, 0.51029, 0.49467, 0.50537, 0.1725, 0.25777, 0.21417, 0.74158, 0.21001 ],
  815. "triangles": [ 10, 8, 5, 6, 10, 5, 9, 4, 5, 9, 5, 8, 10, 6, 0, 3, 4, 9, 7, 8, 10, 9, 8, 7, 7, 2, 3, 7, 3, 9, 7, 10, 0, 1, 7, 0, 2, 7, 1 ],
  816. "vertices": [ 106.18, 46.09, 106.18, -115.63, -99.82, -115.63, -99.82, 44.39, -99.82, 124.37, 3.35, 124.37, 106.18, 124.37, 5.3, 5.65, 4.29, 82.97, -46.72, 72.97, 52.94, 73.97 ],
  817. "hull": 7,
  818. "edges": [ 2, 4, 4, 6, 6, 8, 2, 0, 0, 12, 8, 10, 10, 12 ],
  819. "width": 206,
  820. "height": 240
  821. }
  822. }
  823. }
  824. }
  825. ],
  826. "events": {
  827. "effect": {},
  828. "fire": {}
  829. },
  830. "animations": {
  831. "atk_down": {
  832. "slots": {
  833. "1bizi": {
  834. "attachment": [
  835. { "name": null }
  836. ]
  837. },
  838. "1body": {
  839. "attachment": [
  840. { "name": null }
  841. ]
  842. },
  843. "1daiz": {
  844. "attachment": [
  845. { "name": null }
  846. ]
  847. },
  848. "1daizyy": {
  849. "attachment": [
  850. { "name": null }
  851. ]
  852. },
  853. "1e1": {
  854. "attachment": [
  855. { "name": null }
  856. ]
  857. },
  858. "1e2": {
  859. "attachment": [
  860. { "name": null }
  861. ]
  862. },
  863. "1er1": {
  864. "attachment": [
  865. { "name": null }
  866. ]
  867. },
  868. "1er2": {
  869. "attachment": [
  870. { "name": null }
  871. ]
  872. },
  873. "1fa": {
  874. "attachment": [
  875. { "name": null }
  876. ]
  877. },
  878. "1mm1": {
  879. "attachment": [
  880. { "name": null }
  881. ]
  882. },
  883. "1mm2": {
  884. "attachment": [
  885. { "name": null }
  886. ]
  887. },
  888. "1shou1": {
  889. "attachment": [
  890. { "name": null }
  891. ]
  892. },
  893. "1shou2": {
  894. "attachment": [
  895. { "name": null }
  896. ]
  897. },
  898. "1tou": {
  899. "attachment": [
  900. { "name": null }
  901. ]
  902. },
  903. "1touying": {
  904. "attachment": [
  905. { "name": null }
  906. ]
  907. },
  908. "1tui1": {
  909. "attachment": [
  910. { "name": null }
  911. ]
  912. },
  913. "1tui2": {
  914. "attachment": [
  915. { "name": null }
  916. ]
  917. },
  918. "1weiba": {
  919. "attachment": [
  920. { "name": null }
  921. ]
  922. },
  923. "1wuqi": {
  924. "attachment": [
  925. { "name": null }
  926. ]
  927. },
  928. "1zui": {
  929. "attachment": [
  930. { "name": null }
  931. ]
  932. },
  933. "3body": {
  934. "attachment": [
  935. { "name": null }
  936. ]
  937. },
  938. "3daizi": {
  939. "attachment": [
  940. { "name": null }
  941. ]
  942. },
  943. "3er1": {
  944. "attachment": [
  945. { "name": null }
  946. ]
  947. },
  948. "3er2": {
  949. "attachment": [
  950. { "name": null }
  951. ]
  952. },
  953. "3fa": {
  954. "attachment": [
  955. { "name": null }
  956. ]
  957. },
  958. "3shou1": {
  959. "attachment": [
  960. { "name": null }
  961. ]
  962. },
  963. "3shou2": {
  964. "attachment": [
  965. { "name": null }
  966. ]
  967. },
  968. "3tou": {
  969. "attachment": [
  970. { "name": null }
  971. ]
  972. },
  973. "3touying": {
  974. "attachment": [
  975. { "name": null }
  976. ]
  977. },
  978. "3tui1": {
  979. "attachment": [
  980. { "name": null }
  981. ]
  982. },
  983. "3tui2": {
  984. "attachment": [
  985. { "name": null }
  986. ]
  987. },
  988. "3weiba": {
  989. "attachment": [
  990. { "name": null }
  991. ]
  992. },
  993. "3wuqi": {
  994. "attachment": [
  995. { "name": null }
  996. ]
  997. }
  998. },
  999. "bones": {
  1000. "bone_down5": {
  1001. "rotate": [
  1002. { "angle": -0.6, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  1003. { "time": 0.2, "angle": 5.95 },
  1004. { "time": 0.2333, "angle": -3.32, "curve": 0.339, "c2": 0.35, "c3": 0.674, "c4": 0.69 },
  1005. { "time": 0.3667, "angle": -16.59, "curve": 0.345, "c2": 0.38, "c3": 0.68, "c4": 0.71 },
  1006. { "time": 0.4667, "angle": -9.32, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
  1007. { "time": 0.5667, "angle": -6.76, "curve": 0.25, "c3": 0.75 },
  1008. { "time": 0.8333, "angle": -0.6 }
  1009. ],
  1010. "translate": [
  1011. { "x": 1.25, "y": -0.02, "curve": "stepped" },
  1012. { "time": 0.2, "x": 1.25, "y": -0.02 },
  1013. { "time": 0.2333, "x": -0.89, "y": -2.97, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  1014. { "time": 0.5667, "x": -5.2, "y": -3.72, "curve": 0.25, "c3": 0.75 },
  1015. { "time": 0.8333, "x": 1.25, "y": -0.02 }
  1016. ]
  1017. },
  1018. "2tui2": {
  1019. "rotate": [
  1020. { "curve": 0.25, "c3": 0.75 },
  1021. { "time": 0.2333, "angle": 14.73 },
  1022. { "time": 0.3333, "angle": 6.02, "curve": 0.25, "c3": 0.75 },
  1023. { "time": 0.5, "angle": 9.95, "curve": 0.25, "c3": 0.75 },
  1024. { "time": 0.7 }
  1025. ],
  1026. "translate": [
  1027. { "curve": 0.25, "c3": 0.75 },
  1028. { "time": 0.2333, "x": -5.38, "y": 4.48 },
  1029. { "time": 0.3333, "y": 4.3, "curve": 0.25, "c3": 0.75 },
  1030. { "time": 0.5, "y": 2.11, "curve": 0.25, "c3": 0.75 },
  1031. { "time": 0.7 }
  1032. ],
  1033. "scale": [
  1034. { "curve": 0.25, "c3": 0.75 },
  1035. { "time": 0.2333, "x": 1.032, "y": 1.032 },
  1036. { "time": 0.3333, "x": 0.848, "curve": 0.25, "c3": 0.75 },
  1037. { "time": 0.5, "x": 0.842, "y": 0.957, "curve": 0.25, "c3": 0.75 },
  1038. { "time": 0.7 }
  1039. ]
  1040. },
  1041. "bone_down3": {
  1042. "rotate": [
  1043. { "curve": 0.25, "c3": 0.75 },
  1044. { "time": 0.2333, "angle": -1.13 },
  1045. { "time": 0.3333, "angle": -4.38, "curve": 0.25, "c3": 0.75 },
  1046. { "time": 0.5, "angle": -5.83, "curve": 0.25, "c3": 0.75 },
  1047. { "time": 0.8333 }
  1048. ],
  1049. "translate": [
  1050. { "curve": 0.25, "c3": 0.75 },
  1051. { "time": 0.2333, "x": 3.75, "y": 4.48 },
  1052. { "time": 0.3333, "x": 5.15, "y": -1.72, "curve": 0.25, "c3": 0.75 },
  1053. { "time": 0.5, "x": 5.15, "y": -3.65, "curve": 0.25, "c3": 0.75 },
  1054. { "time": 0.8333 }
  1055. ]
  1056. },
  1057. "2shou2": {
  1058. "rotate": [
  1059. { "angle": -2.95, "curve": 0.25, "c3": 0.75 },
  1060. { "time": 0.1, "angle": -16.67, "curve": 0.25, "c3": 0.75 },
  1061. { "time": 0.2333, "angle": -11.78 },
  1062. { "time": 0.3333, "angle": -12.52, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  1063. { "time": 0.5, "angle": -32.33, "curve": 0.25, "c3": 0.75 },
  1064. { "time": 0.7, "angle": -1.59, "curve": 0.25, "c3": 0.75 },
  1065. { "time": 0.8333, "angle": -2.95 }
  1066. ]
  1067. },
  1068. "2er1": {
  1069. "rotate": [
  1070. { "angle": -6.16, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  1071. { "time": 0.2333, "angle": -17.66 },
  1072. { "time": 0.3333, "angle": -6.16, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  1073. { "time": 0.5, "angle": 7.43, "curve": 0.25, "c3": 0.75 },
  1074. { "time": 0.8333, "angle": -6.16 }
  1075. ]
  1076. },
  1077. "2wuqi": {
  1078. "rotate": [
  1079. { "angle": 355.77, "curve": 0.25, "c3": 0.75 },
  1080. { "time": 0.1, "angle": 354.69, "curve": "stepped" },
  1081. { "time": 0.1667, "angle": 7.38, "curve": "stepped" },
  1082. { "time": 0.2, "angle": 190.17, "curve": "stepped" },
  1083. { "time": 0.2333, "angle": -175.5, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  1084. { "time": 0.2667, "angle": 173.08, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69 },
  1085. { "time": 0.4, "angle": 175.71, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78 },
  1086. { "time": 0.5, "angle": -175.07, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  1087. { "time": 0.6, "angle": 174.05, "curve": 0.25, "c3": 0.75 },
  1088. { "time": 0.8333, "angle": 186.69 }
  1089. ],
  1090. "translate": [
  1091. { "y": 8.02, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  1092. { "time": 0.1, "x": 13.83, "y": 87.36 },
  1093. { "time": 0.1667, "x": -4.01, "y": 86.35, "curve": "stepped" },
  1094. { "time": 0.2, "x": -16.93, "y": 42.8, "curve": "stepped" },
  1095. {
  1096. "time": 0.2333,
  1097. "x": -15.05,
  1098. "y": 13.2,
  1099. "curve": 0.337,
  1100. "c2": 0.34,
  1101. "c3": 0.677,
  1102. "c4": 0.7
  1103. },
  1104. {
  1105. "time": 0.2667,
  1106. "x": -7.29,
  1107. "y": -38.13,
  1108. "curve": 0.352,
  1109. "c2": 0.4,
  1110. "c3": 0.689,
  1111. "c4": 0.75
  1112. },
  1113. {
  1114. "time": 0.4,
  1115. "x": 6.53,
  1116. "y": 44.84,
  1117. "curve": 0.353,
  1118. "c2": 0.45,
  1119. "c3": 0.688,
  1120. "c4": 0.8
  1121. },
  1122. { "time": 0.5, "x": 26.31, "y": 69.89, "curve": 0.352, "c2": 0.65, "c3": 0.686 },
  1123. { "time": 0.6, "x": 32.48, "y": -32.47, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  1124. { "time": 0.7, "x": 7.18, "y": -22.36, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  1125. { "time": 0.8333, "y": 8.02 }
  1126. ],
  1127. "scale": [
  1128. { "curve": 0.25, "c3": 0.75 },
  1129. { "time": 0.1, "x": 0.884, "y": 1.298 },
  1130. { "time": 0.1667, "x": 1.317, "y": 1.179, "curve": "stepped" },
  1131. { "time": 0.2, "x": 1.143, "y": 0.73, "curve": "stepped" },
  1132. { "time": 0.2333, "x": 0.865, "y": 1.055, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  1133. {
  1134. "time": 0.2667,
  1135. "x": 0.929,
  1136. "y": 0.967,
  1137. "curve": 0.333,
  1138. "c2": 0.33,
  1139. "c3": 0.68,
  1140. "c4": 0.71
  1141. },
  1142. {
  1143. "time": 0.4,
  1144. "x": 1.05,
  1145. "y": 0.966,
  1146. "curve": 0.352,
  1147. "c2": 0.41,
  1148. "c3": 0.689,
  1149. "c4": 0.75
  1150. },
  1151. { "time": 0.5, "x": 1.078, "y": 0.927, "curve": 0.369, "c2": 0.63, "c3": 0.706 },
  1152. { "time": 0.6, "x": 0.913, "y": 1.171, "curve": 0.25, "c3": 0.75 },
  1153. { "time": 0.8333 }
  1154. ],
  1155. "shear": [
  1156. {},
  1157. { "time": 0.1, "x": 7.64, "y": 2.01 },
  1158. { "time": 0.2, "x": -0.86, "y": 1.86 },
  1159. { "time": 0.2333, "x": -3.65, "y": 1.76 },
  1160. { "time": 0.8333 }
  1161. ]
  1162. },
  1163. "bone_down6": {
  1164. "rotate": [
  1165. { "angle": -2.21, "curve": 0.25, "c3": 0.75 },
  1166. { "time": 0.1, "angle": -19.03, "curve": 0.25, "c3": 0.75 },
  1167. { "time": 0.2333, "angle": 9.43 },
  1168. { "time": 0.3333, "angle": 8.12, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  1169. { "time": 0.5, "angle": -14.53, "curve": 0.25, "c3": 0.75 },
  1170. { "time": 0.8333, "angle": -2.21 }
  1171. ],
  1172. "translate": [
  1173. { "curve": 0.25, "c3": 0.75 },
  1174. { "time": 0.1, "x": 1.1, "y": -3.88, "curve": 0.25, "c3": 0.75 },
  1175. { "time": 0.2333, "curve": "stepped" },
  1176. { "time": 0.3333 },
  1177. { "time": 0.5, "x": -0.4, "y": -3.33, "curve": 0.25, "c3": 0.75 },
  1178. { "time": 0.8333 }
  1179. ]
  1180. },
  1181. "bone_down4": {
  1182. "rotate": [
  1183. { "curve": 0.25, "c3": 0.75 },
  1184. { "time": 0.2, "angle": 5.59 },
  1185. { "time": 0.2333, "angle": -5.53, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  1186. { "time": 0.4667, "angle": 1.4, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  1187. { "time": 0.5667, "angle": -7.13, "curve": 0.25, "c3": 0.75 },
  1188. { "time": 0.8333 }
  1189. ],
  1190. "translate": [
  1191. { "x": 0.66, "y": 0.01, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
  1192. { "time": 0.2, "x": 1.64, "y": 1.75 },
  1193. {
  1194. "time": 0.2333,
  1195. "x": -0.45,
  1196. "y": -6.99,
  1197. "curve": 0.345,
  1198. "c2": 0.39,
  1199. "c3": 0.679,
  1200. "c4": 0.72
  1201. },
  1202. {
  1203. "time": 0.3667,
  1204. "x": -7.91,
  1205. "y": -5.6,
  1206. "curve": 0.348,
  1207. "c2": 0.43,
  1208. "c3": 0.682,
  1209. "c4": 0.77
  1210. },
  1211. { "time": 0.4667, "x": 6.82, "y": -0.91, "curve": 0.352, "c2": 0.65, "c3": 0.687 },
  1212. { "time": 0.5667, "x": -6.86, "y": -7.55, "curve": 0.25, "c3": 0.75 },
  1213. { "time": 0.8333, "x": 0.66, "y": 0.01 }
  1214. ]
  1215. },
  1216. "bone_down7": {
  1217. "rotate": [
  1218. { "angle": -9.14, "curve": 0.25, "c3": 0.75 },
  1219. { "time": 0.0667, "angle": 8.02, "curve": 0.25, "c3": 0.75 },
  1220. { "time": 0.1333, "angle": -6.4, "curve": 0.25, "c3": 0.75 },
  1221. { "time": 0.2333, "angle": 5.37 },
  1222. { "time": 0.3333, "angle": 9.43, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  1223. { "time": 0.6, "angle": -21.61, "curve": 0.25, "c3": 0.75 },
  1224. { "time": 0.8333, "angle": -9.14 }
  1225. ],
  1226. "translate": [
  1227. { "x": 2.19, "y": -3.08, "curve": 0.25, "c3": 0.75 },
  1228. { "time": 0.0667, "x": 1.5, "y": -0.36, "curve": 0.25, "c3": 0.75 },
  1229. { "time": 0.1333, "x": 1.58, "y": -5.19, "curve": 0.25, "c3": 0.75 },
  1230. { "time": 0.2333, "x": 2.97, "y": 1.59 },
  1231. { "time": 0.3333, "x": 3.55, "y": 1.45, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  1232. { "time": 0.6, "x": 2.85, "y": -4.43, "curve": 0.25, "c3": 0.75 },
  1233. { "time": 0.8333, "x": 2.19, "y": -3.08 }
  1234. ]
  1235. },
  1236. "2shou1": {
  1237. "rotate": [
  1238. { "angle": -0.02, "curve": 0.25, "c3": 0.75 },
  1239. { "time": 0.2333, "angle": 2.22 },
  1240. { "time": 0.3333, "angle": -0.02, "curve": 0.25, "c3": 0.75 },
  1241. { "time": 0.5, "angle": -12.77, "curve": 0.25, "c3": 0.75 },
  1242. { "time": 0.8333, "angle": -0.02 }
  1243. ],
  1244. "translate": [
  1245. { "curve": 0.25, "c3": 0.75 },
  1246. { "time": 0.2333, "x": -0.59, "y": 8.59 },
  1247. { "time": 0.3333 }
  1248. ]
  1249. },
  1250. "2e2": {
  1251. "scale": [
  1252. { "time": 0.2333 },
  1253. { "time": 0.3333, "x": 0.226, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  1254. { "time": 0.4667 }
  1255. ]
  1256. },
  1257. "2tui1": {
  1258. "rotate": [
  1259. { "curve": 0.25, "c3": 0.75 },
  1260. { "time": 0.2333, "angle": -4.57, "curve": "stepped" },
  1261. { "time": 0.5, "angle": -4.57, "curve": 0.25, "c3": 0.75 },
  1262. { "time": 0.8333 }
  1263. ],
  1264. "translate": [
  1265. { "curve": 0.25, "c3": 0.75 },
  1266. { "time": 0.2333, "x": 6.01, "y": 2.58, "curve": "stepped" },
  1267. { "time": 0.5, "x": 6.01, "y": 2.58, "curve": 0.25, "c3": 0.75 },
  1268. { "time": 0.8333 }
  1269. ]
  1270. },
  1271. "2zui": {
  1272. "scale": [
  1273. { "curve": 0.25, "c3": 0.75 },
  1274. { "time": 0.2333, "x": 1.437, "y": 1.437 },
  1275. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  1276. { "time": 0.5, "x": 0.773, "y": 0.773, "curve": 0.25, "c3": 0.75 },
  1277. { "time": 0.8333 }
  1278. ]
  1279. },
  1280. "2e1": {
  1281. "scale": [
  1282. { "time": 0.2333 },
  1283. { "time": 0.3333, "x": 0.226, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  1284. { "time": 0.4667 }
  1285. ]
  1286. },
  1287. "ik2": {
  1288. "translate": [
  1289. { "y": 7.49, "curve": 0.355, "c2": 0.42, "c3": 0.694, "c4": 0.77 },
  1290. {
  1291. "time": 0.1333,
  1292. "x": 10.36,
  1293. "y": 47.31,
  1294. "curve": 0.354,
  1295. "c2": 0.48,
  1296. "c3": 0.689,
  1297. "c4": 0.82
  1298. },
  1299. { "time": 0.2, "x": 4.32, "y": 83.21, "curve": 0.348, "c2": 0.66, "c3": 0.681 },
  1300. { "time": 0.2333, "x": 22.01, "y": 26.38 },
  1301. { "time": 0.3333, "y": -19.72, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  1302. { "time": 0.6, "y": -37.11, "curve": 0.25, "c3": 0.75 },
  1303. { "time": 0.8333, "y": 7.49 }
  1304. ]
  1305. },
  1306. "2er2": {
  1307. "rotate": [
  1308. { "angle": 7.43, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  1309. { "time": 0.2333, "angle": 18.47 },
  1310. { "time": 0.3333, "angle": 7.43, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  1311. { "time": 0.5, "angle": -12.44, "curve": 0.25, "c3": 0.75 },
  1312. { "time": 0.8333, "angle": 7.43 }
  1313. ]
  1314. },
  1315. "2shou3": {
  1316. "rotate": [
  1317. { "angle": -2.85, "curve": 0.25, "c3": 0.75 },
  1318. { "time": 0.1333, "angle": 0.96, "curve": 0.25, "c3": 0.75 },
  1319. { "time": 0.2333, "angle": 47.24 },
  1320. { "time": 0.3333, "angle": 9.8, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  1321. { "time": 0.6, "angle": -9.92, "curve": 0.25, "c3": 0.75 },
  1322. { "time": 0.8333, "angle": -2.85 }
  1323. ],
  1324. "translate": [
  1325. { "x": -0.08, "y": -2.15, "curve": 0.25, "c3": 0.75 },
  1326. { "time": 0.2333, "x": 2.65, "y": 1.19 },
  1327. { "time": 0.3333, "x": 2.8, "y": 0.56, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  1328. { "time": 0.6, "x": 2.39, "y": -0.65, "curve": 0.25, "c3": 0.75 },
  1329. { "time": 0.8333, "x": -0.08, "y": -2.15 }
  1330. ]
  1331. }
  1332. },
  1333. "deform": {
  1334. "default": {
  1335. "2wuqi": {
  1336. "2wuqi": [
  1337. {},
  1338. {
  1339. "time": 0.1,
  1340. "vertices": [ -4.96167, 2.7446, 7.58875, 7.69252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11.0397, -39.94226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11.80167, -9.20959, 0, 0, 10.99259, -50.73877, -15.7357, -6.84401 ],
  1341. "curve": "stepped"
  1342. },
  1343. {
  1344. "time": 0.2,
  1345. "vertices": [ -5.61459, -51.70123, -5.61459, -51.70123, 0, -1.73699, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.73699, 2.16259, 13.92091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6.57592, -12.00348, 0.28949, -1.544, -4.88473, -3.26337, -6.57592, -12.00348, -0.8685, -2.316 ]
  1346. },
  1347. {
  1348. "time": 0.6,
  1349. "offset": 5,
  1350. "vertices": [ -10.42195, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10.42195, 5.43814, 9.37433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.0E-5, -9.84299, 1.73697, -9.26402, -4.04197, 3.48142, -2.0E-5, -9.84299, -5.211, -13.89601 ]
  1351. },
  1352. { "time": 0.8333 }
  1353. ]
  1354. }
  1355. }
  1356. },
  1357. "drawOrder": [
  1358. {
  1359. "time": 0.2,
  1360. "offsets": [
  1361. { "slot": "2shou2", "offset": 2 },
  1362. { "slot": "2shou1", "offset": -7 }
  1363. ]
  1364. },
  1365. {
  1366. "time": 0.6,
  1367. "offsets": [
  1368. { "slot": "2shou1", "offset": -7 }
  1369. ]
  1370. },
  1371. { "time": 0.8333 }
  1372. ],
  1373. "events": [
  1374. { "time": 0.2, "name": "effect" },
  1375. { "time": 0.2667, "name": "fire" },
  1376. { "time": 0.4667, "name": "effect" },
  1377. { "time": 0.5333, "name": "fire" }
  1378. ]
  1379. },
  1380. "atk_left": {
  1381. "slots": {
  1382. "2bizi": {
  1383. "attachment": [
  1384. { "name": null }
  1385. ]
  1386. },
  1387. "2body": {
  1388. "attachment": [
  1389. { "name": null }
  1390. ]
  1391. },
  1392. "2daizi": {
  1393. "attachment": [
  1394. { "name": null }
  1395. ]
  1396. },
  1397. "2daiziyy": {
  1398. "attachment": [
  1399. { "name": null }
  1400. ]
  1401. },
  1402. "2e1": {
  1403. "attachment": [
  1404. { "name": null }
  1405. ]
  1406. },
  1407. "2e2": {
  1408. "attachment": [
  1409. { "name": null }
  1410. ]
  1411. },
  1412. "2er1": {
  1413. "attachment": [
  1414. { "name": null }
  1415. ]
  1416. },
  1417. "2er2": {
  1418. "attachment": [
  1419. { "name": null }
  1420. ]
  1421. },
  1422. "2fa": {
  1423. "attachment": [
  1424. { "name": null }
  1425. ]
  1426. },
  1427. "2mm1": {
  1428. "attachment": [
  1429. { "name": null }
  1430. ]
  1431. },
  1432. "2mm2": {
  1433. "attachment": [
  1434. { "name": null }
  1435. ]
  1436. },
  1437. "2shou1": {
  1438. "attachment": [
  1439. { "name": null }
  1440. ]
  1441. },
  1442. "2shou2": {
  1443. "attachment": [
  1444. { "name": null }
  1445. ]
  1446. },
  1447. "2tou": {
  1448. "attachment": [
  1449. { "name": null }
  1450. ]
  1451. },
  1452. "2touying": {
  1453. "attachment": [
  1454. { "name": null }
  1455. ]
  1456. },
  1457. "2tui1": {
  1458. "attachment": [
  1459. { "name": null }
  1460. ]
  1461. },
  1462. "2tui2": {
  1463. "attachment": [
  1464. { "name": null }
  1465. ]
  1466. },
  1467. "2wuqi": {
  1468. "attachment": [
  1469. { "name": null }
  1470. ]
  1471. },
  1472. "2zui": {
  1473. "attachment": [
  1474. { "name": null }
  1475. ]
  1476. },
  1477. "3body": {
  1478. "attachment": [
  1479. { "name": null }
  1480. ]
  1481. },
  1482. "3daizi": {
  1483. "attachment": [
  1484. { "name": null }
  1485. ]
  1486. },
  1487. "3er1": {
  1488. "attachment": [
  1489. { "name": null }
  1490. ]
  1491. },
  1492. "3er2": {
  1493. "attachment": [
  1494. { "name": null }
  1495. ]
  1496. },
  1497. "3fa": {
  1498. "attachment": [
  1499. { "name": null }
  1500. ]
  1501. },
  1502. "3shou1": {
  1503. "attachment": [
  1504. { "name": null }
  1505. ]
  1506. },
  1507. "3shou2": {
  1508. "attachment": [
  1509. { "name": null }
  1510. ]
  1511. },
  1512. "3tou": {
  1513. "attachment": [
  1514. { "name": null }
  1515. ]
  1516. },
  1517. "3touying": {
  1518. "attachment": [
  1519. { "name": null }
  1520. ]
  1521. },
  1522. "3tui1": {
  1523. "attachment": [
  1524. { "name": null }
  1525. ]
  1526. },
  1527. "3tui2": {
  1528. "attachment": [
  1529. { "name": null }
  1530. ]
  1531. },
  1532. "3weiba": {
  1533. "attachment": [
  1534. { "name": null }
  1535. ]
  1536. },
  1537. "3wuqi": {
  1538. "attachment": [
  1539. { "name": null }
  1540. ]
  1541. }
  1542. },
  1543. "bones": {
  1544. "bone_right5": {
  1545. "rotate": [
  1546. { "angle": -0.89, "curve": 0.246, "c3": 0.633, "c4": 0.54 },
  1547. { "time": 0.1333, "angle": -0.33, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
  1548. { "time": 0.2, "angle": -3.84 },
  1549. { "time": 0.2667, "angle": 8.17, "curve": 0.341, "c2": 0.36, "c3": 0.68, "c4": 0.71 },
  1550. { "time": 0.4, "angle": -14.28, "curve": 0.381, "c2": 0.59, "c3": 0.728 },
  1551. { "time": 0.6, "angle": 2.45, "curve": 0.25, "c3": 0.75 },
  1552. { "time": 0.8333, "angle": -0.89 }
  1553. ],
  1554. "translate": [
  1555. { "x": 1.66, "y": 0.07, "curve": 0.25, "c3": 0.75 },
  1556. { "time": 0.2, "x": 1.29, "y": -9.24 },
  1557. {
  1558. "time": 0.2667,
  1559. "x": 1.66,
  1560. "y": 0.07,
  1561. "curve": 0.341,
  1562. "c2": 0.36,
  1563. "c3": 0.68,
  1564. "c4": 0.71
  1565. },
  1566. { "time": 0.4, "x": -7.75, "y": -2.86, "curve": 0.381, "c2": 0.59, "c3": 0.728 },
  1567. { "time": 0.6, "x": 2.97, "y": 2.55, "curve": 0.25, "c3": 0.75 },
  1568. { "time": 0.8333, "x": 1.66, "y": 0.07 }
  1569. ],
  1570. "shear": [
  1571. { "curve": 0.25, "c3": 0.75 },
  1572. { "time": 0.2, "y": 3.78 },
  1573. { "time": 0.2667 }
  1574. ]
  1575. },
  1576. "bone_right8": {
  1577. "rotate": [
  1578. { "angle": -5.75, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  1579. { "time": 0.2, "angle": 3.09 },
  1580. { "time": 0.2667, "angle": -5.75, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  1581. { "time": 0.5, "angle": -13.12, "curve": 0.25, "c3": 0.75 },
  1582. { "time": 0.8333, "angle": -5.75 }
  1583. ],
  1584. "translate": [
  1585. { "curve": 0.25, "c3": 0.75 },
  1586. { "time": 0.2, "x": -1, "y": -0.52 },
  1587. { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
  1588. { "time": 0.5, "x": 3.07, "y": -1.19, "curve": 0.25, "c3": 0.75 },
  1589. { "time": 0.8333 }
  1590. ],
  1591. "scale": [
  1592. { "x": 0.955 }
  1593. ]
  1594. },
  1595. "1e1": {
  1596. "translate": [
  1597. { "time": 0.2 },
  1598. { "time": 0.2667, "x": 3.81, "y": -2.68, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
  1599. { "time": 0.5 }
  1600. ],
  1601. "scale": [
  1602. { "time": 0.2 },
  1603. { "time": 0.2667, "x": 0.415, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
  1604. { "time": 0.5, "x": 0.8, "curve": 0.25, "c3": 0.75 },
  1605. { "time": 0.8333 }
  1606. ]
  1607. },
  1608. "bone_right9": {
  1609. "rotate": [
  1610. { "angle": 7.34, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  1611. { "time": 0.2, "angle": 17.14 },
  1612. { "time": 0.2667, "angle": 7.34, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  1613. { "time": 0.5, "angle": 0.04, "curve": 0.25, "c3": 0.75 },
  1614. { "time": 0.8333, "angle": 7.34 }
  1615. ],
  1616. "scale": [
  1617. { "x": 0.944 }
  1618. ]
  1619. },
  1620. "bone_right": {
  1621. "translate": [
  1622. { "x": 421.03 }
  1623. ],
  1624. "scale": [
  1625. { "x": -1 }
  1626. ]
  1627. },
  1628. "1shou2": {
  1629. "rotate": [
  1630. { "angle": -9.18, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  1631. { "time": 0.2, "angle": 7.99 },
  1632. { "time": 0.2333, "angle": 7.68 },
  1633. { "time": 0.2667, "angle": -21.83, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  1634. { "time": 0.5, "angle": -34.75, "curve": 0.25, "c3": 0.75 },
  1635. { "time": 0.8333, "angle": -9.18 }
  1636. ],
  1637. "translate": [
  1638. { "x": 0.41, "y": -1.84, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  1639. { "time": 0.2, "x": -1.39, "y": 4.01 },
  1640. { "time": 0.2333, "x": 1.74, "y": 4.47 },
  1641. {
  1642. "time": 0.2667,
  1643. "x": 2.65,
  1644. "y": -3.84,
  1645. "curve": 0.324,
  1646. "c2": 0.3,
  1647. "c3": 0.666,
  1648. "c4": 0.66
  1649. },
  1650. { "time": 0.5, "x": 1.66, "y": -2.96, "curve": 0.25, "c3": 0.75 },
  1651. { "time": 0.8333, "x": 0.41, "y": -1.84 }
  1652. ]
  1653. },
  1654. "1shou4": {
  1655. "rotate": [
  1656. { "angle": -9.13 },
  1657. { "time": 0.2, "angle": 18.23 },
  1658. { "time": 0.2667, "angle": 2.98 },
  1659. { "time": 0.5, "angle": 13.18, "curve": 0.25, "c3": 0.75 },
  1660. { "time": 0.8333, "angle": -9.13 }
  1661. ]
  1662. },
  1663. "1shou1": {
  1664. "rotate": [
  1665. { "angle": -4.14, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  1666. { "time": 0.2, "angle": 14.46 },
  1667. { "time": 0.2333, "angle": 9.88 },
  1668. { "time": 0.2667, "angle": -14.74, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  1669. { "time": 0.5, "angle": -27.66, "curve": 0.25, "c3": 0.75 },
  1670. { "time": 0.8333, "angle": -4.14 }
  1671. ],
  1672. "translate": [
  1673. { "curve": 0.25, "c3": 0.75 },
  1674. { "time": 0.2, "x": 0.23, "y": -6.31 },
  1675. { "time": 0.2667 }
  1676. ]
  1677. },
  1678. "1weiba": {
  1679. "rotate": [
  1680. { "angle": -2.99, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  1681. { "time": 0.2, "angle": -19.4 },
  1682. { "time": 0.2667, "angle": 7.64, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  1683. { "time": 0.4667, "angle": 21.98, "curve": 0.25, "c3": 0.75 },
  1684. { "time": 0.8333, "angle": -2.99 }
  1685. ],
  1686. "translate": [
  1687. { "curve": 0.25, "c3": 0.75 },
  1688. { "time": 0.2, "x": -2.03, "y": -8.38 },
  1689. { "time": 0.2667 }
  1690. ]
  1691. },
  1692. "1weiba2": {
  1693. "rotate": [
  1694. { "angle": -5.71, "curve": 0.25, "c3": 0.75 },
  1695. { "time": 0.0667, "angle": 10.82, "curve": 0.25, "c3": 0.75 },
  1696. { "time": 0.2, "angle": -22.12 },
  1697. { "time": 0.2667, "angle": -21.51, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  1698. { "time": 0.5, "angle": 18.09, "curve": 0.25, "c3": 0.75 },
  1699. { "time": 0.8333, "angle": -5.71 }
  1700. ],
  1701. "translate": [
  1702. { "x": 0.32, "y": -2.94, "curve": "stepped" },
  1703. { "time": 0.2, "x": 0.32, "y": -2.94 },
  1704. {
  1705. "time": 0.2667,
  1706. "x": 4.31,
  1707. "y": 1.47,
  1708. "curve": 0.306,
  1709. "c2": 0.24,
  1710. "c3": 0.652,
  1711. "c4": 0.62
  1712. },
  1713. { "time": 0.5, "x": 2.69, "y": -0.32, "curve": 0.25, "c3": 0.75 },
  1714. { "time": 0.8333, "x": 0.32, "y": -2.94 }
  1715. ]
  1716. },
  1717. "1tui1": {
  1718. "rotate": [
  1719. { "curve": 0.25, "c3": 0.75 },
  1720. { "time": 0.2, "angle": 6.56 },
  1721. { "time": 0.2667, "angle": -17.54, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
  1722. { "time": 0.5, "angle": -31.11, "curve": 0.25, "c3": 0.75 },
  1723. { "time": 0.8333 }
  1724. ],
  1725. "translate": [
  1726. { "curve": 0.25, "c3": 0.75 },
  1727. { "time": 0.2, "x": 2.06 },
  1728. { "time": 0.2333, "x": 6.05, "y": 0.91 },
  1729. { "time": 0.2667, "x": 5.48, "y": 1.83, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
  1730. { "time": 0.5, "x": 9.18, "y": 3.67, "curve": 0.25, "c3": 0.75 },
  1731. { "time": 0.8333 }
  1732. ]
  1733. },
  1734. "1tui2": {
  1735. "rotate": [
  1736. { "curve": 0.25, "c3": 0.75 },
  1737. { "time": 0.2, "angle": 27.15 },
  1738. { "time": 0.2333 }
  1739. ],
  1740. "translate": [
  1741. { "curve": 0.25, "c3": 0.75 },
  1742. { "time": 0.2, "x": -7.72, "y": 6.96 },
  1743. { "time": 0.2333 }
  1744. ]
  1745. },
  1746. "bone_right6": {
  1747. "rotate": [
  1748. { "angle": 7.4, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  1749. { "time": 0.2, "angle": 33.17 },
  1750. { "time": 0.2667, "angle": 7.4, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  1751. { "time": 0.6, "angle": -1.14, "curve": 0.25, "c3": 0.75 },
  1752. { "time": 0.8333, "angle": 7.4 }
  1753. ],
  1754. "translate": [
  1755. { "curve": 0.25, "c3": 0.75 },
  1756. { "time": 0.2, "x": -0.99, "y": 6.11 },
  1757. { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
  1758. { "time": 0.6, "x": -0.64, "y": -6.22, "curve": 0.25, "c3": 0.75 },
  1759. { "time": 0.8333 }
  1760. ]
  1761. },
  1762. "bone_right10": {
  1763. "translate": [
  1764. { "curve": 0.25, "c3": 0.75 },
  1765. { "time": 0.2, "x": 0.31, "y": -8.64 },
  1766. { "time": 0.2667 }
  1767. ]
  1768. },
  1769. "bone_right7": {
  1770. "rotate": [
  1771. { "angle": 8.98, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  1772. { "time": 0.2, "angle": 34.76 },
  1773. { "time": 0.2667, "angle": 8.98, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  1774. { "time": 0.5, "angle": 0.45, "curve": 0.25, "c3": 0.75 },
  1775. { "time": 0.8333, "angle": 8.98 }
  1776. ],
  1777. "translate": [
  1778. { "curve": 0.25, "c3": 0.75 },
  1779. { "time": 0.2, "x": -0.99, "y": 6.11 },
  1780. { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
  1781. { "time": 0.5, "x": -0.64, "y": -6.22, "curve": 0.25, "c3": 0.75 },
  1782. { "time": 0.8333 }
  1783. ]
  1784. },
  1785. "1e2": {
  1786. "translate": [
  1787. { "time": 0.2, "curve": 0.25, "c3": 0.75 },
  1788. { "time": 0.2667, "x": 4.05, "y": 0.71, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
  1789. { "time": 0.5 }
  1790. ],
  1791. "scale": [
  1792. { "time": 0.2, "curve": 0.25, "c3": 0.75 },
  1793. { "time": 0.2667, "x": 0.491, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
  1794. { "time": 0.5, "x": 0.8, "curve": 0.25, "c3": 0.75 },
  1795. { "time": 0.8333 }
  1796. ]
  1797. },
  1798. "1shou3": {
  1799. "rotate": [
  1800. { "angle": 4.73 },
  1801. { "time": 0.2, "angle": 146.23 },
  1802. { "time": 0.2667, "angle": 51.66 },
  1803. { "time": 0.5, "angle": 33.04, "curve": 0.25, "c3": 0.75 },
  1804. { "time": 0.8333, "angle": 4.73 }
  1805. ],
  1806. "translate": [
  1807. {},
  1808. { "time": 0.2, "x": -0.38, "y": 10.52 },
  1809. { "time": 0.2667 },
  1810. { "time": 0.5, "x": 1.11, "y": -2.05, "curve": 0.25, "c3": 0.75 },
  1811. { "time": 0.8333 }
  1812. ]
  1813. },
  1814. "1weiba3": {
  1815. "rotate": [
  1816. { "angle": -6.11, "curve": 0.25, "c3": 0.75 },
  1817. { "time": 0.1333, "angle": 32.44, "curve": 0.25, "c3": 0.75 },
  1818. { "time": 0.2, "angle": -22.52 },
  1819. { "time": 0.2667, "angle": -21.65 },
  1820. { "time": 0.4333, "angle": 0.61, "curve": 0.357, "c2": 0.65, "c3": 0.692 },
  1821. { "time": 0.6, "angle": 43.89, "curve": 0.25, "c3": 0.75 },
  1822. { "time": 0.8333, "angle": -6.11 }
  1823. ],
  1824. "translate": [
  1825. { "x": 3.49, "y": -4.29, "curve": "stepped" },
  1826. { "time": 0.2, "x": 3.49, "y": -4.29 },
  1827. {
  1828. "time": 0.2667,
  1829. "x": 4.94,
  1830. "y": 1.79,
  1831. "curve": 0.344,
  1832. "c2": 0.4,
  1833. "c3": 0.677,
  1834. "c4": 0.73
  1835. },
  1836. { "time": 0.6, "x": 4.15, "y": -1.55, "curve": 0.25, "c3": 0.75 },
  1837. { "time": 0.8333, "x": 3.49, "y": -4.29 }
  1838. ]
  1839. },
  1840. "1wuqi": {
  1841. "rotate": [
  1842. {},
  1843. { "time": 0.0667, "angle": -93.17 },
  1844. { "time": 0.1333, "angle": -106.31 },
  1845. { "time": 0.2333, "angle": -111.29 },
  1846. { "time": 0.2667, "angle": -122.39 },
  1847. { "time": 0.3, "angle": -98.43 },
  1848. { "time": 0.3667, "angle": -88.91 },
  1849. { "time": 0.5, "angle": -72.16 },
  1850. { "time": 0.6, "angle": -72.75 },
  1851. { "time": 0.6667, "angle": -77.92 },
  1852. { "time": 0.7333, "angle": -15.69 },
  1853. { "time": 0.8333 }
  1854. ],
  1855. "translate": [
  1856. { "x": -8.91, "y": -5.93, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  1857. { "time": 0.0667, "x": -38.39, "y": 43.13, "curve": 0.38, "c2": 0.6, "c3": 0.725 },
  1858. { "time": 0.1333, "x": -28.31, "y": 3.16 },
  1859. { "time": 0.2333, "x": -38.34, "y": 0.72 },
  1860. {
  1861. "time": 0.2667,
  1862. "x": 22.42,
  1863. "y": -27.36,
  1864. "curve": 0.331,
  1865. "c2": 0.33,
  1866. "c3": 0.671,
  1867. "c4": 0.68
  1868. },
  1869. { "time": 0.3, "x": 10.98, "y": -19.54, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
  1870. {
  1871. "time": 0.3667,
  1872. "x": -29.77,
  1873. "y": -2.33,
  1874. "curve": 0.324,
  1875. "c2": 0.3,
  1876. "c3": 0.658,
  1877. "c4": 0.63
  1878. },
  1879. {
  1880. "time": 0.5,
  1881. "x": -41.82,
  1882. "y": -5.47,
  1883. "curve": 0.324,
  1884. "c2": 0.3,
  1885. "c3": 0.658,
  1886. "c4": 0.63
  1887. },
  1888. {
  1889. "time": 0.6,
  1890. "x": -23.12,
  1891. "y": -7.28,
  1892. "curve": 0.327,
  1893. "c2": 0.31,
  1894. "c3": 0.661,
  1895. "c4": 0.65
  1896. },
  1897. {
  1898. "time": 0.6667,
  1899. "x": -35.76,
  1900. "y": -2.13,
  1901. "curve": 0.35,
  1902. "c2": 0.43,
  1903. "c3": 0.684,
  1904. "c4": 0.77
  1905. },
  1906. { "time": 0.7333, "x": -36.21, "y": 32.62, "curve": 0.356, "c2": 0.65, "c3": 0.691 },
  1907. { "time": 0.8333, "x": -8.91, "y": -5.93 }
  1908. ]
  1909. },
  1910. "ik1": {
  1911. "rotate": [
  1912. { "time": 0.2667 },
  1913. { "time": 0.4, "angle": -22.22 },
  1914. { "time": 0.6, "angle": -47.01 },
  1915. { "time": 0.8333 }
  1916. ],
  1917. "translate": [
  1918. { "x": 1.51, "y": 12.15, "curve": 0.341, "c2": 0.36, "c3": 0.676, "c4": 0.7 },
  1919. {
  1920. "time": 0.0667,
  1921. "x": -1.65,
  1922. "y": 77.93,
  1923. "curve": 0.348,
  1924. "c2": 0.39,
  1925. "c3": 0.683,
  1926. "c4": 0.73
  1927. },
  1928. { "time": 0.1333, "x": -20.38, "y": 67.76, "curve": 0.372, "c2": 0.62, "c3": 0.711 },
  1929. { "time": 0.2, "x": -6.16, "y": 33.74, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  1930. { "time": 0.2333, "x": 8.12, "y": 18.93, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  1931. {
  1932. "time": 0.2667,
  1933. "x": 31.89,
  1934. "y": 18.83,
  1935. "curve": 0.345,
  1936. "c2": 0.37,
  1937. "c3": 0.682,
  1938. "c4": 0.72
  1939. },
  1940. {
  1941. "time": 0.3,
  1942. "x": 48.41,
  1943. "y": -4.48,
  1944. "curve": 0.36,
  1945. "c2": 0.46,
  1946. "c3": 0.698,
  1947. "c4": 0.81
  1948. },
  1949. {
  1950. "time": 0.3333,
  1951. "x": 40.96,
  1952. "y": -8.98,
  1953. "curve": 0.344,
  1954. "c2": 0.44,
  1955. "c3": 0.677,
  1956. "c4": 0.77
  1957. },
  1958. { "time": 0.4, "x": -11.22, "y": 30.39, "curve": 0.345, "c2": 0.66, "c3": 0.679 },
  1959. { "time": 0.5333, "x": -21.65, "y": 42.25, "curve": 0.355, "c2": 0.65, "c3": 0.69 },
  1960. { "time": 0.6, "x": 47.17, "y": 2.2, "curve": 0.255, "c3": 0.62, "c4": 0.47 },
  1961. { "time": 0.7333, "x": 20.36, "y": 5.43, "curve": 0.381, "c2": 0.59, "c3": 0.729 },
  1962. { "time": 0.8333, "x": 1.51, "y": 12.15 }
  1963. ]
  1964. },
  1965. "bone_right4": {
  1966. "rotate": [
  1967. { "angle": 0.57, "curve": 0.25, "c3": 0.75 },
  1968. { "time": 0.0667, "angle": 9.49, "curve": 0.25, "c3": 0.75 },
  1969. { "time": 0.2, "angle": 23.64 },
  1970. { "time": 0.2333, "angle": 25.25 },
  1971. { "time": 0.2667, "angle": 17.3, "curve": 0.345, "c2": 0.38, "c3": 0.68, "c4": 0.72 },
  1972. { "time": 0.3667, "angle": -9.51, "curve": 0.35, "c2": 0.42, "c3": 0.685, "c4": 0.77 },
  1973. { "time": 0.5333, "angle": 24.09, "curve": 0.357, "c2": 0.65, "c3": 0.692 },
  1974. { "time": 0.6, "angle": -15.67, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  1975. { "time": 0.8333, "angle": 0.57 }
  1976. ],
  1977. "translate": [
  1978. { "time": 0.2 },
  1979. { "time": 0.2333, "x": 6.26, "y": 1.8 },
  1980. { "time": 0.2667, "x": 3.02, "y": 2.34, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  1981. {
  1982. "time": 0.3667,
  1983. "x": 2.3,
  1984. "y": -8.85,
  1985. "curve": 0.325,
  1986. "c2": 0.31,
  1987. "c3": 0.675,
  1988. "c4": 0.69
  1989. },
  1990. { "time": 0.5333, "x": 2.56, "y": -2.06, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  1991. { "time": 0.6, "x": 2.7, "y": -10.92, "curve": 0.25, "c3": 0.75 },
  1992. { "time": 0.8333 }
  1993. ]
  1994. },
  1995. "bone_right3": {
  1996. "rotate": [
  1997. { "angle": -0.18, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
  1998. { "time": 0.2, "angle": -8.13 },
  1999. { "time": 0.2333, "angle": -14.19 },
  2000. { "time": 0.2667, "angle": -28.12, "curve": 0.342, "c2": 0.37, "c3": 0.676, "c4": 0.7 },
  2001. { "time": 0.3333, "angle": -24.83, "curve": 0.346, "c2": 0.39, "c3": 0.68, "c4": 0.73 },
  2002. { "time": 0.4, "angle": -0.29, "curve": 0.35, "c2": 0.45, "c3": 0.684, "c4": 0.79 },
  2003. { "time": 0.5333, "angle": -17.61, "curve": 0.25, "c3": 0.75 },
  2004. { "time": 0.8333, "angle": -0.18 }
  2005. ],
  2006. "translate": [
  2007. { "time": 0.2 },
  2008. { "time": 0.2667, "x": 3.6, "y": 0.6, "curve": 0.25, "c3": 0.75 },
  2009. { "time": 0.5333, "x": 5.15, "y": 0.6, "curve": 0.25, "c3": 0.75 },
  2010. { "time": 0.8333 }
  2011. ]
  2012. }
  2013. },
  2014. "deform": {
  2015. "default": {
  2016. "1body": {
  2017. "1body": [
  2018. {},
  2019. {
  2020. "time": 0.2,
  2021. "offset": 30,
  2022. "vertices": [ -0.20528, -3.02543, -1.01675, -2.85685, -0.51932, -1.81185, -0.99048, -1.60357, -0.53873, -0.57136, -0.67331, -0.40416, -0.46355, 0.43621, -0.32816, 0.54543, -0.33421, 1.22511, 0.00995, 1.26985 ]
  2023. },
  2024. { "time": 0.2667 }
  2025. ]
  2026. }
  2027. }
  2028. },
  2029. "events": [
  2030. { "time": 0.2, "name": "effect" },
  2031. { "time": 0.2667, "name": "fire" },
  2032. { "time": 0.4667, "name": "effect" },
  2033. { "time": 0.5333, "name": "fire" }
  2034. ]
  2035. },
  2036. "atk_right": {
  2037. "slots": {
  2038. "2bizi": {
  2039. "attachment": [
  2040. { "name": null }
  2041. ]
  2042. },
  2043. "2body": {
  2044. "attachment": [
  2045. { "name": null }
  2046. ]
  2047. },
  2048. "2daizi": {
  2049. "attachment": [
  2050. { "name": null }
  2051. ]
  2052. },
  2053. "2daiziyy": {
  2054. "attachment": [
  2055. { "name": null }
  2056. ]
  2057. },
  2058. "2e1": {
  2059. "attachment": [
  2060. { "name": null }
  2061. ]
  2062. },
  2063. "2e2": {
  2064. "attachment": [
  2065. { "name": null }
  2066. ]
  2067. },
  2068. "2er1": {
  2069. "attachment": [
  2070. { "name": null }
  2071. ]
  2072. },
  2073. "2er2": {
  2074. "attachment": [
  2075. { "name": null }
  2076. ]
  2077. },
  2078. "2fa": {
  2079. "attachment": [
  2080. { "name": null }
  2081. ]
  2082. },
  2083. "2mm1": {
  2084. "attachment": [
  2085. { "name": null }
  2086. ]
  2087. },
  2088. "2mm2": {
  2089. "attachment": [
  2090. { "name": null }
  2091. ]
  2092. },
  2093. "2shou1": {
  2094. "attachment": [
  2095. { "name": null }
  2096. ]
  2097. },
  2098. "2shou2": {
  2099. "attachment": [
  2100. { "name": null }
  2101. ]
  2102. },
  2103. "2tou": {
  2104. "attachment": [
  2105. { "name": null }
  2106. ]
  2107. },
  2108. "2touying": {
  2109. "attachment": [
  2110. { "name": null }
  2111. ]
  2112. },
  2113. "2tui1": {
  2114. "attachment": [
  2115. { "name": null }
  2116. ]
  2117. },
  2118. "2tui2": {
  2119. "attachment": [
  2120. { "name": null }
  2121. ]
  2122. },
  2123. "2wuqi": {
  2124. "attachment": [
  2125. { "name": null }
  2126. ]
  2127. },
  2128. "2zui": {
  2129. "attachment": [
  2130. { "name": null }
  2131. ]
  2132. },
  2133. "3body": {
  2134. "attachment": [
  2135. { "name": null }
  2136. ]
  2137. },
  2138. "3daizi": {
  2139. "attachment": [
  2140. { "name": null }
  2141. ]
  2142. },
  2143. "3er1": {
  2144. "attachment": [
  2145. { "name": null }
  2146. ]
  2147. },
  2148. "3er2": {
  2149. "attachment": [
  2150. { "name": null }
  2151. ]
  2152. },
  2153. "3fa": {
  2154. "attachment": [
  2155. { "name": null }
  2156. ]
  2157. },
  2158. "3shou1": {
  2159. "attachment": [
  2160. { "name": null }
  2161. ]
  2162. },
  2163. "3shou2": {
  2164. "attachment": [
  2165. { "name": null }
  2166. ]
  2167. },
  2168. "3tou": {
  2169. "attachment": [
  2170. { "name": null }
  2171. ]
  2172. },
  2173. "3touying": {
  2174. "attachment": [
  2175. { "name": null }
  2176. ]
  2177. },
  2178. "3tui1": {
  2179. "attachment": [
  2180. { "name": null }
  2181. ]
  2182. },
  2183. "3tui2": {
  2184. "attachment": [
  2185. { "name": null }
  2186. ]
  2187. },
  2188. "3weiba": {
  2189. "attachment": [
  2190. { "name": null }
  2191. ]
  2192. },
  2193. "3wuqi": {
  2194. "attachment": [
  2195. { "name": null }
  2196. ]
  2197. }
  2198. },
  2199. "bones": {
  2200. "1wuqi": {
  2201. "rotate": [
  2202. {},
  2203. { "time": 0.0667, "angle": -93.17 },
  2204. { "time": 0.1333, "angle": -106.31 },
  2205. { "time": 0.2333, "angle": -111.29 },
  2206. { "time": 0.2667, "angle": -122.39 },
  2207. { "time": 0.3, "angle": -98.43 },
  2208. { "time": 0.3667, "angle": -88.91 },
  2209. { "time": 0.5, "angle": -72.16 },
  2210. { "time": 0.6, "angle": -72.75 },
  2211. { "time": 0.6667, "angle": -77.92 },
  2212. { "time": 0.7333, "angle": -15.69 },
  2213. { "time": 0.8333 }
  2214. ],
  2215. "translate": [
  2216. { "x": -8.91, "y": -5.93, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  2217. { "time": 0.0667, "x": -38.39, "y": 43.13, "curve": 0.38, "c2": 0.6, "c3": 0.725 },
  2218. { "time": 0.1333, "x": -28.31, "y": 3.16 },
  2219. { "time": 0.2333, "x": -38.34, "y": 0.72 },
  2220. {
  2221. "time": 0.2667,
  2222. "x": 22.42,
  2223. "y": -27.36,
  2224. "curve": 0.331,
  2225. "c2": 0.33,
  2226. "c3": 0.671,
  2227. "c4": 0.68
  2228. },
  2229. { "time": 0.3, "x": 10.98, "y": -19.54, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
  2230. {
  2231. "time": 0.3667,
  2232. "x": -29.77,
  2233. "y": -2.33,
  2234. "curve": 0.324,
  2235. "c2": 0.3,
  2236. "c3": 0.658,
  2237. "c4": 0.63
  2238. },
  2239. {
  2240. "time": 0.5,
  2241. "x": -41.82,
  2242. "y": -5.47,
  2243. "curve": 0.324,
  2244. "c2": 0.3,
  2245. "c3": 0.658,
  2246. "c4": 0.63
  2247. },
  2248. {
  2249. "time": 0.6,
  2250. "x": -23.12,
  2251. "y": -7.28,
  2252. "curve": 0.327,
  2253. "c2": 0.31,
  2254. "c3": 0.661,
  2255. "c4": 0.65
  2256. },
  2257. {
  2258. "time": 0.6667,
  2259. "x": -35.76,
  2260. "y": -2.13,
  2261. "curve": 0.35,
  2262. "c2": 0.43,
  2263. "c3": 0.684,
  2264. "c4": 0.77
  2265. },
  2266. { "time": 0.7333, "x": -36.21, "y": 32.62, "curve": 0.356, "c2": 0.65, "c3": 0.691 },
  2267. { "time": 0.8333, "x": -8.91, "y": -5.93 }
  2268. ]
  2269. },
  2270. "bone_right8": {
  2271. "rotate": [
  2272. { "angle": -5.75, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  2273. { "time": 0.2, "angle": 3.09 },
  2274. { "time": 0.2667, "angle": -5.75, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  2275. { "time": 0.5, "angle": -13.12, "curve": 0.25, "c3": 0.75 },
  2276. { "time": 0.8333, "angle": -5.75 }
  2277. ],
  2278. "translate": [
  2279. { "curve": 0.25, "c3": 0.75 },
  2280. { "time": 0.2, "x": -1, "y": -0.52 },
  2281. { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
  2282. { "time": 0.5, "x": 3.07, "y": -1.19, "curve": 0.25, "c3": 0.75 },
  2283. { "time": 0.8333 }
  2284. ],
  2285. "scale": [
  2286. { "x": 0.955 }
  2287. ]
  2288. },
  2289. "1e1": {
  2290. "translate": [
  2291. { "time": 0.2 },
  2292. { "time": 0.2667, "x": 3.81, "y": -2.68, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
  2293. { "time": 0.5 }
  2294. ],
  2295. "scale": [
  2296. { "time": 0.2 },
  2297. { "time": 0.2667, "x": 0.415, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
  2298. { "time": 0.5, "x": 0.8, "curve": 0.25, "c3": 0.75 },
  2299. { "time": 0.8333 }
  2300. ]
  2301. },
  2302. "bone_right9": {
  2303. "rotate": [
  2304. { "angle": 7.34, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  2305. { "time": 0.2, "angle": 17.14 },
  2306. { "time": 0.2667, "angle": 7.34, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  2307. { "time": 0.5, "angle": 0.04, "curve": 0.25, "c3": 0.75 },
  2308. { "time": 0.8333, "angle": 7.34 }
  2309. ],
  2310. "scale": [
  2311. { "x": 0.944 }
  2312. ]
  2313. },
  2314. "bone_right7": {
  2315. "rotate": [
  2316. { "angle": 8.98, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  2317. { "time": 0.2, "angle": 34.76 },
  2318. { "time": 0.2667, "angle": 8.98, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  2319. { "time": 0.5, "angle": 0.45, "curve": 0.25, "c3": 0.75 },
  2320. { "time": 0.8333, "angle": 8.98 }
  2321. ],
  2322. "translate": [
  2323. { "curve": 0.25, "c3": 0.75 },
  2324. { "time": 0.2, "x": -0.99, "y": 6.11 },
  2325. { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
  2326. { "time": 0.5, "x": -0.64, "y": -6.22, "curve": 0.25, "c3": 0.75 },
  2327. { "time": 0.8333 }
  2328. ]
  2329. },
  2330. "1e2": {
  2331. "translate": [
  2332. { "time": 0.2, "curve": 0.25, "c3": 0.75 },
  2333. { "time": 0.2667, "x": 4.05, "y": 0.71, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
  2334. { "time": 0.5 }
  2335. ],
  2336. "scale": [
  2337. { "time": 0.2, "curve": 0.25, "c3": 0.75 },
  2338. { "time": 0.2667, "x": 0.491, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
  2339. { "time": 0.5, "x": 0.8, "curve": 0.25, "c3": 0.75 },
  2340. { "time": 0.8333 }
  2341. ]
  2342. },
  2343. "bone_right4": {
  2344. "rotate": [
  2345. { "angle": 0.57, "curve": 0.25, "c3": 0.75 },
  2346. { "time": 0.0667, "angle": 9.49, "curve": 0.25, "c3": 0.75 },
  2347. { "time": 0.2, "angle": 23.64 },
  2348. { "time": 0.2333, "angle": 25.25 },
  2349. { "time": 0.2667, "angle": 17.3, "curve": 0.345, "c2": 0.38, "c3": 0.68, "c4": 0.72 },
  2350. { "time": 0.3667, "angle": -9.51, "curve": 0.35, "c2": 0.42, "c3": 0.685, "c4": 0.77 },
  2351. { "time": 0.5333, "angle": 24.09, "curve": 0.357, "c2": 0.65, "c3": 0.692 },
  2352. { "time": 0.6, "angle": -15.67, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  2353. { "time": 0.8333, "angle": 0.57 }
  2354. ],
  2355. "translate": [
  2356. { "time": 0.2 },
  2357. { "time": 0.2333, "x": 6.26, "y": 1.8 },
  2358. { "time": 0.2667, "x": 3.02, "y": 2.34, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  2359. {
  2360. "time": 0.3667,
  2361. "x": 2.3,
  2362. "y": -8.85,
  2363. "curve": 0.325,
  2364. "c2": 0.31,
  2365. "c3": 0.675,
  2366. "c4": 0.69
  2367. },
  2368. { "time": 0.5333, "x": 2.56, "y": -2.06, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  2369. { "time": 0.6, "x": 2.7, "y": -10.92, "curve": 0.25, "c3": 0.75 },
  2370. { "time": 0.8333 }
  2371. ]
  2372. },
  2373. "1shou2": {
  2374. "rotate": [
  2375. { "angle": -9.18, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  2376. { "time": 0.2, "angle": 7.99 },
  2377. { "time": 0.2333, "angle": 7.68 },
  2378. { "time": 0.2667, "angle": -21.83, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  2379. { "time": 0.5, "angle": -34.75, "curve": 0.25, "c3": 0.75 },
  2380. { "time": 0.8333, "angle": -9.18 }
  2381. ],
  2382. "translate": [
  2383. { "x": 0.41, "y": -1.84, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  2384. { "time": 0.2, "x": -1.39, "y": 4.01 },
  2385. { "time": 0.2333, "x": 1.74, "y": 4.47 },
  2386. {
  2387. "time": 0.2667,
  2388. "x": 2.65,
  2389. "y": -3.84,
  2390. "curve": 0.324,
  2391. "c2": 0.3,
  2392. "c3": 0.666,
  2393. "c4": 0.66
  2394. },
  2395. { "time": 0.5, "x": 1.66, "y": -2.96, "curve": 0.25, "c3": 0.75 },
  2396. { "time": 0.8333, "x": 0.41, "y": -1.84 }
  2397. ]
  2398. },
  2399. "1shou4": {
  2400. "rotate": [
  2401. { "angle": -9.13 },
  2402. { "time": 0.2, "angle": 18.23 },
  2403. { "time": 0.2667, "angle": 2.98 },
  2404. { "time": 0.5, "angle": 13.18, "curve": 0.25, "c3": 0.75 },
  2405. { "time": 0.8333, "angle": -9.13 }
  2406. ]
  2407. },
  2408. "1shou1": {
  2409. "rotate": [
  2410. { "angle": -4.14, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  2411. { "time": 0.2, "angle": 14.46 },
  2412. { "time": 0.2333, "angle": 9.88 },
  2413. { "time": 0.2667, "angle": -14.74, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  2414. { "time": 0.5, "angle": -27.66, "curve": 0.25, "c3": 0.75 },
  2415. { "time": 0.8333, "angle": -4.14 }
  2416. ],
  2417. "translate": [
  2418. { "curve": 0.25, "c3": 0.75 },
  2419. { "time": 0.2, "x": 0.23, "y": -6.31 },
  2420. { "time": 0.2667 }
  2421. ]
  2422. },
  2423. "1shou3": {
  2424. "rotate": [
  2425. { "angle": 4.73 },
  2426. { "time": 0.2, "angle": 146.23 },
  2427. { "time": 0.2667, "angle": 51.66 },
  2428. { "time": 0.5, "angle": 33.04, "curve": 0.25, "c3": 0.75 },
  2429. { "time": 0.8333, "angle": 4.73 }
  2430. ],
  2431. "translate": [
  2432. {},
  2433. { "time": 0.2, "x": -0.38, "y": 10.52 },
  2434. { "time": 0.2667 },
  2435. { "time": 0.5, "x": 1.11, "y": -2.05, "curve": 0.25, "c3": 0.75 },
  2436. { "time": 0.8333 }
  2437. ]
  2438. },
  2439. "1weiba3": {
  2440. "rotate": [
  2441. { "angle": -6.11, "curve": 0.25, "c3": 0.75 },
  2442. { "time": 0.1333, "angle": 32.44, "curve": 0.25, "c3": 0.75 },
  2443. { "time": 0.2, "angle": -22.52 },
  2444. { "time": 0.2667, "angle": -21.65 },
  2445. { "time": 0.4333, "angle": 0.61, "curve": 0.357, "c2": 0.65, "c3": 0.692 },
  2446. { "time": 0.6, "angle": 43.89, "curve": 0.25, "c3": 0.75 },
  2447. { "time": 0.8333, "angle": -6.11 }
  2448. ],
  2449. "translate": [
  2450. { "x": 3.49, "y": -4.29, "curve": "stepped" },
  2451. { "time": 0.2, "x": 3.49, "y": -4.29 },
  2452. {
  2453. "time": 0.2667,
  2454. "x": 4.94,
  2455. "y": 1.79,
  2456. "curve": 0.344,
  2457. "c2": 0.4,
  2458. "c3": 0.677,
  2459. "c4": 0.73
  2460. },
  2461. { "time": 0.6, "x": 4.15, "y": -1.55, "curve": 0.25, "c3": 0.75 },
  2462. { "time": 0.8333, "x": 3.49, "y": -4.29 }
  2463. ]
  2464. },
  2465. "1weiba": {
  2466. "rotate": [
  2467. { "angle": -2.99, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  2468. { "time": 0.2, "angle": -19.4 },
  2469. { "time": 0.2667, "angle": 7.64, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  2470. { "time": 0.4667, "angle": 21.98, "curve": 0.25, "c3": 0.75 },
  2471. { "time": 0.8333, "angle": -2.99 }
  2472. ],
  2473. "translate": [
  2474. { "curve": 0.25, "c3": 0.75 },
  2475. { "time": 0.2, "x": -2.03, "y": -8.38 },
  2476. { "time": 0.2667 }
  2477. ]
  2478. },
  2479. "1weiba2": {
  2480. "rotate": [
  2481. { "angle": -5.71, "curve": 0.25, "c3": 0.75 },
  2482. { "time": 0.0667, "angle": 10.82, "curve": 0.25, "c3": 0.75 },
  2483. { "time": 0.2, "angle": -22.12 },
  2484. { "time": 0.2667, "angle": -21.51, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  2485. { "time": 0.5, "angle": 18.09, "curve": 0.25, "c3": 0.75 },
  2486. { "time": 0.8333, "angle": -5.71 }
  2487. ],
  2488. "translate": [
  2489. { "x": 0.32, "y": -2.94, "curve": "stepped" },
  2490. { "time": 0.2, "x": 0.32, "y": -2.94 },
  2491. {
  2492. "time": 0.2667,
  2493. "x": 4.31,
  2494. "y": 1.47,
  2495. "curve": 0.306,
  2496. "c2": 0.24,
  2497. "c3": 0.652,
  2498. "c4": 0.62
  2499. },
  2500. { "time": 0.5, "x": 2.69, "y": -0.32, "curve": 0.25, "c3": 0.75 },
  2501. { "time": 0.8333, "x": 0.32, "y": -2.94 }
  2502. ]
  2503. },
  2504. "1tui1": {
  2505. "rotate": [
  2506. { "curve": 0.25, "c3": 0.75 },
  2507. { "time": 0.2, "angle": 6.56 },
  2508. { "time": 0.2667, "angle": -17.54, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
  2509. { "time": 0.5, "angle": -31.11, "curve": 0.25, "c3": 0.75 },
  2510. { "time": 0.8333 }
  2511. ],
  2512. "translate": [
  2513. { "curve": 0.25, "c3": 0.75 },
  2514. { "time": 0.2, "x": 2.06 },
  2515. { "time": 0.2333, "x": 6.05, "y": 0.91 },
  2516. { "time": 0.2667, "x": 5.48, "y": 1.83, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
  2517. { "time": 0.5, "x": 9.18, "y": 3.67, "curve": 0.25, "c3": 0.75 },
  2518. { "time": 0.8333 }
  2519. ]
  2520. },
  2521. "1tui2": {
  2522. "rotate": [
  2523. { "curve": 0.25, "c3": 0.75 },
  2524. { "time": 0.2, "angle": 27.15 },
  2525. { "time": 0.2333 }
  2526. ],
  2527. "translate": [
  2528. { "curve": 0.25, "c3": 0.75 },
  2529. { "time": 0.2, "x": -7.72, "y": 6.96 },
  2530. { "time": 0.2333 }
  2531. ]
  2532. },
  2533. "bone_right10": {
  2534. "translate": [
  2535. { "curve": 0.25, "c3": 0.75 },
  2536. { "time": 0.2, "x": 0.31, "y": -8.64 },
  2537. { "time": 0.2667 }
  2538. ]
  2539. },
  2540. "bone_right6": {
  2541. "rotate": [
  2542. { "angle": 7.4, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  2543. { "time": 0.2, "angle": 33.17 },
  2544. { "time": 0.2667, "angle": 7.4, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  2545. { "time": 0.6, "angle": -1.14, "curve": 0.25, "c3": 0.75 },
  2546. { "time": 0.8333, "angle": 7.4 }
  2547. ],
  2548. "translate": [
  2549. { "curve": 0.25, "c3": 0.75 },
  2550. { "time": 0.2, "x": -0.99, "y": 6.11 },
  2551. { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
  2552. { "time": 0.6, "x": -0.64, "y": -6.22, "curve": 0.25, "c3": 0.75 },
  2553. { "time": 0.8333 }
  2554. ]
  2555. },
  2556. "bone_right5": {
  2557. "rotate": [
  2558. { "angle": -0.89, "curve": 0.246, "c3": 0.633, "c4": 0.54 },
  2559. { "time": 0.1333, "angle": -0.33, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
  2560. { "time": 0.2, "angle": -3.84 },
  2561. { "time": 0.2667, "angle": 8.17, "curve": 0.341, "c2": 0.36, "c3": 0.68, "c4": 0.71 },
  2562. { "time": 0.4, "angle": -14.28, "curve": 0.381, "c2": 0.59, "c3": 0.728 },
  2563. { "time": 0.6, "angle": 2.45, "curve": 0.25, "c3": 0.75 },
  2564. { "time": 0.8333, "angle": -0.89 }
  2565. ],
  2566. "translate": [
  2567. { "x": 1.66, "y": 0.07, "curve": 0.25, "c3": 0.75 },
  2568. { "time": 0.2, "x": 1.29, "y": -9.24 },
  2569. {
  2570. "time": 0.2667,
  2571. "x": 1.66,
  2572. "y": 0.07,
  2573. "curve": 0.341,
  2574. "c2": 0.36,
  2575. "c3": 0.68,
  2576. "c4": 0.71
  2577. },
  2578. { "time": 0.4, "x": -7.75, "y": -2.86, "curve": 0.381, "c2": 0.59, "c3": 0.728 },
  2579. { "time": 0.6, "x": 2.97, "y": 2.55, "curve": 0.25, "c3": 0.75 },
  2580. { "time": 0.8333, "x": 1.66, "y": 0.07 }
  2581. ],
  2582. "shear": [
  2583. { "curve": 0.25, "c3": 0.75 },
  2584. { "time": 0.2, "y": 3.78 },
  2585. { "time": 0.2667 }
  2586. ]
  2587. },
  2588. "bone_right": {
  2589. "translate": [
  2590. { "x": 421.03 }
  2591. ]
  2592. },
  2593. "ik1": {
  2594. "rotate": [
  2595. { "time": 0.2667 },
  2596. { "time": 0.4, "angle": -22.22 },
  2597. { "time": 0.6, "angle": -47.01 },
  2598. { "time": 0.8333 }
  2599. ],
  2600. "translate": [
  2601. { "x": 1.51, "y": 12.15, "curve": 0.341, "c2": 0.36, "c3": 0.676, "c4": 0.7 },
  2602. {
  2603. "time": 0.0667,
  2604. "x": -1.65,
  2605. "y": 77.93,
  2606. "curve": 0.348,
  2607. "c2": 0.39,
  2608. "c3": 0.683,
  2609. "c4": 0.73
  2610. },
  2611. { "time": 0.1333, "x": -20.38, "y": 67.76, "curve": 0.372, "c2": 0.62, "c3": 0.711 },
  2612. { "time": 0.2, "x": -6.16, "y": 33.74, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  2613. { "time": 0.2333, "x": 8.12, "y": 18.93, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  2614. {
  2615. "time": 0.2667,
  2616. "x": 31.89,
  2617. "y": 18.83,
  2618. "curve": 0.345,
  2619. "c2": 0.37,
  2620. "c3": 0.682,
  2621. "c4": 0.72
  2622. },
  2623. {
  2624. "time": 0.3,
  2625. "x": 48.41,
  2626. "y": -4.48,
  2627. "curve": 0.36,
  2628. "c2": 0.46,
  2629. "c3": 0.698,
  2630. "c4": 0.81
  2631. },
  2632. {
  2633. "time": 0.3333,
  2634. "x": 40.96,
  2635. "y": -8.98,
  2636. "curve": 0.344,
  2637. "c2": 0.44,
  2638. "c3": 0.677,
  2639. "c4": 0.77
  2640. },
  2641. { "time": 0.4, "x": -11.22, "y": 30.39, "curve": 0.345, "c2": 0.66, "c3": 0.679 },
  2642. { "time": 0.5333, "x": -21.65, "y": 42.25, "curve": 0.355, "c2": 0.65, "c3": 0.69 },
  2643. { "time": 0.6, "x": 47.17, "y": 2.2, "curve": 0.255, "c3": 0.62, "c4": 0.47 },
  2644. { "time": 0.7333, "x": 20.36, "y": 5.43, "curve": 0.381, "c2": 0.59, "c3": 0.729 },
  2645. { "time": 0.8333, "x": 1.51, "y": 12.15 }
  2646. ]
  2647. },
  2648. "bone_right3": {
  2649. "rotate": [
  2650. { "angle": -0.18, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
  2651. { "time": 0.2, "angle": -8.13 },
  2652. { "time": 0.2333, "angle": -14.19 },
  2653. { "time": 0.2667, "angle": -28.12, "curve": 0.342, "c2": 0.37, "c3": 0.676, "c4": 0.7 },
  2654. { "time": 0.3333, "angle": -24.83, "curve": 0.346, "c2": 0.39, "c3": 0.68, "c4": 0.73 },
  2655. { "time": 0.4, "angle": -0.29, "curve": 0.35, "c2": 0.45, "c3": 0.684, "c4": 0.79 },
  2656. { "time": 0.5333, "angle": -17.61, "curve": 0.25, "c3": 0.75 },
  2657. { "time": 0.8333, "angle": -0.18 }
  2658. ],
  2659. "translate": [
  2660. { "time": 0.2 },
  2661. { "time": 0.2667, "x": 3.6, "y": 0.6, "curve": 0.25, "c3": 0.75 },
  2662. { "time": 0.5333, "x": 5.15, "y": 0.6, "curve": 0.25, "c3": 0.75 },
  2663. { "time": 0.8333 }
  2664. ]
  2665. }
  2666. },
  2667. "deform": {
  2668. "default": {
  2669. "1body": {
  2670. "1body": [
  2671. {},
  2672. {
  2673. "time": 0.2,
  2674. "offset": 30,
  2675. "vertices": [ -0.20528, -3.02543, -1.01675, -2.85685, -0.51932, -1.81185, -0.99048, -1.60357, -0.53873, -0.57136, -0.67331, -0.40416, -0.46355, 0.43621, -0.32816, 0.54543, -0.33421, 1.22511, 0.00995, 1.26985 ]
  2676. },
  2677. { "time": 0.2667 }
  2678. ]
  2679. }
  2680. }
  2681. },
  2682. "events": [
  2683. { "time": 0.2, "name": "effect" },
  2684. { "time": 0.2667, "name": "fire" },
  2685. { "time": 0.4667, "name": "effect" },
  2686. { "time": 0.5333, "name": "fire" }
  2687. ]
  2688. },
  2689. "atk_up": {
  2690. "slots": {
  2691. "1bizi": {
  2692. "attachment": [
  2693. { "name": null }
  2694. ]
  2695. },
  2696. "1body": {
  2697. "attachment": [
  2698. { "name": null }
  2699. ]
  2700. },
  2701. "1daiz": {
  2702. "attachment": [
  2703. { "name": null }
  2704. ]
  2705. },
  2706. "1daizyy": {
  2707. "attachment": [
  2708. { "name": null }
  2709. ]
  2710. },
  2711. "1e1": {
  2712. "attachment": [
  2713. { "name": null }
  2714. ]
  2715. },
  2716. "1e2": {
  2717. "attachment": [
  2718. { "name": null }
  2719. ]
  2720. },
  2721. "1er1": {
  2722. "attachment": [
  2723. { "name": null }
  2724. ]
  2725. },
  2726. "1er2": {
  2727. "attachment": [
  2728. { "name": null }
  2729. ]
  2730. },
  2731. "1fa": {
  2732. "attachment": [
  2733. { "name": null }
  2734. ]
  2735. },
  2736. "1mm1": {
  2737. "attachment": [
  2738. { "name": null }
  2739. ]
  2740. },
  2741. "1mm2": {
  2742. "attachment": [
  2743. { "name": null }
  2744. ]
  2745. },
  2746. "1shou1": {
  2747. "attachment": [
  2748. { "name": null }
  2749. ]
  2750. },
  2751. "1shou2": {
  2752. "attachment": [
  2753. { "name": null }
  2754. ]
  2755. },
  2756. "1tou": {
  2757. "attachment": [
  2758. { "name": null }
  2759. ]
  2760. },
  2761. "1touying": {
  2762. "attachment": [
  2763. { "name": null }
  2764. ]
  2765. },
  2766. "1tui1": {
  2767. "attachment": [
  2768. { "name": null }
  2769. ]
  2770. },
  2771. "1tui2": {
  2772. "attachment": [
  2773. { "name": null }
  2774. ]
  2775. },
  2776. "1weiba": {
  2777. "attachment": [
  2778. { "name": null }
  2779. ]
  2780. },
  2781. "1wuqi": {
  2782. "attachment": [
  2783. { "name": null }
  2784. ]
  2785. },
  2786. "1zui": {
  2787. "attachment": [
  2788. { "name": null }
  2789. ]
  2790. },
  2791. "2bizi": {
  2792. "attachment": [
  2793. { "name": null }
  2794. ]
  2795. },
  2796. "2body": {
  2797. "attachment": [
  2798. { "name": null }
  2799. ]
  2800. },
  2801. "2daizi": {
  2802. "attachment": [
  2803. { "name": null }
  2804. ]
  2805. },
  2806. "2daiziyy": {
  2807. "attachment": [
  2808. { "name": null }
  2809. ]
  2810. },
  2811. "2e1": {
  2812. "attachment": [
  2813. { "name": null }
  2814. ]
  2815. },
  2816. "2e2": {
  2817. "attachment": [
  2818. { "name": null }
  2819. ]
  2820. },
  2821. "2er1": {
  2822. "attachment": [
  2823. { "name": null }
  2824. ]
  2825. },
  2826. "2er2": {
  2827. "attachment": [
  2828. { "name": null }
  2829. ]
  2830. },
  2831. "2fa": {
  2832. "attachment": [
  2833. { "name": null }
  2834. ]
  2835. },
  2836. "2mm1": {
  2837. "attachment": [
  2838. { "name": null }
  2839. ]
  2840. },
  2841. "2mm2": {
  2842. "attachment": [
  2843. { "name": null }
  2844. ]
  2845. },
  2846. "2shou1": {
  2847. "attachment": [
  2848. { "name": null }
  2849. ]
  2850. },
  2851. "2shou2": {
  2852. "attachment": [
  2853. { "name": null }
  2854. ]
  2855. },
  2856. "2tou": {
  2857. "attachment": [
  2858. { "name": null }
  2859. ]
  2860. },
  2861. "2touying": {
  2862. "attachment": [
  2863. { "name": null }
  2864. ]
  2865. },
  2866. "2tui1": {
  2867. "attachment": [
  2868. { "name": null }
  2869. ]
  2870. },
  2871. "2tui2": {
  2872. "attachment": [
  2873. { "name": null }
  2874. ]
  2875. },
  2876. "2wuqi": {
  2877. "attachment": [
  2878. { "name": null }
  2879. ]
  2880. },
  2881. "2zui": {
  2882. "attachment": [
  2883. { "name": null }
  2884. ]
  2885. }
  2886. },
  2887. "bones": {
  2888. "3tui1": {
  2889. "rotate": [
  2890. { "curve": 0.25, "c3": 0.75 },
  2891. { "time": 0.2333, "angle": -2.43, "curve": 0.25, "c3": 0.75 },
  2892. { "time": 0.2667, "angle": -2.14, "curve": "stepped" },
  2893. { "time": 0.5, "angle": -2.14, "curve": 0.25, "c3": 0.75 },
  2894. { "time": 0.8333 }
  2895. ],
  2896. "translate": [
  2897. { "curve": 0.25, "c3": 0.75 },
  2898. { "time": 0.2333, "x": -6.04, "curve": 0.25, "c3": 0.75 },
  2899. { "time": 0.2667, "x": 3.86, "y": 2.41, "curve": "stepped" },
  2900. { "time": 0.5, "x": 3.86, "y": 2.41, "curve": 0.25, "c3": 0.75 },
  2901. { "time": 0.8333 }
  2902. ],
  2903. "scale": [
  2904. { "time": 0.2333 },
  2905. { "time": 0.2667, "x": 1.06, "curve": "stepped" },
  2906. { "time": 0.5, "x": 1.06, "curve": 0.25, "c3": 0.75 },
  2907. { "time": 0.8333 }
  2908. ]
  2909. },
  2910. "3tui2": {
  2911. "rotate": [
  2912. { "curve": 0.25, "c3": 0.75 },
  2913. { "time": 0.2333, "angle": 8.86 },
  2914. { "time": 0.2667 }
  2915. ],
  2916. "translate": [
  2917. { "curve": 0.25, "c3": 0.75 },
  2918. { "time": 0.2333, "x": -5.06, "y": -0.35 },
  2919. { "time": 0.2667 }
  2920. ]
  2921. },
  2922. "3wuqi": {
  2923. "rotate": [
  2924. { "angle": -4.84, "curve": 0.25, "c3": 0.75 },
  2925. { "time": 0.1333, "angle": 0.27, "curve": 0.25, "c3": 0.75 },
  2926. { "time": 0.2, "angle": -2.79, "curve": 0.25, "c3": 0.75 },
  2927. { "time": 0.2667, "angle": 3.95, "curve": 0.25, "c3": 0.75 },
  2928. { "time": 0.3333, "angle": -5.7, "curve": 0.254, "c3": 0.621, "c4": 0.47 },
  2929. { "time": 0.5333, "angle": 4.47, "curve": 0.25, "c3": 0.75 },
  2930. { "time": 0.6667, "angle": -5.41, "curve": 0.603, "c3": 0.84, "c4": 0.84 },
  2931. { "time": 0.8333, "angle": -4.84 }
  2932. ],
  2933. "translate": [
  2934. { "x": 63.25, "y": -1.94, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  2935. { "time": 0.1333, "x": 73.17, "y": 78.67, "curve": 0.25, "c3": 0.75 },
  2936. { "time": 0.2, "x": 45.24, "y": 15.63, "curve": 0.25, "c3": 0.75 },
  2937. { "time": 0.2667, "x": 35.77, "y": 19.54, "curve": 0.25, "c3": 0.75 },
  2938. { "time": 0.3333, "x": 48.03, "y": 39.72, "curve": 0.269, "c3": 0.618, "c4": 0.42 },
  2939. {
  2940. "time": 0.4667,
  2941. "x": 58.03,
  2942. "y": 7.98,
  2943. "curve": 0.323,
  2944. "c2": 0.3,
  2945. "c3": 0.66,
  2946. "c4": 0.64
  2947. },
  2948. {
  2949. "time": 0.5333,
  2950. "x": 42.44,
  2951. "y": 25.35,
  2952. "curve": 0.335,
  2953. "c2": 0.34,
  2954. "c3": 0.676,
  2955. "c4": 0.69
  2956. },
  2957. { "time": 0.6667, "x": 62.55, "y": 27.18, "curve": 0.367, "c2": 0.63, "c3": 0.705 },
  2958. { "time": 0.8333, "x": 63.25, "y": -1.94 }
  2959. ],
  2960. "scale": [
  2961. { "curve": 0.25, "c3": 0.75 },
  2962. { "time": 0.2, "y": 0.948 },
  2963. { "time": 0.2667 }
  2964. ]
  2965. },
  2966. "3weiba": {
  2967. "rotate": [
  2968. { "angle": -1.89, "curve": 0.25, "c3": 0.75 },
  2969. { "time": 0.0667, "angle": 3.02, "curve": 0.25, "c3": 0.75 },
  2970. { "time": 0.2333, "angle": -3.71 },
  2971. { "time": 0.3333, "angle": 2.45, "curve": 0.25, "c3": 0.75 },
  2972. { "time": 0.4, "angle": 26.69, "curve": 0.25, "c3": 0.75 },
  2973. { "time": 0.6333, "angle": -4.41, "curve": 0.25, "c3": 0.75 },
  2974. { "time": 0.8333, "angle": -1.89 }
  2975. ]
  2976. },
  2977. "3weiba2": {
  2978. "rotate": [
  2979. { "angle": -1.66, "curve": 0.25, "c3": 0.75 },
  2980. { "time": 0.1, "angle": -1.36, "curve": 0.25, "c3": 0.75 },
  2981. { "time": 0.2333, "angle": -15.68 },
  2982. { "time": 0.3333, "angle": -10.94, "curve": 0.25, "c3": 0.75 },
  2983. { "time": 0.5, "angle": 30.73, "curve": 0.25, "c3": 0.75 },
  2984. { "time": 0.8333, "angle": -1.66 }
  2985. ],
  2986. "translate": [
  2987. { "x": 0.23, "y": -1.14, "curve": 0.25, "c3": 0.75 },
  2988. { "time": 0.1, "x": -0.62, "y": 0.19, "curve": 0.25, "c3": 0.75 },
  2989. { "time": 0.2333, "x": -2.88, "y": -4.35 },
  2990. { "time": 0.3333, "x": -0.34, "y": -4.71, "curve": 0.25, "c3": 0.75 },
  2991. { "time": 0.5, "x": 2.47, "y": 4.87, "curve": 0.25, "c3": 0.75 },
  2992. { "time": 0.8333, "x": 0.23, "y": -1.14 }
  2993. ]
  2994. },
  2995. "3weiba3": {
  2996. "rotate": [
  2997. { "angle": -10.6, "curve": 0.25, "c3": 0.75 },
  2998. { "time": 0.1, "angle": 20.14, "curve": 0.25, "c3": 0.75 },
  2999. { "time": 0.3333, "angle": -28.13, "curve": 0.25, "c3": 0.75 },
  3000. { "time": 0.6, "angle": 23.98, "curve": 0.25, "c3": 0.75 },
  3001. { "time": 0.8333, "angle": -10.6 }
  3002. ],
  3003. "translate": [
  3004. { "x": 0.02, "y": -3.65, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  3005. { "time": 0.2333, "x": 0.88, "y": 1.4 },
  3006. { "time": 0.3333, "x": -2.9, "y": -6.47, "curve": 0.25, "c3": 0.75 },
  3007. { "time": 0.6, "x": 2.78, "y": 2.87, "curve": 0.25, "c3": 0.75 },
  3008. { "time": 0.8333, "x": 0.02, "y": -3.65 }
  3009. ]
  3010. },
  3011. "bone_up": {
  3012. "translate": [
  3013. { "x": -502.13 }
  3014. ]
  3015. },
  3016. "bone_down": {
  3017. "translate": [
  3018. { "x": 565.18 }
  3019. ]
  3020. },
  3021. "bone_up3": {
  3022. "rotate": [
  3023. { "curve": 0.25, "c3": 0.75 },
  3024. { "time": 0.2, "angle": 15.61 },
  3025. { "time": 0.2667, "angle": -0.83, "curve": 0.252, "c2": 0.28, "c3": 0.598, "c4": 0.63 },
  3026. { "time": 0.3333, "angle": 10.19, "curve": 0.291, "c2": 0.34, "c3": 0.662, "c4": 0.73 },
  3027. { "time": 0.4667, "angle": 10.7, "curve": 0.386, "c2": 0.6, "c3": 0.744 },
  3028. { "time": 0.5333, "angle": -0.88, "curve": 0.25, "c3": 0.75 },
  3029. { "time": 0.6667, "angle": -2.06, "curve": 0.25, "c3": 0.75 },
  3030. { "time": 0.8333 }
  3031. ],
  3032. "translate": [
  3033. { "curve": 0.25, "c3": 0.75 },
  3034. { "time": 0.2, "x": -6.76, "y": -5.98 },
  3035. {
  3036. "time": 0.2667,
  3037. "x": 2.22,
  3038. "y": 6.1,
  3039. "curve": 0.245,
  3040. "c2": 0.27,
  3041. "c3": 0.595,
  3042. "c4": 0.63
  3043. },
  3044. { "time": 0.3333, "x": 5.39, "y": 6.1, "curve": 0.317, "c2": 0.46, "c3": 0.764 },
  3045. { "time": 0.5333, "x": 2.22, "y": 6.1, "curve": 0.25, "c3": 0.75 },
  3046. { "time": 0.6667, "y": -0.96, "curve": 0.25, "c3": 0.75 },
  3047. { "time": 0.8333 }
  3048. ]
  3049. },
  3050. "bone_up4": {
  3051. "rotate": [
  3052. { "curve": 0.25, "c3": 0.75 },
  3053. { "time": 0.0667, "angle": -3.48, "curve": 0.25, "c3": 0.75 },
  3054. { "time": 0.2, "angle": 9.01 },
  3055. { "time": 0.2667, "angle": -25.68, "curve": 0.327, "c2": 0.33, "c3": 0.661, "c4": 0.67 },
  3056. { "time": 0.3333, "angle": -7.8, "curve": 0.326, "c2": 0.34, "c3": 0.662, "c4": 0.68 },
  3057. { "time": 0.4667, "angle": -2.71, "curve": 0.335, "c2": 0.36, "c3": 0.674, "c4": 0.71 },
  3058. { "time": 0.5333, "angle": -11.94, "curve": 0.386, "c2": 0.6, "c3": 0.744 },
  3059. { "time": 0.6667, "angle": -7.65, "curve": 0.25, "c3": 0.75 },
  3060. { "time": 0.8333 }
  3061. ],
  3062. "translate": [
  3063. { "x": 1.47, "y": 0.04, "curve": 0.25, "c3": 0.75 },
  3064. { "time": 0.0667, "x": 2.09, "y": -0.67, "curve": 0.25, "c3": 0.75 },
  3065. { "time": 0.2, "x": -4.2, "y": 0.77 },
  3066. {
  3067. "time": 0.2667,
  3068. "x": 5.58,
  3069. "y": -1.95,
  3070. "curve": 0.316,
  3071. "c2": 0.36,
  3072. "c3": 0.67,
  3073. "c4": 0.73
  3074. },
  3075. { "time": 0.5333, "x": 6.3, "y": -2.53, "curve": 0.386, "c2": 0.6, "c3": 0.744 },
  3076. { "time": 0.6667, "x": 13.91, "y": -1.65, "curve": 0.25, "c3": 0.75 },
  3077. { "time": 0.8333, "x": 1.47, "y": 0.04 }
  3078. ]
  3079. },
  3080. "bone_up5": {
  3081. "rotate": [
  3082. { "angle": -1.81, "curve": 0.25, "c3": 0.75 },
  3083. { "time": 0.1, "angle": -2.14, "curve": 0.25, "c3": 0.75 },
  3084. { "time": 0.2, "angle": -3.72 },
  3085. { "time": 0.2667, "angle": 18.56, "curve": 0.327, "c2": 0.33, "c3": 0.661, "c4": 0.67 },
  3086. { "time": 0.3333, "angle": -13.85, "curve": 0.326, "c2": 0.34, "c3": 0.663, "c4": 0.68 },
  3087. { "time": 0.4667, "angle": -7.25, "curve": 0.333, "c2": 0.34, "c3": 0.667, "c4": 0.68 },
  3088. { "time": 0.5333, "angle": -3.16, "curve": 0.34, "c2": 0.37, "c3": 0.677, "c4": 0.71 },
  3089. { "time": 0.7, "angle": -6.04, "curve": 0.25, "c3": 0.75 },
  3090. { "time": 0.8333, "angle": -1.81 }
  3091. ],
  3092. "translate": [
  3093. { "x": 1.72, "curve": 0.25, "c3": 0.75 },
  3094. { "time": 0.1, "x": -1.21, "y": -1.36, "curve": 0.25, "c3": 0.75 },
  3095. { "time": 0.2, "x": -8.99, "y": -2.31 },
  3096. {
  3097. "time": 0.2667,
  3098. "x": 0.75,
  3099. "y": -1.21,
  3100. "curve": 0.203,
  3101. "c2": 0.26,
  3102. "c3": 0.617,
  3103. "c4": 0.7
  3104. },
  3105. { "time": 0.5333, "x": 9.59, "y": -6.77, "curve": 0.384, "c2": 0.59, "c3": 0.749 },
  3106. { "time": 0.7, "x": 0.75, "y": -1.21, "curve": 0.25, "c3": 0.75 },
  3107. { "time": 0.8333, "x": 1.72 }
  3108. ]
  3109. },
  3110. "bone_up6": {
  3111. "rotate": [
  3112. { "angle": -1.71, "curve": 0.25, "c3": 0.75 },
  3113. { "time": 0.0667, "angle": -7.18, "curve": 0.25, "c3": 0.75 },
  3114. { "time": 0.2333, "angle": 15.78 },
  3115. { "time": 0.2667, "angle": 2.08 },
  3116. { "time": 0.3333, "angle": -11.74, "curve": 0.203, "c2": 0.32, "c3": 0.75 },
  3117. { "time": 0.5, "angle": -17.59, "curve": 0.25, "c3": 0.75 },
  3118. { "time": 0.7, "angle": -0.6, "curve": 0.25, "c3": 0.75 },
  3119. { "time": 0.8333, "angle": -1.71 }
  3120. ],
  3121. "translate": [
  3122. { "x": 2.2, "y": 0.08 }
  3123. ]
  3124. },
  3125. "bone_up7": {
  3126. "rotate": [
  3127. { "angle": -7.04, "curve": 0.25, "c3": 0.75 },
  3128. { "time": 0.1333, "angle": -19.92, "curve": 0.25, "c3": 0.75 },
  3129. { "time": 0.2333, "angle": 2.11 },
  3130. { "time": 0.2667, "angle": 18.31 },
  3131. { "time": 0.3333, "angle": 18.17, "curve": 0.25, "c3": 0.75 },
  3132. { "time": 0.6, "angle": -20.79, "curve": 0.25, "c3": 0.75 },
  3133. { "time": 0.8333, "angle": -7.04 }
  3134. ],
  3135. "translate": [
  3136. { "x": 1.15, "y": -2.09, "curve": "stepped" },
  3137. { "time": 0.2333, "x": 1.15, "y": -2.09 },
  3138. { "time": 0.3333, "x": 0.91, "y": 2.04, "curve": 0.25, "c3": 0.75 },
  3139. { "time": 0.6, "x": 2.65, "y": -5.89, "curve": 0.25, "c3": 0.75 },
  3140. { "time": 0.8333, "x": 1.15, "y": -2.09 }
  3141. ]
  3142. },
  3143. "bone_up8": {
  3144. "rotate": [
  3145. { "curve": 0.255, "c3": 0.62, "c4": 0.47 },
  3146. { "time": 0.1, "angle": -9.2, "curve": 0.367, "c2": 0.46, "c3": 0.754 },
  3147. { "time": 0.2333, "angle": 11.36, "curve": 0.25, "c3": 0.75 },
  3148. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  3149. { "time": 0.5, "angle": -12.94, "curve": 0.25, "c3": 0.75 },
  3150. { "time": 0.8333 }
  3151. ],
  3152. "scale": [
  3153. { "curve": 0.25, "c3": 0.75 },
  3154. { "time": 0.1, "x": 1.099, "y": 1.099, "curve": 0.25, "c3": 0.75 },
  3155. { "time": 0.2333, "x": 0.987, "y": 0.987, "curve": 0.25, "c3": 0.75 },
  3156. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  3157. { "time": 0.5, "x": 1.103, "y": 1.103, "curve": 0.25, "c3": 0.75 },
  3158. { "time": 0.8333 }
  3159. ]
  3160. },
  3161. "bone_up9": {
  3162. "rotate": [
  3163. { "curve": 0.25, "c3": 0.75 },
  3164. { "time": 0.1, "angle": 0.66, "curve": 0.25, "c3": 0.75 },
  3165. { "time": 0.2333, "angle": 9.02, "curve": 0.25, "c3": 0.75 },
  3166. { "time": 0.3333, "angle": -5.33, "curve": 0.25, "c3": 0.75 },
  3167. { "time": 0.6333, "angle": -0.63, "curve": 0.25, "c3": 0.75 },
  3168. { "time": 0.8333 }
  3169. ],
  3170. "scale": [
  3171. { "curve": 0.25, "c3": 0.75 },
  3172. { "time": 0.1, "x": 1.064, "y": 1.064, "curve": 0.25, "c3": 0.75 },
  3173. { "time": 0.2333, "x": 0.935, "y": 0.935, "curve": 0.25, "c3": 0.75 },
  3174. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  3175. { "time": 0.6333, "x": 1.131, "y": 1.026, "curve": 0.25, "c3": 0.75 },
  3176. { "time": 0.8333 }
  3177. ]
  3178. },
  3179. "3shou1": {
  3180. "rotate": [
  3181. { "angle": 3.37, "curve": 0.25, "c3": 0.75 },
  3182. { "time": 0.0667, "curve": 0.25, "c3": 0.75 },
  3183. { "time": 0.2333, "angle": -14.41, "curve": "stepped" },
  3184. { "time": 0.2667, "angle": -14.41, "curve": 0.25, "c3": 0.75 },
  3185. { "time": 0.3333, "angle": -3.57, "curve": 0.25, "c3": 0.75 },
  3186. { "time": 0.5, "angle": 3.23, "curve": 0.25, "c3": 0.75 },
  3187. { "time": 0.8333, "angle": 3.37 }
  3188. ]
  3189. },
  3190. "3shou2": {
  3191. "rotate": [
  3192. { "angle": 9.95, "curve": 0.25, "c3": 0.75 },
  3193. { "time": 0.1, "angle": 3.05, "curve": 0.25, "c3": 0.75 },
  3194. { "time": 0.2333, "angle": -24.48 },
  3195. { "time": 0.2667, "angle": -20.98, "curve": 0.25, "c3": 0.75 },
  3196. { "time": 0.4, "angle": 9.62, "curve": 0.25, "c3": 0.75 },
  3197. { "time": 0.6, "angle": 23.03, "curve": 0.25, "c3": 0.75 },
  3198. { "time": 0.8333, "angle": 9.95 }
  3199. ],
  3200. "translate": [
  3201. { "x": 0.87, "y": 4.18, "curve": 0.25, "c3": 0.75 },
  3202. { "time": 0.2333, "x": 4.16, "y": -6.94, "curve": "stepped" },
  3203. { "time": 0.2667, "x": 4.16, "y": -6.94, "curve": 0.25, "c3": 0.75 },
  3204. { "time": 0.4, "x": 0.94, "y": 3.85, "curve": 0.25, "c3": 0.75 },
  3205. { "time": 0.6, "x": 0.87, "y": 4.18 }
  3206. ]
  3207. },
  3208. "3shou3": {
  3209. "rotate": [
  3210. { "angle": 0.09, "curve": 0.25, "c3": 0.75 },
  3211. { "time": 0.2, "angle": -3.66 },
  3212. { "time": 0.2667, "angle": 0.09 }
  3213. ],
  3214. "translate": [
  3215. { "x": 22.54, "y": -5.29, "curve": 0.246, "c3": 0.633, "c4": 0.54 },
  3216. { "time": 0.1333, "x": 30.05, "y": -7.65, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
  3217. { "time": 0.2, "x": 23.41, "y": -8.76 },
  3218. { "time": 0.2667, "x": 11.27, "y": -11.04, "curve": 0.33, "c3": 0.663, "c4": 0.34 },
  3219. {
  3220. "time": 0.3333,
  3221. "x": 17.26,
  3222. "y": -11.51,
  3223. "curve": 0.33,
  3224. "c2": 0.22,
  3225. "c3": 0.663,
  3226. "c4": 0.56
  3227. },
  3228. {
  3229. "time": 0.4,
  3230. "x": 25.5,
  3231. "y": -19.85,
  3232. "curve": 0.327,
  3233. "c2": 0.22,
  3234. "c3": 0.66,
  3235. "c4": 0.56
  3236. },
  3237. {
  3238. "time": 0.5333,
  3239. "x": 19.16,
  3240. "y": -11.34,
  3241. "curve": 0.328,
  3242. "c2": 0.27,
  3243. "c3": 0.661,
  3244. "c4": 0.6
  3245. },
  3246. {
  3247. "time": 0.6667,
  3248. "x": 25.49,
  3249. "y": -21.71,
  3250. "curve": 0.327,
  3251. "c2": 0.28,
  3252. "c3": 0.66,
  3253. "c4": 0.61
  3254. },
  3255. { "time": 0.8333, "x": 22.54, "y": -5.29 }
  3256. ],
  3257. "scale": [
  3258. { "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  3259. { "time": 0.1333, "x": 0.87, "y": 0.77, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  3260. { "time": 0.2, "x": 0.679, "y": 0.679 },
  3261. { "time": 0.2667, "curve": 0.301, "c3": 0.637, "c4": 0.36 },
  3262. { "time": 0.3333, "x": 0.799, "curve": 0.312, "c2": 0.24, "c3": 0.648, "c4": 0.58 },
  3263. { "time": 0.4, "x": 0.876, "curve": 0.33, "c2": 0.32, "c3": 0.758 },
  3264. { "time": 0.8333 }
  3265. ]
  3266. },
  3267. "3shou4": {
  3268. "rotate": [
  3269. { "angle": -0.16, "curve": 0.25, "c3": 0.75 },
  3270. { "time": 0.2333, "angle": 7.36, "curve": "stepped" },
  3271. { "time": 0.2667, "angle": 7.36 },
  3272. { "time": 0.3333, "angle": 30.55, "curve": "stepped" },
  3273. { "time": 0.5, "angle": 30.55, "curve": 0.25, "c3": 0.75 },
  3274. { "time": 0.8333, "angle": -0.16 }
  3275. ]
  3276. },
  3277. "ik3": {
  3278. "translate": [
  3279. { "x": -20.26, "y": 15.53, "curve": 0.246, "c3": 0.633, "c4": 0.54 },
  3280. { "time": 0.1333, "x": -50.77, "y": -39.75, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
  3281. { "time": 0.2, "x": -39.15, "y": -78.88 },
  3282. {
  3283. "time": 0.2667,
  3284. "x": 13.72,
  3285. "y": 39.56,
  3286. "curve": 0.276,
  3287. "c2": 0.29,
  3288. "c3": 0.616,
  3289. "c4": 0.63
  3290. },
  3291. {
  3292. "time": 0.3333,
  3293. "x": -7.98,
  3294. "y": 0.42,
  3295. "curve": 0.324,
  3296. "c2": 0.33,
  3297. "c3": 0.658,
  3298. "c4": 0.66
  3299. },
  3300. {
  3301. "time": 0.4,
  3302. "x": -27.39,
  3303. "y": -9.19,
  3304. "curve": 0.326,
  3305. "c2": 0.33,
  3306. "c3": 0.66,
  3307. "c4": 0.66
  3308. },
  3309. {
  3310. "time": 0.4667,
  3311. "x": -37.98,
  3312. "y": -23.87,
  3313. "curve": 0.341,
  3314. "c2": 0.37,
  3315. "c3": 0.674,
  3316. "c4": 0.7
  3317. },
  3318. {
  3319. "time": 0.5333,
  3320. "x": 3.17,
  3321. "y": 30.99,
  3322. "curve": 0.347,
  3323. "c2": 0.42,
  3324. "c3": 0.681,
  3325. "c4": 0.76
  3326. },
  3327. { "time": 0.6667, "x": -11.09, "y": 2.41, "curve": 0.356, "c2": 0.65, "c3": 0.69 },
  3328. { "time": 0.8333, "x": -20.26, "y": 15.53 }
  3329. ],
  3330. "scale": [
  3331. { "curve": 0.25, "c3": 0.75 },
  3332. { "time": 0.2, "x": 1.05, "y": 1.05 },
  3333. { "time": 0.2667 }
  3334. ]
  3335. }
  3336. },
  3337. "deform": {
  3338. "default": {
  3339. "3wuqi": {
  3340. "3wuqi": [
  3341. {},
  3342. {
  3343. "time": 0.2,
  3344. "offset": 8,
  3345. "vertices": [ 1.11513, -10.75742, 0, 0, 1.11513, -10.75742, 0.09235, -15.37325, 5.24827, -3.90154, 9.17911, -1.89841, 9.17911, -1.89841 ]
  3346. },
  3347. {
  3348. "time": 0.2667,
  3349. "offset": 8,
  3350. "vertices": [ 6.40444, -11.56406, 2.34355, -15.3264, -6.40389, -8.66929, -3.3361, -1.72784, 3.90882, 2.61269, 11.27181, 4.88814, 5.00182, 5.1167 ]
  3351. },
  3352. {
  3353. "time": 0.3333,
  3354. "offset": 8,
  3355. "vertices": [ 13.45686, -12.63959, -1.78857, -10.85765, -16.42925, -5.88513, -6.27315, -19.6138, -4.34293, 7.55898, 9.31575, 2.48477, -2.32212, 5.6122 ]
  3356. },
  3357. { "time": 0.8333 }
  3358. ]
  3359. }
  3360. }
  3361. },
  3362. "events": [
  3363. { "time": 0.2, "name": "effect" },
  3364. { "time": 0.2667, "name": "fire" },
  3365. { "time": 0.4667, "name": "effect" },
  3366. { "time": 0.5333, "name": "fire" }
  3367. ]
  3368. },
  3369. "idle_down": {
  3370. "slots": {
  3371. "1bizi": {
  3372. "attachment": [
  3373. { "name": null }
  3374. ]
  3375. },
  3376. "1body": {
  3377. "attachment": [
  3378. { "name": null }
  3379. ]
  3380. },
  3381. "1daiz": {
  3382. "attachment": [
  3383. { "name": null }
  3384. ]
  3385. },
  3386. "1daizyy": {
  3387. "attachment": [
  3388. { "name": null }
  3389. ]
  3390. },
  3391. "1e1": {
  3392. "attachment": [
  3393. { "name": null }
  3394. ]
  3395. },
  3396. "1e2": {
  3397. "attachment": [
  3398. { "name": null }
  3399. ]
  3400. },
  3401. "1er1": {
  3402. "attachment": [
  3403. { "name": null }
  3404. ]
  3405. },
  3406. "1er2": {
  3407. "attachment": [
  3408. { "name": null }
  3409. ]
  3410. },
  3411. "1fa": {
  3412. "attachment": [
  3413. { "name": null }
  3414. ]
  3415. },
  3416. "1mm1": {
  3417. "attachment": [
  3418. { "name": null }
  3419. ]
  3420. },
  3421. "1mm2": {
  3422. "attachment": [
  3423. { "name": null }
  3424. ]
  3425. },
  3426. "1shou1": {
  3427. "attachment": [
  3428. { "name": null }
  3429. ]
  3430. },
  3431. "1shou2": {
  3432. "attachment": [
  3433. { "name": null }
  3434. ]
  3435. },
  3436. "1tou": {
  3437. "attachment": [
  3438. { "name": null }
  3439. ]
  3440. },
  3441. "1touying": {
  3442. "attachment": [
  3443. { "name": null }
  3444. ]
  3445. },
  3446. "1tui1": {
  3447. "attachment": [
  3448. { "name": null }
  3449. ]
  3450. },
  3451. "1tui2": {
  3452. "attachment": [
  3453. { "name": null }
  3454. ]
  3455. },
  3456. "1weiba": {
  3457. "attachment": [
  3458. { "name": null }
  3459. ]
  3460. },
  3461. "1wuqi": {
  3462. "attachment": [
  3463. { "name": null }
  3464. ]
  3465. },
  3466. "1zui": {
  3467. "attachment": [
  3468. { "name": null }
  3469. ]
  3470. },
  3471. "3body": {
  3472. "attachment": [
  3473. { "name": null }
  3474. ]
  3475. },
  3476. "3daizi": {
  3477. "attachment": [
  3478. { "name": null }
  3479. ]
  3480. },
  3481. "3er1": {
  3482. "attachment": [
  3483. { "name": null }
  3484. ]
  3485. },
  3486. "3er2": {
  3487. "attachment": [
  3488. { "name": null }
  3489. ]
  3490. },
  3491. "3fa": {
  3492. "attachment": [
  3493. { "name": null }
  3494. ]
  3495. },
  3496. "3shou1": {
  3497. "attachment": [
  3498. { "name": null }
  3499. ]
  3500. },
  3501. "3shou2": {
  3502. "attachment": [
  3503. { "name": null }
  3504. ]
  3505. },
  3506. "3tou": {
  3507. "attachment": [
  3508. { "name": null }
  3509. ]
  3510. },
  3511. "3touying": {
  3512. "attachment": [
  3513. { "name": null }
  3514. ]
  3515. },
  3516. "3tui1": {
  3517. "attachment": [
  3518. { "name": null }
  3519. ]
  3520. },
  3521. "3tui2": {
  3522. "attachment": [
  3523. { "name": null }
  3524. ]
  3525. },
  3526. "3weiba": {
  3527. "attachment": [
  3528. { "name": null }
  3529. ]
  3530. },
  3531. "3wuqi": {
  3532. "attachment": [
  3533. { "name": null }
  3534. ]
  3535. }
  3536. },
  3537. "bones": {
  3538. "bone_down3": {
  3539. "rotate": [
  3540. { "curve": 0.25, "c3": 0.75 },
  3541. { "time": 0.5, "angle": -0.53, "curve": 0.25, "c3": 0.75 },
  3542. { "time": 1 }
  3543. ],
  3544. "translate": [
  3545. { "curve": 0.25, "c3": 0.75 },
  3546. { "time": 0.5, "y": 5.3, "curve": 0.25, "c3": 0.75 },
  3547. { "time": 1 }
  3548. ]
  3549. },
  3550. "bone_down4": {
  3551. "rotate": [
  3552. { "curve": 0.25, "c3": 0.75 },
  3553. { "time": 0.5, "angle": 1.61, "curve": 0.25, "c3": 0.75 },
  3554. { "time": 1 }
  3555. ],
  3556. "translate": [
  3557. { "x": 0.66, "y": 0.01, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
  3558. { "time": 0.1, "curve": 0.25, "c3": 0.75 },
  3559. { "time": 0.6, "x": 5.07, "y": 0.06, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
  3560. { "time": 1, "x": 0.66, "y": 0.01 }
  3561. ]
  3562. },
  3563. "bone_down5": {
  3564. "rotate": [
  3565. { "angle": -0.6, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  3566. { "time": 0.2, "curve": 0.25, "c3": 0.75 },
  3567. { "time": 0.7, "angle": -1.62, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
  3568. { "time": 1, "angle": -0.6 }
  3569. ],
  3570. "translate": [
  3571. { "x": 1.25, "y": -0.02, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  3572. { "time": 0.2, "curve": 0.25, "c3": 0.75 },
  3573. { "time": 0.7, "x": 3.41, "y": -0.06, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
  3574. { "time": 1, "x": 1.25, "y": -0.02 }
  3575. ]
  3576. },
  3577. "bone_down6": {
  3578. "rotate": [
  3579. { "angle": -2.21, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  3580. { "time": 0.3, "angle": 5.59, "curve": 0.25, "c3": 0.75 },
  3581. { "time": 0.8, "angle": -6.76, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  3582. { "time": 1, "angle": -2.21 }
  3583. ]
  3584. },
  3585. "bone_down7": {
  3586. "rotate": [
  3587. { "angle": -9.14, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  3588. { "time": 0.4, "angle": 13.75, "curve": 0.25, "c3": 0.75 },
  3589. { "time": 0.9, "angle": -12.56, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
  3590. { "time": 1, "angle": -9.14 }
  3591. ],
  3592. "translate": [
  3593. { "x": 2.19, "y": -3.08, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  3594. { "time": 0.4, "x": 1.32, "y": 2.69, "curve": 0.25, "c3": 0.75 },
  3595. { "time": 0.9, "x": 2.32, "y": -3.94, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
  3596. { "time": 1, "x": 2.19, "y": -3.08 }
  3597. ]
  3598. },
  3599. "2er1": {
  3600. "rotate": [
  3601. { "angle": -6.16, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  3602. { "time": 0.3, "curve": 0.25, "c3": 0.75 },
  3603. { "time": 0.8, "angle": -9.74, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  3604. { "time": 1, "angle": -6.16 }
  3605. ]
  3606. },
  3607. "2er2": {
  3608. "rotate": [
  3609. { "angle": 7.43, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  3610. { "time": 0.3, "curve": 0.25, "c3": 0.75 },
  3611. { "time": 0.8, "angle": 11.75, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  3612. { "time": 1, "angle": 7.43 }
  3613. ]
  3614. },
  3615. "2shou2": {
  3616. "rotate": [
  3617. { "angle": -2.95, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  3618. { "time": 0.2, "curve": 0.25, "c3": 0.75 },
  3619. { "time": 0.7, "angle": -8.03, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
  3620. { "time": 1, "angle": -2.95 }
  3621. ]
  3622. },
  3623. "2shou3": {
  3624. "rotate": [
  3625. { "angle": -2.85, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  3626. { "time": 0.3, "angle": 15.44, "curve": 0.25, "c3": 0.75 },
  3627. { "time": 0.8, "angle": -13.49, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  3628. { "time": 1, "angle": -2.85 }
  3629. ],
  3630. "translate": [
  3631. { "x": -0.08, "y": -2.15, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  3632. { "time": 0.3, "curve": 0.25, "c3": 0.75 },
  3633. { "time": 0.8, "x": -0.13, "y": -3.41, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  3634. { "time": 1, "x": -0.08, "y": -2.15 }
  3635. ]
  3636. },
  3637. "2shou1": {
  3638. "rotate": [
  3639. { "angle": -0.02 }
  3640. ]
  3641. },
  3642. "2tui1": {
  3643. "translate": [
  3644. { "curve": 0.25, "c3": 0.75 },
  3645. { "time": 0.5, "y": 4.54, "curve": 0.25, "c3": 0.75 },
  3646. { "time": 1 }
  3647. ],
  3648. "scale": [
  3649. { "curve": 0.25, "c3": 0.75 },
  3650. { "time": 0.5, "x": 1.071, "curve": 0.25, "c3": 0.75 },
  3651. { "time": 1 }
  3652. ]
  3653. },
  3654. "2tui2": {
  3655. "translate": [
  3656. { "curve": 0.25, "c3": 0.75 },
  3657. { "time": 0.5, "y": 6.35, "curve": 0.25, "c3": 0.75 },
  3658. { "time": 1 }
  3659. ],
  3660. "scale": [
  3661. { "curve": 0.25, "c3": 0.75 },
  3662. { "time": 0.5, "x": 1.123, "curve": 0.25, "c3": 0.75 },
  3663. { "time": 1 }
  3664. ]
  3665. },
  3666. "2e1": {
  3667. "scale": [
  3668. { "time": 0.4, "curve": 0.33, "c2": 0.32, "c3": 0.665, "c4": 0.66 },
  3669. { "time": 0.5, "x": 0.292, "curve": 0.335, "c2": 0.34, "c3": 0.67, "c4": 0.68 },
  3670. { "time": 0.6 }
  3671. ]
  3672. },
  3673. "2e2": {
  3674. "scale": [
  3675. { "time": 0.4, "curve": 0.33, "c2": 0.32, "c3": 0.665, "c4": 0.66 },
  3676. { "time": 0.5, "x": 0.292, "curve": 0.335, "c2": 0.34, "c3": 0.67, "c4": 0.68 },
  3677. { "time": 0.6 }
  3678. ]
  3679. },
  3680. "ik2": {
  3681. "translate": [
  3682. { "y": 7.49, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  3683. { "time": 0.1667, "curve": 0.25, "c3": 0.75 },
  3684. { "time": 0.6667, "y": 26.4, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  3685. { "time": 1, "y": 7.49 }
  3686. ]
  3687. },
  3688. "2wuqi": {
  3689. "rotate": [
  3690. { "curve": 0.106, "c2": 0.1, "c3": 0.75 },
  3691. { "time": 0.2, "angle": -1.1, "curve": 0.25, "c3": 0.75 },
  3692. { "time": 0.5333, "angle": -3.2, "curve": 0.25, "c3": 0.75 },
  3693. { "time": 0.7333, "angle": -1.52, "curve": 0.25, "c3": 0.875, "c4": 0.88 },
  3694. { "time": 1 }
  3695. ],
  3696. "translate": [
  3697. { "x": 1.51, "y": 12.15, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  3698. { "time": 0.2, "x": 1.42, "y": 17.62, "curve": 0.25, "c3": 0.75 },
  3699. { "time": 0.5333, "x": -1.77, "y": 6.73, "curve": 0.25, "c3": 0.75 },
  3700. { "time": 0.7333, "x": -2.33, "y": 5.26, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
  3701. { "time": 1, "x": 1.51, "y": 12.15 }
  3702. ]
  3703. }
  3704. }
  3705. },
  3706. "idle_left": {
  3707. "slots": {
  3708. "2bizi": {
  3709. "attachment": [
  3710. { "name": null }
  3711. ]
  3712. },
  3713. "2body": {
  3714. "attachment": [
  3715. { "name": null }
  3716. ]
  3717. },
  3718. "2daizi": {
  3719. "attachment": [
  3720. { "name": null }
  3721. ]
  3722. },
  3723. "2daiziyy": {
  3724. "attachment": [
  3725. { "name": null }
  3726. ]
  3727. },
  3728. "2e1": {
  3729. "attachment": [
  3730. { "name": null }
  3731. ]
  3732. },
  3733. "2e2": {
  3734. "attachment": [
  3735. { "name": null }
  3736. ]
  3737. },
  3738. "2er1": {
  3739. "attachment": [
  3740. { "name": null }
  3741. ]
  3742. },
  3743. "2er2": {
  3744. "attachment": [
  3745. { "name": null }
  3746. ]
  3747. },
  3748. "2fa": {
  3749. "attachment": [
  3750. { "name": null }
  3751. ]
  3752. },
  3753. "2mm1": {
  3754. "attachment": [
  3755. { "name": null }
  3756. ]
  3757. },
  3758. "2mm2": {
  3759. "attachment": [
  3760. { "name": null }
  3761. ]
  3762. },
  3763. "2shou1": {
  3764. "attachment": [
  3765. { "name": null }
  3766. ]
  3767. },
  3768. "2shou2": {
  3769. "attachment": [
  3770. { "name": null }
  3771. ]
  3772. },
  3773. "2tou": {
  3774. "attachment": [
  3775. { "name": null }
  3776. ]
  3777. },
  3778. "2touying": {
  3779. "attachment": [
  3780. { "name": null }
  3781. ]
  3782. },
  3783. "2tui1": {
  3784. "attachment": [
  3785. { "name": null }
  3786. ]
  3787. },
  3788. "2tui2": {
  3789. "attachment": [
  3790. { "name": null }
  3791. ]
  3792. },
  3793. "2wuqi": {
  3794. "attachment": [
  3795. { "name": null }
  3796. ]
  3797. },
  3798. "2zui": {
  3799. "attachment": [
  3800. { "name": null }
  3801. ]
  3802. },
  3803. "3body": {
  3804. "attachment": [
  3805. { "name": null }
  3806. ]
  3807. },
  3808. "3daizi": {
  3809. "attachment": [
  3810. { "name": null }
  3811. ]
  3812. },
  3813. "3er1": {
  3814. "attachment": [
  3815. { "name": null }
  3816. ]
  3817. },
  3818. "3er2": {
  3819. "attachment": [
  3820. { "name": null }
  3821. ]
  3822. },
  3823. "3fa": {
  3824. "attachment": [
  3825. { "name": null }
  3826. ]
  3827. },
  3828. "3shou1": {
  3829. "attachment": [
  3830. { "name": null }
  3831. ]
  3832. },
  3833. "3shou2": {
  3834. "attachment": [
  3835. { "name": null }
  3836. ]
  3837. },
  3838. "3tou": {
  3839. "attachment": [
  3840. { "name": null }
  3841. ]
  3842. },
  3843. "3touying": {
  3844. "attachment": [
  3845. { "name": null }
  3846. ]
  3847. },
  3848. "3tui1": {
  3849. "attachment": [
  3850. { "name": null }
  3851. ]
  3852. },
  3853. "3tui2": {
  3854. "attachment": [
  3855. { "name": null }
  3856. ]
  3857. },
  3858. "3weiba": {
  3859. "attachment": [
  3860. { "name": null }
  3861. ]
  3862. },
  3863. "3wuqi": {
  3864. "attachment": [
  3865. { "name": null }
  3866. ]
  3867. }
  3868. },
  3869. "bones": {
  3870. "bone_right": {
  3871. "translate": [
  3872. { "x": 421.03 }
  3873. ],
  3874. "scale": [
  3875. { "x": -1 }
  3876. ]
  3877. },
  3878. "bone_down": {
  3879. "translate": [
  3880. { "x": -500 }
  3881. ]
  3882. },
  3883. "bone_right3": {
  3884. "rotate": [
  3885. { "angle": -0.18, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
  3886. { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
  3887. { "time": 0.6333, "angle": -0.88, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
  3888. { "time": 1, "angle": -0.18 }
  3889. ],
  3890. "translate": [
  3891. { "curve": 0.25, "c3": 0.75 },
  3892. { "time": 0.5, "y": 3.05, "curve": 0.25, "c3": 0.75 },
  3893. { "time": 1 }
  3894. ]
  3895. },
  3896. "bone_right4": {
  3897. "rotate": [
  3898. { "angle": 0.57, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
  3899. { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
  3900. { "time": 0.6333, "angle": 2.83, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
  3901. { "time": 1, "angle": 0.57 }
  3902. ],
  3903. "translate": [
  3904. { "curve": 0.25, "c3": 0.75 },
  3905. { "time": 0.5, "x": 4.14, "y": -1.02, "curve": 0.25, "c3": 0.75 },
  3906. { "time": 1 }
  3907. ]
  3908. },
  3909. "bone_right5": {
  3910. "rotate": [
  3911. { "angle": -0.89, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  3912. { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
  3913. { "time": 0.7333, "angle": -1.95, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
  3914. { "time": 1, "angle": -0.89 }
  3915. ],
  3916. "translate": [
  3917. { "x": 1.66, "y": 0.07, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  3918. { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
  3919. { "time": 0.7333, "x": 3.65, "y": 0.16, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
  3920. { "time": 1, "x": 1.66, "y": 0.07 }
  3921. ]
  3922. },
  3923. "bone_right6": {
  3924. "rotate": [
  3925. { "angle": 7.4, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  3926. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  3927. { "time": 0.8333, "angle": 10.33, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  3928. { "time": 1, "angle": 7.4 }
  3929. ]
  3930. },
  3931. "bone_right7": {
  3932. "rotate": [
  3933. { "angle": 8.98, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  3934. { "time": 0.4, "curve": 0.25, "c3": 0.75 },
  3935. { "time": 0.9, "angle": 10.33, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
  3936. { "time": 1, "angle": 8.98 }
  3937. ]
  3938. },
  3939. "bone_right8": {
  3940. "rotate": [
  3941. { "angle": -5.75, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  3942. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  3943. { "time": 0.8333, "angle": -8.03, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  3944. { "time": 1, "angle": -5.75 }
  3945. ],
  3946. "scale": [
  3947. { "x": 0.955, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  3948. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  3949. { "time": 0.8333, "x": 0.936, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  3950. { "time": 1, "x": 0.955 }
  3951. ]
  3952. },
  3953. "bone_right9": {
  3954. "rotate": [
  3955. { "angle": 7.34, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  3956. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  3957. { "time": 0.8333, "angle": 10.25, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  3958. { "time": 1, "angle": 7.34 }
  3959. ],
  3960. "scale": [
  3961. { "x": 0.944, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  3962. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  3963. { "time": 0.8333, "x": 0.922, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  3964. { "time": 1, "x": 0.944 }
  3965. ]
  3966. },
  3967. "1e1": {
  3968. "scale": [
  3969. { "curve": 0.25, "c3": 0.75 },
  3970. { "time": 0.5, "x": 0.924, "curve": 0.25, "c3": 0.75 },
  3971. { "time": 1 }
  3972. ]
  3973. },
  3974. "1e2": {
  3975. "scale": [
  3976. { "curve": 0.25, "c3": 0.75 },
  3977. { "time": 0.5, "x": 0.862, "curve": 0.25, "c3": 0.75 },
  3978. { "time": 1 }
  3979. ]
  3980. },
  3981. "1shou1": {
  3982. "rotate": [
  3983. { "angle": -4.14, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  3984. { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
  3985. { "time": 0.7333, "angle": -9.08, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
  3986. { "time": 1, "angle": -4.14 }
  3987. ]
  3988. },
  3989. "1shou2": {
  3990. "rotate": [
  3991. { "angle": -9.18, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  3992. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  3993. { "time": 0.8333, "angle": -12.81, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  3994. { "time": 1, "angle": -9.18 }
  3995. ],
  3996. "translate": [
  3997. { "x": 0.41, "y": -1.84, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  3998. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  3999. { "time": 0.8333, "x": 0.57, "y": -2.57, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  4000. { "time": 1, "x": 0.41, "y": -1.84 }
  4001. ]
  4002. },
  4003. "1weiba": {
  4004. "rotate": [
  4005. { "angle": -2.99, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  4006. { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
  4007. { "time": 0.7333, "angle": -6.57, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
  4008. { "time": 1, "angle": -2.99 }
  4009. ]
  4010. },
  4011. "1weiba2": {
  4012. "rotate": [
  4013. { "angle": -5.71, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  4014. { "time": 0.4, "curve": 0.25, "c3": 0.75 },
  4015. { "time": 0.9, "angle": -6.57, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
  4016. { "time": 1, "angle": -5.71 }
  4017. ],
  4018. "translate": [
  4019. { "x": 0.32, "y": -2.94, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  4020. { "time": 0.4, "curve": 0.25, "c3": 0.75 },
  4021. { "time": 0.9, "x": 0.37, "y": -3.38, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
  4022. { "time": 1, "x": 0.32, "y": -2.94 }
  4023. ]
  4024. },
  4025. "1weiba3": {
  4026. "rotate": [
  4027. { "angle": -6.11, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  4028. { "time": 0.0667, "angle": -6.57, "curve": 0.25, "c3": 0.75 },
  4029. { "time": 0.5667, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  4030. { "time": 1, "angle": -6.11 }
  4031. ],
  4032. "translate": [
  4033. { "x": 3.49, "y": -4.29, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  4034. { "time": 0.0667, "x": 3.76, "y": -4.62, "curve": 0.25, "c3": 0.75 },
  4035. { "time": 0.5667, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  4036. { "time": 1, "x": 3.49, "y": -4.29 }
  4037. ]
  4038. },
  4039. "1tui1": {
  4040. "translate": [
  4041. { "curve": 0.25, "c3": 0.75 },
  4042. { "time": 0.5, "y": 2.82, "curve": 0.25, "c3": 0.75 },
  4043. { "time": 1 }
  4044. ],
  4045. "scale": [
  4046. { "curve": 0.25, "c3": 0.75 },
  4047. { "time": 0.5, "x": 1.058, "curve": 0.25, "c3": 0.75 },
  4048. { "time": 1 }
  4049. ]
  4050. },
  4051. "1tui2": {
  4052. "translate": [
  4053. { "curve": 0.25, "c3": 0.75 },
  4054. { "time": 0.5, "y": 3.76, "curve": 0.25, "c3": 0.75 },
  4055. { "time": 1 }
  4056. ],
  4057. "scale": [
  4058. { "curve": 0.25, "c3": 0.75 },
  4059. { "time": 0.5, "x": 1.063, "curve": 0.25, "c3": 0.75 },
  4060. { "time": 1 }
  4061. ]
  4062. },
  4063. "ik1": {
  4064. "rotate": [
  4065. { "curve": 0.106, "c2": 0.1, "c3": 0.75 },
  4066. { "time": 0.2, "angle": -0.74, "curve": 0.25, "c3": 0.75 },
  4067. { "time": 0.5333, "angle": -5.41, "curve": 0.25, "c3": 0.75 },
  4068. { "time": 0.7333, "angle": -3.97, "curve": 0.25, "c3": 0.875, "c4": 0.88 },
  4069. { "time": 1 }
  4070. ],
  4071. "translate": [
  4072. { "x": 1.51, "y": 12.15, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  4073. { "time": 0.2, "x": -0.1, "y": 7.53, "curve": 0.25, "c3": 0.75 },
  4074. { "time": 0.5333, "x": -1.77, "y": 9.11, "curve": 0.25, "c3": 0.75 },
  4075. { "time": 0.7333, "x": -0.22, "y": 10.85, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
  4076. { "time": 1, "x": 1.51, "y": 12.15 }
  4077. ]
  4078. },
  4079. "1shou3": {
  4080. "rotate": [
  4081. { "angle": 4.73 }
  4082. ]
  4083. },
  4084. "1shou4": {
  4085. "rotate": [
  4086. { "angle": -9.13 }
  4087. ]
  4088. }
  4089. }
  4090. },
  4091. "idle_right": {
  4092. "slots": {
  4093. "2bizi": {
  4094. "attachment": [
  4095. { "name": null }
  4096. ]
  4097. },
  4098. "2body": {
  4099. "attachment": [
  4100. { "name": null }
  4101. ]
  4102. },
  4103. "2daizi": {
  4104. "attachment": [
  4105. { "name": null }
  4106. ]
  4107. },
  4108. "2daiziyy": {
  4109. "attachment": [
  4110. { "name": null }
  4111. ]
  4112. },
  4113. "2e1": {
  4114. "attachment": [
  4115. { "name": null }
  4116. ]
  4117. },
  4118. "2e2": {
  4119. "attachment": [
  4120. { "name": null }
  4121. ]
  4122. },
  4123. "2er1": {
  4124. "attachment": [
  4125. { "name": null }
  4126. ]
  4127. },
  4128. "2er2": {
  4129. "attachment": [
  4130. { "name": null }
  4131. ]
  4132. },
  4133. "2fa": {
  4134. "attachment": [
  4135. { "name": null }
  4136. ]
  4137. },
  4138. "2mm1": {
  4139. "attachment": [
  4140. { "name": null }
  4141. ]
  4142. },
  4143. "2mm2": {
  4144. "attachment": [
  4145. { "name": null }
  4146. ]
  4147. },
  4148. "2shou1": {
  4149. "attachment": [
  4150. { "name": null }
  4151. ]
  4152. },
  4153. "2shou2": {
  4154. "attachment": [
  4155. { "name": null }
  4156. ]
  4157. },
  4158. "2tou": {
  4159. "attachment": [
  4160. { "name": null }
  4161. ]
  4162. },
  4163. "2touying": {
  4164. "attachment": [
  4165. { "name": null }
  4166. ]
  4167. },
  4168. "2tui1": {
  4169. "attachment": [
  4170. { "name": null }
  4171. ]
  4172. },
  4173. "2tui2": {
  4174. "attachment": [
  4175. { "name": null }
  4176. ]
  4177. },
  4178. "2wuqi": {
  4179. "attachment": [
  4180. { "name": null }
  4181. ]
  4182. },
  4183. "2zui": {
  4184. "attachment": [
  4185. { "name": null }
  4186. ]
  4187. },
  4188. "3body": {
  4189. "attachment": [
  4190. { "name": null }
  4191. ]
  4192. },
  4193. "3daizi": {
  4194. "attachment": [
  4195. { "name": null }
  4196. ]
  4197. },
  4198. "3er1": {
  4199. "attachment": [
  4200. { "name": null }
  4201. ]
  4202. },
  4203. "3er2": {
  4204. "attachment": [
  4205. { "name": null }
  4206. ]
  4207. },
  4208. "3fa": {
  4209. "attachment": [
  4210. { "name": null }
  4211. ]
  4212. },
  4213. "3shou1": {
  4214. "attachment": [
  4215. { "name": null }
  4216. ]
  4217. },
  4218. "3shou2": {
  4219. "attachment": [
  4220. { "name": null }
  4221. ]
  4222. },
  4223. "3tou": {
  4224. "attachment": [
  4225. { "name": null }
  4226. ]
  4227. },
  4228. "3touying": {
  4229. "attachment": [
  4230. { "name": null }
  4231. ]
  4232. },
  4233. "3tui1": {
  4234. "attachment": [
  4235. { "name": null }
  4236. ]
  4237. },
  4238. "3tui2": {
  4239. "attachment": [
  4240. { "name": null }
  4241. ]
  4242. },
  4243. "3weiba": {
  4244. "attachment": [
  4245. { "name": null }
  4246. ]
  4247. },
  4248. "3wuqi": {
  4249. "attachment": [
  4250. { "name": null }
  4251. ]
  4252. }
  4253. },
  4254. "bones": {
  4255. "bone_right": {
  4256. "translate": [
  4257. { "x": 421.03 }
  4258. ]
  4259. },
  4260. "bone_down": {
  4261. "translate": [
  4262. { "x": -500 }
  4263. ]
  4264. },
  4265. "bone_right3": {
  4266. "rotate": [
  4267. { "angle": -0.18, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
  4268. { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
  4269. { "time": 0.6333, "angle": -0.88, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
  4270. { "time": 1, "angle": -0.18 }
  4271. ],
  4272. "translate": [
  4273. { "curve": 0.25, "c3": 0.75 },
  4274. { "time": 0.5, "y": 3.05, "curve": 0.25, "c3": 0.75 },
  4275. { "time": 1 }
  4276. ]
  4277. },
  4278. "bone_right4": {
  4279. "rotate": [
  4280. { "angle": 0.57, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
  4281. { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
  4282. { "time": 0.6333, "angle": 2.83, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
  4283. { "time": 1, "angle": 0.57 }
  4284. ],
  4285. "translate": [
  4286. { "curve": 0.25, "c3": 0.75 },
  4287. { "time": 0.5, "x": 4.14, "y": -1.02, "curve": 0.25, "c3": 0.75 },
  4288. { "time": 1 }
  4289. ]
  4290. },
  4291. "bone_right5": {
  4292. "rotate": [
  4293. { "angle": -0.89, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  4294. { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
  4295. { "time": 0.7333, "angle": -1.95, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
  4296. { "time": 1, "angle": -0.89 }
  4297. ],
  4298. "translate": [
  4299. { "x": 1.66, "y": 0.07, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  4300. { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
  4301. { "time": 0.7333, "x": 3.65, "y": 0.16, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
  4302. { "time": 1, "x": 1.66, "y": 0.07 }
  4303. ]
  4304. },
  4305. "bone_right6": {
  4306. "rotate": [
  4307. { "angle": 7.4, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  4308. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  4309. { "time": 0.8333, "angle": 10.33, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  4310. { "time": 1, "angle": 7.4 }
  4311. ]
  4312. },
  4313. "bone_right7": {
  4314. "rotate": [
  4315. { "angle": 8.98, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  4316. { "time": 0.4, "curve": 0.25, "c3": 0.75 },
  4317. { "time": 0.9, "angle": 10.33, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
  4318. { "time": 1, "angle": 8.98 }
  4319. ]
  4320. },
  4321. "bone_right8": {
  4322. "rotate": [
  4323. { "angle": -5.75, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  4324. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  4325. { "time": 0.8333, "angle": -8.03, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  4326. { "time": 1, "angle": -5.75 }
  4327. ],
  4328. "scale": [
  4329. { "x": 0.955, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  4330. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  4331. { "time": 0.8333, "x": 0.936, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  4332. { "time": 1, "x": 0.955 }
  4333. ]
  4334. },
  4335. "bone_right9": {
  4336. "rotate": [
  4337. { "angle": 7.34, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  4338. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  4339. { "time": 0.8333, "angle": 10.25, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  4340. { "time": 1, "angle": 7.34 }
  4341. ],
  4342. "scale": [
  4343. { "x": 0.944, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  4344. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  4345. { "time": 0.8333, "x": 0.922, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  4346. { "time": 1, "x": 0.944 }
  4347. ]
  4348. },
  4349. "1e1": {
  4350. "scale": [
  4351. { "curve": 0.25, "c3": 0.75 },
  4352. { "time": 0.5, "x": 0.924, "curve": 0.25, "c3": 0.75 },
  4353. { "time": 1 }
  4354. ]
  4355. },
  4356. "1e2": {
  4357. "scale": [
  4358. { "curve": 0.25, "c3": 0.75 },
  4359. { "time": 0.5, "x": 0.862, "curve": 0.25, "c3": 0.75 },
  4360. { "time": 1 }
  4361. ]
  4362. },
  4363. "1shou1": {
  4364. "rotate": [
  4365. { "angle": -4.14, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  4366. { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
  4367. { "time": 0.7333, "angle": -9.08, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
  4368. { "time": 1, "angle": -4.14 }
  4369. ]
  4370. },
  4371. "1shou2": {
  4372. "rotate": [
  4373. { "angle": -9.18, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  4374. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  4375. { "time": 0.8333, "angle": -12.81, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  4376. { "time": 1, "angle": -9.18 }
  4377. ],
  4378. "translate": [
  4379. { "x": 0.41, "y": -1.84, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  4380. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  4381. { "time": 0.8333, "x": 0.57, "y": -2.57, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  4382. { "time": 1, "x": 0.41, "y": -1.84 }
  4383. ]
  4384. },
  4385. "1weiba": {
  4386. "rotate": [
  4387. { "angle": -2.99, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  4388. { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
  4389. { "time": 0.7333, "angle": -6.57, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
  4390. { "time": 1, "angle": -2.99 }
  4391. ]
  4392. },
  4393. "1weiba2": {
  4394. "rotate": [
  4395. { "angle": -5.71, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  4396. { "time": 0.4, "curve": 0.25, "c3": 0.75 },
  4397. { "time": 0.9, "angle": -6.57, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
  4398. { "time": 1, "angle": -5.71 }
  4399. ],
  4400. "translate": [
  4401. { "x": 0.32, "y": -2.94, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  4402. { "time": 0.4, "curve": 0.25, "c3": 0.75 },
  4403. { "time": 0.9, "x": 0.37, "y": -3.38, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
  4404. { "time": 1, "x": 0.32, "y": -2.94 }
  4405. ]
  4406. },
  4407. "1weiba3": {
  4408. "rotate": [
  4409. { "angle": -6.11, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  4410. { "time": 0.0667, "angle": -6.57, "curve": 0.25, "c3": 0.75 },
  4411. { "time": 0.5667, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  4412. { "time": 1, "angle": -6.11 }
  4413. ],
  4414. "translate": [
  4415. { "x": 3.49, "y": -4.29, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  4416. { "time": 0.0667, "x": 3.76, "y": -4.62, "curve": 0.25, "c3": 0.75 },
  4417. { "time": 0.5667, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  4418. { "time": 1, "x": 3.49, "y": -4.29 }
  4419. ]
  4420. },
  4421. "1tui1": {
  4422. "translate": [
  4423. { "curve": 0.25, "c3": 0.75 },
  4424. { "time": 0.5, "y": 2.82, "curve": 0.25, "c3": 0.75 },
  4425. { "time": 1 }
  4426. ],
  4427. "scale": [
  4428. { "curve": 0.25, "c3": 0.75 },
  4429. { "time": 0.5, "x": 1.058, "curve": 0.25, "c3": 0.75 },
  4430. { "time": 1 }
  4431. ]
  4432. },
  4433. "1tui2": {
  4434. "translate": [
  4435. { "curve": 0.25, "c3": 0.75 },
  4436. { "time": 0.5, "y": 3.76, "curve": 0.25, "c3": 0.75 },
  4437. { "time": 1 }
  4438. ],
  4439. "scale": [
  4440. { "curve": 0.25, "c3": 0.75 },
  4441. { "time": 0.5, "x": 1.063, "curve": 0.25, "c3": 0.75 },
  4442. { "time": 1 }
  4443. ]
  4444. },
  4445. "1shou3": {
  4446. "rotate": [
  4447. { "angle": 4.73 }
  4448. ]
  4449. },
  4450. "1shou4": {
  4451. "rotate": [
  4452. { "angle": -9.13 }
  4453. ]
  4454. },
  4455. "1wuqi": {
  4456. "translate": [
  4457. { "x": -6.25, "y": 6.01 }
  4458. ]
  4459. },
  4460. "ik1": {
  4461. "rotate": [
  4462. { "curve": 0.106, "c2": 0.1, "c3": 0.75 },
  4463. { "time": 0.2, "angle": -0.74, "curve": 0.25, "c3": 0.75 },
  4464. { "time": 0.5333, "angle": -5.41, "curve": 0.25, "c3": 0.75 },
  4465. { "time": 0.7333, "angle": -3.97, "curve": 0.25, "c3": 0.875, "c4": 0.88 },
  4466. { "time": 1 }
  4467. ],
  4468. "translate": [
  4469. { "x": 1.51, "y": 12.15, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  4470. { "time": 0.2, "x": -0.1, "y": 7.53, "curve": 0.25, "c3": 0.75 },
  4471. { "time": 0.5333, "x": -1.77, "y": 9.11, "curve": 0.25, "c3": 0.75 },
  4472. { "time": 0.7333, "x": -0.22, "y": 10.85, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
  4473. { "time": 1, "x": 1.51, "y": 12.15 }
  4474. ]
  4475. }
  4476. }
  4477. },
  4478. "idle_up": {
  4479. "slots": {
  4480. "1bizi": {
  4481. "attachment": [
  4482. { "name": null }
  4483. ]
  4484. },
  4485. "1body": {
  4486. "attachment": [
  4487. { "name": null }
  4488. ]
  4489. },
  4490. "1daiz": {
  4491. "attachment": [
  4492. { "name": null }
  4493. ]
  4494. },
  4495. "1daizyy": {
  4496. "attachment": [
  4497. { "name": null }
  4498. ]
  4499. },
  4500. "1e1": {
  4501. "attachment": [
  4502. { "name": null }
  4503. ]
  4504. },
  4505. "1e2": {
  4506. "attachment": [
  4507. { "name": null }
  4508. ]
  4509. },
  4510. "1er1": {
  4511. "attachment": [
  4512. { "name": null }
  4513. ]
  4514. },
  4515. "1er2": {
  4516. "attachment": [
  4517. { "name": null }
  4518. ]
  4519. },
  4520. "1fa": {
  4521. "attachment": [
  4522. { "name": null }
  4523. ]
  4524. },
  4525. "1mm1": {
  4526. "attachment": [
  4527. { "name": null }
  4528. ]
  4529. },
  4530. "1mm2": {
  4531. "attachment": [
  4532. { "name": null }
  4533. ]
  4534. },
  4535. "1shou1": {
  4536. "attachment": [
  4537. { "name": null }
  4538. ]
  4539. },
  4540. "1shou2": {
  4541. "attachment": [
  4542. { "name": null }
  4543. ]
  4544. },
  4545. "1tou": {
  4546. "attachment": [
  4547. { "name": null }
  4548. ]
  4549. },
  4550. "1touying": {
  4551. "attachment": [
  4552. { "name": null }
  4553. ]
  4554. },
  4555. "1tui1": {
  4556. "attachment": [
  4557. { "name": null }
  4558. ]
  4559. },
  4560. "1tui2": {
  4561. "attachment": [
  4562. { "name": null }
  4563. ]
  4564. },
  4565. "1weiba": {
  4566. "attachment": [
  4567. { "name": null }
  4568. ]
  4569. },
  4570. "1wuqi": {
  4571. "attachment": [
  4572. { "name": null }
  4573. ]
  4574. },
  4575. "1zui": {
  4576. "attachment": [
  4577. { "name": null }
  4578. ]
  4579. },
  4580. "2bizi": {
  4581. "attachment": [
  4582. { "name": null }
  4583. ]
  4584. },
  4585. "2body": {
  4586. "attachment": [
  4587. { "name": null }
  4588. ]
  4589. },
  4590. "2daizi": {
  4591. "attachment": [
  4592. { "name": null }
  4593. ]
  4594. },
  4595. "2daiziyy": {
  4596. "attachment": [
  4597. { "name": null }
  4598. ]
  4599. },
  4600. "2e1": {
  4601. "attachment": [
  4602. { "name": null }
  4603. ]
  4604. },
  4605. "2e2": {
  4606. "attachment": [
  4607. { "name": null }
  4608. ]
  4609. },
  4610. "2er1": {
  4611. "attachment": [
  4612. { "name": null }
  4613. ]
  4614. },
  4615. "2er2": {
  4616. "attachment": [
  4617. { "name": null }
  4618. ]
  4619. },
  4620. "2fa": {
  4621. "attachment": [
  4622. { "name": null }
  4623. ]
  4624. },
  4625. "2mm1": {
  4626. "attachment": [
  4627. { "name": null }
  4628. ]
  4629. },
  4630. "2mm2": {
  4631. "attachment": [
  4632. { "name": null }
  4633. ]
  4634. },
  4635. "2shou1": {
  4636. "attachment": [
  4637. { "name": null }
  4638. ]
  4639. },
  4640. "2shou2": {
  4641. "attachment": [
  4642. { "name": null }
  4643. ]
  4644. },
  4645. "2tou": {
  4646. "attachment": [
  4647. { "name": null }
  4648. ]
  4649. },
  4650. "2touying": {
  4651. "attachment": [
  4652. { "name": null }
  4653. ]
  4654. },
  4655. "2tui1": {
  4656. "attachment": [
  4657. { "name": null }
  4658. ]
  4659. },
  4660. "2tui2": {
  4661. "attachment": [
  4662. { "name": null }
  4663. ]
  4664. },
  4665. "2wuqi": {
  4666. "attachment": [
  4667. { "name": null }
  4668. ]
  4669. },
  4670. "2zui": {
  4671. "attachment": [
  4672. { "name": null }
  4673. ]
  4674. }
  4675. },
  4676. "bones": {
  4677. "bone_up": {
  4678. "translate": [
  4679. { "x": -502.13 }
  4680. ]
  4681. },
  4682. "bone_down": {
  4683. "translate": [
  4684. { "x": 565.18 }
  4685. ]
  4686. },
  4687. "bone_up3": {
  4688. "rotate": [
  4689. { "curve": 0.25, "c3": 0.75 },
  4690. { "time": 0.5, "angle": -1.98, "curve": 0.25, "c3": 0.75 },
  4691. { "time": 1 }
  4692. ],
  4693. "translate": [
  4694. { "curve": 0.25, "c3": 0.75 },
  4695. { "time": 0.5, "y": 4.84, "curve": 0.25, "c3": 0.75 },
  4696. { "time": 1 }
  4697. ]
  4698. },
  4699. "bone_up4": {
  4700. "rotate": [
  4701. { "curve": 0.25, "c3": 0.75 },
  4702. { "time": 0.5, "angle": 6.32, "curve": 0.25, "c3": 0.75 },
  4703. { "time": 1 }
  4704. ],
  4705. "translate": [
  4706. { "x": 1.47, "y": 0.04, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
  4707. { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
  4708. { "time": 0.6333, "x": 7.26, "y": 0.19, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
  4709. { "time": 1, "x": 1.47, "y": 0.04 }
  4710. ]
  4711. },
  4712. "bone_up5": {
  4713. "rotate": [
  4714. { "angle": -1.81, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  4715. { "time": 0.1667, "curve": 0.25, "c3": 0.75 },
  4716. { "time": 0.6667, "angle": -6.36, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  4717. { "time": 1, "angle": -1.81 }
  4718. ],
  4719. "translate": [
  4720. { "x": 1.72, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  4721. { "time": 0.1667, "curve": 0.25, "c3": 0.75 },
  4722. { "time": 0.6667, "x": 6.05, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  4723. { "time": 1, "x": 1.72 }
  4724. ]
  4725. },
  4726. "bone_up6": {
  4727. "rotate": [
  4728. { "angle": -1.71, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  4729. { "time": 0.2667, "angle": 7.7, "curve": 0.25, "c3": 0.75 },
  4730. { "time": 0.7667, "angle": -9.6, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
  4731. { "time": 1, "angle": -1.71 }
  4732. ],
  4733. "translate": [
  4734. { "x": 2.2, "y": 0.08, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  4735. { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
  4736. { "time": 0.7667, "x": 4.04, "y": 0.14, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
  4737. { "time": 1, "x": 2.2, "y": 0.08 }
  4738. ]
  4739. },
  4740. "bone_up7": {
  4741. "rotate": [
  4742. { "angle": -7.04, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
  4743. { "time": 0.3667, "angle": 9.85, "curve": 0.25, "c3": 0.75 },
  4744. { "time": 0.8667, "angle": -11.33, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  4745. { "time": 1, "angle": -7.04 }
  4746. ],
  4747. "translate": [
  4748. { "x": 1.15, "y": -2.09, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
  4749. { "time": 0.3667, "x": 0.21, "y": 0.99, "curve": 0.25, "c3": 0.75 },
  4750. { "time": 0.8667, "x": 1.39, "y": -2.88, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  4751. { "time": 1, "x": 1.15, "y": -2.09 }
  4752. ]
  4753. },
  4754. "bone_up8": {
  4755. "rotate": [
  4756. { "curve": 0.25, "c3": 0.75 },
  4757. { "time": 0.5, "angle": -8.88, "curve": 0.25, "c3": 0.75 },
  4758. { "time": 1 }
  4759. ]
  4760. },
  4761. "bone_up9": {
  4762. "rotate": [
  4763. { "curve": 0.25, "c3": 0.75 },
  4764. { "time": 0.5, "angle": 14.46, "curve": 0.25, "c3": 0.75 },
  4765. { "time": 1 }
  4766. ]
  4767. },
  4768. "3shou1": {
  4769. "rotate": [
  4770. { "angle": 3.37, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  4771. { "time": 0.2333, "angle": -2.31, "curve": 0.25, "c3": 0.75 },
  4772. { "time": 0.7333, "angle": 10.14, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
  4773. { "time": 1, "angle": 3.37 }
  4774. ]
  4775. },
  4776. "3shou2": {
  4777. "rotate": [
  4778. { "angle": 9.95, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  4779. { "time": 0.3333, "angle": -6.98, "curve": 0.25, "c3": 0.75 },
  4780. { "time": 0.8333, "angle": 16.67, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  4781. { "time": 1, "angle": 9.95 }
  4782. ],
  4783. "translate": [
  4784. { "x": 0.87, "y": 4.18, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  4785. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  4786. { "time": 0.8333, "x": 1.22, "y": 5.83, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  4787. { "time": 1, "x": 0.87, "y": 4.18 }
  4788. ]
  4789. },
  4790. "3shou3": {
  4791. "rotate": [
  4792. { "angle": 0.09 }
  4793. ]
  4794. },
  4795. "3shou4": {
  4796. "rotate": [
  4797. { "angle": -0.16 }
  4798. ]
  4799. },
  4800. "3tui1": {
  4801. "translate": [
  4802. { "curve": 0.25, "c3": 0.75 },
  4803. { "time": 0.5, "y": 4.21, "curve": 0.25, "c3": 0.75 },
  4804. { "time": 1 }
  4805. ],
  4806. "scale": [
  4807. { "curve": 0.25, "c3": 0.75 },
  4808. { "time": 0.5, "x": 1.115, "curve": 0.25, "c3": 0.75 },
  4809. { "time": 1 }
  4810. ]
  4811. },
  4812. "3tui2": {
  4813. "translate": [
  4814. { "curve": 0.25, "c3": 0.75 },
  4815. { "time": 0.5, "y": 3.79, "curve": 0.25, "c3": 0.75 },
  4816. { "time": 1 }
  4817. ],
  4818. "scale": [
  4819. { "curve": 0.25, "c3": 0.75 },
  4820. { "time": 0.5, "x": 1.091, "curve": 0.25, "c3": 0.75 },
  4821. { "time": 1 }
  4822. ]
  4823. },
  4824. "3weiba": {
  4825. "rotate": [
  4826. { "angle": -1.89, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
  4827. { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
  4828. { "time": 0.6333, "angle": -9.31, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
  4829. { "time": 1, "angle": -1.89 }
  4830. ]
  4831. },
  4832. "3weiba2": {
  4833. "rotate": [
  4834. { "angle": -1.66, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  4835. { "time": 0.2667, "angle": 5.1, "curve": 0.25, "c3": 0.75 },
  4836. { "time": 0.7667, "angle": -7.32, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
  4837. { "time": 1, "angle": -1.66 }
  4838. ],
  4839. "translate": [
  4840. { "x": 0.23, "y": -1.14, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  4841. { "time": 0.2667, "x": 0.24, "y": 1.78, "curve": 0.25, "c3": 0.75 },
  4842. { "time": 0.7667, "x": 0.23, "y": -3.58, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
  4843. { "time": 1, "x": 0.23, "y": -1.14 }
  4844. ]
  4845. },
  4846. "3weiba3": {
  4847. "rotate": [
  4848. { "angle": -10.6, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  4849. { "time": 0.4, "angle": 9.98, "curve": 0.25, "c3": 0.75 },
  4850. { "time": 0.9, "angle": -13.67, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
  4851. { "time": 1, "angle": -10.6 }
  4852. ],
  4853. "translate": [
  4854. { "x": 0.02, "y": -3.65, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
  4855. { "time": 0.4, "x": -0.49, "y": 2.49, "curve": 0.25, "c3": 0.75 },
  4856. { "time": 0.9, "x": 0.09, "y": -4.57, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
  4857. { "time": 1, "x": 0.02, "y": -3.65 }
  4858. ]
  4859. },
  4860. "3wuqi": {
  4861. "rotate": [
  4862. { "angle": -4.84 }
  4863. ],
  4864. "translate": [
  4865. { "x": 63.25, "y": -1.94 }
  4866. ]
  4867. },
  4868. "ik3": {
  4869. "rotate": [
  4870. { "curve": 0.106, "c2": 0.1, "c3": 0.75 },
  4871. { "time": 0.2, "angle": -0.74, "curve": 0.25, "c3": 0.75 },
  4872. { "time": 0.5333, "angle": -5.41, "curve": 0.25, "c3": 0.75 },
  4873. { "time": 0.7333, "angle": -3.97, "curve": 0.25, "c3": 0.875, "c4": 0.88 },
  4874. { "time": 1 }
  4875. ],
  4876. "translate": [
  4877. { "x": -8.68, "y": -0.3, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
  4878. { "time": 0.2, "x": -13.68, "y": -3.79, "curve": 0.25, "c3": 0.75 },
  4879. { "time": 0.5333, "x": -16.48, "y": -2.21, "curve": 0.25, "c3": 0.75 },
  4880. { "time": 0.7333, "x": -16.94, "y": 2.06, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
  4881. { "time": 1, "x": -8.68, "y": -0.3 }
  4882. ]
  4883. }
  4884. }
  4885. },
  4886. "show": {
  4887. "slots": {
  4888. "1touying": {
  4889. "color": [
  4890. { "color": "ffffff00" },
  4891. { "time": 0.1333, "color": "ffffffff" }
  4892. ]
  4893. },
  4894. "2bizi": {
  4895. "attachment": [
  4896. { "name": null }
  4897. ]
  4898. },
  4899. "2body": {
  4900. "attachment": [
  4901. { "name": null }
  4902. ]
  4903. },
  4904. "2daizi": {
  4905. "attachment": [
  4906. { "name": null }
  4907. ]
  4908. },
  4909. "2daiziyy": {
  4910. "attachment": [
  4911. { "name": null }
  4912. ]
  4913. },
  4914. "2e1": {
  4915. "attachment": [
  4916. { "name": null }
  4917. ]
  4918. },
  4919. "2e2": {
  4920. "attachment": [
  4921. { "name": null }
  4922. ]
  4923. },
  4924. "2er1": {
  4925. "attachment": [
  4926. { "name": null }
  4927. ]
  4928. },
  4929. "2er2": {
  4930. "attachment": [
  4931. { "name": null }
  4932. ]
  4933. },
  4934. "2fa": {
  4935. "attachment": [
  4936. { "name": null }
  4937. ]
  4938. },
  4939. "2mm1": {
  4940. "attachment": [
  4941. { "name": null }
  4942. ]
  4943. },
  4944. "2mm2": {
  4945. "attachment": [
  4946. { "name": null }
  4947. ]
  4948. },
  4949. "2shou1": {
  4950. "attachment": [
  4951. { "name": null }
  4952. ]
  4953. },
  4954. "2shou2": {
  4955. "attachment": [
  4956. { "name": null }
  4957. ]
  4958. },
  4959. "2tou": {
  4960. "attachment": [
  4961. { "name": null }
  4962. ]
  4963. },
  4964. "2touying": {
  4965. "attachment": [
  4966. { "name": null }
  4967. ]
  4968. },
  4969. "2tui1": {
  4970. "attachment": [
  4971. { "name": null }
  4972. ]
  4973. },
  4974. "2tui2": {
  4975. "attachment": [
  4976. { "name": null }
  4977. ]
  4978. },
  4979. "2wuqi": {
  4980. "attachment": [
  4981. { "name": null }
  4982. ]
  4983. },
  4984. "2zui": {
  4985. "attachment": [
  4986. { "name": null }
  4987. ]
  4988. },
  4989. "3body": {
  4990. "attachment": [
  4991. { "name": null }
  4992. ]
  4993. },
  4994. "3daizi": {
  4995. "attachment": [
  4996. { "name": null }
  4997. ]
  4998. },
  4999. "3er1": {
  5000. "attachment": [
  5001. { "name": null }
  5002. ]
  5003. },
  5004. "3er2": {
  5005. "attachment": [
  5006. { "name": null }
  5007. ]
  5008. },
  5009. "3fa": {
  5010. "attachment": [
  5011. { "name": null }
  5012. ]
  5013. },
  5014. "3shou1": {
  5015. "attachment": [
  5016. { "name": null }
  5017. ]
  5018. },
  5019. "3shou2": {
  5020. "attachment": [
  5021. { "name": null }
  5022. ]
  5023. },
  5024. "3tou": {
  5025. "attachment": [
  5026. { "name": null }
  5027. ]
  5028. },
  5029. "3touying": {
  5030. "attachment": [
  5031. { "name": null }
  5032. ]
  5033. },
  5034. "3tui1": {
  5035. "attachment": [
  5036. { "name": null }
  5037. ]
  5038. },
  5039. "3tui2": {
  5040. "attachment": [
  5041. { "name": null }
  5042. ]
  5043. },
  5044. "3weiba": {
  5045. "attachment": [
  5046. { "name": null }
  5047. ]
  5048. },
  5049. "3wuqi": {
  5050. "attachment": [
  5051. { "name": null }
  5052. ]
  5053. }
  5054. },
  5055. "bones": {
  5056. "bone_right2": {
  5057. "translate": [
  5058. { "y": 92.7 },
  5059. { "time": 0.1, "y": 4.45 },
  5060. { "time": 0.1333, "y": -3.46 },
  5061. { "time": 0.1667 }
  5062. ]
  5063. },
  5064. "bone_right": {
  5065. "translate": [
  5066. { "x": 421.03 }
  5067. ]
  5068. },
  5069. "bone_down": {
  5070. "translate": [
  5071. { "x": -500 }
  5072. ]
  5073. },
  5074. "ik1": {
  5075. "rotate": [
  5076. { "angle": 12 },
  5077. { "time": 0.1333, "angle": 16.99 },
  5078. { "time": 0.2, "angle": 1.53 },
  5079. { "time": 0.2667, "angle": -9.18 },
  5080. { "time": 0.3333 }
  5081. ],
  5082. "translate": [
  5083. { "y": 122.4 },
  5084. { "time": 0.1333, "x": -7.08, "y": 28.3 },
  5085. { "time": 0.2, "x": 0.9, "y": 16.33 },
  5086. { "time": 0.3333, "x": 1.51, "y": 12.15 }
  5087. ]
  5088. },
  5089. "1wuqi": {
  5090. "translate": [
  5091. {},
  5092. { "time": 0.3333, "x": -6.25, "y": 6.01 }
  5093. ]
  5094. },
  5095. "1wuqi2": {
  5096. "translate": [
  5097. { "y": 122.4 },
  5098. { "time": 0.1333, "y": -3.47 },
  5099. { "time": 0.2, "y": 20.01 },
  5100. { "time": 0.3333 }
  5101. ]
  5102. },
  5103. "1weiba2": {
  5104. "rotate": [
  5105. { "angle": -14.14 },
  5106. { "time": 0.1333, "angle": 16.38 },
  5107. { "time": 0.2, "angle": 15.95 },
  5108. { "time": 0.2667, "angle": -4.53 },
  5109. { "time": 0.3333, "angle": -5.71 }
  5110. ],
  5111. "translate": [
  5112. {},
  5113. { "time": 0.3333, "x": 0.32, "y": -2.94 }
  5114. ]
  5115. },
  5116. "1weiba3": {
  5117. "rotate": [
  5118. { "angle": -14.14 },
  5119. { "time": 0.1333, "angle": 16.22 },
  5120. { "time": 0.2, "angle": 15.71 },
  5121. { "time": 0.2667, "angle": 37.45 },
  5122. { "time": 0.3333, "angle": -6.11 }
  5123. ],
  5124. "translate": [
  5125. {},
  5126. { "time": 0.3333, "x": 3.49, "y": -4.29 }
  5127. ]
  5128. },
  5129. "1shou3": {
  5130. "rotate": [
  5131. { "angle": -24.71 },
  5132. { "time": 0.3333, "angle": 4.73 }
  5133. ]
  5134. },
  5135. "1shou4": {
  5136. "rotate": [
  5137. { "angle": -22.24 },
  5138. { "time": 0.3333, "angle": -9.13 }
  5139. ]
  5140. },
  5141. "bone_right3": {
  5142. "rotate": [
  5143. {},
  5144. { "time": 0.3333, "angle": -0.18 }
  5145. ],
  5146. "translate": [
  5147. {},
  5148. { "time": 0.1667, "y": -2.34 },
  5149. { "time": 0.2333, "y": -0.47 },
  5150. { "time": 0.3333 }
  5151. ]
  5152. },
  5153. "bone_right4": {
  5154. "rotate": [
  5155. {},
  5156. { "time": 0.3333, "angle": 0.57 }
  5157. ],
  5158. "translate": [
  5159. {},
  5160. { "time": 0.1667, "x": -4.09, "y": 1 },
  5161. { "time": 0.2333, "x": 2.55, "y": -0.62 },
  5162. { "time": 0.3333 }
  5163. ]
  5164. },
  5165. "bone_right5": {
  5166. "rotate": [
  5167. {},
  5168. { "time": 0.3333, "angle": -0.89 }
  5169. ],
  5170. "translate": [
  5171. {},
  5172. { "time": 0.1667, "x": -3.38, "y": -0.13 },
  5173. { "time": 0.2667, "x": 1.52, "y": 0.06 },
  5174. { "time": 0.3333, "x": 1.66, "y": 0.07 }
  5175. ]
  5176. },
  5177. "bone_right6": {
  5178. "rotate": [
  5179. {},
  5180. { "time": 0.1333, "angle": -17.43 },
  5181. { "time": 0.2333, "angle": 18.75 },
  5182. { "time": 0.3333, "angle": 7.4 }
  5183. ]
  5184. },
  5185. "bone_right7": {
  5186. "rotate": [
  5187. {},
  5188. { "time": 0.1333, "angle": -16.79 },
  5189. { "time": 0.2333, "angle": 19.86 },
  5190. { "time": 0.3333, "angle": 8.98 }
  5191. ]
  5192. },
  5193. "bone_right8": {
  5194. "rotate": [
  5195. {},
  5196. { "time": 0.3333, "angle": -5.75 }
  5197. ],
  5198. "scale": [
  5199. {},
  5200. { "time": 0.3333, "x": 0.955 }
  5201. ]
  5202. },
  5203. "bone_right9": {
  5204. "rotate": [
  5205. {},
  5206. { "time": 0.3333, "angle": 7.34 }
  5207. ],
  5208. "scale": [
  5209. {},
  5210. { "time": 0.3333, "x": 0.944 }
  5211. ]
  5212. },
  5213. "1e1": {
  5214. "scale": [
  5215. { "time": 0.1 },
  5216. { "time": 0.1667, "x": 0.302 },
  5217. { "time": 0.2333, "x": 0.994 },
  5218. { "time": 0.3333 }
  5219. ]
  5220. },
  5221. "1e2": {
  5222. "scale": [
  5223. { "time": 0.1 },
  5224. { "time": 0.1667, "x": 0.302 },
  5225. { "time": 0.2333, "x": 0.994 },
  5226. { "time": 0.3333 }
  5227. ]
  5228. },
  5229. "1shou1": {
  5230. "rotate": [
  5231. { "angle": -16.34 },
  5232. { "time": 0.1333, "angle": 9.65 },
  5233. { "time": 0.2, "angle": -10.78 },
  5234. { "time": 0.3333, "angle": -4.14 }
  5235. ]
  5236. },
  5237. "1shou2": {
  5238. "rotate": [
  5239. { "angle": -25.53 },
  5240. { "time": 0.1333, "angle": -3.19, "curve": 0.25, "c3": 0.75 },
  5241. { "time": 0.2667, "angle": -12.51, "curve": 0.25, "c3": 0.75 },
  5242. { "time": 0.3333, "angle": -9.18 }
  5243. ],
  5244. "translate": [
  5245. {},
  5246. { "time": 0.1333, "x": 2.55, "y": 2.2, "curve": 0.25, "c3": 0.75 },
  5247. { "time": 0.2667, "x": 0.41, "y": -1.84 }
  5248. ]
  5249. },
  5250. "1weiba": {
  5251. "rotate": [
  5252. { "angle": -14.14 },
  5253. { "time": 0.1333, "angle": 17.47 },
  5254. { "time": 0.2, "angle": -3.92 },
  5255. { "time": 0.2667, "angle": -13.11 },
  5256. { "time": 0.3333, "angle": -2.99 }
  5257. ]
  5258. }
  5259. }
  5260. }
  5261. }
  5262. }