Subversion Repository Public Repository

Nextrek

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
; FBX 6.1.0 project file
; Created by Blender FBX Exporter
; for support mail: ideasman42@gmail.com
; ----------------------------------------------------

FBXHeaderExtension:  {
	FBXHeaderVersion: 1003
	FBXVersion: 6100
	CreationTimeStamp:  {
		Version: 1000
		Year: 2013
		Month: 09
		Day: 05
		Hour: 13
		Minute: 18
		Second: 12
		Millisecond: 0
	}
	Creator: "FBX SDK/FBX Plugins build 20070228"
	OtherFlags:  {
		FlagPLE: 0
	}
}
CreationTime: "2013-09-05 13:18:12:000"
Creator: "Blender version 2.67 (sub 0)"

; Object definitions
;------------------------------------------------------------------

Definitions:  {
	Version: 100
	Count: 11
	ObjectType: "Model" {
		Count: 9
	}
	ObjectType: "Geometry" {
		Count: 1
	}
	ObjectType: "Material" {
		Count: 1
	}
	ObjectType: "Pose" {
		Count: 1
	}
	ObjectType: "GlobalSettings" {
		Count: 1
	}
}

; Object properties
;------------------------------------------------------------------

Objects:  {
	Model: "Model::Camera Switcher", "CameraSwitcher" {
		Version: 232
		Properties60:  {
			Property: "QuaternionInterpolate", "bool", "",0
			Property: "Visibility", "Visibility", "A+",1
			Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
			Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
			Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
			Property: "RotationOffset", "Vector3D", "",0,0,0
			Property: "RotationPivot", "Vector3D", "",0,0,0
			Property: "ScalingOffset", "Vector3D", "",0,0,0
			Property: "ScalingPivot", "Vector3D", "",0,0,0
			Property: "TranslationActive", "bool", "",0
			Property: "TranslationMin", "Vector3D", "",0,0,0
			Property: "TranslationMax", "Vector3D", "",0,0,0
			Property: "TranslationMinX", "bool", "",0
			Property: "TranslationMinY", "bool", "",0
			Property: "TranslationMinZ", "bool", "",0
			Property: "TranslationMaxX", "bool", "",0
			Property: "TranslationMaxY", "bool", "",0
			Property: "TranslationMaxZ", "bool", "",0
			Property: "RotationOrder", "enum", "",0
			Property: "RotationSpaceForLimitOnly", "bool", "",0
			Property: "AxisLen", "double", "",10
			Property: "PreRotation", "Vector3D", "",0,0,0
			Property: "PostRotation", "Vector3D", "",0,0,0
			Property: "RotationActive", "bool", "",0
			Property: "RotationMin", "Vector3D", "",0,0,0
			Property: "RotationMax", "Vector3D", "",0,0,0
			Property: "RotationMinX", "bool", "",0
			Property: "RotationMinY", "bool", "",0
			Property: "RotationMinZ", "bool", "",0
			Property: "RotationMaxX", "bool", "",0
			Property: "RotationMaxY", "bool", "",0
			Property: "RotationMaxZ", "bool", "",0
			Property: "RotationStiffnessX", "double", "",0
			Property: "RotationStiffnessY", "double", "",0
			Property: "RotationStiffnessZ", "double", "",0
			Property: "MinDampRangeX", "double", "",0
			Property: "MinDampRangeY", "double", "",0
			Property: "MinDampRangeZ", "double", "",0
			Property: "MaxDampRangeX", "double", "",0
			Property: "MaxDampRangeY", "double", "",0
			Property: "MaxDampRangeZ", "double", "",0
			Property: "MinDampStrengthX", "double", "",0
			Property: "MinDampStrengthY", "double", "",0
			Property: "MinDampStrengthZ", "double", "",0
			Property: "MaxDampStrengthX", "double", "",0
			Property: "MaxDampStrengthY", "double", "",0
			Property: "MaxDampStrengthZ", "double", "",0
			Property: "PreferedAngleX", "double", "",0
			Property: "PreferedAngleY", "double", "",0
			Property: "PreferedAngleZ", "double", "",0
			Property: "InheritType", "enum", "",0
			Property: "ScalingActive", "bool", "",0
			Property: "ScalingMin", "Vector3D", "",1,1,1
			Property: "ScalingMax", "Vector3D", "",1,1,1
			Property: "ScalingMinX", "bool", "",0
			Property: "ScalingMinY", "bool", "",0
			Property: "ScalingMinZ", "bool", "",0
			Property: "ScalingMaxX", "bool", "",0
			Property: "ScalingMaxY", "bool", "",0
			Property: "ScalingMaxZ", "bool", "",0
			Property: "GeometricTranslation", "Vector3D", "",0,0,0
			Property: "GeometricRotation", "Vector3D", "",0,0,0
			Property: "GeometricScaling", "Vector3D", "",1,1,1
			Property: "LookAtProperty", "object", ""
			Property: "UpVectorProperty", "object", ""
			Property: "Show", "bool", "",1
			Property: "NegativePercentShapeSupport", "bool", "",1
			Property: "DefaultAttributeIndex", "int", "",0
			Property: "Color", "Color", "A",0.8,0.8,0.8
			Property: "Camera Index", "Integer", "A+",100
		}
		MultiLayer: 0
		MultiTake: 1
		Hidden: "True"
		Shading: W
		Culling: "CullingOff"
		Version: 101
		Name: "Model::Camera Switcher"
		CameraId: 0
		CameraName: 100
		CameraIndexName:
	}
	Model: "Model::Sword", "Mesh" {
		Version: 232
		Properties60:  {
			Property: "QuaternionInterpolate", "bool", "",0
			Property: "Visibility", "Visibility", "A+",1
			Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
			Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000000000000,0.000000000000000
			Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
			Property: "RotationOffset", "Vector3D", "",0,0,0
			Property: "RotationPivot", "Vector3D", "",0,0,0
			Property: "ScalingOffset", "Vector3D", "",0,0,0
			Property: "ScalingPivot", "Vector3D", "",0,0,0
			Property: "TranslationActive", "bool", "",0
			Property: "TranslationMin", "Vector3D", "",0,0,0
			Property: "TranslationMax", "Vector3D", "",0,0,0
			Property: "TranslationMinX", "bool", "",0
			Property: "TranslationMinY", "bool", "",0
			Property: "TranslationMinZ", "bool", "",0
			Property: "TranslationMaxX", "bool", "",0
			Property: "TranslationMaxY", "bool", "",0
			Property: "TranslationMaxZ", "bool", "",0
			Property: "RotationOrder", "enum", "",0
			Property: "RotationSpaceForLimitOnly", "bool", "",0
			Property: "AxisLen", "double", "",10
			Property: "PreRotation", "Vector3D", "",0,0,0
			Property: "PostRotation", "Vector3D", "",0,0,0
			Property: "RotationActive", "bool", "",0
			Property: "RotationMin", "Vector3D", "",0,0,0
			Property: "RotationMax", "Vector3D", "",0,0,0
			Property: "RotationMinX", "bool", "",0
			Property: "RotationMinY", "bool", "",0
			Property: "RotationMinZ", "bool", "",0
			Property: "RotationMaxX", "bool", "",0
			Property: "RotationMaxY", "bool", "",0
			Property: "RotationMaxZ", "bool", "",0
			Property: "RotationStiffnessX", "double", "",0
			Property: "RotationStiffnessY", "double", "",0
			Property: "RotationStiffnessZ", "double", "",0
			Property: "MinDampRangeX", "double", "",0
			Property: "MinDampRangeY", "double", "",0
			Property: "MinDampRangeZ", "double", "",0
			Property: "MaxDampRangeX", "double", "",0
			Property: "MaxDampRangeY", "double", "",0
			Property: "MaxDampRangeZ", "double", "",0
			Property: "MinDampStrengthX", "double", "",0
			Property: "MinDampStrengthY", "double", "",0
			Property: "MinDampStrengthZ", "double", "",0
			Property: "MaxDampStrengthX", "double", "",0
			Property: "MaxDampStrengthY", "double", "",0
			Property: "MaxDampStrengthZ", "double", "",0
			Property: "PreferedAngleX", "double", "",0
			Property: "PreferedAngleY", "double", "",0
			Property: "PreferedAngleZ", "double", "",0
			Property: "InheritType", "enum", "",0
			Property: "ScalingActive", "bool", "",0
			Property: "ScalingMin", "Vector3D", "",1,1,1
			Property: "ScalingMax", "Vector3D", "",1,1,1
			Property: "ScalingMinX", "bool", "",0
			Property: "ScalingMinY", "bool", "",0
			Property: "ScalingMinZ", "bool", "",0
			Property: "ScalingMaxX", "bool", "",0
			Property: "ScalingMaxY", "bool", "",0
			Property: "ScalingMaxZ", "bool", "",0
			Property: "GeometricTranslation", "Vector3D", "",0,0,0
			Property: "GeometricRotation", "Vector3D", "",0,0,0
			Property: "GeometricScaling", "Vector3D", "",1,1,1
			Property: "LookAtProperty", "object", ""
			Property: "UpVectorProperty", "object", ""
			Property: "Show", "bool", "",1
			Property: "NegativePercentShapeSupport", "bool", "",1
			Property: "DefaultAttributeIndex", "int", "",0
			Property: "Color", "Color", "A",0.8,0.8,0.8
			Property: "Size", "double", "",100
			Property: "Look", "enum", "",1
		}
		MultiLayer: 0
		MultiTake: 1
		Shading: Y
		Culling: "CullingOff"
		Vertices: -0.019235,-0.021518,0.181499,0.000000,-0.033318,0.180622,-0.025240,-0.034992,0.130699,-0.040617,-0.043146,0.135220,0.000000,-0.035682,0.040650,-0.033264,-0.040321,0.027786,-0.029177,-0.036841,0.020407
		,-0.033711,-0.034261,0.439874,-0.039995,-0.043626,0.032339,-0.021596,-0.023505,0.387894,0.000000,-0.033318,0.387302,-0.031736,-0.005807,0.596737,-0.009597,-0.030813,0.387302,-0.032671,-0.020048,0.528397
		,0.000000,-0.033094,0.435052,-0.013938,-0.033094,0.435052,0.000000,-0.005807,0.599479,0.000000,-0.020048,0.531140,-0.010000,-0.020048,0.531141,-0.066797,-0.022980,0.446519,-0.065408,-0.022980,0.523879
		,-0.105546,-0.022980,0.457277,-0.102680,-0.022980,0.509935,-0.125672,-0.022980,0.456507,-0.125304,-0.022980,0.510667,-0.154138,-0.022980,0.451265,-0.150432,-0.022980,0.516797,-0.178835,-0.022980,0.445664
		,-0.179333,-0.022980,0.521486,-0.193630,-0.022980,0.448296,-0.192953,-0.022980,0.520195,-0.203856,-0.022980,0.462093,-0.204416,-0.022980,0.505566,-0.212069,-0.022980,0.473182,-0.212596,-0.022980,0.492153
		,-0.160516,-0.022980,0.513974,-0.160915,-0.022980,0.455420,-0.132241,-0.022980,0.458660,-0.133921,-0.022980,0.509501,-0.113276,-0.022980,0.507080,-0.114679,-0.022980,0.457800,-0.083382,-0.022980,0.458806
		,-0.075139,-0.022980,0.518091,-0.078260,-0.022980,0.509537,-0.092147,-0.022980,0.458670,-0.050783,-0.020048,0.520195,-0.034306,-0.030020,0.445478,-0.032563,-0.005807,0.863604,-0.033287,-0.005807,0.623756
		,-0.030992,-0.005807,0.553125,0.000000,-0.005807,0.555868,-0.008321,-0.005807,0.555869,-0.048390,0.000000,0.551234,0.000000,-0.005807,0.626499,-0.009065,-0.005807,0.599481,0.000000,-0.005807,0.866346
		,-0.047526,0.000000,0.597346,-0.010616,-0.004006,0.626500,-0.049434,0.000000,0.617043,-0.028789,-0.005572,1.289586,-0.009971,-0.004006,0.866881,-0.048104,0.000000,0.859191,-0.006697,-0.003969,1.292503
		,-0.036028,-0.000000,1.286566,-0.031262,-0.005807,0.568949,-0.050219,0.000000,0.567965,-0.008591,-0.005807,0.571693,0.000000,-0.005807,0.571691,-0.010245,-0.005807,0.620040,-0.053792,0.000000,0.611593
		,-0.031606,-0.005807,0.589085,-0.008935,-0.005807,0.591829,-0.052340,0.000000,0.589684,-0.031483,-0.009970,0.545897,-0.032916,-0.005807,0.617296,-0.050570,-0.009970,0.543859,-0.008812,-0.009970,0.548641
		,-0.019851,-0.021518,0.384342,-0.009597,-0.030395,0.384342,-0.026987,-0.035561,0.056556,-0.019235,0.021518,0.181499,-0.021923,0.000000,0.181499,-0.028841,0.000000,0.143135,-0.040617,0.043146,0.135220
		,-0.041109,0.000000,0.135155,-0.037791,0.000000,0.036448,-0.033264,0.040321,0.027786,-0.044330,0.000000,0.027449,-0.029177,0.036841,0.020407,-0.029177,0.000000,0.020407,-0.033711,0.034261,0.439874
		,-0.042297,0.000000,0.031948,-0.039995,0.043626,0.032339,-0.021596,0.023505,0.387894,-0.023831,0.000000,0.387894,-0.031736,0.005807,0.596737,-0.009597,0.030813,0.387302,-0.032671,0.020048,0.528397
		,-0.033711,0.000000,0.436148,-0.013938,0.033094,0.435052,-0.010000,0.020048,0.531141,-0.066797,0.022980,0.446519,-0.065408,0.022980,0.523879,-0.066797,0.000000,0.443372,-0.065408,0.000000,0.527476
		,-0.105546,0.022980,0.457277,-0.102680,0.022980,0.509935,-0.105546,0.000000,0.455069,-0.102680,0.000000,0.512317,-0.125672,0.022980,0.456507,-0.125304,0.022980,0.510667,-0.125672,0.000000,0.454231
		,-0.125304,0.000000,0.513112,-0.154138,0.022980,0.451265,-0.150432,0.022980,0.516797,-0.154138,0.000000,0.448533,-0.150432,0.000000,0.519776,-0.178835,0.022980,0.445664,-0.179333,0.022980,0.521486
		,-0.178835,0.000000,0.442443,-0.179333,0.000000,0.524875,-0.193630,0.022980,0.448296,-0.192953,0.022980,0.520195,-0.193630,0.000000,0.445304,-0.192953,0.000000,0.523471,-0.203856,0.022980,0.462093
		,-0.204416,0.022980,0.505566,-0.203856,0.000000,0.462093,-0.204416,0.000000,0.505566,-0.212069,0.022980,0.473182,-0.212596,0.022980,0.492153,-0.212069,0.000000,0.472360,-0.212596,0.000000,0.492985
		,-0.160516,0.022980,0.513974,-0.160516,0.000000,0.516708,-0.160915,0.022980,0.455420,-0.160915,0.000000,0.453049,-0.132241,0.000000,0.456572,-0.132241,0.022980,0.458660,-0.133921,0.000000,0.511845
		,-0.133921,0.022980,0.509501,-0.113276,0.022980,0.507080,-0.113276,0.000000,0.509212,-0.114679,0.022980,0.457800,-0.114679,0.000000,0.455637,-0.083382,0.000000,0.456731,-0.083382,0.022980,0.458806
		,-0.075139,0.000000,0.521184,-0.075139,0.022980,0.518091,-0.078260,0.022980,0.509537,-0.092147,0.022980,0.458670,-0.092147,0.000000,0.456583,-0.078260,0.000000,0.511884,-0.034540,0.000000,0.442283
		,-0.050783,0.020048,0.520195,-0.050783,0.000000,0.523471,-0.034306,0.030020,0.445478,-0.032563,0.005807,0.863604,-0.033287,0.005807,0.623756,-0.030992,0.005807,0.553125,-0.008321,0.005807,0.555869
		,0.000000,0.005807,0.626499,-0.009065,0.005807,0.599481,0.000000,0.005807,0.866346,-0.010616,0.004006,0.626500,-0.028789,0.005572,1.289586,-0.009971,0.004006,0.866881,-0.006697,0.003969,1.292503
		,-0.031262,0.005807,0.568949,-0.008591,0.005807,0.571693,-0.010245,0.005807,0.620040,-0.031606,0.005807,0.589085,-0.008935,0.005807,0.591829,-0.050570,0.000000,0.543859,-0.031483,0.009970,0.545897
		,-0.032916,0.005807,0.617296,-0.050570,0.009970,0.543859,0.000000,0.005807,0.591828,-0.008812,0.009970,0.548641,-0.019851,0.021518,0.384342,-0.022538,0.000000,0.384342,-0.009597,0.030395,0.384342
		,-0.025240,0.034992,0.130699,-0.026987,0.035561,0.056556,-0.034931,0.000000,0.126496,-0.036679,0.000000,0.052354,0.019235,-0.021518,0.181499,0.000000,-0.033318,0.384342,0.000000,-0.036340,0.143849
		,0.025240,-0.034992,0.130699,0.000000,-0.042239,0.136578,0.040617,-0.043146,0.135220,0.000000,-0.036152,0.125542,0.033264,-0.040321,0.027786,0.000000,-0.036841,0.020047,0.029177,-0.036841,0.020407
		,0.033711,-0.034261,0.439874,0.000000,-0.044048,0.026836,0.039995,-0.043626,0.032339,0.000000,0.000000,0.006636,0.021596,-0.023505,0.387894,0.031736,-0.005807,0.596737,0.009597,-0.030813,0.387302
		,0.032671,-0.020048,0.528397,0.013938,-0.033094,0.435052,0.010000,-0.020048,0.531141,0.000000,-0.000000,1.781393,0.066797,-0.022980,0.446519,0.065408,-0.022980,0.523879,0.105546,-0.022980,0.457277
		,0.102680,-0.022980,0.509935,0.125672,-0.022980,0.456507,0.125304,-0.022980,0.510667,0.154138,-0.022980,0.451265,0.150432,-0.022980,0.516797,0.178835,-0.022980,0.445664,0.179333,-0.022980,0.521486
		,0.193630,-0.022980,0.448296,0.192953,-0.022980,0.520195,0.203856,-0.022980,0.462093,0.204416,-0.022980,0.505566,0.212069,-0.022980,0.473182,0.212596,-0.022980,0.492153,0.160516,-0.022980,0.513974
		,0.160915,-0.022980,0.455420,0.132241,-0.022980,0.458660,0.133921,-0.022980,0.509501,0.113276,-0.022980,0.507080,0.114679,-0.022980,0.457800,0.083382,-0.022980,0.458806,0.075139,-0.022980,0.518091
		,0.078260,-0.022980,0.509537,0.092147,-0.022980,0.458670,0.050783,-0.020048,0.520195,0.034306,-0.030020,0.445478,0.032563,-0.005807,0.863604,0.033287,-0.005807,0.623756,0.030992,-0.005807,0.553125
		,0.000000,-0.005572,1.292028,0.008321,-0.005807,0.555869,0.048390,0.000000,0.551234,0.009065,-0.005807,0.599481,0.047526,0.000000,0.597346,0.010616,-0.004006,0.626500,0.049434,0.000000,0.617043
		,0.028789,-0.005572,1.289586,0.009971,-0.004006,0.866881,0.048104,0.000000,0.859191,0.006697,-0.003969,1.292503,0.036028,-0.000000,1.286566,0.031262,-0.005807,0.568949,0.050219,0.000000,0.567965
		,0.008591,-0.005807,0.571693,0.010245,-0.005807,0.620040,0.053792,0.000000,0.611593,0.031606,-0.005807,0.589085,0.008935,-0.005807,0.591829,0.052340,0.000000,0.589684,0.031483,-0.009970,0.545897
		,0.000000,-0.005807,0.620039,0.032916,-0.005807,0.617296,0.050570,-0.009970,0.543859,0.000000,-0.005807,0.591828,0.000000,-0.009970,0.548640,0.008812,-0.009970,0.548641,0.019851,-0.021518,0.384342
		,0.009597,-0.030395,0.384342,0.026987,-0.035561,0.056556,0.000000,-0.036720,0.050051,0.019235,0.021518,0.181499,0.021923,0.000000,0.181499,0.000000,0.033318,0.180622,0.000000,0.035751,0.142822
		,0.028841,0.000000,0.143135,0.000000,0.036152,0.125542,0.000000,0.043074,0.137359,0.040617,0.043146,0.135220,0.041109,0.000000,0.135155,0.000000,0.035682,0.040650,0.037791,0.000000,0.036448
		,0.033264,0.040321,0.027786,0.044330,0.000000,0.027449,0.000000,0.036841,0.020047,0.000000,0.044048,0.026836,0.029177,0.036841,0.020407,0.029177,0.000000,0.020407,0.033711,0.034261,0.439874
		,0.042297,0.000000,0.031948,0.039995,0.043626,0.032339,0.021596,0.023505,0.387894,0.023831,0.000000,0.387894,0.000000,0.033318,0.387302,0.031736,0.005807,0.596737,0.009597,0.030813,0.387302
		,0.032671,0.020048,0.528397,0.033711,0.000000,0.436148,0.000000,0.033094,0.435052,0.013938,0.033094,0.435052,0.000000,0.005807,0.599479,0.000000,0.020048,0.531140,0.010000,0.020048,0.531141
		,0.066797,0.022980,0.446519,0.065408,0.022980,0.523879,0.066797,0.000000,0.443372,0.065408,0.000000,0.527476,0.105546,0.022980,0.457277,0.102680,0.022980,0.509935,0.105546,0.000000,0.455069
		,0.102680,0.000000,0.512317,0.125672,0.022980,0.456507,0.125304,0.022980,0.510667,0.125672,0.000000,0.454231,0.125304,0.000000,0.513112,0.154138,0.022980,0.451265,0.150432,0.022980,0.516797
		,0.154138,0.000000,0.448533,0.150432,0.000000,0.519776,0.178835,0.022980,0.445664,0.179333,0.022980,0.521486,0.178835,0.000000,0.442443,0.179333,0.000000,0.524875,0.193630,0.022980,0.448296
		,0.192953,0.022980,0.520195,0.193630,0.000000,0.445304,0.192953,0.000000,0.523471,0.203856,0.022980,0.462093,0.204416,0.022980,0.505566,0.203856,0.000000,0.462093,0.204416,0.000000,0.505566
		,0.212069,0.022980,0.473182,0.212596,0.022980,0.492153,0.212069,0.000000,0.472360,0.212596,0.000000,0.492985,0.160516,0.022980,0.513974,0.160516,0.000000,0.516708,0.160915,0.022980,0.455420
		,0.160915,0.000000,0.453049,0.132241,0.000000,0.456572,0.132241,0.022980,0.458660,0.133921,0.000000,0.511845,0.133921,0.022980,0.509501,0.113276,0.022980,0.507080,0.113276,0.000000,0.509212
		,0.114679,0.022980,0.457800,0.114679,0.000000,0.455637,0.083382,0.000000,0.456731,0.083382,0.022980,0.458806,0.075139,0.000000,0.521184,0.075139,0.022980,0.518091,0.078260,0.022980,0.509537
		,0.092147,0.022980,0.458670,0.092147,0.000000,0.456583,0.078260,0.000000,0.511884,0.034540,0.000000,0.442283,0.050783,0.020048,0.520195,0.050783,0.000000,0.523471,0.034306,0.030020,0.445478
		,0.032563,0.005807,0.863604,0.033287,0.005807,0.623756,0.030992,0.005807,0.553125,0.000000,0.005807,0.555868,0.000000,0.005572,1.292028,0.008321,0.005807,0.555869,0.009065,0.005807,0.599481
		,0.010616,0.004006,0.626500,0.028789,0.005572,1.289586,0.009971,0.004006,0.866881,0.006697,0.003969,1.292503,0.031262,0.005807,0.568949,0.008591,0.005807,0.571693,0.000000,0.005807,0.571691
		,0.010245,0.005807,0.620040,0.031606,0.005807,0.589085,0.008935,0.005807,0.591829,0.050570,0.000000,0.543859,0.031483,0.009970,0.545897,0.000000,0.005807,0.620039,0.032916,0.005807,0.617296
		,0.050570,0.009970,0.543859,0.000000,0.009970,0.548640,0.008812,0.009970,0.548641,0.019851,0.021518,0.384342,0.022538,0.000000,0.384342,0.000000,0.033318,0.384342,0.009597,0.030395,0.384342
		,0.025240,0.034992,0.130699,0.026987,0.035561,0.056556,0.000000,0.036720,0.050051,0.034931,0.000000,0.126496,0.036679,0.000000,0.052354
		PolygonVertexIndex: 185,85,4,-80,82,84,3,-189,91,87,5,-9,86,283,282,-89,87,89,6,-6,85,91,8,-5,79,4,-269,9,7,98,-95,12,15,7,-10,15,18,13,-8,14,17,18,-16,10,14,15,-13,155,104,20,-46
		,152,108,22,-44,46,19,103,-154,45,20,19,-47,142,112,24,-40,43,22,21,-45,44,21,107,-152,139,116,26,-39,39,24,23,-41,40,23,111,-145,134,120,28,-36,38,26,25,-38,37,25,115,-138,120,124,30,-29
		,35,28,27,-37,36,27,119,-137,30,32,31,-30,28,30,29,-28,27,29,123,-120,128,132,34,-33,29,31,127,-124,124,128,32,-31,33,34,132,-132,32,34,33,-32,31,33,131,-128,116,134,35,-27,26,35,36,-26
		,25,36,136,-116,112,139,38,-25,24,38,37,-24,23,37,137,-112,19,41,145,-104,42,43,44,-42,22,39,40,-22,21,40,144,-108,108,142,39,-23,104,147,42,-21,147,152,43,-43,20,42,41,-20,41,44,151,-146
		,7,46,153,-99,13,45,46,-8,73,49,52,-76,70,11,56,-73,76,51,49,-74,74,48,58,-70,71,54,11,-71,53,55,60,-58,57,60,47,-49,68,57,48,-75,60,62,59,-48,48,47,61,-59,47,59,63,-62
		,49,64,65,-53,50,67,66,-52,51,66,64,-50,66,71,70,-65,64,70,72,-66,54,68,74,-12,11,74,69,-57,18,76,73,-14,45,75,173,-156,13,73,75,-46,83,272,-276,179,180,94,-94,83,275,274,-183
		,80,82,-82,82,272,83,-85,84,184,2,-4,91,92,86,-88,0,77,180,-82,87,86,88,-90,93,94,98,-91,96,93,90,-100,80,81,180,-180,99,90,97,-101,155,154,102,-105,152,149,106,-109,156,153,103,-102
		,154,156,101,-103,142,141,110,-113,149,150,105,-107,150,151,107,-106,139,140,114,-117,141,143,109,-111,143,144,111,-110,134,133,118,-121,140,138,113,-115,138,137,115,-114,120,118,122,-125,133,135,117,-119,135,136,119,-118
		,122,121,125,-127,118,117,121,-123,117,119,123,-122,128,126,130,-133,121,123,127,-126,124,122,126,-129,129,131,132,-131,126,125,129,-131,125,127,131,-130,116,114,133,-135,114,113,135,-134,113,115,136,-136,112,110,140,-140
		,110,109,138,-141,109,111,137,-139,101,103,145,-147,148,146,150,-150,106,105,143,-142,105,107,144,-144,108,106,141,-143,104,102,148,-148,147,148,149,-153,102,101,146,-149,146,145,151,-151,90,98,153,-157,97,90,156,-155
		,178,174,159,-161,175,69,58,-159,172,171,95,-163,161,164,166,-164,158,58,61,-158,164,158,157,-167,170,175,158,-165,157,61,63,-166,166,157,165,-168,159,52,65,-169,174,176,52,-160,160,159,168,-170,176,173,-53
		,169,168,171,-173,171,72,56,-96,95,56,69,-176,162,95,175,-171,100,97,174,-179,154,155,173,-177,97,154,176,-175,77,9,94,-181,190,188,-4,77,0,1,-79,78,12,9,-78,82,0,-82,181,179,93,-97
		,84,83,182,-185,184,185,79,-3,182,274,387,-184,168,65,72,-172,75,52,-174,62,206,-60,59,206,-64,167,165,-207,165,63,-207,184,182,183,-186,1,0,-189,80,272,-83,188,0,-83
		,273,188,191,-278,287,198,193,-282,269,272,-272,280,284,282,-284,386,278,-388,281,193,195,-286,278,288,280,-284,200,290,295,-197,202,200,196,-205,204,196,203,-206,355,233,208,-305,352,231,210,-309,234,353,303,-208
		,233,234,207,-209,342,227,212,-313,231,232,209,-211,232,351,307,-210,339,226,214,-317,227,228,211,-213,228,344,311,-212,334,223,216,-321,226,225,213,-215,225,337,315,-214,320,216,218,-325,223,224,215,-217,224,336,319,-216
		,218,217,219,-221,216,215,217,-219,215,319,323,-218,328,220,222,-333,217,323,327,-220,324,218,220,-329,221,331,332,-223,220,219,221,-223,219,327,331,-222,316,214,223,-335,214,213,224,-224,213,315,336,-225,312,212,226,-340
		,212,211,225,-227,211,311,337,-226,207,303,345,-230,230,229,232,-232,210,209,228,-228,209,307,344,-229,308,210,227,-343,304,208,230,-348,347,230,231,-353,208,207,229,-231,229,345,351,-233,196,295,353,-235,203,196,234,-234
		,258,261,240,-238,255,257,242,-202,264,258,237,-240,260,254,244,-237,256,255,201,-242,263,50,51,-77,243,236,235,-247,253,260,236,-244,278,283,86,-93,246,235,245,-249,236,244,247,-236,235,247,249,-246,237,240,251,-251
		,239,237,250,-253,252,250,255,-257,250,251,257,-256,241,201,260,-254,201,242,254,-261,205,203,258,-265,233,355,374,-262,203,233,261,-259,276,275,-273,383,291,293,-385,381,289,290,-383,276,385,274,-276,269,270,-274
		,389,279,278,-387,273,277,276,-273,277,191,189,-389,287,281,280,-289,186,270,382,-266,281,285,284,-281,279,287,288,-279,289,286,295,-291,293,297,286,-290,269,381,382,-271,297,300,294,-287,296,299,300,-298,291,296,297,-294
		,379,360,362,-381,355,304,302,-355,352,308,306,-350,356,301,303,-354,354,302,301,-357,342,312,310,-342,349,306,305,-351,350,305,307,-352,339,316,314,-341,341,310,309,-344,343,309,311,-345,334,320,318,-334,340,314,313,-339
		,338,313,315,-338,320,324,322,-319,333,318,317,-336,335,317,319,-337,322,326,325,-322,318,322,321,-318,317,321,323,-320,328,332,330,-327,321,325,327,-324,324,328,326,-323,329,330,332,-332,326,330,329,-326,325,329,331,-328
		,316,334,333,-315,314,333,335,-314,313,335,336,-316,312,339,340,-311,310,340,338,-310,309,338,337,-312,301,346,345,-304,348,349,350,-347,306,341,343,-306,305,343,344,-308,308,342,341,-307,304,347,348,-303,347,352,349,-349
		,302,348,346,-302,346,350,351,-346,286,356,353,-296,294,354,356,-287,380,362,359,-376,377,358,244,-255,373,363,292,-373,183,387,-279,358,357,247,-245,364,366,357,-359,371,364,358,-378,80,271,-273,357,365,249,-248
		,366,367,365,-358,359,368,251,-241,375,359,240,-379,360,370,369,-363,362,369,368,-360,378,240,-375,369,373,372,-369,372,292,242,-258,292,377,254,-243,363,371,377,-293,298,376,371,-364,300,380,375,-295,354,378,374,-356
		,299,379,380,-301,294,375,378,-355,265,382,290,-201,190,191,-189,271,384,381,-270,266,265,200,-203,273,270,-187,384,293,289,-382,271,383,-385,277,388,385,-277,388,189,267,-390,385,386,387,-275,189,192,268,-268
		,191,190,192,-190,368,372,257,-252,261,374,-241,248,245,-207,238,248,-207,245,249,-207,367,206,-366,361,206,-368,365,206,-250,388,389,386,-386,269,273,-273,273,186,-189,285,195,-200
		,195,194,-200,285,199,-285,284,199,-283,193,197,194,-196,55,246,248,-239,163,361,367,-367,262,16,54,-72,259,53,57,-69,67,262,71,-67,16,259,68,-55,17,263,76,-19,383,181,96,-292,1,187,-79
		,185,183,278,-86,85,278,92,-92,296,99,100,-300,291,96,99,-297,379,178,160,-361,177,172,162,-299,376,170,164,-162,360,160,169,-371,370,169,172,-178,298,162,170,-377,299,100,178,-380,187,10,12,-79,271,80,179,-182
		,271,181,-384,2,79,268,-193,3,2,192,-191,89,199,-7,6,199,-195,89,88,-200,88,282,-200,5,6,194,-198,5,197,4,-9,389,267,4,-280,279,4,198,-288,267,268,-5,14,204,205,-18
		,10,202,204,-15,263,264,239,-51,262,256,241,-17,259,253,243,-54,50,239,252,-68,67,252,256,-263,16,241,253,-260,17,205,264,-264,1,266,-188,177,298,363,-374,376,161,364,-372,370,177,373,-370,187,266,202,-11
		,1,186,265,-267,1,188,-187,193,198,4,-198,53,243,246,-56,161,163,366,-365,55,238,62,-61,163,166,167,-362,238,206,-63,361,167,-207
		Edges: 
		GeometryVersion: 124
		LayerElementNormal: 0 {
			Version: 101
			Name: ""
			MappingInformationType: "ByVertice"
			ReferenceInformationType: "Direct"
			Normals: -0.839808344841003,-0.542741179466248,0.011780144646764,0.000000000000000,-0.999237060546875,0.038544878363609
			 ,-0.434308916330338,-0.679555654525757,-0.591204583644867,-0.758079767227173,-0.641010761260986,0.119846187531948
			 ,0.000000000000000,-0.975127398967743,0.221503347158432,-0.486739695072174,-0.765800952911377,-0.420209348201752
			 ,-0.312814712524414,-0.413129061460495,-0.855220198631287,-0.600451648235321,-0.797387599945068,-0.059938352555037
			 ,-0.699484229087830,-0.518295824527740,0.491988897323608,-0.755577266216278,-0.562059402465820,-0.336374998092651
			 ,0.000000000000000,-0.998840272426605,-0.048036135733128,-0.148228406906128,-0.988891243934631,0.008911404758692
			 ,-0.289651185274124,-0.942014813423157,-0.169316694140434,-0.087679676711559,-0.942869365215302,0.321359902620316
			 ,0.000000000000000,-0.998504579067230,0.054475538432598,-0.083040863275528,-0.996490359306335,0.009796441532671
			 ,0.000000000000000,-1.000000000000000,0.000000000000000,0.000000000000000,-0.946440041065216,0.322824805974960
			 ,-0.009216589853168,-0.943021953105927,0.332590728998184,-0.281411170959473,-0.668355345726013,-0.688497543334961
			 ,-0.148960843682289,-0.693563640117645,0.704794466495514,0.016785180196166,-0.722800374031067,-0.690816998481750
			 ,-0.090762048959732,-0.712912380695343,0.695333719253540,-0.075289160013199,-0.696829140186310,-0.713217556476593
			 ,0.058473464101553,-0.699911475181580,0.711783170700073,-0.088625751435757,-0.664204835891724,-0.742240667343140
			 ,0.055604726076126,-0.683400988578796,0.727896988391876,0.124301888048649,-0.686880111694336,-0.716025292873383
			 ,0.106631673872471,-0.707907319068909,0.698171913623810,-0.420972317457199,-0.667287230491638,-0.614398658275604
			 ,-0.388012319803238,-0.666676819324493,0.636341452598572,-0.567491710186005,-0.715536952018738,-0.407300025224686
			 ,-0.591723382472992,-0.703115940093994,0.394268631935120,-0.719260215759277,-0.648182630538940,-0.249946594238281
			 ,-0.733542919158936,-0.650715649127960,0.195989862084389,0.030518509447575,-0.823297858238220,0.566759228706360
			 ,-0.012787255458534,-0.866328954696655,-0.499252289533615,0.002502517774701,-0.814569532871246,-0.580004274845123
			 ,0.084475234150887,-0.806054890155792,0.585741758346558,0.008026367984712,-0.803766012191772,0.594836294651031
			 ,0.020233772695065,-0.759056389331818,-0.650654613971710,-0.179815053939819,-0.814416944980621,-0.551652550697327
			 ,-0.589953303337097,-0.669362485408783,0.451490819454193,-0.261757254600525,-0.881649196147919,0.392590105533600
			 ,0.041077911853790,-0.748252809047699,-0.662129580974579,-0.221686452627182,-0.872829377651215,0.434736162424088
			 ,-0.566728711128235,-0.789574861526489,-0.235267192125320,-0.169652387499809,-0.985473215579987,0.002746665850282
			 ,-0.151951655745506,-0.986541330814362,0.060029909014702,-0.149296551942825,-0.934598803520203,0.322824805974960
			 ,0.000000000000000,-0.966032922267914,0.258308649063110,-0.014007995836437,-0.968199729919434,0.249671921133995
			 ,-0.780755043029785,0.000000000000000,0.624805450439453,0.000000000000000,-0.997650086879730,0.068453013896942
			 ,0.000000000000000,-1.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875,0.000640888698399
			 ,-0.998596131801605,0.000000000000000,0.052400279790163,-0.036835841834545,-0.997131288051605,0.065736867487431
			 ,-0.975249469280243,0.000000000000000,0.221045568585396,-0.258796960115433,-0.965758204460144,0.018127994611859
			 ,-0.054780725389719,-0.998474061489105,0.000183111056685,-0.999908447265625,0.000000000000000,0.011322367005050
			 ,-0.072054199874401,-0.997375428676605,0.005035554058850,-0.999023377895355,0.000000000000000,0.043946653604507
			 ,-0.147343367338181,-0.989013314247131,-0.009094515815377,-0.998077332973480,0.000000000000000,-0.061555832624435
			 ,0.000000000000000,-1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000,0.000000000000000
			 ,-0.016266364604235,-0.997283875942230,0.071382790803909,-0.999725341796875,0.000000000000000,-0.023010956123471
			 ,-0.146488845348358,-0.989043831825256,0.018158514052629,0.000000000000000,-1.000000000000000,0.000000000000000
			 ,-0.994933903217316,0.000000000000000,0.100344859063625,-0.109469890594482,-0.829645693302155,0.547379970550537
			 ,-0.154576256871223,-0.986602365970612,0.051881466060877,-0.706534028053284,-0.558488726615906,0.434583574533463
			 ,-0.030304878950119,-0.865260779857635,0.500381469726562,-0.847621083259583,-0.469130516052246,-0.247749254107475
			 ,-0.437726974487305,-0.889400899410248,-0.131504252552986,-0.632831811904907,-0.747337281703949,-0.202337712049484
			 ,-0.838862240314484,0.544206082820892,0.009491256438196,-0.996093630790710,0.000000000000000,0.088198490440845
			 ,-0.691976666450500,0.005462813191116,0.721854329109192,-0.757164239883423,0.640552997589111,0.127750486135483
			 ,-0.993621647357941,0.003936887718737,0.112430185079575,-0.759697258472443,0.000000000000000,0.650257885456085
			 ,-0.486739695072174,0.765800952911377,-0.420209348201752,-0.749168395996094,0.000000000000000,-0.662343204021454
			 ,-0.312814712524414,0.413129061460495,-0.855220198631287,-0.510299980640411,0.000000000000000,-0.859981060028076
			 ,-0.600451648235321,0.797387599945068,-0.059938352555037,-0.934629380702972,0.000000000000000,0.355571150779724
			 ,-0.699484229087830,0.518295824527740,0.491988897323608,-0.755577266216278,0.562059402465820,-0.336374998092651
			 ,-0.948087990283966,0.000000000000000,-0.317972362041473,-0.148228406906128,0.988891243934631,0.008911404758692
			 ,-0.289651185274124,0.942014813423157,-0.169316694140434,-0.087679676711559,0.942869365215302,0.321359902620316
			 ,-0.985259532928467,0.000000000000000,-0.170995205640793,-0.083040863275528,0.996490359306335,0.009796441532671
			 ,-0.009216589853168,0.943021953105927,0.332590728998184,-0.281411170959473,0.668355345726013,-0.688497543334961
			 ,-0.148960843682289,0.693563640117645,0.704794466495514,-0.336527615785599,0.000000000000000,-0.941648602485657
			 ,-0.135929435491562,0.000000000000000,0.990691840648651,0.016785180196166,0.722800374031067,-0.690816998481750
			 ,-0.090762048959732,0.712912380695343,0.695333719253540,0.024079103022814,0.000000000000000,-0.999694824218750
			 ,-0.126987516880035,0.000000000000000,0.991882085800171,-0.075289160013199,0.696829140186310,-0.713217556476593
			 ,0.058473464101553,0.699911475181580,0.711783170700073,-0.102084413170815,0.000000000000000,-0.994750797748566
			 ,0.079470202326775,0.000000000000000,0.996826052665710,-0.088625751435757,0.664204835891724,-0.742240667343140
			 ,0.055604726076126,0.683400988578796,0.727896988391876,-0.110995821654797,0.000000000000000,-0.993804752826691
			 ,0.071932129561901,0.000000000000000,0.997405946254730,0.124301888048649,0.686880111694336,-0.716025292873383
			 ,0.106631673872471,0.707907319068909,0.698171913623810,0.161107212305069,0.000000000000000,-0.986907541751862
			 ,0.144352555274963,0.000000000000000,0.989501655101776,-0.420972317457199,0.667287230491638,-0.614398658275604
			 ,-0.388012319803238,0.666676819324493,0.636341452598572,-0.535874485969543,0.000000000000000,-0.844264030456543
			 ,-0.487990975379944,0.000000000000000,0.872829377651215,-0.567491710186005,0.715536952018738,-0.407300025224686
			 ,-0.591723382472992,0.703115940093994,0.394268631935120,-0.812402725219727,0.000000000000000,-0.583086669445038
			 ,-0.832148194313049,0.000000000000000,0.554490804672241,-0.719260215759277,0.648182630538940,-0.249946594238281
			 ,-0.733542919158936,0.650715649127960,0.195989862084389,-0.940153181552887,0.000000000000000,-0.340739160776138
			 ,-0.962675869464874,0.000000000000000,0.270546585321426,0.030518509447575,0.823297858238220,0.566759228706360
			 ,0.056550797075033,0.000000000000000,0.998382508754730,-0.012787255458534,0.866328954696655,-0.499252289533615
			 ,-0.027405621483922,0.000000000000000,-0.999603271484375,0.004516739398241,0.000000000000000,-0.999969482421875
			 ,0.002502517774701,0.814569532871246,-0.580004274845123,0.148014768958092,0.000000000000000,0.988982796669006
			 ,0.084475234150887,0.806054890155792,0.585741758346558,0.008026367984712,0.803766012191772,0.594836294651031
			 ,0.013977477326989,0.000000000000000,0.999877929687500,0.020233772695065,0.759056389331818,-0.650654613971710
			 ,0.031403545290232,0.000000000000000,-0.999481201171875,-0.321207314729691,0.000000000000000,-0.946989357471466
			 ,-0.179815053939819,0.814416944980621,-0.551652550697327,-0.766502857208252,0.000000000000000,0.642201006412506
			 ,-0.589953303337097,0.669362485408783,0.451490819454193,-0.261757254600525,0.881649196147919,0.392590105533600
			 ,0.041077911853790,0.748252809047699,-0.662129580974579,0.062227241694927,0.000000000000000,-0.998046815395355
			 ,-0.590319514274597,0.000000000000000,0.807153522968292,-0.703207492828369,0.000000000000000,-0.710959196090698
			 ,-0.221686452627182,0.872829377651215,0.434736162424088,-0.643055498600006,0.000000000000000,0.765770435333252
			 ,-0.566728711128235,0.789574861526489,-0.235267192125320,-0.169652387499809,0.985473215579987,0.002746665850282
			 ,-0.151951655745506,0.986541330814362,0.060029909014702,-0.149296551942825,0.934598803520203,0.322824805974960
			 ,-0.014007995836437,0.968199729919434,0.249671921133995,0.000000000000000,0.997650086879730,0.068453013896942
			 ,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875,0.000640888698399
			 ,-0.036835841834545,0.997131288051605,0.065736867487431,-0.258796960115433,0.965758204460144,0.018127994611859
			 ,-0.054780725389719,0.998474061489105,0.000183111056685,-0.072054199874401,0.997375428676605,0.005035554058850
			 ,-0.147343367338181,0.989013314247131,-0.009094515815377,0.000000000000000,1.000000000000000,0.000000000000000
			 ,-0.016266364604235,0.997283875942230,0.071382790803909,-0.146488845348358,0.989043831825256,0.018158514052629
			 ,0.000000000000000,1.000000000000000,0.000000000000000,-0.988952279090881,0.000000000000000,0.148136839270592
			 ,-0.109469890594482,0.829645693302155,0.547379970550537,-0.154576256871223,0.986602365970612,0.051881466060877
			 ,-0.706534028053284,0.558488726615906,0.434583574533463,0.000000000000000,1.000000000000000,0.000000000000000
			 ,-0.030304878950119,0.865260779857635,0.500381469726562,-0.847621083259583,0.469130516052246,-0.247749254107475
			 ,-0.975981950759888,0.000000000000000,-0.217749565839767,-0.437726974487305,0.889400899410248,-0.131504252552986
			 ,-0.434675127267838,0.678517997264862,-0.592120110988617,-0.632831811904907,0.747337281703949,-0.202337712049484
			 ,-0.870509982109070,0.000000000000000,-0.492080450057983,-0.943876445293427,0.000000000000000,-0.330210268497467
			 ,0.839808344841003,-0.542741179466248,0.011780144646764,0.000000000000000,-0.999359130859375,-0.035340435802937
			 ,0.000000000000000,-0.786980807781219,0.616962194442749,0.434308916330338,-0.679555654525757,-0.591204583644867
			 ,0.000000000000000,-0.999572753906250,-0.028595842421055,0.758079767227173,-0.641010761260986,0.119846187531948
			 ,0.000000000000000,-0.943937480449677,-0.330057680606842,0.486739695072174,-0.765800952911377,-0.420209348201752
			 ,0.000000000000000,-0.587908565998077,-0.808893084526062,0.312814712524414,-0.413129061460495,-0.855220198631287
			 ,0.600451648235321,-0.797387599945068,-0.059938352555037,0.000000000000000,-0.981261610984802,-0.192571789026260
			 ,0.699484229087830,-0.518295824527740,0.491988897323608,0.000000000000000,0.000000000000000,-0.999969482421875
			 ,0.755577266216278,-0.562059402465820,-0.336374998092651,0.148228406906128,-0.988891243934631,0.008911404758692
			 ,0.289651185274124,-0.942014813423157,-0.169316694140434,0.087679676711559,-0.942869365215302,0.321359902620316
			 ,0.083040863275528,-0.996490359306335,0.009796441532671,0.009216589853168,-0.943021953105927,0.332590728998184
			 ,0.000000000000000,-0.000488296151161,0.999969482421875,0.281411170959473,-0.668355345726013,-0.688497543334961
			 ,0.148960843682289,-0.693563640117645,0.704794466495514,-0.016785180196166,-0.722800374031067,-0.690816998481750
			 ,0.090762048959732,-0.712912380695343,0.695333719253540,0.075289160013199,-0.696829140186310,-0.713217556476593
			 ,-0.058473464101553,-0.699911475181580,0.711783170700073,0.088625751435757,-0.664204835891724,-0.742240667343140
			 ,-0.055604726076126,-0.683400988578796,0.727896988391876,-0.124301888048649,-0.686880111694336,-0.716025292873383
			 ,-0.106631673872471,-0.707907319068909,0.698171913623810,0.420972317457199,-0.667287230491638,-0.614398658275604
			 ,0.388012319803238,-0.666676819324493,0.636341452598572,0.567491710186005,-0.715536952018738,-0.407300025224686
			 ,0.591723382472992,-0.703115940093994,0.394268631935120,0.719260215759277,-0.648182630538940,-0.249946594238281
			 ,0.733542919158936,-0.650715649127960,0.195989862084389,-0.030518509447575,-0.823297858238220,0.566759228706360
			 ,0.012787255458534,-0.866328954696655,-0.499252289533615,-0.002502517774701,-0.814569532871246,-0.580004274845123
			 ,-0.084475234150887,-0.806054890155792,0.585741758346558,-0.008026367984712,-0.803766012191772,0.594836294651031
			 ,-0.020233772695065,-0.759056389331818,-0.650654613971710,0.179815053939819,-0.814416944980621,-0.551652550697327
			 ,0.589953303337097,-0.669362485408783,0.451490819454193,0.261757254600525,-0.881649196147919,0.392590105533600
			 ,-0.041077911853790,-0.748252809047699,-0.662129580974579,0.221686452627182,-0.872829377651215,0.434736162424088
			 ,0.566728711128235,-0.789574861526489,-0.235267192125320,0.169652387499809,-0.985473215579987,0.002746665850282
			 ,0.151951655745506,-0.986541330814362,0.060029909014702,0.149296551942825,-0.934598803520203,0.322824805974960
			 ,0.000000000000000,-0.999969482421875,0.005981627851725,0.014007995836437,-0.968199729919434,0.249671921133995
			 ,0.780755043029785,0.000000000000000,0.624805450439453,0.000000000000000,-1.000000000000000,0.000000000000000
			 ,0.998596131801605,0.000000000000000,0.052400279790163,0.036835841834545,-0.997131288051605,0.065736867487431
			 ,0.975249469280243,0.000000000000000,0.221045568585396,0.258796960115433,-0.965758204460144,0.018127994611859
			 ,0.054780725389719,-0.998474061489105,0.000183111056685,0.999908447265625,0.000000000000000,0.011322367005050
			 ,0.072054199874401,-0.997375428676605,0.005035554058850,0.999023377895355,0.000000000000000,0.043946653604507
			 ,0.147343367338181,-0.989013314247131,-0.009094515815377,0.998077332973480,0.000000000000000,-0.061555832624435
			 ,0.000000000000000,-1.000000000000000,0.000000000000000,0.016266364604235,-0.997283875942230,0.071382790803909
			 ,0.999725341796875,0.000000000000000,-0.023010956123471,0.146488845348358,-0.989043831825256,0.018158514052629
			 ,0.000000000000000,-1.000000000000000,0.000000000000000,0.994933903217316,0.000000000000000,0.100344859063625
			 ,0.109469890594482,-0.829645693302155,0.547379970550537,0.000000000000000,-0.997680604457855,0.067812129855156
			 ,0.154576256871223,-0.986602365970612,0.051881466060877,0.706534028053284,-0.558488726615906,0.434583574533463
			 ,0.000000000000000,-1.000000000000000,0.000000000000000,0.000000000000000,-0.866542577743530,0.499038666486740
			 ,0.030304878950119,-0.865260779857635,0.500381469726562,0.847621083259583,-0.469130516052246,-0.247749254107475
			 ,0.437726974487305,-0.889400899410248,-0.131504252552986,0.632831811904907,-0.747337281703949,-0.202337712049484
			 ,0.000000000000000,-0.998199403285980,-0.059694204479456,0.838862240314484,0.544206082820892,0.009491256438196
			 ,0.996093630790710,0.000000000000000,0.088198490440845,0.000000000000000,0.999572753906250,0.029053620994091
			 ,0.000000000000000,0.710013151168823,0.704153597354889,0.691976666450500,0.005462813191116,0.721854329109192
			 ,0.000000000000000,0.943327128887177,-0.331766724586487,0.000000000000000,0.994415104389191,0.105319373309612
			 ,0.757164239883423,0.640552997589111,0.127750486135483,0.993621647357941,0.003936887718737,0.112430185079575
			 ,0.000000000000000,0.975127398967743,0.221503347158432,0.759697258472443,0.000000000000000,0.650257885456085
			 ,0.486739695072174,0.765800952911377,-0.420209348201752,0.749168395996094,0.000000000000000,-0.662343204021454
			 ,0.000000000000000,0.587908565998077,-0.808893084526062,0.000000000000000,0.981261610984802,-0.192571789026260
			 ,0.312814712524414,0.413129061460495,-0.855220198631287,0.510299980640411,0.000000000000000,-0.859981060028076
			 ,0.600451648235321,0.797387599945068,-0.059938352555037,0.934629380702972,0.000000000000000,0.355571150779724
			 ,0.699484229087830,0.518295824527740,0.491988897323608,0.755577266216278,0.562059402465820,-0.336374998092651
			 ,0.948087990283966,0.000000000000000,-0.317972362041473,0.000000000000000,0.998840272426605,-0.048036135733128
			 ,0.148228406906128,0.988891243934631,0.008911404758692,0.289651185274124,0.942014813423157,-0.169316694140434
			 ,0.087679676711559,0.942869365215302,0.321359902620316,0.985259532928467,0.000000000000000,-0.170995205640793
			 ,0.000000000000000,0.998504579067230,0.054475538432598,0.083040863275528,0.996490359306335,0.009796441532671
			 ,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.946440041065216,0.322824805974960
			 ,0.009216589853168,0.943021953105927,0.332590728998184,0.281411170959473,0.668355345726013,-0.688497543334961
			 ,0.148960843682289,0.693563640117645,0.704794466495514,0.336527615785599,0.000000000000000,-0.941648602485657
			 ,0.135929435491562,0.000000000000000,0.990691840648651,-0.016785180196166,0.722800374031067,-0.690816998481750
			 ,0.090762048959732,0.712912380695343,0.695333719253540,-0.024079103022814,0.000000000000000,-0.999694824218750
			 ,0.126987516880035,0.000000000000000,0.991882085800171,0.075289160013199,0.696829140186310,-0.713217556476593
			 ,-0.058473464101553,0.699911475181580,0.711783170700073,0.102084413170815,0.000000000000000,-0.994750797748566
			 ,-0.079470202326775,0.000000000000000,0.996826052665710,0.088625751435757,0.664204835891724,-0.742240667343140
			 ,-0.055604726076126,0.683400988578796,0.727896988391876,0.110995821654797,0.000000000000000,-0.993804752826691
			 ,-0.071932129561901,0.000000000000000,0.997405946254730,-0.124301888048649,0.686880111694336,-0.716025292873383
			 ,-0.106631673872471,0.707907319068909,0.698171913623810,-0.161107212305069,0.000000000000000,-0.986907541751862
			 ,-0.144352555274963,0.000000000000000,0.989501655101776,0.420972317457199,0.667287230491638,-0.614398658275604
			 ,0.388012319803238,0.666676819324493,0.636341452598572,0.535874485969543,0.000000000000000,-0.844264030456543
			 ,0.487990975379944,0.000000000000000,0.872829377651215,0.567491710186005,0.715536952018738,-0.407300025224686
			 ,0.591723382472992,0.703115940093994,0.394268631935120,0.812402725219727,0.000000000000000,-0.583086669445038
			 ,0.832148194313049,0.000000000000000,0.554490804672241,0.719260215759277,0.648182630538940,-0.249946594238281
			 ,0.733542919158936,0.650715649127960,0.195989862084389,0.940153181552887,0.000000000000000,-0.340739160776138
			 ,0.962675869464874,0.000000000000000,0.270546585321426,-0.030518509447575,0.823297858238220,0.566759228706360
			 ,-0.056550797075033,0.000000000000000,0.998382508754730,0.012787255458534,0.866328954696655,-0.499252289533615
			 ,0.027405621483922,0.000000000000000,-0.999603271484375,-0.004516739398241,0.000000000000000,-0.999969482421875
			 ,-0.002502517774701,0.814569532871246,-0.580004274845123,-0.148014768958092,0.000000000000000,0.988982796669006
			 ,-0.084475234150887,0.806054890155792,0.585741758346558,-0.008026367984712,0.803766012191772,0.594836294651031
			 ,-0.013977477326989,0.000000000000000,0.999877929687500,-0.020233772695065,0.759056389331818,-0.650654613971710
			 ,-0.031403545290232,0.000000000000000,-0.999481201171875,0.321207314729691,0.000000000000000,-0.946989357471466
			 ,0.179815053939819,0.814416944980621,-0.551652550697327,0.766502857208252,0.000000000000000,0.642201006412506
			 ,0.589953303337097,0.669362485408783,0.451490819454193,0.261757254600525,0.881649196147919,0.392590105533600
			 ,-0.041077911853790,0.748252809047699,-0.662129580974579,-0.062227241694927,0.000000000000000,-0.998046815395355
			 ,0.590319514274597,0.000000000000000,0.807153522968292,0.703207492828369,0.000000000000000,-0.710959196090698
			 ,0.221686452627182,0.872829377651215,0.434736162424088,0.643055498600006,0.000000000000000,0.765770435333252
			 ,0.566728711128235,0.789574861526489,-0.235267192125320,0.169652387499809,0.985473215579987,0.002746665850282
			 ,0.151951655745506,0.986541330814362,0.060029909014702,0.149296551942825,0.934598803520203,0.322824805974960
			 ,0.000000000000000,0.966032922267914,0.258308649063110,0.000000000000000,0.999969482421875,0.005981627851725
			 ,0.014007995836437,0.968199729919434,0.249671921133995,0.000000000000000,1.000000000000000,0.000000000000000
			 ,0.036835841834545,0.997131288051605,0.065736867487431,0.258796960115433,0.965758204460144,0.018127994611859
			 ,0.054780725389719,0.998474061489105,0.000183111056685,0.072054199874401,0.997375428676605,0.005035554058850
			 ,0.147343367338181,0.989013314247131,-0.009094515815377,0.000000000000000,1.000000000000000,0.000000000000000
			 ,0.000000000000000,1.000000000000000,0.000000000000000,0.016266364604235,0.997283875942230,0.071382790803909
			 ,0.146488845348358,0.989043831825256,0.018158514052629,0.000000000000000,1.000000000000000,0.000000000000000
			 ,0.988952279090881,0.000000000000000,0.148136839270592,0.109469890594482,0.829645693302155,0.547379970550537
			 ,0.000000000000000,0.997680604457855,0.067812129855156,0.154576256871223,0.986602365970612,0.051881466060877
			 ,0.706534028053284,0.558488726615906,0.434583574533463,0.000000000000000,0.866542577743530,0.499038666486740
			 ,0.030304878950119,0.865260779857635,0.500381469726562,0.847621083259583,0.469130516052246,-0.247749254107475
			 ,0.975981950759888,0.000000000000000,-0.217749565839767,0.000000000000000,0.999359130859375,-0.035340435802937
			 ,0.437726974487305,0.889400899410248,-0.131504252552986,0.434675127267838,0.678517997264862,-0.592120110988617
			 ,0.632831811904907,0.747337281703949,-0.202337712049484,0.000000000000000,0.998199403285980,-0.059694204479456
			 ,0.870509982109070,0.000000000000000,-0.492080450057983,0.943876445293427,0.000000000000000,-0.330210268497467
		}
		LayerElementSmoothing: 0 {
			Version: 102
			Name: ""
			MappingInformationType: "ByPolygon"
			ReferenceInformationType: "Direct"
			Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
		}
		LayerElementUV: 0 {
			Version: 101
			Name: "UVMap"
			MappingInformationType: "ByPolygonVertex"
			ReferenceInformationType: "IndexToDirect"
			UV: 0.450631,0.122055,0.450010,0.113179,0.471099,0.115524,0.456039,0.124400,0.455005,0.172715,0.448159,0.168262,0.448433,0.168298
			 ,0.471099,0.173114,0.447496,0.110668,0.446361,0.108158,0.452537,0.108345,0.448780,0.110887,0.452537,0.108345,0.471099,0.107815
			 ,0.471099,0.104027,0.454817,0.104228,0.446361,0.108158,0.454817,0.104228,0.454817,0.104228,0.452537,0.108345,0.450010,0.113179
			 ,0.447496,0.110668,0.448780,0.110887,0.471099,0.115524,0.456039,0.124400,0.471099,0.115524,0.471099,0.120770,0.459048,0.289728
			 ,0.457879,0.318735,0.457879,0.316656,0.457801,0.289728,0.465744,0.289397,0.468914,0.316044,0.457879,0.318735,0.459048,0.289728
			 ,0.468914,0.316044,0.471111,0.369666,0.458460,0.368135,0.457879,0.318735,0.476692,0.316044,0.476692,0.369665,0.471111,0.369666
			 ,0.468914,0.316044,0.471099,0.289397,0.476692,0.316044,0.468914,0.316044,0.465744,0.289397,0.448353,0.365385,0.440191,0.367621
			 ,0.440191,0.365613,0.448353,0.363557,0.433019,0.358919,0.419392,0.359161,0.419392,0.357832,0.433019,0.357610,0.457547,0.321862
			 ,0.439416,0.322443,0.439416,0.320687,0.457417,0.320079,0.448353,0.363557,0.440191,0.365613,0.439416,0.322443,0.457547,0.321862
			 ,0.413479,0.357429,0.406767,0.359605,0.406767,0.358240,0.413479,0.356238,0.433019,0.357610,0.419392,0.357832,0.417792,0.328447
			 ,0.425269,0.329224,0.425269,0.329224,0.417792,0.328447,0.417792,0.327214,0.425269,0.328059,0.401958,0.358898,0.392744,0.363324
			 ,0.392744,0.361661,0.401958,0.357590,0.413479,0.356238,0.406767,0.358240,0.406561,0.328016,0.412696,0.328738,0.412696,0.328738
			 ,0.406561,0.328016,0.406561,0.326746,0.412696,0.327531,0.387117,0.361611,0.376616,0.366169,0.376616,0.364278,0.387117,0.360086
			 ,0.401958,0.357590,0.392744,0.361661,0.390676,0.325092,0.402896,0.329218,0.402896,0.329218,0.390676,0.325092,0.390676,0.323567
			 ,0.402896,0.328053,0.376616,0.366169,0.369015,0.365385,0.369015,0.363557,0.376616,0.364278,0.387117,0.360086,0.376616,0.364278
			 ,0.376894,0.321966,0.386894,0.327410,0.386894,0.327410,0.376894,0.321966,0.376894,0.320168,0.386894,0.326087,0.369015,0.363557
			 ,0.362619,0.355394,0.362931,0.331134,0.368638,0.323434,0.376616,0.364278,0.369015,0.363557,0.368638,0.323434,0.376894,0.321966
			 ,0.376894,0.321966,0.368638,0.323434,0.368638,0.321765,0.376894,0.320168,0.362619,0.355394,0.358054,0.348373,0.358054,0.347909
			 ,0.362619,0.355394,0.368638,0.323434,0.362931,0.331134,0.362931,0.331134,0.368638,0.321765,0.369015,0.365385,0.362619,0.355394
			 ,0.362619,0.355394,0.369015,0.363557,0.358348,0.337322,0.358054,0.347909,0.358054,0.348373,0.358348,0.336863,0.362619,0.355394
			 ,0.358054,0.347909,0.358348,0.337322,0.362931,0.331134,0.362931,0.331134,0.358348,0.337322,0.358348,0.336863,0.362931,0.331134
			 ,0.392744,0.363324,0.387117,0.361611,0.387117,0.360086,0.392744,0.361661,0.392744,0.361661,0.387117,0.360086,0.386894,0.327410
			 ,0.390676,0.325092,0.390676,0.325092,0.386894,0.327410,0.386894,0.326087,0.390676,0.323567,0.406767,0.359605,0.401958,0.358898
			 ,0.401958,0.357590,0.406767,0.358240,0.406767,0.358240,0.401958,0.357590,0.402896,0.329218,0.406561,0.328016,0.406561,0.328016
			 ,0.402896,0.329218,0.402896,0.328053,0.406561,0.326746,0.439416,0.322443,0.430161,0.329300,0.430161,0.328142,0.439416,0.320687
			 ,0.434761,0.362383,0.433019,0.357610,0.425269,0.329224,0.430161,0.329300,0.419392,0.357832,0.413479,0.356238,0.412696,0.328738
			 ,0.417792,0.328447,0.417792,0.328447,0.412696,0.328738,0.412696,0.327531,0.417792,0.327214,0.419392,0.359161,0.413479,0.357429
			 ,0.413479,0.356238,0.419392,0.357832,0.440191,0.367621,0.434761,0.364109,0.434761,0.362383,0.440191,0.365613,0.434761,0.364109
			 ,0.433019,0.358919,0.433019,0.357610,0.434761,0.362383,0.440191,0.365613,0.434761,0.362383,0.430161,0.329300,0.439416,0.322443
			 ,0.430161,0.329300,0.425269,0.329224,0.425269,0.328059,0.430161,0.328142,0.457879,0.318735,0.457547,0.321862,0.457417,0.320079
			 ,0.457879,0.316656,0.458460,0.368135,0.448353,0.363557,0.457547,0.321862,0.457879,0.318735,0.459123,0.377900,0.459397,0.381934
			 ,0.449688,0.380879,0.448471,0.376763,0.459054,0.402001,0.458981,0.406271,0.450170,0.406611,0.447484,0.402335,0.471774,0.379431
			 ,0.472048,0.383465,0.459397,0.381934,0.459123,0.377900,0.458323,0.417744,0.458116,0.421349,0.449105,0.417603,0.446674,0.414562
			 ,0.471706,0.403532,0.471633,0.407802,0.458981,0.406271,0.459054,0.402001,0.476692,0.422879,0.470191,0.523197,0.464625,0.523041
			 ,0.470768,0.422880,0.470768,0.422880,0.464625,0.523041,0.452137,0.520851,0.458116,0.421349,0.470974,0.419275,0.470768,0.422880
			 ,0.458116,0.421349,0.458323,0.417744,0.464625,0.523041,0.454225,0.697397,0.440500,0.695124,0.452137,0.520851,0.458116,0.421349
			 ,0.452137,0.520851,0.443606,0.518462,0.449105,0.417603,0.452137,0.520851,0.440500,0.695124,0.436066,0.693430,0.443606,0.518462
			 ,0.459397,0.381934,0.459246,0.390764,0.448667,0.390215,0.449688,0.380879,0.476692,0.383464,0.476692,0.392294,0.471897,0.392295
			 ,0.472048,0.383465,0.472048,0.383465,0.471897,0.392295,0.459246,0.390764,0.459397,0.381934,0.471897,0.392295,0.471706,0.403532
			 ,0.459054,0.402001,0.459246,0.390764,0.459246,0.390764,0.459054,0.402001,0.447484,0.402335,0.448667,0.390215,0.471633,0.407802
			 ,0.470974,0.419275,0.458323,0.417744,0.458981,0.406271,0.458981,0.406271,0.458323,0.417744,0.446674,0.414562,0.450170,0.406611
			 ,0.471111,0.369666,0.471774,0.379431,0.459123,0.377900,0.458460,0.368135,0.448353,0.363557,0.448471,0.376763,0.448471,0.376763
			 ,0.448353,0.365385,0.458460,0.368135,0.459123,0.377900,0.448471,0.376763,0.448353,0.363557,0.448433,0.168298,0.471099,0.172541
			 ,0.471099,0.169492,0.460021,0.287746,0.458522,0.287746,0.457801,0.289728,0.459048,0.289728,0.448433,0.168298,0.471099,0.169492
			 ,0.471099,0.162897,0.457014,0.165775,0.460365,0.194124,0.455005,0.172715,0.458865,0.194124,0.455005,0.172715,0.471099,0.172541
			 ,0.448433,0.168298,0.448159,0.168262,0.448159,0.168262,0.451606,0.163430,0.457014,0.165775,0.448433,0.168298,0.447496,0.110668
			 ,0.448780,0.110887,0.452537,0.108345,0.446361,0.108158,0.460365,0.194124,0.460021,0.287746,0.458522,0.287746,0.458865,0.194124
			 ,0.446361,0.108158,0.452537,0.108345,0.454817,0.104228,0.454817,0.104228,0.459048,0.289728,0.457801,0.289728,0.457879,0.316656
			 ,0.457879,0.318735,0.465744,0.289397,0.459048,0.289728,0.457879,0.318735,0.468914,0.316044,0.460365,0.194124,0.458865,0.194124
			 ,0.458522,0.287746,0.460021,0.287746,0.468914,0.316044,0.457879,0.318735,0.458460,0.368135,0.471111,0.369666,0.448353,0.365385
			 ,0.448353,0.363557,0.440191,0.365613,0.440191,0.367621,0.433019,0.358919,0.433019,0.357610,0.419392,0.357832,0.419392,0.359161
			 ,0.457547,0.321862,0.457417,0.320079,0.439416,0.320687,0.439416,0.322443,0.448353,0.363557,0.457547,0.321862,0.439416,0.322443
			 ,0.440191,0.365613,0.413479,0.357429,0.413479,0.356238,0.406767,0.358240,0.406767,0.359605,0.433019,0.357610,0.425269,0.329224
			 ,0.417792,0.328447,0.419392,0.357832,0.425269,0.329224,0.425269,0.328059,0.417792,0.327214,0.417792,0.328447,0.401958,0.358898
			 ,0.401958,0.357590,0.392744,0.361661,0.392744,0.363324,0.413479,0.356238,0.412696,0.328738,0.406561,0.328016,0.406767,0.358240
			 ,0.412696,0.328738,0.412696,0.327531,0.406561,0.326746,0.406561,0.328016,0.387117,0.361611,0.387117,0.360086,0.376616,0.364278
			 ,0.376616,0.366169,0.401958,0.357590,0.402896,0.329218,0.390676,0.325092,0.392744,0.361661,0.402896,0.329218,0.402896,0.328053
			 ,0.390676,0.323567,0.390676,0.325092,0.376616,0.366169,0.376616,0.364278,0.369015,0.363557,0.369015,0.365385,0.387117,0.360086
			 ,0.386894,0.327410,0.376894,0.321966,0.376616,0.364278,0.386894,0.327410,0.386894,0.326087,0.376894,0.320168,0.376894,0.321966
			 ,0.369015,0.363557,0.368638,0.323434,0.362931,0.331134,0.362619,0.355394,0.376616,0.364278,0.376894,0.321966,0.368638,0.323434
			 ,0.369015,0.363557,0.376894,0.321966,0.376894,0.320168,0.368638,0.321765,0.368638,0.323434,0.362619,0.355394,0.362619,0.355394
			 ,0.358054,0.347909,0.358054,0.348373,0.368638,0.323434,0.368638,0.321765,0.362931,0.331134,0.362931,0.331134,0.369015,0.365385
			 ,0.369015,0.363557,0.362619,0.355394,0.362619,0.355394,0.358348,0.337322,0.358348,0.336863,0.358054,0.348373,0.358054,0.347909
			 ,0.362619,0.355394,0.362931,0.331134,0.358348,0.337322,0.358054,0.347909,0.362931,0.331134,0.362931,0.331134,0.358348,0.336863
			 ,0.358348,0.337322,0.392744,0.363324,0.392744,0.361661,0.387117,0.360086,0.387117,0.361611,0.392744,0.361661,0.390676,0.325092
			 ,0.386894,0.327410,0.387117,0.360086,0.390676,0.325092,0.390676,0.323567,0.386894,0.326087,0.386894,0.327410,0.406767,0.359605
			 ,0.406767,0.358240,0.401958,0.357590,0.401958,0.358898,0.406767,0.358240,0.406561,0.328016,0.402896,0.329218,0.401958,0.357590
			 ,0.406561,0.328016,0.406561,0.326746,0.402896,0.328053,0.402896,0.329218,0.439416,0.322443,0.439416,0.320687,0.430161,0.328142
			 ,0.430161,0.329300,0.434761,0.362383,0.430161,0.329300,0.425269,0.329224,0.433019,0.357610,0.419392,0.357832,0.417792,0.328447
			 ,0.412696,0.328738,0.413479,0.356238,0.417792,0.328447,0.417792,0.327214,0.412696,0.327531,0.412696,0.328738,0.419392,0.359161
			 ,0.419392,0.357832,0.413479,0.356238,0.413479,0.357429,0.440191,0.367621,0.440191,0.365613,0.434761,0.362383,0.434761,0.364109
			 ,0.434761,0.364109,0.434761,0.362383,0.433019,0.357610,0.433019,0.358919,0.440191,0.365613,0.439416,0.322443,0.430161,0.329300
			 ,0.434761,0.362383,0.430161,0.329300,0.430161,0.328142,0.425269,0.328059,0.425269,0.329224,0.457879,0.318735,0.457879,0.316656
			 ,0.457417,0.320079,0.457547,0.321862,0.458460,0.368135,0.457879,0.318735,0.457547,0.321862,0.448353,0.363557,0.471774,0.379431
			 ,0.459123,0.377900,0.459397,0.381934,0.472048,0.383465,0.458323,0.417744,0.446674,0.414562,0.449105,0.417603,0.458116,0.421349
			 ,0.471706,0.403532,0.459054,0.402001,0.458981,0.406271,0.471633,0.407802,0.476692,0.422879,0.470768,0.422880,0.464625,0.523041
			 ,0.470191,0.523197,0.458116,0.421349,0.449105,0.417603,0.443606,0.518462,0.452137,0.520851,0.470768,0.422880,0.458116,0.421349
			 ,0.452137,0.520851,0.464625,0.523041,0.470974,0.419275,0.458323,0.417744,0.458116,0.421349,0.470768,0.422880,0.452137,0.520851
			 ,0.443606,0.518462,0.436066,0.693430,0.440500,0.695124,0.464625,0.523041,0.452137,0.520851,0.440500,0.695124,0.454225,0.697397
			 ,0.459397,0.381934,0.449688,0.380879,0.448667,0.390215,0.459246,0.390764,0.459123,0.377900,0.448471,0.376763,0.449688,0.380879
			 ,0.459397,0.381934,0.472048,0.383465,0.459397,0.381934,0.459246,0.390764,0.471897,0.392295,0.448471,0.376763,0.448471,0.376763
			 ,0.449688,0.380879,0.471897,0.392295,0.459246,0.390764,0.459054,0.402001,0.471706,0.403532,0.459054,0.402001,0.447484,0.402335
			 ,0.450170,0.406611,0.458981,0.406271,0.458981,0.406271,0.450170,0.406611,0.446674,0.414562,0.458323,0.417744,0.471633,0.407802
			 ,0.458981,0.406271,0.458323,0.417744,0.470974,0.419275,0.471111,0.369666,0.458460,0.368135,0.459123,0.377900,0.471774,0.379431
			 ,0.448353,0.363557,0.448353,0.365385,0.448471,0.376763,0.448471,0.376763,0.458460,0.368135,0.448353,0.363557,0.448471,0.376763
			 ,0.459123,0.377900,0.460021,0.287746,0.459048,0.289728,0.457801,0.289728,0.458522,0.287746,0.471099,0.169056,0.471099,0.173114
			 ,0.448433,0.168298,0.460021,0.287746,0.460365,0.194124,0.471099,0.193635,0.465744,0.287746,0.465744,0.287746,0.465744,0.289397
			 ,0.459048,0.289728,0.460021,0.287746,0.455005,0.172715,0.460365,0.194124,0.458865,0.194124,0.465744,0.287746,0.460021,0.287746
			 ,0.459048,0.289728,0.465744,0.289397,0.448159,0.168262,0.448433,0.168298,0.457014,0.165775,0.451606,0.163430,0.451606,0.163430
			 ,0.450631,0.122055,0.456039,0.124400,0.457014,0.165775,0.457014,0.165775,0.471099,0.162897,0.471099,0.120770,0.456039,0.124400
			 ,0.459246,0.390764,0.448667,0.390215,0.447484,0.402335,0.459054,0.402001,0.448471,0.376763,0.449688,0.380879,0.448471,0.376763
			 ,0.454225,0.697397,0.444916,0.897626,0.440500,0.695124,0.440500,0.695124,0.444916,0.897626,0.436066,0.693430,0.454225,0.697397
			 ,0.440500,0.695124,0.444916,0.897626,0.440500,0.695124,0.436066,0.693430,0.444916,0.897626,0.451606,0.163430,0.457014,0.165775
			 ,0.456039,0.124400,0.450631,0.122055,0.471099,0.193635,0.460365,0.194124,0.471099,0.173114,0.460365,0.194124,0.471099,0.172541
			 ,0.455005,0.172715,0.471099,0.173114,0.460365,0.194124,0.455005,0.172715,0.487194,0.172715,0.471099,0.173114,0.493765,0.168298
			 ,0.494040,0.168262,0.494703,0.110668,0.493418,0.110887,0.489662,0.108345,0.495837,0.108158,0.481833,0.194124,0.471099,0.172541
			 ,0.471099,0.193635,0.489662,0.108345,0.487381,0.104228,0.471099,0.104027,0.471099,0.107815,0.486159,0.124400,0.471099,0.115524
			 ,0.471099,0.120770,0.495837,0.108158,0.489662,0.108345,0.487381,0.104228,0.487381,0.104228,0.471099,0.115524,0.493418,0.110887
			 ,0.489662,0.108345,0.471099,0.107815,0.483151,0.289728,0.484398,0.289728,0.495504,0.316656,0.495504,0.318735,0.476455,0.289397
			 ,0.483151,0.289728,0.495504,0.318735,0.484470,0.316044,0.484470,0.316044,0.495504,0.318735,0.494924,0.368135,0.482272,0.369666
			 ,0.505031,0.365385,0.505031,0.363557,0.513192,0.365613,0.513192,0.367621,0.520364,0.358919,0.520364,0.357610,0.533992,0.357832
			 ,0.533992,0.359161,0.495836,0.321862,0.495967,0.320079,0.513967,0.320687,0.513967,0.322443,0.505031,0.363557,0.495836,0.321862
			 ,0.513967,0.322443,0.513192,0.365613,0.539904,0.357429,0.539904,0.356238,0.546617,0.358240,0.546617,0.359605,0.520364,0.357610
			 ,0.528114,0.329224,0.535591,0.328447,0.533992,0.357832,0.528114,0.329224,0.528114,0.328059,0.535591,0.327214,0.535591,0.328447
			 ,0.551426,0.358898,0.551426,0.357590,0.560639,0.361661,0.560639,0.363324,0.539904,0.356238,0.540688,0.328738,0.546822,0.328016
			 ,0.546617,0.358240,0.540688,0.328738,0.540688,0.327531,0.546822,0.326746,0.546822,0.328016,0.566267,0.361611,0.566267,0.360086
			 ,0.576767,0.364278,0.576767,0.366169,0.551426,0.357590,0.550488,0.329218,0.562707,0.325092,0.560639,0.361661,0.550488,0.329218
			 ,0.550488,0.328053,0.562707,0.323567,0.562707,0.325092,0.576767,0.366169,0.576767,0.364278,0.584368,0.363557,0.584368,0.365385
			 ,0.566267,0.360086,0.566489,0.327410,0.576489,0.321966,0.576767,0.364278,0.566489,0.327410,0.566489,0.326087,0.576489,0.320168
			 ,0.576489,0.321966,0.584368,0.363557,0.584745,0.323434,0.590452,0.331134,0.590764,0.355394,0.576767,0.364278,0.576489,0.321966
			 ,0.584745,0.323434,0.584368,0.363557,0.576489,0.321966,0.576489,0.320168,0.584745,0.321765,0.584745,0.323434,0.590764,0.355394
			 ,0.590764,0.355394,0.595329,0.347909,0.595329,0.348373,0.584745,0.323434,0.584745,0.321765,0.590452,0.331134,0.590452,0.331134
			 ,0.584368,0.365385,0.584368,0.363557,0.590764,0.355394,0.590764,0.355394,0.595035,0.337322,0.595035,0.336863,0.595329,0.348373
			 ,0.595329,0.347909,0.590764,0.355394,0.590452,0.331134,0.595035,0.337322,0.595329,0.347909,0.590452,0.331134,0.590452,0.331134
			 ,0.595035,0.336863,0.595035,0.337322,0.560639,0.363324,0.560639,0.361661,0.566267,0.360086,0.566267,0.361611,0.560639,0.361661
			 ,0.562707,0.325092,0.566489,0.327410,0.566267,0.360086,0.562707,0.325092,0.562707,0.323567,0.566489,0.326087,0.566489,0.327410
			 ,0.546617,0.359605,0.546617,0.358240,0.551426,0.357590,0.551426,0.358898,0.546617,0.358240,0.546822,0.328016,0.550488,0.329218
			 ,0.551426,0.357590,0.546822,0.328016,0.546822,0.326746,0.550488,0.328053,0.550488,0.329218,0.513967,0.322443,0.513967,0.320687
			 ,0.523222,0.328142,0.523222,0.329300,0.518622,0.362383,0.523222,0.329300,0.528114,0.329224,0.520364,0.357610,0.533992,0.357832
			 ,0.535591,0.328447,0.540688,0.328738,0.539904,0.356238,0.535591,0.328447,0.535591,0.327214,0.540688,0.327531,0.540688,0.328738
			 ,0.533992,0.359161,0.533992,0.357832,0.539904,0.356238,0.539904,0.357429,0.513192,0.367621,0.513192,0.365613,0.518622,0.362383
			 ,0.518622,0.364109,0.518622,0.364109,0.518622,0.362383,0.520364,0.357610,0.520364,0.358919,0.513192,0.365613,0.513967,0.322443
			 ,0.523222,0.329300,0.518622,0.362383,0.523222,0.329300,0.523222,0.328142,0.528114,0.328059,0.528114,0.329224,0.495504,0.318735
			 ,0.495504,0.316656,0.495967,0.320079,0.495836,0.321862,0.494924,0.368135,0.495504,0.318735,0.495836,0.321862,0.505031,0.363557
			 ,0.494261,0.377900,0.504912,0.376763,0.503695,0.380879,0.493987,0.381934,0.494329,0.402001,0.505899,0.402335,0.503213,0.406611
			 ,0.494402,0.406271,0.481609,0.379431,0.494261,0.377900,0.493987,0.381934,0.481335,0.383465,0.495060,0.417744,0.506710,0.414562
			 ,0.504278,0.417603,0.495267,0.421349,0.481678,0.403532,0.494329,0.402001,0.494402,0.406271,0.481751,0.407802,0.476692,0.379431
			 ,0.476692,0.383464,0.472048,0.383465,0.471774,0.379431,0.482616,0.422880,0.495267,0.421349,0.488398,0.523299,0.475728,0.523791
			 ,0.482409,0.419275,0.495060,0.417744,0.495267,0.421349,0.482616,0.422880,0.471099,0.115524,0.471099,0.107815,0.452537,0.108345
			 ,0.448780,0.110887,0.475728,0.523791,0.488398,0.523299,0.476507,0.697554,0.462601,0.697963,0.495267,0.421349,0.504278,0.417603
			 ,0.497172,0.522077,0.488398,0.523299,0.488398,0.523299,0.497172,0.522077,0.481128,0.696472,0.476507,0.697554,0.493987,0.381934
			 ,0.503695,0.380879,0.504716,0.390215,0.494137,0.390764,0.481335,0.383465,0.493987,0.381934,0.494137,0.390764,0.481486,0.392295
			 ,0.481486,0.392295,0.494137,0.390764,0.494329,0.402001,0.481678,0.403532,0.494137,0.390764,0.504716,0.390215,0.505899,0.402335
			 ,0.494329,0.402001,0.481751,0.407802,0.494402,0.406271,0.495060,0.417744,0.482409,0.419275,0.494402,0.406271,0.503213,0.406611
			 ,0.506710,0.414562,0.495060,0.417744,0.482272,0.369666,0.494924,0.368135,0.494261,0.377900,0.481609,0.379431,0.505031,0.363557
			 ,0.505031,0.365385,0.504912,0.376763,0.504912,0.376763,0.494924,0.368135,0.505031,0.363557,0.504912,0.376763,0.494261,0.377900
			 ,0.493765,0.168298,0.471099,0.169492,0.471099,0.172541,0.471099,0.287746,0.471099,0.289397,0.476455,0.289397,0.476455,0.287746
			 ,0.482177,0.287746,0.483151,0.289728,0.484398,0.289728,0.483677,0.287746,0.493765,0.168298,0.485184,0.165775,0.471099,0.162897
			 ,0.471099,0.169492,0.481833,0.194124,0.483333,0.194124,0.487194,0.172715,0.491567,0.122055,0.492188,0.113179,0.471099,0.115524
			 ,0.486159,0.124400,0.487194,0.172715,0.494040,0.168262,0.493765,0.168298,0.471099,0.172541,0.494040,0.168262,0.493765,0.168298
			 ,0.485184,0.165775,0.490593,0.163430,0.494703,0.110668,0.495837,0.108158,0.489662,0.108345,0.493418,0.110887,0.481833,0.194124
			 ,0.483333,0.194124,0.483677,0.287746,0.482177,0.287746,0.495837,0.108158,0.487381,0.104228,0.487381,0.104228,0.489662,0.108345
			 ,0.492188,0.113179,0.494703,0.110668,0.493418,0.110887,0.471099,0.115524,0.483151,0.289728,0.495504,0.318735,0.495504,0.316656
			 ,0.484398,0.289728,0.476455,0.289397,0.484470,0.316044,0.495504,0.318735,0.483151,0.289728,0.481833,0.194124,0.482177,0.287746
			 ,0.483677,0.287746,0.483333,0.194124,0.484470,0.316044,0.482272,0.369666,0.494924,0.368135,0.495504,0.318735,0.476692,0.316044
			 ,0.476692,0.369665,0.482272,0.369666,0.484470,0.316044,0.471099,0.289397,0.476692,0.316044,0.484470,0.316044,0.476455,0.289397
			 ,0.476692,0.379431,0.476692,0.383464,0.481335,0.383465,0.481609,0.379431,0.505031,0.365385,0.513192,0.367621,0.513192,0.365613
			 ,0.505031,0.363557,0.520364,0.358919,0.533992,0.359161,0.533992,0.357832,0.520364,0.357610,0.495836,0.321862,0.513967,0.322443
			 ,0.513967,0.320687,0.495967,0.320079,0.505031,0.363557,0.513192,0.365613,0.513967,0.322443,0.495836,0.321862,0.539904,0.357429
			 ,0.546617,0.359605,0.546617,0.358240,0.539904,0.356238,0.520364,0.357610,0.533992,0.357832,0.535591,0.328447,0.528114,0.329224
			 ,0.528114,0.329224,0.535591,0.328447,0.535591,0.327214,0.528114,0.328059,0.551426,0.358898,0.560639,0.363324,0.560639,0.361661
			 ,0.551426,0.357590,0.539904,0.356238,0.546617,0.358240,0.546822,0.328016,0.540688,0.328738,0.540688,0.328738,0.546822,0.328016
			 ,0.546822,0.326746,0.540688,0.327531,0.566267,0.361611,0.576767,0.366169,0.576767,0.364278,0.566267,0.360086,0.551426,0.357590
			 ,0.560639,0.361661,0.562707,0.325092,0.550488,0.329218,0.550488,0.329218,0.562707,0.325092,0.562707,0.323567,0.550488,0.328053
			 ,0.576767,0.366169,0.584368,0.365385,0.584368,0.363557,0.576767,0.364278,0.566267,0.360086,0.576767,0.364278,0.576489,0.321966
			 ,0.566489,0.327410,0.566489,0.327410,0.576489,0.321966,0.576489,0.320168,0.566489,0.326087,0.584368,0.363557,0.590764,0.355394
			 ,0.590452,0.331134,0.584745,0.323434,0.576767,0.364278,0.584368,0.363557,0.584745,0.323434,0.576489,0.321966,0.576489,0.321966
			 ,0.584745,0.323434,0.584745,0.321765,0.576489,0.320168,0.590764,0.355394,0.595329,0.348373,0.595329,0.347909,0.590764,0.355394
			 ,0.584745,0.323434,0.590452,0.331134,0.590452,0.331134,0.584745,0.321765,0.584368,0.365385,0.590764,0.355394,0.590764,0.355394
			 ,0.584368,0.363557,0.595035,0.337322,0.595329,0.347909,0.595329,0.348373,0.595035,0.336863,0.590764,0.355394,0.595329,0.347909
			 ,0.595035,0.337322,0.590452,0.331134,0.590452,0.331134,0.595035,0.337322,0.595035,0.336863,0.590452,0.331134,0.560639,0.363324
			 ,0.566267,0.361611,0.566267,0.360086,0.560639,0.361661,0.560639,0.361661,0.566267,0.360086,0.566489,0.327410,0.562707,0.325092
			 ,0.562707,0.325092,0.566489,0.327410,0.566489,0.326087,0.562707,0.323567,0.546617,0.359605,0.551426,0.358898,0.551426,0.357590
			 ,0.546617,0.358240,0.546617,0.358240,0.551426,0.357590,0.550488,0.329218,0.546822,0.328016,0.546822,0.328016,0.550488,0.329218
			 ,0.550488,0.328053,0.546822,0.326746,0.513967,0.322443,0.523222,0.329300,0.523222,0.328142,0.513967,0.320687,0.518622,0.362383
			 ,0.520364,0.357610,0.528114,0.329224,0.523222,0.329300,0.533992,0.357832,0.539904,0.356238,0.540688,0.328738,0.535591,0.328447
			 ,0.535591,0.328447,0.540688,0.328738,0.540688,0.327531,0.535591,0.327214,0.533992,0.359161,0.539904,0.357429,0.539904,0.356238
			 ,0.533992,0.357832,0.513192,0.367621,0.518622,0.364109,0.518622,0.362383,0.513192,0.365613,0.518622,0.364109,0.520364,0.358919
			 ,0.520364,0.357610,0.518622,0.362383,0.513192,0.365613,0.518622,0.362383,0.523222,0.329300,0.513967,0.322443,0.523222,0.329300
			 ,0.528114,0.329224,0.528114,0.328059,0.523222,0.328142,0.495504,0.318735,0.495836,0.321862,0.495967,0.320079,0.495504,0.316656
			 ,0.494924,0.368135,0.505031,0.363557,0.495836,0.321862,0.495504,0.318735,0.481609,0.379431,0.481335,0.383465,0.493987,0.381934
			 ,0.494261,0.377900,0.495060,0.417744,0.495267,0.421349,0.504278,0.417603,0.506710,0.414562,0.481678,0.403532,0.481751,0.407802
			 ,0.494402,0.406271,0.494329,0.402001,0.456039,0.124400,0.471099,0.120770,0.471099,0.115524,0.495267,0.421349,0.488398,0.523299
			 ,0.497172,0.522077,0.504278,0.417603,0.482616,0.422880,0.475728,0.523791,0.488398,0.523299,0.495267,0.421349,0.482409,0.419275
			 ,0.482616,0.422880,0.495267,0.421349,0.495060,0.417744,0.460365,0.194124,0.471099,0.193635,0.471099,0.172541,0.488398,0.523299
			 ,0.476507,0.697554,0.481128,0.696472,0.497172,0.522077,0.475728,0.523791,0.462601,0.697963,0.476507,0.697554,0.488398,0.523299
			 ,0.493987,0.381934,0.494137,0.390764,0.504716,0.390215,0.503695,0.380879,0.494261,0.377900,0.493987,0.381934,0.503695,0.380879
			 ,0.504912,0.376763,0.476692,0.383464,0.476692,0.392294,0.481486,0.392295,0.481335,0.383465,0.481335,0.383465,0.481486,0.392295
			 ,0.494137,0.390764,0.493987,0.381934,0.504912,0.376763,0.503695,0.380879,0.504912,0.376763,0.481486,0.392295,0.481678,0.403532
			 ,0.494329,0.402001,0.494137,0.390764,0.494329,0.402001,0.494402,0.406271,0.503213,0.406611,0.505899,0.402335,0.494402,0.406271
			 ,0.495060,0.417744,0.506710,0.414562,0.503213,0.406611,0.481751,0.407802,0.482409,0.419275,0.495060,0.417744,0.494402,0.406271
			 ,0.476692,0.407801,0.476692,0.419274,0.482409,0.419275,0.481751,0.407802,0.482272,0.369666,0.481609,0.379431,0.494261,0.377900
			 ,0.494924,0.368135,0.505031,0.363557,0.504912,0.376763,0.504912,0.376763,0.505031,0.365385,0.476692,0.369665,0.476692,0.379431
			 ,0.481609,0.379431,0.482272,0.369666,0.494924,0.368135,0.494261,0.377900,0.504912,0.376763,0.505031,0.363557,0.482177,0.287746
			 ,0.483677,0.287746,0.484398,0.289728,0.483151,0.289728,0.471099,0.169056,0.493765,0.168298,0.471099,0.173114,0.471099,0.193635
			 ,0.476455,0.287746,0.482177,0.287746,0.481833,0.194124,0.476455,0.287746,0.482177,0.287746,0.483151,0.289728,0.476455,0.289397
			 ,0.487194,0.172715,0.483333,0.194124,0.481833,0.194124,0.476455,0.287746,0.476455,0.289397,0.483151,0.289728,0.482177,0.287746
			 ,0.471099,0.193635,0.471099,0.287746,0.476455,0.287746,0.494040,0.168262,0.490593,0.163430,0.485184,0.165775,0.493765,0.168298
			 ,0.490593,0.163430,0.485184,0.165775,0.486159,0.124400,0.491567,0.122055,0.485184,0.165775,0.486159,0.124400,0.471099,0.120770
			 ,0.471099,0.162897,0.485184,0.165775,0.471099,0.162897,0.471099,0.120770,0.486159,0.124400,0.493765,0.168298,0.471099,0.169056
			 ,0.471099,0.162897,0.485184,0.165775,0.494137,0.390764,0.494329,0.402001,0.505899,0.402335,0.504716,0.390215,0.504912,0.376763
			 ,0.504912,0.376763,0.503695,0.380879,0.462601,0.697963,0.476507,0.697554,0.444916,0.897626,0.458523,0.697468,0.462601,0.697963
			 ,0.444916,0.897626,0.476507,0.697554,0.481128,0.696472,0.444916,0.897626,0.462601,0.697963,0.444916,0.897626,0.476507,0.697554
			 ,0.458523,0.697468,0.444916,0.897626,0.462601,0.697963,0.476507,0.697554,0.444916,0.897626,0.481128,0.696472,0.490593,0.163430
			 ,0.491567,0.122055,0.486159,0.124400,0.485184,0.165775,0.481833,0.194124,0.487194,0.172715,0.471099,0.172541,0.487194,0.172715
			 ,0.481833,0.194124,0.471099,0.173114,0.487381,0.104228,0.487381,0.104228,0.471099,0.096543,0.487381,0.104228,0.471099,0.104027
			 ,0.471099,0.096543,0.487381,0.104228,0.471099,0.096543,0.487381,0.104228,0.487381,0.104228,0.471099,0.096543,0.471099,0.104027
			 ,0.489662,0.108345,0.471099,0.107815,0.471099,0.104027,0.487381,0.104228,0.470191,0.523197,0.475728,0.523791,0.462601,0.697963
			 ,0.458523,0.697468,0.470191,0.523197,0.458523,0.697468,0.462601,0.697963,0.475728,0.523791,0.476692,0.403531,0.476692,0.407801
			 ,0.471633,0.407802,0.471706,0.403532,0.476692,0.419274,0.476692,0.422879,0.470768,0.422880,0.470974,0.419275,0.476692,0.392294
			 ,0.476692,0.403531,0.471706,0.403532,0.471897,0.392295,0.476692,0.407801,0.476692,0.419274,0.470974,0.419275,0.471633,0.407802
			 ,0.476692,0.369665,0.476692,0.379431,0.471774,0.379431,0.471111,0.369666,0.471099,0.287746,0.465744,0.287746,0.465744,0.289397
			 ,0.471099,0.289397,0.471099,0.193635,0.471099,0.287746,0.465744,0.287746,0.450631,0.122055,0.456039,0.124400,0.471099,0.115524
			 ,0.450010,0.113179,0.450010,0.113179,0.471099,0.115524,0.448780,0.110887,0.447496,0.110668,0.476692,0.316044,0.468914,0.316044
			 ,0.471111,0.369666,0.476692,0.369665,0.471099,0.289397,0.465744,0.289397,0.468914,0.316044,0.476692,0.316044,0.476692,0.379431
			 ,0.471774,0.379431,0.472048,0.383465,0.476692,0.383464,0.476692,0.403531,0.471706,0.403532,0.471633,0.407802,0.476692,0.407801
			 ,0.476692,0.419274,0.470974,0.419275,0.470768,0.422880,0.476692,0.422879,0.476692,0.383464,0.472048,0.383465,0.471897,0.392295
			 ,0.476692,0.392294,0.476692,0.392294,0.471897,0.392295,0.471706,0.403532,0.476692,0.403531,0.476692,0.407801,0.471633,0.407802
			 ,0.470974,0.419275,0.476692,0.419274,0.476692,0.369665,0.471111,0.369666,0.471774,0.379431,0.476692,0.379431,0.471099,0.287746
			 ,0.471099,0.289397,0.465744,0.289397,0.465744,0.287746,0.471099,0.193635,0.460365,0.194124,0.460021,0.287746,0.465744,0.287746
			 ,0.471099,0.193635,0.465744,0.287746,0.471099,0.287746,0.457014,0.165775,0.456039,0.124400,0.471099,0.120770,0.471099,0.162897
			 ,0.448433,0.168298,0.457014,0.165775,0.471099,0.162897,0.471099,0.169056,0.454817,0.104228,0.471099,0.096543,0.454817,0.104228
			 ,0.454817,0.104228,0.471099,0.096543,0.471099,0.104027,0.454817,0.104228,0.454817,0.104228,0.471099,0.096543,0.454817,0.104228
			 ,0.471099,0.104027,0.471099,0.096543,0.452537,0.108345,0.454817,0.104228,0.471099,0.104027,0.471099,0.107815,0.452537,0.108345
			 ,0.471099,0.107815,0.471099,0.115524,0.448780,0.110887,0.491567,0.122055,0.486159,0.124400,0.471099,0.115524,0.492188,0.113179
			 ,0.492188,0.113179,0.471099,0.115524,0.493418,0.110887,0.494703,0.110668,0.486159,0.124400,0.471099,0.120770,0.471099,0.115524
			 ,0.476692,0.316044,0.484470,0.316044,0.482272,0.369666,0.476692,0.369665,0.471099,0.289397,0.476455,0.289397,0.484470,0.316044
			 ,0.476692,0.316044,0.476692,0.379431,0.481609,0.379431,0.481335,0.383465,0.476692,0.383464,0.476692,0.403531,0.481678,0.403532
			 ,0.481751,0.407802,0.476692,0.407801,0.476692,0.419274,0.482409,0.419275,0.482616,0.422880,0.476692,0.422879,0.476692,0.383464
			 ,0.481335,0.383465,0.481486,0.392295,0.476692,0.392294,0.476692,0.392294,0.481486,0.392295,0.481678,0.403532,0.476692,0.403531
			 ,0.476692,0.407801,0.481751,0.407802,0.482409,0.419275,0.476692,0.419274,0.476692,0.369665,0.482272,0.369666,0.481609,0.379431
			 ,0.476692,0.379431,0.471099,0.193635,0.476455,0.287746,0.471099,0.287746,0.476692,0.403531,0.476692,0.407801,0.481751,0.407802
			 ,0.481678,0.403532,0.476692,0.419274,0.476692,0.422879,0.482616,0.422880,0.482409,0.419275,0.476692,0.392294,0.476692,0.403531
			 ,0.481678,0.403532,0.481486,0.392295,0.471099,0.287746,0.476455,0.287746,0.476455,0.289397,0.471099,0.289397,0.471099,0.193635
			 ,0.481833,0.194124,0.482177,0.287746,0.476455,0.287746,0.471099,0.193635,0.471099,0.173114,0.481833,0.194124,0.489662,0.108345
			 ,0.493418,0.110887,0.471099,0.115524,0.471099,0.107815,0.476692,0.422879,0.482616,0.422880,0.475728,0.523791,0.470191,0.523197
			 ,0.476692,0.422879,0.470191,0.523197,0.475728,0.523791,0.482616,0.422880,0.470191,0.523197,0.458332,0.697455,0.454225,0.697397
			 ,0.464625,0.523041,0.470191,0.523197,0.464625,0.523041,0.454225,0.697397,0.458332,0.697455,0.458332,0.697455,0.444916,0.897626
			 ,0.454225,0.697397,0.458332,0.697455,0.454225,0.697397,0.444916,0.897626
			UVIndex: 0,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
		}
		LayerElementTexture: 0 {
			Version: 101
			Name: ""
			MappingInformationType: "NoMappingInformation"
			ReferenceInformationType: "IndexToDirect"
			BlendMode: "Translucent"
			TextureAlpha: 1
			TextureId: 
		}
		LayerElementMaterial: 0 {
			Version: 101
			Name: ""
			MappingInformationType: "AllSame"
			ReferenceInformationType: "IndexToDirect"
			Materials: 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: "Model::Producer Perspective", "Camera" {
		Version: 232
		Properties60:  {
			Property: "QuaternionInterpolate", "bool", "",0
			Property: "Visibility", "Visibility", "A+",1
			Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,71.299999999999997,287.500000000000000
			Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
			Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
			Property: "RotationOffset", "Vector3D", "",0,0,0
			Property: "RotationPivot", "Vector3D", "",0,0,0
			Property: "ScalingOffset", "Vector3D", "",0,0,0
			Property: "ScalingPivot", "Vector3D", "",0,0,0
			Property: "TranslationActive", "bool", "",0
			Property: "TranslationMin", "Vector3D", "",0,0,0
			Property: "TranslationMax", "Vector3D", "",0,0,0
			Property: "TranslationMinX", "bool", "",0
			Property: "TranslationMinY", "bool", "",0
			Property: "TranslationMinZ", "bool", "",0
			Property: "TranslationMaxX", "bool", "",0
			Property: "TranslationMaxY", "bool", "",0
			Property: "TranslationMaxZ", "bool", "",0
			Property: "RotationOrder", "enum", "",0
			Property: "RotationSpaceForLimitOnly", "bool", "",0
			Property: "AxisLen", "double", "",10
			Property: "PreRotation", "Vector3D", "",0,0,0
			Property: "PostRotation", "Vector3D", "",0,0,0
			Property: "RotationActive", "bool", "",0
			Property: "RotationMin", "Vector3D", "",0,0,0
			Property: "RotationMax", "Vector3D", "",0,0,0
			Property: "RotationMinX", "bool", "",0
			Property: "RotationMinY", "bool", "",0
			Property: "RotationMinZ", "bool", "",0
			Property: "RotationMaxX", "bool", "",0
			Property: "RotationMaxY", "bool", "",0
			Property: "RotationMaxZ", "bool", "",0
			Property: "RotationStiffnessX", "double", "",0
			Property: "RotationStiffnessY", "double", "",0
			Property: "RotationStiffnessZ", "double", "",0
			Property: "MinDampRangeX", "double", "",0
			Property: "MinDampRangeY", "double", "",0
			Property: "MinDampRangeZ", "double", "",0
			Property: "MaxDampRangeX", "double", "",0
			Property: "MaxDampRangeY", "double", "",0
			Property: "MaxDampRangeZ", "double", "",0
			Property: "MinDampStrengthX", "double", "",0
			Property: "MinDampStrengthY", "double", "",0
			Property: "MinDampStrengthZ", "double", "",0
			Property: "MaxDampStrengthX", "double", "",0
			Property: "MaxDampStrengthY", "double", "",0
			Property: "MaxDampStrengthZ", "double", "",0
			Property: "PreferedAngleX", "double", "",0
			Property: "PreferedAngleY", "double", "",0
			Property: "PreferedAngleZ", "double", "",0
			Property: "InheritType", "enum", "",0
			Property: "ScalingActive", "bool", "",0
			Property: "ScalingMin", "Vector3D", "",1,1,1
			Property: "ScalingMax", "Vector3D", "",1,1,1
			Property: "ScalingMinX", "bool", "",0
			Property: "ScalingMinY", "bool", "",0
			Property: "ScalingMinZ", "bool", "",0
			Property: "ScalingMaxX", "bool", "",0
			Property: "ScalingMaxY", "bool", "",0
			Property: "ScalingMaxZ", "bool", "",0
			Property: "GeometricTranslation", "Vector3D", "",0,0,0
			Property: "GeometricRotation", "Vector3D", "",0,0,0
			Property: "GeometricScaling", "Vector3D", "",1,1,1
			Property: "LookAtProperty", "object", ""
			Property: "UpVectorProperty", "object", ""
			Property: "Show", "bool", "",1
			Property: "NegativePercentShapeSupport", "bool", "",1
			Property: "DefaultAttributeIndex", "int", "",0
			Property: "Color", "Color", "A",0.8,0.8,0.8
			Property: "Roll", "Roll", "A+",0
			Property: "FieldOfView", "FieldOfView", "A+",40
			Property: "FieldOfViewX", "FieldOfView", "A+",1
			Property: "FieldOfViewY", "FieldOfView", "A+",1
			Property: "OpticalCenterX", "Real", "A+",0
			Property: "OpticalCenterY", "Real", "A+",0
			Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63
			Property: "TurnTable", "Real", "A+",0
			Property: "DisplayTurnTableIcon", "bool", "",1
			Property: "Motion Blur Intensity", "Real", "A+",1
			Property: "UseMotionBlur", "bool", "",0
			Property: "UseRealTimeMotionBlur", "bool", "",1
			Property: "ResolutionMode", "enum", "",0
			Property: "ApertureMode", "enum", "",2
			Property: "GateFit", "enum", "",0
			Property: "FocalLength", "Real", "A+",21.3544940948486
			Property: "CameraFormat", "enum", "",0
			Property: "AspectW", "double", "",320
			Property: "AspectH", "double", "",200
			Property: "PixelAspectRatio", "double", "",1
			Property: "UseFrameColor", "bool", "",0
			Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
			Property: "ShowName", "bool", "",1
			Property: "ShowGrid", "bool", "",1
			Property: "ShowOpticalCenter", "bool", "",0
			Property: "ShowAzimut", "bool", "",1
			Property: "ShowTimeCode", "bool", "",0
			Property: "NearPlane", "double", "",10.000000
			Property: "FarPlane", "double", "",4000.000000
			Property: "FilmWidth", "double", "",0.816
			Property: "FilmHeight", "double", "",0.612
			Property: "FilmAspectRatio", "double", "",1.33333333333333
			Property: "FilmSqueezeRatio", "double", "",1
			Property: "FilmFormatIndex", "enum", "",4
			Property: "ViewFrustum", "bool", "",1
			Property: "ViewFrustumNearFarPlane", "bool", "",0
			Property: "ViewFrustumBackPlaneMode", "enum", "",2
			Property: "BackPlaneDistance", "double", "",100
			Property: "BackPlaneDistanceMode", "enum", "",0
			Property: "ViewCameraToLookAt", "bool", "",1
			Property: "LockMode", "bool", "",0
			Property: "LockInterestNavigation", "bool", "",0
			Property: "FitImage", "bool", "",0
			Property: "Crop", "bool", "",0
			Property: "Center", "bool", "",1
			Property: "KeepRatio", "bool", "",1
			Property: "BackgroundMode", "enum", "",0
			Property: "BackgroundAlphaTreshold", "double", "",0.5
			Property: "ForegroundTransparent", "bool", "",1
			Property: "DisplaySafeArea", "bool", "",0
			Property: "SafeAreaDisplayStyle", "enum", "",1
			Property: "SafeAreaAspectRatio", "double", "",1.33333333333333
			Property: "Use2DMagnifierZoom", "bool", "",0
			Property: "2D Magnifier Zoom", "Real", "A+",100
			Property: "2D Magnifier X", "Real", "A+",50
			Property: "2D Magnifier Y", "Real", "A+",50
			Property: "CameraProjectionType", "enum", "",0
			Property: "UseRealTimeDOFAndAA", "bool", "",0
			Property: "UseDepthOfField", "bool", "",0
			Property: "FocusSource", "enum", "",0
			Property: "FocusAngle", "double", "",3.5
			Property: "FocusDistance", "double", "",200
			Property: "UseAntialiasing", "bool", "",0
			Property: "AntialiasingIntensity", "double", "",0.77777
			Property: "UseAccumulationBuffer", "bool", "",0
			Property: "FrameSamplingCount", "int", "",7
		}
		MultiLayer: 0
		MultiTake: 0
		Hidden: "True"
		Shading: Y
		Culling: "CullingOff"
		TypeFlags: "Camera"
		GeometryVersion: 124
		Position: 0.000000,71.300000,287.500000
		Up: 0,1,0
		LookAt: 0,0,0
		ShowInfoOnMoving: 1
		ShowAudio: 0
		AudioColor: 0,1,0
		CameraOrthoZoom: 1
	}
	Model: "Model::Producer Top", "Camera" {
		Version: 232
		Properties60:  {
			Property: "QuaternionInterpolate", "bool", "",0
			Property: "Visibility", "Visibility", "A+",1
			Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,4000.000000000000000,0.000000000000000
			Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
			Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
			Property: "RotationOffset", "Vector3D", "",0,0,0
			Property: "RotationPivot", "Vector3D", "",0,0,0
			Property: "ScalingOffset", "Vector3D", "",0,0,0
			Property: "ScalingPivot", "Vector3D", "",0,0,0
			Property: "TranslationActive", "bool", "",0
			Property: "TranslationMin", "Vector3D", "",0,0,0
			Property: "TranslationMax", "Vector3D", "",0,0,0
			Property: "TranslationMinX", "bool", "",0
			Property: "TranslationMinY", "bool", "",0
			Property: "TranslationMinZ", "bool", "",0
			Property: "TranslationMaxX", "bool", "",0
			Property: "TranslationMaxY", "bool", "",0
			Property: "TranslationMaxZ", "bool", "",0
			Property: "RotationOrder", "enum", "",0
			Property: "RotationSpaceForLimitOnly", "bool", "",0
			Property: "AxisLen", "double", "",10
			Property: "PreRotation", "Vector3D", "",0,0,0
			Property: "PostRotation", "Vector3D", "",0,0,0
			Property: "RotationActive", "bool", "",0
			Property: "RotationMin", "Vector3D", "",0,0,0
			Property: "RotationMax", "Vector3D", "",0,0,0
			Property: "RotationMinX", "bool", "",0
			Property: "RotationMinY", "bool", "",0
			Property: "RotationMinZ", "bool", "",0
			Property: "RotationMaxX", "bool", "",0
			Property: "RotationMaxY", "bool", "",0
			Property: "RotationMaxZ", "bool", "",0
			Property: "RotationStiffnessX", "double", "",0
			Property: "RotationStiffnessY", "double", "",0
			Property: "RotationStiffnessZ", "double", "",0
			Property: "MinDampRangeX", "double", "",0
			Property: "MinDampRangeY", "double", "",0
			Property: "MinDampRangeZ", "double", "",0
			Property: "MaxDampRangeX", "double", "",0
			Property: "MaxDampRangeY", "double", "",0
			Property: "MaxDampRangeZ", "double", "",0
			Property: "MinDampStrengthX", "double", "",0
			Property: "MinDampStrengthY", "double", "",0
			Property: "MinDampStrengthZ", "double", "",0
			Property: "MaxDampStrengthX", "double", "",0
			Property: "MaxDampStrengthY", "double", "",0
			Property: "MaxDampStrengthZ", "double", "",0
			Property: "PreferedAngleX", "double", "",0
			Property: "PreferedAngleY", "double", "",0
			Property: "PreferedAngleZ", "double", "",0
			Property: "InheritType", "enum", "",0
			Property: "ScalingActive", "bool", "",0
			Property: "ScalingMin", "Vector3D", "",1,1,1
			Property: "ScalingMax", "Vector3D", "",1,1,1
			Property: "ScalingMinX", "bool", "",0
			Property: "ScalingMinY", "bool", "",0
			Property: "ScalingMinZ", "bool", "",0
			Property: "ScalingMaxX", "bool", "",0
			Property: "ScalingMaxY", "bool", "",0
			Property: "ScalingMaxZ", "bool", "",0
			Property: "GeometricTranslation", "Vector3D", "",0,0,0
			Property: "GeometricRotation", "Vector3D", "",0,0,0
			Property: "GeometricScaling", "Vector3D", "",1,1,1
			Property: "LookAtProperty", "object", ""
			Property: "UpVectorProperty", "object", ""
			Property: "Show", "bool", "",1
			Property: "NegativePercentShapeSupport", "bool", "",1
			Property: "DefaultAttributeIndex", "int", "",0
			Property: "Color", "Color", "A",0.8,0.8,0.8
			Property: "Roll", "Roll", "A+",0
			Property: "FieldOfView", "FieldOfView", "A+",40
			Property: "FieldOfViewX", "FieldOfView", "A+",1
			Property: "FieldOfViewY", "FieldOfView", "A+",1
			Property: "OpticalCenterX", "Real", "A+",0
			Property: "OpticalCenterY", "Real", "A+",0
			Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63
			Property: "TurnTable", "Real", "A+",0
			Property: "DisplayTurnTableIcon", "bool", "",1
			Property: "Motion Blur Intensity", "Real", "A+",1
			Property: "UseMotionBlur", "bool", "",0
			Property: "UseRealTimeMotionBlur", "bool", "",1
			Property: "ResolutionMode", "enum", "",0
			Property: "ApertureMode", "enum", "",2
			Property: "GateFit", "enum", "",0
			Property: "FocalLength", "Real", "A+",21.3544940948486
			Property: "CameraFormat", "enum", "",0
			Property: "AspectW", "double", "",320
			Property: "AspectH", "double", "",200
			Property: "PixelAspectRatio", "double", "",1
			Property: "UseFrameColor", "bool", "",0
			Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
			Property: "ShowName", "bool", "",1
			Property: "ShowGrid", "bool", "",1
			Property: "ShowOpticalCenter", "bool", "",0
			Property: "ShowAzimut", "bool", "",1
			Property: "ShowTimeCode", "bool", "",0
			Property: "NearPlane", "double", "",1.000000
			Property: "FarPlane", "double", "",30000.000000
			Property: "FilmWidth", "double", "",0.816
			Property: "FilmHeight", "double", "",0.612
			Property: "FilmAspectRatio", "double", "",1.33333333333333
			Property: "FilmSqueezeRatio", "double", "",1
			Property: "FilmFormatIndex", "enum", "",4
			Property: "ViewFrustum", "bool", "",1
			Property: "ViewFrustumNearFarPlane", "bool", "",0
			Property: "ViewFrustumBackPlaneMode", "enum", "",2
			Property: "BackPlaneDistance", "double", "",100
			Property: "BackPlaneDistanceMode", "enum", "",0
			Property: "ViewCameraToLookAt", "bool", "",1
			Property: "LockMode", "bool", "",0
			Property: "LockInterestNavigation", "bool", "",0
			Property: "FitImage", "bool", "",0
			Property: "Crop", "bool", "",0
			Property: "Center", "bool", "",1
			Property: "KeepRatio", "bool", "",1
			Property: "BackgroundMode", "enum", "",0
			Property: "BackgroundAlphaTreshold", "double", "",0.5
			Property: "ForegroundTransparent", "bool", "",1
			Property: "DisplaySafeArea", "bool", "",0
			Property: "SafeAreaDisplayStyle", "enum", "",1
			Property: "SafeAreaAspectRatio", "double", "",1.33333333333333
			Property: "Use2DMagnifierZoom", "bool", "",0
			Property: "2D Magnifier Zoom", "Real", "A+",100
			Property: "2D Magnifier X", "Real", "A+",50
			Property: "2D Magnifier Y", "Real", "A+",50
			Property: "CameraProjectionType", "enum", "",1
			Property: "UseRealTimeDOFAndAA", "bool", "",0
			Property: "UseDepthOfField", "bool", "",0
			Property: "FocusSource", "enum", "",0
			Property: "FocusAngle", "double", "",3.5
			Property: "FocusDistance", "double", "",200
			Property: "UseAntialiasing", "bool", "",0
			Property: "AntialiasingIntensity", "double", "",0.77777
			Property: "UseAccumulationBuffer", "bool", "",0
			Property: "FrameSamplingCount", "int", "",7
		}
		MultiLayer: 0
		MultiTake: 0
		Hidden: "True"
		Shading: Y
		Culling: "CullingOff"
		TypeFlags: "Camera"
		GeometryVersion: 124
		Position: 0.000000,4000.000000,0.000000
		Up: 0,0,-1
		LookAt: 0,0,0
		ShowInfoOnMoving: 1
		ShowAudio: 0
		AudioColor: 0,1,0
		CameraOrthoZoom: 1
	}
	Model: "Model::Producer Bottom", "Camera" {
		Version: 232
		Properties60:  {
			Property: "QuaternionInterpolate", "bool", "",0
			Property: "Visibility", "Visibility", "A+",1
			Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,-4000.000000000000000,0.000000000000000
			Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
			Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
			Property: "RotationOffset", "Vector3D", "",0,0,0
			Property: "RotationPivot", "Vector3D", "",0,0,0
			Property: "ScalingOffset", "Vector3D", "",0,0,0
			Property: "ScalingPivot", "Vector3D", "",0,0,0
			Property: "TranslationActive", "bool", "",0
			Property: "TranslationMin", "Vector3D", "",0,0,0
			Property: "TranslationMax", "Vector3D", "",0,0,0
			Property: "TranslationMinX", "bool", "",0
			Property: "TranslationMinY", "bool", "",0
			Property: "TranslationMinZ", "bool", "",0
			Property: "TranslationMaxX", "bool", "",0
			Property: "TranslationMaxY", "bool", "",0
			Property: "TranslationMaxZ", "bool", "",0
			Property: "RotationOrder", "enum", "",0
			Property: "RotationSpaceForLimitOnly", "bool", "",0
			Property: "AxisLen", "double", "",10
			Property: "PreRotation", "Vector3D", "",0,0,0
			Property: "PostRotation", "Vector3D", "",0,0,0
			Property: "RotationActive", "bool", "",0
			Property: "RotationMin", "Vector3D", "",0,0,0
			Property: "RotationMax", "Vector3D", "",0,0,0
			Property: "RotationMinX", "bool", "",0
			Property: "RotationMinY", "bool", "",0
			Property: "RotationMinZ", "bool", "",0
			Property: "RotationMaxX", "bool", "",0
			Property: "RotationMaxY", "bool", "",0
			Property: "RotationMaxZ", "bool", "",0
			Property: "RotationStiffnessX", "double", "",0
			Property: "RotationStiffnessY", "double", "",0
			Property: "RotationStiffnessZ", "double", "",0
			Property: "MinDampRangeX", "double", "",0
			Property: "MinDampRangeY", "double", "",0
			Property: "MinDampRangeZ", "double", "",0
			Property: "MaxDampRangeX", "double", "",0
			Property: "MaxDampRangeY", "double", "",0
			Property: "MaxDampRangeZ", "double", "",0
			Property: "MinDampStrengthX", "double", "",0
			Property: "MinDampStrengthY", "double", "",0
			Property: "MinDampStrengthZ", "double", "",0
			Property: "MaxDampStrengthX", "double", "",0
			Property: "MaxDampStrengthY", "double", "",0
			Property: "MaxDampStrengthZ", "double", "",0
			Property: "PreferedAngleX", "double", "",0
			Property: "PreferedAngleY", "double", "",0
			Property: "PreferedAngleZ", "double", "",0
			Property: "InheritType", "enum", "",0
			Property: "ScalingActive", "bool", "",0
			Property: "ScalingMin", "Vector3D", "",1,1,1
			Property: "ScalingMax", "Vector3D", "",1,1,1
			Property: "ScalingMinX", "bool", "",0
			Property: "ScalingMinY", "bool", "",0
			Property: "ScalingMinZ", "bool", "",0
			Property: "ScalingMaxX", "bool", "",0
			Property: "ScalingMaxY", "bool", "",0
			Property: "ScalingMaxZ", "bool", "",0
			Property: "GeometricTranslation", "Vector3D", "",0,0,0
			Property: "GeometricRotation", "Vector3D", "",0,0,0
			Property: "GeometricScaling", "Vector3D", "",1,1,1
			Property: "LookAtProperty", "object", ""
			Property: "UpVectorProperty", "object", ""
			Property: "Show", "bool", "",1
			Property: "NegativePercentShapeSupport", "bool", "",1
			Property: "DefaultAttributeIndex", "int", "",0
			Property: "Color", "Color", "A",0.8,0.8,0.8
			Property: "Roll", "Roll", "A+",0
			Property: "FieldOfView", "FieldOfView", "A+",40
			Property: "FieldOfViewX", "FieldOfView", "A+",1
			Property: "FieldOfViewY", "FieldOfView", "A+",1
			Property: "OpticalCenterX", "Real", "A+",0
			Property: "OpticalCenterY", "Real", "A+",0
			Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63
			Property: "TurnTable", "Real", "A+",0
			Property: "DisplayTurnTableIcon", "bool", "",1
			Property: "Motion Blur Intensity", "Real", "A+",1
			Property: "UseMotionBlur", "bool", "",0
			Property: "UseRealTimeMotionBlur", "bool", "",1
			Property: "ResolutionMode", "enum", "",0
			Property: "ApertureMode", "enum", "",2
			Property: "GateFit", "enum", "",0
			Property: "FocalLength", "Real", "A+",21.3544940948486
			Property: "CameraFormat", "enum", "",0
			Property: "AspectW", "double", "",320
			Property: "AspectH", "double", "",200
			Property: "PixelAspectRatio", "double", "",1
			Property: "UseFrameColor", "bool", "",0
			Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
			Property: "ShowName", "bool", "",1
			Property: "ShowGrid", "bool", "",1
			Property: "ShowOpticalCenter", "bool", "",0
			Property: "ShowAzimut", "bool", "",1
			Property: "ShowTimeCode", "bool", "",0
			Property: "NearPlane", "double", "",1.000000
			Property: "FarPlane", "double", "",30000.000000
			Property: "FilmWidth", "double", "",0.816
			Property: "FilmHeight", "double", "",0.612
			Property: "FilmAspectRatio", "double", "",1.33333333333333
			Property: "FilmSqueezeRatio", "double", "",1
			Property: "FilmFormatIndex", "enum", "",4
			Property: "ViewFrustum", "bool", "",1
			Property: "ViewFrustumNearFarPlane", "bool", "",0
			Property: "ViewFrustumBackPlaneMode", "enum", "",2
			Property: "BackPlaneDistance", "double", "",100
			Property: "BackPlaneDistanceMode", "enum", "",0
			Property: "ViewCameraToLookAt", "bool", "",1
			Property: "LockMode", "bool", "",0
			Property: "LockInterestNavigation", "bool", "",0
			Property: "FitImage", "bool", "",0
			Property: "Crop", "bool", "",0
			Property: "Center", "bool", "",1
			Property: "KeepRatio", "bool", "",1
			Property: "BackgroundMode", "enum", "",0
			Property: "BackgroundAlphaTreshold", "double", "",0.5
			Property: "ForegroundTransparent", "bool", "",1
			Property: "DisplaySafeArea", "bool", "",0
			Property: "SafeAreaDisplayStyle", "enum", "",1
			Property: "SafeAreaAspectRatio", "double", "",1.33333333333333
			Property: "Use2DMagnifierZoom", "bool", "",0
			Property: "2D Magnifier Zoom", "Real", "A+",100
			Property: "2D Magnifier X", "Real", "A+",50
			Property: "2D Magnifier Y", "Real", "A+",50
			Property: "CameraProjectionType", "enum", "",1
			Property: "UseRealTimeDOFAndAA", "bool", "",0
			Property: "UseDepthOfField", "bool", "",0
			Property: "FocusSource", "enum", "",0
			Property: "FocusAngle", "double", "",3.5
			Property: "FocusDistance", "double", "",200
			Property: "UseAntialiasing", "bool", "",0
			Property: "AntialiasingIntensity", "double", "",0.77777
			Property: "UseAccumulationBuffer", "bool", "",0
			Property: "FrameSamplingCount", "int", "",7
		}
		MultiLayer: 0
		MultiTake: 0
		Hidden: "True"
		Shading: Y
		Culling: "CullingOff"
		TypeFlags: "Camera"
		GeometryVersion: 124
		Position: 0.000000,-4000.000000,0.000000
		Up: 0,0,-1
		LookAt: 0,0,0
		ShowInfoOnMoving: 1
		ShowAudio: 0
		AudioColor: 0,1,0
		CameraOrthoZoom: 1
	}
	Model: "Model::Producer Front", "Camera" {
		Version: 232
		Properties60:  {
			Property: "QuaternionInterpolate", "bool", "",0
			Property: "Visibility", "Visibility", "A+",1
			Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,4000.000000000000000
			Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
			Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
			Property: "RotationOffset", "Vector3D", "",0,0,0
			Property: "RotationPivot", "Vector3D", "",0,0,0
			Property: "ScalingOffset", "Vector3D", "",0,0,0
			Property: "ScalingPivot", "Vector3D", "",0,0,0
			Property: "TranslationActive", "bool", "",0
			Property: "TranslationMin", "Vector3D", "",0,0,0
			Property: "TranslationMax", "Vector3D", "",0,0,0
			Property: "TranslationMinX", "bool", "",0
			Property: "TranslationMinY", "bool", "",0
			Property: "TranslationMinZ", "bool", "",0
			Property: "TranslationMaxX", "bool", "",0
			Property: "TranslationMaxY", "bool", "",0
			Property: "TranslationMaxZ", "bool", "",0
			Property: "RotationOrder", "enum", "",0
			Property: "RotationSpaceForLimitOnly", "bool", "",0
			Property: "AxisLen", "double", "",10
			Property: "PreRotation", "Vector3D", "",0,0,0
			Property: "PostRotation", "Vector3D", "",0,0,0
			Property: "RotationActive", "bool", "",0
			Property: "RotationMin", "Vector3D", "",0,0,0
			Property: "RotationMax", "Vector3D", "",0,0,0
			Property: "RotationMinX", "bool", "",0
			Property: "RotationMinY", "bool", "",0
			Property: "RotationMinZ", "bool", "",0
			Property: "RotationMaxX", "bool", "",0
			Property: "RotationMaxY", "bool", "",0
			Property: "RotationMaxZ", "bool", "",0
			Property: "RotationStiffnessX", "double", "",0
			Property: "RotationStiffnessY", "double", "",0
			Property: "RotationStiffnessZ", "double", "",0
			Property: "MinDampRangeX", "double", "",0
			Property: "MinDampRangeY", "double", "",0
			Property: "MinDampRangeZ", "double", "",0
			Property: "MaxDampRangeX", "double", "",0
			Property: "MaxDampRangeY", "double", "",0
			Property: "MaxDampRangeZ", "double", "",0
			Property: "MinDampStrengthX", "double", "",0
			Property: "MinDampStrengthY", "double", "",0
			Property: "MinDampStrengthZ", "double", "",0
			Property: "MaxDampStrengthX", "double", "",0
			Property: "MaxDampStrengthY", "double", "",0
			Property: "MaxDampStrengthZ", "double", "",0
			Property: "PreferedAngleX", "double", "",0
			Property: "PreferedAngleY", "double", "",0
			Property: "PreferedAngleZ", "double", "",0
			Property: "InheritType", "enum", "",0
			Property: "ScalingActive", "bool", "",0
			Property: "ScalingMin", "Vector3D", "",1,1,1
			Property: "ScalingMax", "Vector3D", "",1,1,1
			Property: "ScalingMinX", "bool", "",0
			Property: "ScalingMinY", "bool", "",0
			Property: "ScalingMinZ", "bool", "",0
			Property: "ScalingMaxX", "bool", "",0
			Property: "ScalingMaxY", "bool", "",0
			Property: "ScalingMaxZ", "bool", "",0
			Property: "GeometricTranslation", "Vector3D", "",0,0,0
			Property: "GeometricRotation", "Vector3D", "",0,0,0
			Property: "GeometricScaling", "Vector3D", "",1,1,1
			Property: "LookAtProperty", "object", ""
			Property: "UpVectorProperty", "object", ""
			Property: "Show", "bool", "",1
			Property: "NegativePercentShapeSupport", "bool", "",1
			Property: "DefaultAttributeIndex", "int", "",0
			Property: "Color", "Color", "A",0.8,0.8,0.8
			Property: "Roll", "Roll", "A+",0
			Property: "FieldOfView", "FieldOfView", "A+",40
			Property: "FieldOfViewX", "FieldOfView", "A+",1
			Property: "FieldOfViewY", "FieldOfView", "A+",1
			Property: "OpticalCenterX", "Real", "A+",0
			Property: "OpticalCenterY", "Real", "A+",0
			Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63
			Property: "TurnTable", "Real", "A+",0
			Property: "DisplayTurnTableIcon", "bool", "",1
			Property: "Motion Blur Intensity", "Real", "A+",1
			Property: "UseMotionBlur", "bool", "",0
			Property: "UseRealTimeMotionBlur", "bool", "",1
			Property: "ResolutionMode", "enum", "",0
			Property: "ApertureMode", "enum", "",2
			Property: "GateFit", "enum", "",0
			Property: "FocalLength", "Real", "A+",21.3544940948486
			Property: "CameraFormat", "enum", "",0
			Property: "AspectW", "double", "",320
			Property: "AspectH", "double", "",200
			Property: "PixelAspectRatio", "double", "",1
			Property: "UseFrameColor", "bool", "",0
			Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
			Property: "ShowName", "bool", "",1
			Property: "ShowGrid", "bool", "",1
			Property: "ShowOpticalCenter", "bool", "",0
			Property: "ShowAzimut", "bool", "",1
			Property: "ShowTimeCode", "bool", "",0
			Property: "NearPlane", "double", "",1.000000
			Property: "FarPlane", "double", "",30000.000000
			Property: "FilmWidth", "double", "",0.816
			Property: "FilmHeight", "double", "",0.612
			Property: "FilmAspectRatio", "double", "",1.33333333333333
			Property: "FilmSqueezeRatio", "double", "",1
			Property: "FilmFormatIndex", "enum", "",4
			Property: "ViewFrustum", "bool", "",1
			Property: "ViewFrustumNearFarPlane", "bool", "",0
			Property: "ViewFrustumBackPlaneMode", "enum", "",2
			Property: "BackPlaneDistance", "double", "",100
			Property: "BackPlaneDistanceMode", "enum", "",0
			Property: "ViewCameraToLookAt", "bool", "",1
			Property: "LockMode", "bool", "",0
			Property: "LockInterestNavigation", "bool", "",0
			Property: "FitImage", "bool", "",0
			Property: "Crop", "bool", "",0
			Property: "Center", "bool", "",1
			Property: "KeepRatio", "bool", "",1
			Property: "BackgroundMode", "enum", "",0
			Property: "BackgroundAlphaTreshold", "double", "",0.5
			Property: "ForegroundTransparent", "bool", "",1
			Property: "DisplaySafeArea", "bool", "",0
			Property: "SafeAreaDisplayStyle", "enum", "",1
			Property: "SafeAreaAspectRatio", "double", "",1.33333333333333
			Property: "Use2DMagnifierZoom", "bool", "",0
			Property: "2D Magnifier Zoom", "Real", "A+",100
			Property: "2D Magnifier X", "Real", "A+",50
			Property: "2D Magnifier Y", "Real", "A+",50
			Property: "CameraProjectionType", "enum", "",1
			Property: "UseRealTimeDOFAndAA", "bool", "",0
			Property: "UseDepthOfField", "bool", "",0
			Property: "FocusSource", "enum", "",0
			Property: "FocusAngle", "double", "",3.5
			Property: "FocusDistance", "double", "",200
			Property: "UseAntialiasing", "bool", "",0
			Property: "AntialiasingIntensity", "double", "",0.77777
			Property: "UseAccumulationBuffer", "bool", "",0
			Property: "FrameSamplingCount", "int", "",7
		}
		MultiLayer: 0
		MultiTake: 0
		Hidden: "True"
		Shading: Y
		Culling: "CullingOff"
		TypeFlags: "Camera"
		GeometryVersion: 124
		Position: 0.000000,0.000000,4000.000000
		Up: 0,1,0
		LookAt: 0,0,0
		ShowInfoOnMoving: 1
		ShowAudio: 0
		AudioColor: 0,1,0
		CameraOrthoZoom: 1
	}
	Model: "Model::Producer Back", "Camera" {
		Version: 232
		Properties60:  {
			Property: "QuaternionInterpolate", "bool", "",0
			Property: "Visibility", "Visibility", "A+",1
			Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,-4000.000000000000000
			Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
			Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
			Property: "RotationOffset", "Vector3D", "",0,0,0
			Property: "RotationPivot", "Vector3D", "",0,0,0
			Property: "ScalingOffset", "Vector3D", "",0,0,0
			Property: "ScalingPivot", "Vector3D", "",0,0,0
			Property: "TranslationActive", "bool", "",0
			Property: "TranslationMin", "Vector3D", "",0,0,0
			Property: "TranslationMax", "Vector3D", "",0,0,0
			Property: "TranslationMinX", "bool", "",0
			Property: "TranslationMinY", "bool", "",0
			Property: "TranslationMinZ", "bool", "",0
			Property: "TranslationMaxX", "bool", "",0
			Property: "TranslationMaxY", "bool", "",0
			Property: "TranslationMaxZ", "bool", "",0
			Property: "RotationOrder", "enum", "",0
			Property: "RotationSpaceForLimitOnly", "bool", "",0
			Property: "AxisLen", "double", "",10
			Property: "PreRotation", "Vector3D", "",0,0,0
			Property: "PostRotation", "Vector3D", "",0,0,0
			Property: "RotationActive", "bool", "",0
			Property: "RotationMin", "Vector3D", "",0,0,0
			Property: "RotationMax", "Vector3D", "",0,0,0
			Property: "RotationMinX", "bool", "",0
			Property: "RotationMinY", "bool", "",0
			Property: "RotationMinZ", "bool", "",0
			Property: "RotationMaxX", "bool", "",0
			Property: "RotationMaxY", "bool", "",0
			Property: "RotationMaxZ", "bool", "",0
			Property: "RotationStiffnessX", "double", "",0
			Property: "RotationStiffnessY", "double", "",0
			Property: "RotationStiffnessZ", "double", "",0
			Property: "MinDampRangeX", "double", "",0
			Property: "MinDampRangeY", "double", "",0
			Property: "MinDampRangeZ", "double", "",0
			Property: "MaxDampRangeX", "double", "",0
			Property: "MaxDampRangeY", "double", "",0
			Property: "MaxDampRangeZ", "double", "",0
			Property: "MinDampStrengthX", "double", "",0
			Property: "MinDampStrengthY", "double", "",0
			Property: "MinDampStrengthZ", "double", "",0
			Property: "MaxDampStrengthX", "double", "",0
			Property: "MaxDampStrengthY", "double", "",0
			Property: "MaxDampStrengthZ", "double", "",0
			Property: "PreferedAngleX", "double", "",0
			Property: "PreferedAngleY", "double", "",0
			Property: "PreferedAngleZ", "double", "",0
			Property: "InheritType", "enum", "",0
			Property: "ScalingActive", "bool", "",0
			Property: "ScalingMin", "Vector3D", "",1,1,1
			Property: "ScalingMax", "Vector3D", "",1,1,1
			Property: "ScalingMinX", "bool", "",0
			Property: "ScalingMinY", "bool", "",0
			Property: "ScalingMinZ", "bool", "",0
			Property: "ScalingMaxX", "bool", "",0
			Property: "ScalingMaxY", "bool", "",0
			Property: "ScalingMaxZ", "bool", "",0
			Property: "GeometricTranslation", "Vector3D", "",0,0,0
			Property: "GeometricRotation", "Vector3D", "",0,0,0
			Property: "GeometricScaling", "Vector3D", "",1,1,1
			Property: "LookAtProperty", "object", ""
			Property: "UpVectorProperty", "object", ""
			Property: "Show", "bool", "",1
			Property: "NegativePercentShapeSupport", "bool", "",1
			Property: "DefaultAttributeIndex", "int", "",0
			Property: "Color", "Color", "A",0.8,0.8,0.8
			Property: "Roll", "Roll", "A+",0
			Property: "FieldOfView", "FieldOfView", "A+",40
			Property: "FieldOfViewX", "FieldOfView", "A+",1
			Property: "FieldOfViewY", "FieldOfView", "A+",1
			Property: "OpticalCenterX", "Real", "A+",0
			Property: "OpticalCenterY", "Real", "A+",0
			Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63
			Property: "TurnTable", "Real", "A+",0
			Property: "DisplayTurnTableIcon", "bool", "",1
			Property: "Motion Blur Intensity", "Real", "A+",1
			Property: "UseMotionBlur", "bool", "",0
			Property: "UseRealTimeMotionBlur", "bool", "",1
			Property: "ResolutionMode", "enum", "",0
			Property: "ApertureMode", "enum", "",2
			Property: "GateFit", "enum", "",0
			Property: "FocalLength", "Real", "A+",21.3544940948486
			Property: "CameraFormat", "enum", "",0
			Property: "AspectW", "double", "",320
			Property: "AspectH", "double", "",200
			Property: "PixelAspectRatio", "double", "",1
			Property: "UseFrameColor", "bool", "",0
			Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
			Property: "ShowName", "bool", "",1
			Property: "ShowGrid", "bool", "",1
			Property: "ShowOpticalCenter", "bool", "",0
			Property: "ShowAzimut", "bool", "",1
			Property: "ShowTimeCode", "bool", "",0
			Property: "NearPlane", "double", "",1.000000
			Property: "FarPlane", "double", "",30000.000000
			Property: "FilmWidth", "double", "",0.816
			Property: "FilmHeight", "double", "",0.612
			Property: "FilmAspectRatio", "double", "",1.33333333333333
			Property: "FilmSqueezeRatio", "double", "",1
			Property: "FilmFormatIndex", "enum", "",4
			Property: "ViewFrustum", "bool", "",1
			Property: "ViewFrustumNearFarPlane", "bool", "",0
			Property: "ViewFrustumBackPlaneMode", "enum", "",2
			Property: "BackPlaneDistance", "double", "",100
			Property: "BackPlaneDistanceMode", "enum", "",0
			Property: "ViewCameraToLookAt", "bool", "",1
			Property: "LockMode", "bool", "",0
			Property: "LockInterestNavigation", "bool", "",0
			Property: "FitImage", "bool", "",0
			Property: "Crop", "bool", "",0
			Property: "Center", "bool", "",1
			Property: "KeepRatio", "bool", "",1
			Property: "BackgroundMode", "enum", "",0
			Property: "BackgroundAlphaTreshold", "double", "",0.5
			Property: "ForegroundTransparent", "bool", "",1
			Property: "DisplaySafeArea", "bool", "",0
			Property: "SafeAreaDisplayStyle", "enum", "",1
			Property: "SafeAreaAspectRatio", "double", "",1.33333333333333
			Property: "Use2DMagnifierZoom", "bool", "",0
			Property: "2D Magnifier Zoom", "Real", "A+",100
			Property: "2D Magnifier X", "Real", "A+",50
			Property: "2D Magnifier Y", "Real", "A+",50
			Property: "CameraProjectionType", "enum", "",1
			Property: "UseRealTimeDOFAndAA", "bool", "",0
			Property: "UseDepthOfField", "bool", "",0
			Property: "FocusSource", "enum", "",0
			Property: "FocusAngle", "double", "",3.5
			Property: "FocusDistance", "double", "",200
			Property: "UseAntialiasing", "bool", "",0
			Property: "AntialiasingIntensity", "double", "",0.77777
			Property: "UseAccumulationBuffer", "bool", "",0
			Property: "FrameSamplingCount", "int", "",7
		}
		MultiLayer: 0
		MultiTake: 0
		Hidden: "True"
		Shading: Y
		Culling: "CullingOff"
		TypeFlags: "Camera"
		GeometryVersion: 124
		Position: 0.000000,0.000000,-4000.000000
		Up: 0,1,0
		LookAt: 0,0,0
		ShowInfoOnMoving: 1
		ShowAudio: 0
		AudioColor: 0,1,0
		CameraOrthoZoom: 1
	}
	Model: "Model::Producer Right", "Camera" {
		Version: 232
		Properties60:  {
			Property: "QuaternionInterpolate", "bool", "",0
			Property: "Visibility", "Visibility", "A+",1
			Property: "Lcl Translation", "Lcl Translation", "A+",4000.000000000000000,0.000000000000000,0.000000000000000
			Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
			Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
			Property: "RotationOffset", "Vector3D", "",0,0,0
			Property: "RotationPivot", "Vector3D", "",0,0,0
			Property: "ScalingOffset", "Vector3D", "",0,0,0
			Property: "ScalingPivot", "Vector3D", "",0,0,0
			Property: "TranslationActive", "bool", "",0
			Property: "TranslationMin", "Vector3D", "",0,0,0
			Property: "TranslationMax", "Vector3D", "",0,0,0
			Property: "TranslationMinX", "bool", "",0
			Property: "TranslationMinY", "bool", "",0
			Property: "TranslationMinZ", "bool", "",0
			Property: "TranslationMaxX", "bool", "",0
			Property: "TranslationMaxY", "bool", "",0
			Property: "TranslationMaxZ", "bool", "",0
			Property: "RotationOrder", "enum", "",0
			Property: "RotationSpaceForLimitOnly", "bool", "",0
			Property: "AxisLen", "double", "",10
			Property: "PreRotation", "Vector3D", "",0,0,0
			Property: "PostRotation", "Vector3D", "",0,0,0
			Property: "RotationActive", "bool", "",0
			Property: "RotationMin", "Vector3D", "",0,0,0
			Property: "RotationMax", "Vector3D", "",0,0,0
			Property: "RotationMinX", "bool", "",0
			Property: "RotationMinY", "bool", "",0
			Property: "RotationMinZ", "bool", "",0
			Property: "RotationMaxX", "bool", "",0
			Property: "RotationMaxY", "bool", "",0
			Property: "RotationMaxZ", "bool", "",0
			Property: "RotationStiffnessX", "double", "",0
			Property: "RotationStiffnessY", "double", "",0
			Property: "RotationStiffnessZ", "double", "",0
			Property: "MinDampRangeX", "double", "",0
			Property: "MinDampRangeY", "double", "",0
			Property: "MinDampRangeZ", "double", "",0
			Property: "MaxDampRangeX", "double", "",0
			Property: "MaxDampRangeY", "double", "",0
			Property: "MaxDampRangeZ", "double", "",0
			Property: "MinDampStrengthX", "double", "",0
			Property: "MinDampStrengthY", "double", "",0
			Property: "MinDampStrengthZ", "double", "",0
			Property: "MaxDampStrengthX", "double", "",0
			Property: "MaxDampStrengthY", "double", "",0
			Property: "MaxDampStrengthZ", "double", "",0
			Property: "PreferedAngleX", "double", "",0
			Property: "PreferedAngleY", "double", "",0
			Property: "PreferedAngleZ", "double", "",0
			Property: "InheritType", "enum", "",0
			Property: "ScalingActive", "bool", "",0
			Property: "ScalingMin", "Vector3D", "",1,1,1
			Property: "ScalingMax", "Vector3D", "",1,1,1
			Property: "ScalingMinX", "bool", "",0
			Property: "ScalingMinY", "bool", "",0
			Property: "ScalingMinZ", "bool", "",0
			Property: "ScalingMaxX", "bool", "",0
			Property: "ScalingMaxY", "bool", "",0
			Property: "ScalingMaxZ", "bool", "",0
			Property: "GeometricTranslation", "Vector3D", "",0,0,0
			Property: "GeometricRotation", "Vector3D", "",0,0,0
			Property: "GeometricScaling", "Vector3D", "",1,1,1
			Property: "LookAtProperty", "object", ""
			Property: "UpVectorProperty", "object", ""
			Property: "Show", "bool", "",1
			Property: "NegativePercentShapeSupport", "bool", "",1
			Property: "DefaultAttributeIndex", "int", "",0
			Property: "Color", "Color", "A",0.8,0.8,0.8
			Property: "Roll", "Roll", "A+",0
			Property: "FieldOfView", "FieldOfView", "A+",40
			Property: "FieldOfViewX", "FieldOfView", "A+",1
			Property: "FieldOfViewY", "FieldOfView", "A+",1
			Property: "OpticalCenterX", "Real", "A+",0
			Property: "OpticalCenterY", "Real", "A+",0
			Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63
			Property: "TurnTable", "Real", "A+",0
			Property: "DisplayTurnTableIcon", "bool", "",1
			Property: "Motion Blur Intensity", "Real", "A+",1
			Property: "UseMotionBlur", "bool", "",0
			Property: "UseRealTimeMotionBlur", "bool", "",1
			Property: "ResolutionMode", "enum", "",0
			Property: "ApertureMode", "enum", "",2
			Property: "GateFit", "enum", "",0
			Property: "FocalLength", "Real", "A+",21.3544940948486
			Property: "CameraFormat", "enum", "",0
			Property: "AspectW", "double", "",320
			Property: "AspectH", "double", "",200
			Property: "PixelAspectRatio", "double", "",1
			Property: "UseFrameColor", "bool", "",0
			Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
			Property: "ShowName", "bool", "",1
			Property: "ShowGrid", "bool", "",1
			Property: "ShowOpticalCenter", "bool", "",0
			Property: "ShowAzimut", "bool", "",1
			Property: "ShowTimeCode", "bool", "",0
			Property: "NearPlane", "double", "",1.000000
			Property: "FarPlane", "double", "",30000.000000
			Property: "FilmWidth", "double", "",0.816
			Property: "FilmHeight", "double", "",0.612
			Property: "FilmAspectRatio", "double", "",1.33333333333333
			Property: "FilmSqueezeRatio", "double", "",1
			Property: "FilmFormatIndex", "enum", "",4
			Property: "ViewFrustum", "bool", "",1
			Property: "ViewFrustumNearFarPlane", "bool", "",0
			Property: "ViewFrustumBackPlaneMode", "enum", "",2
			Property: "BackPlaneDistance", "double", "",100
			Property: "BackPlaneDistanceMode", "enum", "",0
			Property: "ViewCameraToLookAt", "bool", "",1
			Property: "LockMode", "bool", "",0
			Property: "LockInterestNavigation", "bool", "",0
			Property: "FitImage", "bool", "",0
			Property: "Crop", "bool", "",0
			Property: "Center", "bool", "",1
			Property: "KeepRatio", "bool", "",1
			Property: "BackgroundMode", "enum", "",0
			Property: "BackgroundAlphaTreshold", "double", "",0.5
			Property: "ForegroundTransparent", "bool", "",1
			Property: "DisplaySafeArea", "bool", "",0
			Property: "SafeAreaDisplayStyle", "enum", "",1
			Property: "SafeAreaAspectRatio", "double", "",1.33333333333333
			Property: "Use2DMagnifierZoom", "bool", "",0
			Property: "2D Magnifier Zoom", "Real", "A+",100
			Property: "2D Magnifier X", "Real", "A+",50
			Property: "2D Magnifier Y", "Real", "A+",50
			Property: "CameraProjectionType", "enum", "",1
			Property: "UseRealTimeDOFAndAA", "bool", "",0
			Property: "UseDepthOfField", "bool", "",0
			Property: "FocusSource", "enum", "",0
			Property: "FocusAngle", "double", "",3.5
			Property: "FocusDistance", "double", "",200
			Property: "UseAntialiasing", "bool", "",0
			Property: "AntialiasingIntensity", "double", "",0.77777
			Property: "UseAccumulationBuffer", "bool", "",0
			Property: "FrameSamplingCount", "int", "",7
		}
		MultiLayer: 0
		MultiTake: 0
		Hidden: "True"
		Shading: Y
		Culling: "CullingOff"
		TypeFlags: "Camera"
		GeometryVersion: 124
		Position: 4000.000000,0.000000,0.000000
		Up: 0,1,0
		LookAt: 0,0,0
		ShowInfoOnMoving: 1
		ShowAudio: 0
		AudioColor: 0,1,0
		CameraOrthoZoom: 1
	}
	Model: "Model::Producer Left", "Camera" {
		Version: 232
		Properties60:  {
			Property: "QuaternionInterpolate", "bool", "",0
			Property: "Visibility", "Visibility", "A+",1
			Property: "Lcl Translation", "Lcl Translation", "A+",-4000.000000000000000,0.000000000000000,0.000000000000000
			Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
			Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
			Property: "RotationOffset", "Vector3D", "",0,0,0
			Property: "RotationPivot", "Vector3D", "",0,0,0
			Property: "ScalingOffset", "Vector3D", "",0,0,0
			Property: "ScalingPivot", "Vector3D", "",0,0,0
			Property: "TranslationActive", "bool", "",0
			Property: "TranslationMin", "Vector3D", "",0,0,0
			Property: "TranslationMax", "Vector3D", "",0,0,0
			Property: "TranslationMinX", "bool", "",0
			Property: "TranslationMinY", "bool", "",0
			Property: "TranslationMinZ", "bool", "",0
			Property: "TranslationMaxX", "bool", "",0
			Property: "TranslationMaxY", "bool", "",0
			Property: "TranslationMaxZ", "bool", "",0
			Property: "RotationOrder", "enum", "",0
			Property: "RotationSpaceForLimitOnly", "bool", "",0
			Property: "AxisLen", "double", "",10
			Property: "PreRotation", "Vector3D", "",0,0,0
			Property: "PostRotation", "Vector3D", "",0,0,0
			Property: "RotationActive", "bool", "",0
			Property: "RotationMin", "Vector3D", "",0,0,0
			Property: "RotationMax", "Vector3D", "",0,0,0
			Property: "RotationMinX", "bool", "",0
			Property: "RotationMinY", "bool", "",0
			Property: "RotationMinZ", "bool", "",0
			Property: "RotationMaxX", "bool", "",0
			Property: "RotationMaxY", "bool", "",0
			Property: "RotationMaxZ", "bool", "",0
			Property: "RotationStiffnessX", "double", "",0
			Property: "RotationStiffnessY", "double", "",0
			Property: "RotationStiffnessZ", "double", "",0
			Property: "MinDampRangeX", "double", "",0
			Property: "MinDampRangeY", "double", "",0
			Property: "MinDampRangeZ", "double", "",0
			Property: "MaxDampRangeX", "double", "",0
			Property: "MaxDampRangeY", "double", "",0
			Property: "MaxDampRangeZ", "double", "",0
			Property: "MinDampStrengthX", "double", "",0
			Property: "MinDampStrengthY", "double", "",0
			Property: "MinDampStrengthZ", "double", "",0
			Property: "MaxDampStrengthX", "double", "",0
			Property: "MaxDampStrengthY", "double", "",0
			Property: "MaxDampStrengthZ", "double", "",0
			Property: "PreferedAngleX", "double", "",0
			Property: "PreferedAngleY", "double", "",0
			Property: "PreferedAngleZ", "double", "",0
			Property: "InheritType", "enum", "",0
			Property: "ScalingActive", "bool", "",0
			Property: "ScalingMin", "Vector3D", "",1,1,1
			Property: "ScalingMax", "Vector3D", "",1,1,1
			Property: "ScalingMinX", "bool", "",0
			Property: "ScalingMinY", "bool", "",0
			Property: "ScalingMinZ", "bool", "",0
			Property: "ScalingMaxX", "bool", "",0
			Property: "ScalingMaxY", "bool", "",0
			Property: "ScalingMaxZ", "bool", "",0
			Property: "GeometricTranslation", "Vector3D", "",0,0,0
			Property: "GeometricRotation", "Vector3D", "",0,0,0
			Property: "GeometricScaling", "Vector3D", "",1,1,1
			Property: "LookAtProperty", "object", ""
			Property: "UpVectorProperty", "object", ""
			Property: "Show", "bool", "",1
			Property: "NegativePercentShapeSupport", "bool", "",1
			Property: "DefaultAttributeIndex", "int", "",0
			Property: "Color", "Color", "A",0.8,0.8,0.8
			Property: "Roll", "Roll", "A+",0
			Property: "FieldOfView", "FieldOfView", "A+",40
			Property: "FieldOfViewX", "FieldOfView", "A+",1
			Property: "FieldOfViewY", "FieldOfView", "A+",1
			Property: "OpticalCenterX", "Real", "A+",0
			Property: "OpticalCenterY", "Real", "A+",0
			Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63
			Property: "TurnTable", "Real", "A+",0
			Property: "DisplayTurnTableIcon", "bool", "",1
			Property: "Motion Blur Intensity", "Real", "A+",1
			Property: "UseMotionBlur", "bool", "",0
			Property: "UseRealTimeMotionBlur", "bool", "",1
			Property: "ResolutionMode", "enum", "",0
			Property: "ApertureMode", "enum", "",2
			Property: "GateFit", "enum", "",0
			Property: "FocalLength", "Real", "A+",21.3544940948486
			Property: "CameraFormat", "enum", "",0
			Property: "AspectW", "double", "",320
			Property: "AspectH", "double", "",200
			Property: "PixelAspectRatio", "double", "",1
			Property: "UseFrameColor", "bool", "",0
			Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
			Property: "ShowName", "bool", "",1
			Property: "ShowGrid", "bool", "",1
			Property: "ShowOpticalCenter", "bool", "",0
			Property: "ShowAzimut", "bool", "",1
			Property: "ShowTimeCode", "bool", "",0
			Property: "NearPlane", "double", "",1.000000
			Property: "FarPlane", "double", "",30000.000000
			Property: "FilmWidth", "double", "",0.816
			Property: "FilmHeight", "double", "",0.612
			Property: "FilmAspectRatio", "double", "",1.33333333333333
			Property: "FilmSqueezeRatio", "double", "",1
			Property: "FilmFormatIndex", "enum", "",4
			Property: "ViewFrustum", "bool", "",1
			Property: "ViewFrustumNearFarPlane", "bool", "",0
			Property: "ViewFrustumBackPlaneMode", "enum", "",2
			Property: "BackPlaneDistance", "double", "",100
			Property: "BackPlaneDistanceMode", "enum", "",0
			Property: "ViewCameraToLookAt", "bool", "",1
			Property: "LockMode", "bool", "",0
			Property: "LockInterestNavigation", "bool", "",0
			Property: "FitImage", "bool", "",0
			Property: "Crop", "bool", "",0
			Property: "Center", "bool", "",1
			Property: "KeepRatio", "bool", "",1
			Property: "BackgroundMode", "enum", "",0
			Property: "BackgroundAlphaTreshold", "double", "",0.5
			Property: "ForegroundTransparent", "bool", "",1
			Property: "DisplaySafeArea", "bool", "",0
			Property: "SafeAreaDisplayStyle", "enum", "",1
			Property: "SafeAreaAspectRatio", "double", "",1.33333333333333
			Property: "Use2DMagnifierZoom", "bool", "",0
			Property: "2D Magnifier Zoom", "Real", "A+",100
			Property: "2D Magnifier X", "Real", "A+",50
			Property: "2D Magnifier Y", "Real", "A+",50
			Property: "CameraProjectionType", "enum", "",1
			Property: "UseRealTimeDOFAndAA", "bool", "",0
			Property: "UseDepthOfField", "bool", "",0
			Property: "FocusSource", "enum", "",0
			Property: "FocusAngle", "double", "",3.5
			Property: "FocusDistance", "double", "",200
			Property: "UseAntialiasing", "bool", "",0
			Property: "AntialiasingIntensity", "double", "",0.77777
			Property: "UseAccumulationBuffer", "bool", "",0
			Property: "FrameSamplingCount", "int", "",7
		}
		MultiLayer: 0
		MultiTake: 0
		Hidden: "True"
		Shading: Y
		Culling: "CullingOff"
		TypeFlags: "Camera"
		GeometryVersion: 124
		Position: -4000.000000,0.000000,0.000000
		Up: 0,1,0
		LookAt: 0,0,0
		ShowInfoOnMoving: 1
		ShowAudio: 0
		AudioColor: 0,1,0
		CameraOrthoZoom: 1
	}
	Material: "Material::Sword", "" {
		Version: 102
		ShadingModel: "lambert"
		MultiLayer: 0
		Properties60:  {
			Property: "ShadingModel", "KString", "", "Lambert"
			Property: "MultiLayer", "bool", "",0
			Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000
			Property: "EmissiveFactor", "double", "",0.0000
			Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000
			Property: "AmbientFactor", "double", "",1.0000
			Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000
			Property: "DiffuseFactor", "double", "",0.8000
			Property: "Bump", "Vector3D", "",0,0,0
			Property: "TransparentColor", "ColorRGB", "",1,1,1
			Property: "TransparencyFactor", "double", "",0.0000
			Property: "Emissive", "ColorRGB", "",0,0,0
			Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0
			Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8
			Property: "Opacity", "double", "",1.0
		}
	}
	Pose: "Pose::BIND_POSES", "BindPose" {
		Type: "BindPose"
		Version: 100
		Properties60:  {
		}
		NbPoseNodes: 1
		PoseNode:  {
			Node: "Model::Sword"
			Matrix: 0.000000075497901,0.000000000000000,-1.000000000000000,0.000000000000000,-1.000000000000000,0.000000000000000,-0.000000075497901,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000
		}
	}
	GlobalSettings:  {
		Version: 1000
		Properties60:  {
			Property: "UpAxis", "int", "",1
			Property: "UpAxisSign", "int", "",1
			Property: "FrontAxis", "int", "",2
			Property: "FrontAxisSign", "int", "",1
			Property: "CoordAxis", "int", "",0
			Property: "CoordAxisSign", "int", "",1
			Property: "UnitScaleFactor", "double", "",1
		}
	}
}

; Object relations
;------------------------------------------------------------------

Relations:  {
	Model: "Model::Sword", "Mesh" {
	}
	Model: "Model::Producer Perspective", "Camera" {
	}
	Model: "Model::Producer Top", "Camera" {
	}
	Model: "Model::Producer Bottom", "Camera" {
	}
	Model: "Model::Producer Front", "Camera" {
	}
	Model: "Model::Producer Back", "Camera" {
	}
	Model: "Model::Producer Right", "Camera" {
	}
	Model: "Model::Producer Left", "Camera" {
	}
	Model: "Model::Camera Switcher", "CameraSwitcher" {
	}
	Material: "Material::Sword", "" {
	}
}

; Object connections
;------------------------------------------------------------------

Connections:  {
	Connect: "OO", "Model::Sword", "Model::Scene"
	Connect: "OO", "Material::Sword", "Model::Sword"
}
;Takes and animation section
;----------------------------------------------------

Takes:  {
	Current: "Default Take"
	Take: "Default Take" {
		FileName: "Default_Take.tak"
		LocalTime: 0,479181389250
		ReferenceTime: 0,479181389250

		;Models animation
		;----------------------------------------------------
		Model: "Model::Sword" {
			Version: 1.1
			Channel: "Transform" {
				Channel: "T" {
					Channel: "X" {
						Default: 0.000000000000000
						KeyVer: 4005
						KeyCount: 1
						Key: 
							1924423250,0.000000000000000,L
						Color: 1,0,0
					}
					Channel: "Y" {
						Default: 0.000000000000000
						KeyVer: 4005
						KeyCount: 1
						Key: 
							1924423250,0.000000000000000,L
						Color: 0,1,0
					}
					Channel: "Z" {
						Default: 0.000000000000000
						KeyVer: 4005
						KeyCount: 1
						Key: 
							1924423250,0.000000000000000,L
						Color: 0,0,1
					}
					LayerType: 1
				}
				Channel: "R" {
					Channel: "X" {
						Default: -90.000002504348856
						KeyVer: 4005
						KeyCount: 1
						Key: 
							1924423250,-90.000002504348856,L
						Color: 1,0,0
					}
					Channel: "Y" {
						Default: -0.000000000000000
						KeyVer: 4005
						KeyCount: 1
						Key: 
							1924423250,-0.000000000000000,L
						Color: 0,1,0
					}
					Channel: "Z" {
						Default: 0.000000000000000
						KeyVer: 4005
						KeyCount: 1
						Key: 
							1924423250,0.000000000000000,L
						Color: 0,0,1
					}
					LayerType: 2
				}
				Channel: "S" {
					Channel: "X" {
						Default: 1.000000000000000
						KeyVer: 4005
						KeyCount: 1
						Key: 
							1924423250,1.000000000000000,L
						Color: 1,0,0
					}
					Channel: "Y" {
						Default: 1.000000000000000
						KeyVer: 4005
						KeyCount: 1
						Key: 
							1924423250,1.000000000000000,L
						Color: 0,1,0
					}
					Channel: "Z" {
						Default: 1.000000000000000
						KeyVer: 4005
						KeyCount: 1
						Key: 
							1924423250,1.000000000000000,L
						Color: 0,0,1
					}
					LayerType: 3
				}
			}
		}
	}
}
;Version 5 settings
;------------------------------------------------------------------

Version5:  {
	AmbientRenderSettings:  {
		Version: 101
		AmbientLightColor: 0.0,0.0,0.0,0
	}
	FogOptions:  {
		FogEnable: 0
		FogMode: 0
		FogDensity: 0.000
		FogStart: 5.000
		FogEnd: 25.000
		FogColor: 0.1,0.1,0.1,1
	}
	Settings:  {
		FrameRate: "24"
		TimeFormat: 1
		SnapOnFrames: 0
		ReferenceTimeIndex: -1
		TimeLineStartTime: 0
		TimeLineStopTime: 479181389250
	}
	RendererSetting:  {
		DefaultCamera: "Producer Perspective"
		DefaultViewingMode: 0
	}
}

Commits for Nextrek/SpaceCrew/SpaceCrew/Assets/AdventureCreator/Demo/Models/Props/Sword/Sword.fbx

Diff revisions: vs.
Revision Author Commited Message
83 FMMortaroli picture FMMortaroli Tue 13 May, 2014 11:32:51 +0000