1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
|
fileFormatVersion: 2
guid: 561b999df199e5744be9a596cf57f499
ModelImporter:
serializedVersion: 19301
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 1
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 3
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 0
importLights: 0
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human:
- boneName: Hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Left Leg
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Right Leg
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Left Knee
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Right Knee
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Left ankle
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Right ankle
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: LowerChest
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Left shoulder
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Right shoulder
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Left arm
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Right arm
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Left elbow
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Right elbow
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Left wrist
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Right wrist
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Left toe
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Right toe
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Eye_L
humanName: LeftEye
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Eye_R
humanName: RightEye
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Thumb0_L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Thumb0_L.002
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Thumb0_L.001
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: IndexFinger_L.001
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: IndexFinger_L.002
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: IndexFinger_L.003
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: MiddleFinger_L.001
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: MiddleFinger_L.002
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: MiddleFinger_L.003
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RingFinger_L.001
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RingFinger_L.002
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RingFinger_L.003
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: LittleFinger_L.001
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: LittleFinger_L.002
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: LittleFinger_L.003
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Thumb0_R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Thumb0_R.002
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Thumb0_R.001
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: IndexFinger_R.001
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: IndexFinger_R.002
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: IndexFinger_R.003
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: MiddleFinger_R.001
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: MiddleFinger_R.002
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: MiddleFinger_R.003
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RingFinger_R.001
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RingFinger_R.002
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RingFinger_R.003
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: LittleFinger_R.001
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: LittleFinger_R.002
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: LittleFinger_R.003
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: UperChest
humanName: UpperChest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: Naro(Clone)
parentName:
position: {x: 0, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Armature
parentName: Naro(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 100, y: 100, z: 100}
- name: Hips
parentName: Armature
position: {x: -0, y: -0.00023565363, z: 0.0076803123}
rotation: {x: 0.70710665, y: -0, z: -0, w: 0.7071069}
scale: {x: 1, y: 1, z: 1}
- name: Spine
parentName: Hips
position: {x: -0, y: 0.00077568105, z: -2.6765007e-11}
rotation: {x: -0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LowerChest
parentName: Spine
position: {x: -0, y: 0.0008575951, z: 3.770992e-12}
rotation: {x: -0.10334966, y: 1.1191408e-14, z: 1.1191416e-14, w: 0.9946451}
scale: {x: 1, y: 1, z: 0.99999994}
- name: UperChest
parentName: LowerChest
position: {x: 4.3939833e-23, y: 0.0008465619, z: 3.1199304e-10}
rotation: {x: -0.026389733, y: -6.928498e-15, z: -9.19799e-15, w: 0.99965173}
scale: {x: 1, y: 0.9999996, z: 0.9999996}
- name: Left shoulder
parentName: UperChest
position: {x: -0.00036467452, y: 0.0009659866, z: -0.000004115049}
rotation: {x: 0.54795146, y: -0.40132964, z: -0.54405814, w: -0.49263024}
scale: {x: 1.0000021, y: 1.000002, z: 1.0000018}
- name: Left arm
parentName: Left shoulder
position: {x: -3.7252902e-11, y: 0.0009350113, z: -1.44355e-10}
rotation: {x: 0.09885335, y: -0.07221388, z: 0.017134992, w: 0.9923304}
scale: {x: 1.0000011, y: 0.99999946, z: 1.0000002}
- name: Left elbow
parentName: Left arm
position: {x: -2.3283063e-11, y: 0.002004447, z: -0.0000000013859244}
rotation: {x: -0.009353398, y: 0.015198534, z: -0.059051637, w: -0.99809545}
scale: {x: 1.0000015, y: 1.0000018, z: 1.0000012}
- name: Left wrist
parentName: Left elbow
position: {x: -4.6566126e-11, y: 0.0019579288, z: -1.5410478e-10}
rotation: {x: -0.0036184145, y: 0.0037334282, z: 0.0034359728, w: 0.9999806}
scale: {x: 1.0000025, y: 1.0000025, z: 1.0000039}
- name: Thumb0_L
parentName: Left wrist
position: {x: -0.00028095773, y: 0.00012240495, z: -0.00008658208}
rotation: {x: -0.18053319, y: 0.29599872, z: 0.36703908, w: 0.86317724}
scale: {x: 1.0000013, y: 1.0000006, z: 1.0000018}
- name: Thumb0_L.002
parentName: Thumb0_L
position: {x: -0.0000000055134297, y: 0.00022912727, z: 0.0000000015366822}
rotation: {x: 0.021826992, y: -0.050303508, z: -0.030973416, w: 0.998015}
scale: {x: 0.9999998, y: 1.0000007, z: 0.9999987}
- name: Thumb0_L.001
parentName: Thumb0_L.002
position: {x: 0.0000000021979212, y: 0.00025863582, z: 0.0000000015366822}
rotation: {x: 0.031598225, y: -0.05072563, z: -0.025589125, w: 0.99788463}
scale: {x: 1.0000012, y: 1.0000024, z: 1.0000012}
- name: Thumb0_L.001_end
parentName: Thumb0_L.001
position: {x: -0, y: 0.00025863547, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger_L.001
parentName: Left wrist
position: {x: -0.00029541206, y: 0.00076858036, z: 0.00004462188}
rotation: {x: 0.0352378, y: -0.39931533, z: -0.00027329597, w: -0.9161362}
scale: {x: 0.9999999, y: 1.0000001, z: 1.0000002}
- name: IndexFinger_L.002
parentName: IndexFinger_L.001
position: {x: 3.9115547e-10, y: 0.00021393294, z: 5.0291415e-10}
rotation: {x: 0.00000059604633, y: -0.0000041127196, z: 0.00000032223753, w: 1}
scale: {x: 0.9999997, y: 1.0000005, z: 1.0000015}
- name: IndexFinger_L.003
parentName: IndexFinger_L.002
position: {x: 0.0000000033341347, y: 0.00021393455, z: 1.862645e-10}
rotation: {x: -0.0000033146064, y: -0.33581057, z: -0.0000015147718, w: 0.9419296}
scale: {x: 1.0000002, y: 1.0000011, z: 1.000001}
- name: IndexFinger_L.003_end
parentName: IndexFinger_L.003
position: {x: -0, y: 0.0002139344, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger_L.001
parentName: Left wrist
position: {x: -0.000104810424, y: 0.00079771224, z: 0.000049716095}
rotation: {x: -0.03333107, y: 0.03439963, z: 0.008798879, w: 0.99881345}
scale: {x: 1.0000004, y: 1.0000008, z: 0.9999989}
- name: MiddleFinger_L.002
parentName: MiddleFinger_L.001
position: {x: 5.5879353e-11, y: 0.0002475015, z: 8.8592056e-10}
rotation: {x: 0.000002555549, y: -0.000003188848, z: -0.00000014633405, w: 1}
scale: {x: 0.99999917, y: 0.9999997, z: 0.9999999}
- name: MiddleFinger_L.003
parentName: MiddleFinger_L.002
position: {x: -0, y: 0.00024750322, z: -6.653135e-10}
rotation: {x: -0.000007182361, y: 0.00000862777, z: -0.0000002665902, w: 1}
scale: {x: 1.0000014, y: 1.0000004, z: 1}
- name: MiddleFinger_L.003_end
parentName: MiddleFinger_L.003
position: {x: -0, y: 0.00024750285, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger_L.001
parentName: Left wrist
position: {x: 0.00007965397, y: 0.0007671659, z: 0.000033849334}
rotation: {x: -0.042445797, y: 0.06452424, z: 0.02271633, w: 0.9967542}
scale: {x: 1.000001, y: 1.0000006, z: 0.9999992}
- name: RingFinger_L.002
parentName: RingFinger_L.001
position: {x: -6.239861e-10, y: 0.00023913271, z: 0.0000000034610275}
rotation: {x: 0.000002983957, y: -0.0000031515951, z: 0.00000038277352, w: 1}
scale: {x: 1.0000001, y: 1.000001, z: 1.0000013}
- name: RingFinger_L.003
parentName: RingFinger_L.002
position: {x: 5.0291415e-10, y: 0.00023913458, z: 0.0000000015099066}
rotation: {x: -0.0000075176354, y: 0.000007919966, z: -0.0000010565852, w: 1}
scale: {x: 1.0000002, y: 1.000001, z: 1.0000008}
- name: RingFinger_L.003_end
parentName: RingFinger_L.003
position: {x: -0, y: 0.0002391344, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LittleFinger_L.001
parentName: Left wrist
position: {x: 0.00024743198, y: 0.000749929, z: -0.000048720525}
rotation: {x: 0.02917633, y: -0.06844209, z: -0.008708146, w: -0.9971904}
scale: {x: 1, y: 1.0000012, z: 0.99999976}
- name: LittleFinger_L.002
parentName: LittleFinger_L.001
position: {x: 7.4505804e-11, y: 0.00019770369, z: -3.958121e-11}
rotation: {x: 0.0012506694, y: -0.0022821575, z: 0.008145869, w: 0.9999635}
scale: {x: 1.0000024, y: 1.0000027, z: 1.0000026}
- name: LittleFinger_L.003
parentName: LittleFinger_L.002
position: {x: 2.2351741e-10, y: 0.00018007804, z: 0.0000000016391277}
rotation: {x: -0.0027494205, y: 0.0024032476, z: 0.0024822298, w: 0.9999902}
scale: {x: 1.0000001, y: 0.99999994, z: 1.0000007}
- name: LittleFinger_L.003_end
parentName: LittleFinger_L.003
position: {x: -0, y: 0.00018007768, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Neck
parentName: UperChest
position: {x: -2.8834302e-17, y: 0.0010980391, z: -0.000014813542}
rotation: {x: 0.20545977, y: -2.3821045e-14, z: -2.952775e-14, w: 0.9786656}
scale: {x: 1, y: 0.99999964, z: 0.99999964}
- name: Head
parentName: Neck
position: {x: -2.1969917e-23, y: 0.0009842288, z: 5.5879353e-11}
rotation: {x: -0.07769324, y: 2.7444354e-14, z: 2.6960955e-14, w: 0.9969773}
scale: {x: 1, y: 0.9999997, z: 0.9999997}
- name: Eye_L
parentName: Head
position: {x: -0.00030502988, y: 0.00030020322, z: 0.00029939742}
rotation: {x: 0.0007655248, y: -3.0388317e-14, z: -2.3261351e-17, w: 0.9999997}
scale: {x: 1, y: 1.0000005, z: 0.9999999}
- name: Eye_L_end
parentName: Eye_L
position: {x: -0, y: 0.0005059886, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Jaw
parentName: Head
position: {x: 1.0692558e-17, y: -0.00021283669, z: 0.00028544254}
rotation: {x: 0.82870317, y: -2.0537536e-13, z: -2.0008638e-13, w: 0.5596884}
scale: {x: 1, y: 1.000002, z: 1.0000021}
- name: Jaw_end
parentName: Jaw
position: {x: -0, y: 0.0005344662, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Eye_R
parentName: Head
position: {x: 0.00030502988, y: 0.00030020322, z: 0.00029939742}
rotation: {x: 0.0007655248, y: -3.0388317e-14, z: -2.3261351e-17, w: 0.9999997}
scale: {x: 1, y: 1.0000005, z: 0.9999999}
- name: Eye_R_end
parentName: Eye_R
position: {x: -0, y: 0.0005059886, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairJoint_437e40b7_93b4_42b7_884a_752fdbf37477
parentName: Head
position: {x: 0.000030424424, y: 0.00067778816, z: 0.0010020053}
rotation: {x: 0.99665326, y: -0.057749774, z: -0.05783998, w: 0.0013147591}
scale: {x: 0.99999386, y: 1.0000019, z: 1.0000004}
- name: HairJoint_437e40b7_93b4_42b7_884a_752fdbf37477_end
parentName: HairJoint_437e40b7_93b4_42b7_884a_752fdbf37477
position: {x: -0, y: 0.00056885474, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairJoint_6c896f34_9686_4116_abb6_83245371cc4e
parentName: Head
position: {x: 0.000049022874, y: 0.0012392595, z: 0.00080955797}
rotation: {x: 0.9414881, y: -0.008091112, z: -0.008103526, w: 0.3368519}
scale: {x: 1, y: 1.0000035, z: 1.0000033}
- name: HairJoint_3fd3f5a0_2943_4bc5_b31d_a5083b6598c7
parentName: HairJoint_6c896f34_9686_4116_abb6_83245371cc4e
position: {x: 3.7252902e-11, y: 0.0004657421, z: 0.0000000012740929}
rotation: {x: 0.26209202, y: -0.27243766, z: 0.12528467, w: 0.91727275}
scale: {x: 1.0000006, y: 1.000003, z: 1.0000037}
- name: HairJoint_3fd3f5a0_2943_4bc5_b31d_a5083b6598c7_end
parentName: HairJoint_3fd3f5a0_2943_4bc5_b31d_a5083b6598c7
position: {x: -0, y: 0.00045705296, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairJoint_0c319cff_6c90_447a_b2ee_400a7894c0ad
parentName: Head
position: {x: -0.0007234839, y: 0.00043364926, z: 0.0005450959}
rotation: {x: 0.9883822, y: 0.03324438, z: 0.033296473, w: 0.14452265}
scale: {x: 1.0000006, y: 1.0000042, z: 1.0000048}
- name: HairJoint_1d309561_7580_4c83_aaf6_0657e17d6576
parentName: HairJoint_0c319cff_6c90_447a_b2ee_400a7894c0ad
position: {x: -8.8475643e-11, y: 0.00037150263, z: 0.0000000010337681}
rotation: {x: 0.06427333, y: 0.05190361, z: -0.03482622, w: 0.99597293}
scale: {x: 1, y: 1.0000014, z: 1.0000019}
- name: HairJoint_1d309561_7580_4c83_aaf6_0657e17d6576_end
parentName: HairJoint_1d309561_7580_4c83_aaf6_0657e17d6576
position: {x: -0, y: 0.00037003003, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairJoint_881d6068_9130_4701_bcb9_dfb7fcedbec6
parentName: Head
position: {x: -0.00063292723, y: 0.0004302995, z: -0.000374315}
rotation: {x: 0.9816566, y: 0.13057704, z: 0.13077752, w: -0.04687361}
scale: {x: 0.9999996, y: 1.0000019, z: 1.0000011}
- name: HairJoint_a1b456dc_831c_4a6d_b687_f902cbd2f9e6
parentName: HairJoint_881d6068_9130_4701_bcb9_dfb7fcedbec6
position: {x: -4.2840836e-10, y: 0.0005118194, z: 4.377216e-10}
rotation: {x: -0.006616336, y: 0.021302931, z: -0.02525209, w: 0.99943227}
scale: {x: 0.99999994, y: 1.0000011, z: 1.0000027}
- name: HairJoint_a1b456dc_831c_4a6d_b687_f902cbd2f9e6_end
parentName: HairJoint_a1b456dc_831c_4a6d_b687_f902cbd2f9e6
position: {x: -0, y: 0.000512171, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairJoint_83cbac10_e6b1_4748_8b74_9a2b49e30f15
parentName: Head
position: {x: -0.00007340806, y: 0.00053461886, z: -0.00072947255}
rotation: {x: 0.99736476, y: 0.046138167, z: 0.046195295, w: 0.0316376}
scale: {x: 0.9999942, y: 1.0000046, z: 1.0000019}
- name: HairJoint_09d56cc0_7b82_4ff9_b966_3b12dd54a977
parentName: HairJoint_83cbac10_e6b1_4748_8b74_9a2b49e30f15
position: {x: -1.7695129e-10, y: 0.0005947942, z: 4.4281476e-10}
rotation: {x: -0.12239682, y: 0.022693533, z: -0.03223733, w: 0.991698}
scale: {x: 1.0000004, y: 1.000002, z: 1.0000037}
- name: HairJoint_09d56cc0_7b82_4ff9_b966_3b12dd54a977_end
parentName: HairJoint_09d56cc0_7b82_4ff9_b966_3b12dd54a977
position: {x: -0, y: 0.0006093738, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairJoint_15bf48f5_7055_4669_b080_94e07314d3c2
parentName: Head
position: {x: 0.00059412495, y: 0.00056076475, z: -0.0003742685}
rotation: {x: 0.9982784, y: -0.040252257, z: -0.040346228, w: -0.013869703}
scale: {x: 0.999961, y: 1.0000027, z: 0.9999993}
- name: HairJoint_d4fc904f_f1f3_4a3f_a9f7_d58d7f762fdd
parentName: HairJoint_15bf48f5_7055_4669_b080_94e07314d3c2
position: {x: 1.6065314e-10, y: 0.0005077758, z: 5.2619725e-10}
rotation: {x: -0.045469437, y: -0.0673801, z: 0.07289931, w: 0.9940212}
scale: {x: 1.0000008, y: 1.0000011, z: 1.0000014}
- name: HairJoint_d4fc904f_f1f3_4a3f_a9f7_d58d7f762fdd_end
parentName: HairJoint_d4fc904f_f1f3_4a3f_a9f7_d58d7f762fdd
position: {x: -0, y: 0.00051329116, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairJoint_d6d01526_27b5_4aa4_89a4_e88af5cfb062
parentName: Head
position: {x: 0.0006197788, y: 0.00046712672, z: 0.0005615465}
rotation: {x: 0.9983899, y: -0.032131303, z: -0.032157376, w: 0.033929106}
scale: {x: 0.9999944, y: 1.0000043, z: 0.99999654}
- name: HairJoint_49f26943_e85a_46fd_a05d_12029abeef0b
parentName: HairJoint_d6d01526_27b5_4aa4_89a4_e88af5cfb062
position: {x: 4.6566126e-11, y: 0.00041905235, z: 1.2572854e-10}
rotation: {x: 0.06479874, y: -0.16685186, z: 0.1516151, w: 0.972098}
scale: {x: 1, y: 0.99999917, z: 0.9999991}
- name: HairJoint_49f26943_e85a_46fd_a05d_12029abeef0b_end
parentName: HairJoint_49f26943_e85a_46fd_a05d_12029abeef0b
position: {x: -0, y: 0.00041320553, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs
parentName: Head
position: {x: 0.00048972585, y: 0.0010279061, z: 0.00058358745}
rotation: {x: 0.61812246, y: -0.03497651, z: 0.64650714, w: -0.44579136}
scale: {x: 1.0000015, y: 1.0000035, z: 1.0000015}
- name: HairBangs_end
parentName: HairBangs
position: {x: -0, y: 0.00070842117, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.001
parentName: Head
position: {x: 0.00057053525, y: 0.00065232854, z: 0.00059643347}
rotation: {x: 0.42306075, y: -0.033579256, z: 0.89840126, w: -0.112991646}
scale: {x: 1.0000007, y: 1.000001, z: 1.0000004}
- name: HairBangs.001_end
parentName: HairBangs.001
position: {x: -0, y: 0.0005743215, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.002
parentName: Head
position: {x: 0.00071449846, y: 0.0008951155, z: 0.00022589843}
rotation: {x: 0.67604995, y: -0.033691913, z: 0.6786037, w: -0.28516394}
scale: {x: 1.000002, y: 1.0000049, z: 1.0000019}
- name: HairBangs.002_end
parentName: HairBangs.002
position: {x: -0, y: 0.000607466, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.003
parentName: Head
position: {x: 0.0005253641, y: 0.00087421027, z: 0.0008000575}
rotation: {x: 0.11939421, y: -0.20740673, z: 0.9047975, w: -0.3522343}
scale: {x: 1.000002, y: 1.0000013, z: 1.0000005}
- name: HairBangs.003_end
parentName: HairBangs.003
position: {x: -0, y: 0.000466321, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.004
parentName: Head
position: {x: -0.0000064955743, y: 0.00079624756, z: 0.00089324627}
rotation: {x: -0.5688045, y: -0.059376806, z: 0.81952333, w: -0.036295623}
scale: {x: 0.99999344, y: 1.0000031, z: 0.99999934}
- name: HairBangs.004_end
parentName: HairBangs.004
position: {x: -0, y: 0.00047401595, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.005
parentName: Head
position: {x: 0.0004330531, y: 0.0007035956, z: 0.0008885471}
rotation: {x: 0.9720155, y: 0.114272505, z: 0.20048018, w: -0.043994334}
scale: {x: 0.99999934, y: 1.0000026, z: 1.0000017}
- name: HairBangs.005_end
parentName: HairBangs.005
position: {x: -0, y: 0.00048621724, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.006
parentName: Head
position: {x: 0.00003059598, y: 0.00086932053, z: 0.0010295645}
rotation: {x: 0.20985718, y: -0.11072509, z: 0.9118249, w: 0.33507505}
scale: {x: 1.0000015, y: 1.0000012, z: 0.99999964}
- name: HairBangs.006_end
parentName: HairBangs.006
position: {x: -0, y: 0.00041058526, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.007
parentName: Head
position: {x: -0.00052656233, y: 0.00068892725, z: 0.00070298836}
rotation: {x: 0.9818848, y: -0.16578743, z: 0.042782933, w: -0.08115708}
scale: {x: 1.0000001, y: 1.0000024, z: 1.0000025}
- name: HairBangs.007_end
parentName: HairBangs.007
position: {x: -0, y: 0.00056853925, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.008
parentName: Head
position: {x: -0.00063237693, y: 0.00094411295, z: 0.00066422176}
rotation: {x: -0.338327, y: -0.22227088, z: 0.8201168, w: 0.40439966}
scale: {x: 1.0000038, y: 1.0000044, z: 1.0000002}
- name: HairBangs.008_end
parentName: HairBangs.008
position: {x: -0, y: 0.00051890203, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.009
parentName: Head
position: {x: -0.0005603285, y: 0.0007948109, z: 0.00076726783}
rotation: {x: 0.18274698, y: -0.44085348, z: 0.7949439, w: 0.37458766}
scale: {x: 1.0000039, y: 1.0000027, z: 1.0000011}
- name: HairBangs.009_end
parentName: HairBangs.009
position: {x: -0, y: 0.00037350567, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.010
parentName: Head
position: {x: -0.0001467801, y: 0.0010997732, z: 0.0009903682}
rotation: {x: 0.22546503, y: 0.12206704, z: 0.91269755, w: 0.31819567}
scale: {x: 1.0000026, y: 1.000003, z: 1.0000005}
- name: HairBangs.010_end
parentName: HairBangs.010
position: {x: -0, y: 0.00038300667, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.011
parentName: Head
position: {x: -0.00016876798, y: 0.0010996582, z: 0.0010040202}
rotation: {x: -0.0016595233, y: -0.20543383, z: 0.86604327, w: 0.4558106}
scale: {x: 1.0000039, y: 1.0000025, z: 1.0000005}
- name: HairBangs.011_end
parentName: HairBangs.011
position: {x: -0, y: 0.0003830072, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.012
parentName: Head
position: {x: 0.0000074028794, y: 0.00095489674, z: 0.0010697467}
rotation: {x: 0.77308613, y: -0.15551916, z: 0.5675552, w: 0.23671234}
scale: {x: 1.0000004, y: 1.0000029, z: 1.0000019}
- name: HairBangs.012_end
parentName: HairBangs.012
position: {x: -0, y: 0.00025536073, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.013
parentName: Head
position: {x: 0.00028011887, y: 0.00080643885, z: 0.00093758904}
rotation: {x: 0.9073042, y: -0.050991874, z: 0.4077307, w: -0.08918773}
scale: {x: 0.9999998, y: 1.0000014, z: 0.99999714}
- name: HairBangs.013_end
parentName: HairBangs.013
position: {x: -0, y: 0.0002458421, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.014
parentName: Head
position: {x: 0.0003895596, y: 0.001234609, z: 0.0008150986}
rotation: {x: 0.91858524, y: 0.23347679, z: 0.2493075, w: 0.19883543}
scale: {x: 1.000001, y: 1.0000015, z: 1.0000012}
- name: HairBangs.014_end
parentName: HairBangs.014
position: {x: -0, y: 0.00021969358, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.015
parentName: Head
position: {x: 0.0003050259, y: 0.0013082435, z: 0.0008400688}
rotation: {x: 0.7310756, y: -0.31360734, z: 0.34522793, w: 0.49799263}
scale: {x: 0.9999999, y: 1.0000017, z: 1.0000013}
- name: HairBangs.016
parentName: HairBangs.015
position: {x: -6.519258e-11, y: 0.00018121517, z: 5.681068e-10}
rotation: {x: -0.33058056, y: 0.0013558567, z: 0.24254246, w: 0.9120789}
scale: {x: 1.0000042, y: 0.9999984, z: 1.0000017}
- name: HairBangs.016_end
parentName: HairBangs.016
position: {x: -0, y: 0.0001499166, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.017
parentName: Head
position: {x: 0.00028500022, y: 0.00094032614, z: 0.0009753165}
rotation: {x: 0.8067438, y: -0.105976, z: 0.47534877, w: 0.3346299}
scale: {x: 1.0000011, y: 1.0000039, z: 1.0000029}
- name: HairBangs.017_end
parentName: HairBangs.017
position: {x: -0, y: 0.00021969114, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.018
parentName: Head
position: {x: 0.0002702579, y: 0.0011485813, z: 0.0009818048}
rotation: {x: 0.7353214, y: -0.21346599, z: 0.47692156, w: 0.43160224}
scale: {x: 1.0000002, y: 1.0000007, z: 0.9999997}
- name: HairBangs.018_end
parentName: HairBangs.018
position: {x: -0, y: 0.00021969163, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.019
parentName: Head
position: {x: 0.00031884792, y: 0.0013598629, z: 0.00071452087}
rotation: {x: 0.5807589, y: -0.19536231, z: -0.5351426, w: 0.5815282}
scale: {x: 1.0000012, y: 1.0000026, z: 1.0000007}
- name: HairBangs.020
parentName: HairBangs.019
position: {x: -0.0000000017508864, y: 0.00010225958, z: -5.2154064e-10}
rotation: {x: 0.09651843, y: 0.01049833, z: -0.20392892, w: 0.97415966}
scale: {x: 1.0000021, y: 1.0000033, z: 1.0000017}
- name: HairBangs.020_end
parentName: HairBangs.020
position: {x: -0, y: 0.000107355016, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.021
parentName: Head
position: {x: 0.00034065792, y: 0.0013678587, z: 0.0006946496}
rotation: {x: -0.5070929, y: -0.4527012, z: 0.68401074, w: -0.26466548}
scale: {x: 1.0000015, y: 1.000003, z: 1.0000008}
- name: HairBangs.022
parentName: HairBangs.021
position: {x: 9.313225e-11, y: 0.0001037408, z: -2.7474015e-10}
rotation: {x: 0.15756744, y: 0.028249294, z: -0.0047521293, w: 0.98709273}
scale: {x: 1.0000023, y: 1.0000021, z: 1.0000005}
- name: HairBangs.022_end
parentName: HairBangs.022
position: {x: -0, y: 0.00010526135, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.023
parentName: Head
position: {x: 0.00031836666, y: 0.0013791184, z: 0.0007263873}
rotation: {x: -0.40020266, y: 0.7666447, z: 0.33941686, w: 0.3699865}
scale: {x: 1.0000021, y: 1.0000006, z: 1.0000025}
- name: HairBangs.024
parentName: HairBangs.023
position: {x: -2.2351741e-10, y: 0.00009102173, z: -0.0000000010849908}
rotation: {x: -0.21018699, y: -0.059476055, z: -0.033742543, w: 0.97526693}
scale: {x: 1.0000012, y: 0.99999917, z: 1.0000012}
- name: HairBangs.024_end
parentName: HairBangs.024
position: {x: -0, y: 0.00012009119, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HairBangs.025
parentName: Head
position: {x: 0.00030793226, y: 0.001354718, z: 0.00073454465}
rotation: {x: -0.12732334, y: 0.7367334, z: 0.6387054, w: 0.18184696}
scale: {x: 1.0000038, y: 1.0000017, z: 1.0000013}
- name: HairBangs.026
parentName: HairBangs.025
position: {x: 9.313225e-11, y: 0.00014517705, z: 5.9604643e-10}
rotation: {x: -0.14608185, y: -0.0027701554, z: -0.05910565, w: 0.9875014}
scale: {x: 1, y: 0.99999833, z: 1.0000012}
- name: HairBangs.026_end
parentName: HairBangs.026
position: {x: -0, y: 0.00010444168, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Braid_ROOT
parentName: Head
position: {x: -0.00067923486, y: 0.0005537416, z: 0.00041935264}
rotation: {x: 0.9999997, y: -5.7819423e-11, z: 0.00000007549788, w: -0.0007658974}
scale: {x: 1, y: 1.0000005, z: 1.0000013}
- name: Braid_1
parentName: Braid_ROOT
position: {x: 0.000012249547, y: 0.000076043485, z: 0.00001908202}
rotation: {x: -0.026820127, y: 0.0026456749, z: -0.06865728, w: 0.9972763}
scale: {x: 1.0000007, y: 1.0000005, z: 1.0000027}
- name: Braid_1.001
parentName: Braid_1
position: {x: 6.108166e-11, y: 0.0007974638, z: 1.10594554e-11}
rotation: {x: -0.07810327, y: -0.059683777, z: 0.060875684, w: 0.9932935}
scale: {x: 1.0000001, y: 1.0000035, z: 1.000004}
- name: Braid_1.001_end
parentName: Braid_1.001
position: {x: -0, y: 0.00020333596, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Right shoulder
parentName: UperChest
position: {x: 0.00036467452, y: 0.0009659866, z: -0.000004115049}
rotation: {x: 0.54795134, y: 0.40132964, z: 0.54405826, w: -0.4926302}
scale: {x: 1.0000018, y: 1.0000017, z: 1.000003}
- name: Right arm
parentName: Right shoulder
position: {x: -0, y: 0.0009350109, z: -0.0000000012759119}
rotation: {x: 0.09885438, y: 0.07221415, z: -0.017134828, w: 0.99233025}
scale: {x: 1.0000023, y: 1.0000027, z: 1.000002}
- name: Right elbow
parentName: Right arm
position: {x: 4.6566128e-12, y: 0.002004446, z: -0.0000000011821976}
rotation: {x: 0.009352594, y: 0.015198212, z: -0.05905221, w: 0.99809533}
scale: {x: 1.0000024, y: 1.0000018, z: 1.0000021}
- name: Right wrist
parentName: Right elbow
position: {x: 4.6566126e-11, y: 0.0019579274, z: -3.4488037e-11}
rotation: {x: -0.0036211163, y: -0.0037365058, z: -0.0034357894, w: 0.9999806}
scale: {x: 1.0000021, y: 1.0000027, z: 1.0000018}
- name: Thumb0_R
parentName: Right wrist
position: {x: 0.00028095685, y: 0.00012240665, z: -0.00008658736}
rotation: {x: -0.18053174, y: -0.29599383, z: -0.36704347, w: 0.86317736}
scale: {x: 1.0000021, y: 1.0000018, z: 1}
- name: Thumb0_R.002
parentName: Thumb0_R
position: {x: 0.0000000032968819, y: 0.00022912741, z: 0.0000000030826777}
rotation: {x: 0.021830086, y: 0.0503035, z: 0.030979887, w: 0.99801475}
scale: {x: 1.0000031, y: 1.0000014, z: 1.000003}
- name: Thumb0_R.001
parentName: Thumb0_R.002
position: {x: -3.352761e-10, y: 0.00025863748, z: 0.0000000016111881}
rotation: {x: 0.031595297, y: 0.050719406, z: 0.025587818, w: 0.99788505}
scale: {x: 0.99999934, y: 0.9999987, z: 0.9999998}
- name: Thumb0_R.001_end
parentName: Thumb0_R.001
position: {x: -0, y: 0.00025863675, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger_R.001
parentName: Right wrist
position: {x: 0.00029541238, y: 0.0007685789, z: 0.000044620992}
rotation: {x: -0.035238568, y: -0.39931136, z: -0.00027265763, w: 0.9161379}
scale: {x: 1.0000017, y: 0.9999997, z: 1.000001}
- name: IndexFinger_R.002
parentName: IndexFinger_R.001
position: {x: -6.891787e-10, y: 0.00021393561, z: 8.754432e-10}
rotation: {x: 0.0000036358824, y: 0.000009417532, z: -0.000004027038, w: 1}
scale: {x: 0.9999998, y: 1.0000008, z: 0.99999994}
- name: IndexFinger_R.003
parentName: IndexFinger_R.002
position: {x: -4.0978193e-10, y: 0.00021393485, z: 0.000000001117587}
rotation: {x: -0.000007511452, y: 0.335805, z: 0.000004004084, w: 0.94193155}
scale: {x: 1.0000033, y: 1.0000008, z: 1.0000005}
- name: IndexFinger_R.003_end
parentName: IndexFinger_R.003
position: {x: -0, y: 0.00021393498, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger_R.001
parentName: Right wrist
position: {x: 0.000104810526, y: 0.0007977133, z: 0.00004971527}
rotation: {x: -0.033328205, y: -0.03439664, z: -0.008798842, w: 0.9988136}
scale: {x: 1.0000013, y: 0.9999995, z: 1.0000005}
- name: MiddleFinger_R.002
parentName: MiddleFinger_R.001
position: {x: 3.72529e-10, y: 0.00024750162, z: 0.000000002295128}
rotation: {x: -0.0000000037252894, y: 0.0000003501772, z: -0.00000009383073,
w: 1}
scale: {x: 0.9999984, y: 0.9999992, z: 0.99999934}
- name: MiddleFinger_R.003
parentName: MiddleFinger_R.002
position: {x: 1.6763806e-10, y: 0.0002475035, z: -0.0000000018073478}
rotation: {x: 0.0000023320313, y: 0.0000022128224, z: 0.00000019592778, w: 1}
scale: {x: 1.0000013, y: 1.0000014, z: 1.0000006}
- name: MiddleFinger_R.003_end
parentName: MiddleFinger_R.003
position: {x: -0, y: 0.0002475026, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger_R.001
parentName: Right wrist
position: {x: -0.000079653866, y: 0.00076716644, z: 0.00003385062}
rotation: {x: -0.042443566, y: -0.06452119, z: -0.022716371, w: 0.9967545}
scale: {x: 1.0000006, y: 1.0000002, z: 1.0000005}
- name: RingFinger_R.002
parentName: RingFinger_R.001
position: {x: 5.5879353e-11, y: 0.00023913373, z: 2.4447217e-11}
rotation: {x: 0.000002250075, y: 0.0000026449559, z: -0.000000008847564, w: 1}
scale: {x: 0.9999994, y: 1.0000004, z: 1.0000004}
- name: RingFinger_R.003
parentName: RingFinger_R.002
position: {x: -3.678724e-10, y: 0.00023913321, z: 0.0000000019645086}
rotation: {x: -0.000004954636, y: -0.0000053048125, z: 0.00000022118792, w: 1}
scale: {x: 1.0000037, y: 1.0000035, z: 1.0000026}
- name: RingFinger_R.003_end
parentName: RingFinger_R.003
position: {x: -0, y: 0.00023913308, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LittleFinger_R.001
parentName: Right wrist
position: {x: -0.0002474322, y: 0.0007499294, z: -0.000048719536}
rotation: {x: -0.029175397, y: -0.06843931, z: -0.0087072225, w: 0.99719065}
scale: {x: 1.0000017, y: 0.9999992, z: 1.0000013}
- name: LittleFinger_R.002
parentName: LittleFinger_R.001
position: {x: 3.7252902e-11, y: 0.00019770338, z: -0.0000000013480894}
rotation: {x: 0.001253426, y: 0.0022850705, z: -0.008146089, w: 0.9999635}
scale: {x: 1.0000021, y: 1.0000029, z: 1.0000011}
- name: LittleFinger_R.003
parentName: LittleFinger_R.002
position: {x: 9.313225e-11, y: 0.00018007617, z: 3.7252902e-11}
rotation: {x: -0.002758945, y: -0.0024134112, z: -0.002480515, w: 0.9999902}
scale: {x: 1.0000011, y: 1.0000019, z: 1.0000007}
- name: LittleFinger_R.003_end
parentName: LittleFinger_R.003
position: {x: -0, y: 0.0001800774, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Left Leg
parentName: Hips
position: {x: -0.0006902266, y: -0.00017511258, z: -9.36717e-11}
rotation: {x: 0.9987858, y: -0.034803737, z: -0.034800515, w: -0.00213784}
scale: {x: 1.0000087, y: 0.9999999, z: 1}
- name: Left Knee
parentName: Left Leg
position: {x: 3.958121e-11, y: 0.0033960494, z: 3.0267983e-11}
rotation: {x: 0.072131425, y: 0.009668204, z: -0.014746331, w: 0.9972393}
scale: {x: 1.0000007, y: 1.0000017, z: 1.0000017}
- name: Left ankle
parentName: Left Knee
position: {x: -1.3504177e-10, y: 0.0033553482, z: 3.7252902e-11}
rotation: {x: -0.5038669, y: 0.031109262, z: -0.01153852, w: 0.86314374}
scale: {x: 1, y: 1.000001, z: 1.0000007}
- name: Left toe
parentName: Left ankle
position: {x: 1.956505e-10, y: 0.001088035, z: 1.7549609e-10}
rotation: {x: -0.28797793, y: 0.0036302472, z: -0.0017221925, w: 0.9576286}
scale: {x: 0.9999988, y: 0.9999997, z: 1.0000012}
- name: Left toe_end
parentName: Left toe
position: {x: -0, y: 0.0010880348, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Pants_Straps_003
parentName: Left Leg
position: {x: -0.0002278928, y: 0.0010417667, z: -0.0007656276}
rotation: {x: -0.057679728, y: -0.0063905353, z: 0.010445642, w: 0.99826}
scale: {x: 1.0000001, y: 1.0000008, z: 0.99999875}
- name: Pants_Straps_004
parentName: Pants_Straps_003
position: {x: 1.5832484e-10, y: 0.00024104533, z: 8.381903e-11}
rotation: {x: 0.14431947, y: 0.05136229, z: -0.05776877, w: 0.9865073}
scale: {x: 0.9999991, y: 1.0000026, z: 1.0000033}
- name: Pants_Straps_005
parentName: Pants_Straps_004
position: {x: 6.984919e-12, y: 0.00027480992, z: 2.7939677e-11}
rotation: {x: -0.08224996, y: -0.023121418, z: 0.02555902, w: 0.9960156}
scale: {x: 0.9999991, y: 1.0000031, z: 1.0000036}
- name: Pants_Straps_005_end
parentName: Pants_Straps_005
position: {x: -0, y: 0.00032790372, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Pants_Straps_006
parentName: Left Leg
position: {x: -0.0007563974, y: 0.0022622223, z: -0.00026285928}
rotation: {x: -0.0404242, y: -0.024291499, z: 0.027218617, w: 0.9985164}
scale: {x: 1.0000005, y: 1.0000004, z: 0.99999994}
- name: Pants_Straps_007
parentName: Pants_Straps_006
position: {x: 1.7695129e-10, y: 0.00024809653, z: 9.313225e-11}
rotation: {x: 0.061475247, y: 0.12215865, z: -0.12028793, w: 0.9832746}
scale: {x: 0.99999785, y: 1.0000032, z: 1.0000012}
- name: Pants_Straps_008
parentName: Pants_Straps_007
position: {x: 2.7939677e-11, y: 0.00026411036, z: 7.4505804e-11}
rotation: {x: -0.046281688, y: -0.07999153, z: 0.07800222, w: 0.9926606}
scale: {x: 0.9999928, y: 1.0000049, z: 1.000005}
- name: Pants_Straps_008_end
parentName: Pants_Straps_008
position: {x: -0, y: 0.00032216276, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Pants_Straps_009
parentName: Left Leg
position: {x: -0.0006916427, y: 0.0022733551, z: 0.00044991626}
rotation: {x: 0.015447903, y: -0.056291874, z: 0.05545387, w: 0.99675345}
scale: {x: 1, y: 0.9999996, z: 1.0000004}
- name: Pants_Straps_010
parentName: Pants_Straps_009
position: {x: -1.3969838e-10, y: 0.00025135404, z: -1.8626451e-11}
rotation: {x: -0.0544724, y: 0.13884385, z: -0.13373357, w: 0.97972983}
scale: {x: 0.99999297, y: 1.0000048, z: 1.0000048}
- name: Pants_Straps_011
parentName: Pants_Straps_010
position: {x: -2.561137e-11, y: 0.000280827, z: -1.8626451e-11}
rotation: {x: 0.025335498, y: -0.07326153, z: 0.070254415, w: 0.99451256}
scale: {x: 0.99999446, y: 1.0000057, z: 1.0000064}
- name: Pants_Straps_011_end
parentName: Pants_Straps_011
position: {x: -0, y: 0.00028592898, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Pants_Straps_022
parentName: Left Leg
position: {x: 0.00011575387, y: 0.00045702772, z: 0.0011032987}
rotation: {x: 0.050944638, y: -0.0223451, z: 0.018882861, w: 0.9982729}
scale: {x: 0.99999976, y: 1.0000002, z: 1.0000013}
- name: Pants_Straps_023
parentName: Pants_Straps_022
position: {x: 1.0244548e-10, y: 0.0002666654, z: -7.916242e-11}
rotation: {x: -0.15030697, y: 0.07303621, z: -0.063622944, w: 0.98388296}
scale: {x: 0.99999785, y: 1.0000015, z: 1.0000036}
- name: Pants_Straps_024
parentName: Pants_Straps_023
position: {x: -2.7939677e-11, y: 0.0002898262, z: 6.984919e-12}
rotation: {x: 0.036800433, y: -0.032400794, z: 0.02749286, w: 0.9984188}
scale: {x: 1.0000002, y: 1.0000019, z: 1.0000008}
- name: Pants_Straps_025
parentName: Pants_Straps_024
position: {x: 3.958121e-11, y: 0.00032300895, z: 2.7939677e-11}
rotation: {x: 0.051285245, y: -0.00036547333, z: -0.0012947003, w: 0.99868315}
scale: {x: 0.99999934, y: 1.0000064, z: 1.0000068}
- name: Pants_Straps_025_end
parentName: Pants_Straps_025
position: {x: -0, y: 0.00035387216, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Butt_L
parentName: Hips
position: {x: -0.0007371824, y: -0.00017511254, z: -0.000085064596}
rotation: {x: -0.7071066, y: -0, z: -0, w: 0.70710695}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: Butt_L_end
parentName: Butt_L
position: {x: -0, y: 0.00074495585, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Right Leg
parentName: Hips
position: {x: 0.0006902266, y: -0.00017511258, z: -9.36717e-11}
rotation: {x: 0.9987858, y: 0.034803737, z: 0.034800515, w: -0.00213784}
scale: {x: 1.0000087, y: 0.9999999, z: 1}
- name: Right Knee
parentName: Right Leg
position: {x: -3.958121e-11, y: 0.0033960494, z: 3.0267983e-11}
rotation: {x: 0.072131425, y: -0.009668204, z: 0.014746331, w: 0.9972393}
scale: {x: 1.0000007, y: 1.0000017, z: 1.0000017}
- name: Right ankle
parentName: Right Knee
position: {x: 1.3504177e-10, y: 0.0033553482, z: 3.7252902e-11}
rotation: {x: -0.5038669, y: -0.031109262, z: 0.01153852, w: 0.86314374}
scale: {x: 1, y: 1.000001, z: 1.0000007}
- name: Right toe
parentName: Right ankle
position: {x: -1.956505e-10, y: 0.001088035, z: 1.7549609e-10}
rotation: {x: -0.28797793, y: -0.0036302472, z: 0.0017221925, w: 0.9576286}
scale: {x: 0.9999988, y: 0.9999997, z: 1.0000012}
- name: Right toe_end
parentName: Right toe
position: {x: -0, y: 0.0010880348, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Pants_Straps
parentName: Right Leg
position: {x: 0.00020785899, y: 0.0011056596, z: -0.00076331146}
rotation: {x: -0.085699394, y: 0.03480448, z: -0.04093801, w: 0.9948711}
scale: {x: 0.9999995, y: 0.9999994, z: 0.9999987}
- name: Pants_Straps_001
parentName: Pants_Straps
position: {x: -5.5879353e-11, y: 0.0002352913, z: 7.4505804e-11}
rotation: {x: 0.17178878, y: -0.0781933, z: 0.08917476, w: 0.97796845}
scale: {x: 0.999997, y: 1.0000037, z: 1.0000029}
- name: Pants_Straps_002
parentName: Pants_Straps_001
position: {x: 1.8626451e-11, y: 0.00027481525, z: -5.820766e-11}
rotation: {x: -0.08225007, y: 0.02312236, z: -0.025558596, w: 0.9960156}
scale: {x: 0.9999995, y: 1.0000054, z: 1.0000057}
- name: Pants_Straps_002_end
parentName: Pants_Straps_002
position: {x: -0, y: 0.00032790372, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Pants_Straps_012
parentName: Right Leg
position: {x: 0.00068403303, y: 0.0022866619, z: -0.0002576999}
rotation: {x: -0.04859885, y: 0.044655647, z: -0.048240412, w: 0.9966529}
scale: {x: 1.0000008, y: 1.0000014, z: 1.0000007}
- name: Pants_Straps_013
parentName: Pants_Straps_012
position: {x: 1.8626451e-11, y: 0.00028275643, z: 1.8626451e-11}
rotation: {x: 0.066388674, y: -0.12987977, z: 0.1286037, w: 0.9809103}
scale: {x: 0.9999946, y: 1.000006, z: 1.000006}
- name: Pants_Straps_014
parentName: Pants_Straps_013
position: {x: 4.6566126e-11, y: 0.00027006725, z: 1.8626451e-11}
rotation: {x: -0.049564462, y: 0.07816082, z: -0.07642914, w: 0.99277025}
scale: {x: 0.9999941, y: 1.0000031, z: 1.0000027}
- name: Pants_Straps_014_end
parentName: Pants_Straps_014
position: {x: -0, y: 0.0002541232, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Pants_Straps_015
parentName: Right Leg
position: {x: 0.0006336516, y: 0.0022813245, z: 0.00043713482}
rotation: {x: 0.027840931, y: 0.050682586, z: -0.04895495, w: 0.9971257}
scale: {x: 1.0000007, y: 1.000003, z: 1.0000014}
- name: Pants_Straps_016
parentName: Pants_Straps_015
position: {x: -5.820766e-11, y: 0.00028244875, z: -5.5879353e-11}
rotation: {x: -0.07449123, y: -0.12890972, z: 0.12386874, w: 0.9810657}
scale: {x: 0.9999935, y: 1.0000042, z: 1.0000069}
- name: Pants_Straps_017
parentName: Pants_Straps_016
position: {x: -1.5599652e-10, y: 0.00027016262, z: -1.8626451e-11}
rotation: {x: 0.039532613, y: 0.08422513, z: -0.080182225, w: 0.99242836}
scale: {x: 0.99999535, y: 1.0000057, z: 1.0000062}
- name: Pants_Straps_017_end
parentName: Pants_Straps_017
position: {x: -0, y: 0.0002541547, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Pants_Straps_018
parentName: Right Leg
position: {x: -0.00020533471, y: 0.0004786799, z: 0.0010996346}
rotation: {x: 0.06980613, y: 0.016146498, z: -0.011340839, w: 0.9973654}
scale: {x: 1.0000006, y: 0.99999946, z: 1.0000004}
- name: Pants_Straps_019
parentName: Pants_Straps_018
position: {x: 1.0244548e-10, y: 0.00027594136, z: 1.6763806e-10}
rotation: {x: -0.21041979, y: -0.055435583, z: 0.04200534, w: 0.9751339}
scale: {x: 0.99999946, y: 1.0000036, z: 1.0000035}
- name: Pants_Straps_020
parentName: Pants_Straps_019
position: {x: -8.076313e-12, y: 0.00028056168, z: -1.6931152e-10}
rotation: {x: 0.08790998, y: 0.019988433, z: -0.015160189, w: 0.99581254}
scale: {x: 0.9999989, y: 1.0000064, z: 1.0000077}
- name: Pants_Straps_021
parentName: Pants_Straps_020
position: {x: -2.0954757e-11, y: 0.00031499652, z: -5.3551046e-11}
rotation: {x: 0.04295783, y: -0.01466735, z: 0.014597629, w: 0.9988626}
scale: {x: 1.0000013, y: 1.0000033, z: 1.0000027}
- name: Pants_Straps_021_end
parentName: Pants_Straps_021
position: {x: -0, y: 0.00033946882, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Butt_R
parentName: Hips
position: {x: 0.0007371824, y: -0.00017511254, z: -0.000085064596}
rotation: {x: -0.7071066, y: -0, z: -0, w: 0.70710695}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: Butt_R_end
parentName: Butt_R
position: {x: -0, y: 0.00074495585, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: DrawStrings
parentName: Hips
position: {x: 0.00012461511, y: 0.000046809553, z: 0.00076232664}
rotation: {x: 0.99876434, y: 0.032356307, z: 0.032361668, w: 0.019379945}
scale: {x: 1.0000044, y: 1.0000002, z: 1.0000045}
- name: DrawStrings_002
parentName: DrawStrings
position: {x: 6.984919e-11, y: 0.0003904839, z: 4.307367e-11}
rotation: {x: 0.000060375784, y: -0.02984517, z: 0.028712844, w: 0.99914205}
scale: {x: 1, y: 0.9999996, z: 1.0000002}
- name: DrawStrings_001
parentName: DrawStrings_002
position: {x: -4.6566128e-12, y: 0.0003923533, z: -1.6443664e-11}
rotation: {x: 0.00000014715626, y: 0.0000008773059, z: -0.00000016135574, w: 1}
scale: {x: 0.99999946, y: 1.0000005, z: 1.0000001}
- name: DrawStrings_003
parentName: DrawStrings_001
position: {x: 6.4028427e-12, y: 0.00039235372, z: 1.8058927e-10}
rotation: {x: -0.0055438033, y: -0.000000036276223, z: -0.000033507997, w: 0.9999846}
scale: {x: 0.99999994, y: 1.0000001, z: 1.0000006}
- name: DrawStrings_003_end
parentName: DrawStrings_003
position: {x: -0, y: 0.00039254548, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: DrawStrings_004
parentName: Hips
position: {x: -0.0001367584, y: 0.00004719102, z: 0.00076227594}
rotation: {x: 0.99944437, y: -0.01877761, z: -0.018770209, w: 0.020150246}
scale: {x: 1.0000054, y: 1.0000001, z: 1.0000069}
- name: DrawStrings_005
parentName: DrawStrings_004
position: {x: 2.7939677e-11, y: 0.0003904828, z: -2.3283063e-11}
rotation: {x: 0.0009276718, y: 0.029841304, z: -0.028695626, w: 0.9991423}
scale: {x: 1, y: 1.000003, z: 1.0000012}
- name: DrawStrings_006
parentName: DrawStrings_005
position: {x: 6.984919e-12, y: 0.00039235334, z: -1.02154445e-10}
rotation: {x: 0.0000001761364, y: -0.000000013038517, z: 0.000000048146834,
w: 1}
scale: {x: 0.9999993, y: 1.0000006, z: 1.0000011}
- name: DrawStrings_006_end
parentName: DrawStrings_006
position: {x: -0, y: 0.00039235348, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Pants
parentName: Naro(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 100, y: 100, z: 100}
- name: Shoes
parentName: Naro(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 100, y: 100, z: 100}
- name: TechShirt
parentName: Naro(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 100, y: 100, z: 100}
- name: UnderShirt
parentName: Naro(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 100, y: 100, z: 100}
- name: BraidHair
parentName: Naro(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 100, y: 100, z: 100}
- name: Body
parentName: Naro(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 100, y: 100, z: 100}
- name: AnimeHair
parentName: Naro(Clone)
position: {x: -0.008920405, y: 0.0007470147, z: -0.022217473}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 100, y: 100, z: 100}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 1
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 3
humanoidOversampling: 1
avatarSetup: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
|