Mid Air 2.fbx.meta 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223
  1. fileFormatVersion: 2
  2. guid: f7b6954ec8fb0de4cbe60b244d54f758
  3. ModelImporter:
  4. serializedVersion: 18
  5. fileIDToRecycleName:
  6. 100000: //RootNode
  7. 100002: l_hipProxy_geo
  8. 100004: l_kneeProxy_geo
  9. 100006: l_ankleProxy_geo
  10. 100008: l_ballProxy_geo
  11. 100010: LToeBase_End2
  12. 100012: LeftToes
  13. 100014: LeftFoot
  14. 100016: LeftLeg
  15. 100018: LeftUpLeg
  16. 100020: pelvisProxy_geo
  17. 100022: r_hipProxy_geo
  18. 100024: r_kneeProxy_geo
  19. 100026: r_ankleProxy_geo
  20. 100028: r_ballProxy_geo
  21. 100030: LToeBase_End3
  22. 100032: RightToes
  23. 100034: RightFoot
  24. 100036: RightLeg
  25. 100038: RightUpLeg
  26. 100040: spineProxy_geo
  27. 100042: l_clavicleProxy_geo
  28. 100044: l_shourderProxy_geo
  29. 100046: l_erbowProxy_geo
  30. 100048: l_wristProxy_geo
  31. 100050: l_thumbProxy_01_geo
  32. 100052: l_thumbProxy_02_geo
  33. 100054: l_thumbProxy_03_geo
  34. 100056: LeftHandThumb13
  35. 100058: LeftHandThumb3
  36. 100060: LeftHandThumb2
  37. 100062: LeftHandThumb1
  38. 100064: l_indexProxy_01_geo
  39. 100066: l_indexProxy_02_geo
  40. 100068: l_indexProxy_03_geo
  41. 100070: LeftHandIndex13
  42. 100072: LeftHandIndex3
  43. 100074: LeftHandIndex2
  44. 100076: LeftHandIndex1
  45. 100078: l_middleProxy_01_geo
  46. 100080: l_middleProxy_02_geo
  47. 100082: l_middleProxy_03_geo
  48. 100084: LeftHandMiddle13
  49. 100086: LeftHandMiddle3
  50. 100088: LeftHandMiddle2
  51. 100090: LeftHandMiddle1
  52. 100092: l_ringProxy_01_geo
  53. 100094: l_ringProxy_02_geo
  54. 100096: l_ringProxy_03_geo
  55. 100098: LeftHandRing13
  56. 100100: LeftHandRing3
  57. 100102: LeftHandRing2
  58. 100104: LeftHandRing1
  59. 100106: l_pinkyProxy_01_geo
  60. 100108: l_pinkyProxy_02_geo
  61. 100110: l_pinkyProxy_03_geo
  62. 100112: LeftHandPinky13
  63. 100114: LeftHandPinky3
  64. 100116: LeftHandPinky2
  65. 100118: LeftHandPinky1
  66. 100120: LeftHand
  67. 100122: LeftForeArm
  68. 100124: LeftArm
  69. 100126: LeftShoulder
  70. 100128: chestProxy_geo
  71. 100130: r_clavicleProxy_geo
  72. 100132: r_shourderProxy_geo
  73. 100134: r_erbowProxy_geo
  74. 100136: r_wristProxy_geo
  75. 100138: r_thumbProxy_01_geo
  76. 100140: r_thumbProxy_02_geo
  77. 100142: r_thumbProxy_03_geo
  78. 100144: LeftHandThumb17
  79. 100146: RightHandThumb3
  80. 100148: RightHandThumb2
  81. 100150: RightHandThumb1
  82. 100152: r_indexProxy_01_geo
  83. 100154: r_indexProxy_02_geo
  84. 100156: r_indexProxy_03_geo
  85. 100158: LeftHandIndex17
  86. 100160: RightHandIndex3
  87. 100162: RightHandIndex2
  88. 100164: RightHandIndex1
  89. 100166: r_middleProxy_01_geo
  90. 100168: r_middleProxy_02_geo
  91. 100170: r_middleProxy_03_geo
  92. 100172: LeftHandMiddle17
  93. 100174: RightHandMiddle3
  94. 100176: RightHandMiddle2
  95. 100178: RightHandMiddle1
  96. 100180: r_ringProxy_01_geo
  97. 100182: r_ringProxy_02_geo
  98. 100184: r_ringProxy_03_geo
  99. 100186: LeftHandRing17
  100. 100188: RightHandRing3
  101. 100190: RightHandRing2
  102. 100192: RightHandRing1
  103. 100194: r_pinkyProxy_01_geo
  104. 100196: r_pinkyProxy_02_geo
  105. 100198: r_pinkyProxy_03_geo
  106. 100200: LeftHandPinky17
  107. 100202: RightHandPinky3
  108. 100204: RightHandPinky2
  109. 100206: RightHandPinky1
  110. 100208: RightHand
  111. 100210: RightForeArm
  112. 100212: RightArm
  113. 100214: RightShoulder
  114. 100216: neckProxy_geo
  115. 100218: UNI_01_Upper_teethProxy
  116. 100220: headProxy_geo
  117. 100222: RightLipUpper
  118. 100224: RightNostril
  119. 100226: RightCheek
  120. 100228: RightEyelidLower
  121. 100230: RightEyelidUpper
  122. 100232: RightIOuterBrow
  123. 100234: RightInnerBrow
  124. 100236: LeftIOuterBrow
  125. 100238: LeftInnerBrow
  126. 100240: LeftEyelidUpper
  127. 100242: LeftEyelidLower
  128. 100244: LeftCheek
  129. 100246: LeftNostril
  130. 100248: LeftLipUpper
  131. 100250: jawProxy_geo
  132. 100252: UNI_01_Lower_teethProxy
  133. 100254: LeftLipCorner
  134. 100256: RightLipCorner
  135. 100258: RightLipLower
  136. 100260: JawEND
  137. 100262: LeftLipLower
  138. 100264: UNI_01_TongueTipProxy
  139. 100266: TongueTip
  140. 100268: UNI_01_TongueBaseProxy
  141. 100270: TongueBack
  142. 100272: Jaw
  143. 100274: r_UNI_eye
  144. 100276: RightEye
  145. 100278: l_UNI_eye
  146. 100280: LeftEye
  147. 100282: HeadTop_End
  148. 100284: Head
  149. 100286: Neck
  150. 100288: Chest
  151. 100290: Spine
  152. 100292: Hips
  153. 100294: Reference
  154. 400000: //RootNode
  155. 400002: l_hipProxy_geo
  156. 400004: l_kneeProxy_geo
  157. 400006: l_ankleProxy_geo
  158. 400008: l_ballProxy_geo
  159. 400010: LToeBase_End2
  160. 400012: LeftToes
  161. 400014: LeftFoot
  162. 400016: LeftLeg
  163. 400018: LeftUpLeg
  164. 400020: pelvisProxy_geo
  165. 400022: r_hipProxy_geo
  166. 400024: r_kneeProxy_geo
  167. 400026: r_ankleProxy_geo
  168. 400028: r_ballProxy_geo
  169. 400030: LToeBase_End3
  170. 400032: RightToes
  171. 400034: RightFoot
  172. 400036: RightLeg
  173. 400038: RightUpLeg
  174. 400040: spineProxy_geo
  175. 400042: l_clavicleProxy_geo
  176. 400044: l_shourderProxy_geo
  177. 400046: l_erbowProxy_geo
  178. 400048: l_wristProxy_geo
  179. 400050: l_thumbProxy_01_geo
  180. 400052: l_thumbProxy_02_geo
  181. 400054: l_thumbProxy_03_geo
  182. 400056: LeftHandThumb13
  183. 400058: LeftHandThumb3
  184. 400060: LeftHandThumb2
  185. 400062: LeftHandThumb1
  186. 400064: l_indexProxy_01_geo
  187. 400066: l_indexProxy_02_geo
  188. 400068: l_indexProxy_03_geo
  189. 400070: LeftHandIndex13
  190. 400072: LeftHandIndex3
  191. 400074: LeftHandIndex2
  192. 400076: LeftHandIndex1
  193. 400078: l_middleProxy_01_geo
  194. 400080: l_middleProxy_02_geo
  195. 400082: l_middleProxy_03_geo
  196. 400084: LeftHandMiddle13
  197. 400086: LeftHandMiddle3
  198. 400088: LeftHandMiddle2
  199. 400090: LeftHandMiddle1
  200. 400092: l_ringProxy_01_geo
  201. 400094: l_ringProxy_02_geo
  202. 400096: l_ringProxy_03_geo
  203. 400098: LeftHandRing13
  204. 400100: LeftHandRing3
  205. 400102: LeftHandRing2
  206. 400104: LeftHandRing1
  207. 400106: l_pinkyProxy_01_geo
  208. 400108: l_pinkyProxy_02_geo
  209. 400110: l_pinkyProxy_03_geo
  210. 400112: LeftHandPinky13
  211. 400114: LeftHandPinky3
  212. 400116: LeftHandPinky2
  213. 400118: LeftHandPinky1
  214. 400120: LeftHand
  215. 400122: LeftForeArm
  216. 400124: LeftArm
  217. 400126: LeftShoulder
  218. 400128: chestProxy_geo
  219. 400130: r_clavicleProxy_geo
  220. 400132: r_shourderProxy_geo
  221. 400134: r_erbowProxy_geo
  222. 400136: r_wristProxy_geo
  223. 400138: r_thumbProxy_01_geo
  224. 400140: r_thumbProxy_02_geo
  225. 400142: r_thumbProxy_03_geo
  226. 400144: LeftHandThumb17
  227. 400146: RightHandThumb3
  228. 400148: RightHandThumb2
  229. 400150: RightHandThumb1
  230. 400152: r_indexProxy_01_geo
  231. 400154: r_indexProxy_02_geo
  232. 400156: r_indexProxy_03_geo
  233. 400158: LeftHandIndex17
  234. 400160: RightHandIndex3
  235. 400162: RightHandIndex2
  236. 400164: RightHandIndex1
  237. 400166: r_middleProxy_01_geo
  238. 400168: r_middleProxy_02_geo
  239. 400170: r_middleProxy_03_geo
  240. 400172: LeftHandMiddle17
  241. 400174: RightHandMiddle3
  242. 400176: RightHandMiddle2
  243. 400178: RightHandMiddle1
  244. 400180: r_ringProxy_01_geo
  245. 400182: r_ringProxy_02_geo
  246. 400184: r_ringProxy_03_geo
  247. 400186: LeftHandRing17
  248. 400188: RightHandRing3
  249. 400190: RightHandRing2
  250. 400192: RightHandRing1
  251. 400194: r_pinkyProxy_01_geo
  252. 400196: r_pinkyProxy_02_geo
  253. 400198: r_pinkyProxy_03_geo
  254. 400200: LeftHandPinky17
  255. 400202: RightHandPinky3
  256. 400204: RightHandPinky2
  257. 400206: RightHandPinky1
  258. 400208: RightHand
  259. 400210: RightForeArm
  260. 400212: RightArm
  261. 400214: RightShoulder
  262. 400216: neckProxy_geo
  263. 400218: UNI_01_Upper_teethProxy
  264. 400220: headProxy_geo
  265. 400222: RightLipUpper
  266. 400224: RightNostril
  267. 400226: RightCheek
  268. 400228: RightEyelidLower
  269. 400230: RightEyelidUpper
  270. 400232: RightIOuterBrow
  271. 400234: RightInnerBrow
  272. 400236: LeftIOuterBrow
  273. 400238: LeftInnerBrow
  274. 400240: LeftEyelidUpper
  275. 400242: LeftEyelidLower
  276. 400244: LeftCheek
  277. 400246: LeftNostril
  278. 400248: LeftLipUpper
  279. 400250: jawProxy_geo
  280. 400252: UNI_01_Lower_teethProxy
  281. 400254: LeftLipCorner
  282. 400256: RightLipCorner
  283. 400258: RightLipLower
  284. 400260: JawEND
  285. 400262: LeftLipLower
  286. 400264: UNI_01_TongueTipProxy
  287. 400266: TongueTip
  288. 400268: UNI_01_TongueBaseProxy
  289. 400270: TongueBack
  290. 400272: Jaw
  291. 400274: r_UNI_eye
  292. 400276: RightEye
  293. 400278: l_UNI_eye
  294. 400280: LeftEye
  295. 400282: HeadTop_End
  296. 400284: Head
  297. 400286: Neck
  298. 400288: Chest
  299. 400290: Spine
  300. 400292: Hips
  301. 400294: Reference
  302. 2300000: l_hipProxy_geo
  303. 2300002: l_kneeProxy_geo
  304. 2300004: l_ankleProxy_geo
  305. 2300006: l_ballProxy_geo
  306. 2300008: pelvisProxy_geo
  307. 2300010: r_hipProxy_geo
  308. 2300012: r_kneeProxy_geo
  309. 2300014: r_ankleProxy_geo
  310. 2300016: r_ballProxy_geo
  311. 2300018: spineProxy_geo
  312. 2300020: l_clavicleProxy_geo
  313. 2300022: l_shourderProxy_geo
  314. 2300024: l_erbowProxy_geo
  315. 2300026: l_wristProxy_geo
  316. 2300028: l_thumbProxy_01_geo
  317. 2300030: l_thumbProxy_02_geo
  318. 2300032: l_thumbProxy_03_geo
  319. 2300034: l_indexProxy_01_geo
  320. 2300036: l_indexProxy_02_geo
  321. 2300038: l_indexProxy_03_geo
  322. 2300040: l_middleProxy_01_geo
  323. 2300042: l_middleProxy_02_geo
  324. 2300044: l_middleProxy_03_geo
  325. 2300046: l_ringProxy_01_geo
  326. 2300048: l_ringProxy_02_geo
  327. 2300050: l_ringProxy_03_geo
  328. 2300052: l_pinkyProxy_01_geo
  329. 2300054: l_pinkyProxy_02_geo
  330. 2300056: l_pinkyProxy_03_geo
  331. 2300058: chestProxy_geo
  332. 2300060: r_clavicleProxy_geo
  333. 2300062: r_shourderProxy_geo
  334. 2300064: r_erbowProxy_geo
  335. 2300066: r_wristProxy_geo
  336. 2300068: r_thumbProxy_01_geo
  337. 2300070: r_thumbProxy_02_geo
  338. 2300072: r_thumbProxy_03_geo
  339. 2300074: r_indexProxy_01_geo
  340. 2300076: r_indexProxy_02_geo
  341. 2300078: r_indexProxy_03_geo
  342. 2300080: r_middleProxy_01_geo
  343. 2300082: r_middleProxy_02_geo
  344. 2300084: r_middleProxy_03_geo
  345. 2300086: r_ringProxy_01_geo
  346. 2300088: r_ringProxy_02_geo
  347. 2300090: r_ringProxy_03_geo
  348. 2300092: r_pinkyProxy_01_geo
  349. 2300094: r_pinkyProxy_02_geo
  350. 2300096: r_pinkyProxy_03_geo
  351. 2300098: neckProxy_geo
  352. 2300100: UNI_01_Upper_teethProxy
  353. 2300102: headProxy_geo
  354. 2300104: jawProxy_geo
  355. 2300106: UNI_01_Lower_teethProxy
  356. 2300108: UNI_01_TongueTipProxy
  357. 2300110: UNI_01_TongueBaseProxy
  358. 2300112: r_UNI_eye
  359. 2300114: l_UNI_eye
  360. 3300000: l_hipProxy_geo
  361. 3300002: l_kneeProxy_geo
  362. 3300004: l_ankleProxy_geo
  363. 3300006: l_ballProxy_geo
  364. 3300008: pelvisProxy_geo
  365. 3300010: r_hipProxy_geo
  366. 3300012: r_kneeProxy_geo
  367. 3300014: r_ankleProxy_geo
  368. 3300016: r_ballProxy_geo
  369. 3300018: spineProxy_geo
  370. 3300020: l_clavicleProxy_geo
  371. 3300022: l_shourderProxy_geo
  372. 3300024: l_erbowProxy_geo
  373. 3300026: l_wristProxy_geo
  374. 3300028: l_thumbProxy_01_geo
  375. 3300030: l_thumbProxy_02_geo
  376. 3300032: l_thumbProxy_03_geo
  377. 3300034: l_indexProxy_01_geo
  378. 3300036: l_indexProxy_02_geo
  379. 3300038: l_indexProxy_03_geo
  380. 3300040: l_middleProxy_01_geo
  381. 3300042: l_middleProxy_02_geo
  382. 3300044: l_middleProxy_03_geo
  383. 3300046: l_ringProxy_01_geo
  384. 3300048: l_ringProxy_02_geo
  385. 3300050: l_ringProxy_03_geo
  386. 3300052: l_pinkyProxy_01_geo
  387. 3300054: l_pinkyProxy_02_geo
  388. 3300056: l_pinkyProxy_03_geo
  389. 3300058: chestProxy_geo
  390. 3300060: r_clavicleProxy_geo
  391. 3300062: r_shourderProxy_geo
  392. 3300064: r_erbowProxy_geo
  393. 3300066: r_wristProxy_geo
  394. 3300068: r_thumbProxy_01_geo
  395. 3300070: r_thumbProxy_02_geo
  396. 3300072: r_thumbProxy_03_geo
  397. 3300074: r_indexProxy_01_geo
  398. 3300076: r_indexProxy_02_geo
  399. 3300078: r_indexProxy_03_geo
  400. 3300080: r_middleProxy_01_geo
  401. 3300082: r_middleProxy_02_geo
  402. 3300084: r_middleProxy_03_geo
  403. 3300086: r_ringProxy_01_geo
  404. 3300088: r_ringProxy_02_geo
  405. 3300090: r_ringProxy_03_geo
  406. 3300092: r_pinkyProxy_01_geo
  407. 3300094: r_pinkyProxy_02_geo
  408. 3300096: r_pinkyProxy_03_geo
  409. 3300098: neckProxy_geo
  410. 3300100: UNI_01_Upper_teethProxy
  411. 3300102: headProxy_geo
  412. 3300104: jawProxy_geo
  413. 3300106: UNI_01_Lower_teethProxy
  414. 3300108: UNI_01_TongueTipProxy
  415. 3300110: UNI_01_TongueBaseProxy
  416. 3300112: r_UNI_eye
  417. 3300114: l_UNI_eye
  418. 4300000: l_UNI_eye
  419. 4300002: r_UNI_eye
  420. 4300004: UNI_01_TongueBaseProxy
  421. 4300006: UNI_01_TongueTipProxy
  422. 4300008: UNI_01_Lower_teethProxy
  423. 4300010: jawProxy_geo
  424. 4300012: headProxy_geo
  425. 4300014: UNI_01_Upper_teethProxy
  426. 4300016: neckProxy_geo
  427. 4300018: r_pinkyProxy_03_geo
  428. 4300020: r_pinkyProxy_02_geo
  429. 4300022: r_pinkyProxy_01_geo
  430. 4300024: r_ringProxy_03_geo
  431. 4300026: r_ringProxy_02_geo
  432. 4300028: r_ringProxy_01_geo
  433. 4300030: r_middleProxy_03_geo
  434. 4300032: r_middleProxy_02_geo
  435. 4300034: r_middleProxy_01_geo
  436. 4300036: r_indexProxy_03_geo
  437. 4300038: r_indexProxy_02_geo
  438. 4300040: r_indexProxy_01_geo
  439. 4300042: r_thumbProxy_03_geo
  440. 4300044: r_thumbProxy_02_geo
  441. 4300046: r_thumbProxy_01_geo
  442. 4300048: r_wristProxy_geo
  443. 4300050: r_erbowProxy_geo
  444. 4300052: r_shourderProxy_geo
  445. 4300054: r_clavicleProxy_geo
  446. 4300056: chestProxy_geo
  447. 4300058: l_pinkyProxy_03_geo
  448. 4300060: l_pinkyProxy_02_geo
  449. 4300062: l_pinkyProxy_01_geo
  450. 4300064: l_ringProxy_03_geo
  451. 4300066: l_ringProxy_02_geo
  452. 4300068: l_ringProxy_01_geo
  453. 4300070: l_middleProxy_03_geo
  454. 4300072: l_middleProxy_02_geo
  455. 4300074: l_middleProxy_01_geo
  456. 4300076: l_indexProxy_03_geo
  457. 4300078: l_indexProxy_02_geo
  458. 4300080: l_indexProxy_01_geo
  459. 4300082: l_thumbProxy_03_geo
  460. 4300084: l_thumbProxy_02_geo
  461. 4300086: l_thumbProxy_01_geo
  462. 4300088: l_wristProxy_geo
  463. 4300090: l_erbowProxy_geo
  464. 4300092: l_shourderProxy_geo
  465. 4300094: l_clavicleProxy_geo
  466. 4300096: spineProxy_geo
  467. 4300098: r_ballProxy_geo
  468. 4300100: r_ankleProxy_geo
  469. 4300102: r_kneeProxy_geo
  470. 4300104: r_hipProxy_geo
  471. 4300106: pelvisProxy_geo
  472. 4300108: l_ballProxy_geo
  473. 4300110: l_ankleProxy_geo
  474. 4300112: l_kneeProxy_geo
  475. 4300114: l_hipProxy_geo
  476. 7400000: __preview___207_Idle_JumpUpMedium_NoHands1Step_Idle
  477. 7400002: _207_Idle_JumpUpMedium_NoHands1Step_Idle
  478. 7400004: Fall
  479. 7400006: Jump Up
  480. 7400008: Mid Air
  481. 9500000: //RootNode
  482. 11100000: //RootNode
  483. materials:
  484. importMaterials: 0
  485. materialName: 1
  486. materialSearch: 2
  487. animations:
  488. legacyGenerateAnimations: 3
  489. bakeSimulation: 0
  490. optimizeGameObjects: 0
  491. motionNodeName:
  492. animationImportErrors:
  493. animationImportWarnings:
  494. animationRetargetingWarnings:
  495. animationDoRetargetingWarnings: 0
  496. animationCompression: 1
  497. animationRotationError: .5
  498. animationPositionError: .5
  499. animationScaleError: .5
  500. animationWrapMode: 0
  501. extraExposedTransformPaths: []
  502. clipAnimations:
  503. - serializedVersion: 16
  504. name: Fall
  505. takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle
  506. firstFrame: 127
  507. lastFrame: 129
  508. wrapMode: 0
  509. orientationOffsetY: 0
  510. level: 0
  511. cycleOffset: 0
  512. loop: 0
  513. loopTime: 1
  514. loopBlend: 1
  515. loopBlendOrientation: 0
  516. loopBlendPositionY: 1
  517. loopBlendPositionXZ: 0
  518. keepOriginalOrientation: 0
  519. keepOriginalPositionY: 0
  520. keepOriginalPositionXZ: 0
  521. heightFromFeet: 1
  522. mirror: 0
  523. bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
  524. curves: []
  525. events: []
  526. transformMask:
  527. - path:
  528. weight: 1
  529. - path: Reference
  530. weight: 1
  531. - path: Reference/Hips
  532. weight: 1
  533. - path: Reference/Hips/LeftUpLeg
  534. weight: 1
  535. - path: Reference/Hips/LeftUpLeg/l_hipProxy_geo
  536. weight: 0
  537. - path: Reference/Hips/LeftUpLeg/LeftLeg
  538. weight: 1
  539. - path: Reference/Hips/LeftUpLeg/LeftLeg/l_kneeProxy_geo
  540. weight: 0
  541. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot
  542. weight: 1
  543. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/l_ankleProxy_geo
  544. weight: 0
  545. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
  546. weight: 1
  547. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/l_ballProxy_geo
  548. weight: 0
  549. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/LToeBase_End2
  550. weight: 0
  551. - path: Reference/Hips/pelvisProxy_geo
  552. weight: 0
  553. - path: Reference/Hips/RightUpLeg
  554. weight: 1
  555. - path: Reference/Hips/RightUpLeg/r_hipProxy_geo
  556. weight: 0
  557. - path: Reference/Hips/RightUpLeg/RightLeg
  558. weight: 1
  559. - path: Reference/Hips/RightUpLeg/RightLeg/r_kneeProxy_geo
  560. weight: 0
  561. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot
  562. weight: 1
  563. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/r_ankleProxy_geo
  564. weight: 0
  565. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
  566. weight: 1
  567. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/LToeBase_End3
  568. weight: 0
  569. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/r_ballProxy_geo
  570. weight: 0
  571. - path: Reference/Hips/Spine
  572. weight: 1
  573. - path: Reference/Hips/Spine/Chest
  574. weight: 1
  575. - path: Reference/Hips/Spine/Chest/chestProxy_geo
  576. weight: 0
  577. - path: Reference/Hips/Spine/Chest/LeftShoulder
  578. weight: 1
  579. - path: Reference/Hips/Spine/Chest/LeftShoulder/l_clavicleProxy_geo
  580. weight: 0
  581. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm
  582. weight: 1
  583. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/l_shourderProxy_geo
  584. weight: 0
  585. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
  586. weight: 1
  587. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/l_erbowProxy_geo
  588. weight: 0
  589. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
  590. weight: 1
  591. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/l_wristProxy_geo
  592. weight: 0
  593. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
  594. weight: 1
  595. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/l_indexProxy_01_geo
  596. weight: 0
  597. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
  598. weight: 1
  599. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/l_indexProxy_02_geo
  600. weight: 0
  601. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
  602. weight: 1
  603. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/l_indexProxy_03_geo
  604. weight: 0
  605. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex13
  606. weight: 0
  607. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
  608. weight: 1
  609. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/l_middleProxy_01_geo
  610. weight: 0
  611. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
  612. weight: 1
  613. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/l_middleProxy_02_geo
  614. weight: 0
  615. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
  616. weight: 1
  617. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/l_middleProxy_03_geo
  618. weight: 0
  619. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle13
  620. weight: 0
  621. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
  622. weight: 1
  623. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/l_pinkyProxy_01_geo
  624. weight: 0
  625. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
  626. weight: 1
  627. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/l_pinkyProxy_02_geo
  628. weight: 0
  629. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
  630. weight: 1
  631. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/l_pinkyProxy_03_geo
  632. weight: 0
  633. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky13
  634. weight: 0
  635. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
  636. weight: 1
  637. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/l_ringProxy_01_geo
  638. weight: 0
  639. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
  640. weight: 1
  641. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/l_ringProxy_02_geo
  642. weight: 0
  643. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
  644. weight: 1
  645. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/l_ringProxy_03_geo
  646. weight: 0
  647. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing13
  648. weight: 0
  649. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
  650. weight: 1
  651. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/l_thumbProxy_01_geo
  652. weight: 0
  653. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
  654. weight: 1
  655. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/l_thumbProxy_02_geo
  656. weight: 0
  657. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
  658. weight: 1
  659. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/l_thumbProxy_03_geo
  660. weight: 0
  661. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb13
  662. weight: 0
  663. - path: Reference/Hips/Spine/Chest/Neck
  664. weight: 1
  665. - path: Reference/Hips/Spine/Chest/Neck/Head
  666. weight: 1
  667. - path: Reference/Hips/Spine/Chest/Neck/Head/headProxy_geo
  668. weight: 0
  669. - path: Reference/Hips/Spine/Chest/Neck/Head/HeadTop_End
  670. weight: 0
  671. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw
  672. weight: 1
  673. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
  674. weight: 0
  675. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/jawProxy_geo
  676. weight: 0
  677. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
  678. weight: 0
  679. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
  680. weight: 0
  681. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
  682. weight: 0
  683. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
  684. weight: 0
  685. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
  686. weight: 0
  687. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/UNI_01_TongueBaseProxy
  688. weight: 0
  689. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
  690. weight: 0
  691. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip/UNI_01_TongueTipProxy
  692. weight: 0
  693. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/UNI_01_Lower_teethProxy
  694. weight: 0
  695. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek
  696. weight: 0
  697. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye
  698. weight: 1
  699. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/l_UNI_eye
  700. weight: 0
  701. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
  702. weight: 0
  703. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
  704. weight: 0
  705. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
  706. weight: 0
  707. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
  708. weight: 0
  709. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper
  710. weight: 0
  711. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril
  712. weight: 0
  713. - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek
  714. weight: 0
  715. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye
  716. weight: 1
  717. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/r_UNI_eye
  718. weight: 0
  719. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower
  720. weight: 0
  721. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
  722. weight: 0
  723. - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow
  724. weight: 0
  725. - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
  726. weight: 0
  727. - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper
  728. weight: 0
  729. - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril
  730. weight: 0
  731. - path: Reference/Hips/Spine/Chest/Neck/Head/UNI_01_Upper_teethProxy
  732. weight: 0
  733. - path: Reference/Hips/Spine/Chest/Neck/neckProxy_geo
  734. weight: 0
  735. - path: Reference/Hips/Spine/Chest/RightShoulder
  736. weight: 1
  737. - path: Reference/Hips/Spine/Chest/RightShoulder/r_clavicleProxy_geo
  738. weight: 0
  739. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm
  740. weight: 1
  741. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/r_shourderProxy_geo
  742. weight: 0
  743. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
  744. weight: 1
  745. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/r_erbowProxy_geo
  746. weight: 0
  747. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
  748. weight: 1
  749. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/r_wristProxy_geo
  750. weight: 0
  751. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
  752. weight: 1
  753. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/r_indexProxy_01_geo
  754. weight: 0
  755. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
  756. weight: 1
  757. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/r_indexProxy_02_geo
  758. weight: 0
  759. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
  760. weight: 1
  761. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/LeftHandIndex17
  762. weight: 0
  763. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/r_indexProxy_03_geo
  764. weight: 0
  765. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
  766. weight: 1
  767. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/r_middleProxy_01_geo
  768. weight: 0
  769. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
  770. weight: 1
  771. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/r_middleProxy_02_geo
  772. weight: 0
  773. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
  774. weight: 1
  775. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/LeftHandMiddle17
  776. weight: 0
  777. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/r_middleProxy_03_geo
  778. weight: 0
  779. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
  780. weight: 1
  781. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/r_pinkyProxy_01_geo
  782. weight: 0
  783. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
  784. weight: 1
  785. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/r_pinkyProxy_02_geo
  786. weight: 0
  787. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
  788. weight: 1
  789. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/LeftHandPinky17
  790. weight: 0
  791. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/r_pinkyProxy_03_geo
  792. weight: 0
  793. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
  794. weight: 1
  795. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/r_ringProxy_01_geo
  796. weight: 0
  797. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
  798. weight: 1
  799. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/r_ringProxy_02_geo
  800. weight: 0
  801. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
  802. weight: 1
  803. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/LeftHandRing17
  804. weight: 0
  805. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/r_ringProxy_03_geo
  806. weight: 0
  807. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
  808. weight: 1
  809. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/r_thumbProxy_01_geo
  810. weight: 0
  811. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
  812. weight: 1
  813. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/r_thumbProxy_02_geo
  814. weight: 0
  815. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
  816. weight: 1
  817. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/LeftHandThumb17
  818. weight: 0
  819. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/r_thumbProxy_03_geo
  820. weight: 0
  821. - path: Reference/Hips/Spine/spineProxy_geo
  822. weight: 0
  823. maskType: 0
  824. maskSource: {instanceID: 0}
  825. - serializedVersion: 16
  826. name: Jump Up
  827. takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle
  828. firstFrame: 125
  829. lastFrame: 127
  830. wrapMode: 0
  831. orientationOffsetY: 0
  832. level: 0
  833. cycleOffset: 0
  834. loop: 0
  835. loopTime: 1
  836. loopBlend: 1
  837. loopBlendOrientation: 0
  838. loopBlendPositionY: 1
  839. loopBlendPositionXZ: 0
  840. keepOriginalOrientation: 0
  841. keepOriginalPositionY: 1
  842. keepOriginalPositionXZ: 0
  843. heightFromFeet: 0
  844. mirror: 0
  845. bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
  846. curves: []
  847. events: []
  848. transformMask:
  849. - path:
  850. weight: 1
  851. - path: Reference
  852. weight: 1
  853. - path: Reference/Hips
  854. weight: 1
  855. - path: Reference/Hips/LeftUpLeg
  856. weight: 1
  857. - path: Reference/Hips/LeftUpLeg/l_hipProxy_geo
  858. weight: 0
  859. - path: Reference/Hips/LeftUpLeg/LeftLeg
  860. weight: 1
  861. - path: Reference/Hips/LeftUpLeg/LeftLeg/l_kneeProxy_geo
  862. weight: 0
  863. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot
  864. weight: 1
  865. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/l_ankleProxy_geo
  866. weight: 0
  867. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
  868. weight: 1
  869. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/l_ballProxy_geo
  870. weight: 0
  871. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/LToeBase_End2
  872. weight: 0
  873. - path: Reference/Hips/pelvisProxy_geo
  874. weight: 0
  875. - path: Reference/Hips/RightUpLeg
  876. weight: 1
  877. - path: Reference/Hips/RightUpLeg/r_hipProxy_geo
  878. weight: 0
  879. - path: Reference/Hips/RightUpLeg/RightLeg
  880. weight: 1
  881. - path: Reference/Hips/RightUpLeg/RightLeg/r_kneeProxy_geo
  882. weight: 0
  883. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot
  884. weight: 1
  885. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/r_ankleProxy_geo
  886. weight: 0
  887. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
  888. weight: 1
  889. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/LToeBase_End3
  890. weight: 0
  891. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/r_ballProxy_geo
  892. weight: 0
  893. - path: Reference/Hips/Spine
  894. weight: 1
  895. - path: Reference/Hips/Spine/Chest
  896. weight: 1
  897. - path: Reference/Hips/Spine/Chest/chestProxy_geo
  898. weight: 0
  899. - path: Reference/Hips/Spine/Chest/LeftShoulder
  900. weight: 1
  901. - path: Reference/Hips/Spine/Chest/LeftShoulder/l_clavicleProxy_geo
  902. weight: 0
  903. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm
  904. weight: 1
  905. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/l_shourderProxy_geo
  906. weight: 0
  907. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
  908. weight: 1
  909. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/l_erbowProxy_geo
  910. weight: 0
  911. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
  912. weight: 1
  913. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/l_wristProxy_geo
  914. weight: 0
  915. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
  916. weight: 1
  917. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/l_indexProxy_01_geo
  918. weight: 0
  919. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
  920. weight: 1
  921. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/l_indexProxy_02_geo
  922. weight: 0
  923. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
  924. weight: 1
  925. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/l_indexProxy_03_geo
  926. weight: 0
  927. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex13
  928. weight: 0
  929. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
  930. weight: 1
  931. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/l_middleProxy_01_geo
  932. weight: 0
  933. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
  934. weight: 1
  935. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/l_middleProxy_02_geo
  936. weight: 0
  937. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
  938. weight: 1
  939. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/l_middleProxy_03_geo
  940. weight: 0
  941. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle13
  942. weight: 0
  943. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
  944. weight: 1
  945. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/l_pinkyProxy_01_geo
  946. weight: 0
  947. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
  948. weight: 1
  949. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/l_pinkyProxy_02_geo
  950. weight: 0
  951. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
  952. weight: 1
  953. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/l_pinkyProxy_03_geo
  954. weight: 0
  955. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky13
  956. weight: 0
  957. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
  958. weight: 1
  959. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/l_ringProxy_01_geo
  960. weight: 0
  961. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
  962. weight: 1
  963. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/l_ringProxy_02_geo
  964. weight: 0
  965. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
  966. weight: 1
  967. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/l_ringProxy_03_geo
  968. weight: 0
  969. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing13
  970. weight: 0
  971. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
  972. weight: 1
  973. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/l_thumbProxy_01_geo
  974. weight: 0
  975. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
  976. weight: 1
  977. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/l_thumbProxy_02_geo
  978. weight: 0
  979. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
  980. weight: 1
  981. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/l_thumbProxy_03_geo
  982. weight: 0
  983. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb13
  984. weight: 0
  985. - path: Reference/Hips/Spine/Chest/Neck
  986. weight: 1
  987. - path: Reference/Hips/Spine/Chest/Neck/Head
  988. weight: 1
  989. - path: Reference/Hips/Spine/Chest/Neck/Head/headProxy_geo
  990. weight: 0
  991. - path: Reference/Hips/Spine/Chest/Neck/Head/HeadTop_End
  992. weight: 0
  993. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw
  994. weight: 1
  995. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
  996. weight: 0
  997. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/jawProxy_geo
  998. weight: 0
  999. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
  1000. weight: 0
  1001. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
  1002. weight: 0
  1003. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
  1004. weight: 0
  1005. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
  1006. weight: 0
  1007. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
  1008. weight: 0
  1009. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/UNI_01_TongueBaseProxy
  1010. weight: 0
  1011. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
  1012. weight: 0
  1013. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip/UNI_01_TongueTipProxy
  1014. weight: 0
  1015. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/UNI_01_Lower_teethProxy
  1016. weight: 0
  1017. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek
  1018. weight: 0
  1019. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye
  1020. weight: 1
  1021. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/l_UNI_eye
  1022. weight: 0
  1023. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
  1024. weight: 0
  1025. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
  1026. weight: 0
  1027. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
  1028. weight: 0
  1029. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
  1030. weight: 0
  1031. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper
  1032. weight: 0
  1033. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril
  1034. weight: 0
  1035. - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek
  1036. weight: 0
  1037. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye
  1038. weight: 1
  1039. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/r_UNI_eye
  1040. weight: 0
  1041. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower
  1042. weight: 0
  1043. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
  1044. weight: 0
  1045. - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow
  1046. weight: 0
  1047. - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
  1048. weight: 0
  1049. - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper
  1050. weight: 0
  1051. - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril
  1052. weight: 0
  1053. - path: Reference/Hips/Spine/Chest/Neck/Head/UNI_01_Upper_teethProxy
  1054. weight: 0
  1055. - path: Reference/Hips/Spine/Chest/Neck/neckProxy_geo
  1056. weight: 0
  1057. - path: Reference/Hips/Spine/Chest/RightShoulder
  1058. weight: 1
  1059. - path: Reference/Hips/Spine/Chest/RightShoulder/r_clavicleProxy_geo
  1060. weight: 0
  1061. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm
  1062. weight: 1
  1063. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/r_shourderProxy_geo
  1064. weight: 0
  1065. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
  1066. weight: 1
  1067. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/r_erbowProxy_geo
  1068. weight: 0
  1069. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
  1070. weight: 1
  1071. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/r_wristProxy_geo
  1072. weight: 0
  1073. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
  1074. weight: 1
  1075. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/r_indexProxy_01_geo
  1076. weight: 0
  1077. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
  1078. weight: 1
  1079. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/r_indexProxy_02_geo
  1080. weight: 0
  1081. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
  1082. weight: 1
  1083. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/LeftHandIndex17
  1084. weight: 0
  1085. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/r_indexProxy_03_geo
  1086. weight: 0
  1087. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
  1088. weight: 1
  1089. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/r_middleProxy_01_geo
  1090. weight: 0
  1091. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
  1092. weight: 1
  1093. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/r_middleProxy_02_geo
  1094. weight: 0
  1095. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
  1096. weight: 1
  1097. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/LeftHandMiddle17
  1098. weight: 0
  1099. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/r_middleProxy_03_geo
  1100. weight: 0
  1101. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
  1102. weight: 1
  1103. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/r_pinkyProxy_01_geo
  1104. weight: 0
  1105. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
  1106. weight: 1
  1107. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/r_pinkyProxy_02_geo
  1108. weight: 0
  1109. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
  1110. weight: 1
  1111. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/LeftHandPinky17
  1112. weight: 0
  1113. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/r_pinkyProxy_03_geo
  1114. weight: 0
  1115. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
  1116. weight: 1
  1117. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/r_ringProxy_01_geo
  1118. weight: 0
  1119. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
  1120. weight: 1
  1121. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/r_ringProxy_02_geo
  1122. weight: 0
  1123. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
  1124. weight: 1
  1125. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/LeftHandRing17
  1126. weight: 0
  1127. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/r_ringProxy_03_geo
  1128. weight: 0
  1129. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
  1130. weight: 1
  1131. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/r_thumbProxy_01_geo
  1132. weight: 0
  1133. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
  1134. weight: 1
  1135. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/r_thumbProxy_02_geo
  1136. weight: 0
  1137. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
  1138. weight: 1
  1139. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/LeftHandThumb17
  1140. weight: 0
  1141. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/r_thumbProxy_03_geo
  1142. weight: 0
  1143. - path: Reference/Hips/Spine/spineProxy_geo
  1144. weight: 0
  1145. maskType: 0
  1146. maskSource: {instanceID: 0}
  1147. - serializedVersion: 16
  1148. name: Mid Air
  1149. takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle
  1150. firstFrame: 131
  1151. lastFrame: 133
  1152. wrapMode: 0
  1153. orientationOffsetY: 0
  1154. level: 0
  1155. cycleOffset: 0
  1156. loop: 0
  1157. loopTime: 1
  1158. loopBlend: 1
  1159. loopBlendOrientation: 0
  1160. loopBlendPositionY: 1
  1161. loopBlendPositionXZ: 0
  1162. keepOriginalOrientation: 0
  1163. keepOriginalPositionY: 1
  1164. keepOriginalPositionXZ: 0
  1165. heightFromFeet: 0
  1166. mirror: 0
  1167. bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
  1168. curves: []
  1169. events: []
  1170. transformMask:
  1171. - path:
  1172. weight: 1
  1173. - path: Reference
  1174. weight: 1
  1175. - path: Reference/Hips
  1176. weight: 1
  1177. - path: Reference/Hips/LeftUpLeg
  1178. weight: 1
  1179. - path: Reference/Hips/LeftUpLeg/l_hipProxy_geo
  1180. weight: 0
  1181. - path: Reference/Hips/LeftUpLeg/LeftLeg
  1182. weight: 1
  1183. - path: Reference/Hips/LeftUpLeg/LeftLeg/l_kneeProxy_geo
  1184. weight: 0
  1185. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot
  1186. weight: 1
  1187. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/l_ankleProxy_geo
  1188. weight: 0
  1189. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
  1190. weight: 1
  1191. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/l_ballProxy_geo
  1192. weight: 0
  1193. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/LToeBase_End2
  1194. weight: 0
  1195. - path: Reference/Hips/pelvisProxy_geo
  1196. weight: 0
  1197. - path: Reference/Hips/RightUpLeg
  1198. weight: 1
  1199. - path: Reference/Hips/RightUpLeg/r_hipProxy_geo
  1200. weight: 0
  1201. - path: Reference/Hips/RightUpLeg/RightLeg
  1202. weight: 1
  1203. - path: Reference/Hips/RightUpLeg/RightLeg/r_kneeProxy_geo
  1204. weight: 0
  1205. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot
  1206. weight: 1
  1207. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/r_ankleProxy_geo
  1208. weight: 0
  1209. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
  1210. weight: 1
  1211. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/LToeBase_End3
  1212. weight: 0
  1213. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/r_ballProxy_geo
  1214. weight: 0
  1215. - path: Reference/Hips/Spine
  1216. weight: 1
  1217. - path: Reference/Hips/Spine/Chest
  1218. weight: 1
  1219. - path: Reference/Hips/Spine/Chest/chestProxy_geo
  1220. weight: 0
  1221. - path: Reference/Hips/Spine/Chest/LeftShoulder
  1222. weight: 1
  1223. - path: Reference/Hips/Spine/Chest/LeftShoulder/l_clavicleProxy_geo
  1224. weight: 0
  1225. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm
  1226. weight: 1
  1227. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/l_shourderProxy_geo
  1228. weight: 0
  1229. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
  1230. weight: 1
  1231. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/l_erbowProxy_geo
  1232. weight: 0
  1233. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
  1234. weight: 1
  1235. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/l_wristProxy_geo
  1236. weight: 0
  1237. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
  1238. weight: 1
  1239. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/l_indexProxy_01_geo
  1240. weight: 0
  1241. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
  1242. weight: 1
  1243. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/l_indexProxy_02_geo
  1244. weight: 0
  1245. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
  1246. weight: 1
  1247. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/l_indexProxy_03_geo
  1248. weight: 0
  1249. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex13
  1250. weight: 0
  1251. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
  1252. weight: 1
  1253. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/l_middleProxy_01_geo
  1254. weight: 0
  1255. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
  1256. weight: 1
  1257. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/l_middleProxy_02_geo
  1258. weight: 0
  1259. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
  1260. weight: 1
  1261. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/l_middleProxy_03_geo
  1262. weight: 0
  1263. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle13
  1264. weight: 0
  1265. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
  1266. weight: 1
  1267. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/l_pinkyProxy_01_geo
  1268. weight: 0
  1269. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
  1270. weight: 1
  1271. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/l_pinkyProxy_02_geo
  1272. weight: 0
  1273. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
  1274. weight: 1
  1275. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/l_pinkyProxy_03_geo
  1276. weight: 0
  1277. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky13
  1278. weight: 0
  1279. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
  1280. weight: 1
  1281. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/l_ringProxy_01_geo
  1282. weight: 0
  1283. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
  1284. weight: 1
  1285. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/l_ringProxy_02_geo
  1286. weight: 0
  1287. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
  1288. weight: 1
  1289. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/l_ringProxy_03_geo
  1290. weight: 0
  1291. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing13
  1292. weight: 0
  1293. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
  1294. weight: 1
  1295. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/l_thumbProxy_01_geo
  1296. weight: 0
  1297. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
  1298. weight: 1
  1299. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/l_thumbProxy_02_geo
  1300. weight: 0
  1301. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
  1302. weight: 1
  1303. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/l_thumbProxy_03_geo
  1304. weight: 0
  1305. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb13
  1306. weight: 0
  1307. - path: Reference/Hips/Spine/Chest/Neck
  1308. weight: 1
  1309. - path: Reference/Hips/Spine/Chest/Neck/Head
  1310. weight: 1
  1311. - path: Reference/Hips/Spine/Chest/Neck/Head/headProxy_geo
  1312. weight: 0
  1313. - path: Reference/Hips/Spine/Chest/Neck/Head/HeadTop_End
  1314. weight: 0
  1315. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw
  1316. weight: 1
  1317. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
  1318. weight: 0
  1319. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/jawProxy_geo
  1320. weight: 0
  1321. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
  1322. weight: 0
  1323. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
  1324. weight: 0
  1325. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
  1326. weight: 0
  1327. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
  1328. weight: 0
  1329. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
  1330. weight: 0
  1331. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/UNI_01_TongueBaseProxy
  1332. weight: 0
  1333. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
  1334. weight: 0
  1335. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip/UNI_01_TongueTipProxy
  1336. weight: 0
  1337. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/UNI_01_Lower_teethProxy
  1338. weight: 0
  1339. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek
  1340. weight: 0
  1341. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye
  1342. weight: 1
  1343. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/l_UNI_eye
  1344. weight: 0
  1345. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
  1346. weight: 0
  1347. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
  1348. weight: 0
  1349. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
  1350. weight: 0
  1351. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
  1352. weight: 0
  1353. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper
  1354. weight: 0
  1355. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril
  1356. weight: 0
  1357. - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek
  1358. weight: 0
  1359. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye
  1360. weight: 1
  1361. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/r_UNI_eye
  1362. weight: 0
  1363. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower
  1364. weight: 0
  1365. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
  1366. weight: 0
  1367. - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow
  1368. weight: 0
  1369. - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
  1370. weight: 0
  1371. - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper
  1372. weight: 0
  1373. - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril
  1374. weight: 0
  1375. - path: Reference/Hips/Spine/Chest/Neck/Head/UNI_01_Upper_teethProxy
  1376. weight: 0
  1377. - path: Reference/Hips/Spine/Chest/Neck/neckProxy_geo
  1378. weight: 0
  1379. - path: Reference/Hips/Spine/Chest/RightShoulder
  1380. weight: 1
  1381. - path: Reference/Hips/Spine/Chest/RightShoulder/r_clavicleProxy_geo
  1382. weight: 0
  1383. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm
  1384. weight: 1
  1385. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/r_shourderProxy_geo
  1386. weight: 0
  1387. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
  1388. weight: 1
  1389. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/r_erbowProxy_geo
  1390. weight: 0
  1391. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
  1392. weight: 1
  1393. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/r_wristProxy_geo
  1394. weight: 0
  1395. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
  1396. weight: 1
  1397. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/r_indexProxy_01_geo
  1398. weight: 0
  1399. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
  1400. weight: 1
  1401. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/r_indexProxy_02_geo
  1402. weight: 0
  1403. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
  1404. weight: 1
  1405. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/LeftHandIndex17
  1406. weight: 0
  1407. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/r_indexProxy_03_geo
  1408. weight: 0
  1409. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
  1410. weight: 1
  1411. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/r_middleProxy_01_geo
  1412. weight: 0
  1413. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
  1414. weight: 1
  1415. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/r_middleProxy_02_geo
  1416. weight: 0
  1417. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
  1418. weight: 1
  1419. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/LeftHandMiddle17
  1420. weight: 0
  1421. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/r_middleProxy_03_geo
  1422. weight: 0
  1423. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
  1424. weight: 1
  1425. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/r_pinkyProxy_01_geo
  1426. weight: 0
  1427. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
  1428. weight: 1
  1429. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/r_pinkyProxy_02_geo
  1430. weight: 0
  1431. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
  1432. weight: 1
  1433. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/LeftHandPinky17
  1434. weight: 0
  1435. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/r_pinkyProxy_03_geo
  1436. weight: 0
  1437. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
  1438. weight: 1
  1439. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/r_ringProxy_01_geo
  1440. weight: 0
  1441. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
  1442. weight: 1
  1443. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/r_ringProxy_02_geo
  1444. weight: 0
  1445. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
  1446. weight: 1
  1447. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/LeftHandRing17
  1448. weight: 0
  1449. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/r_ringProxy_03_geo
  1450. weight: 0
  1451. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
  1452. weight: 1
  1453. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/r_thumbProxy_01_geo
  1454. weight: 0
  1455. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
  1456. weight: 1
  1457. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/r_thumbProxy_02_geo
  1458. weight: 0
  1459. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
  1460. weight: 1
  1461. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/LeftHandThumb17
  1462. weight: 0
  1463. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/r_thumbProxy_03_geo
  1464. weight: 0
  1465. - path: Reference/Hips/Spine/spineProxy_geo
  1466. weight: 0
  1467. maskType: 0
  1468. maskSource: {instanceID: 0}
  1469. isReadable: 1
  1470. meshes:
  1471. lODScreenPercentages: []
  1472. globalScale: .00999999978
  1473. meshCompression: 0
  1474. addColliders: 0
  1475. importBlendShapes: 1
  1476. swapUVChannels: 0
  1477. generateSecondaryUV: 0
  1478. useFileUnits: 1
  1479. optimizeMeshForGPU: 1
  1480. keepQuads: 0
  1481. weldVertices: 1
  1482. secondaryUVAngleDistortion: 8
  1483. secondaryUVAreaDistortion: 15.000001
  1484. secondaryUVHardAngle: 88
  1485. secondaryUVPackMargin: 4
  1486. useFileScale: 0
  1487. tangentSpace:
  1488. normalSmoothAngle: 60
  1489. splitTangentsAcrossUV: 1
  1490. normalImportMode: 0
  1491. tangentImportMode: 1
  1492. importAnimation: 1
  1493. copyAvatar: 0
  1494. humanDescription:
  1495. human:
  1496. - boneName: Hips
  1497. humanName: Hips
  1498. limit:
  1499. min: {x: -40, y: -40, z: -40}
  1500. max: {x: 40, y: 40, z: 40}
  1501. value: {x: .0748811215, y: 0, z: .0374405608}
  1502. length: .0936014354
  1503. modified: 1
  1504. - boneName: LeftUpLeg
  1505. humanName: LeftUpperLeg
  1506. limit:
  1507. min: {x: -60.0000038, y: -60.0000038, z: -90}
  1508. max: {x: 60.0000038, y: 60.0000038, z: 50}
  1509. value: {x: .327716917, y: 0, z: .163858458}
  1510. length: .409646302
  1511. modified: 1
  1512. - boneName: RightUpLeg
  1513. humanName: RightUpperLeg
  1514. limit:
  1515. min: {x: -60.0000038, y: -60.0000038, z: -90}
  1516. max: {x: 60.0000038, y: 60.0000038, z: 50}
  1517. value: {x: .327717036, y: 0, z: .163858518}
  1518. length: .409646451
  1519. modified: 1
  1520. - boneName: LeftLeg
  1521. humanName: LeftLowerLeg
  1522. limit:
  1523. min: {x: -90, y: 0, z: -80}
  1524. max: {x: 90, y: 0, z: 80}
  1525. value: {x: .339271605, y: 0, z: .169635803}
  1526. length: .42408964
  1527. modified: 1
  1528. - boneName: RightLeg
  1529. humanName: RightLowerLeg
  1530. limit:
  1531. min: {x: -90, y: 0, z: -80}
  1532. max: {x: 90, y: 0, z: 80}
  1533. value: {x: .339271486, y: 0, z: .169635743}
  1534. length: .424089491
  1535. modified: 1
  1536. - boneName: LeftFoot
  1537. humanName: LeftFoot
  1538. limit:
  1539. min: {x: 0, y: -30.0000019, z: -50}
  1540. max: {x: 0, y: 30.0000019, z: 50}
  1541. value: {x: .0792840198, y: 0, z: .0396420099}
  1542. length: .0991050601
  1543. modified: 1
  1544. - boneName: RightFoot
  1545. humanName: RightFoot
  1546. limit:
  1547. min: {x: 0, y: -30.0000019, z: -50}
  1548. max: {x: 0, y: 30.0000019, z: 50}
  1549. value: {x: .0834988803, y: 0, z: .0417494401}
  1550. length: .104373634
  1551. modified: 1
  1552. - boneName: Spine
  1553. humanName: Spine
  1554. limit:
  1555. min: {x: -40, y: -40, z: -40}
  1556. max: {x: 40, y: 40, z: 40}
  1557. value: {x: .130038843, y: 0, z: .0650194213}
  1558. length: .162548617
  1559. modified: 1
  1560. - boneName: Chest
  1561. humanName: Chest
  1562. limit:
  1563. min: {x: -40, y: -40, z: -40}
  1564. max: {x: 40, y: 40, z: 40}
  1565. value: {x: .208823651, y: 0, z: .104411826}
  1566. length: .261029631
  1567. modified: 1
  1568. - boneName: Neck
  1569. humanName: Neck
  1570. limit:
  1571. min: {x: -40, y: -40, z: -40}
  1572. max: {x: 40, y: 40, z: 40}
  1573. value: {x: .0670711622, y: 0, z: .0335355811}
  1574. length: .0838389844
  1575. modified: 1
  1576. - boneName: Head
  1577. humanName: Head
  1578. limit:
  1579. min: {x: -40, y: -40, z: -40}
  1580. max: {x: 40, y: 40, z: 40}
  1581. value: {x: .0670711622, y: 0, z: .0335355811}
  1582. length: .0838389844
  1583. modified: 1
  1584. - boneName: LeftShoulder
  1585. humanName: LeftShoulder
  1586. limit:
  1587. min: {x: 0, y: -15.000001, z: -15.000001}
  1588. max: {x: 0, y: 15.000001, z: 30.0000019}
  1589. value: {x: .0804015771, y: 0, z: .0402007885}
  1590. length: .100502007
  1591. modified: 1
  1592. - boneName: RightShoulder
  1593. humanName: RightShoulder
  1594. limit:
  1595. min: {x: 0, y: -15.000001, z: -15.000001}
  1596. max: {x: 0, y: 15.000001, z: 30.0000019}
  1597. value: {x: .0804011449, y: 0, z: .0402005725}
  1598. length: .100501463
  1599. modified: 1
  1600. - boneName: LeftArm
  1601. humanName: LeftUpperArm
  1602. limit:
  1603. min: {x: -90, y: -100, z: -60.0000038}
  1604. max: {x: 90, y: 100, z: 100}
  1605. value: {x: .203239366, y: 0, z: .101619683}
  1606. length: .254049271
  1607. modified: 1
  1608. - boneName: RightArm
  1609. humanName: RightUpperArm
  1610. limit:
  1611. min: {x: -90, y: -100, z: -60.0000038}
  1612. max: {x: 90, y: 100, z: 100}
  1613. value: {x: .203239247, y: 0, z: .101619624}
  1614. length: .254049122
  1615. modified: 1
  1616. - boneName: LeftForeArm
  1617. humanName: LeftLowerArm
  1618. limit:
  1619. min: {x: -90, y: 0, z: -80}
  1620. max: {x: 90, y: 0, z: 80}
  1621. value: {x: .197111368, y: 0, z: .0985556841}
  1622. length: .246389285
  1623. modified: 1
  1624. - boneName: RightForeArm
  1625. humanName: RightLowerArm
  1626. limit:
  1627. min: {x: -90, y: 0, z: -80}
  1628. max: {x: 90, y: 0, z: 80}
  1629. value: {x: .197111011, y: 0, z: .0985555053}
  1630. length: .246388838
  1631. modified: 1
  1632. - boneName: LeftHand
  1633. humanName: LeftHand
  1634. limit:
  1635. min: {x: 0, y: -40, z: -80}
  1636. max: {x: 0, y: 40, z: 80}
  1637. value: {x: .0985556841, y: 0, z: .049277842}
  1638. length: .123194642
  1639. modified: 1
  1640. - boneName: RightHand
  1641. humanName: RightHand
  1642. limit:
  1643. min: {x: 0, y: -40, z: -80}
  1644. max: {x: 0, y: 40, z: 80}
  1645. value: {x: .0985555053, y: 0, z: .0492777526}
  1646. length: .123194419
  1647. modified: 1
  1648. - boneName: LeftToes
  1649. humanName: LeftToes
  1650. limit:
  1651. min: {x: 0, y: 0, z: -50}
  1652. max: {x: 0, y: 0, z: 50}
  1653. value: {x: .0651871562, y: 0, z: .0325935781}
  1654. length: .0814839825
  1655. modified: 1
  1656. - boneName: RightToes
  1657. humanName: RightToes
  1658. limit:
  1659. min: {x: 0, y: 0, z: -50}
  1660. max: {x: 0, y: 0, z: 50}
  1661. value: {x: .0651872978, y: 0, z: .0325936489}
  1662. length: .0814841539
  1663. modified: 1
  1664. - boneName: LeftEye
  1665. humanName: LeftEye
  1666. limit:
  1667. min: {x: 0, y: -20, z: -10}
  1668. max: {x: 0, y: 20, z: 15.000001}
  1669. value: {x: .0799999759, y: 0, z: .0399999879}
  1670. length: .100000001
  1671. modified: 1
  1672. - boneName: RightEye
  1673. humanName: RightEye
  1674. limit:
  1675. min: {x: 0, y: -20, z: -10}
  1676. max: {x: 0, y: 20, z: 15.000001}
  1677. value: {x: .0799999759, y: 0, z: .0399999879}
  1678. length: .100000001
  1679. modified: 1
  1680. - boneName: Jaw
  1681. humanName: Jaw
  1682. limit:
  1683. min: {x: 0, y: -10, z: -10}
  1684. max: {x: 0, y: 10, z: 10}
  1685. value: {x: .0799999759, y: 0, z: .0399999879}
  1686. length: .100000001
  1687. modified: 1
  1688. - boneName: LeftHandThumb1
  1689. humanName: Left Thumb Proximal
  1690. limit:
  1691. min: {x: 0, y: -25, z: -20}
  1692. max: {x: 0, y: 25, z: 20}
  1693. value: {x: .0232954863, y: 0, z: .0116477432}
  1694. length: .0291193668
  1695. modified: 1
  1696. - boneName: LeftHandThumb2
  1697. humanName: Left Thumb Intermediate
  1698. limit:
  1699. min: {x: 0, y: 0, z: -40}
  1700. max: {x: 0, y: 0, z: 35}
  1701. value: {x: .0270181615, y: 0, z: .0135090807}
  1702. length: .0337727107
  1703. modified: 1
  1704. - boneName: LeftHandThumb3
  1705. humanName: Left Thumb Distal
  1706. limit:
  1707. min: {x: 0, y: 0, z: -40}
  1708. max: {x: 0, y: 0, z: 35}
  1709. value: {x: .0202636197, y: 0, z: .0101318099}
  1710. length: .025329534
  1711. modified: 1
  1712. - boneName: LeftHandIndex1
  1713. humanName: Left Index Proximal
  1714. limit:
  1715. min: {x: 0, y: -20, z: -50}
  1716. max: {x: 0, y: 20, z: 50}
  1717. value: {x: .0318519436, y: 0, z: .0159259718}
  1718. length: .039814949
  1719. modified: 1
  1720. - boneName: LeftHandIndex2
  1721. humanName: Left Index Intermediate
  1722. limit:
  1723. min: {x: 0, y: 0, z: -45}
  1724. max: {x: 0, y: 0, z: 45}
  1725. value: {x: .0223747957, y: 0, z: .0111873979}
  1726. length: .0279685035
  1727. modified: 1
  1728. - boneName: LeftHandIndex3
  1729. humanName: Left Index Distal
  1730. limit:
  1731. min: {x: 0, y: 0, z: -45}
  1732. max: {x: 0, y: 0, z: 45}
  1733. value: {x: .0167810954, y: 0, z: .00839054771}
  1734. length: .0209763777
  1735. modified: 1
  1736. - boneName: LeftHandMiddle1
  1737. humanName: Left Middle Proximal
  1738. limit:
  1739. min: {x: 0, y: -7.50000048, z: -50}
  1740. max: {x: 0, y: 7.50000048, z: 50}
  1741. value: {x: .0354259796, y: 0, z: .0177129898}
  1742. length: .0442824923
  1743. modified: 1
  1744. - boneName: LeftHandMiddle2
  1745. humanName: Left Middle Intermediate
  1746. limit:
  1747. min: {x: 0, y: 0, z: -45}
  1748. max: {x: 0, y: 0, z: 45}
  1749. value: {x: .0271718819, y: 0, z: .0135859409}
  1750. length: .0339648612
  1751. modified: 1
  1752. - boneName: LeftHandMiddle3
  1753. humanName: Left Middle Distal
  1754. limit:
  1755. min: {x: 0, y: 0, z: -45}
  1756. max: {x: 0, y: 0, z: 45}
  1757. value: {x: .02037891, y: 0, z: .010189455}
  1758. length: .0254736468
  1759. modified: 1
  1760. - boneName: LeftHandRing1
  1761. humanName: Left Ring Proximal
  1762. limit:
  1763. min: {x: 0, y: -7.50000048, z: -50}
  1764. max: {x: 0, y: 7.50000048, z: 50}
  1765. value: {x: .0345546529, y: 0, z: .0172773264}
  1766. length: .0431933329
  1767. modified: 1
  1768. - boneName: LeftHandRing2
  1769. humanName: Left Ring Intermediate
  1770. limit:
  1771. min: {x: 0, y: 0, z: -45}
  1772. max: {x: 0, y: 0, z: 45}
  1773. value: {x: .0246684309, y: 0, z: .0123342155}
  1774. length: .0308355466
  1775. modified: 1
  1776. - boneName: LeftHandRing3
  1777. humanName: Left Ring Distal
  1778. limit:
  1779. min: {x: 0, y: 0, z: -45}
  1780. max: {x: 0, y: 0, z: 45}
  1781. value: {x: .0185013209, y: 0, z: .00925066043}
  1782. length: .0231266599
  1783. modified: 1
  1784. - boneName: LeftHandPinky1
  1785. humanName: Left Little Proximal
  1786. limit:
  1787. min: {x: 0, y: -20, z: -50}
  1788. max: {x: 0, y: 20, z: 50}
  1789. value: {x: .0246715974, y: 0, z: .0123357987}
  1790. length: .0308395065
  1791. modified: 1
  1792. - boneName: LeftHandPinky2
  1793. humanName: Left Little Intermediate
  1794. limit:
  1795. min: {x: 0, y: 0, z: -45}
  1796. max: {x: 0, y: 0, z: 45}
  1797. value: {x: .0184512157, y: 0, z: .00922560785}
  1798. length: .0230640285
  1799. modified: 1
  1800. - boneName: LeftHandPinky3
  1801. humanName: Left Little Distal
  1802. limit:
  1803. min: {x: 0, y: 0, z: -45}
  1804. max: {x: 0, y: 0, z: 45}
  1805. value: {x: .0138384132, y: 0, z: .00691920659}
  1806. length: .0172980204
  1807. modified: 1
  1808. - boneName: RightHandThumb1
  1809. humanName: Right Thumb Proximal
  1810. limit:
  1811. min: {x: 0, y: -25, z: -20}
  1812. max: {x: 0, y: 25, z: 20}
  1813. value: {x: .023295464, y: 0, z: .011647732}
  1814. length: .0291193388
  1815. modified: 1
  1816. - boneName: RightHandThumb2
  1817. humanName: Right Thumb Intermediate
  1818. limit:
  1819. min: {x: 0, y: 0, z: -40}
  1820. max: {x: 0, y: 0, z: 35}
  1821. value: {x: .0270181503, y: 0, z: .0135090752}
  1822. length: .0337726958
  1823. modified: 1
  1824. - boneName: RightHandThumb3
  1825. humanName: Right Thumb Distal
  1826. limit:
  1827. min: {x: 0, y: 0, z: -40}
  1828. max: {x: 0, y: 0, z: 35}
  1829. value: {x: .0202636104, y: 0, z: .0101318052}
  1830. length: .0253295228
  1831. modified: 1
  1832. - boneName: RightHandIndex1
  1833. humanName: Right Index Proximal
  1834. limit:
  1835. min: {x: 0, y: -20, z: -50}
  1836. max: {x: 0, y: 20, z: 50}
  1837. value: {x: .0318519659, y: 0, z: .015925983}
  1838. length: .0398149751
  1839. modified: 1
  1840. - boneName: RightHandIndex2
  1841. humanName: Right Index Intermediate
  1842. limit:
  1843. min: {x: 0, y: 0, z: -45}
  1844. max: {x: 0, y: 0, z: 45}
  1845. value: {x: .0223747883, y: 0, z: .0111873941}
  1846. length: .0279684942
  1847. modified: 1
  1848. - boneName: RightHandIndex3
  1849. humanName: Right Index Distal
  1850. limit:
  1851. min: {x: 0, y: 0, z: -45}
  1852. max: {x: 0, y: 0, z: 45}
  1853. value: {x: .0167810898, y: 0, z: .00839054491}
  1854. length: .0209763702
  1855. modified: 1
  1856. - boneName: RightHandMiddle1
  1857. humanName: Right Middle Proximal
  1858. limit:
  1859. min: {x: 0, y: -7.50000048, z: -50}
  1860. max: {x: 0, y: 7.50000048, z: 50}
  1861. value: {x: .0354259796, y: 0, z: .0177129898}
  1862. length: .0442824923
  1863. modified: 1
  1864. - boneName: RightHandMiddle2
  1865. humanName: Right Middle Intermediate
  1866. limit:
  1867. min: {x: 0, y: 0, z: -45}
  1868. max: {x: 0, y: 0, z: 45}
  1869. value: {x: .0271718558, y: 0, z: .0135859279}
  1870. length: .0339648277
  1871. modified: 1
  1872. - boneName: RightHandMiddle3
  1873. humanName: Right Middle Distal
  1874. limit:
  1875. min: {x: 0, y: 0, z: -45}
  1876. max: {x: 0, y: 0, z: 45}
  1877. value: {x: .0203788895, y: 0, z: .0101894448}
  1878. length: .0254736207
  1879. modified: 1
  1880. - boneName: RightHandRing1
  1881. humanName: Right Ring Proximal
  1882. limit:
  1883. min: {x: 0, y: -7.50000048, z: -50}
  1884. max: {x: 0, y: 7.50000048, z: 50}
  1885. value: {x: .0345546268, y: 0, z: .0172773134}
  1886. length: .043193303
  1887. modified: 1
  1888. - boneName: RightHandRing2
  1889. humanName: Right Ring Intermediate
  1890. limit:
  1891. min: {x: 0, y: 0, z: -45}
  1892. max: {x: 0, y: 0, z: 45}
  1893. value: {x: .0246684495, y: 0, z: .0123342248}
  1894. length: .0308355708
  1895. modified: 1
  1896. - boneName: RightHandRing3
  1897. humanName: Right Ring Distal
  1898. limit:
  1899. min: {x: 0, y: 0, z: -45}
  1900. max: {x: 0, y: 0, z: 45}
  1901. value: {x: .0185013358, y: 0, z: .00925066788}
  1902. length: .0231266785
  1903. modified: 1
  1904. - boneName: RightHandPinky1
  1905. humanName: Right Little Proximal
  1906. limit:
  1907. min: {x: 0, y: -20, z: -50}
  1908. max: {x: 0, y: 20, z: 50}
  1909. value: {x: .02467159, y: 0, z: .012335795}
  1910. length: .0308394972
  1911. modified: 1
  1912. - boneName: RightHandPinky2
  1913. humanName: Right Little Intermediate
  1914. limit:
  1915. min: {x: 0, y: 0, z: -45}
  1916. max: {x: 0, y: 0, z: 45}
  1917. value: {x: .0184512008, y: 0, z: .0092256004}
  1918. length: .0230640098
  1919. modified: 1
  1920. - boneName: RightHandPinky3
  1921. humanName: Right Little Distal
  1922. limit:
  1923. min: {x: 0, y: 0, z: -45}
  1924. max: {x: 0, y: 0, z: 45}
  1925. value: {x: .013838402, y: 0, z: .006919201}
  1926. length: .0172980074
  1927. modified: 1
  1928. skeleton:
  1929. - name:
  1930. position: {x: 0, y: 0, z: 0}
  1931. rotation: {x: 0, y: 0, z: 0, w: .99999994}
  1932. scale: {x: 1, y: 1, z: 1}
  1933. transformModified: 1
  1934. - name: Reference
  1935. position: {x: 0, y: 0, z: 0}
  1936. rotation: {x: 0, y: -0, z: 0, w: .99999994}
  1937. scale: {x: 1, y: 1, z: 1}
  1938. transformModified: 1
  1939. - name: Hips
  1940. position: {x: -.000576063991, y: .967362523, z: .00204241276}
  1941. rotation: {x: .0223360788, y: .00529096881, z: .00642740354, w: .999715805}
  1942. scale: {x: 1, y: 1, z: 1}
  1943. transformModified: 1
  1944. - name: LeftUpLeg
  1945. position: {x: -.0754494965, y: -.0456640199, z: 3.5527136e-17}
  1946. rotation: {x: -.0254481398, y: -.077497676, z: .0131525509, w: .996580899}
  1947. scale: {x: 1, y: 1, z: 1}
  1948. transformModified: 1
  1949. - name: LeftLeg
  1950. position: {x: -.0205504987, y: -.409129977, z: -.000718647963}
  1951. rotation: {x: .0883606523, y: .0601039417, z: .00689327437, w: .994249642}
  1952. scale: {x: 1, y: 1, z: 1}
  1953. transformModified: 1
  1954. - name: LeftFoot
  1955. position: {x: -.00515299942, y: -.423155904, z: -.0276488513}
  1956. rotation: {x: -.0747270957, y: .00194939971, z: -.0340461582, w: .996620715}
  1957. scale: {x: 1, y: 1, z: 1}
  1958. transformModified: 1
  1959. - name: LeftToes
  1960. position: {x: -.00748699997, y: -.0731673017, z: .145427123}
  1961. rotation: {x: 0, y: -0, z: -0, w: .99999994}
  1962. scale: {x: 1, y: 1, z: 1}
  1963. transformModified: 1
  1964. - name: RightUpLeg
  1965. position: {x: .0754495338, y: -.0456639901, z: -7.1054272e-17}
  1966. rotation: {x: -.0228122752, y: .115679629, z: .0178274363, w: .99286449}
  1967. scale: {x: 1, y: 1, z: 1}
  1968. transformModified: 1
  1969. - name: RightLeg
  1970. position: {x: .0205504671, y: -.409130007, z: -.000718647963}
  1971. rotation: {x: .0877953172, y: -.00208697654, z: .0137627255, w: .996041238}
  1972. scale: {x: 1, y: 1, z: 1}
  1973. transformModified: 1
  1974. - name: RightFoot
  1975. position: {x: .00515299942, y: -.423155904, z: -.0276488513}
  1976. rotation: {x: -.0812724829, y: .00466302643, z: -.057345245, w: .995029926}
  1977. scale: {x: 1, y: 1, z: 1}
  1978. transformModified: 1
  1979. - name: RightToes
  1980. position: {x: .00748699997, y: -.0731673017, z: .145427495}
  1981. rotation: {x: 0, y: -0, z: -0, w: .99999994}
  1982. scale: {x: 1, y: 1, z: 1}
  1983. transformModified: 1
  1984. - name: Spine
  1985. position: {x: -3.55271347e-16, y: .0922631845, z: .0157713313}
  1986. rotation: {x: .0223924816, y: -.000647847774, z: .0213667471, w: .999520659}
  1987. scale: {x: 1, y: 1, z: 1}
  1988. transformModified: 1
  1989. - name: Chest
  1990. position: {x: -0, y: .162540287, z: -.00165605545}
  1991. rotation: {x: -2.13748743e-15, y: -3.46944675e-18, z: 1.90819566e-17, w: .99999994}
  1992. scale: {x: 1, y: 1, z: 1}
  1993. transformModified: 1
  1994. - name: LeftShoulder
  1995. position: {x: -.0382859968, y: .221622497, z: -.017063085}
  1996. rotation: {x: .0139149353, y: -.00394780654, z: .131782964, w: .991173029}
  1997. scale: {x: 1, y: 1, z: 1}
  1998. transformModified: 1
  1999. - name: LeftArm
  2000. position: {x: -.100502051, y: 8.52651264e-16, z: -1.91846525e-15}
  2001. rotation: {x: .37622869, y: -.0543028153, z: -.13020131, w: .915724158}
  2002. scale: {x: 1, y: 1, z: 1}
  2003. transformModified: 1
  2004. - name: LeftForeArm
  2005. position: {x: -.254049301, y: -5.6772363e-14, z: -7.74633667e-13}
  2006. rotation: {x: -.0333404355, y: .0205719378, z: -.0173609424, w: .999081433}
  2007. scale: {x: 1, y: 1, z: 1}
  2008. transformModified: 1
  2009. - name: LeftHand
  2010. position: {x: -.24638927, y: -1.34519945e-12, z: -1.48500223e-11}
  2011. rotation: {x: -.00459451135, y: -.0165043119, z: -.00508450065, w: .99984026}
  2012. scale: {x: 1, y: 1, z: 1}
  2013. transformModified: 1
  2014. - name: LeftHandIndex1
  2015. position: {x: -.0751257986, y: -.00784140453, z: .0326526426}
  2016. rotation: {x: -.0308349449, y: .0179683398, z: .0871938765, w: .995551884}
  2017. scale: {x: 1, y: 1, z: 1}
  2018. transformModified: 1
  2019. - name: LeftHandIndex2
  2020. position: {x: -.03979728, y: 4.98084046e-05, z: .00118575036}
  2021. rotation: {x: -.068933852, y: .0147166522, z: .027954815, w: .997120857}
  2022. scale: {x: 1, y: 1, z: 1}
  2023. transformModified: 1
  2024. - name: LeftHandIndex3
  2025. position: {x: -.0279684775, y: -6.28308783e-09, z: -5.17217202e-08}
  2026. rotation: {x: -.0662777126, y: -.00754973805, z: .171201751, w: .982975125}
  2027. scale: {x: 1, y: 1, z: 1}
  2028. transformModified: 1
  2029. - name: LeftHandMiddle1
  2030. position: {x: -.0760238245, y: -.00188513438, z: .0101412293}
  2031. rotation: {x: -.0157173555, y: .0537218116, z: .0864742398, w: .994680345}
  2032. scale: {x: 1, y: 1, z: 1}
  2033. transformModified: 1
  2034. - name: LeftHandMiddle2
  2035. position: {x: -.0442804359, y: 4.79887376e-06, z: -.000425400125}
  2036. rotation: {x: -.0151246209, y: -.00647278596, z: .0269566793, w: .999501169}
  2037. scale: {x: 1, y: 1, z: 1}
  2038. transformModified: 1
  2039. - name: LeftHandMiddle3
  2040. position: {x: -.0339648277, y: -1.2198452e-08, z: 3.7516088e-09}
  2041. rotation: {x: -.00722864736, y: .000813854625, z: .290401727, w: .956877112}
  2042. scale: {x: 1, y: 1, z: 1}
  2043. transformModified: 1
  2044. - name: LeftHandPinky1
  2045. position: {x: -.0656599477, y: -.00782510638, z: -.0322512463}
  2046. rotation: {x: -.0464275964, y: .075739637, z: .086158894, w: .992312729}
  2047. scale: {x: 1, y: 1, z: 1}
  2048. transformModified: 1
  2049. - name: LeftHandPinky2
  2050. position: {x: -.0308054481, y: -3.0874573e-05, z: -.0014480775}
  2051. rotation: {x: .0492937081, y: -.021721568, z: .0329473726, w: .998004377}
  2052. scale: {x: 1, y: 1, z: 1}
  2053. transformModified: 1
  2054. - name: LeftHandPinky3
  2055. position: {x: -.0230640266, y: -6.40258258e-06, z: 1.8330093e-08}
  2056. rotation: {x: .0462911353, y: -.000569252239, z: .241861716, w: .969205678}
  2057. scale: {x: 1, y: 1, z: 1}
  2058. transformModified: 1
  2059. - name: LeftHandRing1
  2060. position: {x: -.0703021064, y: -.00374530931, z: -.0114117917}
  2061. rotation: {x: -.0137463231, y: .0746487528, z: .0850582421, w: .993480563}
  2062. scale: {x: 1, y: 1, z: 1}
  2063. transformModified: 1
  2064. - name: LeftHandRing2
  2065. position: {x: -.0431354567, y: -2.08823076e-05, z: -.00223517837}
  2066. rotation: {x: .0193218105, y: -.0256573409, z: .0290447082, w: .999061882}
  2067. scale: {x: 1, y: 1, z: 1}
  2068. transformModified: 1
  2069. - name: LeftHandRing3
  2070. position: {x: -.0308355652, y: 7.67334946e-11, z: -1.64974168e-08}
  2071. rotation: {x: .0185098108, y: -.00236002333, z: .245544434, w: .969205678}
  2072. scale: {x: 1, y: 1, z: 1}
  2073. transformModified: 1
  2074. - name: LeftHandThumb1
  2075. position: {x: -.0142312413, y: -.0123778246, z: .0255316682}
  2076. rotation: {x: -.202251598, y: -.110913076, z: -.2050322, w: .951185763}
  2077. scale: {x: 1, y: 1, z: 1}
  2078. transformModified: 1
  2079. - name: LeftHandThumb2
  2080. position: {x: -.0163739994, y: -.00528999977, z: .0234914087}
  2081. rotation: {x: -.0300429408, y: .0994002447, z: .00653865794, w: .994572341}
  2082. scale: {x: 1, y: 1, z: 1}
  2083. transformModified: 1
  2084. - name: LeftHandThumb3
  2085. position: {x: -.0254599992, y: -.00763999997, z: .0208330005}
  2086. rotation: {x: .0482696705, y: -.21970883, z: -.0199516751, w: .974166274}
  2087. scale: {x: 1, y: 1, z: 1}
  2088. transformModified: 1
  2089. - name: Neck
  2090. position: {x: 4.26325632e-16, y: .259009302, z: -.0324132554}
  2091. rotation: {x: -.0470599942, y: -.00595978182, z: -.00467421999, w: .99886328}
  2092. scale: {x: 1, y: 1, z: 1}
  2093. transformModified: 1
  2094. - name: Head
  2095. position: {x: 1.27897687e-15, y: .0830703825, z: .0113267815}
  2096. rotation: {x: -.0252206065, y: -.00425317558, z: -.0123739783, w: .999596238}
  2097. scale: {x: 1, y: 1, z: 1}
  2098. transformModified: 1
  2099. - name: Jaw
  2100. position: {x: 1.73472344e-20, y: .0111267585, z: .0103275431}
  2101. rotation: {x: -2.07289378e-36, y: -1.57659684e-18, z: -1.31478994e-18, w: .99999994}
  2102. scale: {x: 1, y: 1, z: 1}
  2103. transformModified: 1
  2104. - name: LeftEye
  2105. position: {x: -.0208482333, y: .0825027004, z: .0554274321}
  2106. rotation: {x: 0, y: -0, z: -0, w: .99999994}
  2107. scale: {x: 1, y: 1, z: 1}
  2108. transformModified: 1
  2109. - name: RightEye
  2110. position: {x: .020849999, y: .082502827, z: .0554273985}
  2111. rotation: {x: 0, y: -0, z: -0, w: .99999994}
  2112. scale: {x: 1, y: 1, z: 1}
  2113. transformModified: 1
  2114. - name: RightShoulder
  2115. position: {x: .0382860154, y: .221621141, z: -.017063085}
  2116. rotation: {x: .184811041, y: .982165337, z: .0290686917, w: .0187379587}
  2117. scale: {x: 1, y: 1, z: 1}
  2118. transformModified: 1
  2119. - name: RightArm
  2120. position: {x: -.100501455, y: -2.49955224e-06, z: -5.15574072e-08}
  2121. rotation: {x: .106947966, y: .951947629, z: -.285819441, w: -.0257873461}
  2122. scale: {x: 1, y: 1, z: 1}
  2123. transformModified: 1
  2124. - name: RightForeArm
  2125. position: {x: .253428251, y: .00601135287, z: -.0167045239}
  2126. rotation: {x: .00554432906, y: .0252693761, z: -.0140679898, w: .999566257}
  2127. scale: {x: 1, y: 1, z: 1}
  2128. transformModified: 1
  2129. - name: RightHand
  2130. position: {x: .245373696, y: .0216417722, z: .00555046508}
  2131. rotation: {x: -.00922487117, y: .022404477, z: .0338127092, w: .999134421}
  2132. scale: {x: 1, y: 1, z: 1}
  2133. transformModified: 1
  2134. - name: RightHandIndex1
  2135. position: {x: .0747694969, y: -.00124305359, z: .0343444981}
  2136. rotation: {x: -.0269999094, y: .13470526, z: -.0601701103, w: .988688469}
  2137. scale: {x: 1, y: 1, z: 1}
  2138. transformModified: 1
  2139. - name: RightHandIndex2
  2140. position: {x: .0370584019, y: .00072612107, z: .0145388944}
  2141. rotation: {x: -.0803578943, y: .023019379, z: .043747969, w: .995539427}
  2142. scale: {x: 1, y: 1, z: 1}
  2143. transformModified: 1
  2144. - name: RightHandIndex3
  2145. position: {x: .0252250377, y: -.00496646529, z: .0110121462}
  2146. rotation: {x: .00452318508, y: .0132934432, z: -.0882905722, w: .99599576}
  2147. scale: {x: 1, y: 1, z: 1}
  2148. transformModified: 1
  2149. - name: RightHandMiddle1
  2150. position: {x: .0756476447, y: .00479140272, z: .0118531818}
  2151. rotation: {x: -.0139237707, y: .00904196221, z: -.046430029, w: .998783529}
  2152. scale: {x: 1, y: 1, z: 1}
  2153. transformModified: 1
  2154. - name: RightHandMiddle2
  2155. position: {x: .0438090637, y: .000194188149, z: .00645493623}
  2156. rotation: {x: -.0214388836, y: -.0445644185, z: .0864201039, w: .995030582}
  2157. scale: {x: 1, y: 1, z: 1}
  2158. transformModified: 1
  2159. - name: RightHandMiddle3
  2160. position: {x: .0330724716, y: -.00754753686, z: .00168984616}
  2161. rotation: {x: .00494018523, y: -.000555257779, z: -.197933093, w: .980202854}
  2162. scale: {x: 1, y: 1, z: 1}
  2163. transformModified: 1
  2164. - name: RightHandPinky1
  2165. position: {x: .0668033436, y: -.00199410878, z: -.0307561457}
  2166. rotation: {x: -.0533697084, y: -.254999846, z: -.012574737, w: .965385199}
  2167. scale: {x: 1, y: 1, z: 1}
  2168. transformModified: 1
  2169. - name: RightHandPinky2
  2170. position: {x: .0285308417, y: -.001397143, z: -.0116237961}
  2171. rotation: {x: .0333438665, y: .0010600572, z: -.0586728975, w: .997719646}
  2172. scale: {x: 1, y: 1, z: 1}
  2173. transformModified: 1
  2174. - name: RightHandPinky3
  2175. position: {x: .0214268602, y: -.000553508929, z: -.00851660781}
  2176. rotation: {x: -.0291062221, y: .000397295575, z: -.152253702, w: .987912655}
  2177. scale: {x: 1, y: 1, z: 1}
  2178. transformModified: 1
  2179. - name: RightHandRing1
  2180. position: {x: .0705984756, y: .00245709647, z: -.00982145779}
  2181. rotation: {x: -.0145360986, y: -.117994778, z: -.0257458817, w: .992573917}
  2182. scale: {x: 1, y: 1, z: 1}
  2183. transformModified: 1
  2184. - name: RightHandRing2
  2185. position: {x: .0428871848, y: -.00137538207, z: -.00494585792}
  2186. rotation: {x: .0220794417, y: -.0216988493, z: .0796099529, w: .996345222}
  2187. scale: {x: 1, y: 1, z: 1}
  2188. transformModified: 1
  2189. - name: RightHandRing3
  2190. position: {x: .0295006037, y: -.00769293541, z: -.00462225592}
  2191. rotation: {x: -.0116657401, y: .00135601033, z: -.154779926, w: .987879097}
  2192. scale: {x: 1, y: 1, z: 1}
  2193. transformModified: 1
  2194. - name: RightHandThumb1
  2195. position: {x: .0146849155, y: -.0111049423, z: .0258580949}
  2196. rotation: {x: -.202457637, y: .0650082007, z: .211026832, w: .954071522}
  2197. scale: {x: 1, y: 1, z: 1}
  2198. transformModified: 1
  2199. - name: RightHandThumb2
  2200. position: {x: .0163739994, y: -.00528999977, z: .0234913602}
  2201. rotation: {x: -.030088516, y: -.0993836001, z: -.00658332603, w: .994572341}
  2202. scale: {x: 1, y: 1, z: 1}
  2203. transformModified: 1
  2204. - name: RightHandThumb3
  2205. position: {x: .0254599992, y: -.00763999997, z: .0208330005}
  2206. rotation: {x: .0482729301, y: .219708115, z: .0199370738, w: .974166512}
  2207. scale: {x: 1, y: 1, z: 1}
  2208. transformModified: 1
  2209. armTwist: .5
  2210. foreArmTwist: .5
  2211. upperLegTwist: .5
  2212. legTwist: .5
  2213. armStretch: .0500000007
  2214. legStretch: .0500000007
  2215. feetSpacing: 0
  2216. rootMotionBoneName:
  2217. lastHumanDescriptionAvatarSource: {instanceID: 0}
  2218. animationType: 3
  2219. additionalBone: 0
  2220. userData:
  2221. assetBundleName:
  2222. assetBundleVariant: