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
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
|
; FBX 7.3.0 project file
; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors.
; All rights reserved.
; ----------------------------------------------------
FBXHeaderExtension: {
FBXHeaderVersion: 1003
FBXVersion: 7300
CreationTimeStamp: {
Version: 1000
Year: 2020
Month: 5
Day: 4
Hour: 13
Minute: 15
Second: 13
Millisecond: 691
}
Creator: "FBX SDK/FBX Plugins version 2013.3"
SceneInfo: "SceneInfo::GlobalInfo", "UserData" {
Type: "UserData"
Version: 100
MetaData: {
Version: 100
Title: ""
Subject: ""
Author: ""
Keywords: ""
Revision: ""
Comment: ""
}
Properties70: {
P: "DocumentUrl", "KString", "Url", "", "C:\Users\arong\a-pathfinding-project\Assets\AstarPathfindingProject\ExampleScenes\Prefabs\MineBot\FBX 2013\mine_bot@right.FBX"
P: "SrcDocumentUrl", "KString", "Url", "", "C:\Users\arong\a-pathfinding-project\Assets\AstarPathfindingProject\ExampleScenes\Prefabs\MineBot\FBX 2013\mine_bot@right.FBX"
P: "Original", "Compound", "", ""
P: "Original|ApplicationVendor", "KString", "", "", "Autodesk"
P: "Original|ApplicationName", "KString", "", "", "3ds Max"
P: "Original|ApplicationVersion", "KString", "", "", "2011.1"
P: "Original|DateTime_GMT", "DateTime", "", "", "27/02/2011 00:08:21.707"
P: "Original|FileName", "KString", "", "", "C:\Users\bret.church\Documents\3-5_RobotSwarm\Assets\Objects\Enemies\mine_bot@right.FBX"
P: "LastSaved", "Compound", "", ""
P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk"
P: "LastSaved|ApplicationName", "KString", "", "", "3ds Max"
P: "LastSaved|ApplicationVersion", "KString", "", "", "2011.1"
P: "LastSaved|DateTime_GMT", "DateTime", "", "", "27/02/2011 00:08:21.707"
}
}
}
GlobalSettings: {
Version: 1000
Properties70: {
P: "UpAxis", "int", "Integer", "",2
P: "UpAxisSign", "int", "Integer", "",1
P: "FrontAxis", "int", "Integer", "",1
P: "FrontAxisSign", "int", "Integer", "",-1
P: "CoordAxis", "int", "Integer", "",0
P: "CoordAxisSign", "int", "Integer", "",1
P: "OriginalUpAxis", "int", "Integer", "",2
P: "OriginalUpAxisSign", "int", "Integer", "",1
P: "UnitScaleFactor", "double", "Number", "",1
P: "OriginalUnitScaleFactor", "double", "Number", "",1
P: "AmbientColor", "ColorRGB", "Color", "",0,0,0
P: "DefaultCamera", "KString", "", "", "Producer Perspective"
P: "TimeMode", "enum", "", "",6
P: "TimeSpanStart", "KTime", "Time", "",0
P: "TimeSpanStop", "KTime", "Time", "",18474463200
P: "CustomFrameRate", "double", "Number", "",-1
}
}
; Documents Description
;------------------------------------------------------------------
Documents: {
Count: 1
Document: 51509152, "", "Scene" {
Properties70: {
P: "SourceObject", "object", "", ""
P: "ActiveAnimStackName", "KString", "", "", ""
}
RootNode: 0
}
}
; Document References
;------------------------------------------------------------------
References: {
}
; Object definitions
;------------------------------------------------------------------
Definitions: {
Version: 100
Count: 123
ObjectType: "GlobalSettings" {
Count: 1
}
ObjectType: "NodeAttribute" {
Count: 1
PropertyTemplate: "FbxNull" {
Properties70: {
P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
P: "Size", "double", "Number", "",100
P: "Look", "enum", "", "",1
}
}
}
ObjectType: "Model" {
Count: 11
PropertyTemplate: "FbxNode" {
Properties70: {
P: "QuaternionInterpolate", "enum", "", "",0
P: "RotationOffset", "Vector3D", "Vector", "",0,0,0
P: "RotationPivot", "Vector3D", "Vector", "",0,0,0
P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0
P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0
P: "TranslationActive", "bool", "", "",0
P: "TranslationMin", "Vector3D", "Vector", "",0,0,0
P: "TranslationMax", "Vector3D", "Vector", "",0,0,0
P: "TranslationMinX", "bool", "", "",0
P: "TranslationMinY", "bool", "", "",0
P: "TranslationMinZ", "bool", "", "",0
P: "TranslationMaxX", "bool", "", "",0
P: "TranslationMaxY", "bool", "", "",0
P: "TranslationMaxZ", "bool", "", "",0
P: "RotationOrder", "enum", "", "",0
P: "RotationSpaceForLimitOnly", "bool", "", "",0
P: "RotationStiffnessX", "double", "Number", "",0
P: "RotationStiffnessY", "double", "Number", "",0
P: "RotationStiffnessZ", "double", "Number", "",0
P: "AxisLen", "double", "Number", "",10
P: "PreRotation", "Vector3D", "Vector", "",0,0,0
P: "PostRotation", "Vector3D", "Vector", "",0,0,0
P: "RotationActive", "bool", "", "",0
P: "RotationMin", "Vector3D", "Vector", "",0,0,0
P: "RotationMax", "Vector3D", "Vector", "",0,0,0
P: "RotationMinX", "bool", "", "",0
P: "RotationMinY", "bool", "", "",0
P: "RotationMinZ", "bool", "", "",0
P: "RotationMaxX", "bool", "", "",0
P: "RotationMaxY", "bool", "", "",0
P: "RotationMaxZ", "bool", "", "",0
P: "InheritType", "enum", "", "",0
P: "ScalingActive", "bool", "", "",0
P: "ScalingMin", "Vector3D", "Vector", "",0,0,0
P: "ScalingMax", "Vector3D", "Vector", "",1,1,1
P: "ScalingMinX", "bool", "", "",0
P: "ScalingMinY", "bool", "", "",0
P: "ScalingMinZ", "bool", "", "",0
P: "ScalingMaxX", "bool", "", "",0
P: "ScalingMaxY", "bool", "", "",0
P: "ScalingMaxZ", "bool", "", "",0
P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0
P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0
P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1
P: "MinDampRangeX", "double", "Number", "",0
P: "MinDampRangeY", "double", "Number", "",0
P: "MinDampRangeZ", "double", "Number", "",0
P: "MaxDampRangeX", "double", "Number", "",0
P: "MaxDampRangeY", "double", "Number", "",0
P: "MaxDampRangeZ", "double", "Number", "",0
P: "MinDampStrengthX", "double", "Number", "",0
P: "MinDampStrengthY", "double", "Number", "",0
P: "MinDampStrengthZ", "double", "Number", "",0
P: "MaxDampStrengthX", "double", "Number", "",0
P: "MaxDampStrengthY", "double", "Number", "",0
P: "MaxDampStrengthZ", "double", "Number", "",0
P: "PreferedAngleX", "double", "Number", "",0
P: "PreferedAngleY", "double", "Number", "",0
P: "PreferedAngleZ", "double", "Number", "",0
P: "LookAtProperty", "object", "", ""
P: "UpVectorProperty", "object", "", ""
P: "Show", "bool", "", "",1
P: "NegativePercentShapeSupport", "bool", "", "",1
P: "DefaultAttributeIndex", "int", "Integer", "",-1
P: "Freeze", "bool", "", "",0
P: "LODBox", "bool", "", "",0
P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0
P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0
P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1
P: "Visibility", "Visibility", "", "A",1
P: "Visibility Inheritance", "Visibility Inheritance", "", "",1
}
}
}
ObjectType: "Material" {
Count: 1
PropertyTemplate: "FbxSurfacePhong" {
Properties70: {
P: "ShadingModel", "KString", "", "", "Phong"
P: "MultiLayer", "bool", "", "",0
P: "EmissiveColor", "Color", "", "A",0,0,0
P: "EmissiveFactor", "Number", "", "A",1
P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2
P: "AmbientFactor", "Number", "", "A",1
P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8
P: "DiffuseFactor", "Number", "", "A",1
P: "Bump", "Vector3D", "Vector", "",0,0,0
P: "NormalMap", "Vector3D", "Vector", "",0,0,0
P: "BumpFactor", "double", "Number", "",1
P: "TransparentColor", "Color", "", "A",0,0,0
P: "TransparencyFactor", "Number", "", "A",0
P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0
P: "DisplacementFactor", "double", "Number", "",1
P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0
P: "VectorDisplacementFactor", "double", "Number", "",1
P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2
P: "SpecularFactor", "Number", "", "A",1
P: "ShininessExponent", "Number", "", "A",20
P: "ReflectionColor", "Color", "", "A",0,0,0
P: "ReflectionFactor", "Number", "", "A",1
}
}
}
ObjectType: "Texture" {
Count: 2
PropertyTemplate: "FbxFileTexture" {
Properties70: {
P: "TextureTypeUse", "enum", "", "",0
P: "Texture alpha", "Number", "", "A",1
P: "CurrentMappingType", "enum", "", "",0
P: "WrapModeU", "enum", "", "",0
P: "WrapModeV", "enum", "", "",0
P: "UVSwap", "bool", "", "",0
P: "PremultiplyAlpha", "bool", "", "",1
P: "Translation", "Vector", "", "A",0,0,0
P: "Rotation", "Vector", "", "A",0,0,0
P: "Scaling", "Vector", "", "A",1,1,1
P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0
P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0
P: "CurrentTextureBlendMode", "enum", "", "",1
P: "UVSet", "KString", "", "", "default"
P: "UseMaterial", "bool", "", "",0
P: "UseMipMap", "bool", "", "",0
}
}
}
ObjectType: "Video" {
Count: 2
PropertyTemplate: "FbxVideo" {
Properties70: {
P: "ImageSequence", "bool", "", "",0
P: "ImageSequenceOffset", "int", "Integer", "",0
P: "FrameRate", "double", "Number", "",0
P: "LastFrame", "int", "Integer", "",0
P: "Width", "int", "Integer", "",0
P: "Height", "int", "Integer", "",0
P: "Path", "KString", "XRefUrl", "", ""
P: "StartFrame", "int", "Integer", "",0
P: "StopFrame", "int", "Integer", "",0
P: "PlaySpeed", "double", "Number", "",0
P: "Offset", "KTime", "Time", "",0
P: "InterlaceMode", "enum", "", "",0
P: "FreeRunning", "bool", "", "",0
P: "Loop", "bool", "", "",0
P: "AccessMode", "enum", "", "",0
}
}
}
ObjectType: "AnimationStack" {
Count: 1
PropertyTemplate: "FbxAnimStack" {
Properties70: {
P: "Description", "KString", "", "", ""
P: "LocalStart", "KTime", "Time", "",0
P: "LocalStop", "KTime", "Time", "",0
P: "ReferenceStart", "KTime", "Time", "",0
P: "ReferenceStop", "KTime", "Time", "",0
}
}
}
ObjectType: "AnimationLayer" {
Count: 1
PropertyTemplate: "FbxAnimLayer" {
Properties70: {
P: "Weight", "Number", "", "A",100
P: "Mute", "bool", "", "",0
P: "Solo", "bool", "", "",0
P: "Lock", "bool", "", "",0
P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
P: "BlendMode", "enum", "", "",0
P: "RotationAccumulationMode", "enum", "", "",0
P: "ScaleAccumulationMode", "enum", "", "",0
P: "BlendModeBypass", "ULongLong", "", "",0
}
}
}
ObjectType: "Geometry" {
Count: 10
PropertyTemplate: "FbxMesh" {
Properties70: {
P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
P: "BBoxMin", "Vector3D", "Vector", "",0,0,0
P: "BBoxMax", "Vector3D", "Vector", "",0,0,0
P: "Primary Visibility", "bool", "", "",1
P: "Casts Shadows", "bool", "", "",1
P: "Receive Shadows", "bool", "", "",1
}
}
}
ObjectType: "CollectionExclusive" {
Count: 1
PropertyTemplate: "FbxDisplayLayer" {
Properties70: {
P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
P: "Show", "bool", "", "",1
P: "Freeze", "bool", "", "",0
P: "LODBox", "bool", "", "",0
}
}
}
ObjectType: "AnimationCurve" {
Count: 69
}
ObjectType: "AnimationCurveNode" {
Count: 23
PropertyTemplate: "FbxAnimCurveNode" {
Properties70: {
P: "d", "Compound", "", ""
}
}
}
}
; Object properties
;------------------------------------------------------------------
Objects: {
NodeAttribute: 79188640, "NodeAttribute::", "Null" {
Properties70: {
P: "Look", "enum", "", "",0
}
TypeFlags: "Null"
}
Geometry: 51964896, "Geometry::", "Mesh" {
Properties70: {
P: "Color", "ColorRGB", "Color", "",0,0,0
}
Vertices: *480 {
a: -12.4304065704346,-29.9597072601318,-21.1175994873047,-17.2964401245117,-29.9582748413086,-6.91423797607422,-17.2957763671875,-29.9571266174316,4.9024829864502,-18.784008026123,-28.4702091217041,-6.91993713378906,-18.7836952209473,-28.4697322845459,1.51968765258789,-12.4040145874023,-26.4017734527588,-25.5209121704102,-13.9182891845703,-28.4721145629883,-21.1218719482422,-13.8918981552124,-24.9141826629639,-25.5237655639648,-9.09450340270996,-18.7805480957031,1.51883316040039,-9.09450149536133,-18.7805480957031,-6.92079544067383,-6.66060733795166,-21.2144393920898,-21.1221580505371,-8.42637538909912,-19.4486656188965,-25.5237655639648,-29.95969581604,12.4303960800171,-21.1175994873047,-29.9582633972168,17.2964286804199,-6.91423797607422,-28.4701976776123,18.7839965820313,-6.91993713378906,-28.4697208404541,18.7836837768555,1.51968765258789,-26.401762008667,12.4040040969849,-25.5209121704102,-28.4721031188965,13.9182786941528,-21.1218719482422,-24.9141712188721,13.8918876647949,-25.5237655639648,-18.7805366516113,9.09449291229248,1.51883316040039,-18.7805366516113,9.09449100494385,-6.92079544067383,-21.214427947998,6.66059637069702,-21.1221580505371,-19.4486541748047,8.42636489868164,-25.5237655639648,-28.6946487426758,-16.5668678283691,6.47702598571777,-29.9571208953857,-17.2957763671875,4.9024829864502,-28.4697284698486,-18.7836971282959,1.51968812942505,-29.9596996307373,-12.4304075241089,-21.1175975799561,-28.4721088409424,-13.9182901382446,-21.1218719482422,-24.914176940918,-13.8919010162354,-25.5237636566162,-26.4017658233643,-12.404016494751,-25.5209121704102,-28.4702053070068,-18.7840099334717,-6.9199390411377,-18.7805404663086,-9.09450626373291,-6.92079448699951,-21.2144298553467,-6.66061115264893,-21.1221580505371,-19.448657989502,-8.4263801574707,-25.5237636566162,-18.7805404663086,-9.09450817108154,1.51883292198181,16.5668792724609,-28.6946468353271,6.47702598571777,17.2957706451416,-29.9571304321289,4.9024829864502,18.7836894989014,-28.4697360992432,1.51968812942505,17.2964344024658,-29.9582786560059,-6.91423845291138,
12.4303998947144,-29.9597091674805,-21.1175975799561,13.9182834625244,-28.4721183776855,-21.1218719482422,13.8918933868408,-24.9141864776611,-25.5237636566162,12.4040088653564,-26.4017753601074,-25.5209121704102,18.7840023040771,-28.4702129364014,-6.9199390411377,9.09449768066406,-18.7805500030518,-6.92079448699951,6.66060304641724,-21.2144412994385,-21.1221580505371,8.42637157440186,-19.4486675262451,-25.5237636566162,9.0944995880127,-18.7805500030518,1.51883292198181,-29.9571151733398,17.2957649230957,4.9024829864502,12.4304056167603,29.9596843719482,-21.1175994873047,17.2964401245117,29.958251953125,-6.91423797607422,17.2957763671875,29.957103729248,4.9024829864502,18.784008026123,28.4701862335205,-6.91993713378906,18.7836952209473,28.4697093963623,1.51968765258789,12.404013633728,26.4017505645752,-25.5209121704102,13.918288230896,28.4720916748047,-21.1218719482422,13.8918972015381,24.9141597747803,-25.5237655639648,9.09450244903564,18.7805252075195,1.51883316040039,9.09450054168701,18.7805252075195,-6.92079544067383,6.6606068611145,21.2144165039063,-21.1221580505371,8.4263744354248,19.4486427307129,-25.5237655639648,29.95969581604,-12.4304180145264,-21.1175994873047,29.9582633972168,-17.2964515686035,-6.91423797607422,28.6946449279785,-16.5668716430664,6.47702598571777,28.4701976776123,-18.7840194702148,-6.91993713378906,28.4697208404541,-18.7837066650391,1.51968765258789,26.401762008667,-12.4040260314941,-25.5209121704102,28.4721031188965,-13.9183006286621,-21.1218719482422,24.9141712188721,-13.8919095993042,-25.5237655639648,18.7805366516113,-9.09451484680176,1.51883316040039,18.7805366516113,-9.09451293945313,-6.92079544067383,21.214427947998,-6.66061878204346,-21.1221580505371,19.4486541748047,-8.42638683319092,-25.5237655639648,29.9571208953857,17.2957534790039,4.9024829864502,28.4697284698486,18.7836742401123,1.51968812942505,29.9582691192627,17.2964172363281,-6.91423845291138,29.9596996307373,12.4303855895996,-21.1175975799561,28.4721088409424,13.9182682037354,-21.1218719482422,24.914176940918,13.8918790817261,-25.5237636566162,
26.4017658233643,12.4039945602417,-25.5209121704102,28.4702053070068,18.7839870452881,-6.9199390411377,18.7805404663086,9.09448432922363,-6.92079448699951,21.2144298553467,6.66058874130249,-21.1221580505371,19.448657989502,8.42635822296143,-25.5237636566162,18.7805404663086,9.09448623657227,1.51883292198181,-16.566858291626,28.6946258544922,6.47702503204346,-17.2957706451416,29.9571075439453,4.9024829864502,-18.7836894989014,28.4697132110596,1.51968812942505,-12.4304008483887,29.9596862792969,-21.1175975799561,-13.9182844161987,28.472095489502,-21.1218719482422,-13.8918943405151,24.9141635894775,-25.5237636566162,-12.4040098190308,26.4017524719238,-25.5209121704102,-18.7840023040771,28.4701900482178,-6.9199390411377,-9.09449863433838,18.7805271148682,-6.92079448699951,-6.66060352325439,21.2144184112549,-21.1221580505371,-8.42637252807617,19.4486446380615,-25.5237636566162,-9.09450054168701,18.7805271148682,1.51883292198181,29.9571151733398,-17.2957878112793,4.9024829864502,-31.6633014678955,-6.95487546920776,-2.78791809082031,-32.6585998535156,-7.32734966278076,-1.06401634216309,-34.6491928100586,-8.07229614257813,-1.06401634216309,-35.6444931030273,-8.44477081298828,-2.78791809082031,-34.6491928100586,-8.07229614257813,-4.51181983947754,-32.6585998535156,-7.32734966278076,-4.51181983947754,-31.6633033752441,6.95481824874878,-2.78791809082031,-32.6585998535156,7.32729053497314,-1.06401634216309,-34.6491928100586,8.07223510742188,-1.06401634216309,-35.6444892883301,8.4447078704834,-2.78791809082031,-34.6491928100586,8.07223510742188,-4.51181983947754,-32.6585998535156,7.32729053497314,-4.51181983947754,-29.9582633972168,-7.98788070678711,-2.78791809082031,-29.9582633972168,-8.9633617401123,-1.06401634216309,-29.9582614898682,-10.9143218994141,-1.06401634216309,-29.9582614898682,-11.8898029327393,-2.78791809082031,-29.9582614898682,-10.9143218994141,-4.51181983947754,-29.9582633972168,-8.9633617401123,-4.51181983947754,-29.9582672119141,7.98782300949097,-2.78791809082031,-29.9582672119141,8.96330261230469,-1.06401634216309,
-29.9582691192627,10.9142627716064,-1.06401634216309,-29.9582672119141,11.8897457122803,-2.78791856765747,-29.9582691192627,10.9142627716064,-4.51181983947754,-29.9582672119141,8.96330261230469,-4.5118203163147,-17.2964344024658,29.9582557678223,-6.91423845291138,-29.9582691192627,-17.2964401245117,-6.91423845291138,-28.6946315765381,16.5668640136719,6.47702598571777,-16.5668830871582,-28.6946449279785,6.47702598571777,16.5668601989746,28.6946239471436,6.47702598571777,28.6946334838867,16.566858291626,6.47702598571777,-16.5668392181396,28.6946258544922,12.2806358337402,-28.6946277618408,16.5668563842773,12.2806358337402,-28.694652557373,-16.5668525695801,12.2806358337402,-16.5668869018555,-28.6946468353271,12.2806358337402,16.566837310791,28.6946277618408,12.2806358337402,28.6946258544922,16.5668563842773,12.2806358337402,28.694652557373,-16.5668544769287,12.2806358337402,16.5668869018555,-28.6946468353271,12.2806358337402,31.6621513366699,6.95481538772583,-2.78791809082031,31.6621475219727,-6.95487451553345,-2.78791809082031,32.6574478149414,-7.3273458480835,-1.06401634216309,32.6574478149414,7.32728862762451,-1.06401634216309,34.6480369567871,-8.07228851318359,-1.06401634216309,34.6480445861816,8.07223510742188,-1.06401634216309,35.6433372497559,-8.44476318359375,-2.78791809082031,35.6433410644531,8.4447078704834,-2.78791809082031,34.6480369567871,-8.07228851318359,-4.51181983947754,34.6480445861816,8.07223510742188,-4.51181983947754,32.6574478149414,-7.3273458480835,-4.51181983947754,32.6574478149414,7.32728862762451,-4.51181983947754,29.9571113586426,-7.98787927627563,-2.78791809082031,29.9571113586426,-8.96335601806641,-1.06401634216309,29.9571151733398,-10.9143161773682,-1.06401634216309,29.9571113586426,-11.889799118042,-2.78791856765747,29.9571151733398,-10.9143161773682,-4.51181983947754,29.9571113586426,-8.96335601806641,-4.5118203163147,29.9571113586426,7.98781967163086,-2.78791809082031,29.9571113586426,8.96330070495605,-1.06401634216309,29.9571113586426,10.9142589569092,-1.06401634216309,29.9571113586426,11.889741897583,-2.78791809082031,
29.9571113586426,10.9142589569092,-4.51181983947754,29.9571113586426,8.96330070495605,-4.51181983947754
}
PolygonVertexIndex: *568 {
a: 2,4,3,-2,3,6,0,-2,6,7,5,-1,8,9,3,-5,9,10,6,-4,25,34,8,-5,6,10,11,-8,11,46,41,-8,11,33,22,95,60,83,72,-47,10,9,31,-33,9,8,34,-32,48,15,14,-14,12,16,29,-27,14,17,12,-14,17,18,16,-13,24,23,124,-49,16,18,28,-30,19,20,14,-16,20,21,17,-15,17,21,22,-19,24,2,125,-24,24,123,30,-26,30,123,26,-28,27,26,29,-29,34,25,30,-32,31,30,27,-33,24,25,4,-3,27,28,33,-33,33,28,18,-23,33,11,10,-33,37,47,69,-66,36,38,43,-38,39,0,5,-43,43,38,39,-41,40,39,42,-42,36,35,125,-3,42,5,7,-42,47,37,43,-45,44,43,40,-46,40,41,46,-46,19,15,87,-97,22,21,94,-96,21,20,93,-95,20,19,96,-94,45,46,72,-72,44,45,71,-71,47,44,70,-70,24,48,13,-124,2,1,38,-37,51,53,52,-51,52,55,49,-51,55,56,54,-50,57,58,52,-54,58,59,55,-53,74,84,57,-54,55,59,60,-57,60,95,90,-57,59,58,81,-83,58,57,84,-82,61,76,75,-63,97,65,64,-63,61,66,79,-77,64,67,61,-63,67,68,66,-62,73,127,63,-98,66,68,78,-80,69,70,64,-66,70,71,67,-65,67,71,72,-69,73,51,126,-128,73,75,80,-75,80,75,76,-78,77,76,79,-79,84,74,80,-82,81,80,77,-83,73,74,53,-52,77,78,83,-83,83,78,68,-73,83,60,59,-83,86,87,15,-49,86,122,92,-88,88,49,54,-92,92,122,88,-90,89,88,91,-91,86,85,126,-52,91,54,56,-91,96,87,92,-94,93,92,89,-95,89,90,95,-95,97,63,35,-37,65,97,36,-38,85,86,48,-125,75,73,97,-63,86,51,50,-123,98,104,105,-100,99,105,106,-101,100,106,107,-102,101,107,108,-103,102,108,109,-104,103,109,104,-99,104,116,117,-106,105,117,118,-107,106,118,119,-108,107,119,120,-109,108,120,121,-110,109,121,116,-105,110,98,99,-112,111,99,100,-113,112,100,101,-114,113,101,102,-115,114,102,103,-116,115,103,98,-111,50,49,88,-123,1,0,39,-39,13,12,26,-124,128,132,126,-86,129,128,85,-125,130,129,124,-24,131,130,23,-126,135,131,125,-36,132,133,127,-127,133,134,63,-128,134,135,35,-64,136,137,138,-140,139,138,140,-142,141,140,142,-144,143,142,144,-146,145,144,146,-148,147,146,137,-137,137,148,149,-139,138,149,150,-141,140,150,151,-143,142,151,152,-145,144,152,153,-147,146,153,148,-138,154,136,139,-156,155,139,141,-157,156,141,143,-158,157,143,145,-159,158,145,147,-160,159,147,136,-155
}
Edges: *300 {
a: 0,1,2,3,4,5,6,8,9,10,12,13,15,16,17,20,21,23,25,26,28,29,30,32,33,34,35,36,37,38,41,42,43,46,48,49,50,51,52,53,54,55,56,57,58,60,61,64,65,66,67,69,70,72,73,75,76,77,81,82,84,85,86,88,89,90,91,93,94,95,99,102,106,113,114,124,125,126,127,128,129,130,131,132,134,135,137,138,139,142,143,144,145,147,154,155,158,159,162,165,166,167,169,170,173,174,178,182,183,186,187,190,194,197,200,201,202,203,204,205,206,208,209,210,212,213,215,216,217,220,221,223,225,226,229,230,233,234,235,238,240,241,242,243,244,245,246,247,248,249,250,252,253,256,257,260,261,262,263,265,266,269,273,278,280,281,282,284,285,286,287,290,291,295,298,302,309,310,320,323,324,325,326,328,330,331,333,334,335,338,339,340,341,343,350,354,361,363,371,378,380,381,382,383,385,386,387,389,390,391,393,394,395,397,398,399,401,403,404,405,406,409,410,413,414,417,418,421,422,425,428,430,431,434,435,438,439,442,443,446,447,451,464,465,467,468,471,472,475,476,479,480,483,484,485,488,489,492,496,497,498,499,501,502,503,505,506,507,509,510,511,513,514,515,517,519,520,521,522,525,526,529,530,533,534,537,538,541,544,546,547,550,551,554,555,558,559,562,563,567
}
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: *1704 {
a: -0.707123994827271,-0.707089483737946,0.000103243539342657,-0.70713347196579,-0.707080066204071,9.95033406070434e-005,-0.702731847763062,-0.703023076057434,-0.10920824855566,-0.701263785362244,-0.701615929603577,-0.126348882913589,-0.702731847763062,-0.703023076057434,-0.10920824855566,-0.653819799423218,-0.654875755310059,-0.379021674394608,-0.659583270549774,-0.660594582557678,-0.358559221029282,-0.701263785362244,-0.701615929603577,-0.126348882913589,-0.653819799423218,-0.654875755310059,-0.379021674394608,-0.611995041370392,-0.613310813903809,-0.499311476945877,-0.611995041370392,-0.613310813903809,-0.499311476945877,-0.659583270549774,-0.660594582557678,-0.358559221029282,-0.707109451293945,0.707104027271271,-6.94348727847682e-006,-0.702121317386627,0.702107608318329,-0.118619218468666,-0.702885627746582,0.702872514724731,-0.109187453985214,-0.70710951089859,0.707104086875916,-6.94348864271888e-006,-0.702121317386627,0.702107608318329,-0.118619218468666,-0.700276255607605,0.700270712375641,0.138687700033188,-0.70640367269516,0.706393837928772,0.0447411499917507,-0.702885627746582,0.702872514724731,-0.109187453985214,-4.41197516920511e-005,-4.41074298578314e-005,-0.999999940395355,-4.41197516920511e-005,-4.41074334958103e-005,-1,-4.41197553300299e-005,-4.41074334958103e-005,-1,-4.41197516920511e-005,-4.41074371337891e-005,-1,-0.70640367269516,0.706393837928772,0.0447411499917507,-0.700276255607605,0.700270712375641,0.138687700033188,-0.615021049976349,0.61503267288208,0.493440747261047,-0.615021109580994,0.61503279209137,0.493440836668015,8.54613162459827e-008,-7.45604224655682e-015,-1,8.54613162459827e-008,-7.45604224655682e-015,-1,6.07625310067306e-008,-0.000958684540819377,-0.999999523162842,6.07625167958759e-008,-0.000958684890065342,-0.999999523162842,1.21332109563809e-017,1.32348898008484e-023,-1,-7.44391188771919e-015,-4.27306758865598e-008,-1,-7.44391104068624e-015,-4.27306652284187e-008,-1,-4.27306616757051e-008,3.72802112327841e-015,-1,-4.27306616757051e-008,3.72802112327841e-015,-1,
7.46817768759213e-015,4.27306758865598e-008,-1,7.46817684055918e-015,4.27306652284187e-008,-1,1.21332109563809e-017,1.32348898008484e-023,-1,-0.70710688829422,-0.707106649875641,-1.9981359855592e-007,-0.70710688829422,-0.707106649875641,-1.99813584345065e-007,-0.707106828689575,-0.707106649875641,-1.99813584345065e-007,-0.70710688829422,-0.707106649875641,-1.9981359855592e-007,-0.70710688829422,-0.707106649875641,-1.567361493926e-007,-0.707106947898865,-0.707106709480286,-1.56736163603455e-007,-0.707106947898865,-0.707106709480286,-1.56736163603455e-007,-0.70710700750351,-0.707106649875641,-1.56736163603455e-007,-0.70708954334259,0.707123994827271,0.000102989106380846,-0.707080125808716,0.70713347196579,9.93246503639966e-005,-0.703023016452789,0.702731907367706,-0.109208226203918,-0.701615929603577,0.701263785362244,-0.126348853111267,-0.953657388687134,1.3870450743525e-007,-0.300894469022751,-0.777819335460663,9.49671417060927e-008,-0.628487944602966,-0.777819335460663,9.49671417060927e-008,-0.628487944602966,-0.953657448291779,1.38704521646105e-007,-0.300894439220428,-0.703023016452789,0.702731907367706,-0.109208226203918,-0.654875755310059,0.653819799423218,-0.379021644592285,-0.660594582557678,0.659583270549774,-0.358559191226959,-0.701615929603577,0.701263785362244,-0.126348853111267,-0.654875755310059,0.653819799423218,-0.379021644592285,-0.413984954357147,0.412187337875366,-0.811614394187927,-0.328477740287781,0.32658714056015,-0.886252284049988,-0.660594582557678,0.659583270549774,-0.358559191226959,-0.674928545951843,-0.293465465307236,0.677015066146851,-0.689713001251221,-0.262841612100601,0.674692690372467,-0.689711689949036,0.262842237949371,0.674693882465363,-0.674928069114685,0.293463945388794,0.677016198635101,-0.328477740287781,0.32658714056015,-0.886252284049988,-0.413984954357147,0.412187337875366,-0.811614394187927,-0.413985520601273,-0.412187308073044,-0.811614274978638,-0.328477829694748,-0.326586753129959,-0.886252403259277,0.707104027271271,0.707109451293945,-6.95173412168515e-006,0.702107608318329,0.702121317386627,-0.118619203567505,
0.702872514724731,0.702885627746582,-0.109187431633472,0.707104027271271,0.707109451293945,-6.9517345764325e-006,0.702107608318329,0.702121317386627,-0.118619203567505,0.700270712375641,0.700276255607605,0.138687714934349,0.706393778324127,0.706403613090515,0.0447411984205246,0.702872514724731,0.702885627746582,-0.109187431633472,0.706393778324127,0.706403613090515,0.0447411984205246,0.700270712375641,0.700276255607605,0.138687714934349,0.61503279209137,0.615021049976349,0.493440836668015,0.615032851696014,0.615021049976349,0.493440836668015,-0.674928545951843,-0.293465465307236,0.677015066146851,-0.293464094400406,-0.674928605556488,0.677015602588654,-0.26284322142601,-0.689711570739746,0.674693465232849,-0.689713001251221,-0.262841612100601,0.674692690372467,-0.707090020179749,-0.707123577594757,0.000103242549812421,-0.701616883277893,-0.701262950897217,-0.126348778605461,-0.703023850917816,-0.702731013298035,-0.109208233654499,-0.707080721855164,-0.707132816314697,9.95018053799868e-005,-0.703023850917816,-0.702731013298035,-0.109208233654499,-0.701616883277893,-0.701262950897217,-0.126348778605461,-0.660595297813416,-0.659582614898682,-0.358559101819992,-0.654876351356506,-0.653819143772125,-0.379021733999252,-0.654876351356506,-0.653819143772125,-0.379021733999252,-0.660595297813416,-0.659582614898682,-0.358559101819992,-0.328477829694748,-0.326586753129959,-0.886252403259277,-0.413985520601273,-0.412187308073044,-0.811614274978638,0.707103908061981,-0.707109689712524,-6.94348727847682e-006,0.707103908061981,-0.707109749317169,-6.94348773322417e-006,0.702872335910797,-0.702885866165161,-0.109187468886375,0.702107429504395,-0.702121615409851,-0.118619211018085,0.702107429504395,-0.702121615409851,-0.118619211018085,0.702872335910797,-0.702885866165161,-0.109187468886375,0.706393480300903,-0.706403851509094,0.0447412021458149,0.700270414352417,-0.700276494026184,0.138687774538994,-0.707090020179749,-0.707123577594757,0.000103242549812421,-0.707080721855164,-0.707132816314697,9.95018053799868e-005,-0.70713347196579,-0.707080066204071,9.95033406070434e-005,
-0.707123994827271,-0.707089483737946,0.000103243539342657,0.706393480300903,-0.706403851509094,0.0447412021458149,0.615032434463501,-0.615021228790283,0.493441015481949,0.615032434463501,-0.615021288394928,0.493440985679626,0.700270414352417,-0.700276494026184,0.138687774538994,-7.44391188771919e-015,-4.27306758865598e-008,-1,-1.48999532872431e-014,-8.54613304568375e-008,-1,-1.48999532872431e-014,-8.54613304568375e-008,-1,-7.44391104068624e-015,-4.27306652284187e-008,-1,-0.707106828689575,-0.707106709480286,-6.94860091243754e-007,-0.70710688829422,-0.707106709480286,-6.94860091243754e-007,-0.70710688829422,-0.70710676908493,-6.94860091243754e-007,-0.707106828689575,-0.707106649875641,-6.94860091243754e-007,4.41074407717679e-005,-4.41197516920511e-005,-1,4.41074371337891e-005,-4.41197553300299e-005,-1,4.41074371337891e-005,-4.41197553300299e-005,-1,4.41074371337891e-005,-4.41197516920511e-005,-1,0.707123935222626,-0.70708954334259,0.000102967052953318,0.701263666152954,-0.701616227626801,-0.126348838210106,0.702731728553772,-0.703023254871368,-0.109208278357983,0.707133412361145,-0.707080125808716,9.93100693449378e-005,-7.25847328908458e-008,-0.953657388687134,-0.300894409418106,-7.25847399962731e-008,-0.953657448291779,-0.300894469022751,8.47020853456115e-009,-0.344974130392075,-0.938612222671509,8.47021563998851e-009,-0.34497407078743,-0.938612222671509,0.702731728553772,-0.703023254871368,-0.109208278357983,0.701263666152954,-0.701616227626801,-0.126348838210106,0.659582734107971,-0.660595118999481,-0.358559250831604,0.65381920337677,-0.654876232147217,-0.379021823406219,0.65381920337677,-0.654876232147217,-0.379021823406219,0.659582734107971,-0.660595118999481,-0.358559250831604,0.611994326114655,-0.613311231136322,-0.499311685562134,0.611994385719299,-0.613311290740967,-0.499311715364456,0.29346364736557,-0.674928605556488,0.677015900611877,0.262843132019043,-0.689711332321167,0.674693763256073,-0.26284322142601,-0.689711570739746,0.674693465232849,-0.293464094400406,-0.674928605556488,0.677015602588654,8.47021563998851e-009,-0.34497407078743,-0.938612222671509,
8.47020853456115e-009,-0.344974130392075,-0.938612222671509,6.07625167958759e-008,-0.000958684890065342,-0.999999523162842,6.07625310067306e-008,-0.000958684540819377,-0.999999523162842,0.70710951089859,0.707103967666626,-6.95173321219045e-006,0.707109570503235,0.707104027271271,-6.9517336669378e-006,0.702885746955872,0.702872455120087,-0.109187468886375,0.702121496200562,0.702107489109039,-0.118619203567505,0.702121496200562,0.702107489109039,-0.118619203567505,0.702885746955872,0.702872455120087,-0.109187468886375,0.706403732299805,0.706393659114838,0.0447412133216858,0.70027631521225,0.700270473957062,0.138687789440155,0.706403732299805,0.706393659114838,0.0447412133216858,0.615021049976349,0.615032494068146,0.493441015481949,0.615021109580994,0.615032494068146,0.493440985679626,0.70027631521225,0.700270473957062,0.138687789440155,-4.41074407717679e-005,4.41197516920511e-005,-1,-4.41074407717679e-005,4.41197516920511e-005,-1,-4.41074407717679e-005,4.41197516920511e-005,-1,-4.41074407717679e-005,4.41197516920511e-005,-1,-0.707106709480286,0.707106828689575,-8.26644111384667e-007,-0.707106649875641,0.70710676908493,-8.26644111384667e-007,-0.707106709480286,0.707106828689575,-8.26644111384667e-007,-0.70710676908493,0.70710688829422,-8.26644168228086e-007,-0.707106709480286,0.707106828689575,-1.80224063228707e-007,-0.707106709480286,0.707106828689575,-1.80224063228707e-007,-0.707106709480286,0.70710676908493,-1.80224063228707e-007,-0.707106709480286,0.707106828689575,-1.80224063228707e-007,-0.707106709480286,0.70710688829422,-1.64985479500501e-007,-0.70710676908493,0.70710688829422,-1.64985493711356e-007,-0.70710676908493,0.70710688829422,-1.64985493711356e-007,-0.70710676908493,0.70710688829422,-1.64985479500501e-007,0.70710676908493,-0.70710676908493,-8.6258501141856e-007,0.70710676908493,-0.70710676908493,-8.6258501141856e-007,0.707106709480286,-0.707106709480286,-8.6258501141856e-007,0.70710676908493,-0.70710676908493,-8.62585125105397e-007,0.707106709480286,-0.707106828689575,-1.52798648400676e-007,0.707106709480286,-0.70710688829422,-1.52798648400676e-007,
0.707106709480286,-0.70710688829422,-1.52798648400676e-007,0.707106709480286,-0.70710688829422,-1.52798648400676e-007,0.70710676908493,-0.70710688829422,-1.56736206236019e-007,0.70710676908493,-0.70710688829422,-1.56736206236019e-007,0.707106709480286,-0.70710688829422,-1.56736192025164e-007,0.70710676908493,-0.70710688829422,-1.56736206236019e-007,-1,1.65413609920506e-007,9.71694098552689e-005,-1,1.65413609920506e-007,9.71694098552689e-005,-1,1.63205086778362e-007,9.8764372523874e-005,-1,1.63205086778362e-007,9.87643797998317e-005,-1.10274960718471e-007,-0.999999940395355,9.71694025793113e-005,-1.04083611063288e-007,-1,9.87643579719588e-005,-1.04083596852433e-007,-1,9.87643579719588e-005,-1.10274960718471e-007,-0.999999940395355,9.71694025793113e-005,0.707123994827271,0.707089483737946,0.000103243539342657,0.70713347196579,0.707080066204071,9.95033406070434e-005,0.702731847763062,0.703023016452789,-0.109208256006241,0.701263844966888,0.701615989208221,-0.126348927617073,0.702731847763062,0.703023016452789,-0.109208256006241,0.653819799423218,0.654875755310059,-0.379021674394608,0.659583210945129,0.660594582557678,-0.358559250831604,0.701263844966888,0.701615989208221,-0.126348927617073,0.653819799423218,0.654875755310059,-0.379021674394608,0.412187337875366,0.413984954357147,-0.811614394187927,0.32658714056015,0.328477740287781,-0.886252284049988,0.659583210945129,0.660594582557678,-0.358559250831604,0.707109391689301,-0.70710414648056,-6.94348682372947e-006,0.702121317386627,-0.702107667922974,-0.118619218468666,0.702885568141937,-0.702872633934021,-0.109187439084053,0.707109451293945,-0.707104206085205,-6.94348818797152e-006,0.702121317386627,-0.702107667922974,-0.118619218468666,0.700276136398315,-0.700270712375641,0.138687670230865,0.706403613090515,-0.706393778324127,0.0447411462664604,0.702885568141937,-0.702872633934021,-0.109187439084053,4.41197516920511e-005,4.41074298578314e-005,-1,4.41197516920511e-005,4.41074334958103e-005,-1,4.41197516920511e-005,4.41074334958103e-005,-0.999999940395355,4.41197516920511e-005,4.41074371337891e-005,-1,
0.706403613090515,-0.706393778324127,0.0447411462664604,0.700276136398315,-0.700270712375641,0.138687670230865,0.615020990371704,-0.61503267288208,0.493440717458725,0.615021049976349,-0.615032732486725,0.49344077706337,-4.27306616757051e-008,3.72802112327841e-015,-1,-4.27306616757051e-008,3.72802112327841e-015,-1,-8.54613162459827e-008,7.45604139952387e-015,-1,-8.54613162459827e-008,7.45604224655682e-015,-1,0.70710688829422,0.707106709480286,-2.07649449635028e-007,0.707106828689575,0.707106649875641,-2.07649435424173e-007,0.707106828689575,0.707106709480286,-2.07649435424173e-007,0.70710688829422,0.707106709480286,-2.07649449635028e-007,0.707106828689575,0.707106828689575,-1.48486876128118e-007,0.70710676908493,0.70710676908493,-1.48486861917263e-007,0.70710676908493,0.70710676908493,-1.48486861917263e-007,0.707106828689575,0.70710676908493,-1.48486876128118e-007,0.953657388687134,-1.38703882157643e-007,-0.300894469022751,0.953657448291779,-1.38703882157643e-007,-0.300894439220428,1,-1.63204617820156e-007,9.87643797998317e-005,1,-1.63204603609302e-007,9.8764372523874e-005,0.70708954334259,-0.707123994827271,0.00010296607069904,0.707080125808716,-0.70713347196579,9.93085413938388e-005,0.703023016452789,-0.702731847763062,-0.10920824855566,0.701615929603577,-0.701263785362244,-0.126348882913589,0.953657388687134,-1.38703882157643e-007,-0.300894469022751,0.777819335460663,-9.49671417060927e-008,-0.628487944602966,0.777819335460663,-9.49671417060927e-008,-0.628487944602966,0.953657448291779,-1.38703882157643e-007,-0.300894439220428,0.703023016452789,-0.702731847763062,-0.10920824855566,0.654875755310059,-0.653819799423218,-0.379021674394608,0.660594582557678,-0.659583270549774,-0.358559191226959,0.701615929603577,-0.701263785362244,-0.126348882913589,0.654875755310059,-0.653819799423218,-0.379021674394608,0.413984954357147,-0.412187337875366,-0.811614394187927,0.328477740287781,-0.32658714056015,-0.886252284049988,0.660594582557678,-0.659583270549774,-0.358559191226959,0.674928367137909,0.293463230133057,0.677016258239746,
0.689711391925812,0.262842565774918,0.674694001674652,0.689712822437286,-0.262841045856476,0.674692988395691,0.674927830696106,-0.293466091156006,0.677015483379364,0.328477740287781,-0.32658714056015,-0.886252284049988,0.413984954357147,-0.412187337875366,-0.811614394187927,0.413985520601273,0.412187308073044,-0.811614274978638,0.328477829694748,0.326586753129959,-0.886252403259277,-0.707104027271271,-0.707109451293945,-6.9517345764325e-006,-0.702107608318329,-0.702121317386627,-0.118619203567505,-0.702872514724731,-0.702885627746582,-0.109187431633472,-0.707104086875916,-0.70710951089859,-6.9517354859272e-006,-0.702107608318329,-0.702121317386627,-0.118619203567505,-0.700270712375641,-0.700276255607605,0.13868772983551,-0.706393778324127,-0.706403613090515,0.0447411984205246,-0.702872514724731,-0.702885627746582,-0.109187431633472,-0.706393778324127,-0.706403613090515,0.0447411984205246,-0.700270712375641,-0.700276255607605,0.13868772983551,-0.615032732486725,-0.615021049976349,0.493440806865692,-0.615032732486725,-0.615021049976349,0.49344077706337,0.674928367137909,0.293463230133057,0.677016258239746,0.293465197086334,0.674927115440369,0.677016735076904,0.262840926647186,0.689711809158325,0.674694180488586,0.689711391925812,0.262842565774918,0.674694001674652,0.707090020179749,0.707123577594757,0.000103242549812421,0.701616823673248,0.701262950897217,-0.126348733901978,0.703023850917816,0.702731013298035,-0.109208203852177,0.707080721855164,0.707132816314697,9.95018053799868e-005,0.703023850917816,0.702731013298035,-0.109208203852177,0.701616823673248,0.701262950897217,-0.126348733901978,0.660595297813416,0.659582614898682,-0.35855907201767,0.654876351356506,0.653819143772125,-0.379021674394608,0.654876351356506,0.653819143772125,-0.379021674394608,0.660595297813416,0.659582614898682,-0.35855907201767,0.328477829694748,0.326586753129959,-0.886252403259277,0.413985520601273,0.412187308073044,-0.811614274978638,-0.707103848457336,0.707109749317169,-6.95173412168515e-006,-0.707103848457336,0.707109749317169,-6.95173412168515e-006,
-0.702872276306152,0.702885866165161,-0.109187461435795,-0.70210736989975,0.702121675014496,-0.118619211018085,-0.70210736989975,0.702121675014496,-0.118619211018085,-0.702872276306152,0.702885866165161,-0.109187461435795,-0.706393539905548,0.706403851509094,0.0447412021458149,-0.700270414352417,0.700276494026184,0.138687774538994,0.707090020179749,0.707123577594757,0.000103242549812421,0.707080721855164,0.707132816314697,9.95018053799868e-005,0.70713347196579,0.707080066204071,9.95033406070434e-005,0.707123994827271,0.707089483737946,0.000103243539342657,-0.706393539905548,0.706403851509094,0.0447412021458149,-0.615032494068146,0.615021228790283,0.493441015481949,-0.615032494068146,0.615021228790283,0.493440985679626,-0.700270414352417,0.700276494026184,0.138687774538994,7.46817768759213e-015,4.27306758865598e-008,-1,1.4924219087116e-014,8.54613304568375e-008,-1,1.4924219087116e-014,8.54613304568375e-008,-1,7.46817684055918e-015,4.27306652284187e-008,-1,0.707106828689575,0.707106709480286,-6.70899396482127e-007,0.70710688829422,0.707106709480286,-6.70899396482127e-007,0.70710688829422,0.70710676908493,-6.70899396482127e-007,0.707106828689575,0.707106649875641,-6.70899396482127e-007,-0.707123935222626,0.70708954334259,0.000102990103187039,-0.707133412361145,0.707080125808716,9.93261783150956e-005,-0.707080125808716,0.70713347196579,9.93246503639966e-005,-0.70708954334259,0.707123994827271,0.000102989106380846,-0.707123935222626,0.70708954334259,0.000102990103187039,-0.701263666152954,0.701616287231445,-0.126348793506622,-0.702731609344482,0.703023254871368,-0.10920824855566,-0.707133412361145,0.707080125808716,9.93261783150956e-005,7.25847399962731e-008,0.953657388687134,-0.300894409418106,7.25847399962731e-008,0.953657448291779,-0.300894439220428,3.47647493015302e-008,0.777819335460663,-0.628487944602966,3.47647493015302e-008,0.777819395065308,-0.628487944602966,-0.702731609344482,0.703023254871368,-0.10920824855566,-0.701263666152954,0.701616287231445,-0.126348793506622,-0.659582674503326,0.660595118999481,-0.358559221029282,
-0.65381920337677,0.654876232147217,-0.379021793603897,-0.65381920337677,0.654876232147217,-0.379021793603897,-0.659582674503326,0.660595118999481,-0.358559221029282,-0.326586693525314,0.328477829694748,-0.886252462863922,-0.412187188863754,0.41398549079895,-0.811614215373993,-0.293464690446854,0.674927294254303,0.677016735076904,-0.262841045856476,0.68971174955368,0.674694299697876,0.262840926647186,0.689711809158325,0.674694180488586,0.293465197086334,0.674927115440369,0.677016735076904,-0.326586693525314,0.328477829694748,-0.886252462863922,0.32658714056015,0.328477740287781,-0.886252284049988,0.412187337875366,0.413984954357147,-0.811614394187927,-0.412187188863754,0.41398549079895,-0.811614215373993,-0.707109570503235,-0.707103908061981,-6.95173412168515e-006,-0.70710963010788,-0.707103967666626,-6.9517345764325e-006,-0.702885806560516,-0.702872335910797,-0.109187468886375,-0.702121555805206,-0.702107489109039,-0.118619211018085,-0.702121555805206,-0.702107489109039,-0.118619211018085,-0.702885806560516,-0.702872335910797,-0.109187468886375,-0.706403791904449,-0.706393599510193,0.044741228222847,-0.700276374816895,-0.700270473957062,0.138687804341316,-0.706403791904449,-0.706393599510193,0.044741228222847,-0.615021049976349,-0.615032494068146,0.493441015481949,-0.615021109580994,-0.615032494068146,0.493440985679626,-0.700276374816895,-0.700270473957062,0.138687804341316,0.674927830696106,-0.293466091156006,0.677015483379364,0.689712822437286,-0.262841045856476,0.674692988395691,0.262843132019043,-0.689711332321167,0.674693763256073,0.29346364736557,-0.674928605556488,0.677015900611877,0.707080125808716,-0.70713347196579,9.93085413938388e-005,0.70708954334259,-0.707123994827271,0.00010296607069904,0.707123935222626,-0.70708954334259,0.000102967052953318,0.707133412361145,-0.707080125808716,9.93100693449378e-005,-0.262841045856476,0.68971174955368,0.674694299697876,-0.293464690446854,0.674927294254303,0.677016735076904,-0.674928069114685,0.293463945388794,0.677016198635101,-0.689711689949036,0.262842237949371,0.674693882465363,
1,-1.63204617820156e-007,9.87643797998317e-005,1,-1.65413609920506e-007,9.71694098552689e-005,1,-1.65413609920506e-007,9.71694098552689e-005,1,-1.63204603609302e-007,9.8764372523874e-005,1.10274960718471e-007,0.999999940395355,9.71694025793113e-005,1.10274960718471e-007,0.999999940395355,9.71694025793113e-005,1.04083596852433e-007,1,9.8764372523874e-005,1.04083611063288e-007,1,9.87643797998317e-005,0.854411125183105,0.519597589969635,1.03667568321066e-017,0.85441118478775,-0.519597470760345,2.11524824322851e-008,0.308456540107727,-0.165541589260101,0.936723351478577,0.308456271886826,0.165541529655457,0.936723470687866,0.308456271886826,0.165541529655457,0.936723470687866,0.308456540107727,-0.165541589260101,0.936723351478577,-0.507036685943604,0.308346420526505,0.804882705211639,-0.50703638792038,-0.308346599340439,0.804882884025574,-0.50703638792038,-0.308346599340439,0.804882884025574,-0.507036685943604,0.308346420526505,0.804882705211639,-0.881126642227173,0.472880274057388,-1.06908892094967e-017,-0.881126582622528,-0.472880482673645,-1.06909007900253e-017,-0.881126582622528,-0.472880482673645,-1.06909007900253e-017,-0.881126642227173,0.472880274057388,-1.06908892094967e-017,-0.507036685943604,0.308346390724182,-0.804882705211639,-0.50703638792038,-0.308346599340439,-0.804882884025574,-0.50703638792038,-0.308346599340439,-0.804882884025574,-0.507036685943604,0.308346390724182,-0.804882705211639,0.308456510305405,-0.165541559457779,-0.936723351478577,0.308456242084503,0.165541514754295,-0.936723411083221,0.308456242084503,0.165541514754295,-0.936723411083221,0.308456510305405,-0.165541559457779,-0.936723351478577,0.85441118478775,-0.519597470760345,2.11524824322851e-008,0.854411125183105,0.519597589969635,1.03667568321066e-017,0.85441118478775,-0.519597470760345,2.11524824322851e-008,0.518173396587372,-0.855275571346283,5.4311520614192e-008,0.208569690585136,-0.344256490468979,0.91541588306427,0.308456540107727,-0.165541589260101,0.936723351478577,0.308456540107727,-0.165541589260101,0.936723351478577,0.208569690585136,-0.344256490468979,0.91541588306427,
-0.347303032875061,0.573242723941803,0.74214106798172,-0.507036685943604,0.308346420526505,0.804882705211639,-0.507036685943604,0.308346420526505,0.804882705211639,-0.347303032875061,0.573242723941803,0.74214106798172,-0.518174350261688,0.85527503490448,-2.52211034279526e-008,-0.881126642227173,0.472880274057388,-1.06908892094967e-017,-0.881126642227173,0.472880274057388,-1.06908892094967e-017,-0.518174350261688,0.85527503490448,-2.52211034279526e-008,-0.347303092479706,0.573242723941803,-0.742141127586365,-0.507036685943604,0.308346390724182,-0.804882705211639,-0.507036685943604,0.308346390724182,-0.804882705211639,-0.347303092479706,0.573242723941803,-0.742141127586365,0.208569571375847,-0.344256401062012,-0.91541588306427,0.308456510305405,-0.165541559457779,-0.936723351478577,0.308456510305405,-0.165541559457779,-0.936723351478577,0.208569571375847,-0.344256401062012,-0.91541588306427,0.518173396587372,-0.855275571346283,5.4311520614192e-008,0.85441118478775,-0.519597470760345,2.11524824322851e-008,0.518172979354858,0.855275869369507,6.28711321793331e-018,0.854411125183105,0.519597589969635,1.03667568321066e-017,0.308456271886826,0.165541529655457,0.936723470687866,0.208569303154945,0.344256222248077,0.915416061878204,0.208569303154945,0.344256222248077,0.915416061878204,0.308456271886826,0.165541529655457,0.936723470687866,-0.50703638792038,-0.308346599340439,0.804882884025574,-0.347302168607712,-0.573242902755737,0.742141425609589,-0.347302168607712,-0.573242902755737,0.742141425609589,-0.50703638792038,-0.308346599340439,0.804882884025574,-0.881126582622528,-0.472880482673645,-1.06909007900253e-017,-0.518173217773438,-0.855275690555573,-6.28711611306546e-018,-0.518173217773438,-0.855275690555573,-6.28711611306546e-018,-0.881126582622528,-0.472880482673645,-1.06909007900253e-017,-0.50703638792038,-0.308346599340439,-0.804882884025574,-0.347302168607712,-0.573242902755737,-0.742141425609589,-0.347302168607712,-0.573242902755737,-0.742141425609589,-0.50703638792038,-0.308346599340439,-0.804882884025574,0.308456242084503,0.165541514754295,-0.936723411083221,
0.208569303154945,0.344256222248077,-0.915416061878204,0.208569303154945,0.344256222248077,-0.915416061878204,0.308456242084503,0.165541514754295,-0.936723411083221,0.854411125183105,0.519597589969635,1.03667568321066e-017,0.518172979354858,0.855275869369507,6.28711321793331e-018,1.04083596852433e-007,1,9.8764372523874e-005,7.25847399962731e-008,0.953657448291779,-0.300894439220428,7.25847399962731e-008,0.953657388687134,-0.300894409418106,1.04083611063288e-007,1,9.87643797998317e-005,-1.04083611063288e-007,-1,9.87643579719588e-005,-7.25847399962731e-008,-0.953657448291779,-0.300894469022751,-7.25847328908458e-008,-0.953657388687134,-0.300894409418106,-1.04083596852433e-007,-1,9.87643579719588e-005,-1,1.63205086778362e-007,9.8764372523874e-005,-0.953657388687134,1.3870450743525e-007,-0.300894469022751,-0.953657448291779,1.38704521646105e-007,-0.300894439220428,-1,1.63205086778362e-007,9.87643797998317e-005,-0.3826824426651,0.92387992143631,8.17681211628951e-007,0.382682353258133,0.92387992143631,7.55459041101858e-007,0.382684081792831,0.923879206180573,7.55464043322718e-007,-0.382683783769608,0.923879444599152,8.17685474885366e-007,-0.923879384994507,0.38268381357193,9.95545974546985e-007,-0.3826824426651,0.92387992143631,8.17681211628951e-007,-0.382683783769608,0.923879444599152,8.17685474885366e-007,-0.923879206180573,0.382684260606766,9.95547111415362e-007,-0.923880100250244,-0.382682174444199,1.8666449363991e-007,-0.923879384994507,0.38268381357193,9.95545974546985e-007,-0.923879206180573,0.382684260606766,9.95547111415362e-007,-0.923879504203796,-0.382683336734772,1.86665062074098e-007,-0.382683962583542,-0.923879325389862,9.77334124740992e-008,-0.923880100250244,-0.382682174444199,1.8666449363991e-007,-0.923879504203796,-0.382683336734772,1.86665062074098e-007,-0.382683724164963,-0.923879384994507,9.77332490492699e-008,0.382684022188187,-0.923879265785217,-2.67099053985476e-008,-0.382683962583542,-0.923879325389862,9.77334124740992e-008,-0.382683724164963,-0.923879384994507,9.77332490492699e-008,0.382683485746384,-0.923879504203796,-2.67101167850115e-008,
0.382682353258133,0.92387992143631,7.55459041101858e-007,0.923879265785217,0.382683962583542,9.33324713514594e-007,0.923879325389862,0.382683873176575,9.33324542984337e-007,0.382684081792831,0.923879206180573,7.55464043322718e-007,0.923879265785217,0.382683962583542,9.33324713514594e-007,0.923880100250244,-0.382682055234909,6.22211686618357e-008,0.923879444599152,-0.382683515548706,6.22213960355111e-008,0.923879325389862,0.382683873176575,9.33324542984337e-007,0.923880100250244,-0.382682055234909,6.22211686618357e-008,0.382684022188187,-0.923879265785217,-2.67099053985476e-008,0.382683485746384,-0.923879504203796,-2.67101167850115e-008,0.923879444599152,-0.382683515548706,6.22213960355111e-008,-0.854411005973816,-0.519597828388214,-1.0366756004926e-017,-0.854410707950592,0.519598305225372,1.05762403279641e-008,-0.30845633149147,0.165541440248489,0.936723470687866,-0.308456212282181,-0.165541589260101,0.936723411083221,-0.308456212282181,-0.165541589260101,0.936723411083221,-0.30845633149147,0.165541440248489,0.936723470687866,0.507036447525024,-0.308346420526505,0.804882943630219,0.507036447525024,0.308346658945084,0.804882764816284,0.507036447525024,0.308346658945084,0.804882764816284,0.507036447525024,-0.308346420526505,0.804882943630219,0.881126642227173,-0.472880303859711,-4.42976819670093e-008,0.881126523017883,0.472880512475967,-1.47658942850626e-008,0.881126523017883,0.472880512475967,-1.47658942850626e-008,0.881126642227173,-0.472880303859711,-4.42976819670093e-008,0.507036447525024,-0.308346390724182,-0.804882943630219,0.507036507129669,0.308346658945084,-0.804882824420929,0.507036507129669,0.308346658945084,-0.804882824420929,0.507036447525024,-0.308346390724182,-0.804882943630219,-0.308456301689148,0.165541425347328,-0.936723470687866,-0.308456242084503,-0.165541604161263,-0.936723411083221,-0.308456242084503,-0.165541604161263,-0.936723411083221,-0.308456301689148,0.165541425347328,-0.936723470687866,-0.854410707950592,0.519598305225372,1.05762403279641e-008,-0.854411005973816,-0.519597828388214,-1.0366756004926e-017,
-0.854410707950592,0.519598305225372,1.05762403279641e-008,-0.518172800540924,0.855275869369507,3.6207683962175e-008,-0.208569765090942,0.344257116317749,0.915415644645691,-0.30845633149147,0.165541440248489,0.936723470687866,-0.30845633149147,0.165541440248489,0.936723470687866,-0.208569765090942,0.344257116317749,0.915415644645691,0.347302734851837,-0.573242545127869,0.742141425609589,0.507036447525024,-0.308346420526505,0.804882943630219,0.507036447525024,-0.308346420526505,0.804882943630219,0.347302734851837,-0.573242545127869,0.742141425609589,0.518174111843109,-0.85527515411377,-1.00884484766084e-007,0.881126642227173,-0.472880303859711,-4.42976819670093e-008,0.881126642227173,-0.472880303859711,-4.42976819670093e-008,0.518174111843109,-0.85527515411377,-1.00884484766084e-007,0.347302734851837,-0.573242425918579,-0.742141425609589,0.507036447525024,-0.308346390724182,-0.804882943630219,0.507036447525024,-0.308346390724182,-0.804882943630219,0.347302734851837,-0.573242425918579,-0.742141425609589,-0.208569675683975,0.344257056713104,-0.915415644645691,-0.308456301689148,0.165541425347328,-0.936723470687866,-0.308456301689148,0.165541425347328,-0.936723470687866,-0.208569675683975,0.344257056713104,-0.915415644645691,-0.518172800540924,0.855275869369507,3.6207683962175e-008,-0.854410707950592,0.519598305225372,1.05762403279641e-008,-0.518172681331635,-0.855275988578796,-6.28710949562056e-018,-0.854411005973816,-0.519597828388214,-1.0366756004926e-017,-0.308456212282181,-0.165541589260101,0.936723411083221,-0.208569332957268,-0.344256550073624,0.915415942668915,-0.208569332957268,-0.344256550073624,0.915415942668915,-0.308456212282181,-0.165541589260101,0.936723411083221,0.507036447525024,0.308346658945084,0.804882764816284,0.347302109003067,0.573242843151093,0.742141485214233,0.347302109003067,0.573242843151093,0.742141485214233,0.507036447525024,0.308346658945084,0.804882764816284,0.881126523017883,0.472880512475967,-1.47658942850626e-008,0.518173217773438,0.855275750160217,6.28711611306546e-018,0.518173217773438,0.855275750160217,6.28711611306546e-018,
0.881126523017883,0.472880512475967,-1.47658942850626e-008,0.507036507129669,0.308346658945084,-0.804882824420929,0.347302109003067,0.573242843151093,-0.742141485214233,0.347302109003067,0.573242843151093,-0.742141485214233,0.507036507129669,0.308346658945084,-0.804882824420929,-0.308456242084503,-0.165541604161263,-0.936723411083221,-0.208569332957268,-0.344256550073624,-0.915415942668915,-0.208569332957268,-0.344256550073624,-0.915415942668915,-0.308456242084503,-0.165541604161263,-0.936723411083221,-0.854411005973816,-0.519597828388214,-1.0366756004926e-017,-0.518172681331635,-0.855275988578796,-6.28710949562056e-018
}
}
LayerElementUV: 0 {
Version: 101
Name: "UVChannel_1"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: *672 {
a: 0.181927412748337,0.0357094891369343,0.558500826358795,0.985683619976044,0.54419070482254,0.962808787822723,0.544191837310791,0.905739009380341,0.558503150939941,0.905777633190155,0.567602515220642,0.807189166545868,0.0317741632461548,0.0357094891369343,0.581912636756897,0.80721789598465,0.550617814064026,0.775570333003998,0.564928293228149,0.775589406490326,0.436712741851807,0.985683619976044,0.0319335907697678,0.00151777500286698,0.181767970323563,0.00151777500286698,0.17524565756321,0.868498086929321,0.612018287181854,0.594574868679047,0.658956706523895,0.594574868679047,0.658951878547668,0.670786678791046,0.612014770507813,0.670783579349518,0.740226209163666,0.594575583934784,0.773370802402496,0.455723255872726,0.740224480628967,0.651659071445465,0.755192518234253,0.530724167823792,0.682847797870636,0.530724167823792,0.66467010974884,0.455723255872726,0.70146632194519,0.035709235817194,0.558500826358795,0.985683619976044,0.54419070482254,0.962808787822723,0.701625943183899,0.00151757942512631,0.544191837310791,0.905739009380341,0.558503150939941,0.905777633190155,0.851459681987762,0.00151757942512631,0.567602515220642,0.807189166545868,0.581912636756897,0.80721789598465,0.550617814064026,0.775570333003998,0.564928293228149,0.775589406490326,0.851619243621826,0.035709235817194,0.236896008253098,0.868498086929321,0.612018287181854,0.594574868679047,0.658956706523895,0.594574868679047,0.658951878547668,0.670786678791046,0.612014770507813,0.670783579349518,0.740226209163666,0.594575583934784,0.760182201862335,0.432476252317429,0.535832226276398,0.670781433582306,0.773370802402496,0.455721974372864,0.66467010974884,0.455721974372864,0.677859425544739,0.432476252317429,0.881004929542542,0.192864060401917,0.876602649688721,0.205053240060806,0.555933892726898,0.99530166387558,0.676482856273651,0.205053240060806,0.439278841018677,0.99530166387558,0.436710596084595,0.905777633190155,0.535833537578583,0.594572842121124,0.256889790296555,0.888492047786713,0.451021611690521,0.905739009380341,0.672080457210541,
0.192864060401917,0.672077000141144,0.1214939057827,0.451022326946259,0.962808787822723,0.413300454616547,0.80721789598465,0.427610754966736,0.807189166545868,0.155251741409302,0.888491988182068,0.768371522426605,0.594575583934784,0.768371284008026,0.637563288211823,0.488895505666733,0.670781433582306,0.488894432783127,0.594569623470306,0.755192518234253,0.575295805931091,0.134924247860909,0.828176558017731,0.682847797870636,0.575295805931091,0.677859425544739,0.432477027177811,0.760182201862335,0.432477027177811,0.211312532424927,0.192864060401917,0.20691043138504,0.20505353808403,0.436712741851807,0.985683619976044,0.00679089315235615,0.20505353808403,0.436710596084595,0.905777633190155,0.451021611690521,0.905739009380341,0.535832226276398,0.670781433582306,0.451022326946259,0.962808787822723,0.413300931453705,0.80721789598465,0.00238875858485699,0.192864060401917,0.427610754966736,0.807189166545868,0.430285811424255,0.775589406490326,0.444595873355865,0.775570333003998,0.558500826358795,0.985683619976044,0.13492426276207,0.766526162624359,0.535833537578583,0.594572842121124,0.612018287181854,0.594574868679047,0.612014770507813,0.670783579349518,0.488895505666733,0.670781433582306,0.66467010974884,0.455721288919449,0.175245776772499,0.726204574108124,0.677859425544739,0.432475358247757,0.760182201862335,0.432475358247757,0.773370802402496,0.455721288919449,0.236896127462387,0.726204633712769,0.277217537164688,0.766526281833649,0.881009042263031,0.1214939057827,0.277217507362366,0.828176617622375,0.109488591551781,0.751975357532501,0.114930436015129,0.746532440185547,0.114930421113968,0.848170459270477,0.109488561749458,0.842727482318878,0.740224480628967,0.651659071445465,0.768371522426605,0.594575583934784,0.251446843147278,0.893933892250061,0.407624900341034,0.651650965213776,0.160694643855095,0.893933892250061,0.407624036073685,0.594567000865936,0.488894432783127,0.594569623470306,0.407624900341034,0.651650965213776,0.612018287181854,0.594574868679047,0.658956706523895,0.594574868679047,0.155251979827881,0.706210672855377,
0.256890058517456,0.706210672855377,0.407624036073685,0.594567000865936,0.379478514194489,0.63755589723587,0.302653163671494,0.842727482318878,0.658951878547668,0.670786678791046,0.297211319208145,0.848170459270477,0.612014770507813,0.670783579349518,0.768371284008026,0.637563288211823,0.535832226276398,0.670781433582306,0.682847797870636,0.530722379684448,0.755192518234253,0.530722379684448,0.682848989963531,0.575294494628906,0.755192518234253,0.575294494628906,0.773370802402496,0.455722630023956,0.755192518234253,0.530724167823792,0.682847797870636,0.530724167823792,0.66467010974884,0.455722630023956,0.755192518234253,0.575295805931091,0.682847797870636,0.575295805931091,0.677859425544739,0.432477027177811,0.760182201862335,0.432477027177811,0.755192518234253,0.530723035335541,0.682847797870636,0.530723035335541,0.755192518234253,0.575294494628906,0.682847797870636,0.575294494628906,0.379478514194489,0.63755589723587,0.379478514194489,0.594567358493805,0.379478514194489,0.594567358493805,0.658956706523895,0.594574868679047,0.658951878547668,0.670786678791046,0.740226209163666,0.594575583934784,0.740224480628967,0.651659071445465,0.768371522426605,0.594575583934784,0.768371284008026,0.637563288211823,0.627575695514679,0.0357094593346119,0.558500826358795,0.985683619976044,0.54419070482254,0.962808787822723,0.544191837310791,0.905739009380341,0.558503150939941,0.905777633190155,0.567602515220642,0.807189166545868,0.477423101663589,0.0357094593346119,0.581912636756897,0.80721789598465,0.550617814064026,0.775570333003998,0.564928293228149,0.775589406490326,0.436712741851807,0.985683619976044,0.477582544088364,0.00151770422235131,0.627416491508484,0.00151770422235131,0.297211319208145,0.746532440185547,0.740226209163666,0.594575583934784,0.740224480628967,0.651659071445465,0.535832226276398,0.670781433582306,0.535833537578583,0.594572842121124,0.768371522426605,0.594575583934784,0.768371284008026,0.637563288211823,0.488895505666733,0.670781433582306,0.488894432783127,0.594569623470306,0.407624900341034,0.651650965213776,
0.407624036073685,0.594567000865936,0.255208075046539,0.035709235817194,0.54419070482254,0.962808787822723,0.544191837310791,0.905739009380341,0.405361592769623,0.035709235817194,0.558503150939941,0.905777633190155,0.567602515220642,0.807189166545868,0.434751033782959,0.121494144201279,0.581912636756897,0.80721789598465,0.550617814064026,0.775570333003998,0.564928293228149,0.775589406490326,0.555933892726898,0.99530166387558,0.225818872451782,0.121494144201279,0.302653163671494,0.751975357532501,0.379478514194489,0.63755589723587,0.379478514194489,0.594567358493805,0.535833537578583,0.594572842121124,0.488895505666733,0.670781433582306,0.488894432783127,0.594569623470306,0.407624900341034,0.651650965213776,0.407624036073685,0.594567000865936,0.379478514194489,0.63755589723587,0.379478514194489,0.594567358493805,0.532771825790405,0.865401268005371,0.255367815494537,0.00151777500286698,0.405201613903046,0.00151777500286698,0.555933892726898,0.99530166387558,0.434747040271759,0.192864060401917,0.439278841018677,0.99530166387558,0.436710596084595,0.905777633190155,0.521459341049194,0.863284826278687,0.43034440279007,0.205053240060806,0.451021611690521,0.905739009380341,0.230225056409836,0.205053240060806,0.225822478532791,0.192864060401917,0.451022326946259,0.962808787822723,0.413300454616547,0.80721789598465,0.427610754966736,0.807189166545868,0.160694941878319,0.700768828392029,0.510146141052246,0.859050750732422,0.498832941055298,0.856934070587158,0.487520694732666,0.859050750732422,0.476207494735718,0.863284826278687,0.464894741773605,0.865401268005371,0.532771825790405,0.944452524185181,0.521459341049194,0.946569204330444,0.510146141052246,0.95080304145813,0.498832941055298,0.952919721603394,0.656961441040039,0.192864060401917,0.652559041976929,0.20505353808403,0.436712741851807,0.985683619976044,0.452439457178116,0.205053240060806,0.451022326946259,0.962808787822723,0.436710596084595,0.905777633190155,0.487520694732666,0.95080304145813,0.476207494735718,0.946569204330444,0.451021611690521,0.905739009380341,0.448037356138229,
0.192864060401917,0.413300931453705,0.80721789598465,0.427610754966736,0.807189166545868,0.430285811424255,0.775589406490326,0.444595873355865,0.775570333003998,0.251447081565857,0.700768828392029,0.464894741773605,0.944452524185181,0.00238469056785107,0.121494144201279,0.430285811424255,0.775589406490326,0.444595873355865,0.775570333003998,0.430285811424255,0.775589406490326,0.444595873355865,0.775570333003998,0.439278841018677,0.99530166387558,0.954580128192902,0.411598563194275,0.954580128192902,0.613326966762543,0.439278841018677,0.99530166387558,0.555933892726898,0.99530166387558,0.919245660305023,0.613326966762543,0.919245660305023,0.411598563194275,0.954580128192902,0.307176768779755,0.919246137142181,0.307176768779755,0.954580128192902,0.105448730289936,0.919246137142181,0.105448730289936,0.44803312420845,0.121494084596634,0.656965613365173,0.121494084596634,0.211316883563995,0.121494144201279,0.954580128192902,0.00102699035778642,0.919245779514313,0.00102699035778642,0.999231994152069,0.411835879087448,0.96389764547348,0.411835879087448,0.999231994152069,0.105685085058212,0.96389764547348,0.105685085058212,0.999231994152069,0.307413786649704,0.96389764547348,0.307413786649704,0.480645209550858,0.786551177501678,0.484385997056961,0.797435939311981,0.491867572069168,0.806918323040009,0.495608597993851,0.817802608013153,0.491868048906326,0.82868617773056,0.48438623547554,0.838169038295746,0.480645209550858,0.84905332326889,0.516472518444061,0.78711074590683,0.5127312541008,0.797995030879974,0.505249917507172,0.807478129863739,0.501509130001068,0.818362414836884,0.505249917507172,0.829246699810028,0.5127312541008,0.838729560375214,0.516472518444061,0.849613904953003,0.469315558671951,0.786551177501678,0.46931603550911,0.849054276943207,0.466442614793777,0.797435462474823,0.460697442293167,0.80691784620285,0.457824736833572,0.817802608013153,0.460697442293167,0.828686416149139,0.466442853212357,0.838169991970062,0.527801930904388,0.787110269069672,0.527801930904388,0.849613904953003,0.530675113201141,0.797995030879974,
0.536420524120331,0.807478129863739,0.539292752742767,0.818362414836884,0.536419808864594,0.829246699810028,0.530674636363983,0.838729560375214,0.999231994152069,0.00126275070942938,0.963897526264191,0.00126275070942938,0.9992316365242,0.613565325737,0.963897287845612,0.613565325737,0.532771825790405,0.865401268005371,0.532771825790405,0.944452524185181,0.521459341049194,0.946569204330444,0.521459341049194,0.863284826278687,0.510146141052246,0.95080304145813,0.510146141052246,0.859050750732422,0.498832941055298,0.952919721603394,0.498832941055298,0.856934070587158,0.487520694732666,0.95080304145813,0.487520694732666,0.859050750732422,0.476207494735718,0.946569204330444,0.476207494735718,0.863284826278687,0.464894741773605,0.944452524185181,0.464894741773605,0.865401268005371,0.516472518444061,0.78711074590683,0.527801930904388,0.787110269069672,0.530675113201141,0.797995030879974,0.5127312541008,0.797995030879974,0.536420524120331,0.807478129863739,0.505249917507172,0.807478129863739,0.539292752742767,0.818362414836884,0.501509130001068,0.818362414836884,0.536419808864594,0.829246699810028,0.505249917507172,0.829246699810028,0.530674636363983,0.838729560375214,0.5127312541008,0.838729560375214,0.527801930904388,0.849613904953003,0.516472518444061,0.849613904953003,0.469315558671951,0.786551177501678,0.480645209550858,0.786551177501678,0.484385997056961,0.797435939311981,0.466442614793777,0.797435462474823,0.491867572069168,0.806918323040009,0.460697442293167,0.80691784620285,0.495608597993851,0.817802608013153,0.457824736833572,0.817802608013153,0.491868048906326,0.82868617773056,0.460697442293167,0.828686416149139,0.48438623547554,0.838169038295746,0.466442853212357,0.838169991970062,0.480645209550858,0.84905332326889,0.46931603550911,0.849054276943207
}
UVIndex: *568 {
a: 1,2,3,4,3,5,7,4,5,8,9,7,14,15,16,17,15,18,20,16,43,53,14,17,20,18,62,63,13,36,54,61,13,67,85,91,95,96,98,36,19,21,22,23,21,66,68,22,25,26,28,29,24,27,30,35,28,31,32,29,31,33,34,32,47,48,50,56,99,100,101,102,37,38,39,40,38,41,103,39,103,41,104,121,10,1,49,51,10,52,55,58,55,52,59,60,60,59,236,237,53,43,64,65,65,64,106,108,10,58,2,1,106,139,140,108,67,101,100,85,69,70,19,23,77,86,87,88,73,75,76,78,0,6,11,12,76,75,79,81,81,79,82,83,71,72,74,80,105,107,61,54,86,77,89,109,109,89,110,115,110,116,141,115,37,40,122,187,42,44,45,46,44,135,136,45,135,137,138,136,90,92,93,94,123,90,94,124,125,123,124,126,47,56,57,97,80,235,253,71,149,150,151,152,151,153,155,152,153,156,157,155,111,112,118,120,112,162,163,118,164,165,111,120,163,162,166,167,95,91,113,114,127,128,129,130,128,131,132,129,172,175,178,183,84,173,174,176,172,195,196,175,174,177,179,176,177,180,181,179,198,202,204,205,117,119,161,184,87,142,143,88,142,144,145,143,145,144,146,147,158,149,197,199,158,200,203,206,203,200,207,208,208,207,238,239,165,164,168,169,169,168,170,171,158,206,150,149,170,185,186,171,96,161,119,98,133,134,127,130,221,223,26,25,221,224,227,223,148,154,159,160,227,224,229,230,230,229,231,232,219,220,222,228,209,233,114,113,187,122,188,189,189,188,190,191,190,192,193,191,84,182,240,73,173,84,73,78,243,221,25,244,178,198,205,183,219,228,251,252,194,215,216,201,201,216,217,210,210,217,218,211,211,218,225,212,212,225,226,213,213,226,234,214,269,283,285,270,270,285,286,271,271,286,287,272,272,287,288,273,273,288,289,274,274,289,284,275,276,262,263,278,278,263,264,279,279,264,265,280,280,265,266,281,281,266,267,282,282,267,268,277,251,154,148,252,235,6,0,253,57,24,35,97,241,242,245,246,247,241,246,248,249,247,248,250,254,249,250,255,256,292,293,257,290,258,259,291,258,260,261,259,260,256,257,261,294,295,296,297,297,296,298,299,299,298,300,301,301,300,302,303,303,302,304,305,305,304,306,307,308,309,310,311,311,310,312,313,313,312,314,315,315,314,316,317,317,316,318,319,319,318,320,321,322,323,324,325,325,324,326,327,327,326,328,329,
329,328,330,331,331,330,332,333,333,332,334,335
}
}
LayerElementSmoothing: 0 {
Version: 102
Name: ""
MappingInformationType: "ByPolygon"
ReferenceInformationType: "Direct"
Smoothing: *141 {
a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
}
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: *1 {
a: 0
}
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementSmoothing"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
}
}
Geometry: 79292512, "Geometry::", "Mesh" {
Properties70: {
P: "Color", "ColorRGB", "Color", "",0,0,0
}
Vertices: *153 {
a: 5.5000114440918,7.6575870513916,0,-5.75391721725464,0.709403991699219,-4.71097183227539,-5.75644969940186,-12.7612571716309,32.0256576538086,5.75609397888184,-12.7612457275391,32.0256462097168,5.75395727157593,-5.94838714599609,31.8751029968262,-5.75387859344482,-5.94838714599609,31.8751029968262,5.7556004524231,-11.008602142334,34.1719436645508,5.75447463989258,-7.44818878173828,34.0932693481445,-5.75448703765869,-7.44819641113281,34.0932731628418,-5.75582075119019,-11.0086097717285,34.1719589233398,2.3395824432373,-5.94838714599609,31.8751029968262,-2.33950304985046,-5.94838333129883,31.8751068115234,2.33976578712463,-7.44819259643555,34.0932693481445,-2.33977770805359,-7.44819259643555,34.0932693481445,-2.34038281440735,-11.0086097717285,34.1719551086426,2.34016036987305,-11.008602142334,34.171947479248,-2.33919024467468,-6.05490875244141,20.9186382293701,-5.75647115707397,-5.43608474731445,17.3549728393555,5.75607442855835,-5.43607711791992,17.3549785614014,5.75393915176392,-1.56026077270508,19.2641906738281,-5.75389957427979,-1.56026077270508,19.2641906738281,-2.33975458145142,-1.56040191650391,19.2494773864746,2.33979201316834,-1.56040191650391,19.2494773864746,2.33927202224731,-6.05490875244141,20.9186401367188,-5.75646829605103,-12.8700103759766,20.8405380249023,5.75607681274414,-12.8700065612793,20.8405418395996,5.75394153594971,-6.05456924438477,20.9539756774902,-5.75389671325684,-6.05456924438477,20.9539756774902,-8.88472461700439,-7.01129531860352,-4.76837158203125e-006,5.75391721725464,0.709400177001953,-4.71097087860107,-5.49988460540771,7.6575927734375,-6.67572021484375e-006,8.88457584381104,-7.01129531860352,-1.04904174804688e-005,2.34032154083252,-12.7612533569336,32.0256538391113,-2.34067797660828,-12.7612571716309,32.0256576538086,-2.33926796913147,-12.8703498840332,20.8052082061768,-2.33982992172241,-5.43622207641602,17.3402614593506,2.3398597240448,-5.43621826171875,17.3402614593506,2.33934211730957,-12.8703498840332,20.8052062988281,8.81730556488037,-6.84539413452148,-0.101239204406738,
-2.40829277038574,7.66194915771484,-0.0143547058105469,-2.29864072799683,4.62325286865234,6.33297348022461,2.2987380027771,4.62325477600098,6.33297348022461,2.40839171409607,7.66195106506348,-0.0143527984619141,2.50204634666443,2.88285827636719,-3.24216556549072,-2.50199437141418,2.88286018371582,-3.24216461181641,-2.40829133987427,15.9753112792969,-0.0143585205078125,-2.35098505020142,15.1976680755615,2.64157962799072,2.35108709335327,15.1976699829102,2.64158153533936,2.40839385986328,15.9753112792969,-0.0143585205078125,2.50205063819885,14.1875782012939,-3.24216508865356,-2.5019896030426,14.1875801086426,-3.24216747283936
}
PolygonVertexIndex: *188 {
a: 31,18,36,35,17,-29,45,46,47,-49,0,38,-30,20,30,28,-18,8,9,14,-14,6,7,12,-16,5,8,13,-12,7,4,10,-13,3,6,15,-33,9,2,33,-15,2,24,34,-34,37,25,3,-33,4,26,23,-11,27,5,11,-17,19,26,25,-19,24,27,20,-18,17,35,34,-25,37,36,18,-26,19,22,23,-27,16,21,20,-28,4,7,6,3,25,-27,2,9,8,5,27,-25,48,49,50,-46,28,1,29,38,-32,22,21,35,-37,10,23,37,-33,16,11,33,-35,21,16,34,-36,23,22,36,-38,11,13,14,-34,12,10,32,-16,30,1,-29,0,19,18,31,-39,30,20,21,40,-40,21,22,41,-41,22,19,0,42,-42,0,29,43,-43,29,1,44,-44,1,30,39,-45,39,40,46,-46,40,41,47,-47,41,42,48,-48,42,43,49,-49,43,44,50,-50,44,39,45,-51
}
Edges: *94 {
a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,33,35,36,37,38,39,41,42,43,45,46,48,49,50,51,53,55,56,57,58,59,60,61,62,64,66,69,73,74,77,78,93,94,95,97,98,100,102,103,105,107,109,111,113,130,133,140,141,142,144,145,149,150,153,154,157,158,162,165,167,169,173,177,181
}
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: *564 {
a: 4.44710757108169e-008,-0.909219145774841,-0.416317969560623,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.995902836322784,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,2.74791496224225e-008,0.99321049451828,-0.116331242024899,-3.23627176612717e-007,0.727757394313812,0.68583470582962,-3.23627148191008e-007,0.727757453918457,0.685834646224976,2.74781406517377e-008,0.993210554122925,-0.116329796612263,0.981909334659576,0.187957853078842,-0.0229327920824289,0.982997357845306,0.177996918559074,0.0450910553336143,0.938536465167999,0.21654962003231,-0.268803894519806,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.982990562915802,0.183441579341888,0.00886562094092369,-0.995148360729218,0.081681527197361,0.0548443235456944,1.00857654672382e-007,0.478616148233414,0.878024220466614,8.14175280083873e-007,-0.41873824596405,0.908106982707977,8.14291126971511e-007,-0.418614625930786,0.908163964748383,1.00537725700178e-007,0.478743195533752,0.877954959869385,1.37581753278937e-006,-0.418724179267883,0.908113479614258,4.66176857116807e-008,0.478629797697067,0.878016829490662,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.37565484692459e-006,-0.418630361557007,0.908156752586365,-1.08653375718859e-006,0.95754611492157,0.288280010223389,1.00857654672382e-007,0.478616148233414,0.878024220466614,1.00537725700178e-007,0.478743195533752,0.877954959869385,-1.0865470585486e-006,0.957556307315826,0.288246423006058,4.66176857116807e-008,0.478629797697067,0.878016829490662,6.7395426128769e-008,0.957547247409821,0.288276493549347,6.74466420491626e-008,0.957555592060089,0.288248807191849,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.37581753278937e-006,-0.418724179267883,0.908113479614258,
1.37565484692459e-006,-0.418630361557007,0.908156752586365,1.59860996973293e-006,-0.940313279628754,0.340310156345367,8.14175280083873e-007,-0.41873824596405,0.908106982707977,5.00284102145088e-007,-0.940321147441864,0.340288281440735,5.00276144066447e-007,-0.940313160419464,0.340310275554657,8.14291126971511e-007,-0.418614625930786,0.908163964748383,5.00284102145088e-007,-0.940321147441864,0.340288281440735,-0.00394238950684667,-0.847836792469025,-0.530242502689362,-0.00397934997454286,-0.844639360904694,-0.535321116447449,5.00276144066447e-007,-0.940313160419464,0.340310275554657,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00394507823511958,-0.847837686538696,-0.530241191387177,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.59860996973293e-006,-0.940313279628754,0.340310156345367,6.7395426128769e-008,0.957547247409821,0.288276493549347,5.91617947520717e-007,0.999952733516693,-0.00972198694944382,5.91618004364136e-007,0.999952793121338,-0.00972198788076639,6.74466420491626e-008,0.957555592060089,0.288248807191849,-1.14892100100406e-006,0.999952673912048,-0.00972215924412012,-1.08653375718859e-006,0.95754611492157,0.288280010223389,-1.0865470585486e-006,0.957556307315826,0.288246423006058,-1.14892111469089e-006,0.999952793121338,-0.00972215924412012,0.991193056106567,0.110595740377903,0.0728347525000572,0.999999940395355,0.000291181000648066,0.000403401500079781,1,0.000305500696413219,0.000140330230351537,0.995189428329468,0.0817648619413376,0.05396793410182,-1,0.000367543805623427,0.000172826199559495,-0.99999988079071,0.000350344431353733,0.000488451041746885,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.995148360729218,0.081681527197361,0.0548443235456944,-0.00666291266679764,-0.423480898141861,-0.905880510807037,-0.00666291266679764,-0.423480868339539,-0.905880510807037,-0.00397934997454286,-0.844639360904694,-0.535321116447449,-0.00394238950684667,-0.847836792469025,-0.530242502689362,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00666577974334359,-0.42348051071167,-0.905880749225616,
0.0066657792776823,-0.42348051071167,-0.905880689620972,0.00394507823511958,-0.847837686538696,-0.530241191387177,-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.00688986293971539,0.350031852722168,0.936712503433228,-0.0068898624740541,0.350031852722168,0.936712443828583,0.00689009018242359,0.350031703710556,0.936712443828583,0.00292409467510879,0.767534494400024,0.641001045703888,0.00444498751312494,0.673383235931396,0.73928028345108,0.00689009018242359,0.350031733512878,0.936712503433228,1,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03629075360368e-006,0.999999940395355,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03628984410898e-006,1,0.000305500696413219,0.000140330230351537,0.999999940395355,0.000291181000648066,0.000403401500079781,-0.999999940395355,0.000377178512280807,-3.98013116864604e-006,-1,0.000377178541384637,-3.98013162339339e-006,-0.99999988079071,0.000377178483176976,-3.98013116864604e-006,-0.999999940395355,0.000377178483176976,-3.98013116864604e-006,-0.99999988079071,0.000350344431353733,0.000488451041746885,-1,0.000367543805623427,0.000172826199559495,2.74781406517377e-008,0.993210554122925,-0.116329796612263,2.89497421590568e-007,0.874788641929626,-0.484504669904709,2.89497450012277e-007,0.874788641929626,-0.484504729509354,2.74791496224225e-008,0.99321049451828,-0.116331242024899,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,-2.10690288326987e-007,-0.520867049694061,-0.853637933731079,-2.10690245694423e-007,-0.520866990089417,-0.853637754917145,-2.10690274116132e-007,-0.520867049694061,-0.853637933731079,4.44710757108169e-008,-0.909219145774841,-0.416317969560623,1.76881684410546e-007,-0.441892832517624,0.897067904472351,1.76881684410546e-007,-0.441892832517624,0.897067844867706,1.76881684410546e-007,-0.441892802715302,0.897067844867706,1.76881698621401e-007,-0.441892832517624,0.897067904472351,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-1.04934470073204e-005,-8.07480464573018e-005,
-1,-4.17995288444217e-005,8.87675560079515e-006,-1,-7.75585795054212e-005,4.13079469581135e-005,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-0.00012170282570878,5.09969067934435e-005,1,-0.00012107447400922,5.15745559823699e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848571269773e-005,-0.000175496694282629,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848553079879e-005,-0.000175496694282629,-1,-1.04934470073204e-005,-8.07480464573018e-005,-0.999999940395355,1.76060439116554e-005,-0.000161192860105075,-1,1.76060475496342e-005,-0.00016119287465699,-1,-4.17995288444217e-005,8.87675560079515e-006,1,-0.00012170282570878,5.09969067934435e-005,1,-0.000171482024597935,5.23620974490768e-006,1,-0.000171482024597935,5.23620974490768e-006,1,-0.00012107447400922,5.15745559823699e-005,-0.999999940395355,-0.000109036707726773,1.13971454993589e-005,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-7.75585795054212e-005,4.13079469581135e-005,-1,-0.000109036707726773,1.13971464088536e-005,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.938532829284668,0.216566041111946,-0.26880344748497,-0.982990562915802,0.183441579341888,0.00886562094092369,0.981909334659576,0.187957853078842,-0.0229327920824289,0.991193056106567,0.110595740377903,0.0728347525000572,0.995189428329468,0.0817648619413376,0.05396793410182,0.979672253131866,0.167647048830986,0.110167257487774,0.982997357845306,0.177996918559074,0.0450910553336143,0.00132380367722362,0.902004957199097,0.431723564863205,0.00444498751312494,0.673383235931396,0.73928028345108,0.00292409467510879,0.767534494400024,0.641001045703888,0.000698961492162198,0.804160416126251,0.594411849975586,0.00132380367722362,0.902005076408386,0.431723594665527,0.00292409467510879,0.767534494400024,0.641001045703888,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.000698878196999431,0.804160177707672,0.594412207603455,0.000698961492162198,0.804160416126251,0.594411849975586,-0.00292389816604555,0.767535150051117,0.641000270843506,
-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00132311077322811,0.902004957199097,0.431723594665527,-0.00132311077322811,0.902005076408386,0.431723594665527,-0.000698878196999431,0.804160177707672,0.594412207603455,0.0026144296862185,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,0.00125286937691271,0.56026417016983,-0.828312933444977,0.00261442922055721,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00125175062566996,0.560264050960541,-0.828313112258911,0.00125286937691271,0.56026417016983,-0.828312933444977,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00261251977644861,0.560632586479187,-0.828060448169708,-0.00261252000927925,0.560632586479187,-0.828060567378998,-0.00125175062566996,0.560264050960541,-0.828313112258911,-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999820351600647,0.000929871632251889,0.0189350247383118,-0.999820291996002,0.000929871632251889,0.0189350228756666,-0.999723613262177,0.000508760975208133,0.023502541705966,0.000698961492162198,0.804160416126251,0.594411849975586,-0.000698878196999431,0.804160177707672,0.594412207603455,-3.23627148191008e-007,0.727757453918457,0.685834646224976,-3.23627176612717e-007,0.727757394313812,0.68583470582962,0.999820232391357,0.000929440720938146,0.0189350731670856,0.999698400497437,0.000410573615226895,0.024554206058383,0.999723792076111,0.000508232857100666,0.0234966650605202,0.999820291996002,0.000929440779145807,0.0189350750297308,0.999698400497437,0.000410573615226895,0.024554206058383,0.999579310417175,-3.20250990171189e-007,0.0290033705532551,0.999579250812531,-3.2025096174948e-007,0.0290033705532551,0.999723792076111,0.000508232857100666,0.0234966650605202,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,-0.999579012393951,3.25778501064633e-007,0.0290164034813643,
-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999723613262177,0.000508760975208133,0.023502541705966,-0.999578952789307,3.25778472642924e-007,0.029016399756074
}
}
LayerElementUV: 0 {
Version: 101
Name: "UVChannel_1"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: *232 {
a: 0.718026459217072,0.77487576007843,0.620723366737366,0.757407307624817,0.596680104732513,0.738339424133301,0.596680581569672,0.712196469306946,0.620804965496063,0.738332629203796,0.620804965496063,0.712202906608582,0.739280164241791,0.83125376701355,0.719395160675049,0.831258416175842,0.739281117916107,0.812187194824219,0.71939605474472,0.812187790870667,0.739280581474304,0.782818078994751,0.838054597377777,0.951547503471375,0.739281535148621,0.801884651184082,0.754231631755829,0.83125102519989,0.754231631755829,0.812186241149902,0.897790968418121,0.951700747013092,0.754231989383698,0.782820224761963,0.754231989383698,0.801884889602661,0.719395577907562,0.782814621925354,0.719396471977234,0.80188524723053,0.703923761844635,0.782812595367432,0.70392382144928,0.80188512802124,0.703923344612122,0.831261396408081,0.703923344612122,0.812188863754272,0.815214335918427,0.782819628715515,0.815412402153015,0.801885843276978,0.815214157104492,0.831251382827759,0.815411984920502,0.812184929847717,0.477487474679947,0.694524645805359,0.596754252910614,0.693118572235107,0.62241119146347,0.921994090080261,0.706267833709717,0.870061635971069,0.706582188606262,0.846180737018585,0.516720473766327,0.712422013282776,0.477449089288712,0.711787581443787,0.741542220115662,0.899407804012299,0.725823402404785,0.864745438098907,0.797700226306915,0.871967494487762,0.804308772087097,0.857978463172913,0.795360147953033,0.84022045135498,0.780576944351196,0.837988197803497,0.620723247528076,0.693125605583191,0.516720473766327,0.738112807273865,0.744551301002502,0.936707198619843,0.744992017745972,0.912827551364899,0.828948795795441,0.861124336719513,0.725418031215668,0.91799008846283,0.70999151468277,0.883196711540222,0.67041951417923,0.944260239601135,0.655656754970551,0.941896498203278,0.646866798400879,0.924059629440308,0.653600335121155,0.910129368305206,0.596754014492035,0.75741708278656,0.477487474679947,0.756010413169861,0.477449089288712,0.738747954368591,0.430597931146622,0.757376313209534,0.445260912179947,0.739231944084167,
0.430597931146622,0.69315779209137,0.898675858974457,0.988852143287659,0.445260912179947,0.711302757263184,0.641465961933136,0.831261038780212,0.837500035762787,0.988695561885834,0.897790968418121,0.951700747013092,0.838054597377777,0.951547503471375,0.837500035762787,0.988695561885834,0.898675858974457,0.988852143287659,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.64126980304718,0.812180638313293,0.641270160675049,0.801890969276428,0.829830408096313,0.861753284931183,0.641466617584229,0.78281307220459,0.736806809902191,0.958201229572296,0.751931846141815,0.958514451980591,0.75193178653717,0.984212756156921,0.736806809902191,0.984525918960571,0.716640710830688,0.985037744045258,0.716640710830688,0.957689106464386,0.593630135059357,0.967060565948486,0.576833307743073,0.932457089424133,0.813144505023956,0.983926892280579,0.593630373477936,0.967059254646301,0.567607462406158,0.984849274158478,0.65485680103302,0.957688987255096,0.587353765964508,0.845670938491821,0.578437149524689,0.891691327095032,0.872810304164886,0.891484797000885,0.863814532756805,0.937489688396454,0.595621585845947,0.83153247833252,0.595474302768707,0.812455534934998,0.595474541187286,0.801614880561829,0.595622301101685,0.782540321350098,0.842023074626923,0.782634735107422,0.842182636260986,0.801697611808777,0.842182099819183,0.81237268447876,0.842023015022278,0.831435561180115,0.718025743961334,0.675657987594604,0.768527030944824,0.693138957023621,0.768527567386627,0.757394671440125,0.719111800193787,0.774500250816345,0.813144564628601,0.958800733089447,0.576834440231323,0.932455122470856,0.65485680103302,0.985037624835968,0.567607700824738,0.984851658344269,0.639064133167267,0.966812372207642,0.634734570980072,0.952316701412201,0.63473516702652,0.952316701412201,0.639064133167267,0.966812372207642,0.629389941692352,
0.984513282775879,0.629390180110931,0.984513521194458
}
UVIndex: *188 {
a: 0,1,4,5,41,102,78,79,80,81,93,76,92,32,90,30,31,6,7,9,8,18,10,12,19,13,6,8,14,10,16,17,12,20,18,19,21,7,22,23,9,22,60,74,23,75,77,20,21,16,24,25,17,26,13,14,27,43,46,47,44,35,36,32,31,94,95,74,60,75,96,97,77,98,99,25,24,27,100,101,26,48,49,50,51,47,46,37,38,39,40,36,35,81,82,83,78,102,103,104,105,0,2,3,5,4,11,15,58,61,62,63,64,65,66,62,65,67,15,68,69,58,63,70,71,64,72,11,61,73,90,91,30,93,43,44,45,76,28,29,3,33,34,3,2,42,33,2,52,53,54,42,53,55,56,54,55,57,59,56,57,28,34,59,84,85,111,110,106,86,80,79,107,87,113,112,87,88,114,113,108,89,83,82,109,84,110,115
}
}
LayerElementSmoothing: 0 {
Version: 102
Name: ""
MappingInformationType: "ByPolygon"
ReferenceInformationType: "Direct"
Smoothing: *45 {
a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
}
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: *1 {
a: 0
}
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementSmoothing"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
}
}
Geometry: 79289824, "Geometry::", "Mesh" {
Properties70: {
P: "Color", "ColorRGB", "Color", "",0,0,0
}
Vertices: *78 {
a: 2.19355082511902,-3.46841621398926,1.41854381561279,-2.1934597492218,-3.46842384338379,1.41855144500732,2.1944055557251,3.34444046020508,1.26800346374512,-2.19440031051636,3.34444046020508,1.26800346374512,-5.79921913146973,3.49526977539063,-13.3516530990601,5.79886341094971,3.49526977539063,-13.3516492843628,5.71111631393433,-3.55295944213867,-10.0958890914917,-5.87265682220459,9.94716644287109,-35.5147666931152,5.87142896652222,9.94712829589844,-35.5146369934082,1.18374192714691,0.320854187011719,-45.6312294006348,-1.18253231048584,0.320827484130859,-45.6311187744141,1.35103595256805,4.6059684753418,-52.0008010864258,-1.35107696056366,4.60597229003906,-52.0008201599121,2.19440460205078,-3.55268478393555,-10.0947523117065,-2.19440126419067,-3.55268478393555,-10.0947523117065,2.19525980949402,3.4949836730957,-13.3527822494507,-2.19534111022949,3.49499893188477,-13.3527956008911,2.19375205039978,-1.8631420135498,3.63425731658936,2.19420409202576,1.73915863037109,3.55465221405029,-2.19417858123779,1.73915863037109,3.55465221405029,-2.19368124008179,-1.8631420135498,3.63425731658936,-8.89849472045898,2.05113983154297,-30.593433380127,8.89828205108643,2.05117034912109,-30.5935478210449,-9.30727291107178,-4.64540481567383,-30.6022491455078,9.304762840271,-4.64543914794922,-30.6021308898926,-5.71118211746216,-3.55296325683594,-10.0958852767944
}
PolygonVertexIndex: *90 {
a: 11,12,7,-9,18,19,20,-18,16,3,2,-16,0,1,14,-14,7,12,-11,9,10,12,-12,17,0,13,15,2,-19,19,3,16,14,1,-21,14,16,4,-26,15,13,6,-6,2,3,19,-19,1,0,17,-21,9,11,-9,10,23,21,-8,23,24,6,13,14,-26,5,6,24,-23,22,24,9,-9,10,9,24,-24,8,7,21,-23,21,23,25,-5,22,21,4,16,15,-6
}
Edges: *45 {
a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,22,23,25,27,29,31,33,36,37,38,40,41,42,53,54,55,56,58,59,63,66,67,69,71,78,83
}
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: *270 {
a: 5.93501590628875e-006,0.951318740844727,-0.308208674192429,5.93501590628875e-006,0.951318800449371,-0.308208674192429,5.9350154515414e-006,0.951318740844727,-0.308208644390106,5.93501590628875e-006,0.951318860054016,-0.308208703994751,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,9.01636610706191e-007,0.951974272727966,0.306178033351898,9.01632802197128e-007,0.951973915100098,0.306179255247116,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.09704194528604e-006,-0.950128376483917,0.311859160661697,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-0.943988382816315,-0.284816920757294,-0.166629120707512,-0.945601105690002,-0.166950970888138,-0.279223829507828,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-6.33586159892729e-006,-0.82971602678299,-0.558185815811157,-6.33586159892729e-006,-0.82971602678299,-0.558185756206512,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438333311118,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000101879792e-007,0.419483006000519,0.907763242721558,7.59000101879792e-007,0.419483006000519,0.907763123512268,
-1.89759475688334e-007,0.419482380151749,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763481140137,-1.89759489899188e-007,0.419482409954071,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763421535492,9.01632802197128e-007,0.951973915100098,0.306179255247116,9.01636610706191e-007,0.951974272727966,0.306178033351898,0,0.818452954292297,0.574573516845703,0,0.818452954292297,0.574573516845703,1.09704194528604e-006,-0.950128376483917,0.311859160661697,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.21404855235596e-006,-0.809803426265717,0.586701214313507,1.21404855235596e-006,-0.809803485870361,0.586701214313507,0.945631086826324,-0.166806280612946,-0.279208689928055,0.944055140018463,-0.28458034992218,-0.16665555536747,0.915561258792877,-0.0233527943491936,-0.401499927043915,-0.945601105690002,-0.166950970888138,-0.279223829507828,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,-1.21686173315538e-006,-0.998583674430847,0.0532044656574726,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-1.21686150578171e-006,-0.998583614826202,0.053204458206892,0.983405351638794,0.0629978999495506,0.17013281583786,0.983405351638794,0.0629978999495506,0.170132830739021,0.990401387214661,0.0618207827210426,-0.123625583946705,0.973206758499146,0.0601941086351871,-0.221912324428558,0.973206758499146,0.0601941086351871,-0.221912324428558,0.990401387214661,0.0618207827210426,-0.123625583946705,0.945631086826324,-0.166806280612946,-0.279208689928055,0.915561258792877,-0.0233527943491936,-0.401499927043915,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,
-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-3.01873456010071e-007,0.528933107852936,0.848663449287415,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933107852936,0.848663449287415,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.983387589454651,0.0631496086716652,0.170179396867752,-0.983387529850006,0.0631496012210846,0.170179381966591,-1.34919184802129e-006,0.996511220932007,-0.0834584534168243,-1.34919184802129e-006,0.996511161327362,-0.0834584534168243,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049
}
}
LayerElementUV: 0 {
Version: 101
Name: "UVChannel_1"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: *120 {
a: 0.900907397270203,0.51922208070755,0.900910019874573,0.538964569568634,0.900911092758179,0.554273664951324,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.912504732608795,0.863914310932159,0.931023716926575,0.960283517837524,0.959636151790619,0.929436683654785,0.810051441192627,0.647458672523499,0.809129953384399,0.689522385597229,0.967708349227905,0.625024497509003,0.927610993385315,0.626275658607483,0.927610993385315,0.626275658607483,0.967708349227905,0.625024497509003,0.876864552497864,0.538964569568634,0.876863718032837,0.554273664951324,0.876867055892944,0.51922208070755,0.876858592033386,0.634389698505402,0.912504732608795,0.863914310932159,0.867547750473022,0.560738444328308,0.995323896408081,0.696268200874329,0.993189573287964,0.710242807865143,0.976453185081482,0.718396544456482,0.96367084980011,0.711688816547394,0.96367084980011,0.711688816547394,0.976453185081482,0.718396544456482,0.993189573287964,0.710242807865143,0.995323896408081,0.696268200874329,0.896290719509125,0.875123560428619,0.881484925746918,0.875123560428619,0.856709659099579,0.780168116092682,0.921059310436249,0.780168116092682,0.9009108543396,0.441142708063126,0.900906324386597,0.504229485988617,0.876868486404419,0.504229485988617,0.876863241195679,0.441142708063126,0.95849609375,0.836354374885559,0.765566110610962,0.560722947120667,0.785273790359497,0.448206067085266,0.804542541503906,0.44820249080658,0.828590154647827,0.448206067085266,0.847859382629395,0.448215126991272,0.937644243240356,0.729188024997711,0.840129971504211,0.729188024997711,0.955485343933105,0.740087985992432,0.958487033843994,0.836354076862335,0.955477714538574,0.740089356899261,0.823935508728027,0.689524054527283,0.931023716926575,0.960283517837524,0.90091609954834,0.634389698505402,0.920661449432373,0.634383499622345,0.857111811637878,0.634383499622345,0.823017358779907,0.647459626197815,0.959636151790619,0.929436683654785,0.995174646377563,0.838666796684265,
0.995174646377563,0.838666796684265,0.995033740997314,0.724431157112122,0.995033740997314,0.724431157112122
}
UVIndex: *90 {
a: 30,31,32,33,1,16,18,0,19,17,2,51,35,36,37,34,7,8,9,10,54,49,11,28,29,5,4,26,27,24,25,6,3,22,23,3,6,13,15,4,5,12,14,2,17,16,1,36,35,0,18,55,50,20,9,56,38,7,21,39,40,41,42,43,46,58,57,47,47,57,55,20,54,10,39,21,33,32,45,44,38,56,59,48,44,45,53,19,51,52
}
}
LayerElementSmoothing: 0 {
Version: 102
Name: ""
MappingInformationType: "ByPolygon"
ReferenceInformationType: "Direct"
Smoothing: *21 {
a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
}
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: *1 {
a: 0
}
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementSmoothing"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
}
}
Geometry: 79312608, "Geometry::", "Mesh" {
Properties70: {
P: "Color", "ColorRGB", "Color", "",0,0,0
}
Vertices: *168 {
a: 17.2972240447998,-29.9597110748291,34.0730781555176,29.9596920013428,-17.2972621917725,34.0730781555176,29.9597187042236,17.2972145080566,34.0730781555176,17.297269821167,29.9596843719482,34.0730781555176,15.2430515289307,-26.4017734527588,38.4763946533203,26.4017581939697,-15.2430839538574,38.4763946533203,26.4017791748047,15.2430438995361,38.4763946533203,15.2430934906006,26.4017505645752,38.4763946533203,-17.2972240447998,-29.9597110748291,34.0730781555176,-29.9596920013428,-17.2972621917725,34.0730781555176,-29.9597187042236,17.2972145080566,34.0730781555176,-17.297269821167,29.9596843719482,34.0730781555176,-15.2430515289307,-26.4017734527588,38.4763946533203,-26.4017581939697,-15.2430839538574,38.4763946533203,-26.4017791748047,15.2430438995361,38.4763946533203,-15.2430934906006,26.4017505645752,38.4763946533203,17.2957344055176,-29.9571304321289,8.05157279968262,29.9571094512939,-17.2957725524902,8.05157279968262,17.2957801818848,29.957103729248,8.05157279968262,-17.2957344055176,-29.9571304321289,8.05157279968262,-29.9571361541748,17.2957248687744,8.05157279968262,-17.2957801818848,29.957103729248,8.05157279968262,16.5668411254883,-28.6946487426758,6.47703075408936,28.6946258544922,-16.5668792724609,6.47703075408936,28.694652557373,16.5668296813965,6.47703075408936,16.5668849945068,28.6946220397949,6.47703075408936,-16.5668411254883,-28.6946487426758,6.47703075408936,-28.6946258544922,-16.5668792724609,6.47703075408936,-28.694652557373,16.5668296813965,6.47703075408936,-16.5668849945068,28.6946220397949,6.47703075408936,-11.3108310699463,-16.9085426330566,37.387393951416,11.3108310699463,-16.9085426330566,37.387393951416,16.9085292816162,-11.3108520507813,37.387393951416,16.9085445404053,11.310827255249,37.387393951416,11.310863494873,16.908519744873,37.387393951416,-11.310863494873,16.908519744873,37.387393951416,-16.9085445404053,11.310827255249,37.387393951416,-16.9085292816162,-11.3108520507813,37.387393951416,-12.1057062149048,-18.827543258667,38.4763946533203,12.1057062149048,-18.827543258667,38.4763946533203,
18.8275451660156,12.1057014465332,38.4763946533203,12.1057405471802,18.8275203704834,38.4763946533203,-12.1057405471802,18.8275203704834,38.4763946533203,-18.8275279998779,-12.1057291030884,38.4763946533203,14.9895296096802,-10.5159749984741,38.4763946533203,14.9895439147949,10.5159530639648,38.4763946533203,10.5159864425659,14.989520072937,38.4763946533203,-10.5159864425659,14.989520072937,38.4763946533203,-14.9895439147949,10.5159530639648,38.4763946533203,-14.9895296096802,-10.5159749984741,38.4763946533203,-10.5159559249878,-14.9895429611206,38.4763946533203,10.5159559249878,-14.9895429611206,38.4763946533203,29.9571361541748,17.2957248687744,8.05157279968262,-29.9571094512939,-17.2957725524902,8.05157279968262,18.8275279998779,-12.1057291030884,38.4763946533203,-18.8275451660156,12.1057014465332,38.4763946533203
}
PolygonVertexIndex: *200 {
a: 17,1,0,-17,18,3,2,-53,4,12,8,-1,0,1,5,-5,2,3,7,-7,3,11,15,-8,53,19,8,-10,21,20,10,-12,8,12,13,-10,10,14,15,-12,16,19,26,-23,17,16,22,-24,52,17,23,-25,18,52,24,-26,21,18,25,-30,19,53,27,-27,53,20,28,-28,20,21,29,-29,51,44,45,46,47,48,49,-51,15,14,55,-43,4,5,54,-40,51,31,32,-45,44,32,33,-46,45,33,34,-47,46,34,35,-48,47,35,36,-49,48,36,37,-50,49,37,30,-51,50,30,31,-52,39,31,30,-39,54,32,31,-40,40,33,32,-55,41,34,33,-41,42,35,34,-42,55,36,35,-43,43,37,36,-56,38,30,37,-44,6,40,54,-6,13,43,55,-15,10,20,53,-10,0,8,19,-17,11,3,18,-22,14,10,9,-14,39,38,12,-5,38,43,13,-13,42,41,7,-16,41,40,6,-8,1,17,52,-3,5,1,2,-7
}
Edges: *104 {
a: 0,1,2,3,4,5,6,7,8,9,10,11,13,14,17,18,19,20,21,22,24,25,26,27,28,29,30,31,33,34,36,37,40,41,42,43,46,47,48,50,51,54,55,56,58,59,61,62,64,65,66,70,72,73,74,75,76,77,78,79,81,82,83,85,86,87,88,89,90,93,94,97,98,101,102,105,106,109,110,113,114,117,120,122,123,124,128,131,132,135,136,139,140,144,147,151,152,155,156,159,163,177,185,195
}
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: *600 {
a: 0.923880636692047,-0.382680743932724,-0.000113585563667584,0.923877835273743,-0.382687449455261,-0.000113585658255033,0.382686465978622,-0.923878252506256,-0.000113545997010078,0.38267970085144,-0.923881053924561,-0.000113545887870714,0.382680475711823,0.923880815505981,-0.00011354593152646,0.382687211036682,0.923877954483032,-0.000113546026113909,0.923878371715546,0.382686018943787,-0.000113585643703118,0.923881232738495,0.382679313421249,-0.000113585556391627,0.170372173190117,-0.447276502847672,0.878018736839294,-0.170372173190117,-0.447276502847672,0.878018736839294,-0.292463034391403,-0.672519505023956,0.679840385913849,0.292463034391403,-0.672519505023956,0.679840385913849,0.292463034391403,-0.672519505023956,0.679840385913849,0.672519147396088,-0.29246386885643,0.679840385913849,0.447276443243027,-0.170372650027275,0.878018796443939,0.170372173190117,-0.447276502847672,0.878018736839294,0.672519683837891,0.292462736368179,0.679840266704559,0.292463630437851,0.672519385814667,0.679840266704559,0.170372545719147,0.447276681661606,0.878018736839294,0.447276651859283,0.170372024178505,0.878018736839294,0.292463630437851,0.672519385814667,0.679840266704559,-0.292463630437851,0.672519385814667,0.679840266704559,-0.170372545719147,0.447276681661606,0.878018736839294,0.170372545719147,0.447276681661606,0.878018736839294,-0.923880636692047,-0.382680714130402,-0.000113585563667584,-0.382679730653763,-0.923881053924561,-0.000113545887870714,-0.382686495780945,-0.923878252506256,-0.000113546011561994,-0.923877835273743,-0.382687449455261,-0.000113585680082906,-0.382680535316467,0.923880815505981,-0.00011354593152646,-0.923881232738495,0.382679283618927,-0.000113585556391627,-0.923878371715546,0.382685989141464,-0.000113585643703118,-0.382687270641327,0.923877894878387,-0.000113546026113909,-0.292463034391403,-0.672519505023956,0.679840385913849,-0.170372173190117,-0.447276502847672,0.878018736839294,-0.447276443243027,-0.170372650027275,0.878018796443939,-0.672519147396088,-0.29246386885643,0.679840385913849,
-0.672519683837891,0.292462736368179,0.679840266704559,-0.447276711463928,0.170372024178505,0.87801867723465,-0.170372545719147,0.447276681661606,0.878018736839294,-0.292463630437851,0.672519385814667,0.679840266704559,0.293463885784149,-0.674928843975067,-0.677015483379364,-0.293463885784149,-0.674928843975067,-0.677015483379364,-0.262842923402786,-0.689711809158325,-0.674693405628204,0.262842923402786,-0.689711809158325,-0.674693405628204,0.674928426742554,-0.29346439242363,-0.677015781402588,0.293463885784149,-0.674928843975067,-0.677015483379364,0.262842923402786,-0.689711809158325,-0.674693405628204,0.689711213111877,-0.262843757867813,-0.674693763256073,0.674928545951843,0.293463528156281,-0.677016019821167,0.674928426742554,-0.29346439242363,-0.677015781402588,0.689711213111877,-0.262843757867813,-0.674693763256073,0.689711689949036,0.262842267751694,-0.674693882465363,0.293464362621307,0.674928367137909,-0.677015841007233,0.674928545951843,0.293463528156281,-0.677016019821167,0.689711689949036,0.262842267751694,-0.674693882465363,0.262843251228333,0.689711451530457,-0.674693763256073,-0.293464362621307,0.674928367137909,-0.677015841007233,0.293464362621307,0.674928367137909,-0.677015841007233,0.262843251228333,0.689711451530457,-0.674693763256073,-0.262843251228333,0.689711451530457,-0.674693763256073,-0.293463885784149,-0.674928843975067,-0.677015483379364,-0.674928367137909,-0.293464362621307,-0.677015781402588,-0.689711213111877,-0.262843757867813,-0.674693822860718,-0.262842923402786,-0.689711809158325,-0.674693405628204,-0.674928367137909,-0.293464362621307,-0.677015781402588,-0.674928545951843,0.293463528156281,-0.677016019821167,-0.689711630344391,0.262842237949371,-0.674693882465363,-0.689711213111877,-0.262843757867813,-0.674693822860718,-0.674928545951843,0.293463528156281,-0.677016019821167,-0.293464362621307,0.674928367137909,-0.677015841007233,-0.262843251228333,0.689711451530457,-0.674693763256073,-0.689711630344391,0.262842237949371,-0.674693882465363,0.112370640039444,-0.271287024021149,0.955916464328766,
0.271286875009537,-0.112370930612087,0.955916464328766,0.271287053823471,0.112370483577251,0.955916464328766,0.112370908260345,0.271286964416504,0.955916464328766,-0.112370893359184,0.271286964416504,0.955916464328766,-0.271287053823471,0.112370498478413,0.955916464328766,-0.271286875009537,-0.112370945513248,0.955916464328766,-0.112370640039444,-0.271287024021149,0.955916464328766,-0.170372545719147,0.447276681661606,0.878018736839294,-0.447276711463928,0.170372024178505,0.87801867723465,0.167554423213005,-0.0694031417369843,0.983416855335236,0.0694033205509186,-0.167554184794426,0.983416974544525,0.170372173190117,-0.447276502847672,0.878018736839294,0.447276443243027,-0.170372650027275,0.878018796443939,-0.167554318904877,0.0694034025073051,0.98341691493988,-0.069403238594532,0.167554393410683,0.98341691493988,0.112370640039444,-0.271287024021149,0.955916464328766,0.177694469690323,-0.428992807865143,0.885657846927643,0.428992509841919,-0.177694872021675,0.885657846927643,0.271286875009537,-0.112370930612087,0.955916464328766,0.271286875009537,-0.112370930612087,0.955916464328766,0.428992509841919,-0.177694872021675,0.885657846927643,0.428992837667465,0.177694216370583,0.885657966136932,0.271287053823471,0.112370483577251,0.955916464328766,0.271287053823471,0.112370483577251,0.955916464328766,0.428992837667465,0.177694216370583,0.885657966136932,0.177694797515869,0.428992480039597,0.885657906532288,0.112370908260345,0.271286964416504,0.955916464328766,0.112370908260345,0.271286964416504,0.955916464328766,0.177694797515869,0.428992480039597,0.885657906532288,-0.177694797515869,0.428992539644241,0.885657906532288,-0.112370893359184,0.271286964416504,0.955916464328766,-0.112370893359184,0.271286964416504,0.955916464328766,-0.177694797515869,0.428992539644241,0.885657906532288,-0.42899289727211,0.177694246172905,0.885657966136932,-0.271287053823471,0.112370498478413,0.955916464328766,-0.271287053823471,0.112370498478413,0.955916464328766,-0.42899289727211,0.177694246172905,0.885657966136932,-0.428992539644241,-0.177694886922836,0.885657846927643,
-0.271286875009537,-0.112370945513248,0.955916464328766,-0.271286875009537,-0.112370945513248,0.955916464328766,-0.428992539644241,-0.177694886922836,0.885657846927643,-0.177694469690323,-0.428992837667465,0.885657846927643,-0.112370640039444,-0.271287024021149,0.955916464328766,-0.112370640039444,-0.271287024021149,0.955916464328766,-0.177694469690323,-0.428992837667465,0.885657846927643,0.177694469690323,-0.428992807865143,0.885657846927643,0.112370640039444,-0.271287024021149,0.955916464328766,-0.069403238594532,0.167554393410683,0.98341691493988,-0.177694454789162,0.428992718458176,0.885657906532288,0.177694454789162,0.428992718458176,0.885657906532288,0.069403238594532,0.167554393410683,0.98341691493988,-0.167554318904877,0.0694034025073051,0.98341691493988,-0.428992599248886,0.177694857120514,0.885657906532288,-0.177694454789162,0.428992718458176,0.885657906532288,-0.069403238594532,0.167554393410683,0.98341691493988,-0.167554438114166,-0.0694031417369843,0.983416855335236,-0.428992837667465,-0.17769418656826,0.885657846927643,-0.428992599248886,0.177694857120514,0.885657906532288,-0.167554318904877,0.0694034025073051,0.98341691493988,-0.0694033056497574,-0.167554154992104,0.983416855335236,-0.177694767713547,-0.428992420434952,0.885658025741577,-0.428992837667465,-0.17769418656826,0.885657846927643,-0.167554438114166,-0.0694031417369843,0.983416855335236,0.0694033205509186,-0.167554184794426,0.983416974544525,0.177694767713547,-0.428992420434952,0.885658025741577,-0.177694767713547,-0.428992420434952,0.885658025741577,-0.0694033056497574,-0.167554154992104,0.983416855335236,0.167554423213005,-0.0694031417369843,0.983416855335236,0.428992867469788,-0.177694201469421,0.885657966136932,0.177694767713547,-0.428992420434952,0.885658025741577,0.0694033205509186,-0.167554184794426,0.983416974544525,0.167554318904877,0.0694034025073051,0.98341691493988,0.428992599248886,0.177694872021675,0.885657966136932,0.428992867469788,-0.177694201469421,0.885657966136932,0.167554423213005,-0.0694031417369843,0.983416855335236,
0.069403238594532,0.167554393410683,0.98341691493988,0.177694454789162,0.428992718458176,0.885657906532288,0.428992599248886,0.177694872021675,0.885657966136932,0.167554318904877,0.0694034025073051,0.98341691493988,0.447276651859283,0.170372024178505,0.878018736839294,-0.167554438114166,-0.0694031417369843,0.983416855335236,-0.167554318904877,0.0694034025073051,0.98341691493988,0.447276443243027,-0.170372650027275,0.878018796443939,-0.447276443243027,-0.170372650027275,0.878018796443939,0.167554318904877,0.0694034025073051,0.98341691493988,0.167554423213005,-0.0694031417369843,0.983416855335236,-0.447276711463928,0.170372024178505,0.87801867723465,-0.923878371715546,0.382685989141464,-0.000113585643703118,-0.923881232738495,0.382679283618927,-0.000113585556391627,-0.923880636692047,-0.382680714130402,-0.000113585563667584,-0.923877835273743,-0.382687449455261,-0.000113585680082906,0.382686465978622,-0.923878252506256,-0.000113545997010078,-0.382686495780945,-0.923878252506256,-0.000113546011561994,-0.382679730653763,-0.923881053924561,-0.000113545887870714,0.38267970085144,-0.923881053924561,-0.000113545887870714,-0.382687270641327,0.923877894878387,-0.000113546026113909,0.382687211036682,0.923877954483032,-0.000113546026113909,0.382680475711823,0.923880815505981,-0.00011354593152646,-0.382680535316467,0.923880815505981,-0.00011354593152646,-0.447276711463928,0.170372024178505,0.87801867723465,-0.672519683837891,0.292462736368179,0.679840266704559,-0.672519147396088,-0.29246386885643,0.679840385913849,-0.447276443243027,-0.170372650027275,0.878018796443939,-0.069403238594532,0.167554393410683,0.98341691493988,0.069403238594532,0.167554393410683,0.98341691493988,-0.170372173190117,-0.447276502847672,0.878018736839294,0.170372173190117,-0.447276502847672,0.878018736839294,0.069403238594532,0.167554393410683,0.98341691493988,0.167554318904877,0.0694034025073051,0.98341691493988,-0.447276443243027,-0.170372650027275,0.878018796443939,-0.170372173190117,-0.447276502847672,0.878018736839294,0.0694033205509186,-0.167554184794426,0.983416974544525,
-0.0694033056497574,-0.167554154992104,0.983416855335236,0.170372545719147,0.447276681661606,0.878018736839294,-0.170372545719147,0.447276681661606,0.878018736839294,-0.0694033056497574,-0.167554154992104,0.983416855335236,-0.167554438114166,-0.0694031417369843,0.983416855335236,0.447276651859283,0.170372024178505,0.878018736839294,0.170372545719147,0.447276681661606,0.878018736839294,0.923877835273743,-0.382687449455261,-0.000113585658255033,0.923880636692047,-0.382680743932724,-0.000113585563667584,0.923881232738495,0.382679313421249,-0.000113585556391627,0.923878371715546,0.382686018943787,-0.000113585643703118,0.447276443243027,-0.170372650027275,0.878018796443939,0.672519147396088,-0.29246386885643,0.679840385913849,0.672519683837891,0.292462736368179,0.679840266704559,0.447276651859283,0.170372024178505,0.878018736839294
}
}
LayerElementUV: 0 {
Version: 101
Name: "UVChannel_1"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: *156 {
a: 0.329880654811859,0.229877427220345,0.329880654811859,0.393413245677948,0.218197494745255,0.393413245677948,0.218197494745255,0.229877427220345,0.0037561864592135,0.418763935565948,0.0037561864592135,0.58231258392334,0.544882357120514,0.393413245677948,0.544882357120514,0.229877427220345,0.545054078102112,0.418763935565948,0.0035864869132638,0.229877427220345,0.0035864869132638,0.393413245677948,0.545054078102112,0.58231258392334,0.038227092474699,0.699823021888733,0.0382291451096535,0.893849194049835,0.00506999483332038,0.911163985729218,0.00506824580952525,0.682508766651154,0.0912318527698517,0.596344709396362,0.108546234667301,0.629503607749939,0.218443244695663,0.418763935565948,0.330058693885803,0.418763935565948,0.330058693885803,0.58231258392334,0.218443244695663,0.58231258392334,0.319886982440948,0.596344172954559,0.406051188707352,0.682507336139679,0.0035864869132638,0.216881185770035,0.218197494745255,0.216881185770035,0.329880654811859,0.216881185770035,0.544882357120514,0.216881185770035,0.0037561864592135,0.405763983726501,0.218443244695663,0.405763983726501,0.545054078102112,0.405763983726501,0.330058693885803,0.405763983726501,0.372892320156097,0.699821770191193,0.302572518587112,0.62950336933136,0.406052738428116,0.911163330078125,0.372893899679184,0.893848955631256,0.108548708260059,0.964168190956116,0.0912341997027397,0.997327327728271,0.319889277219772,0.997327327728271,0.302574872970581,0.964168190956116,0.282927274703979,0.916846334934235,0.325571656227112,0.874201774597168,0.12819367647171,0.676825225353241,0.0855491608381271,0.719470083713531,0.0990209355950356,0.725051939487457,0.0990224927663803,0.868619620800018,0.0855504646897316,0.874202013015747,0.133775666356087,0.690297245979309,0.28292590379715,0.676825225353241,0.277343958616257,0.69029712677002,0.325570732355118,0.719469428062439,0.312098979949951,0.725051462650299,0.312100440263748,0.868619918823242,0.277345448732376,0.90337473154068,0.128195613622665,0.916846096515656,0.133777350187302,0.903374493122101,0.856013298034668,
0.224569663405418,0.882237672805786,0.250793755054474,0.882237672805786,0.374553680419922,0.856013894081116,0.400777637958527,0.732253670692444,0.400777637958527,0.706029534339905,0.374553680419922,0.706029534339905,0.250793755054474,0.732253909111023,0.224569663405418,0.861246585845947,0.211935117840767,0.894872188568115,0.24556040763855,0.894872188568115,0.379787147045136,0.861247181892395,0.41341245174408,0.727019965648651,0.413412272930145,0.693395256996155,0.379787147045136,0.693395256996155,0.245560467243195,0.727019965648651,0.211935117840767,0.656109929084778,0.229877427220345,0.656109929084778,0.393413245677948,0.656109929084778,0.216881185770035,0.65635472536087,0.418763935565948,0.65635472536087,0.58231258392334,0.65635472536087,0.405763983726501
}
UVIndex: *200 {
a: 0,1,2,3,72,73,6,7,12,13,14,15,15,16,17,12,22,23,32,33,23,34,35,32,8,75,76,11,18,19,20,21,14,13,36,37,38,39,35,34,3,9,24,25,0,3,25,26,7,0,26,27,72,7,27,74,18,4,28,29,75,8,30,77,8,19,31,30,19,18,29,31,56,57,58,59,60,61,62,63,35,39,40,41,12,17,42,43,56,64,65,57,57,65,66,58,58,66,67,59,59,67,68,60,60,68,69,61,61,69,70,62,62,70,71,63,63,71,64,56,43,44,45,46,42,47,44,43,48,49,47,42,50,51,49,48,41,52,51,50,40,53,52,41,54,55,53,40,46,45,55,54,33,48,42,17,36,54,40,39,20,19,8,11,2,10,9,3,21,5,4,18,39,38,37,36,43,46,13,12,46,54,36,13,41,50,32,35,50,48,33,32,1,0,7,6,17,16,22,33
}
}
LayerElementSmoothing: 0 {
Version: 102
Name: ""
MappingInformationType: "ByPolygon"
ReferenceInformationType: "Direct"
Smoothing: *49 {
a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
}
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: *1 {
a: 0
}
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementSmoothing"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
}
}
Geometry: 79354576, "Geometry::", "Mesh" {
Properties70: {
P: "Color", "ColorRGB", "Color", "",0,0,0
}
Vertices: *153 {
a: 5.5000114440918,7.6575870513916,0,-5.75391721725464,0.709403991699219,-4.71097183227539,-5.75644969940186,-12.7612571716309,32.0256576538086,5.75609397888184,-12.7612457275391,32.0256462097168,5.75395727157593,-5.94838714599609,31.8751029968262,-5.75387859344482,-5.94838714599609,31.8751029968262,5.7556004524231,-11.008602142334,34.1719436645508,5.75447463989258,-7.44818878173828,34.0932693481445,-5.75448703765869,-7.44819641113281,34.0932731628418,-5.75582075119019,-11.0086097717285,34.1719589233398,2.3395824432373,-5.94838714599609,31.8751029968262,-2.33950304985046,-5.94838333129883,31.8751068115234,2.33976578712463,-7.44819259643555,34.0932693481445,-2.33977770805359,-7.44819259643555,34.0932693481445,-2.34038281440735,-11.0086097717285,34.1719551086426,2.34016036987305,-11.008602142334,34.171947479248,-2.33919024467468,-6.05490875244141,20.9186382293701,-5.75647115707397,-5.43608474731445,17.3549728393555,5.75607442855835,-5.43607711791992,17.3549785614014,5.75393915176392,-1.56026077270508,19.2641906738281,-5.75389957427979,-1.56026077270508,19.2641906738281,-2.33975458145142,-1.56040191650391,19.2494773864746,2.33979201316834,-1.56040191650391,19.2494773864746,2.33927202224731,-6.05490875244141,20.9186401367188,-5.75646829605103,-12.8700103759766,20.8405380249023,5.75607681274414,-12.8700065612793,20.8405418395996,5.75394153594971,-6.05456924438477,20.9539756774902,-5.75389671325684,-6.05456924438477,20.9539756774902,-8.88472461700439,-7.01129531860352,-4.76837158203125e-006,5.75391721725464,0.709400177001953,-4.71097087860107,-5.49988460540771,7.6575927734375,-6.67572021484375e-006,8.88457584381104,-7.01129531860352,-1.04904174804688e-005,2.34032154083252,-12.7612533569336,32.0256538391113,-2.34067797660828,-12.7612571716309,32.0256576538086,-2.33926796913147,-12.8703498840332,20.8052082061768,-2.33982992172241,-5.43622207641602,17.3402614593506,2.3398597240448,-5.43621826171875,17.3402614593506,2.33934211730957,-12.8703498840332,20.8052062988281,8.81730556488037,-6.84539413452148,-0.101239204406738,
-2.40829277038574,7.66194915771484,-0.0143547058105469,-2.29864072799683,4.62325286865234,6.33297348022461,2.2987380027771,4.62325477600098,6.33297348022461,2.40839171409607,7.66195106506348,-0.0143527984619141,2.50204634666443,2.88285827636719,-3.24216556549072,-2.50199437141418,2.88286018371582,-3.24216461181641,-2.40829133987427,15.9753112792969,-0.0143585205078125,-2.35098505020142,15.1976680755615,2.64157962799072,2.35108709335327,15.1976699829102,2.64158153533936,2.40839385986328,15.9753112792969,-0.0143585205078125,2.50205063819885,14.1875782012939,-3.24216508865356,-2.5019896030426,14.1875801086426,-3.24216747283936
}
PolygonVertexIndex: *188 {
a: 31,18,36,35,17,-29,45,46,47,-49,0,38,-30,20,30,28,-18,8,9,14,-14,6,7,12,-16,5,8,13,-12,7,4,10,-13,3,6,15,-33,9,2,33,-15,2,24,34,-34,37,25,3,-33,4,26,23,-11,27,5,11,-17,19,26,25,-19,24,27,20,-18,17,35,34,-25,37,36,18,-26,19,22,23,-27,16,21,20,-28,4,7,6,3,25,-27,2,9,8,5,27,-25,48,49,50,-46,28,1,29,38,-32,22,21,35,-37,10,23,37,-33,16,11,33,-35,21,16,34,-36,23,22,36,-38,11,13,14,-34,12,10,32,-16,30,1,-29,0,19,18,31,-39,30,20,21,40,-40,21,22,41,-41,22,19,0,42,-42,0,29,43,-43,29,1,44,-44,1,30,39,-45,39,40,46,-46,40,41,47,-47,41,42,48,-48,42,43,49,-49,43,44,50,-50,44,39,45,-51
}
Edges: *94 {
a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,33,35,36,37,38,39,41,42,43,45,46,48,49,50,51,53,55,56,57,58,59,60,61,62,64,66,69,73,74,77,78,93,94,95,97,98,100,102,103,105,107,109,111,113,130,133,140,141,142,144,145,149,150,153,154,157,158,162,165,167,169,173,177,181
}
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: *564 {
a: 4.44710757108169e-008,-0.909219145774841,-0.416317969560623,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.995902836322784,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,2.74791496224225e-008,0.99321049451828,-0.116331242024899,-3.23627176612717e-007,0.727757394313812,0.68583470582962,-3.23627148191008e-007,0.727757453918457,0.685834646224976,2.74781406517377e-008,0.993210554122925,-0.116329796612263,0.981909334659576,0.187957853078842,-0.0229327920824289,0.982997357845306,0.177996918559074,0.0450910553336143,0.938536465167999,0.21654962003231,-0.268803894519806,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.982990562915802,0.183441579341888,0.00886562094092369,-0.995148360729218,0.081681527197361,0.0548443235456944,1.00857654672382e-007,0.478616148233414,0.878024220466614,8.14175280083873e-007,-0.41873824596405,0.908106982707977,8.14291126971511e-007,-0.418614625930786,0.908163964748383,1.00537725700178e-007,0.478743195533752,0.877954959869385,1.37581753278937e-006,-0.418724179267883,0.908113479614258,4.66176857116807e-008,0.478629797697067,0.878016829490662,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.37565484692459e-006,-0.418630361557007,0.908156752586365,-1.08653375718859e-006,0.95754611492157,0.288280010223389,1.00857654672382e-007,0.478616148233414,0.878024220466614,1.00537725700178e-007,0.478743195533752,0.877954959869385,-1.0865470585486e-006,0.957556307315826,0.288246423006058,4.66176857116807e-008,0.478629797697067,0.878016829490662,6.7395426128769e-008,0.957547247409821,0.288276493549347,6.74466420491626e-008,0.957555592060089,0.288248807191849,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.37581753278937e-006,-0.418724179267883,0.908113479614258,
1.37565484692459e-006,-0.418630361557007,0.908156752586365,1.59860996973293e-006,-0.940313279628754,0.340310156345367,8.14175280083873e-007,-0.41873824596405,0.908106982707977,5.00284102145088e-007,-0.940321147441864,0.340288281440735,5.00276144066447e-007,-0.940313160419464,0.340310275554657,8.14291126971511e-007,-0.418614625930786,0.908163964748383,5.00284102145088e-007,-0.940321147441864,0.340288281440735,-0.00394238950684667,-0.847836792469025,-0.530242502689362,-0.00397934997454286,-0.844639360904694,-0.535321116447449,5.00276144066447e-007,-0.940313160419464,0.340310275554657,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00394507823511958,-0.847837686538696,-0.530241191387177,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.59860996973293e-006,-0.940313279628754,0.340310156345367,6.7395426128769e-008,0.957547247409821,0.288276493549347,5.91617947520717e-007,0.999952733516693,-0.00972198694944382,5.91618004364136e-007,0.999952793121338,-0.00972198788076639,6.74466420491626e-008,0.957555592060089,0.288248807191849,-1.14892100100406e-006,0.999952673912048,-0.00972215924412012,-1.08653375718859e-006,0.95754611492157,0.288280010223389,-1.0865470585486e-006,0.957556307315826,0.288246423006058,-1.14892111469089e-006,0.999952793121338,-0.00972215924412012,0.991193056106567,0.110595740377903,0.0728347525000572,0.999999940395355,0.000291181000648066,0.000403401500079781,1,0.000305500696413219,0.000140330230351537,0.995189428329468,0.0817648619413376,0.05396793410182,-1,0.000367543805623427,0.000172826199559495,-0.99999988079071,0.000350344431353733,0.000488451041746885,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.995148360729218,0.081681527197361,0.0548443235456944,-0.00666291266679764,-0.423480898141861,-0.905880510807037,-0.00666291266679764,-0.423480868339539,-0.905880510807037,-0.00397934997454286,-0.844639360904694,-0.535321116447449,-0.00394238950684667,-0.847836792469025,-0.530242502689362,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00666577974334359,-0.42348051071167,-0.905880749225616,
0.0066657792776823,-0.42348051071167,-0.905880689620972,0.00394507823511958,-0.847837686538696,-0.530241191387177,-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.00688986293971539,0.350031852722168,0.936712503433228,-0.0068898624740541,0.350031852722168,0.936712443828583,0.00689009018242359,0.350031703710556,0.936712443828583,0.00292409467510879,0.767534494400024,0.641001045703888,0.00444498751312494,0.673383235931396,0.73928028345108,0.00689009018242359,0.350031733512878,0.936712503433228,1,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03629075360368e-006,0.999999940395355,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03628984410898e-006,1,0.000305500696413219,0.000140330230351537,0.999999940395355,0.000291181000648066,0.000403401500079781,-0.999999940395355,0.000377178512280807,-3.98013116864604e-006,-1,0.000377178541384637,-3.98013162339339e-006,-0.99999988079071,0.000377178483176976,-3.98013116864604e-006,-0.999999940395355,0.000377178483176976,-3.98013116864604e-006,-0.99999988079071,0.000350344431353733,0.000488451041746885,-1,0.000367543805623427,0.000172826199559495,2.74781406517377e-008,0.993210554122925,-0.116329796612263,2.89497421590568e-007,0.874788641929626,-0.484504669904709,2.89497450012277e-007,0.874788641929626,-0.484504729509354,2.74791496224225e-008,0.99321049451828,-0.116331242024899,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,-2.10690288326987e-007,-0.520867049694061,-0.853637933731079,-2.10690245694423e-007,-0.520866990089417,-0.853637754917145,-2.10690274116132e-007,-0.520867049694061,-0.853637933731079,4.44710757108169e-008,-0.909219145774841,-0.416317969560623,1.76881684410546e-007,-0.441892832517624,0.897067904472351,1.76881684410546e-007,-0.441892832517624,0.897067844867706,1.76881684410546e-007,-0.441892802715302,0.897067844867706,1.76881698621401e-007,-0.441892832517624,0.897067904472351,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-1.04934470073204e-005,-8.07480464573018e-005,
-1,-4.17995288444217e-005,8.87675560079515e-006,-1,-7.75585795054212e-005,4.13079469581135e-005,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-0.00012170282570878,5.09969067934435e-005,1,-0.00012107447400922,5.15745559823699e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848571269773e-005,-0.000175496694282629,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848553079879e-005,-0.000175496694282629,-1,-1.04934470073204e-005,-8.07480464573018e-005,-0.999999940395355,1.76060439116554e-005,-0.000161192860105075,-1,1.76060475496342e-005,-0.00016119287465699,-1,-4.17995288444217e-005,8.87675560079515e-006,1,-0.00012170282570878,5.09969067934435e-005,1,-0.000171482024597935,5.23620974490768e-006,1,-0.000171482024597935,5.23620974490768e-006,1,-0.00012107447400922,5.15745559823699e-005,-0.999999940395355,-0.000109036707726773,1.13971454993589e-005,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-7.75585795054212e-005,4.13079469581135e-005,-1,-0.000109036707726773,1.13971464088536e-005,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.938532829284668,0.216566041111946,-0.26880344748497,-0.982990562915802,0.183441579341888,0.00886562094092369,0.981909334659576,0.187957853078842,-0.0229327920824289,0.991193056106567,0.110595740377903,0.0728347525000572,0.995189428329468,0.0817648619413376,0.05396793410182,0.979672253131866,0.167647048830986,0.110167257487774,0.982997357845306,0.177996918559074,0.0450910553336143,0.00132380367722362,0.902004957199097,0.431723564863205,0.00444498751312494,0.673383235931396,0.73928028345108,0.00292409467510879,0.767534494400024,0.641001045703888,0.000698961492162198,0.804160416126251,0.594411849975586,0.00132380367722362,0.902005076408386,0.431723594665527,0.00292409467510879,0.767534494400024,0.641001045703888,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.000698878196999431,0.804160177707672,0.594412207603455,0.000698961492162198,0.804160416126251,0.594411849975586,-0.00292389816604555,0.767535150051117,0.641000270843506,
-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00132311077322811,0.902004957199097,0.431723594665527,-0.00132311077322811,0.902005076408386,0.431723594665527,-0.000698878196999431,0.804160177707672,0.594412207603455,0.0026144296862185,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,0.00125286937691271,0.56026417016983,-0.828312933444977,0.00261442922055721,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00125175062566996,0.560264050960541,-0.828313112258911,0.00125286937691271,0.56026417016983,-0.828312933444977,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00261251977644861,0.560632586479187,-0.828060448169708,-0.00261252000927925,0.560632586479187,-0.828060567378998,-0.00125175062566996,0.560264050960541,-0.828313112258911,-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999820351600647,0.000929871632251889,0.0189350247383118,-0.999820291996002,0.000929871632251889,0.0189350228756666,-0.999723613262177,0.000508760975208133,0.023502541705966,0.000698961492162198,0.804160416126251,0.594411849975586,-0.000698878196999431,0.804160177707672,0.594412207603455,-3.23627148191008e-007,0.727757453918457,0.685834646224976,-3.23627176612717e-007,0.727757394313812,0.68583470582962,0.999820232391357,0.000929440720938146,0.0189350731670856,0.999698400497437,0.000410573615226895,0.024554206058383,0.999723792076111,0.000508232857100666,0.0234966650605202,0.999820291996002,0.000929440779145807,0.0189350750297308,0.999698400497437,0.000410573615226895,0.024554206058383,0.999579310417175,-3.20250990171189e-007,0.0290033705532551,0.999579250812531,-3.2025096174948e-007,0.0290033705532551,0.999723792076111,0.000508232857100666,0.0234966650605202,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,-0.999579012393951,3.25778501064633e-007,0.0290164034813643,
-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999723613262177,0.000508760975208133,0.023502541705966,-0.999578952789307,3.25778472642924e-007,0.029016399756074
}
}
LayerElementUV: 0 {
Version: 101
Name: "UVChannel_1"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: *232 {
a: 0.718026459217072,0.77487576007843,0.620723366737366,0.757407307624817,0.596680104732513,0.738339424133301,0.596680581569672,0.712196469306946,0.620804965496063,0.738332629203796,0.620804965496063,0.712202906608582,0.739280164241791,0.83125376701355,0.719395160675049,0.831258416175842,0.739281117916107,0.812187194824219,0.71939605474472,0.812187790870667,0.739280581474304,0.782818078994751,0.838054597377777,0.951547503471375,0.739281535148621,0.801884651184082,0.754231631755829,0.83125102519989,0.754231631755829,0.812186241149902,0.897790968418121,0.951700747013092,0.754231989383698,0.782820224761963,0.754231989383698,0.801884889602661,0.719395577907562,0.782814621925354,0.719396471977234,0.80188524723053,0.703923761844635,0.782812595367432,0.70392382144928,0.80188512802124,0.703923344612122,0.831261396408081,0.703923344612122,0.812188863754272,0.815214335918427,0.782819628715515,0.815412402153015,0.801885843276978,0.815214157104492,0.831251382827759,0.815411984920502,0.812184929847717,0.477487474679947,0.694524645805359,0.596754252910614,0.693118572235107,0.62241119146347,0.921994090080261,0.706267833709717,0.870061635971069,0.706582188606262,0.846180737018585,0.516720473766327,0.712422013282776,0.477449089288712,0.711787581443787,0.741542220115662,0.899407804012299,0.725823402404785,0.864745438098907,0.797700226306915,0.871967494487762,0.804308772087097,0.857978463172913,0.795360147953033,0.84022045135498,0.780576944351196,0.837988197803497,0.620723247528076,0.693125605583191,0.516720473766327,0.738112807273865,0.744551301002502,0.936707198619843,0.744992017745972,0.912827551364899,0.828948795795441,0.861124336719513,0.725418031215668,0.91799008846283,0.70999151468277,0.883196711540222,0.67041951417923,0.944260239601135,0.655656754970551,0.941896498203278,0.646866798400879,0.924059629440308,0.653600335121155,0.910129368305206,0.596754014492035,0.75741708278656,0.477487474679947,0.756010413169861,0.477449089288712,0.738747954368591,0.430597931146622,0.757376313209534,0.445260912179947,0.739231944084167,
0.430597931146622,0.69315779209137,0.898675858974457,0.988852143287659,0.445260912179947,0.711302757263184,0.641465961933136,0.831261038780212,0.837500035762787,0.988695561885834,0.897790968418121,0.951700747013092,0.838054597377777,0.951547503471375,0.837500035762787,0.988695561885834,0.898675858974457,0.988852143287659,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.64126980304718,0.812180638313293,0.641270160675049,0.801890969276428,0.829830408096313,0.861753284931183,0.641466617584229,0.78281307220459,0.736806809902191,0.958201229572296,0.751931846141815,0.958514451980591,0.75193178653717,0.984212756156921,0.736806809902191,0.984525918960571,0.716640710830688,0.985037744045258,0.716640710830688,0.957689106464386,0.593630135059357,0.967060565948486,0.576833307743073,0.932457089424133,0.813144505023956,0.983926892280579,0.593630373477936,0.967059254646301,0.567607462406158,0.984849274158478,0.65485680103302,0.957688987255096,0.587353765964508,0.845670938491821,0.578437149524689,0.891691327095032,0.872810304164886,0.891484797000885,0.863814532756805,0.937489688396454,0.595621585845947,0.83153247833252,0.595474302768707,0.812455534934998,0.595474541187286,0.801614880561829,0.595622301101685,0.782540321350098,0.842023074626923,0.782634735107422,0.842182636260986,0.801697611808777,0.842182099819183,0.81237268447876,0.842023015022278,0.831435561180115,0.718025743961334,0.675657987594604,0.768527030944824,0.693138957023621,0.768527567386627,0.757394671440125,0.719111800193787,0.774500250816345,0.813144564628601,0.958800733089447,0.576834440231323,0.932455122470856,0.65485680103302,0.985037624835968,0.567607700824738,0.984851658344269,0.639064133167267,0.966812372207642,0.634734570980072,0.952316701412201,0.63473516702652,0.952316701412201,0.639064133167267,0.966812372207642,0.629389941692352,
0.984513282775879,0.629390180110931,0.984513521194458
}
UVIndex: *188 {
a: 0,1,4,5,41,102,78,79,80,81,93,76,92,32,90,30,31,6,7,9,8,18,10,12,19,13,6,8,14,10,16,17,12,20,18,19,21,7,22,23,9,22,60,74,23,75,77,20,21,16,24,25,17,26,13,14,27,43,46,47,44,35,36,32,31,94,95,74,60,75,96,97,77,98,99,25,24,27,100,101,26,48,49,50,51,47,46,37,38,39,40,36,35,81,82,83,78,102,103,104,105,0,2,3,5,4,11,15,58,61,62,63,64,65,66,62,65,67,15,68,69,58,63,70,71,64,72,11,61,73,90,91,30,93,43,44,45,76,28,29,3,33,34,3,2,42,33,2,52,53,54,42,53,55,56,54,55,57,59,56,57,28,34,59,84,85,111,110,106,86,80,79,107,87,113,112,87,88,114,113,108,89,83,82,109,84,110,115
}
}
LayerElementSmoothing: 0 {
Version: 102
Name: ""
MappingInformationType: "ByPolygon"
ReferenceInformationType: "Direct"
Smoothing: *45 {
a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
}
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: *1 {
a: 0
}
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementSmoothing"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
}
}
Geometry: 79348352, "Geometry::", "Mesh" {
Properties70: {
P: "Color", "ColorRGB", "Color", "",0,0,0
}
Vertices: *78 {
a: 2.19355082511902,-3.46841621398926,1.41854381561279,-2.1934597492218,-3.46842384338379,1.41855144500732,2.1944055557251,3.34444046020508,1.26800346374512,-2.19440031051636,3.34444046020508,1.26800346374512,-5.79921913146973,3.49526977539063,-13.3516530990601,5.79886341094971,3.49526977539063,-13.3516492843628,5.71111631393433,-3.55295944213867,-10.0958890914917,-5.87265682220459,9.94716644287109,-35.5147666931152,5.87142896652222,9.94712829589844,-35.5146369934082,1.18374192714691,0.320854187011719,-45.6312294006348,-1.18253231048584,0.320827484130859,-45.6311187744141,1.35103595256805,4.6059684753418,-52.0008010864258,-1.35107696056366,4.60597229003906,-52.0008201599121,2.19440460205078,-3.55268478393555,-10.0947523117065,-2.19440126419067,-3.55268478393555,-10.0947523117065,2.19525980949402,3.4949836730957,-13.3527822494507,-2.19534111022949,3.49499893188477,-13.3527956008911,2.19375205039978,-1.8631420135498,3.63425731658936,2.19420409202576,1.73915863037109,3.55465221405029,-2.19417858123779,1.73915863037109,3.55465221405029,-2.19368124008179,-1.8631420135498,3.63425731658936,-8.89849472045898,2.05113983154297,-30.593433380127,8.89828205108643,2.05117034912109,-30.5935478210449,-9.30727291107178,-4.64540481567383,-30.6022491455078,9.304762840271,-4.64543914794922,-30.6021308898926,-5.71118211746216,-3.55296325683594,-10.0958852767944
}
PolygonVertexIndex: *90 {
a: 11,12,7,-9,18,19,20,-18,16,3,2,-16,0,1,14,-14,7,12,-11,9,10,12,-12,17,0,13,15,2,-19,19,3,16,14,1,-21,14,16,4,-26,15,13,6,-6,2,3,19,-19,1,0,17,-21,9,11,-9,10,23,21,-8,23,24,6,13,14,-26,5,6,24,-23,22,24,9,-9,10,9,24,-24,8,7,21,-23,21,23,25,-5,22,21,4,16,15,-6
}
Edges: *45 {
a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,22,23,25,27,29,31,33,36,37,38,40,41,42,53,54,55,56,58,59,63,66,67,69,71,78,83
}
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: *270 {
a: 5.93501590628875e-006,0.951318740844727,-0.308208674192429,5.93501590628875e-006,0.951318800449371,-0.308208674192429,5.9350154515414e-006,0.951318740844727,-0.308208644390106,5.93501590628875e-006,0.951318860054016,-0.308208703994751,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,9.01636610706191e-007,0.951974272727966,0.306178033351898,9.01632802197128e-007,0.951973915100098,0.306179255247116,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.09704194528604e-006,-0.950128376483917,0.311859160661697,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-0.943988382816315,-0.284816920757294,-0.166629120707512,-0.945601105690002,-0.166950970888138,-0.279223829507828,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-6.33586159892729e-006,-0.82971602678299,-0.558185815811157,-6.33586159892729e-006,-0.82971602678299,-0.558185756206512,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438333311118,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000101879792e-007,0.419483006000519,0.907763242721558,7.59000101879792e-007,0.419483006000519,0.907763123512268,
-1.89759475688334e-007,0.419482380151749,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763481140137,-1.89759489899188e-007,0.419482409954071,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763421535492,9.01632802197128e-007,0.951973915100098,0.306179255247116,9.01636610706191e-007,0.951974272727966,0.306178033351898,0,0.818452954292297,0.574573516845703,0,0.818452954292297,0.574573516845703,1.09704194528604e-006,-0.950128376483917,0.311859160661697,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.21404855235596e-006,-0.809803426265717,0.586701214313507,1.21404855235596e-006,-0.809803485870361,0.586701214313507,0.945631086826324,-0.166806280612946,-0.279208689928055,0.944055140018463,-0.28458034992218,-0.16665555536747,0.915561258792877,-0.0233527943491936,-0.401499927043915,-0.945601105690002,-0.166950970888138,-0.279223829507828,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,-1.21686173315538e-006,-0.998583674430847,0.0532044656574726,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-1.21686150578171e-006,-0.998583614826202,0.053204458206892,0.983405351638794,0.0629978999495506,0.17013281583786,0.983405351638794,0.0629978999495506,0.170132830739021,0.990401387214661,0.0618207827210426,-0.123625583946705,0.973206758499146,0.0601941086351871,-0.221912324428558,0.973206758499146,0.0601941086351871,-0.221912324428558,0.990401387214661,0.0618207827210426,-0.123625583946705,0.945631086826324,-0.166806280612946,-0.279208689928055,0.915561258792877,-0.0233527943491936,-0.401499927043915,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,
-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-3.01873456010071e-007,0.528933107852936,0.848663449287415,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933107852936,0.848663449287415,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.983387589454651,0.0631496086716652,0.170179396867752,-0.983387529850006,0.0631496012210846,0.170179381966591,-1.34919184802129e-006,0.996511220932007,-0.0834584534168243,-1.34919184802129e-006,0.996511161327362,-0.0834584534168243,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049
}
}
LayerElementUV: 0 {
Version: 101
Name: "UVChannel_1"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: *120 {
a: 0.900907397270203,0.51922208070755,0.900910019874573,0.538964569568634,0.900911092758179,0.554273664951324,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.912504732608795,0.863914310932159,0.931023716926575,0.960283517837524,0.959636151790619,0.929436683654785,0.810051441192627,0.647458672523499,0.809129953384399,0.689522385597229,0.967708349227905,0.625024497509003,0.927610993385315,0.626275658607483,0.927610993385315,0.626275658607483,0.967708349227905,0.625024497509003,0.876864552497864,0.538964569568634,0.876863718032837,0.554273664951324,0.876867055892944,0.51922208070755,0.876858592033386,0.634389698505402,0.912504732608795,0.863914310932159,0.867547750473022,0.560738444328308,0.995323896408081,0.696268200874329,0.993189573287964,0.710242807865143,0.976453185081482,0.718396544456482,0.96367084980011,0.711688816547394,0.96367084980011,0.711688816547394,0.976453185081482,0.718396544456482,0.993189573287964,0.710242807865143,0.995323896408081,0.696268200874329,0.896290719509125,0.875123560428619,0.881484925746918,0.875123560428619,0.856709659099579,0.780168116092682,0.921059310436249,0.780168116092682,0.9009108543396,0.441142708063126,0.900906324386597,0.504229485988617,0.876868486404419,0.504229485988617,0.876863241195679,0.441142708063126,0.95849609375,0.836354374885559,0.765566110610962,0.560722947120667,0.785273790359497,0.448206067085266,0.804542541503906,0.44820249080658,0.828590154647827,0.448206067085266,0.847859382629395,0.448215126991272,0.937644243240356,0.729188024997711,0.840129971504211,0.729188024997711,0.955485343933105,0.740087985992432,0.958487033843994,0.836354076862335,0.955477714538574,0.740089356899261,0.823935508728027,0.689524054527283,0.931023716926575,0.960283517837524,0.90091609954834,0.634389698505402,0.920661449432373,0.634383499622345,0.857111811637878,0.634383499622345,0.823017358779907,0.647459626197815,0.959636151790619,0.929436683654785,0.995174646377563,0.838666796684265,
0.995174646377563,0.838666796684265,0.995033740997314,0.724431157112122,0.995033740997314,0.724431157112122
}
UVIndex: *90 {
a: 30,31,32,33,1,16,18,0,19,17,2,51,35,36,37,34,7,8,9,10,54,49,11,28,29,5,4,26,27,24,25,6,3,22,23,3,6,13,15,4,5,12,14,2,17,16,1,36,35,0,18,55,50,20,9,56,38,7,21,39,40,41,42,43,46,58,57,47,47,57,55,20,54,10,39,21,33,32,45,44,38,56,59,48,44,45,53,19,51,52
}
}
LayerElementSmoothing: 0 {
Version: 102
Name: ""
MappingInformationType: "ByPolygon"
ReferenceInformationType: "Direct"
Smoothing: *21 {
a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
}
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: *1 {
a: 0
}
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementSmoothing"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
}
}
Geometry: 79396176, "Geometry::", "Mesh" {
Properties70: {
P: "Color", "ColorRGB", "Color", "",0,0,0
}
Vertices: *153 {
a: 5.5000114440918,7.6575870513916,0,-5.75391721725464,0.709403991699219,-4.71097183227539,-5.75644969940186,-12.7612571716309,32.0256576538086,5.75609397888184,-12.7612457275391,32.0256462097168,5.75395727157593,-5.94838714599609,31.8751029968262,-5.75387859344482,-5.94838714599609,31.8751029968262,5.7556004524231,-11.008602142334,34.1719436645508,5.75447463989258,-7.44818878173828,34.0932693481445,-5.75448703765869,-7.44819641113281,34.0932731628418,-5.75582075119019,-11.0086097717285,34.1719589233398,2.3395824432373,-5.94838714599609,31.8751029968262,-2.33950304985046,-5.94838333129883,31.8751068115234,2.33976578712463,-7.44819259643555,34.0932693481445,-2.33977770805359,-7.44819259643555,34.0932693481445,-2.34038281440735,-11.0086097717285,34.1719551086426,2.34016036987305,-11.008602142334,34.171947479248,-2.33919024467468,-6.05490875244141,20.9186382293701,-5.75647115707397,-5.43608474731445,17.3549728393555,5.75607442855835,-5.43607711791992,17.3549785614014,5.75393915176392,-1.56026077270508,19.2641906738281,-5.75389957427979,-1.56026077270508,19.2641906738281,-2.33975458145142,-1.56040191650391,19.2494773864746,2.33979201316834,-1.56040191650391,19.2494773864746,2.33927202224731,-6.05490875244141,20.9186401367188,-5.75646829605103,-12.8700103759766,20.8405380249023,5.75607681274414,-12.8700065612793,20.8405418395996,5.75394153594971,-6.05456924438477,20.9539756774902,-5.75389671325684,-6.05456924438477,20.9539756774902,-8.88472461700439,-7.01129531860352,-4.76837158203125e-006,5.75391721725464,0.709400177001953,-4.71097087860107,-5.49988460540771,7.6575927734375,-6.67572021484375e-006,8.88457584381104,-7.01129531860352,-1.04904174804688e-005,2.34032154083252,-12.7612533569336,32.0256538391113,-2.34067797660828,-12.7612571716309,32.0256576538086,-2.33926796913147,-12.8703498840332,20.8052082061768,-2.33982992172241,-5.43622207641602,17.3402614593506,2.3398597240448,-5.43621826171875,17.3402614593506,2.33934211730957,-12.8703498840332,20.8052062988281,8.81730556488037,-6.84539413452148,-0.101239204406738,
-2.40829277038574,7.66194915771484,-0.0143547058105469,-2.29864072799683,4.62325286865234,6.33297348022461,2.2987380027771,4.62325477600098,6.33297348022461,2.40839171409607,7.66195106506348,-0.0143527984619141,2.50204634666443,2.88285827636719,-3.24216556549072,-2.50199437141418,2.88286018371582,-3.24216461181641,-2.40829133987427,15.9753112792969,-0.0143585205078125,-2.35098505020142,15.1976680755615,2.64157962799072,2.35108709335327,15.1976699829102,2.64158153533936,2.40839385986328,15.9753112792969,-0.0143585205078125,2.50205063819885,14.1875782012939,-3.24216508865356,-2.5019896030426,14.1875801086426,-3.24216747283936
}
PolygonVertexIndex: *188 {
a: 31,18,36,35,17,-29,45,46,47,-49,0,38,-30,20,30,28,-18,8,9,14,-14,6,7,12,-16,5,8,13,-12,7,4,10,-13,3,6,15,-33,9,2,33,-15,2,24,34,-34,37,25,3,-33,4,26,23,-11,27,5,11,-17,19,26,25,-19,24,27,20,-18,17,35,34,-25,37,36,18,-26,19,22,23,-27,16,21,20,-28,4,7,6,3,25,-27,2,9,8,5,27,-25,48,49,50,-46,28,1,29,38,-32,22,21,35,-37,10,23,37,-33,16,11,33,-35,21,16,34,-36,23,22,36,-38,11,13,14,-34,12,10,32,-16,30,1,-29,0,19,18,31,-39,30,20,21,40,-40,21,22,41,-41,22,19,0,42,-42,0,29,43,-43,29,1,44,-44,1,30,39,-45,39,40,46,-46,40,41,47,-47,41,42,48,-48,42,43,49,-49,43,44,50,-50,44,39,45,-51
}
Edges: *94 {
a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,33,35,36,37,38,39,41,42,43,45,46,48,49,50,51,53,55,56,57,58,59,60,61,62,64,66,69,73,74,77,78,93,94,95,97,98,100,102,103,105,107,109,111,113,130,133,140,141,142,144,145,149,150,153,154,157,158,162,165,167,169,173,177,181
}
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: *564 {
a: 4.44710757108169e-008,-0.909219145774841,-0.416317969560623,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.995902836322784,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,2.74791496224225e-008,0.99321049451828,-0.116331242024899,-3.23627176612717e-007,0.727757394313812,0.68583470582962,-3.23627148191008e-007,0.727757453918457,0.685834646224976,2.74781406517377e-008,0.993210554122925,-0.116329796612263,0.981909334659576,0.187957853078842,-0.0229327920824289,0.982997357845306,0.177996918559074,0.0450910553336143,0.938536465167999,0.21654962003231,-0.268803894519806,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.982990562915802,0.183441579341888,0.00886562094092369,-0.995148360729218,0.081681527197361,0.0548443235456944,1.00857654672382e-007,0.478616148233414,0.878024220466614,8.14175280083873e-007,-0.41873824596405,0.908106982707977,8.14291126971511e-007,-0.418614625930786,0.908163964748383,1.00537725700178e-007,0.478743195533752,0.877954959869385,1.37581753278937e-006,-0.418724179267883,0.908113479614258,4.66176857116807e-008,0.478629797697067,0.878016829490662,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.37565484692459e-006,-0.418630361557007,0.908156752586365,-1.08653375718859e-006,0.95754611492157,0.288280010223389,1.00857654672382e-007,0.478616148233414,0.878024220466614,1.00537725700178e-007,0.478743195533752,0.877954959869385,-1.0865470585486e-006,0.957556307315826,0.288246423006058,4.66176857116807e-008,0.478629797697067,0.878016829490662,6.7395426128769e-008,0.957547247409821,0.288276493549347,6.74466420491626e-008,0.957555592060089,0.288248807191849,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.37581753278937e-006,-0.418724179267883,0.908113479614258,
1.37565484692459e-006,-0.418630361557007,0.908156752586365,1.59860996973293e-006,-0.940313279628754,0.340310156345367,8.14175280083873e-007,-0.41873824596405,0.908106982707977,5.00284102145088e-007,-0.940321147441864,0.340288281440735,5.00276144066447e-007,-0.940313160419464,0.340310275554657,8.14291126971511e-007,-0.418614625930786,0.908163964748383,5.00284102145088e-007,-0.940321147441864,0.340288281440735,-0.00394238950684667,-0.847836792469025,-0.530242502689362,-0.00397934997454286,-0.844639360904694,-0.535321116447449,5.00276144066447e-007,-0.940313160419464,0.340310275554657,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00394507823511958,-0.847837686538696,-0.530241191387177,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.59860996973293e-006,-0.940313279628754,0.340310156345367,6.7395426128769e-008,0.957547247409821,0.288276493549347,5.91617947520717e-007,0.999952733516693,-0.00972198694944382,5.91618004364136e-007,0.999952793121338,-0.00972198788076639,6.74466420491626e-008,0.957555592060089,0.288248807191849,-1.14892100100406e-006,0.999952673912048,-0.00972215924412012,-1.08653375718859e-006,0.95754611492157,0.288280010223389,-1.0865470585486e-006,0.957556307315826,0.288246423006058,-1.14892111469089e-006,0.999952793121338,-0.00972215924412012,0.991193056106567,0.110595740377903,0.0728347525000572,0.999999940395355,0.000291181000648066,0.000403401500079781,1,0.000305500696413219,0.000140330230351537,0.995189428329468,0.0817648619413376,0.05396793410182,-1,0.000367543805623427,0.000172826199559495,-0.99999988079071,0.000350344431353733,0.000488451041746885,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.995148360729218,0.081681527197361,0.0548443235456944,-0.00666291266679764,-0.423480898141861,-0.905880510807037,-0.00666291266679764,-0.423480868339539,-0.905880510807037,-0.00397934997454286,-0.844639360904694,-0.535321116447449,-0.00394238950684667,-0.847836792469025,-0.530242502689362,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00666577974334359,-0.42348051071167,-0.905880749225616,
0.0066657792776823,-0.42348051071167,-0.905880689620972,0.00394507823511958,-0.847837686538696,-0.530241191387177,-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.00688986293971539,0.350031852722168,0.936712503433228,-0.0068898624740541,0.350031852722168,0.936712443828583,0.00689009018242359,0.350031703710556,0.936712443828583,0.00292409467510879,0.767534494400024,0.641001045703888,0.00444498751312494,0.673383235931396,0.73928028345108,0.00689009018242359,0.350031733512878,0.936712503433228,1,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03629075360368e-006,0.999999940395355,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03628984410898e-006,1,0.000305500696413219,0.000140330230351537,0.999999940395355,0.000291181000648066,0.000403401500079781,-0.999999940395355,0.000377178512280807,-3.98013116864604e-006,-1,0.000377178541384637,-3.98013162339339e-006,-0.99999988079071,0.000377178483176976,-3.98013116864604e-006,-0.999999940395355,0.000377178483176976,-3.98013116864604e-006,-0.99999988079071,0.000350344431353733,0.000488451041746885,-1,0.000367543805623427,0.000172826199559495,2.74781406517377e-008,0.993210554122925,-0.116329796612263,2.89497421590568e-007,0.874788641929626,-0.484504669904709,2.89497450012277e-007,0.874788641929626,-0.484504729509354,2.74791496224225e-008,0.99321049451828,-0.116331242024899,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,-2.10690288326987e-007,-0.520867049694061,-0.853637933731079,-2.10690245694423e-007,-0.520866990089417,-0.853637754917145,-2.10690274116132e-007,-0.520867049694061,-0.853637933731079,4.44710757108169e-008,-0.909219145774841,-0.416317969560623,1.76881684410546e-007,-0.441892832517624,0.897067904472351,1.76881684410546e-007,-0.441892832517624,0.897067844867706,1.76881684410546e-007,-0.441892802715302,0.897067844867706,1.76881698621401e-007,-0.441892832517624,0.897067904472351,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-1.04934470073204e-005,-8.07480464573018e-005,
-1,-4.17995288444217e-005,8.87675560079515e-006,-1,-7.75585795054212e-005,4.13079469581135e-005,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-0.00012170282570878,5.09969067934435e-005,1,-0.00012107447400922,5.15745559823699e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848571269773e-005,-0.000175496694282629,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848553079879e-005,-0.000175496694282629,-1,-1.04934470073204e-005,-8.07480464573018e-005,-0.999999940395355,1.76060439116554e-005,-0.000161192860105075,-1,1.76060475496342e-005,-0.00016119287465699,-1,-4.17995288444217e-005,8.87675560079515e-006,1,-0.00012170282570878,5.09969067934435e-005,1,-0.000171482024597935,5.23620974490768e-006,1,-0.000171482024597935,5.23620974490768e-006,1,-0.00012107447400922,5.15745559823699e-005,-0.999999940395355,-0.000109036707726773,1.13971454993589e-005,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-7.75585795054212e-005,4.13079469581135e-005,-1,-0.000109036707726773,1.13971464088536e-005,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.938532829284668,0.216566041111946,-0.26880344748497,-0.982990562915802,0.183441579341888,0.00886562094092369,0.981909334659576,0.187957853078842,-0.0229327920824289,0.991193056106567,0.110595740377903,0.0728347525000572,0.995189428329468,0.0817648619413376,0.05396793410182,0.979672253131866,0.167647048830986,0.110167257487774,0.982997357845306,0.177996918559074,0.0450910553336143,0.00132380367722362,0.902004957199097,0.431723564863205,0.00444498751312494,0.673383235931396,0.73928028345108,0.00292409467510879,0.767534494400024,0.641001045703888,0.000698961492162198,0.804160416126251,0.594411849975586,0.00132380367722362,0.902005076408386,0.431723594665527,0.00292409467510879,0.767534494400024,0.641001045703888,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.000698878196999431,0.804160177707672,0.594412207603455,0.000698961492162198,0.804160416126251,0.594411849975586,-0.00292389816604555,0.767535150051117,0.641000270843506,
-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00132311077322811,0.902004957199097,0.431723594665527,-0.00132311077322811,0.902005076408386,0.431723594665527,-0.000698878196999431,0.804160177707672,0.594412207603455,0.0026144296862185,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,0.00125286937691271,0.56026417016983,-0.828312933444977,0.00261442922055721,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00125175062566996,0.560264050960541,-0.828313112258911,0.00125286937691271,0.56026417016983,-0.828312933444977,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00261251977644861,0.560632586479187,-0.828060448169708,-0.00261252000927925,0.560632586479187,-0.828060567378998,-0.00125175062566996,0.560264050960541,-0.828313112258911,-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999820351600647,0.000929871632251889,0.0189350247383118,-0.999820291996002,0.000929871632251889,0.0189350228756666,-0.999723613262177,0.000508760975208133,0.023502541705966,0.000698961492162198,0.804160416126251,0.594411849975586,-0.000698878196999431,0.804160177707672,0.594412207603455,-3.23627148191008e-007,0.727757453918457,0.685834646224976,-3.23627176612717e-007,0.727757394313812,0.68583470582962,0.999820232391357,0.000929440720938146,0.0189350731670856,0.999698400497437,0.000410573615226895,0.024554206058383,0.999723792076111,0.000508232857100666,0.0234966650605202,0.999820291996002,0.000929440779145807,0.0189350750297308,0.999698400497437,0.000410573615226895,0.024554206058383,0.999579310417175,-3.20250990171189e-007,0.0290033705532551,0.999579250812531,-3.2025096174948e-007,0.0290033705532551,0.999723792076111,0.000508232857100666,0.0234966650605202,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,-0.999579012393951,3.25778501064633e-007,0.0290164034813643,
-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999723613262177,0.000508760975208133,0.023502541705966,-0.999578952789307,3.25778472642924e-007,0.029016399756074
}
}
LayerElementUV: 0 {
Version: 101
Name: "UVChannel_1"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: *232 {
a: 0.718026459217072,0.77487576007843,0.620723366737366,0.757407307624817,0.596680104732513,0.738339424133301,0.596680581569672,0.712196469306946,0.620804965496063,0.738332629203796,0.620804965496063,0.712202906608582,0.739280164241791,0.83125376701355,0.719395160675049,0.831258416175842,0.739281117916107,0.812187194824219,0.71939605474472,0.812187790870667,0.739280581474304,0.782818078994751,0.838054597377777,0.951547503471375,0.739281535148621,0.801884651184082,0.754231631755829,0.83125102519989,0.754231631755829,0.812186241149902,0.897790968418121,0.951700747013092,0.754231989383698,0.782820224761963,0.754231989383698,0.801884889602661,0.719395577907562,0.782814621925354,0.719396471977234,0.80188524723053,0.703923761844635,0.782812595367432,0.70392382144928,0.80188512802124,0.703923344612122,0.831261396408081,0.703923344612122,0.812188863754272,0.815214335918427,0.782819628715515,0.815412402153015,0.801885843276978,0.815214157104492,0.831251382827759,0.815411984920502,0.812184929847717,0.477487474679947,0.694524645805359,0.596754252910614,0.693118572235107,0.62241119146347,0.921994090080261,0.706267833709717,0.870061635971069,0.706582188606262,0.846180737018585,0.516720473766327,0.712422013282776,0.477449089288712,0.711787581443787,0.741542220115662,0.899407804012299,0.725823402404785,0.864745438098907,0.797700226306915,0.871967494487762,0.804308772087097,0.857978463172913,0.795360147953033,0.84022045135498,0.780576944351196,0.837988197803497,0.620723247528076,0.693125605583191,0.516720473766327,0.738112807273865,0.744551301002502,0.936707198619843,0.744992017745972,0.912827551364899,0.828948795795441,0.861124336719513,0.725418031215668,0.91799008846283,0.70999151468277,0.883196711540222,0.67041951417923,0.944260239601135,0.655656754970551,0.941896498203278,0.646866798400879,0.924059629440308,0.653600335121155,0.910129368305206,0.596754014492035,0.75741708278656,0.477487474679947,0.756010413169861,0.477449089288712,0.738747954368591,0.430597931146622,0.757376313209534,0.445260912179947,0.739231944084167,
0.430597931146622,0.69315779209137,0.898675858974457,0.988852143287659,0.445260912179947,0.711302757263184,0.641465961933136,0.831261038780212,0.837500035762787,0.988695561885834,0.897790968418121,0.951700747013092,0.838054597377777,0.951547503471375,0.837500035762787,0.988695561885834,0.898675858974457,0.988852143287659,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.64126980304718,0.812180638313293,0.641270160675049,0.801890969276428,0.829830408096313,0.861753284931183,0.641466617584229,0.78281307220459,0.736806809902191,0.958201229572296,0.751931846141815,0.958514451980591,0.75193178653717,0.984212756156921,0.736806809902191,0.984525918960571,0.716640710830688,0.985037744045258,0.716640710830688,0.957689106464386,0.593630135059357,0.967060565948486,0.576833307743073,0.932457089424133,0.813144505023956,0.983926892280579,0.593630373477936,0.967059254646301,0.567607462406158,0.984849274158478,0.65485680103302,0.957688987255096,0.587353765964508,0.845670938491821,0.578437149524689,0.891691327095032,0.872810304164886,0.891484797000885,0.863814532756805,0.937489688396454,0.595621585845947,0.83153247833252,0.595474302768707,0.812455534934998,0.595474541187286,0.801614880561829,0.595622301101685,0.782540321350098,0.842023074626923,0.782634735107422,0.842182636260986,0.801697611808777,0.842182099819183,0.81237268447876,0.842023015022278,0.831435561180115,0.718025743961334,0.675657987594604,0.768527030944824,0.693138957023621,0.768527567386627,0.757394671440125,0.719111800193787,0.774500250816345,0.813144564628601,0.958800733089447,0.576834440231323,0.932455122470856,0.65485680103302,0.985037624835968,0.567607700824738,0.984851658344269,0.639064133167267,0.966812372207642,0.634734570980072,0.952316701412201,0.63473516702652,0.952316701412201,0.639064133167267,0.966812372207642,0.629389941692352,
0.984513282775879,0.629390180110931,0.984513521194458
}
UVIndex: *188 {
a: 0,1,4,5,41,102,78,79,80,81,93,76,92,32,90,30,31,6,7,9,8,18,10,12,19,13,6,8,14,10,16,17,12,20,18,19,21,7,22,23,9,22,60,74,23,75,77,20,21,16,24,25,17,26,13,14,27,43,46,47,44,35,36,32,31,94,95,74,60,75,96,97,77,98,99,25,24,27,100,101,26,48,49,50,51,47,46,37,38,39,40,36,35,81,82,83,78,102,103,104,105,0,2,3,5,4,11,15,58,61,62,63,64,65,66,62,65,67,15,68,69,58,63,70,71,64,72,11,61,73,90,91,30,93,43,44,45,76,28,29,3,33,34,3,2,42,33,2,52,53,54,42,53,55,56,54,55,57,59,56,57,28,34,59,84,85,111,110,106,86,80,79,107,87,113,112,87,88,114,113,108,89,83,82,109,84,110,115
}
}
LayerElementSmoothing: 0 {
Version: 102
Name: ""
MappingInformationType: "ByPolygon"
ReferenceInformationType: "Direct"
Smoothing: *45 {
a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
}
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: *1 {
a: 0
}
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementSmoothing"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
}
}
Geometry: 79400336, "Geometry::", "Mesh" {
Properties70: {
P: "Color", "ColorRGB", "Color", "",0,0,0
}
Vertices: *78 {
a: 2.19355082511902,-3.46841621398926,1.41854381561279,-2.1934597492218,-3.46842384338379,1.41855144500732,2.1944055557251,3.34444046020508,1.26800346374512,-2.19440031051636,3.34444046020508,1.26800346374512,-5.79921913146973,3.49526977539063,-13.3516530990601,5.79886341094971,3.49526977539063,-13.3516492843628,5.71111631393433,-3.55295944213867,-10.0958890914917,-5.87265682220459,9.94716644287109,-35.5147666931152,5.87142896652222,9.94712829589844,-35.5146369934082,1.18374192714691,0.320854187011719,-45.6312294006348,-1.18253231048584,0.320827484130859,-45.6311187744141,1.35103595256805,4.6059684753418,-52.0008010864258,-1.35107696056366,4.60597229003906,-52.0008201599121,2.19440460205078,-3.55268478393555,-10.0947523117065,-2.19440126419067,-3.55268478393555,-10.0947523117065,2.19525980949402,3.4949836730957,-13.3527822494507,-2.19534111022949,3.49499893188477,-13.3527956008911,2.19375205039978,-1.8631420135498,3.63425731658936,2.19420409202576,1.73915863037109,3.55465221405029,-2.19417858123779,1.73915863037109,3.55465221405029,-2.19368124008179,-1.8631420135498,3.63425731658936,-8.89849472045898,2.05113983154297,-30.593433380127,8.89828205108643,2.05117034912109,-30.5935478210449,-9.30727291107178,-4.64540481567383,-30.6022491455078,9.304762840271,-4.64543914794922,-30.6021308898926,-5.71118211746216,-3.55296325683594,-10.0958852767944
}
PolygonVertexIndex: *90 {
a: 11,12,7,-9,18,19,20,-18,16,3,2,-16,0,1,14,-14,7,12,-11,9,10,12,-12,17,0,13,15,2,-19,19,3,16,14,1,-21,14,16,4,-26,15,13,6,-6,2,3,19,-19,1,0,17,-21,9,11,-9,10,23,21,-8,23,24,6,13,14,-26,5,6,24,-23,22,24,9,-9,10,9,24,-24,8,7,21,-23,21,23,25,-5,22,21,4,16,15,-6
}
Edges: *45 {
a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,22,23,25,27,29,31,33,36,37,38,40,41,42,53,54,55,56,58,59,63,66,67,69,71,78,83
}
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: *270 {
a: 5.93501590628875e-006,0.951318740844727,-0.308208674192429,5.93501590628875e-006,0.951318800449371,-0.308208674192429,5.9350154515414e-006,0.951318740844727,-0.308208644390106,5.93501590628875e-006,0.951318860054016,-0.308208703994751,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,9.01636610706191e-007,0.951974272727966,0.306178033351898,9.01632802197128e-007,0.951973915100098,0.306179255247116,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.09704194528604e-006,-0.950128376483917,0.311859160661697,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-0.943988382816315,-0.284816920757294,-0.166629120707512,-0.945601105690002,-0.166950970888138,-0.279223829507828,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-6.33586159892729e-006,-0.82971602678299,-0.558185815811157,-6.33586159892729e-006,-0.82971602678299,-0.558185756206512,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438333311118,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000101879792e-007,0.419483006000519,0.907763242721558,7.59000101879792e-007,0.419483006000519,0.907763123512268,
-1.89759475688334e-007,0.419482380151749,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763481140137,-1.89759489899188e-007,0.419482409954071,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763421535492,9.01632802197128e-007,0.951973915100098,0.306179255247116,9.01636610706191e-007,0.951974272727966,0.306178033351898,0,0.818452954292297,0.574573516845703,0,0.818452954292297,0.574573516845703,1.09704194528604e-006,-0.950128376483917,0.311859160661697,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.21404855235596e-006,-0.809803426265717,0.586701214313507,1.21404855235596e-006,-0.809803485870361,0.586701214313507,0.945631086826324,-0.166806280612946,-0.279208689928055,0.944055140018463,-0.28458034992218,-0.16665555536747,0.915561258792877,-0.0233527943491936,-0.401499927043915,-0.945601105690002,-0.166950970888138,-0.279223829507828,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,-1.21686173315538e-006,-0.998583674430847,0.0532044656574726,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-1.21686150578171e-006,-0.998583614826202,0.053204458206892,0.983405351638794,0.0629978999495506,0.17013281583786,0.983405351638794,0.0629978999495506,0.170132830739021,0.990401387214661,0.0618207827210426,-0.123625583946705,0.973206758499146,0.0601941086351871,-0.221912324428558,0.973206758499146,0.0601941086351871,-0.221912324428558,0.990401387214661,0.0618207827210426,-0.123625583946705,0.945631086826324,-0.166806280612946,-0.279208689928055,0.915561258792877,-0.0233527943491936,-0.401499927043915,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,
-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-3.01873456010071e-007,0.528933107852936,0.848663449287415,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933107852936,0.848663449287415,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.983387589454651,0.0631496086716652,0.170179396867752,-0.983387529850006,0.0631496012210846,0.170179381966591,-1.34919184802129e-006,0.996511220932007,-0.0834584534168243,-1.34919184802129e-006,0.996511161327362,-0.0834584534168243,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049
}
}
LayerElementUV: 0 {
Version: 101
Name: "UVChannel_1"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: *120 {
a: 0.900907397270203,0.51922208070755,0.900910019874573,0.538964569568634,0.900911092758179,0.554273664951324,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.912504732608795,0.863914310932159,0.931023716926575,0.960283517837524,0.959636151790619,0.929436683654785,0.810051441192627,0.647458672523499,0.809129953384399,0.689522385597229,0.967708349227905,0.625024497509003,0.927610993385315,0.626275658607483,0.927610993385315,0.626275658607483,0.967708349227905,0.625024497509003,0.876864552497864,0.538964569568634,0.876863718032837,0.554273664951324,0.876867055892944,0.51922208070755,0.876858592033386,0.634389698505402,0.912504732608795,0.863914310932159,0.867547750473022,0.560738444328308,0.995323896408081,0.696268200874329,0.993189573287964,0.710242807865143,0.976453185081482,0.718396544456482,0.96367084980011,0.711688816547394,0.96367084980011,0.711688816547394,0.976453185081482,0.718396544456482,0.993189573287964,0.710242807865143,0.995323896408081,0.696268200874329,0.896290719509125,0.875123560428619,0.881484925746918,0.875123560428619,0.856709659099579,0.780168116092682,0.921059310436249,0.780168116092682,0.9009108543396,0.441142708063126,0.900906324386597,0.504229485988617,0.876868486404419,0.504229485988617,0.876863241195679,0.441142708063126,0.95849609375,0.836354374885559,0.765566110610962,0.560722947120667,0.785273790359497,0.448206067085266,0.804542541503906,0.44820249080658,0.828590154647827,0.448206067085266,0.847859382629395,0.448215126991272,0.937644243240356,0.729188024997711,0.840129971504211,0.729188024997711,0.955485343933105,0.740087985992432,0.958487033843994,0.836354076862335,0.955477714538574,0.740089356899261,0.823935508728027,0.689524054527283,0.931023716926575,0.960283517837524,0.90091609954834,0.634389698505402,0.920661449432373,0.634383499622345,0.857111811637878,0.634383499622345,0.823017358779907,0.647459626197815,0.959636151790619,0.929436683654785,0.995174646377563,0.838666796684265,
0.995174646377563,0.838666796684265,0.995033740997314,0.724431157112122,0.995033740997314,0.724431157112122
}
UVIndex: *90 {
a: 30,31,32,33,1,16,18,0,19,17,2,51,35,36,37,34,7,8,9,10,54,49,11,28,29,5,4,26,27,24,25,6,3,22,23,3,6,13,15,4,5,12,14,2,17,16,1,36,35,0,18,55,50,20,9,56,38,7,21,39,40,41,42,43,46,58,57,47,47,57,55,20,54,10,39,21,33,32,45,44,38,56,59,48,44,45,53,19,51,52
}
}
LayerElementSmoothing: 0 {
Version: 102
Name: ""
MappingInformationType: "ByPolygon"
ReferenceInformationType: "Direct"
Smoothing: *21 {
a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
}
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: *1 {
a: 0
}
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementSmoothing"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
}
}
Geometry: 79421600, "Geometry::", "Mesh" {
Properties70: {
P: "Color", "ColorRGB", "Color", "",0,0,0
}
Vertices: *153 {
a: 5.5000114440918,7.6575870513916,0,-5.75391721725464,0.709403991699219,-4.71097183227539,-5.75644969940186,-12.7612571716309,32.0256576538086,5.75609397888184,-12.7612457275391,32.0256462097168,5.75395727157593,-5.94838714599609,31.8751029968262,-5.75387859344482,-5.94838714599609,31.8751029968262,5.7556004524231,-11.008602142334,34.1719436645508,5.75447463989258,-7.44818878173828,34.0932693481445,-5.75448703765869,-7.44819641113281,34.0932731628418,-5.75582075119019,-11.0086097717285,34.1719589233398,2.3395824432373,-5.94838714599609,31.8751029968262,-2.33950304985046,-5.94838333129883,31.8751068115234,2.33976578712463,-7.44819259643555,34.0932693481445,-2.33977770805359,-7.44819259643555,34.0932693481445,-2.34038281440735,-11.0086097717285,34.1719551086426,2.34016036987305,-11.008602142334,34.171947479248,-2.33919024467468,-6.05490875244141,20.9186382293701,-5.75647115707397,-5.43608474731445,17.3549728393555,5.75607442855835,-5.43607711791992,17.3549785614014,5.75393915176392,-1.56026077270508,19.2641906738281,-5.75389957427979,-1.56026077270508,19.2641906738281,-2.33975458145142,-1.56040191650391,19.2494773864746,2.33979201316834,-1.56040191650391,19.2494773864746,2.33927202224731,-6.05490875244141,20.9186401367188,-5.75646829605103,-12.8700103759766,20.8405380249023,5.75607681274414,-12.8700065612793,20.8405418395996,5.75394153594971,-6.05456924438477,20.9539756774902,-5.75389671325684,-6.05456924438477,20.9539756774902,-8.88472461700439,-7.01129531860352,-4.76837158203125e-006,5.75391721725464,0.709400177001953,-4.71097087860107,-5.49988460540771,7.6575927734375,-6.67572021484375e-006,8.88457584381104,-7.01129531860352,-1.04904174804688e-005,2.34032154083252,-12.7612533569336,32.0256538391113,-2.34067797660828,-12.7612571716309,32.0256576538086,-2.33926796913147,-12.8703498840332,20.8052082061768,-2.33982992172241,-5.43622207641602,17.3402614593506,2.3398597240448,-5.43621826171875,17.3402614593506,2.33934211730957,-12.8703498840332,20.8052062988281,8.81730556488037,-6.84539413452148,-0.101239204406738,
-2.40829277038574,7.66194915771484,-0.0143547058105469,-2.29864072799683,4.62325286865234,6.33297348022461,2.2987380027771,4.62325477600098,6.33297348022461,2.40839171409607,7.66195106506348,-0.0143527984619141,2.50204634666443,2.88285827636719,-3.24216556549072,-2.50199437141418,2.88286018371582,-3.24216461181641,-2.40829133987427,15.9753112792969,-0.0143585205078125,-2.35098505020142,15.1976680755615,2.64157962799072,2.35108709335327,15.1976699829102,2.64158153533936,2.40839385986328,15.9753112792969,-0.0143585205078125,2.50205063819885,14.1875782012939,-3.24216508865356,-2.5019896030426,14.1875801086426,-3.24216747283936
}
PolygonVertexIndex: *188 {
a: 31,18,36,35,17,-29,45,46,47,-49,0,38,-30,20,30,28,-18,8,9,14,-14,6,7,12,-16,5,8,13,-12,7,4,10,-13,3,6,15,-33,9,2,33,-15,2,24,34,-34,37,25,3,-33,4,26,23,-11,27,5,11,-17,19,26,25,-19,24,27,20,-18,17,35,34,-25,37,36,18,-26,19,22,23,-27,16,21,20,-28,4,7,6,3,25,-27,2,9,8,5,27,-25,48,49,50,-46,28,1,29,38,-32,22,21,35,-37,10,23,37,-33,16,11,33,-35,21,16,34,-36,23,22,36,-38,11,13,14,-34,12,10,32,-16,30,1,-29,0,19,18,31,-39,30,20,21,40,-40,21,22,41,-41,22,19,0,42,-42,0,29,43,-43,29,1,44,-44,1,30,39,-45,39,40,46,-46,40,41,47,-47,41,42,48,-48,42,43,49,-49,43,44,50,-50,44,39,45,-51
}
Edges: *94 {
a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,33,35,36,37,38,39,41,42,43,45,46,48,49,50,51,53,55,56,57,58,59,60,61,62,64,66,69,73,74,77,78,93,94,95,97,98,100,102,103,105,107,109,111,113,130,133,140,141,142,144,145,149,150,153,154,157,158,162,165,167,169,173,177,181
}
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: *564 {
a: 4.44710757108169e-008,-0.909219145774841,-0.416317969560623,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.995902836322784,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,2.74791496224225e-008,0.99321049451828,-0.116331242024899,-3.23627176612717e-007,0.727757394313812,0.68583470582962,-3.23627148191008e-007,0.727757453918457,0.685834646224976,2.74781406517377e-008,0.993210554122925,-0.116329796612263,0.981909334659576,0.187957853078842,-0.0229327920824289,0.982997357845306,0.177996918559074,0.0450910553336143,0.938536465167999,0.21654962003231,-0.268803894519806,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.982990562915802,0.183441579341888,0.00886562094092369,-0.995148360729218,0.081681527197361,0.0548443235456944,1.00857654672382e-007,0.478616148233414,0.878024220466614,8.14175280083873e-007,-0.41873824596405,0.908106982707977,8.14291126971511e-007,-0.418614625930786,0.908163964748383,1.00537725700178e-007,0.478743195533752,0.877954959869385,1.37581753278937e-006,-0.418724179267883,0.908113479614258,4.66176857116807e-008,0.478629797697067,0.878016829490662,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.37565484692459e-006,-0.418630361557007,0.908156752586365,-1.08653375718859e-006,0.95754611492157,0.288280010223389,1.00857654672382e-007,0.478616148233414,0.878024220466614,1.00537725700178e-007,0.478743195533752,0.877954959869385,-1.0865470585486e-006,0.957556307315826,0.288246423006058,4.66176857116807e-008,0.478629797697067,0.878016829490662,6.7395426128769e-008,0.957547247409821,0.288276493549347,6.74466420491626e-008,0.957555592060089,0.288248807191849,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.37581753278937e-006,-0.418724179267883,0.908113479614258,
1.37565484692459e-006,-0.418630361557007,0.908156752586365,1.59860996973293e-006,-0.940313279628754,0.340310156345367,8.14175280083873e-007,-0.41873824596405,0.908106982707977,5.00284102145088e-007,-0.940321147441864,0.340288281440735,5.00276144066447e-007,-0.940313160419464,0.340310275554657,8.14291126971511e-007,-0.418614625930786,0.908163964748383,5.00284102145088e-007,-0.940321147441864,0.340288281440735,-0.00394238950684667,-0.847836792469025,-0.530242502689362,-0.00397934997454286,-0.844639360904694,-0.535321116447449,5.00276144066447e-007,-0.940313160419464,0.340310275554657,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00394507823511958,-0.847837686538696,-0.530241191387177,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.59860996973293e-006,-0.940313279628754,0.340310156345367,6.7395426128769e-008,0.957547247409821,0.288276493549347,5.91617947520717e-007,0.999952733516693,-0.00972198694944382,5.91618004364136e-007,0.999952793121338,-0.00972198788076639,6.74466420491626e-008,0.957555592060089,0.288248807191849,-1.14892100100406e-006,0.999952673912048,-0.00972215924412012,-1.08653375718859e-006,0.95754611492157,0.288280010223389,-1.0865470585486e-006,0.957556307315826,0.288246423006058,-1.14892111469089e-006,0.999952793121338,-0.00972215924412012,0.991193056106567,0.110595740377903,0.0728347525000572,0.999999940395355,0.000291181000648066,0.000403401500079781,1,0.000305500696413219,0.000140330230351537,0.995189428329468,0.0817648619413376,0.05396793410182,-1,0.000367543805623427,0.000172826199559495,-0.99999988079071,0.000350344431353733,0.000488451041746885,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.995148360729218,0.081681527197361,0.0548443235456944,-0.00666291266679764,-0.423480898141861,-0.905880510807037,-0.00666291266679764,-0.423480868339539,-0.905880510807037,-0.00397934997454286,-0.844639360904694,-0.535321116447449,-0.00394238950684667,-0.847836792469025,-0.530242502689362,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00666577974334359,-0.42348051071167,-0.905880749225616,
0.0066657792776823,-0.42348051071167,-0.905880689620972,0.00394507823511958,-0.847837686538696,-0.530241191387177,-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.00688986293971539,0.350031852722168,0.936712503433228,-0.0068898624740541,0.350031852722168,0.936712443828583,0.00689009018242359,0.350031703710556,0.936712443828583,0.00292409467510879,0.767534494400024,0.641001045703888,0.00444498751312494,0.673383235931396,0.73928028345108,0.00689009018242359,0.350031733512878,0.936712503433228,1,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03629075360368e-006,0.999999940395355,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03628984410898e-006,1,0.000305500696413219,0.000140330230351537,0.999999940395355,0.000291181000648066,0.000403401500079781,-0.999999940395355,0.000377178512280807,-3.98013116864604e-006,-1,0.000377178541384637,-3.98013162339339e-006,-0.99999988079071,0.000377178483176976,-3.98013116864604e-006,-0.999999940395355,0.000377178483176976,-3.98013116864604e-006,-0.99999988079071,0.000350344431353733,0.000488451041746885,-1,0.000367543805623427,0.000172826199559495,2.74781406517377e-008,0.993210554122925,-0.116329796612263,2.89497421590568e-007,0.874788641929626,-0.484504669904709,2.89497450012277e-007,0.874788641929626,-0.484504729509354,2.74791496224225e-008,0.99321049451828,-0.116331242024899,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,-2.10690288326987e-007,-0.520867049694061,-0.853637933731079,-2.10690245694423e-007,-0.520866990089417,-0.853637754917145,-2.10690274116132e-007,-0.520867049694061,-0.853637933731079,4.44710757108169e-008,-0.909219145774841,-0.416317969560623,1.76881684410546e-007,-0.441892832517624,0.897067904472351,1.76881684410546e-007,-0.441892832517624,0.897067844867706,1.76881684410546e-007,-0.441892802715302,0.897067844867706,1.76881698621401e-007,-0.441892832517624,0.897067904472351,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-1.04934470073204e-005,-8.07480464573018e-005,
-1,-4.17995288444217e-005,8.87675560079515e-006,-1,-7.75585795054212e-005,4.13079469581135e-005,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-0.00012170282570878,5.09969067934435e-005,1,-0.00012107447400922,5.15745559823699e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848571269773e-005,-0.000175496694282629,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848553079879e-005,-0.000175496694282629,-1,-1.04934470073204e-005,-8.07480464573018e-005,-0.999999940395355,1.76060439116554e-005,-0.000161192860105075,-1,1.76060475496342e-005,-0.00016119287465699,-1,-4.17995288444217e-005,8.87675560079515e-006,1,-0.00012170282570878,5.09969067934435e-005,1,-0.000171482024597935,5.23620974490768e-006,1,-0.000171482024597935,5.23620974490768e-006,1,-0.00012107447400922,5.15745559823699e-005,-0.999999940395355,-0.000109036707726773,1.13971454993589e-005,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-7.75585795054212e-005,4.13079469581135e-005,-1,-0.000109036707726773,1.13971464088536e-005,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.938532829284668,0.216566041111946,-0.26880344748497,-0.982990562915802,0.183441579341888,0.00886562094092369,0.981909334659576,0.187957853078842,-0.0229327920824289,0.991193056106567,0.110595740377903,0.0728347525000572,0.995189428329468,0.0817648619413376,0.05396793410182,0.979672253131866,0.167647048830986,0.110167257487774,0.982997357845306,0.177996918559074,0.0450910553336143,0.00132380367722362,0.902004957199097,0.431723564863205,0.00444498751312494,0.673383235931396,0.73928028345108,0.00292409467510879,0.767534494400024,0.641001045703888,0.000698961492162198,0.804160416126251,0.594411849975586,0.00132380367722362,0.902005076408386,0.431723594665527,0.00292409467510879,0.767534494400024,0.641001045703888,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.000698878196999431,0.804160177707672,0.594412207603455,0.000698961492162198,0.804160416126251,0.594411849975586,-0.00292389816604555,0.767535150051117,0.641000270843506,
-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00132311077322811,0.902004957199097,0.431723594665527,-0.00132311077322811,0.902005076408386,0.431723594665527,-0.000698878196999431,0.804160177707672,0.594412207603455,0.0026144296862185,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,0.00125286937691271,0.56026417016983,-0.828312933444977,0.00261442922055721,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00125175062566996,0.560264050960541,-0.828313112258911,0.00125286937691271,0.56026417016983,-0.828312933444977,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00261251977644861,0.560632586479187,-0.828060448169708,-0.00261252000927925,0.560632586479187,-0.828060567378998,-0.00125175062566996,0.560264050960541,-0.828313112258911,-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999820351600647,0.000929871632251889,0.0189350247383118,-0.999820291996002,0.000929871632251889,0.0189350228756666,-0.999723613262177,0.000508760975208133,0.023502541705966,0.000698961492162198,0.804160416126251,0.594411849975586,-0.000698878196999431,0.804160177707672,0.594412207603455,-3.23627148191008e-007,0.727757453918457,0.685834646224976,-3.23627176612717e-007,0.727757394313812,0.68583470582962,0.999820232391357,0.000929440720938146,0.0189350731670856,0.999698400497437,0.000410573615226895,0.024554206058383,0.999723792076111,0.000508232857100666,0.0234966650605202,0.999820291996002,0.000929440779145807,0.0189350750297308,0.999698400497437,0.000410573615226895,0.024554206058383,0.999579310417175,-3.20250990171189e-007,0.0290033705532551,0.999579250812531,-3.2025096174948e-007,0.0290033705532551,0.999723792076111,0.000508232857100666,0.0234966650605202,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,-0.999579012393951,3.25778501064633e-007,0.0290164034813643,
-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999723613262177,0.000508760975208133,0.023502541705966,-0.999578952789307,3.25778472642924e-007,0.029016399756074
}
}
LayerElementUV: 0 {
Version: 101
Name: "UVChannel_1"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: *232 {
a: 0.718026459217072,0.77487576007843,0.620723366737366,0.757407307624817,0.596680104732513,0.738339424133301,0.596680581569672,0.712196469306946,0.620804965496063,0.738332629203796,0.620804965496063,0.712202906608582,0.739280164241791,0.83125376701355,0.719395160675049,0.831258416175842,0.739281117916107,0.812187194824219,0.71939605474472,0.812187790870667,0.739280581474304,0.782818078994751,0.838054597377777,0.951547503471375,0.739281535148621,0.801884651184082,0.754231631755829,0.83125102519989,0.754231631755829,0.812186241149902,0.897790968418121,0.951700747013092,0.754231989383698,0.782820224761963,0.754231989383698,0.801884889602661,0.719395577907562,0.782814621925354,0.719396471977234,0.80188524723053,0.703923761844635,0.782812595367432,0.70392382144928,0.80188512802124,0.703923344612122,0.831261396408081,0.703923344612122,0.812188863754272,0.815214335918427,0.782819628715515,0.815412402153015,0.801885843276978,0.815214157104492,0.831251382827759,0.815411984920502,0.812184929847717,0.477487474679947,0.694524645805359,0.596754252910614,0.693118572235107,0.62241119146347,0.921994090080261,0.706267833709717,0.870061635971069,0.706582188606262,0.846180737018585,0.516720473766327,0.712422013282776,0.477449089288712,0.711787581443787,0.741542220115662,0.899407804012299,0.725823402404785,0.864745438098907,0.797700226306915,0.871967494487762,0.804308772087097,0.857978463172913,0.795360147953033,0.84022045135498,0.780576944351196,0.837988197803497,0.620723247528076,0.693125605583191,0.516720473766327,0.738112807273865,0.744551301002502,0.936707198619843,0.744992017745972,0.912827551364899,0.828948795795441,0.861124336719513,0.725418031215668,0.91799008846283,0.70999151468277,0.883196711540222,0.67041951417923,0.944260239601135,0.655656754970551,0.941896498203278,0.646866798400879,0.924059629440308,0.653600335121155,0.910129368305206,0.596754014492035,0.75741708278656,0.477487474679947,0.756010413169861,0.477449089288712,0.738747954368591,0.430597931146622,0.757376313209534,0.445260912179947,0.739231944084167,
0.430597931146622,0.69315779209137,0.898675858974457,0.988852143287659,0.445260912179947,0.711302757263184,0.641465961933136,0.831261038780212,0.837500035762787,0.988695561885834,0.897790968418121,0.951700747013092,0.838054597377777,0.951547503471375,0.837500035762787,0.988695561885834,0.898675858974457,0.988852143287659,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.64126980304718,0.812180638313293,0.641270160675049,0.801890969276428,0.829830408096313,0.861753284931183,0.641466617584229,0.78281307220459,0.736806809902191,0.958201229572296,0.751931846141815,0.958514451980591,0.75193178653717,0.984212756156921,0.736806809902191,0.984525918960571,0.716640710830688,0.985037744045258,0.716640710830688,0.957689106464386,0.593630135059357,0.967060565948486,0.576833307743073,0.932457089424133,0.813144505023956,0.983926892280579,0.593630373477936,0.967059254646301,0.567607462406158,0.984849274158478,0.65485680103302,0.957688987255096,0.587353765964508,0.845670938491821,0.578437149524689,0.891691327095032,0.872810304164886,0.891484797000885,0.863814532756805,0.937489688396454,0.595621585845947,0.83153247833252,0.595474302768707,0.812455534934998,0.595474541187286,0.801614880561829,0.595622301101685,0.782540321350098,0.842023074626923,0.782634735107422,0.842182636260986,0.801697611808777,0.842182099819183,0.81237268447876,0.842023015022278,0.831435561180115,0.718025743961334,0.675657987594604,0.768527030944824,0.693138957023621,0.768527567386627,0.757394671440125,0.719111800193787,0.774500250816345,0.813144564628601,0.958800733089447,0.576834440231323,0.932455122470856,0.65485680103302,0.985037624835968,0.567607700824738,0.984851658344269,0.639064133167267,0.966812372207642,0.634734570980072,0.952316701412201,0.63473516702652,0.952316701412201,0.639064133167267,0.966812372207642,0.629389941692352,
0.984513282775879,0.629390180110931,0.984513521194458
}
UVIndex: *188 {
a: 0,1,4,5,41,102,78,79,80,81,93,76,92,32,90,30,31,6,7,9,8,18,10,12,19,13,6,8,14,10,16,17,12,20,18,19,21,7,22,23,9,22,60,74,23,75,77,20,21,16,24,25,17,26,13,14,27,43,46,47,44,35,36,32,31,94,95,74,60,75,96,97,77,98,99,25,24,27,100,101,26,48,49,50,51,47,46,37,38,39,40,36,35,81,82,83,78,102,103,104,105,0,2,3,5,4,11,15,58,61,62,63,64,65,66,62,65,67,15,68,69,58,63,70,71,64,72,11,61,73,90,91,30,93,43,44,45,76,28,29,3,33,34,3,2,42,33,2,52,53,54,42,53,55,56,54,55,57,59,56,57,28,34,59,84,85,111,110,106,86,80,79,107,87,113,112,87,88,114,113,108,89,83,82,109,84,110,115
}
}
LayerElementSmoothing: 0 {
Version: 102
Name: ""
MappingInformationType: "ByPolygon"
ReferenceInformationType: "Direct"
Smoothing: *45 {
a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
}
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: *1 {
a: 0
}
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementSmoothing"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
}
}
Geometry: 79429488, "Geometry::", "Mesh" {
Properties70: {
P: "Color", "ColorRGB", "Color", "",0,0,0
}
Vertices: *78 {
a: 2.19355082511902,-3.46841621398926,1.41854381561279,-2.1934597492218,-3.46842384338379,1.41855144500732,2.1944055557251,3.34444046020508,1.26800346374512,-2.19440031051636,3.34444046020508,1.26800346374512,-5.79921913146973,3.49526977539063,-13.3516530990601,5.79886341094971,3.49526977539063,-13.3516492843628,5.71111631393433,-3.55295944213867,-10.0958890914917,-5.87265682220459,9.94716644287109,-35.5147666931152,5.87142896652222,9.94712829589844,-35.5146369934082,1.18374192714691,0.320854187011719,-45.6312294006348,-1.18253231048584,0.320827484130859,-45.6311187744141,1.35103595256805,4.6059684753418,-52.0008010864258,-1.35107696056366,4.60597229003906,-52.0008201599121,2.19440460205078,-3.55268478393555,-10.0947523117065,-2.19440126419067,-3.55268478393555,-10.0947523117065,2.19525980949402,3.4949836730957,-13.3527822494507,-2.19534111022949,3.49499893188477,-13.3527956008911,2.19375205039978,-1.8631420135498,3.63425731658936,2.19420409202576,1.73915863037109,3.55465221405029,-2.19417858123779,1.73915863037109,3.55465221405029,-2.19368124008179,-1.8631420135498,3.63425731658936,-8.89849472045898,2.05113983154297,-30.593433380127,8.89828205108643,2.05117034912109,-30.5935478210449,-9.30727291107178,-4.64540481567383,-30.6022491455078,9.304762840271,-4.64543914794922,-30.6021308898926,-5.71118211746216,-3.55296325683594,-10.0958852767944
}
PolygonVertexIndex: *90 {
a: 11,12,7,-9,18,19,20,-18,16,3,2,-16,0,1,14,-14,7,12,-11,9,10,12,-12,17,0,13,15,2,-19,19,3,16,14,1,-21,14,16,4,-26,15,13,6,-6,2,3,19,-19,1,0,17,-21,9,11,-9,10,23,21,-8,23,24,6,13,14,-26,5,6,24,-23,22,24,9,-9,10,9,24,-24,8,7,21,-23,21,23,25,-5,22,21,4,16,15,-6
}
Edges: *45 {
a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,22,23,25,27,29,31,33,36,37,38,40,41,42,53,54,55,56,58,59,63,66,67,69,71,78,83
}
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: *270 {
a: 5.93501590628875e-006,0.951318740844727,-0.308208674192429,5.93501590628875e-006,0.951318800449371,-0.308208674192429,5.9350154515414e-006,0.951318740844727,-0.308208644390106,5.93501590628875e-006,0.951318860054016,-0.308208703994751,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,9.01636610706191e-007,0.951974272727966,0.306178033351898,9.01632802197128e-007,0.951973915100098,0.306179255247116,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.09704194528604e-006,-0.950128376483917,0.311859160661697,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-0.943988382816315,-0.284816920757294,-0.166629120707512,-0.945601105690002,-0.166950970888138,-0.279223829507828,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-6.33586159892729e-006,-0.82971602678299,-0.558185815811157,-6.33586159892729e-006,-0.82971602678299,-0.558185756206512,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438333311118,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000101879792e-007,0.419483006000519,0.907763242721558,7.59000101879792e-007,0.419483006000519,0.907763123512268,
-1.89759475688334e-007,0.419482380151749,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763481140137,-1.89759489899188e-007,0.419482409954071,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763421535492,9.01632802197128e-007,0.951973915100098,0.306179255247116,9.01636610706191e-007,0.951974272727966,0.306178033351898,0,0.818452954292297,0.574573516845703,0,0.818452954292297,0.574573516845703,1.09704194528604e-006,-0.950128376483917,0.311859160661697,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.21404855235596e-006,-0.809803426265717,0.586701214313507,1.21404855235596e-006,-0.809803485870361,0.586701214313507,0.945631086826324,-0.166806280612946,-0.279208689928055,0.944055140018463,-0.28458034992218,-0.16665555536747,0.915561258792877,-0.0233527943491936,-0.401499927043915,-0.945601105690002,-0.166950970888138,-0.279223829507828,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,-1.21686173315538e-006,-0.998583674430847,0.0532044656574726,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-1.21686150578171e-006,-0.998583614826202,0.053204458206892,0.983405351638794,0.0629978999495506,0.17013281583786,0.983405351638794,0.0629978999495506,0.170132830739021,0.990401387214661,0.0618207827210426,-0.123625583946705,0.973206758499146,0.0601941086351871,-0.221912324428558,0.973206758499146,0.0601941086351871,-0.221912324428558,0.990401387214661,0.0618207827210426,-0.123625583946705,0.945631086826324,-0.166806280612946,-0.279208689928055,0.915561258792877,-0.0233527943491936,-0.401499927043915,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,
-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-3.01873456010071e-007,0.528933107852936,0.848663449287415,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933107852936,0.848663449287415,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.983387589454651,0.0631496086716652,0.170179396867752,-0.983387529850006,0.0631496012210846,0.170179381966591,-1.34919184802129e-006,0.996511220932007,-0.0834584534168243,-1.34919184802129e-006,0.996511161327362,-0.0834584534168243,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049
}
}
LayerElementUV: 0 {
Version: 101
Name: "UVChannel_1"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: *120 {
a: 0.900907397270203,0.51922208070755,0.900910019874573,0.538964569568634,0.900911092758179,0.554273664951324,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.912504732608795,0.863914310932159,0.931023716926575,0.960283517837524,0.959636151790619,0.929436683654785,0.810051441192627,0.647458672523499,0.809129953384399,0.689522385597229,0.967708349227905,0.625024497509003,0.927610993385315,0.626275658607483,0.927610993385315,0.626275658607483,0.967708349227905,0.625024497509003,0.876864552497864,0.538964569568634,0.876863718032837,0.554273664951324,0.876867055892944,0.51922208070755,0.876858592033386,0.634389698505402,0.912504732608795,0.863914310932159,0.867547750473022,0.560738444328308,0.995323896408081,0.696268200874329,0.993189573287964,0.710242807865143,0.976453185081482,0.718396544456482,0.96367084980011,0.711688816547394,0.96367084980011,0.711688816547394,0.976453185081482,0.718396544456482,0.993189573287964,0.710242807865143,0.995323896408081,0.696268200874329,0.896290719509125,0.875123560428619,0.881484925746918,0.875123560428619,0.856709659099579,0.780168116092682,0.921059310436249,0.780168116092682,0.9009108543396,0.441142708063126,0.900906324386597,0.504229485988617,0.876868486404419,0.504229485988617,0.876863241195679,0.441142708063126,0.95849609375,0.836354374885559,0.765566110610962,0.560722947120667,0.785273790359497,0.448206067085266,0.804542541503906,0.44820249080658,0.828590154647827,0.448206067085266,0.847859382629395,0.448215126991272,0.937644243240356,0.729188024997711,0.840129971504211,0.729188024997711,0.955485343933105,0.740087985992432,0.958487033843994,0.836354076862335,0.955477714538574,0.740089356899261,0.823935508728027,0.689524054527283,0.931023716926575,0.960283517837524,0.90091609954834,0.634389698505402,0.920661449432373,0.634383499622345,0.857111811637878,0.634383499622345,0.823017358779907,0.647459626197815,0.959636151790619,0.929436683654785,0.995174646377563,0.838666796684265,
0.995174646377563,0.838666796684265,0.995033740997314,0.724431157112122,0.995033740997314,0.724431157112122
}
UVIndex: *90 {
a: 30,31,32,33,1,16,18,0,19,17,2,51,35,36,37,34,7,8,9,10,54,49,11,28,29,5,4,26,27,24,25,6,3,22,23,3,6,13,15,4,5,12,14,2,17,16,1,36,35,0,18,55,50,20,9,56,38,7,21,39,40,41,42,43,46,58,57,47,47,57,55,20,54,10,39,21,33,32,45,44,38,56,59,48,44,45,53,19,51,52
}
}
LayerElementSmoothing: 0 {
Version: 102
Name: ""
MappingInformationType: "ByPolygon"
ReferenceInformationType: "Direct"
Smoothing: *21 {
a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
}
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: *1 {
a: 0
}
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementSmoothing"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
}
}
Model: 79188976, "Model::minebot_main_root", "Null" {
Version: 232
Properties70: {
P: "InheritType", "enum", "", "",1
P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
P: "DefaultAttributeIndex", "int", "Integer", "",0
P: "MaxHandle", "int", "Integer", "U",1
}
Shading: T
Culling: "CullingOff"
}
Model: 79191568, "Model::minebot_main", "Mesh" {
Version: 232
Properties70: {
P: "InheritType", "enum", "", "",1
P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
P: "GeometricTranslation", "Vector3D", "Vector", "",-7.62939453125e-006,12.2019929885864,-7.62939453125e-006
P: "GeometricRotation", "Vector3D", "Vector", "",-90.0000076293945,45.0000038146973,0
P: "DefaultAttributeIndex", "int", "Integer", "",0
P: "Lcl Translation", "Lcl Translation", "", "A+",1.0479697621843e-013,-1.67714188137325e-006,27.6431045532227
P: "Lcl Rotation", "Lcl Rotation", "", "A+",90.0000093346676,-0,90.0000025044781
P: "Lcl Scaling", "Lcl Scaling", "", "A+",1,1.00000000000001,1.00000000000001
P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
P: "MaxHandle", "int", "Integer", "U",2
}
Shading: T
Culling: "CullingOff"
}
Model: 79193824, "Model::minebot_right_upperleg", "Mesh" {
Version: 232
Properties70: {
P: "InheritType", "enum", "", "",1
P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
P: "DefaultAttributeIndex", "int", "Integer", "",0
P: "Lcl Translation", "Lcl Translation", "", "A+",-28.1494159698486,-7.95376777648926,1.03961992863333e-005
P: "Lcl Rotation", "Lcl Rotation", "", "A+",82.0096532674376,-68.3643294576019,-160.718977068916
P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999944551808,0.999999975086417,0.999999835660333
P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
P: "MaxHandle", "int", "Integer", "U",3
}
Shading: T
Culling: "CullingOff"
}
Model: 51912496, "Model::minebot_right_lowerleg", "Mesh" {
Version: 232
Properties70: {
P: "InheritType", "enum", "", "",1
P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
P: "DefaultAttributeIndex", "int", "Integer", "",0
P: "Lcl Translation", "Lcl Translation", "", "A+",2.86102294921875e-006,-9.2928352355957,30.6071090698242
P: "Lcl Rotation", "Lcl Rotation", "", "A+",-59.1663493576604,-0.00737703025992823,-0.00303271034883198
P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000012889885,0.99999988469374,1.00000000833843
P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
P: "MaxHandle", "int", "Integer", "U",4
}
Shading: T
Culling: "CullingOff"
}
Model: 51914752, "Model::minebot_head", "Mesh" {
Version: 232
Properties70: {
P: "InheritType", "enum", "", "",1
P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
P: "GeometricTranslation", "Vector3D", "Vector", "",9.5367449830519e-006,-22.4767112731934,9.44089515542146e-006
P: "GeometricRotation", "Vector3D", "Vector", "",-89.9999923706055,-135,-9.6593457783456e-006
P: "DefaultAttributeIndex", "int", "Integer", "",0
P: "Lcl Translation", "Lcl Translation", "", "A+",-6.85378563503036e-006,34.6787033081055,-4.38112283518421e-006
P: "Lcl Rotation", "Lcl Rotation", "", "A+",5.00895531675326e-006,-1.53927082568325e-014,8.6514230232721e-006
P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000000000001,1.00000000000002,1
P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
P: "MaxHandle", "int", "Integer", "U",5
}
Shading: T
Culling: "CullingOff"
}
Model: 51917008, "Model::minebot_front_upperleg", "Mesh" {
Version: 232
Properties70: {
P: "InheritType", "enum", "", "",1
P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
P: "DefaultAttributeIndex", "int", "Integer", "",0
P: "Lcl Translation", "Lcl Translation", "", "A+",7.15255782779423e-006,-7.95376968383789,-28.1494216918945
P: "Lcl Rotation", "Lcl Rotation", "", "A+",89.8903301536315,1.44502444287648,177.411486234467
P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999985360327,1.00000001105386,0.999999991944424
P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
P: "MaxHandle", "int", "Integer", "U",6
}
Shading: T
Culling: "CullingOff"
}
Model: 51923712, "Model::minebot_back_lowerleg", "Mesh" {
Version: 232
Properties70: {
P: "InheritType", "enum", "", "",1
P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
P: "DefaultAttributeIndex", "int", "Integer", "",0
P: "Lcl Translation", "Lcl Translation", "", "A+",1.54972076416016e-006,-9.2928352355957,30.6071224212646
P: "Lcl Rotation", "Lcl Rotation", "", "A+",-20.1643841293739,-0.000409597905636104,0.00428621550303173
P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000000282371,1.0000000493532,0.999999945956098
P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
P: "MaxHandle", "int", "Integer", "U",7
}
Shading: T
Culling: "CullingOff"
}
Model: 51925968, "Model::minebot_left_upperleg", "Mesh" {
Version: 232
Properties70: {
P: "InheritType", "enum", "", "",1
P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
P: "DefaultAttributeIndex", "int", "Integer", "",0
P: "Lcl Translation", "Lcl Translation", "", "A+",28.1494274139404,-7.95376968383789,4.15622707805596e-006
P: "Lcl Rotation", "Lcl Rotation", "", "A+",-111.176604193097,75.4647543247746,-45.8507041698204
P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000018789441,0.999999971904261,0.99999982594033
P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
P: "MaxHandle", "int", "Integer", "U",8
}
Shading: T
Culling: "CullingOff"
}
Model: 51928224, "Model::minebot_left_lowerleg", "Mesh" {
Version: 232
Properties70: {
P: "InheritType", "enum", "", "",1
P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
P: "DefaultAttributeIndex", "int", "Integer", "",0
P: "Lcl Translation", "Lcl Translation", "", "A+",1.19209289550781e-006,-9.29284477233887,30.6071281433105
P: "Lcl Rotation", "Lcl Rotation", "", "A+",-60.9589713709113,-0.0131148151475245,-0.00448017666549555
P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000014846328,1.00000017954381,1.00000016658699
P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
P: "MaxHandle", "int", "Integer", "U",9
}
Shading: T
Culling: "CullingOff"
}
Model: 79210080, "Model::minebot_front_upperleg2", "Mesh" {
Version: 232
Properties70: {
P: "InheritType", "enum", "", "",1
P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
P: "DefaultAttributeIndex", "int", "Integer", "",0
P: "Lcl Translation", "Lcl Translation", "", "A+",1.19209280455834e-005,-7.95376968383789,28.1494255065918
P: "Lcl Rotation", "Lcl Rotation", "", "A+",-79.5683705148092,-0.934014525338177,1.66241290159821
P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000003851856,1.00000004307514,1.00000003888092
P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
P: "MaxHandle", "int", "Integer", "U",10
}
Shading: T
Culling: "CullingOff"
}
Model: 79219360, "Model::minebot_front_lowerleg", "Mesh" {
Version: 232
Properties70: {
P: "InheritType", "enum", "", "",1
P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
P: "DefaultAttributeIndex", "int", "Integer", "",0
P: "Lcl Translation", "Lcl Translation", "", "A+",1.07288360595703e-006,-9.29283905029297,30.6071319580078
P: "Lcl Rotation", "Lcl Rotation", "", "A+",-38.3639965927795,0.00272609925006606,-0.000928772324908157
P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000000126328,1.00000057127777,1.00000039505944
P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
P: "MaxHandle", "int", "Integer", "U",11
}
Shading: T
Culling: "CullingOff"
}
Material: 79228864, "Material::01 - Default", "" {
Version: 102
ShadingModel: "phong"
MultiLayer: 0
Properties70: {
P: "ShadingModel", "KString", "", "", "phong"
P: "EmissiveFactor", "Number", "", "A",0
P: "AmbientColor", "Color", "", "A",0.588235318660736,0.588235318660736,0.588235318660736
P: "DiffuseColor", "Color", "", "A",0.588235318660736,0.588235318660736,0.588235318660736
P: "BumpFactor", "double", "Number", "",0.300000011920929
P: "TransparentColor", "Color", "", "A",1,1,1
P: "SpecularColor", "Color", "", "A",0.899999976158142,0.899999976158142,0.899999976158142
P: "SpecularFactor", "Number", "", "A",0
P: "ShininessExponent", "Number", "", "A",1.99999991737042
P: "Emissive", "Vector3D", "Vector", "",0,0,0
P: "Ambient", "Vector3D", "Vector", "",0.588235318660736,0.588235318660736,0.588235318660736
P: "Diffuse", "Vector3D", "Vector", "",0.588235318660736,0.588235318660736,0.588235318660736
P: "Specular", "Vector3D", "Vector", "",0,0,0
P: "Shininess", "double", "Number", "",1.99999991737042
P: "Opacity", "double", "Number", "",1
P: "Reflectivity", "double", "Number", "",0
}
}
Video: 79247408, "Video::Map #1", "Clip" {
Type: "Clip"
Properties70: {
P: "Path", "KString", "XRefUrl", "", "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
}
UseMipMap: 0
Filename: "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
RelativeFilename: "..\..\..\..\..\..\..\..\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
}
Video: 51963824, "Video::Map #2", "Clip" {
Type: "Clip"
Properties70: {
P: "Path", "KString", "XRefUrl", "", "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
}
UseMipMap: 0
Filename: "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
RelativeFilename: "..\..\..\..\..\..\..\..\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
}
Texture: 79245904, "Texture::Map #1", "" {
Type: "TextureVideoClip"
Version: 202
TextureName: "Texture::Map #1"
Properties70: {
P: "UVSet", "KString", "", "", "UVChannel_1"
P: "UseMaterial", "bool", "", "",1
}
Media: "Video::Map #1"
FileName: "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
RelativeFilename: "..\..\..\..\..\..\..\..\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
ModelUVTranslation: 0,0
ModelUVScaling: 1,1
Texture_Alpha_Source: "Alpha_Black"
Cropping: 0,0,0,0
}
Texture: 79246656, "Texture::Map #2", "" {
Type: "TextureVideoClip"
Version: 202
TextureName: "Texture::Map #2"
Properties70: {
P: "UVSet", "KString", "", "", "UVChannel_1"
P: "UseMaterial", "bool", "", "",1
}
Media: "Video::Map #2"
FileName: "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
RelativeFilename: "..\..\..\..\..\..\..\..\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
ModelUVTranslation: 0,0
ModelUVScaling: 1,1
Texture_Alpha_Source: "Alpha_Black"
Cropping: 0,0,0,0
}
AnimationStack: 51509968, "AnimStack::Take 001", "" {
Properties70: {
P: "LocalStop", "KTime", "Time", "",18474463200
P: "ReferenceStop", "KTime", "Time", "",18474463200
}
}
AnimationLayer: 51964464, "AnimLayer::BaseLayer", "" {
}
AnimationCurveNode: 79677584, "AnimCurveNode::R", "" {
Properties70: {
P: "d|X", "Number", "", "A+",0
P: "d|Y", "Number", "", "A+",0
P: "d|Z", "Number", "", "A+",0
}
}
AnimationCurveNode: 79841760, "AnimCurveNode::S", "" {
Properties70: {
P: "d|X", "Number", "", "A+",1
P: "d|Y", "Number", "", "A+",1
P: "d|Z", "Number", "", "A+",1
}
}
AnimationCurveNode: 79842128, "AnimCurveNode::T", "" {
Properties70: {
P: "d|X", "Number", "", "A+",1.0479697621843e-013
P: "d|Y", "Number", "", "A+",-1.67714188137325e-006
P: "d|Z", "Number", "", "A+",27.6431045532227
}
}
AnimationCurveNode: 79850704, "AnimCurveNode::R", "" {
Properties70: {
P: "d|X", "Number", "", "A+",90.0000093346676
P: "d|Y", "Number", "", "A+",-0
P: "d|Z", "Number", "", "A+",90.0000025044781
}
}
AnimationCurveNode: 79867472, "AnimCurveNode::S", "" {
Properties70: {
P: "d|X", "Number", "", "A+",1
P: "d|Y", "Number", "", "A+",1.00000000000001
P: "d|Z", "Number", "", "A+",1.00000000000001
}
}
AnimationCurveNode: 79867840, "AnimCurveNode::R", "" {
Properties70: {
P: "d|X", "Number", "", "A+",82.0096532674376
P: "d|Y", "Number", "", "A+",-68.3643294576019
P: "d|Z", "Number", "", "A+",-160.718977068916
}
}
AnimationCurveNode: 79868208, "AnimCurveNode::S", "" {
Properties70: {
P: "d|X", "Number", "", "A+",0.999999944551808
P: "d|Y", "Number", "", "A+",0.999999975086417
P: "d|Z", "Number", "", "A+",0.999999835660333
}
}
AnimationCurveNode: 79868576, "AnimCurveNode::R", "" {
Properties70: {
P: "d|X", "Number", "", "A+",-59.1663493576604
P: "d|Y", "Number", "", "A+",-0.00737703025992823
P: "d|Z", "Number", "", "A+",-0.00303271034883198
}
}
AnimationCurveNode: 79871008, "AnimCurveNode::S", "" {
Properties70: {
P: "d|X", "Number", "", "A+",1.00000012889885
P: "d|Y", "Number", "", "A+",0.99999988469374
P: "d|Z", "Number", "", "A+",1.00000000833843
}
}
AnimationCurveNode: 79871376, "AnimCurveNode::R", "" {
Properties70: {
P: "d|X", "Number", "", "A+",5.00895531675326e-006
P: "d|Y", "Number", "", "A+",-1.53927082568325e-014
P: "d|Z", "Number", "", "A+",8.6514230232721e-006
}
}
AnimationCurveNode: 79549120, "AnimCurveNode::S", "" {
Properties70: {
P: "d|X", "Number", "", "A+",1.00000000000001
P: "d|Y", "Number", "", "A+",1.00000000000002
P: "d|Z", "Number", "", "A+",1
}
}
AnimationCurveNode: 79549488, "AnimCurveNode::R", "" {
Properties70: {
P: "d|X", "Number", "", "A+",89.8903301536315
P: "d|Y", "Number", "", "A+",1.44502444287648
P: "d|Z", "Number", "", "A+",177.411486234467
}
}
AnimationCurveNode: 79879952, "AnimCurveNode::S", "" {
Properties70: {
P: "d|X", "Number", "", "A+",0.999999985360327
P: "d|Y", "Number", "", "A+",1.00000001105386
P: "d|Z", "Number", "", "A+",0.999999991944424
}
}
AnimationCurveNode: 79880320, "AnimCurveNode::R", "" {
Properties70: {
P: "d|X", "Number", "", "A+",-20.1643841293739
P: "d|Y", "Number", "", "A+",-0.000409597905636104
P: "d|Z", "Number", "", "A+",0.00428621550303173
}
}
AnimationCurveNode: 79880688, "AnimCurveNode::S", "" {
Properties70: {
P: "d|X", "Number", "", "A+",1.00000000282371
P: "d|Y", "Number", "", "A+",1.0000000493532
P: "d|Z", "Number", "", "A+",0.999999945956098
}
}
AnimationCurveNode: 79882608, "AnimCurveNode::R", "" {
Properties70: {
P: "d|X", "Number", "", "A+",-111.176604193097
P: "d|Y", "Number", "", "A+",75.4647543247746
P: "d|Z", "Number", "", "A+",-45.8507041698204
}
}
AnimationCurveNode: 79881872, "AnimCurveNode::S", "" {
Properties70: {
P: "d|X", "Number", "", "A+",1.00000018789441
P: "d|Y", "Number", "", "A+",0.999999971904261
P: "d|Z", "Number", "", "A+",0.99999982594033
}
}
AnimationCurveNode: 79881504, "AnimCurveNode::R", "" {
Properties70: {
P: "d|X", "Number", "", "A+",-60.9589713709113
P: "d|Y", "Number", "", "A+",-0.0131148151475245
P: "d|Z", "Number", "", "A+",-0.00448017666549555
}
}
AnimationCurveNode: 79883712, "AnimCurveNode::S", "" {
Properties70: {
P: "d|X", "Number", "", "A+",1.00000014846328
P: "d|Y", "Number", "", "A+",1.00000017954381
P: "d|Z", "Number", "", "A+",1.00000016658699
}
}
AnimationCurveNode: 79884080, "AnimCurveNode::R", "" {
Properties70: {
P: "d|X", "Number", "", "A+",-79.5683705148092
P: "d|Y", "Number", "", "A+",-0.934014525338177
P: "d|Z", "Number", "", "A+",1.66241290159821
}
}
AnimationCurveNode: 79882976, "AnimCurveNode::S", "" {
Properties70: {
P: "d|X", "Number", "", "A+",1.00000003851856
P: "d|Y", "Number", "", "A+",1.00000004307514
P: "d|Z", "Number", "", "A+",1.00000003888092
}
}
AnimationCurveNode: 79881136, "AnimCurveNode::R", "" {
Properties70: {
P: "d|X", "Number", "", "A+",-38.3639965927795
P: "d|Y", "Number", "", "A+",0.00272609925006606
P: "d|Z", "Number", "", "A+",-0.000928772324908157
}
}
AnimationCurveNode: 79882240, "AnimCurveNode::S", "" {
Properties70: {
P: "d|X", "Number", "", "A+",1.00000000126328
P: "d|Y", "Number", "", "A+",1.00000057127777
P: "d|Z", "Number", "", "A+",1.00000039505944
}
}
AnimationCurve: 79435424, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 0
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79458480, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 0
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79459840, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 0
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79461200, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79470928, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79472448, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79473968, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: 1.04797e-013,1.399809e-007,2.423723e-007,2.821296e-007,2.423723e-007,1.399809e-007,8.720974e-014,-1.399808e-007,-2.423723e-007,-2.821297e-007,-2.423724e-007,-1.399809e-007,1.04797e-013
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79475488, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -1.677142e-006,-0.9270529,-1.605161,-1.868461,-1.605161,-0.9270527,-1.560667e-006,0.9270499,1.605158,1.868459,1.605158,0.9270505,-1.677142e-006
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79542560, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: 27.6431,28.52762,30.16898,31.0535,30.16898,28.52762,27.6431,28.52762,30.16898,31.0535,30.16898,28.52762,27.6431
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79544080, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: 90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79545600, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -0,-0,-0,-0,-0,-0,-0,-0,-0,-0,-0,-0,-0
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79547120, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: 90,90,90,90,90,90,90,90,90,90,90,90,90
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79548640, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 51930480, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79560448, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79561968, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *12 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,18474463200
}
KeyValueFloat: *12 {
a: -97.99035,-84.33215,-87.91937,-90.78319,-85.22437,-111.2572,-98.79451,-89.0004,-79.71492,-89.64744,-96.75277,-98.00054
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 12
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79587056, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *12 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,18474463200
}
KeyValueFloat: *12 {
a: -111.6357,-118.4925,-111.891,-103.5089,-94.617,-85.16973,-76.38832,-68.61349,-62.82083,-69.44857,-82.33072,-111.637
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 12
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79591568, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *12 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,18474463200
}
KeyValueFloat: *12 {
a: 19.28102,26.12456,28.79167,28.9818,20.09357,44.05887,32.988,28.53473,24.88227,16.39835,6.723833,19.27281
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 12
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79593168, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 0.9999999
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79594128, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79591888, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 0.9999999
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79594448, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -59.16635,-69.86609,-65.00977,-60.55575,-57.8361,-57.66212,-60.87313,-67.47459,-74.84191,-63.44199,-54.7941,-53.58344,-59.1622
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79592208, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -0.007376604,0.006666264,0.0001910981,-0.005600755,-0.00904317,-0.009261737,-0.005190944,0.003469736,0.01343496,-0.001857811,-0.01281343,-0.01428876,-0.007376604
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79592528, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -0.003032604,0.001366038,-0.0003278491,-0.002322264,-0.003770265,-0.003852227,-0.00215834,0.0005737359,0.002433435,-0.0009835473,-0.005600755,-0.006338416,-0.003005283
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79593808, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79592848, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 0.9999999
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79593488, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79595088, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: 5.008955e-006,5.008955e-006,5.008955e-006,5.008955e-006,5.008955e-006,5.008955e-006,5.008955e-006,5.008955e-006,5.008955e-006,5.008955e-006,5.008955e-006,5.008955e-006,5.008955e-006
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79594768, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: 0,0,0,0,0,0,0,0,0,0,0,0,0
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79606768, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: 8.651423e-006,8.651423e-006,8.651423e-006,8.651423e-006,8.651423e-006,8.651423e-006,8.651423e-006,8.651423e-006,8.651423e-006,8.651423e-006,8.651423e-006,8.651423e-006,8.651423e-006
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79603888, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79607088, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79609008, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79608048, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: 89.89033,89.89033,91.39751,125.6636,149.1206,136.6866,124.9989,117.393,112.458,107.5284,98.58601,89.5349,89.89033
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79604528, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: 1.445024,1.445024,1.384353,1.946134,1.346213,0.4394405,-0.8056618,-2.140199,-2.989874,-3.015474,-2.498674,-1.561053,1.445024
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79608368, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: 177.4115,177.4115,176.3118,178.2029,179.6821,181.1405,182.4323,182.7628,181.6779,179.935,178.6936,178.3814,177.4115
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79605488, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *2 {
a: 0,18474463200
}
KeyValueFloat: *2 {
a: 1,1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight|WeightedNextLeft, Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *2 {
a: 50332680,16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333233, RightVelocity:0, NextLeftVelocity:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *8 {
a: 0,0,218369284,0,0,0,218434820,0
}
KeyAttrRefCount: *2 {
a: 1,1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79609328, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *2 {
a: 0,18474463200
}
KeyValueFloat: *2 {
a: 1,1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight|WeightedNextLeft, Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *2 {
a: 50332680,16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333233, RightVelocity:0, NextLeftVelocity:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *8 {
a: 0,0,218369284,0,0,0,218434820,0
}
KeyAttrRefCount: *2 {
a: 1,1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79610608, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *2 {
a: 0,18474463200
}
KeyValueFloat: *2 {
a: 1,1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight|WeightedNextLeft, Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *2 {
a: 50332680,16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333233, RightVelocity:0, NextLeftVelocity:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *8 {
a: 0,0,218369284,0,0,0,218434820,0
}
KeyAttrRefCount: *2 {
a: 1,1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79609648, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -20.16438,-42.41545,-66.44132,-93.35708,-120.4898,-99.90707,-81.03268,-66.20753,-53.58475,-41.57741,-28.22619,-14.64395,-20.16438
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79609968, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -0.0004098114,0.007048755,-0.001775849,-0.07332891,-0.03349525,-0.047784,0.0001912453,-0.003387774,-0.00469917,-0.007622491,-0.001967095,-0.01393359,-0.0004098114
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79610288, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: 0.00428626,0.01150873,-0.0004644529,-0.0001639245,0.01475321,0.003786189,0.0004812329,-2.732076e-005,-0.002896,-0.008332831,-0.0001912453,-0.08157978,0.004262038
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79606128, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79608688, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79610928, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79611568, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -111.1766,-91.87025,-77.8123,-82.18466,-69.2126,-135.8142,-106.479,-86.99049,-84.69875,-75.91305,-41.93613,34.33531,68.8234
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79604848, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: 75.46475,68.45091,62.7412,69.36249,81.5661,100.1534,112.3703,118.6063,111.8918,103.8708,97.11324,97.83731,104.5353
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79605168, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -45.8507,-31.65241,-22.62872,-8.340508,20.63089,-47.26519,-28.28018,-28.98058,-25.17086,-13.60057,23.40258,101.2955,134.1493
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79611248, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79605808, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79604208, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 0.9999999
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79606448, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -60.95897,-67.43255,-74.56351,-63.28452,-54.80978,-53.51486,-59.02816,-69.71036,-64.81544,-60.44059,-57.79889,-57.68953,-60.95897
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79607408, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -0.01311396,0.008032302,0.03271676,-0.005628076,-0.03232045,-0.03625464,-0.01926113,0.01562747,-0.0006010567,-0.01475321,-0.02311336,-0.02289479,-0.01311396
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79607728, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -0.004480604,0.002240302,0.007342628,-0.00180317,-0.01305932,-0.01510838,-0.006884831,0.004043472,-0.0002185661,-0.005136302,-0.008633359,-0.008360151,-0.004480604
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79792560, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79791600, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79796400, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79791920, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -79.56837,-70.41018,-60.03428,-50.41713,-42.00826,-33.93328,-58.81615,-85.4716,-104.1026,-103.9721,-87.15209,-84.35964,-79.5684
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79792240, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -0.9340147,-0.4365584,0.07073344,0.6125269,0.8777744,0.7455343,0.2258046,-1.074717,-2.123888,-2.468704,-2.404582,-1.542311,-0.9336323
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79793200, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: 1.662413,3.495847,3.971285,3.065094,1.349555,-0.5930517,-2.51381,-4.19207,-4.264224,-2.742485,-1.98835,-0.5658129,1.66173
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79796720, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79794160, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79793520, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79794480, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -38.364,-52.13636,-67.28345,-83.4026,-100.6214,-118.3458,-91.97923,-66.65737,-42.58653,-22.99072,-18.07738,-26.91767,-38.36397
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79796080, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: 0.002726258,0.01703487,0.00673834,0.001586948,-0.03415095,-0.00286868,-0.007895699,-0.01147472,0.0001912453,0.006007426,0.004359752,0.004161824,0.001794941
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79797040, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *13 {
a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
}
KeyValueFloat: *13 {
a: -0.0009289057,0.01245826,0.001158247,-0.001967095,0.001967095,-0.001857811,-0.002977963,-0.008551397,-0.00396151,0.008114265,7.310176e-006,0.001290503,-0.00286868
}
;KeyAttrFlags: Linear
KeyAttrFlags: *1 {
a: 8452
}
;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
KeyAttrDataFloat: *4 {
a: 0,0,218434821,0
}
KeyAttrRefCount: *1 {
a: 13
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79793840, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79792880, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
AnimationCurve: 79798320, "AnimCurve::", "" {
Default: 0
KeyVer: 4008
KeyTime: *1 {
a: 0
}
KeyValueFloat: *1 {
a: 1
}
;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
KeyAttrFlags: *1 {
a: 16778248
}
;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
KeyAttrDataFloat: *4 {
a: 0,0,218434820,0
}
KeyAttrRefCount: *1 {
a: 1
}
Post-Extrapolation: {
Type: C
Repetition: 1
}
}
CollectionExclusive: 51731968, "DisplayLayer::lores", "DisplayLayer" {
Properties70: {
P: "Color", "ColorRGB", "Color", "",0.882352941176471,0.345098039215686,0.780392156862745
}
}
}
; Object connections
;------------------------------------------------------------------
Connections: {
;Model::minebot_main_root, Model::RootNode
C: "OO",79188976,0
;Model::minebot_main, Model::minebot_main_root
C: "OO",79191568,79188976
;NodeAttribute::, Model::minebot_main_root
C: "OO",79188640,79188976
;AnimCurveNode::R, Model::minebot_main_root
C: "OP",79677584,79188976, "Lcl Rotation"
;AnimCurveNode::S, Model::minebot_main_root
C: "OP",79841760,79188976, "Lcl Scaling"
;Model::minebot_right_upperleg, Model::minebot_main
C: "OO",79193824,79191568
;Model::minebot_head, Model::minebot_main
C: "OO",51914752,79191568
;Model::minebot_front_upperleg, Model::minebot_main
C: "OO",51917008,79191568
;Model::minebot_left_upperleg, Model::minebot_main
C: "OO",51925968,79191568
;Model::minebot_front_upperleg2, Model::minebot_main
C: "OO",79210080,79191568
;Geometry::, Model::minebot_main
C: "OO",51964896,79191568
;Material::01 - Default, Model::minebot_main
C: "OO",79228864,79191568
;AnimCurveNode::T, Model::minebot_main
C: "OP",79842128,79191568, "Lcl Translation"
;AnimCurveNode::R, Model::minebot_main
C: "OP",79850704,79191568, "Lcl Rotation"
;AnimCurveNode::S, Model::minebot_main
C: "OP",79867472,79191568, "Lcl Scaling"
;Model::minebot_right_lowerleg, Model::minebot_right_upperleg
C: "OO",51912496,79193824
;Geometry::, Model::minebot_right_upperleg
C: "OO",79292512,79193824
;Material::01 - Default, Model::minebot_right_upperleg
C: "OO",79228864,79193824
;AnimCurveNode::R, Model::minebot_right_upperleg
C: "OP",79867840,79193824, "Lcl Rotation"
;AnimCurveNode::S, Model::minebot_right_upperleg
C: "OP",79868208,79193824, "Lcl Scaling"
;Geometry::, Model::minebot_right_lowerleg
C: "OO",79289824,51912496
;Material::01 - Default, Model::minebot_right_lowerleg
C: "OO",79228864,51912496
;AnimCurveNode::R, Model::minebot_right_lowerleg
C: "OP",79868576,51912496, "Lcl Rotation"
;AnimCurveNode::S, Model::minebot_right_lowerleg
C: "OP",79871008,51912496, "Lcl Scaling"
;Geometry::, Model::minebot_head
C: "OO",79312608,51914752
;Material::01 - Default, Model::minebot_head
C: "OO",79228864,51914752
;AnimCurveNode::R, Model::minebot_head
C: "OP",79871376,51914752, "Lcl Rotation"
;AnimCurveNode::S, Model::minebot_head
C: "OP",79549120,51914752, "Lcl Scaling"
;Model::minebot_back_lowerleg, Model::minebot_front_upperleg
C: "OO",51923712,51917008
;Geometry::, Model::minebot_front_upperleg
C: "OO",79354576,51917008
;Material::01 - Default, Model::minebot_front_upperleg
C: "OO",79228864,51917008
;AnimCurveNode::R, Model::minebot_front_upperleg
C: "OP",79549488,51917008, "Lcl Rotation"
;AnimCurveNode::S, Model::minebot_front_upperleg
C: "OP",79879952,51917008, "Lcl Scaling"
;Geometry::, Model::minebot_back_lowerleg
C: "OO",79348352,51923712
;Material::01 - Default, Model::minebot_back_lowerleg
C: "OO",79228864,51923712
;AnimCurveNode::R, Model::minebot_back_lowerleg
C: "OP",79880320,51923712, "Lcl Rotation"
;AnimCurveNode::S, Model::minebot_back_lowerleg
C: "OP",79880688,51923712, "Lcl Scaling"
;Model::minebot_left_lowerleg, Model::minebot_left_upperleg
C: "OO",51928224,51925968
;Geometry::, Model::minebot_left_upperleg
C: "OO",79396176,51925968
;Material::01 - Default, Model::minebot_left_upperleg
C: "OO",79228864,51925968
;AnimCurveNode::R, Model::minebot_left_upperleg
C: "OP",79882608,51925968, "Lcl Rotation"
;AnimCurveNode::S, Model::minebot_left_upperleg
C: "OP",79881872,51925968, "Lcl Scaling"
;Geometry::, Model::minebot_left_lowerleg
C: "OO",79400336,51928224
;Material::01 - Default, Model::minebot_left_lowerleg
C: "OO",79228864,51928224
;AnimCurveNode::R, Model::minebot_left_lowerleg
C: "OP",79881504,51928224, "Lcl Rotation"
;AnimCurveNode::S, Model::minebot_left_lowerleg
C: "OP",79883712,51928224, "Lcl Scaling"
;Model::minebot_front_lowerleg, Model::minebot_front_upperleg2
C: "OO",79219360,79210080
;Geometry::, Model::minebot_front_upperleg2
C: "OO",79421600,79210080
;Material::01 - Default, Model::minebot_front_upperleg2
C: "OO",79228864,79210080
;AnimCurveNode::R, Model::minebot_front_upperleg2
C: "OP",79884080,79210080, "Lcl Rotation"
;AnimCurveNode::S, Model::minebot_front_upperleg2
C: "OP",79882976,79210080, "Lcl Scaling"
;Geometry::, Model::minebot_front_lowerleg
C: "OO",79429488,79219360
;Material::01 - Default, Model::minebot_front_lowerleg
C: "OO",79228864,79219360
;AnimCurveNode::R, Model::minebot_front_lowerleg
C: "OP",79881136,79219360, "Lcl Rotation"
;AnimCurveNode::S, Model::minebot_front_lowerleg
C: "OP",79882240,79219360, "Lcl Scaling"
;Texture::Map #1, Material::01 - Default
C: "OP",79245904,79228864, "DiffuseColor"
;Texture::Map #2, Material::01 - Default
C: "OP",79246656,79228864, "Bump"
;Video::Map #1, Texture::Map #1
C: "OO",79247408,79245904
;Video::Map #2, Texture::Map #2
C: "OO",51963824,79246656
;AnimLayer::BaseLayer, AnimStack::Take 001
C: "OO",51964464,51509968
;AnimCurveNode::R, AnimLayer::BaseLayer
C: "OO",79677584,51964464
;AnimCurveNode::S, AnimLayer::BaseLayer
C: "OO",79841760,51964464
;AnimCurveNode::T, AnimLayer::BaseLayer
C: "OO",79842128,51964464
;AnimCurveNode::R, AnimLayer::BaseLayer
C: "OO",79850704,51964464
;AnimCurveNode::S, AnimLayer::BaseLayer
C: "OO",79867472,51964464
;AnimCurveNode::R, AnimLayer::BaseLayer
C: "OO",79867840,51964464
;AnimCurveNode::S, AnimLayer::BaseLayer
C: "OO",79868208,51964464
;AnimCurveNode::R, AnimLayer::BaseLayer
C: "OO",79868576,51964464
;AnimCurveNode::S, AnimLayer::BaseLayer
C: "OO",79871008,51964464
;AnimCurveNode::R, AnimLayer::BaseLayer
C: "OO",79871376,51964464
;AnimCurveNode::S, AnimLayer::BaseLayer
C: "OO",79549120,51964464
;AnimCurveNode::R, AnimLayer::BaseLayer
C: "OO",79549488,51964464
;AnimCurveNode::S, AnimLayer::BaseLayer
C: "OO",79879952,51964464
;AnimCurveNode::R, AnimLayer::BaseLayer
C: "OO",79880320,51964464
;AnimCurveNode::S, AnimLayer::BaseLayer
C: "OO",79880688,51964464
;AnimCurveNode::R, AnimLayer::BaseLayer
C: "OO",79882608,51964464
;AnimCurveNode::S, AnimLayer::BaseLayer
C: "OO",79881872,51964464
;AnimCurveNode::R, AnimLayer::BaseLayer
C: "OO",79881504,51964464
;AnimCurveNode::S, AnimLayer::BaseLayer
C: "OO",79883712,51964464
;AnimCurveNode::R, AnimLayer::BaseLayer
C: "OO",79884080,51964464
;AnimCurveNode::S, AnimLayer::BaseLayer
C: "OO",79882976,51964464
;AnimCurveNode::R, AnimLayer::BaseLayer
C: "OO",79881136,51964464
;AnimCurveNode::S, AnimLayer::BaseLayer
C: "OO",79882240,51964464
;Model::minebot_front_lowerleg, DisplayLayer::lores
C: "OO",79219360,51731968
;Model::minebot_front_upperleg, DisplayLayer::lores
C: "OO",79210080,51731968
;Model::minebot_left_lowerleg, DisplayLayer::lores
C: "OO",51928224,51731968
;Model::minebot_left_upperleg, DisplayLayer::lores
C: "OO",51925968,51731968
;Model::minebot_back_lowerleg, DisplayLayer::lores
C: "OO",51923712,51731968
;Model::minebot_front_upperleg2, DisplayLayer::lores
C: "OO",51917008,51731968
;Model::minebot_head, DisplayLayer::lores
C: "OO",51914752,51731968
;Model::minebot_right_lowerleg, DisplayLayer::lores
C: "OO",51912496,51731968
;Model::minebot_right_upperleg, DisplayLayer::lores
C: "OO",79193824,51731968
;Model::minebot_main, DisplayLayer::lores
C: "OO",79191568,51731968
;AnimCurve::, AnimCurveNode::R
C: "OP",79435424,79677584, "d|X"
;AnimCurve::, AnimCurveNode::R
C: "OP",79458480,79677584, "d|Y"
;AnimCurve::, AnimCurveNode::R
C: "OP",79459840,79677584, "d|Z"
;AnimCurve::, AnimCurveNode::S
C: "OP",79461200,79841760, "d|X"
;AnimCurve::, AnimCurveNode::S
C: "OP",79470928,79841760, "d|Y"
;AnimCurve::, AnimCurveNode::S
C: "OP",79472448,79841760, "d|Z"
;AnimCurve::, AnimCurveNode::T
C: "OP",79473968,79842128, "d|X"
;AnimCurve::, AnimCurveNode::T
C: "OP",79475488,79842128, "d|Y"
;AnimCurve::, AnimCurveNode::T
C: "OP",79542560,79842128, "d|Z"
;AnimCurve::, AnimCurveNode::R
C: "OP",79544080,79850704, "d|X"
;AnimCurve::, AnimCurveNode::R
C: "OP",79545600,79850704, "d|Y"
;AnimCurve::, AnimCurveNode::R
C: "OP",79547120,79850704, "d|Z"
;AnimCurve::, AnimCurveNode::S
C: "OP",79548640,79867472, "d|X"
;AnimCurve::, AnimCurveNode::S
C: "OP",51930480,79867472, "d|Y"
;AnimCurve::, AnimCurveNode::S
C: "OP",79560448,79867472, "d|Z"
;AnimCurve::, AnimCurveNode::R
C: "OP",79561968,79867840, "d|X"
;AnimCurve::, AnimCurveNode::R
C: "OP",79587056,79867840, "d|Y"
;AnimCurve::, AnimCurveNode::R
C: "OP",79591568,79867840, "d|Z"
;AnimCurve::, AnimCurveNode::S
C: "OP",79593168,79868208, "d|X"
;AnimCurve::, AnimCurveNode::S
C: "OP",79594128,79868208, "d|Y"
;AnimCurve::, AnimCurveNode::S
C: "OP",79591888,79868208, "d|Z"
;AnimCurve::, AnimCurveNode::R
C: "OP",79594448,79868576, "d|X"
;AnimCurve::, AnimCurveNode::R
C: "OP",79592208,79868576, "d|Y"
;AnimCurve::, AnimCurveNode::R
C: "OP",79592528,79868576, "d|Z"
;AnimCurve::, AnimCurveNode::S
C: "OP",79593808,79871008, "d|X"
;AnimCurve::, AnimCurveNode::S
C: "OP",79592848,79871008, "d|Y"
;AnimCurve::, AnimCurveNode::S
C: "OP",79593488,79871008, "d|Z"
;AnimCurve::, AnimCurveNode::R
C: "OP",79595088,79871376, "d|X"
;AnimCurve::, AnimCurveNode::R
C: "OP",79594768,79871376, "d|Y"
;AnimCurve::, AnimCurveNode::R
C: "OP",79606768,79871376, "d|Z"
;AnimCurve::, AnimCurveNode::S
C: "OP",79603888,79549120, "d|X"
;AnimCurve::, AnimCurveNode::S
C: "OP",79607088,79549120, "d|Y"
;AnimCurve::, AnimCurveNode::S
C: "OP",79609008,79549120, "d|Z"
;AnimCurve::, AnimCurveNode::R
C: "OP",79608048,79549488, "d|X"
;AnimCurve::, AnimCurveNode::R
C: "OP",79604528,79549488, "d|Y"
;AnimCurve::, AnimCurveNode::R
C: "OP",79608368,79549488, "d|Z"
;AnimCurve::, AnimCurveNode::S
C: "OP",79605488,79879952, "d|X"
;AnimCurve::, AnimCurveNode::S
C: "OP",79609328,79879952, "d|Y"
;AnimCurve::, AnimCurveNode::S
C: "OP",79610608,79879952, "d|Z"
;AnimCurve::, AnimCurveNode::R
C: "OP",79609648,79880320, "d|X"
;AnimCurve::, AnimCurveNode::R
C: "OP",79609968,79880320, "d|Y"
;AnimCurve::, AnimCurveNode::R
C: "OP",79610288,79880320, "d|Z"
;AnimCurve::, AnimCurveNode::S
C: "OP",79606128,79880688, "d|X"
;AnimCurve::, AnimCurveNode::S
C: "OP",79608688,79880688, "d|Y"
;AnimCurve::, AnimCurveNode::S
C: "OP",79610928,79880688, "d|Z"
;AnimCurve::, AnimCurveNode::R
C: "OP",79611568,79882608, "d|X"
;AnimCurve::, AnimCurveNode::R
C: "OP",79604848,79882608, "d|Y"
;AnimCurve::, AnimCurveNode::R
C: "OP",79605168,79882608, "d|Z"
;AnimCurve::, AnimCurveNode::S
C: "OP",79611248,79881872, "d|X"
;AnimCurve::, AnimCurveNode::S
C: "OP",79605808,79881872, "d|Y"
;AnimCurve::, AnimCurveNode::S
C: "OP",79604208,79881872, "d|Z"
;AnimCurve::, AnimCurveNode::R
C: "OP",79606448,79881504, "d|X"
;AnimCurve::, AnimCurveNode::R
C: "OP",79607408,79881504, "d|Y"
;AnimCurve::, AnimCurveNode::R
C: "OP",79607728,79881504, "d|Z"
;AnimCurve::, AnimCurveNode::S
C: "OP",79792560,79883712, "d|X"
;AnimCurve::, AnimCurveNode::S
C: "OP",79791600,79883712, "d|Y"
;AnimCurve::, AnimCurveNode::S
C: "OP",79796400,79883712, "d|Z"
;AnimCurve::, AnimCurveNode::R
C: "OP",79791920,79884080, "d|X"
;AnimCurve::, AnimCurveNode::R
C: "OP",79792240,79884080, "d|Y"
;AnimCurve::, AnimCurveNode::R
C: "OP",79793200,79884080, "d|Z"
;AnimCurve::, AnimCurveNode::S
C: "OP",79796720,79882976, "d|X"
;AnimCurve::, AnimCurveNode::S
C: "OP",79794160,79882976, "d|Y"
;AnimCurve::, AnimCurveNode::S
C: "OP",79793520,79882976, "d|Z"
;AnimCurve::, AnimCurveNode::R
C: "OP",79794480,79881136, "d|X"
;AnimCurve::, AnimCurveNode::R
C: "OP",79796080,79881136, "d|Y"
;AnimCurve::, AnimCurveNode::R
C: "OP",79797040,79881136, "d|Z"
;AnimCurve::, AnimCurveNode::S
C: "OP",79793840,79882240, "d|X"
;AnimCurve::, AnimCurveNode::S
C: "OP",79792880,79882240, "d|Y"
;AnimCurve::, AnimCurveNode::S
C: "OP",79798320,79882240, "d|Z"
}
;Takes section
;----------------------------------------------------
Takes: {
Current: ""
Take: "Take 001" {
FileName: "Take_001.tak"
LocalTime: 0,18474463200
ReferenceTime: 0,18474463200
}
}
|