Socialify

Folder ..

Viewing bishop.fbx
3605 lines (3594 loc) • 345.5 KB

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
; FBX 6.1.0 project file
; Created by Blender FBX Exporter
; for support mail: [email protected]
; ----------------------------------------------------

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

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

Definitions:  {
	Version: 100
	Count: 14
	ObjectType: "Model" {
		Count: 9
	}
	ObjectType: "Geometry" {
		Count: 1
	}
	ObjectType: "Material" {
		Count: 2
	}
	ObjectType: "Texture" {
		Count: 1
	}
	ObjectType: "Video" {
		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::BezierCircle_001", "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.013627,-0.133041,0.118590,-0.835072,-0.745511,0.135312,-0.105082,-0.015522,0.106083,-0.636240,-0.755654,0.104627,-0.828668,-0.709254,0.086492,-0.226500,-0.107087,0.065356,-0.133041,-0.013627,0.118590
		,-0.644400,-0.524987,0.097415,-0.755654,-0.636240,0.104627,-0.709255,-0.828667,0.086492,-0.524987,-0.644400,0.097415,-0.310348,-0.429762,0.057494,-0.204682,-0.115122,0.048151,-0.523309,-0.433749,0.134085
		,-0.236842,-0.147282,0.128443,-0.107087,-0.226500,0.065356,-0.233160,-0.352573,0.096226,-0.010681,-0.130094,0.223594,-0.048380,-0.167794,0.151943,-0.724767,-0.844180,0.121998,-0.125464,-0.244877,0.111237
		,-0.130094,-0.010681,0.223594,-0.664237,-0.753797,0.155680,-0.812525,-0.900752,0.066273,-0.855025,-0.766798,0.009632,-0.761893,-0.879528,0.021769,-0.780654,-0.691094,0.085453,-0.718364,-0.807923,0.073178
		,-0.737162,-0.647602,0.090704,-0.336010,-0.246450,0.033973,-0.115122,-0.204682,0.048151,-0.060656,0.028904,0.148278,-0.015522,-0.105082,0.106083,-0.005289,-0.124703,0.269477,-0.083805,-0.203219,0.128882
		,-0.022801,-0.142215,0.182740,-0.248533,-0.338093,0.113204,-0.130938,-0.041378,0.228407,-0.041378,-0.130938,0.228407,-0.076339,-0.165899,0.164450,-0.165899,-0.076339,0.164450,-0.811797,-0.692384,0.134847
		,-0.428130,-0.308716,0.101701,-0.203219,-0.083805,0.128882,-0.753797,-0.664237,0.155680,-0.647602,-0.737162,0.090704,-0.430010,-0.519570,0.059746,-0.433749,-0.523309,0.134085,-0.288594,-0.169181,0.100041
		,-0.637683,-0.548123,0.152504,-0.650371,-0.530957,0.137480,-0.766798,-0.855025,0.009632,-0.745511,-0.835071,0.135312,-0.807924,-0.718363,0.073178,-0.868473,-0.749059,0.102756,-0.860979,-0.771418,0.115940
		,-0.749060,-0.868473,0.102756,-0.537675,-0.627234,0.082391,-0.627234,-0.537674,0.082391,-0.147282,-0.236842,0.128443,-0.338093,-0.248533,0.113204,-0.124703,-0.005290,0.269477,-0.057552,-0.176966,0.086424
		,0.027493,-0.091920,0.156305,-0.530958,-0.650371,0.137480,-0.429762,-0.310348,0.057494,-0.415885,-0.535298,0.075676,-0.535298,-0.415884,0.075676,-0.277683,-0.158269,0.053925,-0.158269,-0.277683,0.053925
		,-0.680590,-0.800004,0.098924,-0.879528,-0.761892,0.021769,-0.905658,-0.788022,0.054136,-0.765159,-0.645746,0.141757,-0.244877,-0.125464,0.111237,-0.167794,-0.048380,0.151943,-0.109067,0.010346,0.217177
		,-0.848653,-0.729239,0.067598,-0.729240,-0.848653,0.067598,0.010346,-0.109067,0.217177,-0.788022,-0.905657,0.054136,-0.645746,-0.765159,0.141757,-0.844181,-0.724767,0.121998,-0.091920,0.027493,0.156305
		,-0.800004,-0.680590,0.098924,-0.176966,-0.057552,0.086424,-0.412591,-0.323031,0.118278,-0.323031,-0.412591,0.118278,-0.801293,-0.711733,0.148319,-0.711733,-0.801293,0.148319,-0.900752,-0.812525,0.066273
		,-0.691094,-0.780654,0.085453,-0.152194,-0.062634,0.070502,-0.062634,-0.152194,0.070502,0.028904,-0.060656,0.148278,-0.124980,-0.035420,0.271075,-0.035419,-0.124980,0.271075,-0.198137,-0.108577,0.144804
		,-0.142657,-0.053097,0.191083,-0.108577,-0.198137,0.144804,-0.053097,-0.142657,0.191083,-0.519570,-0.430010,0.059746,-0.415447,-0.325887,0.040917,-0.246450,-0.336010,0.033973,-0.325887,-0.415447,0.040917
		,-0.548123,-0.637683,0.152504,-0.352573,-0.233160,0.096226,-0.351383,-0.231969,0.050951,-0.736734,-0.826294,0.054414,-0.826294,-0.736734,0.054414,-0.771419,-0.860978,0.115940,-0.258664,-0.169104,0.036632
		,-0.169104,-0.258664,0.036632,-0.188200,-0.277760,0.117335,-0.277760,-0.188200,0.117335,-0.231969,-0.351383,0.050951,0.008755,-0.110659,0.255336,-0.110658,0.008755,0.255336,-0.169181,-0.288594,0.100041
		,-0.537435,-0.418021,0.118155,-0.418021,-0.537434,0.118155,-0.308716,-0.428129,0.101701,-0.692384,-0.811797,0.134847,-0.142215,-0.022801,0.182740,-0.879350,-0.766503,0.020117,-0.766503,-0.879350,0.020117
		,-0.899766,-0.815130,0.062208,-0.815131,-0.899765,0.062208,-0.771194,-0.855829,0.008638,-0.791610,-0.904456,0.050728,-0.904457,-0.791609,0.050728,-0.855829,-0.771193,0.008638,-0.133041,0.013627,0.118590
		,-0.745510,0.835072,0.135312,-0.015521,0.105081,0.106083,-0.755653,0.636241,0.104627,-0.709253,0.828668,0.086492,-0.107086,0.226500,0.065356,-0.013627,0.133040,0.118590,-0.524986,0.644400,0.097415
		,-0.636239,0.755654,0.104627,-0.828667,0.709255,0.086492,-0.644400,0.524987,0.097415,-0.429761,0.310348,0.057495,-0.115122,0.204682,0.048151,-0.433748,0.523309,0.134085,-0.147282,0.236842,0.128443
		,-0.226500,0.107086,0.065356,-0.352573,0.233160,0.096226,-0.130094,0.010681,0.223594,-0.167794,0.048380,0.151943,-0.844180,0.724768,0.121998,-0.244877,0.125464,0.111237,-0.010681,0.130094,0.223594
		,-0.753797,0.664237,0.155680,-0.900751,0.812526,0.066273,-0.766797,0.855025,0.009632,-0.879527,0.761893,0.021769,-0.691093,0.780654,0.085453,-0.807923,0.718364,0.073178,-0.647601,0.737162,0.090704
		,-0.246449,0.336010,0.033973,-0.204682,0.115122,0.048151,0.028904,0.060656,0.148278,-0.105082,0.015521,0.106083,-0.124703,0.005289,0.269477,-0.203219,0.083805,0.128882,-0.142215,0.022801,0.182740
		,-0.338092,0.248533,0.113204,-0.041378,0.130937,0.228407,-0.130938,0.041377,0.228407,-0.165899,0.076339,0.164450,-0.076339,0.165899,0.164450,-0.692383,0.811798,0.134847,-0.308716,0.428130,0.101701
		,-0.083805,0.203218,0.128882,-0.664236,0.753797,0.155680,-0.737162,0.647603,0.090704,-0.519570,0.430010,0.059746,-0.523309,0.433749,0.134085,-0.169181,0.288594,0.100041,-0.548123,0.637683,0.152504
		,-0.530957,0.650371,0.137480,-0.855024,0.766799,0.009632,-0.835070,0.745512,0.135312,-0.718363,0.807924,0.073178,-0.749058,0.868473,0.102756,-0.771417,0.860979,0.115940,-0.868472,0.749060,0.102756
		,-0.627234,0.537675,0.082391,-0.537674,0.627235,0.082391,-0.236842,0.147282,0.128443,-0.248532,0.338093,0.113204,-0.005289,0.124703,0.269477,-0.176966,0.057552,0.086424,-0.091920,-0.027494,0.156305
		,-0.650370,0.530958,0.137480,-0.310348,0.429762,0.057495,-0.535298,0.415885,0.075676,-0.415884,0.535298,0.075676,-0.158269,0.277682,0.053925,-0.277683,0.158269,0.053925,-0.800003,0.680591,0.098924
		,-0.761891,0.879528,0.021769,-0.788021,0.905658,0.054136,-0.645745,0.765159,0.141757,-0.125464,0.244877,0.111237,-0.048380,0.167793,0.151943,0.010346,0.109067,0.217177,-0.729239,0.848654,0.067598
		,-0.848652,0.729240,0.067598,-0.109067,-0.010346,0.217177,-0.905657,0.788023,0.054136,-0.765159,0.645746,0.141757,-0.724766,0.844181,0.121998,0.027493,0.091920,0.156305,-0.680589,0.800004,0.098924
		,-0.057552,0.176966,0.086424,-0.323030,0.412591,0.118278,-0.412591,0.323031,0.118278,-0.711732,0.801294,0.148319,-0.801292,0.711734,0.148319,-0.812524,0.900752,0.066273,-0.780654,0.691095,0.085453
		,-0.062634,0.152194,0.070502,-0.152194,0.062634,0.070502,-0.060656,-0.028904,0.148278,-0.035419,0.124979,0.271075,-0.124980,0.035419,0.271075,-0.108577,0.198137,0.144804,-0.053097,0.142657,0.191083
		,-0.198137,0.108577,0.144804,-0.142657,0.053097,0.191083,-0.430009,0.519570,0.059746,-0.325887,0.415447,0.040917,-0.336009,0.246450,0.033973,-0.415447,0.325887,0.040917,-0.637683,0.548123,0.152504
		,-0.233159,0.352573,0.096226,-0.231969,0.351383,0.050951,-0.826293,0.736735,0.054414,-0.736733,0.826294,0.054414,-0.860978,0.771419,0.115940,-0.169104,0.258664,0.036632,-0.258664,0.169104,0.036632
		,-0.277759,0.188199,0.117335,-0.188199,0.277759,0.117335,-0.351382,0.231969,0.050951,-0.110658,-0.008755,0.255336,0.008755,0.110658,0.255336,-0.288594,0.169181,0.100041,-0.418021,0.537435,0.118155
		,-0.537434,0.418021,0.118155,-0.428129,0.308716,0.101701,-0.811797,0.692384,0.134847,-0.022801,0.142214,0.182740,-0.766502,0.879350,0.020117,-0.879349,0.766503,0.020117,-0.815130,0.899766,0.062208
		,-0.899765,0.815131,0.062208,-0.855828,0.771194,0.008638,-0.904456,0.791610,0.050728,-0.791609,0.904457,0.050728,-0.771193,0.855829,0.008638,0.013627,0.133040,0.118590,0.835072,0.745510,0.135312
		,0.105081,0.015521,0.106083,0.636241,0.755652,0.104627,0.828669,0.709252,0.086492,0.226500,0.107086,0.065356,0.133040,0.013627,0.118590,0.644401,0.524985,0.097415,0.755654,0.636239,0.104627
		,0.709255,0.828666,0.086492,0.524988,0.644399,0.097415,0.310349,0.429761,0.057495,0.204682,0.115121,0.048151,0.523309,0.433748,0.134085,0.236842,0.147281,0.128443,0.107087,0.226500,0.065356
		,0.233160,0.352572,0.096226,0.010681,0.130094,0.223594,0.048380,0.167793,0.151943,0.724768,0.844179,0.121998,0.125464,0.244877,0.111237,0.130094,0.010680,0.223594,0.664238,0.753796,0.155680
		,0.812526,0.900750,0.066273,0.855026,0.766796,0.009632,0.761893,0.879526,0.021769,0.780655,0.691093,0.085453,0.718365,0.807922,0.073178,0.737163,0.647601,0.090704,0.336010,0.246449,0.033973
		,0.115122,0.204681,0.048151,0.060656,-0.028904,0.148278,0.015521,0.105081,0.106083,0.005289,0.124703,0.269477,0.083805,0.203218,0.128882,0.022801,0.142214,0.182740,0.248533,0.338092,0.113204
		,0.130938,0.041377,0.228407,0.041378,0.130937,0.228407,0.076339,0.165899,0.164450,0.165899,0.076339,0.164450,0.811798,0.692382,0.134847,0.428130,0.308715,0.101701,0.203219,0.083805,0.128882
		,0.753798,0.664236,0.155680,0.647603,0.737161,0.090704,0.430011,0.519569,0.059746,0.433750,0.523308,0.134085,0.288594,0.169180,0.100041,0.637684,0.548122,0.152504,0.650371,0.530956,0.137480
		,0.766799,0.855023,0.009632,0.745512,0.835070,0.135312,0.807925,0.718362,0.073178,0.868474,0.749058,0.102756,0.860979,0.771417,0.115940,0.749061,0.868471,0.102756,0.537675,0.627233,0.082391
		,0.627235,0.537673,0.082391,0.147282,0.236841,0.128443,0.338093,0.248532,0.113204,0.124703,0.005289,0.269477,0.057552,0.176965,0.086424,-0.027493,0.091920,0.156305,0.530958,0.650370,0.137480
		,0.429762,0.310347,0.057495,0.415885,0.535297,0.075676,0.535298,0.415883,0.075676,0.277683,0.158269,0.053925,0.158269,0.277682,0.053925,0.680591,0.800002,0.098924,0.879529,0.761891,0.021769
		,0.905659,0.788020,0.054136,0.765160,0.645744,0.141757,0.244877,0.125463,0.111237,0.167794,0.048380,0.151943,0.109067,-0.010347,0.217177,0.848654,0.729238,0.067598,0.729241,0.848651,0.067598
		,-0.010346,0.109067,0.217177,0.788023,0.905656,0.054136,0.645747,0.765158,0.141757,0.844182,0.724765,0.121998,0.091920,-0.027494,0.156305,0.800004,0.680588,0.098924,0.176966,0.057552,0.086424
		,0.412591,0.323030,0.118278,0.323031,0.412590,0.118278,0.801294,0.711731,0.148319,0.711734,0.801292,0.148319,0.900753,0.812523,0.066273,0.691095,0.780653,0.085453,0.152194,0.062634,0.070502
		,0.062634,0.152194,0.070502,-0.028904,0.060656,0.148278,0.124979,0.035419,0.271075,0.035419,0.124979,0.271075,0.198137,0.108576,0.144804,0.142657,0.053097,0.191083,0.108577,0.198136,0.144804
		,0.053097,0.142657,0.191083,0.519570,0.430009,0.059746,0.415447,0.325886,0.040917,0.246450,0.336009,0.033973,0.325888,0.415446,0.040917,0.548124,0.637682,0.152504,0.352573,0.233159,0.096226
		,0.351383,0.231968,0.050951,0.736735,0.826293,0.054414,0.826295,0.736732,0.054414,0.771420,0.860977,0.115940,0.258664,0.169103,0.036632,0.169104,0.258664,0.036632,0.188200,0.277759,0.117335
		,0.277760,0.188199,0.117335,0.231970,0.351382,0.050951,-0.008755,0.110658,0.255336,0.110658,-0.008755,0.255336,0.169181,0.288594,0.100041,0.537435,0.418020,0.118155,0.418022,0.537433,0.118155
		,0.308717,0.428129,0.101701,0.692385,0.811796,0.134847,0.142215,0.022801,0.182740,0.879351,0.766501,0.020117,0.766504,0.879348,0.020117,0.899767,0.815129,0.062208,0.815132,0.899764,0.062208
		,0.771195,0.855827,0.008638,0.791611,0.904455,0.050728,0.904458,0.791608,0.050728,0.855830,0.771192,0.008638,0.133040,-0.013628,0.118590,0.745509,-0.835073,0.135312,0.015521,-0.105082,0.106083
		,0.755652,-0.636242,0.104627,0.709252,-0.828669,0.086492,0.107086,-0.226500,0.065356,0.013627,-0.133041,0.118590,0.524985,-0.644401,0.097415,0.636238,-0.755655,0.104627,0.828666,-0.709256,0.086492
		,0.644399,-0.524988,0.097415,0.429761,-0.310349,0.057495,0.115121,-0.204682,0.048151,0.433748,-0.523310,0.134085,0.147281,-0.236842,0.128443,0.226500,-0.107087,0.065356,0.352572,-0.233160,0.096226
		,0.130094,-0.010681,0.223594,0.167793,-0.048381,0.151943,0.844179,-0.724769,0.121998,0.244877,-0.125464,0.111237,0.010680,-0.130094,0.223594,0.753796,-0.664239,0.155680,0.900750,-0.812527,0.066273
		,0.766796,-0.855027,0.009632,0.879526,-0.761894,0.021769,0.691092,-0.780656,0.085453,0.807922,-0.718365,0.073178,0.647600,-0.737164,0.090704,0.246449,-0.336010,0.033973,0.204681,-0.115122,0.048151
		,-0.028904,-0.060656,0.148278,0.105081,-0.015522,0.106083,0.124703,-0.005290,0.269477,0.203218,-0.083806,0.128882,0.142215,-0.022802,0.182740,0.338092,-0.248533,0.113204,0.041377,-0.130938,0.228407
		,0.130937,-0.041378,0.228407,0.165899,-0.076340,0.164450,0.076339,-0.165900,0.164450,0.692382,-0.811799,0.134847,0.308715,-0.428130,0.101701,0.083805,-0.203219,0.128882,0.664235,-0.753798,0.155680
		,0.737161,-0.647604,0.090704,0.519569,-0.430011,0.059746,0.523308,-0.433750,0.134085,0.169180,-0.288595,0.100041,0.548121,-0.637685,0.152504,0.530956,-0.650372,0.137480,0.855023,-0.766800,0.009632
		,0.835069,-0.745513,0.135312,0.718361,-0.807925,0.073178,0.749057,-0.868474,0.102756,0.771416,-0.860980,0.115940,0.868471,-0.749061,0.102756,0.627233,-0.537676,0.082391,0.537673,-0.627236,0.082391
		,0.236841,-0.147282,0.128443,0.248532,-0.338093,0.113204,0.005289,-0.124703,0.269477,0.176966,-0.057553,0.086424,0.091920,0.027493,0.156305,0.650369,-0.530959,0.137480,0.310347,-0.429763,0.057495
		,0.535297,-0.415886,0.075676,0.415883,-0.535299,0.075676,0.158268,-0.277683,0.053925,0.277682,-0.158270,0.053925,0.800002,-0.680592,0.098924,0.761890,-0.879530,0.021769,0.788020,-0.905659,0.054136
		,0.645744,-0.765161,0.141757,0.125463,-0.244877,0.111237,0.048380,-0.167794,0.151943,-0.010347,-0.109067,0.217177,0.729237,-0.848655,0.067598,0.848651,-0.729242,0.067598,0.109067,0.010346,0.217177
		,0.905656,-0.788024,0.054136,0.765157,-0.645747,0.141757,0.724765,-0.844182,0.121998,-0.027494,-0.091920,0.156305,0.680588,-0.800005,0.098924,0.057552,-0.176966,0.086424,0.323030,-0.412592,0.118278
		,0.412590,-0.323032,0.118278,0.711731,-0.801295,0.148319,0.801291,-0.711735,0.148319,0.812523,-0.900754,0.066273,0.780653,-0.691096,0.085453,0.062634,-0.152195,0.070502,0.152194,-0.062635,0.070502
		,0.060656,0.028904,0.148278,0.035419,-0.124980,0.271075,0.124979,-0.035420,0.271075,0.108576,-0.198137,0.144804,0.053097,-0.142657,0.191083,0.198136,-0.108577,0.144804,0.142657,-0.053098,0.191083
		,0.430009,-0.519571,0.059746,0.325886,-0.415448,0.040917,0.336009,-0.246450,0.033973,0.415446,-0.325888,0.040917,0.637682,-0.548125,0.152504,0.233159,-0.352573,0.096226,0.231968,-0.351383,0.050951
		,0.826292,-0.736736,0.054414,0.736732,-0.826296,0.054414,0.860976,-0.771420,0.115940,0.169103,-0.258665,0.036632,0.258664,-0.169105,0.036632,0.277759,-0.188200,0.117335,0.188199,-0.277760,0.117335
		,0.351382,-0.231970,0.050951,0.110658,0.008755,0.255336,-0.008755,-0.110658,0.255336,0.288594,-0.169182,0.100041,0.418020,-0.537435,0.118155,0.537433,-0.418022,0.118155,0.428129,-0.308717,0.101701
		,0.811795,-0.692386,0.134847,0.022801,-0.142215,0.182740,0.766501,-0.879352,0.020117,0.879348,-0.766505,0.020117,0.815128,-0.899768,0.062208,0.899763,-0.815133,0.062208,0.855827,-0.771196,0.008638
		,0.904455,-0.791612,0.050728,0.791607,-0.904458,0.050728,0.771191,-0.855831,0.008638,-0.085157,0.035273,1.661105,-0.085157,0.035273,1.776306,-0.035273,0.085157,1.776306,-0.035273,0.085157,1.661105
		,-0.040730,0.098330,1.718705,0.035273,0.085157,1.776306,0.040730,0.098330,1.718705,0.098330,0.040730,1.718705,0.085157,0.035273,1.661105,0.085157,-0.035273,1.661105,0.035273,-0.085157,1.661105
		,0.040730,-0.098330,1.718705,0.035273,-0.085157,1.776306,-0.035273,-0.085157,1.661105,-0.021243,0.051285,1.817807,0.051285,0.021243,1.817807,0.051285,-0.021243,1.817807,-0.021243,-0.051285,1.817807
		,-0.051285,-0.021243,1.817807,0.090478,-0.218406,0.254549,0.181181,0.437384,0.641113,0.210712,0.508679,0.761411,0.158315,0.382182,1.307752,-0.285497,-0.118268,0.559616,0.437384,0.181181,0.641113
		,0.508679,0.210712,0.761411,0.456729,0.189194,1.201371,0.382182,0.158315,1.307753,0.233808,0.096856,1.457375,-0.090477,-0.218406,0.254549,-0.142552,0.344125,0.478159,0.437384,-0.181181,0.641113
		,0.508679,-0.210712,0.761411,0.382182,-0.158315,1.307753,0.233809,-0.096856,1.457375,0.344125,0.142552,0.478159,0.118268,0.285497,0.559616,0.181181,-0.437384,0.641113,0.210713,-0.508679,0.761411
		,0.221723,-0.535260,0.960858,-0.142552,-0.344125,0.478159,-0.344125,0.142552,0.478159,-0.181181,-0.437384,0.641113,-0.210712,-0.508679,0.761411,-0.158315,-0.382182,1.307752,-0.096856,-0.233808,1.457375
		,-0.118268,0.285497,0.559616,-0.437384,-0.181181,0.641113,-0.508678,-0.210713,0.761411,-0.456729,-0.189194,1.201371,-0.382182,-0.158315,1.307753,0.218406,0.090478,0.254549,-0.218406,-0.090478,0.254549
		,-0.437384,0.181181,0.641113,-0.508679,0.210712,0.761411,-0.382182,0.158315,1.307753,-0.090478,0.218406,0.254549,-0.162254,0.391691,0.605835,-0.181181,0.437384,0.641113,-0.210712,0.508679,0.761411
		,-0.221723,0.535260,0.960858,-0.456729,0.189193,1.201371,0.221723,0.535260,0.960858,0.535260,-0.221723,0.960858,0.456729,-0.189194,1.201371,-0.189193,-0.456729,1.201371,0.189194,0.456729,1.201371
		,-0.535260,-0.221723,0.960858,-0.189194,0.456729,1.201371,0.535260,0.221723,0.960858,0.189194,-0.456729,1.201371,-0.535260,0.221723,0.960858,-0.221723,-0.535260,0.960858,-0.344125,-0.142553,0.478159
		,0.285497,-0.118268,0.559616,0.285497,0.118268,0.559616,0.344125,-0.142552,0.478159,-0.285497,0.118268,0.559616,0.090478,0.218406,0.254549,0.218406,-0.090478,0.254549,-0.218406,0.090477,0.254549
		,-0.375448,0.155526,0.404174,-0.330082,0.136735,0.332498,-0.375448,-0.155527,0.404174,-0.330082,-0.136736,0.332498,-0.136735,0.330082,0.332498,-0.155527,0.375448,0.404174,0.155527,0.375448,0.404174
		,0.136735,0.330082,0.332498,-0.136735,-0.330082,0.332498,-0.155526,-0.375448,0.404174,0.375448,0.155527,0.404174,0.330082,0.136735,0.332498,0.136736,-0.330082,0.332498,0.155527,-0.375448,0.404174
		,0.375448,-0.155527,0.404174,0.330082,-0.136735,0.332498,0.134355,-0.324338,0.392377,0.152854,-0.368996,0.401716,0.152854,0.368996,0.401716,-0.324338,0.134355,0.392377,-0.369734,0.153159,0.424544
		,-0.369733,-0.153160,0.424544,-0.153160,0.369733,0.424544,0.369733,0.153160,0.424544,0.369734,-0.153160,0.424544,-0.365097,0.151239,0.378907,0.151239,0.365097,0.378906,-0.365097,-0.151240,0.378906
		,-0.151239,0.365097,0.378906,-0.151239,-0.365097,0.378906,0.365098,-0.151239,0.378906,0.365097,0.151239,0.378906,0.151239,-0.365097,0.378906,-0.054443,0.000000,1.818140,-0.092462,0.000000,1.661105
		,-0.038497,0.038497,1.818140,-0.065380,0.065380,1.776306,-0.065380,0.065380,1.661105,-0.051285,0.021243,1.817807,-0.051285,0.021243,1.619603,-0.098330,0.040730,1.718705,-0.000000,0.106766,1.718705
		,-0.000000,0.092462,1.661105,-0.021243,0.051285,1.619603,0.038497,0.038497,1.818140,0.065380,0.065380,1.776306,0.075495,0.075495,1.718705,0.065380,0.065380,1.661105,0.021243,0.051285,1.619603
		,0.021243,0.051285,1.817807,0.035273,0.085157,1.661105,0.054443,-0.000000,1.818140,0.092462,-0.000000,1.661105,0.085157,0.035273,1.776306,0.051285,0.021243,1.619603,0.075495,-0.075495,1.718705
		,0.051285,-0.021243,1.619603,0.098330,-0.040730,1.718705,0.085157,-0.035273,1.776306,-0.000000,-0.054443,1.818140,-0.000000,-0.092462,1.661105,0.021243,-0.051285,1.817807,0.021243,-0.051285,1.619603
		,-0.075495,-0.075495,1.718705,-0.065380,-0.065380,1.661105,-0.021243,-0.051285,1.619603,-0.035273,-0.085157,1.776306,-0.040730,-0.098330,1.718705,-0.000000,0.054443,1.818140,-0.098330,-0.040730,1.718705
		,-0.085157,-0.035273,1.776306,-0.051285,-0.021243,1.619603,-0.085157,-0.035273,1.661105,0.057222,0.138119,0.218201,0.096857,-0.233808,1.457375,-0.096856,0.233808,1.457375,0.158315,-0.382182,1.307752
		,-0.264222,-0.264222,0.478159,0.237131,-0.000000,0.254549,-0.233808,-0.096857,1.457375,-0.391691,-0.162255,0.605835,-0.057222,0.138119,0.218202,-0.552306,-0.000000,0.761411,-0.057222,-0.138119,0.218202
		,0.000000,-0.581167,0.960858,-0.179522,0.179522,1.457375,0.391691,0.162254,0.605835,0.057222,-0.138119,0.218201,0.514343,0.213059,1.081290,0.000000,0.237131,0.254549,0.118670,0.286468,0.292210
		,0.096856,0.233808,1.457375,0.118670,-0.286469,0.292210,-0.167698,-0.167699,0.254549,-0.138119,-0.057222,0.218202,0.350674,0.350674,1.201371,0.213059,-0.514343,1.081290,-0.118670,-0.286469,0.292210
		,0.293439,0.293439,1.307752,0.335822,0.335822,0.641113,0.414959,0.000000,1.307753,0.529899,0.219502,0.850692,-0.391691,0.162254,0.605835,0.552306,0.000000,0.761411,-0.335822,-0.335823,0.641113
		,0.162254,0.391691,0.605835,0.197292,0.476280,0.691917,-0.213059,0.514343,1.081290,0.000000,-0.425282,0.605835,-0.390560,-0.390560,0.761411,0.197293,-0.476280,0.691917,0.167699,-0.167699,0.254549
		,0.219502,0.529899,0.850692,0.000000,-0.474895,0.641113,0.391691,-0.162254,0.605835,0.425282,0.000000,0.605835,-0.219502,0.529899,0.850692,0.476280,0.197292,0.691917,-0.118268,-0.285497,0.559616
		,0.474895,0.000000,0.641113,0.286469,-0.118670,0.292210,-0.197292,0.476280,0.691917,0.293439,-0.293439,1.307753,-0.167699,0.167699,0.254549,-0.474895,-0.000000,0.641113,0.476280,-0.197292,0.691917
		,0.000000,-0.414958,1.307752,0.390560,0.390560,0.761411,-0.158315,0.382182,1.307752,0.000000,0.552306,0.761411,-0.495900,-0.000000,1.201371,0.529899,-0.219502,0.850692,-0.476280,-0.197293,0.691917
		,0.000000,0.581167,0.960858,-0.162254,-0.391691,0.605835,-0.529899,0.219502,0.850692,-0.138119,0.057222,0.218202,0.142552,0.344125,0.478159,-0.476280,0.197292,0.691917,-0.237131,-0.000000,0.254549
		,0.142553,-0.344125,0.478159,-0.233808,0.096856,1.457375,0.219502,-0.529899,0.850692,-0.197292,-0.476280,0.691917,0.138119,0.057222,0.218201,0.000000,-0.552306,0.761411,0.000000,0.474895,0.641113
		,0.495900,0.000000,1.201371,-0.410969,0.410969,0.960858,-0.514343,-0.213059,1.081290,0.138119,-0.057222,0.218201,0.390560,-0.390560,0.761411,0.335823,-0.335822,0.641113,-0.390560,0.390560,0.761411
		,0.162255,-0.391691,0.605835,-0.179522,-0.179523,1.457375,-0.350674,-0.350675,1.201371,0.179522,0.179522,1.457375,-0.293439,-0.293440,1.307752,-0.335822,0.335822,0.641113,0.000000,-0.237131,0.254549
		,0.410969,-0.410969,0.960858,-0.219502,-0.529899,0.850692,-0.529899,-0.219503,0.850692,0.514343,-0.213059,1.081290,0.000000,-0.495900,1.201371,-0.410969,-0.410969,0.960858,0.410969,0.410969,0.960858
		,0.213059,0.514343,1.081290,-0.514343,0.213058,1.081290,0.581167,0.000000,0.960858,0.000000,0.495900,1.201371,-0.350674,0.350674,1.201371,-0.581167,-0.000000,0.960858,0.350674,-0.350674,1.201371
		,-0.213058,-0.514343,1.081290,0.000000,-0.309978,0.559616,0.118268,-0.285497,0.559616,-0.373635,-0.000000,0.478159,0.219209,0.219209,0.559616,-0.264222,0.264222,0.478159,0.264222,0.264222,0.478159
		,-0.118670,0.286468,0.292210,-0.286469,0.118670,0.292210,0.167699,0.167699,0.254549,-0.286468,-0.118670,0.292210,0.286469,0.118670,0.292210,-0.288271,0.288270,0.404174,-0.368996,0.152854,0.401716
		,-0.407646,-0.000000,0.404174,-0.361161,0.149608,0.382620,-0.253440,0.253440,0.332498,-0.358388,-0.000000,0.332498,-0.368996,-0.152854,0.401716,-0.288270,-0.288271,0.404174,-0.361161,-0.149609,0.382620
		,-0.253440,-0.253440,0.332498,-0.149608,0.361161,0.382620,0.000000,0.358388,0.332498,0.000000,0.407646,0.404174,-0.152854,0.368996,0.401716,0.288271,0.288271,0.404174,0.149608,0.361161,0.382620
		,0.253440,0.253440,0.332498,-0.149608,-0.361161,0.382620,0.000000,-0.358388,0.332498,-0.152854,-0.368996,0.401716,0.000000,-0.407646,0.404174,0.407646,0.000000,0.404174,0.368996,0.152854,0.401716
		,0.361161,0.149608,0.382620,0.358388,-0.000000,0.332498,0.149609,-0.361161,0.382620,0.253440,-0.253440,0.332498,0.288271,-0.288270,0.404174,0.368996,-0.152854,0.401716,0.361161,-0.149608,0.382620
		,0.400640,-0.000000,0.401716,0.283316,-0.283316,0.401716,0.000000,-0.352152,0.392377,-0.324338,-0.134355,0.392377,-0.401441,-0.000000,0.424544,0.401441,0.000000,0.424544,0.283883,-0.283883,0.424544
		,0.153160,0.369733,0.424544,-0.153159,-0.369734,0.424544,0.153160,-0.369733,0.424544,0.000000,0.396407,0.378906,-0.396407,-0.000000,0.378906,-0.280323,0.280323,0.378907,-0.280323,-0.280324,0.378906
		,0.354531,-0.146862,0.364901,0.354531,0.146862,0.364901,-0.146862,-0.354531,0.364901,0.146862,-0.354530,0.364901,0.280324,-0.280323,0.378906,0.000000,-0.396407,0.378906,0.280323,0.280323,0.378906
		,0.396407,-0.000000,0.378906,0.146862,0.354531,0.364901,-0.354530,-0.146863,0.364901,-0.354531,0.146862,0.364902,-0.146862,0.354531,0.364901,-0.092462,0.000000,1.776306,-0.106766,0.000000,1.718705
		,-0.054443,0.000000,1.619271,-0.075495,0.075495,1.718705,-0.038497,0.038497,1.619271,-0.000000,0.092462,1.776306,-0.000000,0.054443,1.619271,-0.000000,-0.000000,1.834572,0.038497,0.038497,1.619271
		,0.092462,-0.000000,1.776306,0.106766,-0.000000,1.718705,0.054443,-0.000000,1.619271,0.038497,-0.038497,1.818140,0.065380,-0.065380,1.776306,0.065380,-0.065380,1.661105,0.038497,-0.038497,1.619271
		,-0.000000,-0.092462,1.776306,-0.000000,-0.106766,1.718705,-0.000000,-0.054443,1.619271,-0.038497,-0.038497,1.818140,-0.065380,-0.065380,1.776306,-0.038497,-0.038497,1.619271,0.000000,0.149957,0.218201
		,0.000000,0.311033,0.292210,0.000000,0.373635,0.478159,0.000000,0.309978,0.559616,0.000000,0.425282,0.605835,0.000000,0.517128,0.691917,0.000000,0.575346,0.850692,0.000000,0.558456,1.081290
		,0.000000,0.414959,1.307752,0.000000,0.253856,1.457375,0.106057,0.106057,0.218201,0.219955,0.219955,0.292210,0.300741,0.300741,0.605835,0.365685,0.365685,0.691917,0.406852,0.406852,0.850692
		,0.394909,0.394909,1.081290,0.149957,-0.000000,0.218201,0.311033,-0.000000,0.292210,0.373635,0.000000,0.478159,0.309978,0.000000,0.559616,0.517128,0.000000,0.691917,0.575346,0.000000,0.850692
		,0.558456,0.000000,1.081290,0.253856,0.000000,1.457375,0.106057,-0.106057,0.218201,0.219955,-0.219955,0.292210,0.264222,-0.264222,0.478159,0.300741,-0.300741,0.605835,0.365686,-0.365685,0.691917
		,0.406853,-0.406852,0.850692,0.394909,-0.394909,1.081290,0.179523,-0.179522,1.457375,0.000000,-0.149957,0.218202,0.000000,-0.311033,0.292210,0.000000,-0.373635,0.478159,0.000000,-0.517128,0.691917
		,0.000000,-0.575346,0.850692,0.000000,-0.558456,1.081290,0.000000,-0.253856,1.457375,-0.106057,-0.106057,0.218202,-0.219955,-0.219955,0.292210,-0.219209,-0.219209,0.559616,-0.300740,-0.300741,0.605835
		,-0.365685,-0.365686,0.691917,-0.406852,-0.406853,0.850692,-0.394909,-0.394910,1.081290,-0.149957,-0.000000,0.218202,-0.311033,-0.000000,0.292210,-0.309978,-0.000000,0.559616,-0.425282,-0.000000,0.605835
		,-0.517128,-0.000000,0.691917,-0.575346,-0.000000,0.850692,-0.558456,-0.000000,1.081290,-0.414958,-0.000000,1.307753,-0.253856,-0.000000,1.457375,-0.106057,0.106057,0.218202,-0.219955,0.219955,0.292210
		,-0.219209,0.219209,0.559616,-0.300741,0.300741,0.605835,-0.365685,0.365685,0.691917,-0.406852,0.406852,0.850692,-0.394909,0.394909,1.081290,-0.293439,0.293439,1.307753,0.219209,-0.219209,0.559616
		,0.000000,0.400640,0.401716,0.000000,0.392133,0.382620,0.277301,0.277301,0.382620,0.392133,-0.000000,0.382620,0.277301,-0.277301,0.382620,0.000000,-0.400640,0.401716,0.000000,-0.392133,0.382620
		,-0.277300,-0.277301,0.382620,-0.283316,-0.283316,0.401716,-0.392133,-0.000000,0.382620,-0.277301,0.277301,0.382620,0.352153,-0.000000,0.392377,0.283316,0.283316,0.401716,-0.283316,0.283316,0.401716
		,-0.400640,-0.000000,0.401716,-0.283883,0.283883,0.424544,-0.283883,-0.283883,0.424544,0.000000,0.401441,0.424544,0.283883,0.283883,0.424544,0.000000,-0.401441,0.424544,0.000000,0.384934,0.364901
		,-0.272210,-0.272211,0.364901,-0.384934,-0.000000,0.364901,-0.272210,0.272210,0.364902,0.272211,-0.272210,0.364901,0.384934,-0.000000,0.364901,0.000000,-0.384934,0.364901,0.272211,0.272210,0.364901
		,0.118268,0.285497,0.559616,0.219209,0.219209,0.559616,0.285497,0.118268,0.559616,-0.038497,0.038497,1.619271,-0.051285,0.021243,1.619603,-0.054443,0.000000,1.619271,-0.021243,0.051285,1.619603
		,-0.000000,0.054443,1.619271,0.021243,0.051285,1.619603,0.038497,0.038497,1.619271,0.051285,0.021243,1.619603,0.054443,-0.000000,1.619271,0.038497,-0.038497,1.619271,0.051285,-0.021243,1.619603
		,-0.000000,-0.054443,1.619271,0.021243,-0.051285,1.619603,-0.021243,-0.051285,1.619603,-0.038497,-0.038497,1.619271,-0.051285,-0.021243,1.619603,-0.118268,-0.285497,0.559616,-0.219209,-0.219209,0.559616
		,0.219209,-0.219209,0.559616,0.118268,-0.285497,0.559616,0.000000,-0.309978,0.559616,0.000000,0.309978,0.559616,0.309978,0.000000,0.559616,0.285497,-0.118268,0.559616,-0.118268,0.285497,0.559616
		,-0.219209,0.219209,0.559616,-0.285497,-0.118268,0.559616,-0.309978,-0.000000,0.559616,-0.285497,0.118268,0.559616,-0.134355,-0.324338,0.392377,-0.134355,0.324338,0.392377,0.249028,0.249028,0.392377
		,0.249028,-0.249028,0.392377,-0.352153,-0.000000,0.392377,0.000000,0.352153,0.392377,-0.249028,0.249028,0.392377,-0.249028,-0.249028,0.392377,0.324338,-0.134355,0.392377,0.324338,0.134355,0.392377
		,0.134355,0.324338,0.392377
		PolygonVertexIndex: 0,62,93,-33,0,32,94,-64,1,55,110,-53,2,31,94,-33,3,81,122,-71,3,70,91,-46,4,53,109,-78,6,75,123,-84,7,67,101,-59,9,78,108,-28,9,27,91,-71,10,66,120,-65,107,29,102,-66
		,115,103,112,-70,115,69,118,-17,29,103,104,-103,107,106,48,-69,16,36,87,-122,67,119,42,-66,120,121,87,-48,107,65,42,-107,15,69,112,-31,15,30,93,-63,17,33,96,-39,17,38,100,-36,17,79,116,-34
		,18,35,100,-40,18,39,99,-35,19,52,110,-57,20,34,99,-60,21,37,95,-62,21,61,117,-77,0,18,34,-63,60,86,87,-37,115,11,104,-104,20,59,113,-119,21,76,83,-124,29,111,112,-104,4,77,54,-83
		,107,68,111,-30,106,60,114,-49,9,19,56,-79,19,122,89,-53,73,41,88,-45,119,13,86,-43,15,62,34,-21,5,74,43,-86,80,56,110,-24,21,123,98,-38,6,85,43,-76,81,22,89,-123,4,82,41,-85
		,16,118,113,-37,5,68,48,-75,15,20,118,-70,9,70,122,-20,75,40,98,-124,75,43,97,-41,0,63,35,-19,17,35,63,-80,8,84,41,-74,13,47,87,-87,82,54,55,-2,4,84,26,-54,53,27,108,-110
		,44,22,105,-50,40,39,100,-99,6,2,92,-86,2,32,93,-93,74,48,114,-15,12,92,93,-31,106,42,86,-61,60,36,113,-115,1,52,89,-89,12,30,112,-112,8,28,26,-85,115,16,121,-12,74,14,97,-44
		,82,1,88,-42,73,44,49,-51,5,85,92,-13,5,12,111,-69,37,98,100,-39,14,59,99,-98,124,71,24,-132,28,45,91,-27,14,114,113,-60,53,26,91,-28,44,88,89,-23,6,83,31,-3,37,38,96,-96
		,40,97,99,-40,125,129,127,-129,128,127,126,-132,131,126,130,-125,3,45,57,-11,8,73,50,-8,28,58,57,-46,7,50,119,-68,10,57,46,-67,67,65,102,-102,8,7,58,-29,3,10,64,-82,49,105,47,-14
		,58,101,46,-58,101,102,104,-47,50,49,13,-120,64,120,47,-106,66,46,104,-12,81,64,105,-23,66,11,121,-121,71,77,109,-25,125,128,51,-26,126,127,23,-91,130,126,90,-73,25,78,56,-81,24,109,108,-52
		,71,72,54,-78,124,130,72,-72,129,80,23,-128,131,24,51,-129,72,90,55,-55,25,51,108,-79,125,25,80,-130,90,23,110,-56,132,194,225,-165,132,164,226,-196,133,187,242,-185,134,163,226,-165,135,213,254,-203
		,135,202,223,-178,136,185,241,-210,138,207,255,-216,139,199,233,-191,141,210,240,-160,141,159,223,-203,142,198,252,-197,239,161,234,-198,247,235,244,-202,247,201,250,-149,161,235,236,-235,239,238,180,-201,148,168,219,-254
		,199,251,174,-198,252,253,219,-180,239,197,174,-239,147,201,244,-163,147,162,225,-195,149,165,228,-171,149,170,232,-168,149,211,248,-166,150,167,232,-172,150,171,231,-167,151,184,242,-189,152,166,231,-192,153,169,227,-194
		,153,193,249,-209,132,150,166,-195,192,218,219,-169,247,143,236,-236,152,191,245,-251,153,208,215,-256,161,243,244,-236,136,209,186,-215,239,200,243,-162,238,192,246,-181,141,151,188,-211,151,254,221,-185,205,173,220,-177
		,251,145,218,-175,147,194,166,-153,137,206,175,-218,212,188,242,-156,153,255,230,-170,138,217,175,-208,213,154,221,-255,136,214,173,-217,148,250,245,-169,137,200,180,-207,147,152,250,-202,141,202,254,-152,207,172,230,-256
		,207,175,229,-173,132,195,167,-151,149,167,195,-212,140,216,173,-206,145,179,219,-219,214,186,187,-134,136,216,158,-186,185,159,240,-242,176,154,237,-182,172,171,232,-231,138,134,224,-218,134,164,225,-225,206,180,246,-147
		,144,224,225,-163,238,174,218,-193,192,168,245,-247,133,184,221,-221,144,162,244,-244,140,160,158,-217,247,148,253,-144,206,146,229,-176,214,133,220,-174,205,176,181,-183,137,217,224,-145,137,144,243,-201,169,230,232,-171
		,146,191,231,-230,256,203,156,-264,160,177,223,-159,146,246,245,-192,185,158,223,-160,176,220,221,-155,138,215,163,-135,169,170,228,-228,172,229,231,-172,257,261,259,-261,260,259,258,-264,263,258,262,-257,135,177,189,-143
		,140,205,182,-140,160,190,189,-178,139,182,251,-200,142,189,178,-199,199,197,234,-234,140,139,190,-161,135,142,196,-214,181,237,179,-146,190,233,178,-190,233,234,236,-179,182,181,145,-252,196,252,179,-238,198,178,236,-144
		,213,196,237,-155,198,143,253,-253,203,209,241,-157,257,260,183,-158,258,259,155,-223,262,258,222,-205,157,210,188,-213,156,241,240,-184,203,204,186,-210,256,262,204,-204,261,212,155,-260,263,156,183,-261,204,222,187,-187
		,157,183,240,-211,257,157,212,-262,222,155,242,-188,264,326,357,-297,264,296,358,-328,265,319,374,-317,266,295,358,-297,267,345,386,-335,267,334,355,-310,268,317,373,-342,270,339,387,-348,271,331,365,-323,273,342,372,-292
		,273,291,355,-335,274,330,384,-329,371,293,366,-330,379,367,376,-334,379,333,382,-281,293,367,368,-367,371,370,312,-333,280,300,351,-386,331,383,306,-330,384,385,351,-312,371,329,306,-371,279,333,376,-295,279,294,357,-327
		,281,297,360,-303,281,302,364,-300,281,343,380,-298,282,299,364,-304,282,303,363,-299,283,316,374,-321,284,298,363,-324,285,301,359,-326,285,325,381,-341,264,282,298,-327,324,350,351,-301,379,275,368,-368,284,323,377,-383
		,285,340,347,-388,293,375,376,-368,268,341,318,-347,371,332,375,-294,370,324,378,-313,273,283,320,-343,283,386,353,-317,337,305,352,-309,383,277,350,-307,279,326,298,-285,269,338,307,-350,344,320,374,-288,285,387,362,-302
		,270,349,307,-340,345,286,353,-387,268,346,305,-349,280,382,377,-301,269,332,312,-339,279,284,382,-334,273,334,386,-284,339,304,362,-388,339,307,361,-305,264,327,299,-283,281,299,327,-344,272,348,305,-338,277,311,351,-351
		,346,318,319,-266,268,348,290,-318,317,291,372,-374,308,286,369,-314,304,303,364,-363,270,266,356,-350,266,296,357,-357,338,312,378,-279,276,356,357,-295,370,306,350,-325,324,300,377,-379,265,316,353,-353,276,294,376,-376
		,272,292,290,-349,379,280,385,-276,338,278,361,-308,346,265,352,-306,337,308,313,-315,269,349,356,-277,269,276,375,-333,301,362,364,-303,278,323,363,-362,388,335,288,-396,292,309,355,-291,278,378,377,-324,317,290,355,-292
		,308,352,353,-287,270,347,295,-267,301,302,360,-360,304,361,363,-304,389,393,391,-393,392,391,390,-396,395,390,394,-389,267,309,321,-275,272,337,314,-272,292,322,321,-310,271,314,383,-332,274,321,310,-331,331,329,366,-366
		,272,271,322,-293,267,274,328,-346,313,369,311,-278,322,365,310,-322,365,366,368,-311,314,313,277,-384,328,384,311,-370,330,310,368,-276,345,328,369,-287,330,275,385,-385,335,341,373,-289,389,392,315,-290,390,391,287,-355
		,394,390,354,-337,289,342,320,-345,288,373,372,-316,335,336,318,-342,388,394,336,-336,393,344,287,-392,395,288,315,-393,336,354,319,-319,289,315,372,-343,389,289,344,-394,354,287,374,-320,396,458,489,-429,396,428,490,-460
		,397,451,506,-449,398,427,490,-429,399,477,518,-467,399,466,487,-442,400,449,505,-474,402,471,519,-480,403,463,497,-455,405,474,504,-424,405,423,487,-467,406,462,516,-461,503,425,498,-462,511,499,508,-466,511,465,514,-413
		,425,499,500,-499,503,502,444,-465,412,432,483,-518,463,515,438,-462,516,517,483,-444,503,461,438,-503,411,465,508,-427,411,426,489,-459,413,429,492,-435,413,434,496,-432,413,475,512,-430,414,431,496,-436,414,435,495,-431
		,415,448,506,-453,416,430,495,-456,417,433,491,-458,417,457,513,-473,396,414,430,-459,456,482,483,-433,511,407,500,-500,416,455,509,-515,417,472,479,-520,425,507,508,-500,400,473,450,-479,503,464,507,-426,502,456,510,-445
		,405,415,452,-475,415,518,485,-449,469,437,484,-441,515,409,482,-439,411,458,430,-417,401,470,439,-482,476,452,506,-420,417,519,494,-434,402,481,439,-472,477,418,485,-519,400,478,437,-481,412,514,509,-433,401,464,444,-471
		,411,416,514,-466,405,466,518,-416,471,436,494,-520,471,439,493,-437,396,459,431,-415,413,431,459,-476,404,480,437,-470,409,443,483,-483,478,450,451,-398,400,480,422,-450,449,423,504,-506,440,418,501,-446,436,435,496,-495
		,402,398,488,-482,398,428,489,-489,470,444,510,-411,408,488,489,-427,502,438,482,-457,456,432,509,-511,397,448,485,-485,408,426,508,-508,404,424,422,-481,511,412,517,-408,470,410,493,-440,478,397,484,-438,469,440,445,-447
		,401,481,488,-409,401,408,507,-465,433,494,496,-435,410,455,495,-494,520,467,420,-528,424,441,487,-423,410,510,509,-456,449,422,487,-424,440,484,485,-419,402,479,427,-399,433,434,492,-492,436,493,495,-436,521,525,523,-525
		,524,523,522,-528,527,522,526,-521,399,441,453,-407,404,469,446,-404,424,454,453,-442,403,446,515,-464,406,453,442,-463,463,461,498,-498,404,403,454,-425,399,406,460,-478,445,501,443,-410,454,497,442,-454,497,498,500,-443
		,446,445,409,-516,460,516,443,-502,462,442,500,-408,477,460,501,-419,462,407,517,-517,467,473,505,-421,521,524,447,-422,522,523,419,-487,526,522,486,-469,421,474,452,-477,420,505,504,-448,467,468,450,-474,520,526,468,-468
		,525,476,419,-524,527,420,447,-525,468,486,451,-451,421,447,504,-475,521,421,476,-526,486,419,506,-452,528,646,856,-649,528,648,854,-644,529,645,855,-650,531,651,973,-653,531,652,856,-647,536,661,977,-664,536,663,975,-657
		,537,665,977,-662,538,669,870,-672,541,673,873,-675,541,674,870,-670,547,720,899,-702,547,701,907,-770,547,769,906,-697,547,696,898,-721,548,755,879,-716,548,715,887,-709,549,738,880,-722,549,721,888,-737,549,736,887,-716
		,549,715,879,-739,552,708,887,-727,552,726,894,-729,552,695,886,-709,553,736,888,-711,553,710,895,-713,553,712,894,-727,553,726,887,-737,554,756,896,-698,554,697,889,-705,557,769,907,-707,557,706,914,-703,557,702,913,-693
		,557,692,906,-770,559,728,894,-735,559,734,902,-762,559,761,901,-724,560,712,895,-741,560,740,903,-761,560,760,902,-735,560,734,894,-713,565,761,902,-720,565,719,909,-723,565,763,901,-762,566,760,903,-752,566,751,910,-755
		,566,754,909,-720,566,719,902,-761,567,770,904,-706,567,705,911,-694,567,693,910,-752,567,751,903,-771,568,727,915,-687,570,722,909,-753,570,752,917,-714,570,713,916,-744,571,754,910,-772,571,771,918,-719,571,718,917,-753
		,571,752,909,-755,575,713,917,-742,575,741,924,-734,575,733,923,-690,575,689,916,-714,576,718,918,-773,576,772,925,-692,576,691,924,-742,576,741,917,-719,577,739,926,-759,577,758,919,-766,579,793,885,-796,579,795,891,-688
		,579,687,890,-754,579,753,884,-794,580,702,914,-795,580,794,921,-749,580,748,920,-704,580,703,913,-703,581,733,924,-748,581,747,933,-769,581,711,923,-734,582,691,925,-745,582,744,934,-763,582,762,933,-748,582,747,924,-692
		,584,732,930,-792,584,791,875,-699,584,698,874,-691,584,690,929,-733,586,768,933,-731,586,730,879,-756,587,762,934,-726,587,725,880,-739,587,738,879,-731,587,730,933,-763,588,757,935,-717,588,716,881,-743,588,742,880,-726
		,588,725,934,-758,589,781,935,-779,589,778,926,-740,590,742,881,-778,590,777,889,-777,590,776,888,-722,590,721,880,-743,591,779,896,-774,591,773,904,-771,591,770,903,-741,591,740,895,-780,592,783,904,-774,592,773,896,-757
		,593,765,919,-785,593,784,911,-775,594,704,889,-778,594,777,881,-781,595,775,919,-759,595,758,926,-783,595,782,925,-773,595,772,918,-776,596,781,936,-738,596,737,882,-781,596,780,881,-717,596,716,935,-782,597,776,889,-698
		,597,697,896,-780,597,779,895,-711,597,710,888,-777,598,774,911,-706,598,705,904,-784,599,782,926,-779,599,778,935,-758,599,757,934,-745,599,744,925,-783,600,693,911,-785,600,784,919,-776,600,775,918,-772,600,771,910,-694
		,606,698,875,-700,606,699,885,-794,606,793,884,-683,606,682,874,-699,607,687,891,-730,607,729,899,-721,607,720,898,-760,607,759,890,-688,608,748,921,-793,608,792,930,-733,608,732,929,-746,608,745,920,-749,610,801,960,-851
		,610,850,961,-801,610,800,930,-793,610,792,921,-802,611,802,946,-804,612,805,959,-850,612,849,960,-802,612,801,921,-795,612,794,914,-806,613,800,961,-852,613,851,958,-808,613,807,875,-792,613,791,930,-801,614,808,938,-810
		,615,808,955,-834,615,833,956,-811,616,807,958,-849,616,848,965,-813,616,812,885,-700,616,699,875,-808,617,814,964,-843,617,842,959,-806,617,805,914,-707,617,706,907,-815,618,816,957,-835,618,834,954,-804,618,803,946,-816
		,618,815,943,-817,620,812,965,-842,620,841,963,-821,620,820,891,-796,620,795,885,-813,621,822,962,-844,621,843,964,-815,621,814,907,-702,621,701,899,-823,622,835,957,-817,624,820,963,-841,624,840,962,-823,624,822,899,-730
		,624,729,891,-821,625,828,944,-822,694,969,972,-685,684,972,858,-884,883,858,657,-701,700,657,860,-767,766,860,976,-557,556,976,863,-898,897,863,979,-563,562,979,867,-906,905,867,981,-684,683,981,980,-913,912,980,982,-574
		,573,982,983,-765,764,983,680,-689,688,680,971,-929,928,971,970,-751,750,970,969,-695,634,837,947,-800,634,799,948,-839,634,838,961,-851,634,850,960,-838,635,836,939,-812,635,811,940,-847,635,846,965,-849,635,848,958,-837
		,636,839,945,-805,636,804,947,-838,636,837,960,-850,636,849,959,-840,637,838,948,-807,637,806,939,-837,637,836,958,-852,637,851,961,-839,638,845,944,-814,638,813,945,-840,638,839,959,-843,638,842,964,-846,639,847,941,-826
		,639,825,942,-845,639,844,962,-841,639,840,963,-848,640,846,940,-820,640,819,941,-848,640,847,963,-842,640,841,965,-847,641,844,942,-822,641,821,944,-846,641,845,964,-844,641,843,962,-845,550,882,883,-701,749,786,989,-909
		,594,550,707,-705,604,892,893,-993,598,783,731,-686,604,992,937,-901,589,739,927,-584,746,966,967,-791,563,968,893,-893,558,789,931,-575,577,765,767,-579,569,787,922,-606,558,574,990,-877,632,563,892,-832,589,583,936,-782
		,583,750,694,-937,577,578,927,-740,569,605,931,-790,633,831,892,-605,601,551,922,-788,592,756,709,-562,578,767,764,-689,592,561,731,-784,578,688,928,-928,685,731,905,-684,572,573,764,-768,685,683,912,-736,561,709,897,-563
		,554,704,707,-556,554,555,709,-757,630,601,787,-831,593,572,767,-766,749,900,937,-787,594,780,882,-551,737,936,694,-685,993,994,932,-586,568,908,989,-728,563,790,967,-969,555,556,897,-710,561,562,905,-732,550,700,766,-708
		,598,685,735,-775,583,927,928,-751,593,774,735,-573,629,830,787,-570,601,686,915,-552,737,684,883,-883,633,604,900,-833,572,735,912,-574,555,707,766,-557,746,876,990,-967,614,631,955,-809,623,817,831,-634,623,633,832,-824
		,630,954,686,-602,629,569,789,-954,833,955,876,-747,609,798,830,-630,611,803,954,-631,631,558,876,-956,614,796,953,-632,835,749,908,-958,619,632,831,-818,619,810,956,-633,833,746,790,-957,834,568,686,-955,834,957,908,-569
		,835,832,900,-750,622,823,832,-836,631,953,789,-559,609,629,953,-797,611,630,830,-799,632,956,790,-564,540,539,664,-866,647,644,645,-530,667,666,862,-862,535,862,661,-537,532,531,646,-856,681,643,854,-985,533,654,655,-535
		,535,536,656,-656,647,529,852,-643,681,984,873,-674,662,861,862,-536,676,672,673,-542,533,534,650,-858,649,855,646,-529,670,668,868,-541,676,541,669,-870,662,535,655,-655,658,653,654,-534,649,528,643,-854,675,872,672,-677
		,678,853,643,-682,529,649,853,-853,670,540,865,-865,678,681,673,-673,659,656,975,-975,675,676,869,-869,538,671,978,-867,537,866,978,-666,530,857,650,-533,666,664,866,-538,539,869,669,-539,659,974,973,-652,530,532,855,-646
		,539,538,866,-665,666,537,661,-863,534,655,656,-660,679,852,853,-679,540,868,869,-540,679,678,672,-873,667,865,664,-667,534,659,651,-651,532,650,651,-532,543,660,861,-663,670,864,859,-669,546,642,852,-680,542,530,645,-645
		,543,662,654,-654,647,642,859,-645,545,871,872,-676,544,660,859,-865,546,679,872,-872,658,677,859,-654,545,675,868,-669,658,533,857,-678,544,667,861,-661,546,871,859,-643,543,653,859,-661,545,668,859,-872,542,644,859,-678
		,544,864,865,-668,542,677,857,-531,603,695,724,-992,997,996,923,-712,548,714,878,-756,586,585,932,-769,552,728,724,-696,995,689,923,-997,570,743,717,-723,565,722,717,-764,988,987,901,-764,603,788,886,-696,993,585,878,-878
		,988,763,717,-786,985,743,916,-987,564,877,878,-715,602,991,724,-724,602,723,901,-988,997,711,932,-995,559,723,724,-729,564,714,886,-789,581,768,932,-712,548,708,886,-715,586,755,878,-586,995,986,916,-690,985,785,717,-744
		,627,950,1000,-1009,1007,949,941,-820,998,813,944,-829,818,1007,1000,-951,626,943,828,-626,998,1005,945,-814,611,798,952,-803,802,952,1002,-830,815,946,1005,-999,615,627,938,-809,809,999,1004,-952,625,821,942,-1002,628,799,947,-1003
		,1007,819,940,-1001,623,824,826,-818,809,938,1003,-1000,622,816,943,-627,1006,825,941,-950,824,1006,949,-827,1008,1000,940,-812,615,810,950,-628,999,806,948,-1005,818,826,949,-1008,829,804,945,-1006,824,827,1001,-1007,1008,811,939,-1004
		,609,797,952,-799,797,628,1002,-953,802,829,1005,-947,623,823,827,-825,622,626,827,-824,628,1004,948,-800,829,1002,947,-805,815,998,828,-944,619,818,950,-811,999,1003,939,-807,627,1008,1003,-939,614,809,951,-797,797,951,1004,-629
		,609,796,951,-798,626,625,1001,-828,619,817,826,-819,1006,1001,942,-826
		Edges: 
		GeometryVersion: 124
		LayerElementNormal: 0 {
			Version: 101
			Name: ""
			MappingInformationType: "ByVertice"
			ReferenceInformationType: "Direct"
			Normals: 0.789819002151489,-0.503677487373352,-0.349955737590790,-0.467909783124924,-0.034150213003159,0.883083581924438
			 ,0.079927973449230,0.598956286907196,-0.796746730804443,0.638996541500092,-0.621356844902039,-0.453352451324463
			 ,-0.514267385005951,0.773430585861206,-0.370494693517685,-0.576616704463959,0.703756809234619,-0.414960175752640
			 ,-0.503677487373352,0.789819002151489,-0.349955737590790,-0.659413456916809,0.601184129714966,-0.451338231563568
			 ,-0.621356844902039,0.638996541500092,-0.453352451324463,0.773430585861206,-0.514297902584076,-0.370494693517685
			 ,0.601184129714966,-0.659413456916809,-0.451338231563568,0.603534042835236,-0.662129580974579,-0.444166392087936
			 ,-0.100497454404831,0.396252334117889,-0.912594974040985,-0.148625135421753,0.294228941202164,0.944090068340302
			 ,-0.408520758152008,0.099948115646839,0.907223701477051,0.703756809234619,-0.576616704463959,-0.414960175752640
			 ,0.641987383365631,-0.640949726104736,0.420728176832199,0.431806385517120,-0.896664321422577,0.097506634891033
			 ,0.519943833351135,-0.799554407596588,0.300546288490295,0.497360140085220,-0.745109379291534,0.444288462400436
			 ,0.581865906715393,-0.716849267482758,0.384105950593948,-0.896664321422577,0.431806385517120,0.097506634891033
			 ,0.173558756709099,-0.237006738781929,0.955839693546295,-0.334543913602829,-0.841944634914398,0.423261195421219
			 ,0.050752282142639,0.541184723377228,-0.839350581169128,0.618640720844269,-0.575823247432709,-0.534501194953918
			 ,-0.086703084409237,0.343119591474533,-0.935270249843597,0.525406658649445,0.066072575747967,-0.848261952400208
			 ,-0.199987798929214,0.218543052673340,-0.955107271671295,-0.244941562414169,0.221381261944771,-0.943906962871552
			 ,0.396252334117889,-0.100497454404831,-0.912594974040985,0.159154027700424,0.589098811149597,-0.792199492454529
			 ,0.598956286907196,0.079927973449230,-0.796746730804443,0.343028038740158,-0.936216294765472,0.076021604239941
			 ,0.554795980453491,-0.749870300292969,0.360332041978836,0.486556589603424,-0.854152023792267,0.183446764945984
			 ,0.238563194870949,-0.236793115735054,0.941801190376282,-0.905301094055176,-0.326364934444427,0.271797835826874
			 ,-0.326364934444427,-0.905301094055176,0.271797835826874,-0.061891537159681,-0.606433272361755,0.792687773704529
			 ,-0.606433272361755,-0.061891537159681,0.792687773704529,-0.680166006088257,0.557176411151886,0.476302385330200
			 ,-0.614184975624084,0.660878300666809,0.431226551532745,-0.749870300292969,0.554795980453491,0.360332041978836
			 ,-0.237006738781929,0.173558756709099,0.955839693546295,0.218543052673340,-0.199987798929214,-0.955107271671295
			 ,0.129947811365128,-0.311563462018967,-0.941282391548157,0.294228941202164,-0.148625135421753,0.944090068340302
			 ,-0.680837452411652,0.612262308597565,0.401898264884949,-0.165959656238556,0.254432827234268,0.952726840972900
			 ,-0.598498463630676,0.648060560226440,0.470870077610016,0.541184723377228,0.050752282142639,-0.839350581169128
			 ,-0.034150213003159,-0.467909783124924,0.883083581924438,0.066103093326092,0.525406658649445,-0.848261952400208
			 ,-0.817468822002411,0.442182689905167,0.368999302387238,-0.613086342811584,-0.150822475552559,0.775444805622101
			 ,0.442182689905167,-0.817468822002411,0.368999302387238,0.145451217889786,-0.281411170959473,-0.948484778404236
			 ,-0.281411170959473,0.145451217889786,-0.948484778404236,0.099948115646839,-0.408520758152008,0.907223701477051
			 ,-0.236793115735054,0.238563194870949,0.941801190376282,-0.936216294765472,0.343028038740158,0.076021604239941
			 ,0.750267028808594,-0.534562230110168,-0.388988912105560,0.805658102035522,-0.474837481975555,-0.354136794805527
			 ,0.648060560226440,-0.598498463630676,0.470870077610016,-0.662129580974579,0.603534042835236,-0.444166392087936
			 ,0.586993038654327,-0.673268854618073,-0.449568152427673,-0.673268854618073,0.586993038654327,-0.449568152427673
			 ,-0.610492289066315,0.661732852458954,-0.435132920742035,0.661732852458954,-0.610492289066315,-0.435132920742035
			 ,0.698263525962830,-0.572435677051544,-0.429761648178101,-0.575823247432709,0.618640720844269,-0.534501194953918
			 ,-0.971739888191223,0.235084071755409,0.019837031140924,-0.631122767925262,0.607196271419525,0.482619702816010
			 ,-0.716849267482758,0.581865906715393,0.384105950593948,-0.799554407596588,0.519943833351135,0.300546288490295
			 ,-0.707083344459534,0.707083344459534,0.000000000000000,-0.463698238134384,0.827814579010010,-0.315652936697006
			 ,0.827814579010010,-0.463698238134384,-0.315652936697006,0.707083344459534,-0.707083344459534,0.000000000000000
			 ,0.235084071755409,-0.971739888191223,0.019837031140924,0.607196271419525,-0.631122767925262,0.482619702816010
			 ,-0.745109379291534,0.497360140085220,0.444288462400436,-0.474837481975555,0.805658102035522,-0.354136794805527
			 ,-0.572435677051544,0.698263525962830,-0.429761648178101,-0.534562230110168,0.750267028808594,-0.388988912105560
			 ,-0.180639058351517,0.281472206115723,0.942381024360657,0.281472206115723,-0.180639058351517,0.942381024360657
			 ,-0.336039304733276,0.079531237483025,0.938474655151367,0.079531237483025,-0.336039304733276,0.938474655151367
			 ,-0.841944634914398,-0.334543913602829,0.423261195421219,0.343119591474533,-0.086703084409237,-0.935270249843597
			 ,-0.000671407207847,0.509292900562286,-0.860560953617096,0.509292900562286,-0.000671407207847,-0.860560953617096
			 ,0.589098811149597,0.159154027700424,-0.792199492454529,-0.921018123626709,-0.349742114543915,0.171269878745079
			 ,-0.349742114543915,-0.921018123626709,0.171269878745079,-0.483840435743332,0.036744285374880,0.874355316162109
			 ,-0.801812827587128,-0.209997862577438,0.559404253959656,0.036744285374880,-0.483840435743332,0.874355316162109
			 ,-0.209997862577438,-0.801812827587128,0.559404253959656,-0.311563462018967,0.129947811365128,-0.941282391548157
			 ,-0.290658295154572,0.165868103504181,-0.942319989204407,0.221381261944771,-0.244941562414169,-0.943906962871552
			 ,0.165868103504181,-0.290658295154572,-0.942319989204407,0.254432827234268,-0.165959656238556,0.952726840972900
			 ,-0.640949726104736,0.641987383365631,0.420728176832199,-0.640095233917236,0.628803372383118,-0.441389203071594
			 ,0.676229119300842,0.193639948964119,-0.710745573043823,0.193639948964119,0.676229119300842,-0.710745573043823
			 ,-0.150822475552559,-0.613086342811584,0.775444805622101,-0.179418310523033,0.299783319234848,-0.936979293823242
			 ,0.299783319234848,-0.179418310523033,-0.936979293823242,0.170812100172043,-0.321848213672638,0.931241810321808
			 ,-0.321848213672638,0.170812100172043,0.931241810321808,0.628803372383118,-0.640095233917236,-0.441389203071594
			 ,0.707083344459534,-0.707083344459534,0.000000000000000,-0.707083344459534,0.707083344459534,0.000000000000000
			 ,0.612262308597565,-0.680837452411652,0.401898264884949,-0.597582936286926,0.666890442371368,0.445081949234009
			 ,0.666890442371368,-0.597582936286926,0.445081949234009,0.660878300666809,-0.614184975624084,0.431226551532745
			 ,0.557176411151886,-0.680166006088257,0.476302385330200,-0.854152023792267,0.486556589603424,0.183446764945984
			 ,-0.601031541824341,-0.031159397214651,-0.798577845096588,-0.031159397214651,-0.601031541824341,-0.798577845096588
			 ,-0.775078594684601,-0.569872140884399,-0.272835463285446,-0.569872140884399,-0.775078594684601,-0.272835463285446
			 ,-0.056184574961662,-0.236518442630768,-0.969969809055328,-0.222540974617004,-0.820459604263306,-0.526566386222839
			 ,-0.820459604263306,-0.222540974617004,-0.526566386222839,-0.236518442630768,-0.056184574961662,-0.969969809055328
			 ,-0.503677487373352,-0.789819002151489,-0.349955737590790,-0.034150213003159,0.467909783124924,0.883083581924438
			 ,0.598956286907196,-0.079927973449230,-0.796746730804443,-0.621356844902039,-0.638996541500092,-0.453352451324463
			 ,0.773430585861206,0.514267385005951,-0.370494693517685,0.703756809234619,0.576616704463959,-0.414960175752640
			 ,0.789819002151489,0.503677487373352,-0.349955737590790,0.601184129714966,0.659413456916809,-0.451338231563568
			 ,0.638996541500092,0.621356844902039,-0.453352451324463,-0.514297902584076,-0.773430585861206,-0.370494693517685
			 ,-0.659413456916809,-0.601184129714966,-0.451338231563568,-0.662129580974579,-0.603534042835236,-0.444166392087936
			 ,0.396252334117889,0.100497454404831,-0.912594974040985,0.294228941202164,0.148625135421753,0.944090068340302
			 ,0.099948115646839,0.408520758152008,0.907223701477051,-0.576616704463959,-0.703756809234619,-0.414960175752640
			 ,-0.640949726104736,-0.641956865787506,0.420728176832199,-0.896664321422577,-0.431806385517120,0.097506634891033
			 ,-0.799554407596588,-0.519943833351135,0.300546288490295,-0.745109379291534,-0.497360140085220,0.444288462400436
			 ,-0.716849267482758,-0.581865906715393,0.384105950593948,0.431806385517120,0.896664321422577,0.097506634891033
			 ,-0.237006738781929,-0.173558756709099,0.955839693546295,-0.841944634914398,0.334543913602829,0.423261195421219
			 ,0.541184723377228,-0.050752282142639,-0.839350581169128,-0.575823247432709,-0.618640720844269,-0.534501194953918
			 ,0.343119591474533,0.086703084409237,-0.935270249843597,0.066072575747967,-0.525406658649445,-0.848261952400208
			 ,0.218543052673340,0.199987798929214,-0.955107271671295,0.221381261944771,0.244941562414169,-0.943906962871552
			 ,-0.100497454404831,-0.396252334117889,-0.912594974040985,0.589098811149597,-0.159154027700424,-0.792199492454529
			 ,0.079927973449230,-0.598956286907196,-0.796746730804443,-0.936216294765472,-0.343028038740158,0.076021604239941
			 ,-0.749870300292969,-0.554795980453491,0.360332041978836,-0.854152023792267,-0.486556589603424,0.183446764945984
			 ,-0.236793115735054,-0.238563194870949,0.941801190376282,-0.326334416866302,0.905301094055176,0.271797835826874
			 ,-0.905301094055176,0.326364934444427,0.271797835826874,-0.606433272361755,0.061891537159681,0.792687773704529
			 ,-0.061891537159681,0.606433272361755,0.792687773704529,0.557176411151886,0.680166006088257,0.476302385330200
			 ,0.660878300666809,0.614184975624084,0.431226551532745,0.554795980453491,0.749870300292969,0.360332041978836
			 ,0.173558756709099,0.237006738781929,0.955839693546295,-0.199987798929214,-0.218543052673340,-0.955107271671295
			 ,-0.311563462018967,-0.129947811365128,-0.941282391548157,-0.148625135421753,-0.294228941202164,0.944090068340302
			 ,0.612262308597565,0.680837452411652,0.401898264884949,0.254432827234268,0.165959656238556,0.952726840972900
			 ,0.648060560226440,0.598498463630676,0.470870077610016,0.050752282142639,-0.541184723377228,-0.839350581169128
			 ,-0.467909783124924,0.034150213003159,0.883083581924438,0.525406658649445,-0.066103093326092,-0.848261952400208
			 ,0.442182689905167,0.817468822002411,0.368999302387238,-0.150822475552559,0.613086342811584,0.775444805622101
			 ,-0.817468822002411,-0.442182689905167,0.368999302387238,-0.281411170959473,-0.145451217889786,-0.948484778404236
			 ,0.145451217889786,0.281411170959473,-0.948484778404236,-0.408520758152008,-0.099948115646839,0.907223701477051
			 ,0.238563194870949,0.236793115735054,0.941801190376282,0.343028038740158,0.936216294765472,0.076021604239941
			 ,-0.534562230110168,-0.750267028808594,-0.388988912105560,-0.474837481975555,-0.805658102035522,-0.354136794805527
			 ,-0.598498463630676,-0.648060560226440,0.470870077610016,0.603534042835236,0.662129580974579,-0.444166392087936
			 ,-0.673268854618073,-0.586993038654327,-0.449568152427673,0.586993038654327,0.673268854618073,-0.449568152427673
			 ,0.661732852458954,0.610492289066315,-0.435132920742035,-0.610492289066315,-0.661732852458954,-0.435132920742035
			 ,-0.572435677051544,-0.698263525962830,-0.429761648178101,0.618640720844269,0.575823247432709,-0.534501194953918
			 ,0.235114604234695,0.971739888191223,0.019837031140924,0.607196271419525,0.631122767925262,0.482619702816010
			 ,0.581865906715393,0.716849267482758,0.384105950593948,0.519943833351135,0.799554407596588,0.300546288490295
			 ,0.707083344459534,0.707083344459534,0.000000000000000,0.827814579010010,0.463698238134384,-0.315652936697006
			 ,-0.463698238134384,-0.827814579010010,-0.315652936697006,-0.707083344459534,-0.707083344459534,0.000000000000000
			 ,-0.971739888191223,-0.235084071755409,0.019837031140924,-0.631122767925262,-0.607196271419525,0.482619702816010
			 ,0.497360140085220,0.745109379291534,0.444288462400436,0.805658102035522,0.474837481975555,-0.354136794805527
			 ,0.698263525962830,0.572435677051544,-0.429761648178101,0.750267028808594,0.534562230110168,-0.388988912105560
			 ,0.281472206115723,0.180639058351517,0.942381024360657,-0.180639058351517,-0.281472206115723,0.942381024360657
			 ,0.079531237483025,0.336039304733276,0.938474655151367,-0.336039304733276,-0.079531237483025,0.938474655151367
			 ,-0.334543913602829,0.841944634914398,0.423261195421219,-0.086703084409237,-0.343119591474533,-0.935270249843597
			 ,0.509292900562286,0.000671407207847,-0.860560953617096,-0.000671407207847,-0.509292900562286,-0.860560953617096
			 ,0.159154027700424,-0.589098811149597,-0.792199492454529,-0.349742114543915,0.921018123626709,0.171269878745079
			 ,-0.921018123626709,0.349742114543915,0.171269878745079,0.036744285374880,0.483840435743332,0.874355316162109
			 ,-0.209997862577438,0.801812827587128,0.559404253959656,-0.483840435743332,-0.036744285374880,0.874355316162109
			 ,-0.801812827587128,0.209997862577438,0.559404253959656,0.129947811365128,0.311563462018967,-0.941282391548157
			 ,0.165868103504181,0.290658295154572,-0.942319989204407,-0.244941562414169,-0.221381261944771,-0.943906962871552
			 ,-0.290658295154572,-0.165868103504181,-0.942319989204407,-0.165959656238556,-0.254432827234268,0.952726840972900
			 ,0.641987383365631,0.640949726104736,0.420728176832199,0.628803372383118,0.640095233917236,-0.441389203071594
			 ,0.193639948964119,-0.676229119300842,-0.710745573043823,0.676229119300842,-0.193639948964119,-0.710745573043823
			 ,-0.613086342811584,0.150852993130684,0.775444805622101,0.299783319234848,0.179418310523033,-0.936979293823242
			 ,-0.179418310523033,-0.299783319234848,-0.936979293823242,-0.321848213672638,-0.170812100172043,0.931241810321808
			 ,0.170812100172043,0.321848213672638,0.931241810321808,-0.640095233917236,-0.628803372383118,-0.441389203071594
			 ,-0.707083344459534,-0.707083344459534,0.000000000000000,0.707083344459534,0.707083344459534,0.000000000000000
			 ,-0.680837452411652,-0.612262308597565,0.401898264884949,0.666890442371368,0.597582936286926,0.445081949234009
			 ,-0.597582936286926,-0.666890442371368,0.445081949234009,-0.614184975624084,-0.660878300666809,0.431226551532745
			 ,-0.680166006088257,-0.557176411151886,0.476302385330200,0.486556589603424,0.854152023792267,0.183446764945984
			 ,-0.031159397214651,0.601031541824341,-0.798577845096588,-0.601031541824341,0.031159397214651,-0.798577845096588
			 ,-0.569872140884399,0.775078594684601,-0.272835463285446,-0.775078594684601,0.569872140884399,-0.272835463285446
			 ,-0.236518442630768,0.056184574961662,-0.969969809055328,-0.820459604263306,0.222540974617004,-0.526566386222839
			 ,-0.222540974617004,0.820459604263306,-0.526566386222839,-0.056184574961662,0.236518442630768,-0.969969809055328
			 ,-0.789819002151489,0.503677487373352,-0.349955737590790,0.467909783124924,0.034150213003159,0.883083581924438
			 ,-0.079927973449230,-0.598956286907196,-0.796746730804443,-0.638996541500092,0.621356844902039,-0.453352451324463
			 ,0.514267385005951,-0.773430585861206,-0.370494693517685,0.576616704463959,-0.703756809234619,-0.414960175752640
			 ,0.503677487373352,-0.789819002151489,-0.349955737590790,0.659413456916809,-0.601184129714966,-0.451338231563568
			 ,0.621356844902039,-0.638996541500092,-0.453352451324463,-0.773430585861206,0.514297902584076,-0.370494693517685
			 ,-0.601184129714966,0.659413456916809,-0.451338231563568,-0.603534042835236,0.662129580974579,-0.444166392087936
			 ,0.100497454404831,-0.396252334117889,-0.912594974040985,0.148625135421753,-0.294228941202164,0.944090068340302
			 ,0.408520758152008,-0.099948115646839,0.907223701477051,-0.703756809234619,0.576616704463959,-0.414960175752640
			 ,-0.641956865787506,0.640949726104736,0.420728176832199,-0.431806385517120,0.896664321422577,0.097506634891033
			 ,-0.519943833351135,0.799554407596588,0.300546288490295,-0.497360140085220,0.745109379291534,0.444288462400436
			 ,-0.581865906715393,0.716849267482758,0.384105950593948,0.896664321422577,-0.431806385517120,0.097506634891033
			 ,-0.173558756709099,0.237006738781929,0.955839693546295,0.334543913602829,0.841944634914398,0.423261195421219
			 ,-0.050752282142639,-0.541184723377228,-0.839350581169128,-0.618640720844269,0.575823247432709,-0.534501194953918
			 ,0.086703084409237,-0.343119591474533,-0.935270249843597,-0.525406658649445,-0.066072575747967,-0.848261952400208
			 ,0.199987798929214,-0.218543052673340,-0.955107271671295,0.244941562414169,-0.221381261944771,-0.943906962871552
			 ,-0.396252334117889,0.100497454404831,-0.912594974040985,-0.159154027700424,-0.589098811149597,-0.792199492454529
			 ,-0.598956286907196,-0.079927973449230,-0.796746730804443,-0.343028038740158,0.936216294765472,0.076021604239941
			 ,-0.554765462875366,0.749870300292969,0.360332041978836,-0.486556589603424,0.854152023792267,0.183446764945984
			 ,-0.238563194870949,0.236793115735054,0.941801190376282,0.905301094055176,0.326334416866302,0.271797835826874
			 ,0.326364934444427,0.905301094055176,0.271797835826874,0.061891537159681,0.606433272361755,0.792687773704529
			 ,0.606433272361755,0.061891537159681,0.792687773704529,0.680166006088257,-0.557176411151886,0.476302385330200
			 ,0.614184975624084,-0.660878300666809,0.431226551532745,0.749870300292969,-0.554795980453491,0.360332041978836
			 ,0.237006738781929,-0.173558756709099,0.955839693546295,-0.218543052673340,0.199987798929214,-0.955107271671295
			 ,-0.129947811365128,0.311563462018967,-0.941282391548157,-0.294228941202164,0.148625135421753,0.944090068340302
			 ,0.680837452411652,-0.612262308597565,0.401898264884949,0.165959656238556,-0.254432827234268,0.952726840972900
			 ,0.598498463630676,-0.648091077804565,0.470870077610016,-0.541184723377228,-0.050752282142639,-0.839350581169128
			 ,0.034150213003159,0.467909783124924,0.883083581924438,-0.066103093326092,-0.525406658649445,-0.848261952400208
			 ,0.817468822002411,-0.442182689905167,0.368999302387238,0.613086342811584,0.150822475552559,0.775444805622101
			 ,-0.442182689905167,0.817468822002411,0.368999302387238,-0.145451217889786,0.281411170959473,-0.948484778404236
			 ,0.281411170959473,-0.145451217889786,-0.948484778404236,-0.099948115646839,0.408520758152008,0.907223701477051
			 ,0.236793115735054,-0.238563194870949,0.941801190376282,0.936216294765472,-0.343028038740158,0.076021604239941
			 ,-0.750267028808594,0.534562230110168,-0.388988912105560,-0.805658102035522,0.474837481975555,-0.354136794805527
			 ,-0.648060560226440,0.598498463630676,0.470870077610016,0.662099063396454,-0.603534042835236,-0.444166392087936
			 ,-0.586993038654327,0.673268854618073,-0.449568152427673,0.673268854618073,-0.586993038654327,-0.449568152427673
			 ,0.610492289066315,-0.661732852458954,-0.435132920742035,-0.661732852458954,0.610492289066315,-0.435132920742035
			 ,-0.698263525962830,0.572435677051544,-0.429761648178101,0.575823247432709,-0.618640720844269,-0.534501194953918
			 ,0.971739888191223,-0.235114604234695,0.019837031140924,0.631122767925262,-0.607196271419525,0.482619702816010
			 ,0.716849267482758,-0.581865906715393,0.384105950593948,0.799554407596588,-0.519943833351135,0.300546288490295
			 ,0.707083344459534,-0.707083344459534,0.000000000000000,0.463698238134384,-0.827814579010010,-0.315652936697006
			 ,-0.827814579010010,0.463698238134384,-0.315652936697006,-0.707083344459534,0.707083344459534,0.000000000000000
			 ,-0.235084071755409,0.971739888191223,0.019837031140924,-0.607196271419525,0.631122767925262,0.482619702816010
			 ,0.745109379291534,-0.497360140085220,0.444288462400436,0.474837481975555,-0.805658102035522,-0.354136794805527
			 ,0.572435677051544,-0.698263525962830,-0.429761648178101,0.534562230110168,-0.750267028808594,-0.388988912105560
			 ,0.180639058351517,-0.281472206115723,0.942381024360657,-0.281472206115723,0.180639058351517,0.942381024360657
			 ,0.336039304733276,-0.079531237483025,0.938474655151367,-0.079531237483025,0.336039304733276,0.938474655151367
			 ,0.841944634914398,0.334543913602829,0.423261195421219,-0.343119591474533,0.086703084409237,-0.935270249843597
			 ,0.000671407207847,-0.509292900562286,-0.860560953617096,-0.509292900562286,0.000671407207847,-0.860560953617096
			 ,-0.589098811149597,-0.159154027700424,-0.792199492454529,0.921018123626709,0.349742114543915,0.171269878745079
			 ,0.349742114543915,0.921018123626709,0.171269878745079,0.483840435743332,-0.036744285374880,0.874355316162109
			 ,0.801812827587128,0.209997862577438,0.559404253959656,-0.036744285374880,0.483840435743332,0.874355316162109
			 ,0.209997862577438,0.801812827587128,0.559404253959656,0.311563462018967,-0.129947811365128,-0.941282391548157
			 ,0.290658295154572,-0.165868103504181,-0.942319989204407,-0.221381261944771,0.244941562414169,-0.943906962871552
			 ,-0.165868103504181,0.290658295154572,-0.942319989204407,-0.254432827234268,0.165959656238556,0.952726840972900
			 ,0.640949726104736,-0.641987383365631,0.420728176832199,0.640095233917236,-0.628803372383118,-0.441389203071594
			 ,-0.676229119300842,-0.193639948964119,-0.710745573043823,-0.193639948964119,-0.676229119300842,-0.710745573043823
			 ,0.150852993130684,0.613086342811584,0.775444805622101,0.179418310523033,-0.299783319234848,-0.936979293823242
			 ,-0.299783319234848,0.179418310523033,-0.936979293823242,-0.170812100172043,0.321848213672638,0.931241810321808
			 ,0.321848213672638,-0.170812100172043,0.931241810321808,-0.628803372383118,0.640095233917236,-0.441389203071594
			 ,-0.707083344459534,0.707083344459534,0.000000000000000,0.707083344459534,-0.707083344459534,0.000000000000000
			 ,-0.612262308597565,0.680837452411652,0.401898264884949,0.597582936286926,-0.666890442371368,0.445081949234009
			 ,-0.666890442371368,0.597582936286926,0.445081949234009,-0.660878300666809,0.614215493202209,0.431226551532745
			 ,-0.557176411151886,0.680166006088257,0.476302385330200,0.854152023792267,-0.486556589603424,0.183446764945984
			 ,0.601031541824341,0.031159397214651,-0.798577845096588,0.031159397214651,0.601031541824341,-0.798577845096588
			 ,0.775078594684601,0.569872140884399,-0.272835463285446,0.569872140884399,0.775078594684601,-0.272835463285446
			 ,0.056184574961662,0.236518442630768,-0.969969809055328,0.222540974617004,0.820459604263306,-0.526566386222839
			 ,0.820459604263306,0.222510457038879,-0.526566386222839,0.236518442630768,0.056184574961662,-0.969969809055328
			 ,0.503677487373352,0.789819002151489,-0.349955737590790,0.034150213003159,-0.467909783124924,0.883083581924438
			 ,-0.598956286907196,0.079927973449230,-0.796746730804443,0.621356844902039,0.638996541500092,-0.453352451324463
			 ,-0.773430585861206,-0.514267385005951,-0.370494693517685,-0.703756809234619,-0.576586186885834,-0.414960175752640
			 ,-0.789819002151489,-0.503677487373352,-0.349955737590790,-0.601184129714966,-0.659413456916809,-0.451338231563568
			 ,-0.638996541500092,-0.621356844902039,-0.453352451324463,0.514297902584076,0.773430585861206,-0.370494693517685
			 ,0.659413456916809,0.601184129714966,-0.451338231563568,0.662129580974579,0.603534042835236,-0.444166392087936
			 ,-0.396252334117889,-0.100497454404831,-0.912594974040985,-0.294228941202164,-0.148625135421753,0.944090068340302
			 ,-0.099948115646839,-0.408520758152008,0.907223701477051,0.576616704463959,0.703756809234619,-0.414960175752640
			 ,0.640949726104736,0.641956865787506,0.420728176832199,0.896664321422577,0.431806385517120,0.097506634891033
			 ,0.799554407596588,0.519943833351135,0.300546288490295,0.745109379291534,0.497360140085220,0.444288462400436
			 ,0.716849267482758,0.581865906715393,0.384105950593948,-0.431806385517120,-0.896664321422577,0.097506634891033
			 ,0.237006738781929,0.173558756709099,0.955839693546295,0.841944634914398,-0.334543913602829,0.423261195421219
			 ,-0.541184723377228,0.050752282142639,-0.839350581169128,0.575823247432709,0.618640720844269,-0.534501194953918
			 ,-0.343119591474533,-0.086703084409237,-0.935270249843597,-0.066072575747967,0.525406658649445,-0.848261952400208
			 ,-0.218543052673340,-0.199987798929214,-0.955107271671295,-0.221381261944771,-0.244941562414169,-0.943906962871552
			 ,0.100497454404831,0.396252334117889,-0.912594974040985,-0.589098811149597,0.159154027700424,-0.792199492454529
			 ,-0.079927973449230,0.598956286907196,-0.796746730804443,0.936216294765472,0.343028038740158,0.076021604239941
			 ,0.749870300292969,0.554765462875366,0.360332041978836,0.854152023792267,0.486556589603424,0.183446764945984
			 ,0.236793115735054,0.238563194870949,0.941801190376282,0.326334416866302,-0.905301094055176,0.271797835826874
			 ,0.905301094055176,-0.326364934444427,0.271797835826874,0.606433272361755,-0.061891537159681,0.792687773704529
			 ,0.061891537159681,-0.606433272361755,0.792687773704529,-0.557176411151886,-0.680166006088257,0.476302385330200
			 ,-0.660878300666809,-0.614184975624084,0.431226551532745,-0.554795980453491,-0.749870300292969,0.360332041978836
			 ,-0.173558756709099,-0.237006738781929,0.955839693546295,0.199987798929214,0.218543052673340,-0.955107271671295
			 ,0.311563462018967,0.129947811365128,-0.941282391548157,0.148625135421753,0.294228941202164,0.944090068340302
			 ,-0.612262308597565,-0.680837452411652,0.401898264884949,-0.254432827234268,-0.165959656238556,0.952726840972900
			 ,-0.648091077804565,-0.598498463630676,0.470870077610016,-0.050752282142639,0.541184723377228,-0.839350581169128
			 ,0.467909783124924,-0.034150213003159,0.883083581924438,-0.525406658649445,0.066103093326092,-0.848261952400208
			 ,-0.442182689905167,-0.817468822002411,0.368999302387238,0.150822475552559,-0.613086342811584,0.775444805622101
			 ,0.817468822002411,0.442182689905167,0.368999302387238,0.281411170959473,0.145451217889786,-0.948484778404236
			 ,-0.145451217889786,-0.281411170959473,-0.948484778404236,0.408520758152008,0.099948115646839,0.907223701477051
			 ,-0.238563194870949,-0.236793115735054,0.941801190376282,-0.343028038740158,-0.936216294765472,0.076021604239941
			 ,0.534562230110168,0.750267028808594,-0.388988912105560,0.474837481975555,0.805658102035522,-0.354136794805527
			 ,0.598528981208801,0.648060560226440,0.470870077610016,-0.603534042835236,-0.662099063396454,-0.444166392087936
			 ,0.673268854618073,0.586993038654327,-0.449568152427673,-0.586993038654327,-0.673268854618073,-0.449568152427673
			 ,-0.661732852458954,-0.610492289066315,-0.435132920742035,0.610492289066315,0.661732852458954,-0.435132920742035
			 ,0.572435677051544,0.698263525962830,-0.429761648178101,-0.618640720844269,-0.575823247432709,-0.534501194953918
			 ,-0.235114604234695,-0.971739888191223,0.019837031140924,-0.607196271419525,-0.631122767925262,0.482619702816010
			 ,-0.581865906715393,-0.716849267482758,0.384105950593948,-0.519974350929260,-0.799554407596588,0.300546288490295
			 ,-0.707083344459534,-0.707083344459534,0.000000000000000,-0.827814579010010,-0.463698238134384,-0.315652936697006
			 ,0.463698238134384,0.827814579010010,-0.315652936697006,0.707083344459534,0.707083344459534,0.000000000000000
			 ,0.971739888191223,0.235084071755409,0.019837031140924,0.631122767925262,0.607196271419525,0.482619702816010
			 ,-0.497360140085220,-0.745109379291534,0.444288462400436,-0.805658102035522,-0.474837481975555,-0.354136794805527
			 ,-0.698263525962830,-0.572435677051544,-0.429761648178101,-0.750267028808594,-0.534562230110168,-0.388988912105560
			 ,-0.281472206115723,-0.180639058351517,0.942381024360657,0.180669575929642,0.281472206115723,0.942381024360657
			 ,-0.079531237483025,-0.336039304733276,0.938474655151367,0.336039304733276,0.079531237483025,0.938474655151367
			 ,0.334543913602829,-0.841944634914398,0.423261195421219,0.086703084409237,0.343119591474533,-0.935270249843597
			 ,-0.509292900562286,-0.000671407207847,-0.860560953617096,0.000671407207847,0.509292900562286,-0.860560953617096
			 ,-0.159154027700424,0.589098811149597,-0.792199492454529,0.349742114543915,-0.921018123626709,0.171269878745079
			 ,0.921018123626709,-0.349742114543915,0.171269878745079,-0.036744285374880,-0.483840435743332,0.874355316162109
			 ,0.209997862577438,-0.801812827587128,0.559404253959656,0.483840435743332,0.036744285374880,0.874355316162109
			 ,0.801812827587128,-0.209997862577438,0.559404253959656,-0.129947811365128,-0.311563462018967,-0.941282391548157
			 ,-0.165868103504181,-0.290658295154572,-0.942319989204407,0.244941562414169,0.221381261944771,-0.943906962871552
			 ,0.290658295154572,0.165868103504181,-0.942319989204407,0.165959656238556,0.254432827234268,0.952726840972900
			 ,-0.641987383365631,-0.640949726104736,0.420728176832199,-0.628803372383118,-0.640095233917236,-0.441389203071594
			 ,-0.193639948964119,0.676229119300842,-0.710745573043823,-0.676229119300842,0.193639948964119,-0.710745573043823
			 ,0.613086342811584,-0.150852993130684,0.775444805622101,-0.299783319234848,-0.179418310523033,-0.936979293823242
			 ,0.179418310523033,0.299783319234848,-0.936979293823242,0.321848213672638,0.170812100172043,0.931241810321808
			 ,-0.170812100172043,-0.321848213672638,0.931241810321808,0.640095233917236,0.628803372383118,-0.441389203071594
			 ,0.707083344459534,0.707083344459534,0.000000000000000,-0.707083344459534,-0.707083344459534,0.000000000000000
			 ,0.680837452411652,0.612262308597565,0.401898264884949,-0.666890442371368,-0.597582936286926,0.445081949234009
			 ,0.597582936286926,0.666890442371368,0.445081949234009,0.614215493202209,0.660878300666809,0.431226551532745
			 ,0.680166006088257,0.557176411151886,0.476302385330200,-0.486556589603424,-0.854152023792267,0.183446764945984
			 ,0.031159397214651,-0.601031541824341,-0.798577845096588,0.601031541824341,-0.031159397214651,-0.798577845096588
			 ,0.569872140884399,-0.775078594684601,-0.272835463285446,0.775078594684601,-0.569872140884399,-0.272835463285446
			 ,0.236518442630768,-0.056184574961662,-0.969969809055328,0.820459604263306,-0.222540974617004,-0.526566386222839
			 ,0.222510457038879,-0.820459604263306,-0.526566386222839,0.056184574961662,-0.236518442630768,-0.969969809055328
			 ,-0.822046577930450,0.340495020151138,-0.456373780965805,-0.822046577930450,0.340495020151138,0.456373780965805
			 ,-0.340495020151138,0.822046577930450,0.456373780965805,-0.340495020151138,0.822046577930450,-0.456373780965805
			 ,-0.382671594619751,0.923856317996979,0.000000000000000,0.340495020151138,0.822046577930450,0.456373780965805
			 ,0.382671594619751,0.923856317996979,0.000000000000000,0.923856317996979,0.382671594619751,0.000000000000000
			 ,0.822046577930450,0.340495020151138,-0.456373780965805,0.822046577930450,-0.340495020151138,-0.456373780965805
			 ,0.340495020151138,-0.822046577930450,-0.456373780965805,0.382671594619751,-0.923856317996979,0.000000000000000
			 ,0.340495020151138,-0.822046577930450,0.456373780965805,-0.340495020151138,-0.822046577930450,-0.456373780965805
			 ,-0.216956079006195,0.523819684982300,0.823694586753845,0.523819684982300,0.216956079006195,0.823694586753845
			 ,0.523819684982300,-0.216956079006195,0.823694586753845,-0.216956079006195,-0.523819684982300,0.823694586753845
			 ,-0.523819684982300,-0.216956079006195,0.823694586753845,0.162419512867928,-0.392284929752350,-0.905362129211426
			 ,0.263679921627045,0.636707663536072,-0.724570453166962,0.358745068311691,0.866237401962280,-0.347697377204895
			 ,0.285592198371887,0.689657270908356,0.665395081043243,-0.728843033313751,-0.301797538995743,0.614551246166229
			 ,0.636707663536072,0.263679921627045,-0.724570453166962,0.866237401962280,0.358745068311691,-0.347697377204895
			 ,0.783440649509430,0.324442267417908,0.529984414577484,0.689657270908356,0.285592198371887,0.665395081043243
			 ,0.609241008758545,0.252296507358551,0.751762449741364,-0.162419512867928,-0.392284929752350,-0.905362129211426
			 ,-0.323404639959335,0.780999183654785,0.534226536750793,0.636707663536072,-0.263679921627045,-0.724570453166962
			 ,0.866237401962280,-0.358745068311691,-0.347697377204895,0.689657270908356,-0.285592198371887,0.665395081043243
			 ,0.609241008758545,-0.252296507358551,0.751762449741364,0.780999183654785,0.323404639959335,0.534226536750793
			 ,0.142704546451569,0.344676047563553,-0.927793204784393,0.263679921627045,-0.636707663536072,-0.724570453166962
			 ,0.358745068311691,-0.866237401962280,-0.347697377204895,0.381786555051804,-0.921903133392334,0.065614797174931
			 ,-0.323404639959335,-0.780999183654785,0.534226536750793,-0.780999183654785,0.323404639959335,0.534226536750793
			 ,-0.263679921627045,-0.636707663536072,-0.724570453166962,-0.358745068311691,-0.866237401962280,-0.347697377204895
			 ,-0.285592198371887,-0.689657270908356,0.665395081043243,-0.252296507358551,-0.609241008758545,0.751762449741364
			 ,-0.301797538995743,0.728843033313751,0.614551246166229,-0.636707663536072,-0.263679921627045,-0.724570453166962
			 ,-0.866237401962280,-0.358745068311691,-0.347697377204895,-0.783440649509430,-0.324442267417908,0.529984414577484
			 ,-0.689657270908356,-0.285592198371887,0.665395081043243,0.392284929752350,0.162419512867928,-0.905362129211426
			 ,-0.392284929752350,-0.162419512867928,-0.905362129211426,-0.636707663536072,0.263679921627045,-0.724570453166962
			 ,-0.866237401962280,0.358745068311691,-0.347697377204895,-0.689657270908356,0.285592198371887,0.665395081043243
			 ,-0.162419512867928,0.392284929752350,-0.905362129211426,-0.187871947884560,0.453657656908035,-0.871120333671570
			 ,-0.263679921627045,0.636707663536072,-0.724570453166962,-0.358745068311691,0.866237401962280,-0.347697377204895
			 ,-0.381786555051804,0.921903133392334,0.065614797174931,-0.783440649509430,0.324442267417908,0.529984414577484
			 ,0.381786555051804,0.921903133392334,0.065614797174931,0.921903133392334,-0.381786555051804,0.065614797174931
			 ,0.783440649509430,-0.324442267417908,0.529984414577484,-0.324442267417908,-0.783440649509430,0.529984414577484
			 ,0.324442267417908,0.783440649509430,0.529984414577484,-0.921903133392334,-0.381786555051804,0.065614797174931
			 ,-0.324442267417908,0.783440649509430,0.529984414577484,0.921903133392334,0.381786555051804,0.065614797174931
			 ,0.324442267417908,-0.783440649509430,0.529984414577484,-0.921903133392334,0.381786555051804,0.065614797174931
			 ,-0.381786555051804,-0.921903133392334,0.065614797174931,-0.780999183654785,-0.323404639959335,0.534226536750793
			 ,0.344676047563553,-0.142704546451569,-0.927793204784393,0.344676047563553,0.142704546451569,-0.927793204784393
			 ,0.780999183654785,-0.323404639959335,0.534226536750793,-0.728843033313751,0.301797538995743,0.614551246166229
			 ,0.162419512867928,0.392284929752350,-0.905362129211426,0.392284929752350,-0.162419512867928,-0.905362129211426
			 ,-0.392284929752350,0.162419512867928,-0.905362129211426,-0.837794125080109,0.346934407949448,-0.421521663665771
			 ,-0.665089905261993,0.275399029254913,-0.694082438945770,-0.837794125080109,-0.346934407949448,-0.421521663665771
			 ,-0.665089905261993,-0.275399029254913,-0.694082438945770,-0.275399029254913,0.665089905261993,-0.694082438945770
			 ,-0.346934407949448,0.837794125080109,-0.421521663665771,0.346934407949448,0.837794125080109,-0.421521663665771
			 ,0.275399029254913,0.665089905261993,-0.694082438945770,-0.275399029254913,-0.665089905261993,-0.694082438945770
			 ,-0.346934407949448,-0.837794125080109,-0.421521663665771,0.837794125080109,0.346934407949448,-0.421521663665771
			 ,0.665089905261993,0.275399029254913,-0.694082438945770,0.275399029254913,-0.665089905261993,-0.694082438945770
			 ,0.346934407949448,-0.837794125080109,-0.421521663665771,0.837794125080109,-0.346934407949448,-0.421521663665771
			 ,0.665089905261993,-0.275399029254913,-0.694082438945770,0.382427453994751,-0.923551142215729,-0.028077028691769
			 ,0.103183083236217,-0.249214142560959,-0.962920010089874,0.103183083236217,0.249214142560959,-0.962920010089874
			 ,-0.923551142215729,0.382427453994751,-0.028077028691769,-0.857325971126556,0.355021834373474,0.372722566127777
			 ,-0.857325971126556,-0.355021834373474,0.372722566127777,-0.355021834373474,0.857325971126556,0.372722566127777
			 ,0.857325971126556,0.355021834373474,0.372722566127777,0.857325971126556,-0.355021834373474,0.372722566127777
			 ,-0.921048641204834,0.381420344114304,0.078218936920166,0.381420344114304,0.921048641204834,0.078218936920166
			 ,-0.921048641204834,-0.381420344114304,0.078218936920166,-0.381420344114304,0.921048641204834,0.078218936920166
			 ,-0.381420344114304,-0.921048641204834,0.078218936920166,0.921048641204834,-0.381420344114304,0.078218936920166
			 ,0.921048641204834,0.381420344114304,0.078218936920166,0.381420344114304,-0.921048641204834,0.078218936920166
			 ,-0.545609891414642,0.000000000000000,0.838007748126984,-0.890285968780518,0.000000000000000,-0.455336153507233
			 ,-0.385814994573593,0.385814994573593,0.838007748126984,-0.629535794258118,0.629535794258118,0.455336153507233
			 ,-0.629535794258118,0.629535794258118,-0.455336153507233,-0.523819684982300,0.216956079006195,0.823694586753845
			 ,-0.687490463256836,0.284768223762512,-0.667989134788513,-0.923856317996979,0.382671594619751,0.000000000000000
			 ,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.890285968780518,-0.455336153507233
			 ,-0.284768223762512,0.687490463256836,-0.667989134788513,0.385814994573593,0.385814994573593,0.838007748126984
			 ,0.629535794258118,0.629535794258118,0.455336153507233,0.707083344459534,0.707083344459534,0.000000000000000
			 ,0.629535794258118,0.629535794258118,-0.455336153507233,0.241798147559166,0.583910644054413,0.774956524372101
			 ,0.216956079006195,0.523819684982300,0.823694586753845,0.340495020151138,0.822046577930450,-0.456373780965805
			 ,0.545609891414642,0.000000000000000,0.838007748126984,0.890285968780518,0.000000000000000,-0.455336153507233
			 ,0.822046577930450,0.340495020151138,0.456373780965805,0.687490463256836,0.284768223762512,-0.667989134788513
			 ,0.707083344459534,-0.707083344459534,0.000000000000000,0.687490463256836,-0.284768223762512,-0.667989134788513
			 ,0.923856317996979,-0.382671594619751,0.000000000000000,0.822046577930450,-0.340495020151138,0.456373780965805
			 ,0.000000000000000,-0.545609891414642,0.838007748126984,0.000000000000000,-0.890285968780518,-0.455336153507233
			 ,0.216956079006195,-0.523819684982300,0.823694586753845,0.284768223762512,-0.687490463256836,-0.667989134788513
			 ,-0.707083344459534,-0.707083344459534,0.000000000000000,-0.629535794258118,-0.629535794258118,-0.455336153507233
			 ,-0.284768223762512,-0.687490463256836,-0.667989134788513,-0.340495020151138,-0.822046577930450,0.456373780965805
			 ,-0.382671594619751,-0.923856317996979,0.000000000000000,0.000000000000000,0.545609891414642,0.838007748126984
			 ,-0.923856317996979,-0.382671594619751,0.000000000000000,-0.822046577930450,-0.340495020151138,0.456373780965805
			 ,-0.583910644054413,-0.241798147559166,0.774956524372101,-0.822046577930450,-0.340495020151138,-0.456373780965805
			 ,0.147587507963181,0.356517225503922,-0.922544002532959,0.252296507358551,-0.609241008758545,0.751762449741364
			 ,-0.252296507358551,0.609241008758545,0.751762449741364,0.285592198371887,-0.689657270908356,0.665395081043243
			 ,-0.597369313240051,-0.597369313240051,0.534989476203918,0.423810541629791,0.000000000000000,-0.905728340148926
			 ,-0.609241008758545,-0.252296507358551,0.751762449741364,-0.453657656908035,-0.187871947884560,-0.871120333671570
			 ,-0.147587507963181,0.356517225503922,-0.922544002532959,-0.937376022338867,0.000000000000000,-0.348277240991592
			 ,-0.147587507963181,-0.356517225503922,-0.922544002532959,0.000000000000000,-0.997833192348480,0.065736867487431
			 ,-0.466200739145279,0.466170221567154,0.751854002475739,0.453657656908035,0.187871947884560,-0.871120333671570
			 ,0.147587507963181,-0.356517225503922,-0.922544002532959,0.874965667724609,0.362346261739731,0.321054726839066
			 ,0.000000000000000,0.423810541629791,-0.905728340148926,0.216315194964409,0.522446334362030,-0.824732184410095
			 ,0.252296507358551,0.609241008758545,0.751762449741364,0.216315194964409,-0.522446334362030,-0.824732184410095
			 ,-0.299661248922348,-0.299661248922348,-0.905728340148926,-0.356517225503922,-0.147587507963181,-0.922544002532959
			 ,0.599261462688446,0.599261462688446,0.530777931213379,0.362346261739731,-0.874965667724609,0.321054726839066
			 ,-0.216315194964409,-0.522446334362030,-0.824732184410095,0.527359843254089,0.527359843254089,0.666096985340118
			 ,0.487014383077621,0.487014383077621,-0.724997699260712,0.745841860771179,0.000000000000000,0.666096985340118
			 ,0.913449525833130,0.378307431936264,-0.149876400828362,-0.453657656908035,0.187871947884560,-0.871120333671570
			 ,0.937376022338867,0.000000000000000,-0.348277240991592,-0.487014383077621,-0.487014383077621,-0.724997699260712
			 ,0.187871947884560,0.453657656908035,-0.871120333671570,0.321604043245316,0.776604533195496,-0.541673004627228
			 ,-0.362346261739731,0.874965667724609,0.321054726839066,0.000000000000000,-0.490768164396286,-0.871272921562195
			 ,-0.662800967693329,-0.662800967693329,-0.348277240991592,0.321604043245316,-0.776604533195496,-0.541673004627228
			 ,0.299661248922348,-0.299661248922348,-0.905728340148926,0.378307431936264,0.913449525833130,-0.149876400828362
			 ,0.000000000000000,-0.688741743564606,-0.724967181682587,0.453657656908035,-0.187871947884560,-0.871120333671570
			 ,0.490768164396286,0.000000000000000,-0.871272921562195,-0.378307431936264,0.913449525833130,-0.149876400828362
			 ,0.776604533195496,0.321604043245316,-0.541673004627228,-0.301797538995743,-0.728843033313751,0.614551246166229
			 ,0.688741743564606,0.000000000000000,-0.724967181682587,0.522446334362030,-0.216315194964409,-0.824732184410095
			 ,-0.321604043245316,0.776604533195496,-0.541673004627228,0.527359843254089,-0.527359843254089,0.666096985340118
			 ,-0.299661248922348,0.299661248922348,-0.905728340148926,-0.688741743564606,0.000000000000000,-0.724967181682587
			 ,0.776604533195496,-0.321604043245316,-0.541673004627228,0.000000000000000,-0.745841860771179,0.666096985340118
			 ,0.662800967693329,0.662800967693329,-0.348277240991592,-0.285592198371887,0.689657270908356,0.665395081043243
			 ,0.000000000000000,0.937376022338867,-0.348277240991592,-0.847499012947083,0.000000000000000,0.530777931213379
			 ,0.913449525833130,-0.378307431936264,-0.149876400828362,-0.776604533195496,-0.321604043245316,-0.541673004627228
			 ,0.000000000000000,0.997833192348480,0.065736867487431,-0.187871947884560,-0.453657656908035,-0.871120333671570
			 ,-0.913449525833130,0.378307431936264,-0.149876400828362,-0.356517225503922,0.147587507963181,-0.922544002532959
			 ,0.323404639959335,0.780999183654785,0.534226536750793,-0.776604533195496,0.321604043245316,-0.541673004627228
			 ,-0.423810541629791,0.000000000000000,-0.905728340148926,0.323404639959335,-0.780999183654785,0.534226536750793
			 ,-0.609241008758545,0.252296507358551,0.751762449741364,0.378307431936264,-0.913449525833130,-0.149876400828362
			 ,-0.321604043245316,-0.776604533195496,-0.541673004627228,0.356517225503922,0.147587507963181,-0.922544002532959
			 ,0.000000000000000,-0.937376022338867,-0.348277240991592,0.000000000000000,0.688741743564606,-0.724967181682587
			 ,0.847499012947083,0.000000000000000,0.530777931213379,-0.705557405948639,0.705557405948639,0.065736867487431
			 ,-0.874965667724609,-0.362346261739731,0.321054726839066,0.356517225503922,-0.147587507963181,-0.922544002532959
			 ,0.662800967693329,-0.662800967693329,-0.348277240991592,0.487014383077621,-0.487014383077621,-0.724997699260712
			 ,-0.662800967693329,0.662800967693329,-0.348277240991592,0.187871947884560,-0.453657656908035,-0.871120333671570
			 ,-0.466170221567154,-0.466200739145279,0.751854002475739,-0.599261462688446,-0.599261462688446,0.530777931213379
			 ,0.466170221567154,0.466200739145279,0.751854002475739,-0.527359843254089,-0.527359843254089,0.666096985340118
			 ,-0.487014383077621,0.487014383077621,-0.724997699260712,0.000000000000000,-0.423810541629791,-0.905728340148926
			 ,0.705557405948639,-0.705557405948639,0.065736867487431,-0.378307431936264,-0.913449525833130,-0.149876400828362
			 ,-0.913449525833130,-0.378307431936264,-0.149876400828362,0.874965667724609,-0.362346261739731,0.321054726839066
			 ,0.000000000000000,-0.847499012947083,0.530777931213379,-0.705557405948639,-0.705557405948639,0.065736867487431
			 ,0.705557405948639,0.705557405948639,0.065736867487431,0.362346261739731,0.874965667724609,0.321054726839066
			 ,-0.874965667724609,0.362346261739731,0.321054726839066,0.997833192348480,0.000000000000000,0.065736867487431
			 ,0.000000000000000,0.847499012947083,0.530777931213379,-0.599261462688446,0.599261462688446,0.530777931213379
			 ,-0.997833192348480,0.000000000000000,0.065736867487431,0.599261462688446,-0.599261462688446,0.530777931213379
			 ,-0.362346261739731,-0.874965667724609,0.321054726839066,0.000000000000000,-0.372051149606705,-0.928189933300018
			 ,0.301797538995743,-0.728843033313751,0.614551246166229,-0.844843924045563,0.000000000000000,0.534989476203918
			 ,0.263069540262222,0.263069540262222,-0.928189933300018,-0.597369313240051,0.597369313240051,0.534989476203918
			 ,0.597369313240051,0.597369313240051,0.534989476203918,-0.216315194964409,0.522446334362030,-0.824732184410095
			 ,-0.522446334362030,0.216315194964409,-0.824732184410095,0.299661248922348,0.299661248922348,-0.905728340148926
			 ,-0.522446334362030,-0.216315194964409,-0.824732184410095,0.522446334362030,0.216315194964409,-0.824732184410095
			 ,-0.641926348209381,0.641926348209381,-0.419263273477554,-0.249214142560959,0.103183083236217,-0.962920010089874
			 ,-0.907834112644196,0.000000000000000,-0.419293791055679,-0.445448160171509,0.184453874826431,0.876094877719879
			 ,-0.508560419082642,0.508560419082642,-0.694723367691040,-0.719229698181152,0.000000000000000,-0.694723367691040
			 ,-0.249214142560959,-0.103183083236217,-0.962920010089874,-0.641926348209381,-0.641926348209381,-0.419263273477554
			 ,-0.445448160171509,-0.184453874826431,0.876094877719879,-0.508560419082642,-0.508560419082642,-0.694723367691040
			 ,-0.184453874826431,0.445417642593384,0.876094877719879,0.000000000000000,0.719229698181152,-0.694723367691040
			 ,0.000000000000000,0.907834112644196,-0.419293791055679,-0.103183083236217,0.249214142560959,-0.962920010089874
			 ,0.641926348209381,0.641926348209381,-0.419263273477554,0.184453874826431,0.445448160171509,0.876094877719879
			 ,0.508560419082642,0.508560419082642,-0.694723367691040,-0.184453874826431,-0.445448160171509,0.876094877719879
			 ,0.000000000000000,-0.719229698181152,-0.694723367691040,-0.103183083236217,-0.249214142560959,-0.962920010089874
			 ,0.000000000000000,-0.907834112644196,-0.419293791055679,0.907834112644196,0.000000000000000,-0.419293791055679
			 ,0.249214142560959,0.103183083236217,-0.962920010089874,0.445448160171509,0.184453874826431,0.876094877719879
			 ,0.719229698181152,0.000000000000000,-0.694723367691040,0.184453874826431,-0.445448160171509,0.876094877719879
			 ,0.508560419082642,-0.508560419082642,-0.694723367691040,0.641926348209381,-0.641926348209381,-0.419263273477554
			 ,0.249214142560959,-0.103183083236217,-0.962920010089874,0.445448160171509,-0.184453874826431,0.876094877719879
			 ,0.269661545753479,0.000000000000000,-0.962950527667999,0.190649121999741,-0.190649121999741,-0.962950527667999
			 ,0.000000000000000,-0.999572753906250,-0.028321176767349,-0.923551142215729,-0.382427453994751,-0.028077028691769
			 ,-0.927640616893768,0.000000000000000,0.373393952846527,0.927640616893768,0.000000000000000,0.373393952846527
			 ,0.655934333801270,-0.655934333801270,0.373393952846527,0.355021834373474,0.857325971126556,0.372722566127777
			 ,-0.355021834373474,-0.857325971126556,0.372722566127777,0.355021834373474,-0.857325971126556,0.372722566127777
			 ,0.000000000000000,0.996948122978210,0.077761158347130,-0.996948122978210,0.000000000000000,0.077761158347130
			 ,-0.704947054386139,0.704947054386139,0.077761158347130,-0.704947054386139,-0.704947054386139,0.077761158347130
			 ,0.715567469596863,-0.296334713697433,-0.632526636123657,0.715567469596863,0.296334713697433,-0.632526636123657
			 ,-0.296334713697433,-0.715597987174988,-0.632526636123657,0.296334713697433,-0.715597987174988,-0.632526636123657
			 ,0.704947054386139,-0.704947054386139,0.077761158347130,0.000000000000000,-0.996948122978210,0.077761158347130
			 ,0.704947054386139,0.704947054386139,0.077761158347130,0.996948122978210,0.000000000000000,0.077761158347130
			 ,0.296334713697433,0.715567469596863,-0.632526636123657,-0.715567469596863,-0.296334713697433,-0.632526636123657
			 ,-0.715597987174988,0.296334713697433,-0.632526636123657,-0.296334713697433,0.715567469596863,-0.632526636123657
			 ,-0.890285968780518,0.000000000000000,0.455336153507233,-1.000000000000000,0.000000000000000,0.000000000000000
			 ,-0.745231509208679,0.000000000000000,-0.666768372058868,-0.707083344459534,0.707083344459534,0.000000000000000
			 ,-0.526963114738464,0.526963114738464,-0.666768372058868,0.000000000000000,0.890285968780518,0.455336153507233
			 ,0.000000000000000,0.632862329483032,0.774254560470581,0.000000000000000,0.000000000000000,1.000000000000000
			 ,0.447462379932404,0.447462379932404,0.774285078048706,0.890285968780518,0.000000000000000,0.455336153507233
			 ,1.000000000000000,0.000000000000000,0.000000000000000,0.632862329483032,0.000000000000000,0.774254560470581
			 ,0.385814994573593,-0.385814994573593,0.838007748126984,0.629535794258118,-0.629535794258118,0.455336153507233
			 ,0.629535794258118,-0.629535794258118,-0.455336153507233,0.447462379932404,-0.447462379932404,0.774285078048706
			 ,0.000000000000000,-0.890285968780518,0.455336153507233,0.000000000000000,-1.000000000000000,0.000000000000000
			 ,0.000000000000000,-0.745231509208679,-0.666768372058868,-0.385814994573593,-0.385814994573593,0.838007748126984
			 ,-0.629535794258118,-0.629535794258118,0.455336153507233,-0.526963114738464,-0.526963114738464,-0.666768372058868
			 ,0.000000000000000,0.384838402271271,-0.922971308231354,0.000000000000000,0.565080702304840,-0.825006842613220
			 ,0.000000000000000,0.844843924045563,0.534989476203918,0.000000000000000,0.372051149606705,-0.928189933300018
			 ,0.000000000000000,0.490768164396286,-0.871272921562195,0.000000000000000,0.840144038200378,-0.542344450950623
			 ,0.000000000000000,0.988647103309631,-0.150151073932648,0.000000000000000,0.946897804737091,0.321481972932816
			 ,0.000000000000000,0.745841860771179,0.666096985340118,0.000000000000000,0.659321904182434,0.751823484897614
			 ,0.272103041410446,0.272103041410446,-0.922971308231354,0.399578839540482,0.399578839540482,-0.825006842613220
			 ,0.347025960683823,0.347025960683823,-0.871272921562195,0.594073295593262,0.594073295593262,-0.542344450950623
			 ,0.699056982994080,0.699056982994080,-0.150181591510773,0.669545590877533,0.669545590877533,0.321481972932816
			 ,0.384838402271271,0.000000000000000,-0.922971308231354,0.565080702304840,0.000000000000000,-0.825006842613220
			 ,0.844843924045563,0.000000000000000,0.534989476203918,0.787926852703094,0.000000000000000,0.615741431713104
			 ,0.840144038200378,0.000000000000000,-0.542344450950623,0.988647103309631,0.000000000000000,-0.150151073932648
			 ,0.946897804737091,0.000000000000000,0.321481972932816,0.659321904182434,0.000000000000000,0.751823484897614
			 ,0.272103041410446,-0.272103041410446,-0.922971308231354,0.399578839540482,-0.399578839540482,-0.825006842613220
			 ,0.597369313240051,-0.597369313240051,0.534989476203918,0.347025960683823,-0.347025960683823,-0.871272921562195
			 ,0.594073295593262,-0.594073295593262,-0.542344450950623,0.699056982994080,-0.699056982994080,-0.150181591510773
			 ,0.669545590877533,-0.669545590877533,0.321481972932816,0.466170221567154,-0.466170221567154,0.751854002475739
			 ,0.000000000000000,-0.384838402271271,-0.922971308231354,0.000000000000000,-0.565080702304840,-0.825006842613220
			 ,0.000000000000000,-0.844843924045563,0.534989476203918,0.000000000000000,-0.840144038200378,-0.542344450950623
			 ,0.000000000000000,-0.988647103309631,-0.150151073932648,0.000000000000000,-0.946897804737091,0.321481972932816
			 ,0.000000000000000,-0.659321904182434,0.751823484897614,-0.272103041410446,-0.272103041410446,-0.922971308231354
			 ,-0.399578839540482,-0.399578839540482,-0.825006842613220,-0.557145893573761,-0.557145893573761,0.615741431713104
			 ,-0.347025960683823,-0.347025960683823,-0.871272921562195,-0.594073295593262,-0.594073295593262,-0.542344450950623
			 ,-0.699056982994080,-0.699056982994080,-0.150181591510773,-0.669545590877533,-0.669545590877533,0.321481972932816
			 ,-0.384838402271271,0.000000000000000,-0.922971308231354,-0.565080702304840,0.000000000000000,-0.825006842613220
			 ,-0.787926852703094,0.000000000000000,0.615741431713104,-0.490768164396286,0.000000000000000,-0.871272921562195
			 ,-0.840144038200378,0.000000000000000,-0.542344450950623,-0.988647103309631,0.000000000000000,-0.150151073932648
			 ,-0.946897804737091,0.000000000000000,0.321481972932816,-0.745841860771179,0.000000000000000,0.666096985340118
			 ,-0.659321904182434,0.000000000000000,0.751823484897614,-0.272103041410446,0.272103041410446,-0.922971308231354
			 ,-0.399578839540482,0.399578839540482,-0.825006842613220,-0.557145893573761,0.557145893573761,0.615741431713104
			 ,-0.347025960683823,0.347025960683823,-0.871272921562195,-0.594073295593262,0.594073295593262,-0.542344450950623
			 ,-0.699056982994080,0.699056982994080,-0.150181591510773,-0.669545590877533,0.669545590877533,0.321481972932816
			 ,-0.527359843254089,0.527359843254089,0.666096985340118,0.557145893573761,-0.557145893573761,0.615741431713104
			 ,0.000000000000000,0.269661545753479,-0.962950527667999,0.000000000000000,0.482863843441010,0.875667572021484
			 ,0.341410577297211,0.341410577297211,0.875667572021484,0.482863843441010,0.000000000000000,0.875667572021484
			 ,0.341410577297211,-0.341410577297211,0.875667572021484,0.000000000000000,-0.269661545753479,-0.962950527667999
			 ,0.000000000000000,-0.482863843441010,0.875667572021484,-0.341410577297211,-0.341410577297211,0.875667572021484
			 ,-0.190649121999741,-0.190649121999741,-0.962950527667999,-0.482863843441010,0.000000000000000,0.875667572021484
			 ,-0.341410577297211,0.341410577297211,0.875667572021484,0.999572753906250,0.000000000000000,-0.028321176767349
			 ,0.190649121999741,0.190649121999741,-0.962950527667999,-0.190649121999741,0.190649121999741,-0.962950527667999
			 ,-0.269661545753479,0.000000000000000,-0.962950527667999,-0.655934333801270,0.655934333801270,0.373393952846527
			 ,-0.655934333801270,-0.655934333801270,0.373393952846527,0.000000000000000,0.927640616893768,0.373393952846527
			 ,0.655934333801270,0.655934333801270,0.373393952846527,0.000000000000000,-0.927640616893768,0.373393952846527
			 ,0.000000000000000,0.773552656173706,-0.633716821670532,-0.546983242034912,-0.546983242034912,-0.633716821670532
			 ,-0.773552656173706,0.000000000000000,-0.633716821670532,-0.546983242034912,0.546983242034912,-0.633716821670532
			 ,0.546983242034912,-0.546983242034912,-0.633716821670532,0.773552656173706,0.000000000000000,-0.633716821670532
			 ,0.000000000000000,-0.773552656173706,-0.633716821670532,0.546983242034912,0.546983242034912,-0.633716821670532
			 ,0.301797538995743,0.728843033313751,0.614551246166229,0.557145893573761,0.557145893573761,0.615741431713104
			 ,0.728843033313751,0.301797538995743,0.614551246166229,-0.447462379932404,0.447462379932404,0.774285078048706
			 ,-0.583910644054413,0.241798147559166,0.774956524372101,-0.632862329483032,0.000000000000000,0.774254560470581
			 ,-0.241798147559166,0.583910644054413,0.774956524372101,0.000000000000000,0.745231509208679,-0.666768372058868
			 ,0.284768223762512,0.687490463256836,-0.667989134788513,0.526963114738464,0.526963114738464,-0.666768372058868
			 ,0.583910644054413,0.241798147559166,0.774956524372101,0.745231509208679,0.000000000000000,-0.666768372058868
			 ,0.526963114738464,-0.526963114738464,-0.666768372058868,0.583910644054413,-0.241798147559166,0.774956524372101
			 ,0.000000000000000,-0.632862329483032,0.774254560470581,0.241798147559166,-0.583910644054413,0.774956524372101
			 ,-0.241798147559166,-0.583910644054413,0.774956524372101,-0.447462379932404,-0.447462379932404,0.774285078048706
			 ,-0.687490463256836,-0.284768223762512,-0.667989134788513,-0.142704546451569,-0.344676047563553,-0.927793204784393
			 ,-0.263069540262222,-0.263069540262222,-0.928189933300018,0.263069540262222,-0.263069540262222,-0.928189933300018
			 ,0.142704546451569,-0.344676047563553,-0.927793204784393,0.000000000000000,-0.787926852703094,0.615741431713104
			 ,0.000000000000000,0.787926852703094,0.615741431713104,0.372051149606705,0.000000000000000,-0.928189933300018
			 ,0.728843033313751,-0.301797538995743,0.614551246166229,-0.142704546451569,0.344676047563553,-0.927793204784393
			 ,-0.263069540262222,0.263069540262222,-0.928189933300018,-0.344676047563553,-0.142704546451569,-0.927793204784393
			 ,-0.372051149606705,0.000000000000000,-0.928189933300018,-0.344676047563553,0.142704546451569,-0.927793204784393
			 ,-0.382427453994751,-0.923551142215729,-0.028077028691769,-0.382427453994751,0.923551142215729,-0.028077028691769
			 ,0.706808686256409,0.706808686256409,-0.028321176767349,0.706808686256409,-0.706808686256409,-0.028321176767349
			 ,-0.999572753906250,0.000000000000000,-0.028321176767349,0.000000000000000,0.999572753906250,-0.028321176767349
			 ,-0.706808686256409,0.706808686256409,-0.028321176767349,-0.706808686256409,-0.706808686256409,-0.028321176767349
			 ,0.923551142215729,-0.382427453994751,-0.028077028691769,0.923551142215729,0.382427453994751,-0.028077028691769
			 ,0.382427453994751,0.923551142215729,-0.028077028691769
		}
		LayerElementSmoothing: 0 {
			Version: 102
			Name: ""
			MappingInformationType: "ByPolygon"
			ReferenceInformationType: "Direct"
			Smoothing: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
		}
		LayerElementUV: 0 {
			Version: 101
			Name: "diffuse"
			MappingInformationType: "ByPolygonVertex"
			ReferenceInformationType: "IndexToDirect"
			UV: 0.784131,0.348733,0.782102,0.330227,0.789846,0.331169,0.792038,0.350199,0.784131,0.348733,0.792038,0.350199,0.794614,0.369081
			 ,0.786949,0.366407,0.724386,0.086738,0.723720,0.077537,0.751991,0.076294,0.752190,0.085642,0.823722,0.346423,0.825979,0.365245
			 ,0.794614,0.369081,0.792038,0.350199,0.769432,0.115614,0.759914,0.113051,0.758903,0.097173,0.768739,0.098963,0.769432,0.115614
			 ,0.768739,0.098963,0.775697,0.099730,0.776046,0.116591,0.708833,0.089907,0.702209,0.091250,0.700237,0.083149,0.706966,0.081424
			 ,0.689366,0.346568,0.705854,0.341858,0.705220,0.356389,0.685615,0.363859,0.707419,0.155727,0.704889,0.195301,0.698111,0.195689
			 ,0.700878,0.156522,0.768652,0.087493,0.769654,0.078363,0.776986,0.079277,0.775919,0.088239,0.768652,0.087493,0.775919,0.088239
			 ,0.775697,0.099730,0.768739,0.098963,0.770959,0.156107,0.772691,0.196002,0.761932,0.194223,0.760999,0.153414,0.700290,0.262944
			 ,0.693234,0.262541,0.695528,0.233687,0.702469,0.234011,0.775899,0.263783,0.783023,0.263537,0.785429,0.291863,0.778093,0.291443
			 ,0.775899,0.263783,0.778093,0.291443,0.764779,0.289483,0.763653,0.263875,0.815369,0.261165,0.783023,0.263537,0.781264,0.234560
			 ,0.813500,0.232700,0.700290,0.262944,0.712473,0.263326,0.710653,0.288786,0.697428,0.290352,0.763653,0.263875,0.756128,0.263935
			 ,0.755548,0.234876,0.762696,0.234828,0.704889,0.195301,0.715671,0.193754,0.714076,0.234337,0.702469,0.234011,0.761932,0.194223
			 ,0.762696,0.234828,0.755548,0.234876,0.755141,0.193581,0.700290,0.262944,0.702469,0.234011,0.714076,0.234337,0.712473,0.263326
			 ,0.779980,0.310866,0.778093,0.291443,0.785429,0.291863,0.787559,0.311560,0.779980,0.310866,0.787559,0.311560,0.789846,0.331169
			 ,0.782102,0.330227,0.764711,0.370692,0.760770,0.383078,0.753203,0.380453,0.755844,0.367991,0.764711,0.370692,0.755844,0.367991
			 ,0.757888,0.355050,0.767623,0.357868,0.764711,0.370692,0.772471,0.373705,0.767145,0.382109,0.760770,0.383078,0.767693,0.343251
			 ,0.767623,0.357868,0.757888,0.355050,0.758200,0.340749,0.767693,0.343251,0.758200,0.340749,0.757471,0.324356,0.766513,0.326214
			 ,0.758204,0.086088,0.752190,0.085642,0.751991,0.076294,0.758347,0.076838,0.765516,0.307819,0.766513,0.326214,0.757471,0.324356
			 ,0.756992,0.306522,0.707517,0.369287,0.716446,0.367168,0.718298,0.379297,0.710814,0.381562,0.707517,0.369287,0.710814,0.381562
			 ,0.704613,0.380359,0.699715,0.371885,0.784131,0.348733,0.767693,0.343251,0.766513,0.326214,0.782102,0.330227,0.719977,0.263573
			 ,0.721222,0.234534,0.755548,0.234876,0.756128,0.263935,0.775899,0.263783,0.774309,0.234743,0.781264,0.234560,0.783023,0.263537
			 ,0.765516,0.307819,0.756992,0.306522,0.756714,0.288677,0.764779,0.289483,0.707517,0.369287,0.699715,0.371885,0.685615,0.363859
			 ,0.705220,0.356389,0.815369,0.261165,0.817540,0.288756,0.785429,0.291863,0.783023,0.263537,0.708833,0.089907,0.706966,0.081424
			 ,0.717595,0.078736,0.718600,0.087682,0.700290,0.262944,0.697428,0.290352,0.690197,0.290570,0.693234,0.262541,0.712473,0.263326
			 ,0.719977,0.263573,0.718667,0.288231,0.710653,0.288786,0.768652,0.087493,0.758204,0.086088,0.758347,0.076838,0.769654,0.078363
			 ,0.758204,0.086088,0.758903,0.097173,0.752884,0.096696,0.752190,0.085642,0.718353,0.113874,0.718739,0.098467,0.724577,0.097659
			 ,0.724393,0.112972,0.715671,0.193754,0.722461,0.193243,0.721222,0.234534,0.714076,0.234337,0.779980,0.310866,0.782102,0.330227
			 ,0.766513,0.326214,0.765516,0.307819,0.695002,0.309435,0.709391,0.306901,0.707708,0.325099,0.692144,0.328413,0.759889,0.058649
			 ,0.758347,0.076838,0.751991,0.076294,0.752668,0.057545,0.707517,0.369287,0.705220,0.356389,0.714950,0.354002,0.716446,0.367168
			 ,0.689366,0.346568,0.692144,0.328413,0.707708,0.325099,0.705854,0.341858,0.759914,0.113051,0.753712,0.112272,0.752884,0.096696
			 ,0.758903,0.097173,0.708833,0.089907,0.718600,0.087682,0.718739,0.098467,0.709488,0.100695,0.763653,0.263875,0.764779,0.289483
			 ,0.756714,0.288677,0.756128,0.263935,0.695002,0.309435,0.697428,0.290352,0.710653,0.288786,0.709391,0.306901,0.779980,0.310866
			 ,0.765516,0.307819,0.764779,0.289483,0.778093,0.291443,0.768652,0.087493,0.768739,0.098963,0.758903,0.097173,0.758204,0.086088
			 ,0.705854,0.341858,0.715426,0.339744,0.714950,0.354002,0.705220,0.356389,0.705854,0.341858,0.707708,0.325099,0.716710,0.323654
			 ,0.715426,0.339744,0.784131,0.348733,0.786949,0.366407,0.767623,0.357868,0.767693,0.343251,0.764711,0.370692,0.767623,0.357868
			 ,0.786949,0.366407,0.772471,0.373705,0.709182,0.116515,0.709488,0.100695,0.718739,0.098467,0.718353,0.113874,0.722461,0.193243
			 ,0.755141,0.193581,0.755548,0.234876,0.721222,0.234534,0.718600,0.087682,0.717595,0.078736,0.723720,0.077537,0.724386,0.086738
			 ,0.708833,0.089907,0.709488,0.100695,0.703004,0.101729,0.702209,0.091250,0.810442,0.090500,0.775919,0.088239,0.776986,0.079277
			 ,0.811085,0.082206,0.724393,0.112972,0.753712,0.112272,0.754537,0.152486,0.723636,0.152336,0.715426,0.339744,0.758200,0.340749
			 ,0.757888,0.355050,0.714950,0.354002,0.689366,0.346568,0.681595,0.347614,0.684508,0.329005,0.692144,0.328413,0.823722,0.346423
			 ,0.792038,0.350199,0.789846,0.331169,0.821531,0.327589,0.709391,0.306901,0.710653,0.288786,0.718667,0.288231,0.717903,0.305873
			 ,0.819498,0.308186,0.821531,0.327589,0.789846,0.331169,0.787559,0.311560,0.712473,0.263326,0.714076,0.234337,0.721222,0.234534
			 ,0.719977,0.263573,0.719977,0.263573,0.756128,0.263935,0.756714,0.288677,0.718667,0.288231,0.724386,0.086738,0.752190,0.085642
			 ,0.752884,0.096696,0.724577,0.097659,0.819498,0.308186,0.787559,0.311560,0.785429,0.291863,0.817540,0.288756,0.709182,0.116515
			 ,0.702799,0.117495,0.703004,0.101729,0.709488,0.100695,0.775899,0.263783,0.763653,0.263875,0.762696,0.234828,0.774309,0.234743
			 ,0.709391,0.306901,0.717903,0.305873,0.716710,0.323654,0.707708,0.325099,0.718600,0.087682,0.724386,0.086738,0.724577,0.097659
			 ,0.718739,0.098467,0.718353,0.113874,0.724393,0.112972,0.723636,0.152336,0.717256,0.153202,0.695002,0.309435,0.692144,0.328413
			 ,0.684508,0.329005,0.687570,0.309856,0.695002,0.309435,0.687570,0.309856,0.690197,0.290570,0.697428,0.290352,0.716446,0.367168
			 ,0.714950,0.354002,0.757888,0.355050,0.755844,0.367991,0.717903,0.305873,0.756992,0.306522,0.757471,0.324356,0.716710,0.323654
			 ,0.713813,0.041465,0.712402,0.041115,0.717579,0.034619,0.718773,0.035382,0.809423,0.116711,0.776046,0.116591,0.775697,0.099730
			 ,0.809816,0.100888,0.717903,0.305873,0.718667,0.288231,0.756714,0.288677,0.756992,0.306522,0.810442,0.090500,0.809816,0.100888
			 ,0.775697,0.099730,0.775919,0.088239,0.724393,0.112972,0.724577,0.097659,0.752884,0.096696,0.753712,0.112272,0.689366,0.346568
			 ,0.685615,0.363859,0.677896,0.366030,0.681595,0.347614,0.716446,0.367168,0.755844,0.367991,0.753203,0.380453,0.718298,0.379297
			 ,0.715426,0.339744,0.716710,0.323654,0.757471,0.324356,0.758200,0.340749,0.757005,0.039819,0.757068,0.052027,0.751785,0.056512
			 ,0.751560,0.035324,0.751560,0.035324,0.751785,0.056512,0.721686,0.058348,0.718773,0.035382,0.718773,0.035382,0.721686,0.058348
			 ,0.715521,0.054393,0.713813,0.041465,0.769432,0.115614,0.776046,0.116591,0.777574,0.157035,0.770959,0.156107,0.709182,0.116515
			 ,0.718353,0.113874,0.717256,0.153202,0.707419,0.155727,0.809423,0.116711,0.810048,0.156041,0.777574,0.157035,0.776046,0.116591
			 ,0.707419,0.155727,0.717256,0.153202,0.715671,0.193754,0.704889,0.195301,0.770959,0.156107,0.777574,0.157035,0.779445,0.196537
			 ,0.772691,0.196002,0.704889,0.195301,0.702469,0.234011,0.695528,0.233687,0.698111,0.195689,0.709182,0.116515,0.707419,0.155727
			 ,0.700878,0.156522,0.702799,0.117495,0.769432,0.115614,0.770959,0.156107,0.760999,0.153414,0.759914,0.113051,0.723636,0.152336
			 ,0.754537,0.152486,0.755141,0.193581,0.722461,0.193243,0.810048,0.156041,0.811682,0.195077,0.779445,0.196537,0.777574,0.157035
			 ,0.811682,0.195077,0.813500,0.232700,0.781264,0.234560,0.779445,0.196537,0.717256,0.153202,0.723636,0.152336,0.722461,0.193243
			 ,0.715671,0.193754,0.760999,0.153414,0.761932,0.194223,0.755141,0.193581,0.754537,0.152486,0.772691,0.196002,0.779445,0.196537
			 ,0.781264,0.234560,0.774309,0.234743,0.759914,0.113051,0.760999,0.153414,0.754537,0.152486,0.753712,0.112272,0.772691,0.196002
			 ,0.774309,0.234743,0.762696,0.234828,0.761932,0.194223,0.701817,0.065736,0.706966,0.081424,0.700237,0.083149,0.695021,0.068159
			 ,0.757005,0.039819,0.751560,0.035324,0.752370,0.034295,0.758259,0.039277,0.721686,0.058348,0.751785,0.056512,0.752668,0.057545
			 ,0.720904,0.059548,0.715521,0.054393,0.721686,0.058348,0.720904,0.059548,0.714147,0.055078,0.772677,0.061591,0.769654,0.078363
			 ,0.758347,0.076838,0.759889,0.058649,0.812418,0.066186,0.811085,0.082206,0.776986,0.079277,0.779757,0.062959,0.701817,0.065736
			 ,0.714020,0.061393,0.717595,0.078736,0.706966,0.081424,0.713813,0.041465,0.715521,0.054393,0.714147,0.055078,0.712402,0.041115
			 ,0.757068,0.052027,0.758437,0.052494,0.752668,0.057545,0.751785,0.056512,0.718773,0.035382,0.718049,0.034295,0.752370,0.034295
			 ,0.751560,0.035324,0.714020,0.061393,0.720904,0.059548,0.723720,0.077537,0.717595,0.078736,0.772677,0.061591,0.779757,0.062959
			 ,0.776986,0.079277,0.769654,0.078363,0.757005,0.039819,0.758259,0.039277,0.758437,0.052494,0.757068,0.052027,0.720904,0.059548
			 ,0.752668,0.057545,0.751991,0.076294,0.723720,0.077537,0.876925,0.056285,0.879057,0.074779,0.871308,0.073880,0.869010,0.054864
			 ,0.876925,0.056285,0.869010,0.054864,0.866328,0.035997,0.874008,0.038627,0.938053,0.318058,0.938739,0.327260,0.910451,0.328533
			 ,0.910229,0.319176,0.837348,0.058816,0.834986,0.040007,0.866328,0.035997,0.869010,0.054864,0.892854,0.289294,0.902373,0.291816
			 ,0.903469,0.307659,0.893625,0.305919,0.892854,0.289294,0.893625,0.305919,0.886669,0.305184,0.886242,0.288347,0.953612,0.314832
			 ,0.960247,0.313460,0.962250,0.321578,0.955510,0.323325,0.971700,0.057924,0.955238,0.062726,0.955791,0.048191,0.975354,0.040613
			 ,0.954689,0.248880,0.957011,0.209280,0.963789,0.208856,0.961230,0.248051,0.893759,0.317383,0.892788,0.326512,0.885459,0.325622
			 ,0.886494,0.316664,0.893759,0.317383,0.886494,0.316664,0.886669,0.305184,0.893625,0.305919,0.891142,0.248825,0.889205,0.208944
			 ,0.899973,0.210666,0.901113,0.251469,0.961240,0.141607,0.968298,0.141971,0.966164,0.170839,0.959221,0.170553,0.885628,0.141186
			 ,0.878506,0.141471,0.875943,0.113161,0.883281,0.113539,0.885628,0.141186,0.883281,0.113539,0.896605,0.115425,0.897873,0.141027
			 ,0.846176,0.144022,0.878506,0.141471,0.880424,0.170437,0.848203,0.172474,0.961240,0.141607,0.949055,0.141292,0.950734,0.115823
			 ,0.963950,0.114183,0.897873,0.141027,0.905398,0.140925,0.906137,0.169980,0.898990,0.170067,0.957011,0.209280,0.946236,0.210885
			 ,0.947612,0.170291,0.959221,0.170553,0.899973,0.210666,0.898990,0.170067,0.906137,0.169980,0.906766,0.211272,0.961240,0.141607
			 ,0.959221,0.170553,0.947612,0.170291,0.949055,0.141292,0.881286,0.094128,0.883281,0.113539,0.875943,0.113161,0.873704,0.093476
			 ,0.881286,0.094128,0.873704,0.093476,0.871308,0.073880,0.879057,0.074779,0.896222,0.034218,0.900095,0.021810,0.907676,0.024393
			 ,0.905104,0.036870,0.896222,0.034218,0.905104,0.036870,0.903132,0.049822,0.893381,0.047058,0.896222,0.034218,0.888445,0.031249
			 ,0.893725,0.022815,0.900095,0.021810,0.893393,0.061675,0.893381,0.047058,0.903132,0.049822,0.902899,0.064125,0.893393,0.061675
			 ,0.902899,0.064125,0.903720,0.080513,0.894667,0.078705,0.904211,0.318749,0.910229,0.319176,0.910451,0.328533,0.904094,0.328003
			 ,0.895766,0.097094,0.894667,0.078705,0.903720,0.080513,0.904298,0.098344,0.953423,0.035306,0.944506,0.037474,0.942586,0.025356
			 ,0.950058,0.023050,0.953423,0.035306,0.950058,0.023050,0.956266,0.024218,0.961210,0.032665,0.876925,0.056285,0.893393,0.061675
			 ,0.894667,0.078705,0.879057,0.074779,0.941549,0.141087,0.940464,0.170133,0.906137,0.169980,0.905398,0.140925,0.885628,0.141186
			 ,0.887377,0.170215,0.880424,0.170437,0.878506,0.141471,0.895766,0.097094,0.904298,0.098344,0.904674,0.116187,0.896605,0.115425
			 ,0.953423,0.035306,0.961210,0.032665,0.975354,0.040613,0.955791,0.048191,0.846176,0.144022,0.843851,0.116446,0.875943,0.113161
			 ,0.878506,0.141471,0.953612,0.314832,0.955510,0.323325,0.944868,0.326047,0.943838,0.317096,0.961240,0.141607,0.963950,0.114183
			 ,0.971179,0.113925,0.968298,0.141971,0.949055,0.141292,0.941549,0.141087,0.942723,0.116422,0.950734,0.115823,0.893759,0.317383
			 ,0.904211,0.318749,0.904094,0.328003,0.892788,0.326512,0.904211,0.318749,0.903469,0.307659,0.909495,0.308103,0.910229,0.319176
			 ,0.943935,0.290841,0.943654,0.306307,0.937822,0.307155,0.937878,0.291777,0.946236,0.210885,0.939447,0.211432,0.940464,0.170133
			 ,0.947612,0.170291,0.881286,0.094128,0.879057,0.074779,0.894667,0.078705,0.895766,0.097094,0.966270,0.095087,0.951895,0.097701
			 ,0.953477,0.079494,0.969023,0.076094,0.902593,0.346188,0.904094,0.328003,0.910451,0.328533,0.909810,0.347279,0.953423,0.035306
			 ,0.955791,0.048191,0.946075,0.050632,0.944506,0.037474,0.971700,0.057924,0.969023,0.076094,0.953477,0.079494,0.955238,0.062726
			 ,0.902373,0.291816,0.908568,0.292567,0.909495,0.308103,0.903469,0.307659,0.953612,0.314832,0.943838,0.317096,0.943654,0.306307
			 ,0.952907,0.304021,0.897873,0.141027,0.896605,0.115425,0.904674,0.116187,0.905398,0.140925,0.966270,0.095087,0.963950,0.114183
			 ,0.950734,0.115823,0.951895,0.097701,0.881286,0.094128,0.895766,0.097094,0.896605,0.115425,0.883281,0.113539,0.893759,0.317383
			 ,0.893625,0.305919,0.903469,0.307659,0.904211,0.318749,0.955238,0.062726,0.945678,0.064892,0.946075,0.050632,0.955791,0.048191
			 ,0.955238,0.062726,0.953477,0.079494,0.944484,0.080989,0.945678,0.064892,0.876925,0.056285,0.874008,0.038627,0.893381,0.047058
			 ,0.893393,0.061675,0.896222,0.034218,0.893381,0.047058,0.874008,0.038627,0.888445,0.031249,0.953120,0.288150,0.952907,0.304021
			 ,0.943654,0.306307,0.943935,0.290841,0.939447,0.211432,0.906766,0.211272,0.906137,0.169980,0.940464,0.170133,0.943838,0.317096
			 ,0.944868,0.326047,0.938739,0.327260,0.938053,0.318058,0.953612,0.314832,0.952907,0.304021,0.959403,0.302950,0.960247,0.313460
			 ,0.851999,0.314544,0.886494,0.316664,0.885459,0.325622,0.851390,0.322829,0.937878,0.291777,0.908568,0.292567,0.907579,0.252365
			 ,0.938476,0.252354,0.945678,0.064892,0.902899,0.064125,0.903132,0.049822,0.946075,0.050632,0.971700,0.057924,0.979464,0.056834
			 ,0.976655,0.075459,0.969023,0.076094,0.837348,0.058816,0.869010,0.054864,0.871308,0.073880,0.839644,0.077637,0.951895,0.097701
			 ,0.950734,0.115823,0.942723,0.116422,0.943389,0.098776,0.841785,0.097028,0.839644,0.077637,0.871308,0.073880,0.873704,0.093476
			 ,0.949055,0.141292,0.947612,0.170291,0.940464,0.170133,0.941549,0.141087,0.941549,0.141087,0.905398,0.140925,0.904674,0.116187
			 ,0.942723,0.116422,0.938053,0.318058,0.910229,0.319176,0.909495,0.308103,0.937822,0.307155,0.841785,0.097028,0.873704,0.093476
			 ,0.875943,0.113161,0.843851,0.116446,0.953120,0.288150,0.959512,0.287133,0.959403,0.302950,0.952907,0.304021,0.885628,0.141186
			 ,0.897873,0.141027,0.898990,0.170067,0.887377,0.170215,0.951895,0.097701,0.943389,0.098776,0.944484,0.080989,0.953477,0.079494
			 ,0.943838,0.317096,0.938053,0.318058,0.937822,0.307155,0.943654,0.306307,0.943935,0.290841,0.937878,0.291777,0.938476,0.252354
			 ,0.944857,0.251457,0.966270,0.095087,0.969023,0.076094,0.976655,0.075459,0.973700,0.094624,0.966270,0.095087,0.973700,0.094624
			 ,0.971179,0.113925,0.963950,0.114183,0.944506,0.037474,0.946075,0.050632,0.903132,0.049822,0.905104,0.036870,0.943389,0.098776
			 ,0.904298,0.098344,0.903720,0.080513,0.944484,0.080989,0.948673,0.363364,0.950085,0.363715,0.944900,0.370214,0.943705,0.369449
			 ,0.852904,0.288371,0.886242,0.288347,0.886669,0.305184,0.852582,0.304169,0.943389,0.098776,0.942723,0.116422,0.904674,0.116187
			 ,0.904298,0.098344,0.851999,0.314544,0.852582,0.304169,0.886669,0.305184,0.886494,0.316664,0.937878,0.291777,0.937822,0.307155
			 ,0.909495,0.308103,0.908568,0.292567,0.971700,0.057924,0.975354,0.040613,0.983061,0.038398,0.979464,0.056834,0.944506,0.037474
			 ,0.905104,0.036870,0.907676,0.024393,0.942586,0.025356,0.945678,0.064892,0.944484,0.080989,0.903720,0.080513,0.902899,0.064125
			 ,0.905457,0.365012,0.905433,0.352839,0.910699,0.348310,0.910899,0.369507,0.910899,0.369507,0.910699,0.348310,0.940804,0.346463
			 ,0.943705,0.369449,0.943705,0.369449,0.940804,0.346463,0.946972,0.350425,0.948673,0.363364,0.892854,0.289294,0.886242,0.288347
			 ,0.884525,0.247929,0.891142,0.248825,0.953120,0.288150,0.943935,0.290841,0.944857,0.251457,0.954689,0.248880,0.852904,0.288371
			 ,0.852077,0.249088,0.884525,0.247929,0.886242,0.288347,0.954689,0.248880,0.944857,0.251457,0.946236,0.210885,0.957011,0.209280
			 ,0.891142,0.248825,0.884525,0.247929,0.882449,0.208445,0.889205,0.208944,0.957011,0.209280,0.959221,0.170553,0.966164,0.170839
			 ,0.963789,0.208856,0.953120,0.288150,0.954689,0.248880,0.961230,0.248051,0.959512,0.287133,0.892854,0.289294,0.891142,0.248825
			 ,0.901113,0.251469,0.902373,0.291816,0.938476,0.252354,0.907579,0.252365,0.906766,0.211272,0.939447,0.211432,0.852077,0.249088
			 ,0.850230,0.210080,0.882449,0.208445,0.884525,0.247929,0.850230,0.210080,0.848203,0.172474,0.880424,0.170437,0.882449,0.208445
			 ,0.944857,0.251457,0.938476,0.252354,0.939447,0.211432,0.946236,0.210885,0.901113,0.251469,0.899973,0.210666,0.906766,0.211272
			 ,0.907579,0.252365,0.889205,0.208944,0.882449,0.208445,0.880424,0.170437,0.887377,0.170215,0.902373,0.291816,0.901113,0.251469
			 ,0.907579,0.252365,0.908568,0.292567,0.889205,0.208944,0.887377,0.170215,0.898990,0.170067,0.899973,0.210666,0.960704,0.339034
			 ,0.955510,0.323325,0.962250,0.321578,0.967510,0.336591,0.905457,0.365012,0.910899,0.369507,0.910089,0.370537,0.904205,0.365548
			 ,0.940804,0.346463,0.910699,0.348310,0.909810,0.347279,0.941587,0.345263,0.946972,0.350425,0.940804,0.346463,0.941587,0.345263
			 ,0.948346,0.349739,0.889816,0.343277,0.892788,0.326512,0.904094,0.328003,0.902593,0.346188,0.850117,0.338830,0.851390,0.322829
			 ,0.885459,0.325622,0.882741,0.341933,0.960704,0.339034,0.948480,0.343406,0.944868,0.326047,0.955510,0.323325,0.948673,0.363364
			 ,0.946972,0.350425,0.948346,0.349739,0.950085,0.363715,0.905433,0.352839,0.904066,0.352370,0.909810,0.347279,0.910699,0.348310
			 ,0.943705,0.369449,0.944426,0.370537,0.910089,0.370537,0.910899,0.369507,0.948480,0.343406,0.941587,0.345263,0.938739,0.327260
			 ,0.944868,0.326047,0.889816,0.343277,0.882741,0.341933,0.885459,0.325622,0.892788,0.326512,0.905457,0.365012,0.904205,0.365548
			 ,0.904066,0.352370,0.905433,0.352839,0.941587,0.345263,0.909810,0.347279,0.910451,0.328533,0.938739,0.327260,0.714626,0.418021
			 ,0.716702,0.436539,0.708948,0.435616,0.706708,0.416572,0.714626,0.418021,0.706708,0.416572,0.704086,0.397675,0.711766,0.400335
			 ,0.775668,0.679890,0.776355,0.689101,0.748045,0.690364,0.747832,0.681000,0.674992,0.420430,0.672689,0.401588,0.704086,0.397675
			 ,0.706708,0.416572,0.730469,0.651139,0.739981,0.653652,0.741080,0.669482,0.731247,0.667740,0.730469,0.651139,0.731247,0.667740
			 ,0.724303,0.667009,0.723862,0.650201,0.791240,0.676655,0.797881,0.675277,0.799892,0.683404,0.793144,0.685157,0.809444,0.420010
			 ,0.792959,0.424748,0.793569,0.410211,0.813170,0.402708,0.792245,0.610683,0.794515,0.571099,0.801285,0.570667,0.798784,0.609844
			 ,0.731374,0.679182,0.730385,0.688295,0.723075,0.687371,0.724125,0.678453,0.731374,0.679182,0.724125,0.678453,0.724303,0.667009
			 ,0.731247,0.667740,0.728715,0.610703,0.726739,0.570831,0.737508,0.572546,0.738685,0.613334,0.798700,0.503607,0.805738,0.503979
			 ,0.803614,0.532715,0.796692,0.532431,0.723135,0.502992,0.716006,0.503276,0.713486,0.474941,0.720827,0.475333,0.723135,0.502992
			 ,0.720827,0.475333,0.734150,0.477245,0.735383,0.502825,0.683629,0.505813,0.716006,0.503276,0.717936,0.532307,0.685659,0.534348
			 ,0.798700,0.503607,0.786538,0.503292,0.788269,0.477830,0.801478,0.476230,0.735383,0.502825,0.742907,0.502712,0.743688,0.531870
			 ,0.736529,0.531948,0.794515,0.571099,0.783751,0.572713,0.785115,0.532163,0.796692,0.532431,0.737508,0.572546,0.736529,0.531948
			 ,0.743688,0.531870,0.744300,0.573148,0.798700,0.503607,0.796692,0.532431,0.785115,0.532163,0.786538,0.503292,0.718876,0.455908
			 ,0.720827,0.475333,0.713486,0.474941,0.711290,0.455235,0.718876,0.455908,0.711290,0.455235,0.708948,0.435616,0.716702,0.436539
			 ,0.734019,0.396002,0.737940,0.383599,0.745518,0.386212,0.742897,0.398689,0.734019,0.396002,0.742897,0.398689,0.740877,0.411643
			 ,0.731129,0.408842,0.734019,0.396002,0.726245,0.393001,0.731561,0.384580,0.737940,0.383599,0.731090,0.423470,0.731129,0.408842
			 ,0.740877,0.411643,0.740594,0.425953,0.731090,0.423470,0.740594,0.425953,0.741361,0.442351,0.732310,0.440515,0.741814,0.680566
			 ,0.747832,0.681000,0.748045,0.690364,0.741682,0.689823,0.733356,0.458913,0.732310,0.440515,0.741361,0.442351,0.741885,0.460187
			 ,0.791250,0.397310,0.782320,0.399444,0.780447,0.387311,0.787932,0.385034,0.791250,0.397310,0.787932,0.385034,0.794139,0.386227
			 ,0.799052,0.394699,0.714626,0.418021,0.731090,0.423470,0.732310,0.440515,0.716702,0.436539,0.779043,0.503094,0.777987,0.531996
			 ,0.743688,0.531870,0.742907,0.502712,0.723135,0.502992,0.724899,0.532086,0.717936,0.532307,0.716006,0.503276,0.733356,0.458913
			 ,0.741885,0.460187,0.742213,0.478023,0.734150,0.477245,0.791250,0.397310,0.799052,0.394699,0.813170,0.402708,0.793569,0.410211
			 ,0.683629,0.505813,0.681339,0.478170,0.713486,0.474941,0.716006,0.503276,0.791240,0.676655,0.793144,0.685157,0.782492,0.687886
			 ,0.781458,0.678926,0.798700,0.503607,0.801478,0.476230,0.808699,0.475996,0.805738,0.503979,0.786538,0.503292,0.779043,0.503094
			 ,0.780258,0.478409,0.788269,0.477830,0.731374,0.679182,0.741814,0.680566,0.741682,0.689823,0.730385,0.688295,0.741814,0.680566
			 ,0.741080,0.669482,0.747104,0.669927,0.747832,0.681000,0.781540,0.652658,0.781269,0.668130,0.775434,0.668981,0.775483,0.653599
			 ,0.783751,0.572713,0.776968,0.573265,0.777987,0.531996,0.785115,0.532163,0.718876,0.455908,0.716702,0.436539,0.732310,0.440515
			 ,0.733356,0.458913,0.803866,0.457153,0.789487,0.459715,0.791134,0.441513,0.806693,0.438173,0.740138,0.708046,0.741682,0.689823
			 ,0.748045,0.690364,0.747373,0.709150,0.791250,0.397310,0.793569,0.410211,0.783839,0.412614,0.782320,0.399444,0.809444,0.420010
			 ,0.806693,0.438173,0.791134,0.441513,0.792959,0.424748,0.739981,0.653652,0.746173,0.654399,0.747104,0.669927,0.741080,0.669482
			 ,0.791240,0.676655,0.781458,0.678926,0.781269,0.668130,0.790526,0.665835,0.735383,0.502825,0.734150,0.477245,0.742213,0.478023
			 ,0.742907,0.502712,0.803866,0.457153,0.801478,0.476230,0.788269,0.477830,0.789487,0.459715,0.718876,0.455908,0.733356,0.458913
			 ,0.734150,0.477245,0.720827,0.475333,0.731374,0.679182,0.731247,0.667740,0.741080,0.669482,0.741814,0.680566,0.792959,0.424748
			 ,0.783388,0.426879,0.783839,0.412614,0.793569,0.410211,0.792959,0.424748,0.791134,0.441513,0.782134,0.442975,0.783388,0.426879
			 ,0.714626,0.418021,0.711766,0.400335,0.731129,0.408842,0.731090,0.423470,0.734019,0.396002,0.731129,0.408842,0.711766,0.400335
			 ,0.726245,0.393001,0.790724,0.649957,0.790526,0.665835,0.781269,0.668130,0.781540,0.652658,0.776968,0.573265,0.744300,0.573148
			 ,0.743688,0.531870,0.777987,0.531996,0.781458,0.678926,0.782492,0.687886,0.776355,0.689101,0.775668,0.679890,0.791240,0.676655
			 ,0.790526,0.665835,0.797026,0.664758,0.797881,0.675277,0.689765,0.676442,0.724125,0.678453,0.723075,0.687371,0.689193,0.684702
			 ,0.775483,0.653599,0.746173,0.654399,0.745148,0.614223,0.776040,0.614176,0.783388,0.426879,0.740594,0.425953,0.740877,0.411643
			 ,0.783839,0.412614,0.809444,0.420010,0.817215,0.418952,0.814328,0.437569,0.806693,0.438173,0.674992,0.420430,0.706708,0.416572
			 ,0.708948,0.435616,0.677232,0.439285,0.789487,0.459715,0.788269,0.477830,0.780258,0.478409,0.780977,0.460761,0.679320,0.458710
			 ,0.677232,0.439285,0.708948,0.435616,0.711290,0.455235,0.786538,0.503292,0.785115,0.532163,0.777987,0.531996,0.779043,0.503094
			 ,0.779043,0.503094,0.742907,0.502712,0.742213,0.478023,0.780258,0.478409,0.775668,0.679890,0.747832,0.681000,0.747104,0.669927
			 ,0.775434,0.668981,0.679320,0.458710,0.711290,0.455235,0.713486,0.474941,0.681339,0.478170,0.790724,0.649957,0.797117,0.648932
			 ,0.797026,0.664758,0.790526,0.665835,0.723135,0.502992,0.735383,0.502825,0.736529,0.531948,0.724899,0.532086,0.789487,0.459715
			 ,0.780977,0.460761,0.782134,0.442975,0.791134,0.441513,0.781458,0.678926,0.775668,0.679890,0.775434,0.668981,0.781269,0.668130
			 ,0.781540,0.652658,0.775483,0.653599,0.776040,0.614176,0.782418,0.613271,0.803866,0.457153,0.806693,0.438173,0.814328,0.437569
			 ,0.811294,0.456720,0.803866,0.457153,0.811294,0.456720,0.808699,0.475996,0.801478,0.476230,0.782320,0.399444,0.783839,0.412614
			 ,0.740877,0.411643,0.742897,0.398689,0.780977,0.460761,0.741885,0.460187,0.741361,0.442351,0.782134,0.442975,0.786308,0.725265
			 ,0.787723,0.725616,0.782528,0.732127,0.781332,0.731361,0.690577,0.650308,0.723862,0.650201,0.724303,0.667009,0.690306,0.666086
			 ,0.780977,0.460761,0.780258,0.478409,0.742213,0.478023,0.741885,0.460187,0.689765,0.676442,0.690306,0.666086,0.724303,0.667009
			 ,0.724125,0.678453,0.775483,0.653599,0.775434,0.668981,0.747104,0.669927,0.746173,0.654399,0.809444,0.420010,0.813170,0.402708
			 ,0.820889,0.400524,0.817215,0.418952,0.782320,0.399444,0.742897,0.398689,0.745518,0.386212,0.780447,0.387311,0.783388,0.426879
			 ,0.782134,0.442975,0.741361,0.442351,0.740594,0.425953,0.743013,0.726916,0.742989,0.714720,0.748264,0.710183,0.748465,0.731419
			 ,0.748465,0.731419,0.748264,0.710183,0.778425,0.708332,0.781332,0.731361,0.781332,0.731361,0.778425,0.708332,0.784604,0.712301
			 ,0.786308,0.725265,0.730469,0.651139,0.723862,0.650201,0.722100,0.609816,0.728715,0.610703,0.790724,0.649957,0.781540,0.652658
			 ,0.782418,0.613271,0.792245,0.610683,0.690577,0.650308,0.689658,0.611033,0.722100,0.609816,0.723862,0.650201,0.792245,0.610683
			 ,0.782418,0.613271,0.783751,0.572713,0.794515,0.571099,0.728715,0.610703,0.722100,0.609816,0.719980,0.570337,0.726739,0.570831
			 ,0.794515,0.571099,0.796692,0.532431,0.803614,0.532715,0.801285,0.570667,0.790724,0.649957,0.792245,0.610683,0.798784,0.609844
			 ,0.797117,0.648932,0.730469,0.651139,0.728715,0.610703,0.738685,0.613334,0.739981,0.653652,0.776040,0.614176,0.745148,0.614223
			 ,0.744300,0.573148,0.776968,0.573265,0.689658,0.611033,0.687739,0.572013,0.719980,0.570337,0.722100,0.609816,0.687739,0.572013
			 ,0.685659,0.534348,0.717936,0.532307,0.719980,0.570337,0.782418,0.613271,0.776040,0.614176,0.776968,0.573265,0.783751,0.572713
			 ,0.738685,0.613334,0.737508,0.572546,0.744300,0.573148,0.745148,0.614223,0.726739,0.570831,0.719980,0.570337,0.717936,0.532307
			 ,0.724899,0.532086,0.739981,0.653652,0.738685,0.613334,0.745148,0.614223,0.746173,0.654399,0.726739,0.570831,0.724899,0.532086
			 ,0.736529,0.531948,0.737508,0.572546,0.798352,0.700885,0.793144,0.685157,0.799892,0.683404,0.805166,0.698435,0.743013,0.726916
			 ,0.748465,0.731419,0.747654,0.732451,0.741758,0.727453,0.778425,0.708332,0.748264,0.710183,0.747373,0.709150,0.779209,0.707130
			 ,0.784604,0.712301,0.778425,0.708332,0.779209,0.707130,0.785981,0.711614,0.727317,0.705098,0.730385,0.688295,0.741682,0.689823
			 ,0.740138,0.708046,0.687991,0.700386,0.689193,0.684702,0.723075,0.687371,0.720213,0.703710,0.798352,0.700885,0.786112,0.705269
			 ,0.782492,0.687886,0.793144,0.685157,0.786308,0.725265,0.784604,0.712301,0.785981,0.711614,0.787723,0.725616,0.742989,0.714720
			 ,0.741620,0.714251,0.747373,0.709150,0.748264,0.710183,0.781332,0.731361,0.782054,0.732451,0.747654,0.732451,0.748465,0.731419
			 ,0.786112,0.705269,0.779209,0.707130,0.776355,0.689101,0.782492,0.687886,0.727317,0.705098,0.720213,0.703710,0.723075,0.687371
			 ,0.730385,0.688295,0.743013,0.726916,0.741758,0.727453,0.741620,0.714251,0.742989,0.714720,0.779209,0.707130,0.747373,0.709150
			 ,0.748045,0.690364,0.776355,0.689101,0.938628,0.704223,0.936541,0.685719,0.944291,0.686637,0.946542,0.705666,0.938628,0.704223
			 ,0.946542,0.705666,0.949175,0.724551,0.941498,0.721897,0.877535,0.442381,0.876849,0.433157,0.905200,0.431898,0.905409,0.441275
			 ,0.978235,0.701790,0.980551,0.720619,0.949175,0.724551,0.946542,0.705666,0.922776,0.471185,0.913255,0.468662,0.912165,0.452813
			 ,0.922010,0.454563,0.922776,0.471185,0.922010,0.454563,0.928963,0.455301,0.929387,0.472131,0.861944,0.445619,0.855294,0.446998
			 ,0.853279,0.438861,0.860036,0.437105,0.843867,0.702302,0.860338,0.697555,0.859739,0.712084,0.840156,0.719596,0.860942,0.511654
			 ,0.858686,0.551255,0.851915,0.551690,0.854400,0.512495,0.921891,0.443104,0.922887,0.433977,0.930208,0.434906,0.929150,0.443839
			 ,0.921891,0.443104,0.929150,0.443839,0.928963,0.455301,0.922010,0.454563,0.924485,0.511643,0.926469,0.551520,0.915699,0.549802
			 ,0.914518,0.509007,0.854542,0.618741,0.847507,0.618375,0.849608,0.589644,0.856529,0.589923,0.930072,0.619313,0.937196,0.619026
			 ,0.939730,0.647340,0.932394,0.646952,0.930072,0.619313,0.932394,0.646952,0.919078,0.645049,0.917833,0.619485,0.969542,0.616468
			 ,0.937196,0.619026,0.935258,0.590019,0.967487,0.587962,0.854542,0.618741,0.866700,0.619049,0.864988,0.644499,0.851786,0.646108
			 ,0.917833,0.619485,0.910313,0.619602,0.909522,0.590461,0.916678,0.590382,0.858686,0.551255,0.869451,0.549637,0.868105,0.590185
			 ,0.856529,0.589923,0.915699,0.549802,0.916678,0.590382,0.909522,0.590461,0.908907,0.549200,0.854542,0.618741,0.856529,0.589923
			 ,0.868105,0.590185,0.866700,0.619049,0.934355,0.666364,0.932394,0.646952,0.939730,0.647340,0.941937,0.667031,0.934355,0.666364
			 ,0.941937,0.667031,0.944291,0.686637,0.936541,0.685719,0.919262,0.726242,0.915351,0.738640,0.907776,0.736033,0.910387,0.723562
			 ,0.919262,0.726242,0.910387,0.723562,0.912398,0.710615,0.922141,0.713408,0.919262,0.726242,0.927032,0.729236,0.921724,0.737655
			 ,0.915351,0.738640,0.922171,0.698789,0.922141,0.713408,0.912398,0.710615,0.912670,0.696314,0.922171,0.698789,0.912670,0.696314
			 ,0.911893,0.679926,0.920940,0.681756,0.911436,0.441712,0.905409,0.441275,0.905200,0.431898,0.911572,0.432442,0.919882,0.663370
			 ,0.920940,0.681756,0.911893,0.679926,0.911358,0.662102,0.862066,0.724974,0.870988,0.722835,0.872869,0.734959,0.865390,0.737240
			 ,0.862066,0.724974,0.865390,0.737240,0.859187,0.736052,0.854271,0.727590,0.938628,0.704223,0.922171,0.698789,0.920940,0.681756
			 ,0.936541,0.685719,0.874193,0.619241,0.875231,0.590349,0.909522,0.590461,0.910313,0.619602,0.930072,0.619313,0.928300,0.590241
			 ,0.935258,0.590019,0.937196,0.619026,0.919882,0.663370,0.911358,0.662102,0.911019,0.644276,0.919078,0.645049,0.862066,0.724974
			 ,0.854271,0.727590,0.840156,0.719596,0.859739,0.712084,0.969542,0.616468,0.971852,0.644091,0.939730,0.647340,0.937196,0.619026
			 ,0.861944,0.445619,0.860036,0.437105,0.870704,0.434373,0.871738,0.443345,0.854542,0.618741,0.851786,0.646108,0.844568,0.646348
			 ,0.847507,0.618375,0.866700,0.619049,0.874193,0.619241,0.872994,0.643916,0.864988,0.644499,0.921891,0.443104,0.911436,0.441712
			 ,0.911572,0.432442,0.922887,0.433977,0.911436,0.441712,0.912165,0.452813,0.906134,0.452364,0.905409,0.441275,0.871654,0.469643
			 ,0.871926,0.454155,0.877768,0.453303,0.877717,0.468702,0.869451,0.549637,0.876235,0.549083,0.875231,0.590349,0.868105,0.590185
			 ,0.934355,0.666364,0.936541,0.685719,0.920940,0.681756,0.919882,0.663370,0.849414,0.665177,0.863783,0.662606,0.862150,0.680798
			 ,0.846602,0.684148,0.913126,0.414188,0.911572,0.432442,0.905200,0.431898,0.905878,0.413080,0.862066,0.724974,0.859739,0.712084
			 ,0.869461,0.709675,0.870988,0.722835,0.843867,0.702302,0.846602,0.684148,0.862150,0.680798,0.860338,0.697555,0.913255,0.468662
			 ,0.907058,0.467910,0.906134,0.452364,0.912165,0.452813,0.861944,0.445619,0.871738,0.443345,0.871926,0.454155,0.862658,0.456451
			 ,0.917833,0.619485,0.919078,0.645049,0.911019,0.644276,0.910313,0.619602,0.849414,0.665177,0.851786,0.646108,0.864988,0.644499
			 ,0.863783,0.662606,0.934355,0.666364,0.919882,0.663370,0.919078,0.645049,0.932394,0.646952,0.921891,0.443104,0.922010,0.454563
			 ,0.912165,0.452813,0.911436,0.441712,0.860338,0.697555,0.869902,0.695419,0.869461,0.709675,0.859739,0.712084,0.860338,0.697555
			 ,0.862150,0.680798,0.871143,0.679331,0.869902,0.695419,0.938628,0.704223,0.941498,0.721897,0.922141,0.713408,0.922171,0.698789
			 ,0.919262,0.726242,0.922141,0.713408,0.941498,0.721897,0.927032,0.729236,0.862461,0.472347,0.862658,0.456451,0.871926,0.454155
			 ,0.871654,0.469643,0.876235,0.549083,0.908907,0.549200,0.909522,0.590461,0.875231,0.590349,0.871738,0.443345,0.870704,0.434373
			 ,0.876849,0.433157,0.877535,0.442381,0.861944,0.445619,0.862658,0.456451,0.856151,0.457531,0.855294,0.446998,0.963572,0.445880
			 ,0.929150,0.443839,0.930208,0.434906,0.964151,0.437605,0.877717,0.468702,0.907058,0.467910,0.908053,0.508115,0.877156,0.508157
			 ,0.869902,0.695419,0.912670,0.696314,0.912398,0.710615,0.869461,0.709675,0.843867,0.702302,0.836101,0.703365,0.838973,0.684757
			 ,0.846602,0.684148,0.978235,0.701790,0.946542,0.705666,0.944291,0.686637,0.975984,0.682948,0.863783,0.662606,0.864988,0.644499
			 ,0.872994,0.643916,0.872287,0.661554,0.973884,0.663536,0.975984,0.682948,0.944291,0.686637,0.941937,0.667031,0.866700,0.619049
			 ,0.868105,0.590185,0.875231,0.590349,0.874193,0.619241,0.874193,0.619241,0.910313,0.619602,0.911019,0.644276,0.872994,0.643916
			 ,0.877535,0.442381,0.905409,0.441275,0.906134,0.452364,0.877768,0.453303,0.973884,0.663536,0.941937,0.667031,0.939730,0.647340
			 ,0.971852,0.644091,0.862461,0.472347,0.856062,0.473374,0.856151,0.457531,0.862658,0.456451,0.930072,0.619313,0.917833,0.619485
			 ,0.916678,0.590382,0.928300,0.590241,0.863783,0.662606,0.872287,0.661554,0.871143,0.679331,0.862150,0.680798,0.871738,0.443345
			 ,0.877535,0.442381,0.877768,0.453303,0.871926,0.454155,0.871654,0.469643,0.877717,0.468702,0.877156,0.508157,0.870775,0.509062
			 ,0.849414,0.665177,0.846602,0.684148,0.838973,0.684757,0.841990,0.665616,0.849414,0.665177,0.841990,0.665616,0.844568,0.646348
			 ,0.851786,0.646108,0.870988,0.722835,0.869461,0.709675,0.912398,0.710615,0.910387,0.723562,0.872287,0.661554,0.911358,0.662102
			 ,0.911893,0.679926,0.871143,0.679331,0.866881,0.396938,0.865464,0.396586,0.870667,0.390064,0.871866,0.390832,0.962737,0.472065
			 ,0.929387,0.472131,0.928963,0.455301,0.963022,0.456255,0.872287,0.661554,0.872994,0.643916,0.911019,0.644276,0.911358,0.662102
			 ,0.963572,0.445880,0.963022,0.456255,0.928963,0.455301,0.929150,0.443839,0.877717,0.468702,0.877768,0.453303,0.906134,0.452364
			 ,0.907058,0.467910,0.843867,0.702302,0.840156,0.719596,0.832443,0.721784,0.836101,0.703365,0.870988,0.722835,0.910387,0.723562
			 ,0.907776,0.736033,0.872869,0.734959,0.869902,0.695419,0.871143,0.679331,0.911893,0.679926,0.912670,0.696314,0.910246,0.395284
			 ,0.910270,0.407501,0.904986,0.412045,0.904785,0.390774,0.904785,0.390774,0.904986,0.412045,0.874777,0.413897,0.871866,0.390832
			 ,0.871866,0.390832,0.874777,0.413897,0.868588,0.409922,0.866881,0.396938,0.922776,0.471185,0.929387,0.472131,0.931098,0.512533
			 ,0.924485,0.511643,0.862461,0.472347,0.871654,0.469643,0.870775,0.509062,0.860942,0.511654,0.962737,0.472065,0.963594,0.511440
			 ,0.931098,0.512533,0.929387,0.472131,0.860942,0.511654,0.870775,0.509062,0.869451,0.549637,0.858686,0.551255,0.924485,0.511643
			 ,0.931098,0.512533,0.933228,0.552015,0.926469,0.551520,0.858686,0.551255,0.856529,0.589923,0.849608,0.589644,0.851915,0.551690
			 ,0.862461,0.472347,0.860942,0.511654,0.854400,0.512495,0.856062,0.473374,0.922776,0.471185,0.924485,0.511643,0.914518,0.509007
			 ,0.913255,0.468662,0.877156,0.508157,0.908053,0.508115,0.908907,0.549200,0.876235,0.549083,0.963594,0.511440,0.965368,0.550350
			 ,0.933228,0.552015,0.931098,0.512533,0.965368,0.550350,0.967487,0.587962,0.935258,0.590019,0.933228,0.552015,0.870775,0.509062
			 ,0.877156,0.508157,0.876235,0.549083,0.869451,0.549637,0.914518,0.509007,0.915699,0.549802,0.908907,0.549200,0.908053,0.508115
			 ,0.926469,0.551520,0.933228,0.552015,0.935258,0.590019,0.928300,0.590241,0.913255,0.468662,0.914518,0.509007,0.908053,0.508115
			 ,0.907058,0.467910,0.926469,0.551520,0.928300,0.590241,0.916678,0.590382,0.915699,0.549802,0.854821,0.421355,0.860036,0.437105
			 ,0.853279,0.438861,0.847997,0.423809,0.910246,0.395284,0.904785,0.390774,0.905598,0.389740,0.911503,0.394747,0.874777,0.413897
			 ,0.904986,0.412045,0.905878,0.413080,0.873991,0.415101,0.868588,0.409922,0.874777,0.413897,0.873991,0.415101,0.867208,0.410610
			 ,0.925968,0.417146,0.922887,0.433977,0.911572,0.432442,0.913126,0.414188,0.965365,0.421892,0.964151,0.437605,0.930208,0.434906
			 ,0.933084,0.418541,0.854821,0.421355,0.867079,0.416965,0.870704,0.434373,0.860036,0.437105,0.866881,0.396938,0.868588,0.409922
			 ,0.867208,0.410610,0.865464,0.396586,0.910270,0.407501,0.911641,0.407971,0.905878,0.413080,0.904986,0.412045,0.871866,0.390832
			 ,0.871142,0.389740,0.905598,0.389740,0.904785,0.390774,0.867079,0.416965,0.873991,0.415101,0.876849,0.433157,0.870704,0.434373
			 ,0.925968,0.417146,0.933084,0.418541,0.930208,0.434906,0.922887,0.433977,0.910246,0.395284,0.911503,0.394747,0.911641,0.407971
			 ,0.910270,0.407501,0.873991,0.415101,0.905878,0.413080,0.905200,0.431898,0.876849,0.433157,0.531051,0.071749,0.539042,0.068387
			 ,0.541022,0.080151,0.537048,0.081327,0.531051,0.071749,0.537048,0.081327,0.534183,0.084352,0.524543,0.077468,0.441419,0.095160
			 ,0.444687,0.103207,0.430113,0.113553,0.423247,0.099313,0.547700,0.068935,0.555736,0.072197,0.548875,0.081915,0.545185,0.079962
			 ,0.547700,0.068935,0.545185,0.079962,0.541022,0.080151,0.539042,0.068387,0.564283,0.095274,0.561024,0.103283,0.551383,0.096398
			 ,0.553292,0.092749,0.564283,0.095274,0.553292,0.092749,0.553197,0.088638,0.564833,0.086651,0.554515,0.109001,0.548518,0.099423
			 ,0.551383,0.096398,0.561024,0.103283,0.537867,0.111815,0.529831,0.108553,0.536691,0.098835,0.540382,0.100788,0.524104,0.102064
			 ,0.520733,0.094099,0.532369,0.092112,0.533653,0.096047,0.524104,0.102064,0.533653,0.096047,0.536691,0.098835,0.529831,0.108553
			 ,0.874777,0.939398,0.898271,0.939634,0.902546,0.960728,0.870677,0.960373,0.874777,0.939398,0.870677,0.960373,0.841004,0.948703
			 ,0.852911,0.930758,0.874777,0.939398,0.852911,0.930758,0.865934,0.911129,0.879283,0.916406,0.874777,0.939398,0.879283,0.916406
			 ,0.893597,0.916561,0.898271,0.939634,0.348812,0.453519,0.402934,0.437235,0.411083,0.457229,0.352461,0.471075,0.348812,0.453519
			 ,0.352461,0.471075,0.302283,0.477147,0.300763,0.460929,0.355497,0.491394,0.418157,0.481716,0.422727,0.511652,0.357342,0.515252
			 ,0.355497,0.491394,0.357342,0.515252,0.303753,0.516005,0.303387,0.495319,0.355497,0.491394,0.303387,0.495319,0.302283,0.477147
			 ,0.352461,0.471075,0.355497,0.491394,0.352461,0.471075,0.411083,0.457229,0.418157,0.481716,0.255390,0.463844,0.300763,0.460929
			 ,0.302283,0.477147,0.255968,0.479114,0.255390,0.463844,0.255968,0.479114,0.211493,0.479899,0.211493,0.464707,0.255390,0.463844
			 ,0.254657,0.448731,0.298860,0.444943,0.300763,0.460929,0.256371,0.496098,0.303387,0.495319,0.303753,0.516005,0.256484,0.515361
			 ,0.256371,0.496098,0.256484,0.515361,0.211493,0.515423,0.211493,0.496637,0.256371,0.496098,0.211493,0.496637,0.211493,0.479899
			 ,0.255968,0.479114,0.256371,0.496098,0.255968,0.479114,0.302283,0.477147,0.303387,0.495319,0.252464,0.590878,0.211492,0.588597
			 ,0.211492,0.560986,0.254849,0.562767,0.252464,0.590878,0.254849,0.562767,0.300503,0.566779,0.295410,0.597363,0.836450,0.913966
			 ,0.852911,0.930758,0.841004,0.948703,0.818713,0.925900,0.836450,0.913966,0.818713,0.925900,0.805988,0.896666,0.827094,0.892400
			 ,0.836450,0.913966,0.827094,0.892400,0.850179,0.887731,0.855903,0.900878,0.836450,0.913966,0.855903,0.900878,0.865934,0.911129
			 ,0.852911,0.930758,0.167595,0.463844,0.211493,0.464707,0.211493,0.479899,0.167018,0.479114,0.167595,0.463844,0.167018,0.479114
			 ,0.120703,0.477147,0.122223,0.460929,0.167595,0.463844,0.122223,0.460929,0.124126,0.444942,0.168328,0.448731,0.166615,0.496097
			 ,0.211493,0.496637,0.211493,0.515423,0.166501,0.515360,0.166615,0.496097,0.166501,0.515360,0.119233,0.516004,0.119599,0.495318
			 ,0.166615,0.496097,0.119599,0.495318,0.120703,0.477147,0.167018,0.479114,0.166615,0.496097,0.167018,0.479114,0.211493,0.479899
			 ,0.211493,0.496637,0.074175,0.453519,0.122223,0.460929,0.120703,0.477147,0.070525,0.471074,0.074175,0.453519,0.070525,0.471074
			 ,0.011905,0.457228,0.020054,0.437234,0.074175,0.453519,0.078404,0.436866,0.124126,0.444942,0.122223,0.460929,0.067490,0.491393
			 ,0.119599,0.495318,0.119233,0.516004,0.065644,0.515250,0.067490,0.491393,0.065644,0.515250,0.000260,0.511649,0.004830,0.481714
			 ,0.067490,0.491393,0.004830,0.481714,0.011905,0.457228,0.070525,0.471074,0.067490,0.491393,0.070525,0.471074,0.120703,0.477147
			 ,0.119599,0.495318,0.065886,0.543797,0.120180,0.540089,0.122482,0.566778,0.070387,0.575436,0.065886,0.543797,0.070387,0.575436
			 ,0.006489,0.589062,0.000389,0.548130,0.065886,0.543797,0.000389,0.548130,0.000260,0.511649,0.065644,0.515250,0.065886,0.543797
			 ,0.065644,0.515250,0.119233,0.516004,0.120180,0.540089,0.551859,0.699018,0.546659,0.725493,0.517157,0.725330,0.511743,0.698789
			 ,0.074174,0.313158,0.020054,0.329442,0.011904,0.309448,0.070525,0.295602,0.074174,0.313158,0.070525,0.295602,0.120702,0.289530
			 ,0.122222,0.305747,0.074174,0.313158,0.122222,0.305747,0.124124,0.321734,0.078403,0.329810,0.067489,0.275283,0.004830,0.284962
			 ,0.000260,0.255027,0.065643,0.251427,0.067489,0.275283,0.065643,0.251427,0.119231,0.250672,0.119598,0.271359,0.067489,0.275283
			 ,0.119598,0.271359,0.120702,0.289530,0.070525,0.295602,0.067489,0.275283,0.070525,0.295602,0.011904,0.309448,0.004830,0.284962
			 ,0.167594,0.302832,0.122222,0.305747,0.120702,0.289530,0.167017,0.287563,0.167594,0.302832,0.167017,0.287563,0.211491,0.286778
			 ,0.211491,0.301970,0.167594,0.302832,0.211491,0.301970,0.211491,0.317238,0.168327,0.317946,0.167594,0.302832,0.168327,0.317946
			 ,0.124124,0.321734,0.122222,0.305747,0.166613,0.270579,0.119598,0.271359,0.119231,0.250672,0.166500,0.251316,0.166613,0.270579
			 ,0.166500,0.251316,0.211491,0.251254,0.211491,0.270040,0.166613,0.270579,0.211491,0.270040,0.211491,0.286778,0.167017,0.287563
			 ,0.166613,0.270579,0.167017,0.287563,0.120702,0.289530,0.119598,0.271359,0.170518,0.175799,0.211490,0.178080,0.211491,0.205690
			 ,0.168134,0.203910,0.170518,0.175799,0.168134,0.203910,0.122481,0.199899,0.127573,0.169315,0.945177,0.891982,0.945378,0.868511
			 ,0.966462,0.864230,0.966130,0.896060,0.945177,0.891982,0.966130,0.896060,0.954502,0.925704,0.936568,0.913828,0.945177,0.891982
			 ,0.936568,0.913828,0.916945,0.900839,0.922242,0.887527,0.945177,0.891982,0.922242,0.887527,0.922280,0.873210,0.945378,0.868511
			 ,0.827335,0.868897,0.827094,0.892400,0.805988,0.896666,0.806365,0.864792,0.827335,0.868897,0.806365,0.864792,0.818049,0.835145
			 ,0.835973,0.847051,0.827335,0.868897,0.835973,0.847051,0.855576,0.860070,0.850324,0.873385,0.827335,0.868897,0.850324,0.873385
			 ,0.850179,0.887731,0.827094,0.892400,0.255389,0.302832,0.211491,0.301970,0.211491,0.286778,0.255966,0.287563,0.255389,0.302832
			 ,0.255966,0.287563,0.302282,0.289529,0.300762,0.305747,0.255389,0.302832,0.254656,0.317946,0.211491,0.317238,0.211491,0.301970
			 ,0.256370,0.270579,0.211491,0.270040,0.211491,0.251254,0.256483,0.251316,0.256370,0.270579,0.256483,0.251316,0.303752,0.250671
			 ,0.303386,0.271358,0.256370,0.270579,0.303386,0.271358,0.302282,0.289529,0.255966,0.287563,0.256370,0.270579,0.255966,0.287563
			 ,0.211491,0.286778,0.211491,0.270040,0.897756,0.821546,0.874292,0.821294,0.870045,0.800210,0.901871,0.800602,0.897756,0.821546
			 ,0.901871,0.800602,0.931485,0.812280,0.919583,0.830199,0.897756,0.821546,0.919583,0.830199,0.906549,0.849817,0.893246,0.844468
			 ,0.897756,0.821546,0.893246,0.844468,0.878946,0.844377,0.874292,0.821294,0.348811,0.313157,0.300762,0.305747,0.302282,0.289529
			 ,0.352460,0.295602,0.348811,0.313157,0.352460,0.295602,0.411083,0.309448,0.402933,0.329442,0.355496,0.275282,0.303386,0.271358
			 ,0.303752,0.250671,0.357341,0.251425,0.355496,0.275282,0.357341,0.251425,0.422726,0.255024,0.418157,0.284960,0.355496,0.275282
			 ,0.418157,0.284960,0.411083,0.309448,0.352460,0.295602,0.355496,0.275282,0.352460,0.295602,0.302282,0.289529,0.303386,0.271358
			 ,0.357098,0.222877,0.302805,0.226586,0.300502,0.199897,0.352597,0.191237,0.357098,0.222877,0.352597,0.191237,0.416496,0.177610
			 ,0.422597,0.218543,0.357098,0.222877,0.422597,0.218543,0.422726,0.255024,0.357341,0.251425,0.357098,0.222877,0.357341,0.251425
			 ,0.303752,0.250671,0.302805,0.226586,0.252463,0.175798,0.295409,0.169313,0.300502,0.199897,0.254847,0.203909,0.252463,0.175798
			 ,0.254847,0.203909,0.211491,0.205690,0.211490,0.178080,0.357099,0.543799,0.422597,0.548133,0.416496,0.589065,0.352598,0.575438
			 ,0.357099,0.543799,0.352598,0.575438,0.300503,0.566779,0.302806,0.540090,0.357099,0.543799,0.302806,0.540090,0.303753,0.516005
			 ,0.357342,0.515252,0.357099,0.543799,0.357342,0.515252,0.422727,0.511652,0.422597,0.548133,0.166861,0.537837,0.211492,0.537099
			 ,0.211492,0.560986,0.168136,0.562766,0.166861,0.537837,0.168136,0.562766,0.122482,0.566778,0.120180,0.540089,0.166861,0.537837
			 ,0.120180,0.540089,0.119233,0.516004,0.166501,0.515360,0.166861,0.537837,0.166501,0.515360,0.211493,0.515423,0.211492,0.537099
			 ,0.170520,0.590877,0.127574,0.597362,0.122482,0.566778,0.168136,0.562766,0.170520,0.590877,0.168136,0.562766,0.211492,0.560986
			 ,0.211492,0.588597,0.079895,0.156233,0.127573,0.169315,0.122481,0.199899,0.070386,0.191241,0.079895,0.156233,0.070386,0.191241
			 ,0.006488,0.177616,0.023652,0.133417,0.343088,0.610446,0.295410,0.597363,0.300503,0.566779,0.352598,0.575438,0.343088,0.610446
			 ,0.352598,0.575438,0.416496,0.589065,0.399331,0.633264,0.166860,0.228840,0.120178,0.226588,0.122481,0.199899,0.168134,0.203910
			 ,0.166860,0.228840,0.168134,0.203910,0.211491,0.205690,0.211491,0.229577,0.166860,0.228840,0.211491,0.229577,0.211491,0.251254
			 ,0.166500,0.251316,0.166860,0.228840,0.166500,0.251316,0.119231,0.250672,0.120178,0.226588,0.343087,0.156229,0.295409,0.169313
			 ,0.287257,0.137586,0.328257,0.121350,0.343087,0.156229,0.328257,0.121350,0.373005,0.093369,0.399330,0.133411,0.343087,0.156229
			 ,0.399330,0.133411,0.416496,0.177610,0.352597,0.191237,0.343087,0.156229,0.352597,0.191237,0.300502,0.199897,0.295409,0.169313
			 ,0.256124,0.537837,0.302806,0.540090,0.300503,0.566779,0.254849,0.562767,0.256124,0.537837,0.254849,0.562767,0.211492,0.560986
			 ,0.211492,0.537099,0.256124,0.537837,0.211492,0.537099,0.211493,0.515423,0.256484,0.515361,0.256124,0.537837,0.256484,0.515361
			 ,0.303753,0.516005,0.302806,0.540090,0.079896,0.610444,0.023653,0.633261,0.006489,0.589062,0.070387,0.575436,0.079896,0.610444
			 ,0.070387,0.575436,0.122482,0.566778,0.127574,0.597362,0.256123,0.228839,0.211491,0.229577,0.211491,0.205690,0.254847,0.203909
			 ,0.256123,0.228839,0.254847,0.203909,0.300502,0.199897,0.302805,0.226586,0.256123,0.228839,0.302805,0.226586,0.303752,0.250671
			 ,0.256483,0.251316,0.256123,0.228839,0.256483,0.251316,0.211491,0.251254,0.211491,0.229577,0.065886,0.222879,0.000389,0.218547
			 ,0.006488,0.177616,0.070386,0.191241,0.065886,0.222879,0.070386,0.191241,0.122481,0.199899,0.120178,0.226588,0.065886,0.222879
			 ,0.120178,0.226588,0.119231,0.250672,0.065643,0.251427,0.065886,0.222879,0.065643,0.251427,0.000260,0.255027,0.000389,0.218547
			 ,0.936022,0.846974,0.919583,0.830199,0.931485,0.812280,0.953739,0.835050,0.936022,0.846974,0.953739,0.835050,0.966462,0.864230
			 ,0.945378,0.868511,0.936022,0.846974,0.945378,0.868511,0.922280,0.873210,0.916577,0.860054,0.936022,0.846974,0.916577,0.860054
			 ,0.906549,0.849817,0.919583,0.830199,0.919819,0.930278,0.936568,0.913828,0.954502,0.925704,0.931748,0.947989,0.919819,0.930278
			 ,0.931748,0.947989,0.902546,0.960728,0.898271,0.939634,0.919819,0.930278,0.898271,0.939634,0.893597,0.916561,0.906762,0.910874
			 ,0.919819,0.930278,0.906762,0.910874,0.916945,0.900839,0.936568,0.913828,0.852756,0.830613,0.835973,0.847051,0.818049,0.835145
			 ,0.840846,0.812892,0.852756,0.830613,0.840846,0.812892,0.870045,0.800210,0.874292,0.821294,0.852756,0.830613,0.874292,0.821294
			 ,0.878946,0.844377,0.865798,0.850015,0.852756,0.830613,0.865798,0.850015,0.855576,0.860070,0.835973,0.847051,0.831418,0.798857
			 ,0.804023,0.825824,0.794166,0.819271,0.824713,0.788870,0.831418,0.798857,0.824713,0.788870,0.864390,0.772120,0.866723,0.783713
			 ,0.831418,0.798857,0.866723,0.783713,0.870045,0.800210,0.840846,0.812892,0.831418,0.798857,0.840846,0.812892,0.818049,0.835145
			 ,0.804023,0.825824,0.444557,0.325991,0.446520,0.324662,0.480856,0.361065,0.479527,0.363057,0.789759,0.861537,0.789469,0.900003
			 ,0.777859,0.902347,0.777944,0.859219,0.789759,0.861537,0.777944,0.859219,0.794166,0.819271,0.804023,0.825824,0.789759,0.861537
			 ,0.804023,0.825824,0.818049,0.835145,0.806365,0.864792,0.789759,0.861537,0.806365,0.864792,0.805988,0.896666,0.789469,0.900003
			 ,0.905128,0.784020,0.866723,0.783713,0.864390,0.772120,0.907445,0.772225,0.905128,0.784020,0.907445,0.772225,0.947333,0.788416
			 ,0.940793,0.798264,0.905128,0.784020,0.940793,0.798264,0.931485,0.812280,0.901871,0.800602,0.905128,0.784020,0.901871,0.800602
			 ,0.870045,0.800210,0.866723,0.783713,0.478334,0.149843,0.523341,0.130467,0.523704,0.132757,0.479573,0.151766,0.506585,0.925318
			 ,0.460931,0.906123,0.464615,0.900667,0.507917,0.918702,0.506585,0.925318,0.507917,0.918702,0.554912,0.918765,0.556206,0.925230
			 ,0.967759,0.825613,0.940793,0.798264,0.947333,0.788416,0.977730,0.818901,0.967759,0.825613,0.977730,0.818901,0.994539,0.858528
			 ,0.982952,0.860881,0.967759,0.825613,0.982952,0.860881,0.966462,0.864230,0.953739,0.835050,0.967759,0.825613,0.953739,0.835050
			 ,0.931485,0.812280,0.940793,0.798264,0.804666,0.935350,0.831688,0.962748,0.825140,0.972620,0.794672,0.942073,0.804666,0.935350
			 ,0.794672,0.942073,0.777859,0.902347,0.789469,0.900003,0.804666,0.935350,0.789469,0.900003,0.805988,0.896666,0.818713,0.925900
			 ,0.804666,0.935350,0.818713,0.925900,0.841004,0.948703,0.831688,0.962748,0.556643,0.674799,0.602565,0.693998,0.598871,0.699478
			 ,0.555330,0.681444,0.556643,0.674799,0.555330,0.681444,0.508225,0.681554,0.506902,0.675082,0.527200,0.381117,0.479527,0.363057
			 ,0.480856,0.361065,0.527674,0.378791,0.527200,0.381117,0.527674,0.378791,0.577565,0.380740,0.578016,0.383078,0.982721,0.899288
			 ,0.982952,0.860881,0.994539,0.858528,0.994524,0.901583,0.982721,0.899288,0.994524,0.901583,0.978403,0.941525,0.968537,0.934996
			 ,0.982721,0.899288,0.968537,0.934996,0.954502,0.925704,0.966130,0.896060,0.982721,0.899288,0.966130,0.896060,0.966462,0.864230
			 ,0.982952,0.860881,0.867433,0.976985,0.905895,0.977236,0.908250,0.988839,0.865126,0.988804,0.867433,0.976985,0.865126,0.988804
			 ,0.825140,0.972620,0.831688,0.962748,0.867433,0.976985,0.831688,0.962748,0.841004,0.948703,0.870677,0.960373,0.867433,0.976985
			 ,0.870677,0.960373,0.902546,0.960728,0.905895,0.977236,0.637536,0.729321,0.631888,0.733039,0.598871,0.699478,0.602565,0.693998
			 ,0.941200,0.962015,0.968537,0.934996,0.978403,0.941525,0.947927,0.971992,0.941200,0.962015,0.947927,0.971992,0.908250,0.988839
			 ,0.905895,0.977236,0.941200,0.962015,0.905895,0.977236,0.902546,0.960728,0.931748,0.947989,0.941200,0.962015,0.931748,0.947989
			 ,0.954502,0.925704,0.968537,0.934996,0.614745,0.348314,0.574664,0.365599,0.572380,0.353426,0.608882,0.339438,0.265111,0.081241
			 ,0.224577,0.010341,0.230443,0.006196,0.290614,0.065501,0.290614,0.065501,0.230443,0.006196,0.234500,0.000260,0.313560,0.041102
			 ,0.313562,0.725573,0.234504,0.766416,0.230447,0.760480,0.290616,0.701174,0.290616,0.701174,0.230447,0.760480,0.224581,0.756335
			 ,0.265113,0.685435,0.265113,0.685435,0.224581,0.756335,0.218341,0.753457,0.238470,0.676253,0.238470,0.676253,0.218341,0.753457
			 ,0.211491,0.752926,0.211491,0.673651,0.211491,0.673651,0.211491,0.752926,0.204641,0.753457,0.184513,0.676252,0.184513,0.676252
			 ,0.204641,0.753457,0.198401,0.756335,0.157870,0.685434,0.157870,0.685434,0.198401,0.756335,0.192535,0.760480,0.132366,0.701173
			 ,0.132366,0.701173,0.192535,0.760480,0.188477,0.766415,0.109420,0.725571,0.109417,0.041107,0.188474,0.000262,0.192531,0.006197
			 ,0.132364,0.065505,0.132364,0.065505,0.192531,0.006197,0.198397,0.010342,0.157867,0.081243,0.157867,0.081243,0.198397,0.010342
			 ,0.204638,0.013220,0.184510,0.090425,0.184510,0.090425,0.204638,0.013220,0.211487,0.013751,0.211489,0.093026,0.211489,0.093026
			 ,0.211487,0.013751,0.218337,0.013219,0.238468,0.090424,0.238468,0.090424,0.218337,0.013219,0.224577,0.010341,0.265111,0.081241
			 ,0.452914,0.234978,0.454285,0.273354,0.452708,0.273693,0.451487,0.234716,0.452914,0.234978,0.451487,0.234716,0.466383,0.199151
			 ,0.467690,0.200016,0.821750,0.784457,0.863348,0.766936,0.864390,0.772120,0.824713,0.788870,0.821750,0.784457,0.824713,0.788870
			 ,0.794166,0.819271,0.789759,0.816341,0.565551,0.162698,0.527997,0.160609,0.527764,0.159070,0.565927,0.161286,0.565551,0.162698
			 ,0.565927,0.161286,0.601745,0.178933,0.600853,0.180293,0.982136,0.815935,0.999719,0.857476,0.994539,0.858528,0.977730,0.818901
			 ,0.982136,0.815935,0.977730,0.818901,0.947333,0.788416,0.950257,0.784013,0.468849,0.309500,0.497310,0.336391,0.496405,0.337749
			 ,0.467624,0.310336,0.468849,0.309500,0.467624,0.310336,0.452708,0.273693,0.454285,0.273354,0.772723,0.858194,0.789759,0.816341
			 ,0.794166,0.819271,0.777944,0.859219,0.772723,0.858194,0.777944,0.859219,0.777859,0.902347,0.772667,0.903395,0.493713,0.173623
			 ,0.467690,0.200016,0.466383,0.199151,0.492944,0.172447,0.493713,0.173623,0.492944,0.172447,0.527764,0.159070,0.527997,0.160609
			 ,0.908469,0.767013,0.950257,0.784013,0.947333,0.788416,0.907445,0.772225,0.908469,0.767013,0.907445,0.772225,0.864390,0.772120
			 ,0.863348,0.766936,0.533085,0.352325,0.572083,0.351838,0.572380,0.353426,0.532785,0.353779,0.533085,0.352325,0.532785,0.353779
			 ,0.496405,0.337749,0.497310,0.336391,0.790255,0.945044,0.772667,0.903395,0.777859,0.902347,0.794672,0.942073,0.790255,0.945044
			 ,0.794672,0.942073,0.825140,0.972620,0.822212,0.977034,0.649103,0.276185,0.647529,0.238798,0.649048,0.238411,0.650509,0.276433
			 ,0.649103,0.276185,0.650509,0.276433,0.636014,0.311716,0.634694,0.310841,0.950900,0.976401,0.909304,0.994028,0.908250,0.988839
			 ,0.947927,0.971992,0.950900,0.976401,0.947927,0.971992,0.978403,0.941525,0.982814,0.944445,0.631028,0.205241,0.600853,0.180293
			 ,0.601745,0.178933,0.632160,0.204338,0.631028,0.205241,0.632160,0.204338,0.649048,0.238411,0.647529,0.238798,0.999740,0.902597
			 ,0.982814,0.944445,0.978403,0.941525,0.994524,0.901583,0.999740,0.902597,0.994524,0.901583,0.994539,0.858528,0.999719,0.857476
			 ,0.608083,0.338219,0.634694,0.310841,0.636014,0.311716,0.608882,0.339438,0.608083,0.338219,0.608882,0.339438,0.572380,0.353426
			 ,0.572083,0.351838,0.864107,0.994028,0.822212,0.977034,0.825140,0.972620,0.865126,0.988804,0.864107,0.994028,0.865126,0.988804
			 ,0.908250,0.988839,0.909304,0.994028,0.328258,0.645325,0.373006,0.673306,0.313562,0.725573,0.290616,0.701174,0.616921,0.742876
			 ,0.594214,0.757760,0.573976,0.736476,0.589048,0.714062,0.343088,0.610446,0.328258,0.645325,0.287259,0.629090,0.295410,0.597363
			 ,0.631767,0.820138,0.616897,0.857511,0.594397,0.842557,0.604862,0.814738,0.079896,0.610444,0.127574,0.597362,0.135725,0.629089
			 ,0.094725,0.645324,0.631767,0.820138,0.604862,0.814738,0.605896,0.785050,0.632429,0.779930,0.252463,0.175798,0.211490,0.178080
			 ,0.211490,0.148745,0.248766,0.146104,0.511450,0.901201,0.516794,0.874806,0.546123,0.875017,0.551460,0.901544,0.588266,0.885751
			 ,0.573109,0.863265,0.594397,0.842557,0.616897,0.857511,0.446591,0.857369,0.430924,0.820450,0.457345,0.815252,0.469320,0.842407
			 ,0.170518,0.175799,0.127573,0.169315,0.135723,0.137588,0.174214,0.146105,0.431447,0.780304,0.446283,0.742968,0.468735,0.757883
			 ,0.458233,0.785623,0.446591,0.857369,0.469320,0.842407,0.489483,0.863807,0.474416,0.886142,0.598263,0.900604,0.588266,0.885751
			 ,0.616897,0.857511,0.631546,0.867242,0.252463,0.175798,0.248766,0.146104,0.287257,0.137586,0.295409,0.169313,0.248766,0.146104
			 ,0.238468,0.090424,0.265111,0.081241,0.287257,0.137586,0.170518,0.175799,0.174214,0.146105,0.211490,0.148745,0.211490,0.178080
			 ,0.431447,0.780304,0.458233,0.785623,0.457345,0.815252,0.430924,0.820450,0.649353,0.823662,0.631546,0.867242,0.616897,0.857511
			 ,0.631767,0.820138,0.474928,0.714763,0.490212,0.737347,0.468735,0.757883,0.446283,0.742968,0.170520,0.590877,0.211492,0.588597
			 ,0.211492,0.617932,0.174216,0.620571,0.174214,0.146105,0.135723,0.137588,0.157867,0.081243,0.184510,0.090425,0.170520,0.590877
			 ,0.174216,0.620571,0.135725,0.629089,0.127574,0.597362,0.174214,0.146105,0.184510,0.090425,0.211489,0.093026,0.211490,0.148745
			 ,0.094725,0.645324,0.135725,0.629089,0.157870,0.685434,0.132366,0.701173,0.094724,0.121354,0.132364,0.065505,0.157867,0.081243
			 ,0.135723,0.137588,0.094725,0.645324,0.132366,0.701173,0.109420,0.725571,0.049977,0.673303,0.174216,0.620571,0.211492,0.617932
			 ,0.211491,0.673651,0.184513,0.676252,0.252464,0.590878,0.295410,0.597363,0.287259,0.629090,0.248768,0.620572,0.252464,0.590878
			 ,0.248768,0.620572,0.211492,0.617932,0.211492,0.588597,0.464882,0.699920,0.474928,0.714763,0.446283,0.742968,0.431644,0.733254
			 ,0.079895,0.156233,0.094724,0.121354,0.135723,0.137588,0.127573,0.169315,0.616921,0.742876,0.632429,0.779930,0.605896,0.785050
			 ,0.594214,0.757760,0.343088,0.610446,0.399331,0.633264,0.373006,0.673306,0.328258,0.645325,0.328257,0.121350,0.287257,0.137586
			 ,0.265111,0.081241,0.290614,0.065501,0.333677,0.366972,0.293265,0.360485,0.298859,0.321734,0.344582,0.329811,0.551859,0.699018
			 ,0.589048,0.714062,0.573976,0.736476,0.546659,0.725493,0.588266,0.885751,0.551460,0.901544,0.546123,0.875017,0.573109,0.863265
			 ,0.248768,0.620572,0.238470,0.676253,0.211491,0.673651,0.211492,0.617932,0.174216,0.620571,0.184513,0.676252,0.157870,0.685434
			 ,0.135725,0.629089,0.328258,0.645325,0.290616,0.701174,0.265113,0.685435,0.287259,0.629090,0.079896,0.610444,0.094725,0.645324
			 ,0.049977,0.673303,0.023653,0.633261,0.248766,0.146104,0.211490,0.148745,0.211489,0.093026,0.238468,0.090424,0.079895,0.156233
			 ,0.023652,0.133417,0.049976,0.093375,0.094724,0.121354,0.413873,0.776823,0.431644,0.733254,0.446283,0.742968,0.431447,0.780304
			 ,0.474928,0.714763,0.511743,0.698789,0.517157,0.725330,0.490212,0.737347,0.328257,0.121350,0.290614,0.065501,0.313560,0.041102
			 ,0.373005,0.093369,0.649353,0.823662,0.631767,0.820138,0.632429,0.779930,0.649689,0.776599,0.094724,0.121354,0.049976,0.093375
			 ,0.109417,0.041107,0.132364,0.065505,0.248768,0.620572,0.287259,0.629090,0.265113,0.685435,0.238470,0.676253,0.511450,0.901201
			 ,0.474416,0.886142,0.489483,0.863807,0.516794,0.874806,0.426047,0.870939,0.431671,0.867219,0.464615,0.900667,0.460931,0.906123
			 ,0.655976,0.824988,0.637049,0.870896,0.631546,0.867242,0.649353,0.823662,0.655976,0.824988,0.649353,0.823662,0.649689,0.776599
			 ,0.656168,0.775351,0.464882,0.699920,0.508225,0.681554,0.511743,0.698789,0.474928,0.714763,0.413873,0.776823,0.431447,0.780304
			 ,0.430924,0.820450,0.413712,0.823840,0.507917,0.918702,0.464615,0.900667,0.474416,0.886142,0.511450,0.901201,0.407247,0.775512
			 ,0.426142,0.729605,0.431644,0.733254,0.413873,0.776823,0.461096,0.694319,0.506902,0.675082,0.508225,0.681554,0.464882,0.699920
			 ,0.431671,0.867219,0.446591,0.857369,0.474416,0.886142,0.464615,0.900667,0.426047,0.870939,0.407247,0.825114,0.413712,0.823840
			 ,0.431671,0.867219,0.631888,0.733039,0.616921,0.742876,0.589048,0.714062,0.598871,0.699478,0.602033,0.906215,0.598263,0.900604
			 ,0.631546,0.867242,0.637049,0.870896,0.602033,0.906215,0.556206,0.925230,0.554912,0.918765,0.598263,0.900604,0.507917,0.918702
			 ,0.511450,0.901201,0.551460,0.901544,0.554912,0.918765,0.555330,0.681444,0.551859,0.699018,0.511743,0.698789,0.508225,0.681554
			 ,0.555330,0.681444,0.598871,0.699478,0.589048,0.714062,0.551859,0.699018,0.631888,0.733039,0.649689,0.776599,0.632429,0.779930
			 ,0.616921,0.742876,0.637536,0.729321,0.656168,0.775351,0.649689,0.776599,0.631888,0.733039,0.431671,0.867219,0.413712,0.823840
			 ,0.430924,0.820450,0.446591,0.857369,0.407247,0.775512,0.413873,0.776823,0.413712,0.823840,0.407247,0.825114,0.461096,0.694319
			 ,0.464882,0.699920,0.431644,0.733254,0.426142,0.729605,0.598263,0.900604,0.554912,0.918765,0.551460,0.901544,0.588266,0.885751
			 ,0.474702,0.071533,0.484615,0.055748,0.495794,0.066927,0.481220,0.077272,0.452471,0.092635,0.454375,0.096330,0.444687,0.103207
			 ,0.441419,0.095160,0.484488,0.085319,0.502660,0.081167,0.502660,0.096977,0.485039,0.093987,0.582386,0.099417,0.575542,0.113606
			 ,0.561024,0.103283,0.564283,0.095274,0.551839,0.050807,0.547700,0.068935,0.539042,0.068387,0.536066,0.050804,0.521283,0.085477
			 ,0.524543,0.077468,0.534183,0.084352,0.532274,0.088002,0.467874,0.111775,0.475921,0.108507,0.486267,0.123080,0.472026,0.129947
			 ,0.582386,0.099417,0.564283,0.095274,0.564833,0.086651,0.582386,0.083669,0.452471,0.092635,0.441419,0.095160,0.440868,0.086493
			 ,0.452581,0.088480,0.521283,0.085477,0.532274,0.088002,0.532369,0.092112,0.520733,0.094099,0.481660,0.101988,0.485039,0.093987
			 ,0.502660,0.096977,0.497446,0.111901,0.508378,0.111952,0.503181,0.097082,0.520733,0.094099,0.524104,0.102064,0.467874,0.111775
			 ,0.472026,0.129947,0.456217,0.129946,0.459206,0.112326,0.521177,0.056000,0.536066,0.050804,0.539042,0.068387,0.531051,0.071749
			 ,0.468672,0.081134,0.464713,0.079868,0.466701,0.068154,0.474702,0.071533,0.508378,0.111952,0.524104,0.102064,0.529831,0.108553
			 ,0.519521,0.123093,0.481660,0.101988,0.497446,0.111901,0.486267,0.123080,0.475921,0.108507,0.465349,0.100723,0.469043,0.098818
			 ,0.475921,0.108507,0.467874,0.111775,0.521177,0.056000,0.531051,0.071749,0.524543,0.077468,0.510024,0.067145,0.458033,0.068705
			 ,0.449986,0.071973,0.439640,0.057400,0.453881,0.050533,0.503181,0.081333,0.510024,0.067145,0.524543,0.077468,0.521283,0.085477
			 ,0.441419,0.095160,0.423247,0.099313,0.423247,0.083503,0.440868,0.086493,0.468672,0.081134,0.474702,0.071533,0.481220,0.077272
			 ,0.471532,0.084150,0.503181,0.081333,0.521283,0.085477,0.520733,0.094099,0.503181,0.097082,0.561463,0.078687,0.564833,0.086651
			 ,0.553197,0.088638,0.551913,0.084703,0.458033,0.068705,0.453881,0.050533,0.469690,0.050533,0.466701,0.068154,0.537867,0.111815
			 ,0.540382,0.100788,0.544544,0.100600,0.546525,0.112363,0.554515,0.109001,0.546525,0.112363,0.544544,0.100600,0.548518,0.099423
			 ,0.451205,0.108947,0.459206,0.112326,0.456217,0.129946,0.441292,0.124732,0.564390,0.124751,0.549500,0.129947,0.546525,0.112363
			 ,0.554515,0.109001,0.533727,0.129944,0.519521,0.123093,0.529831,0.108553,0.537867,0.111815,0.561463,0.078687,0.551913,0.084703
			 ,0.548875,0.081915,0.555736,0.072197,0.451205,0.108947,0.441292,0.124732,0.430113,0.113553,0.444687,0.103207,0.533727,0.129944
			 ,0.537867,0.111815,0.546525,0.112363,0.549500,0.129947,0.564390,0.124751,0.554515,0.109001,0.561024,0.103283,0.575542,0.113606
			 ,0.577188,0.068798,0.582386,0.083669,0.564833,0.086651,0.561463,0.078687,0.444247,0.078492,0.440868,0.086493,0.423247,0.083503
			 ,0.428461,0.068578,0.474702,0.071533,0.466701,0.068154,0.469690,0.050533,0.484615,0.055748,0.444247,0.078492,0.428461,0.068578
			 ,0.439640,0.057400,0.449986,0.071973,0.484488,0.085319,0.481220,0.077272,0.495794,0.066927,0.502660,0.081167,0.577188,0.068798
			 ,0.561463,0.078687,0.555736,0.072197,0.566045,0.057657,0.551839,0.050807,0.566045,0.057657,0.555736,0.072197,0.547700,0.068935
			 ,0.472059,0.095959,0.473325,0.092000,0.485039,0.093987,0.481660,0.101988,0.468672,0.081134,0.471532,0.084150,0.462953,0.090240
			 ,0.464713,0.079868,0.453847,0.084521,0.452581,0.088480,0.440868,0.086493,0.444247,0.078492,0.457235,0.099346,0.451205,0.108947
			 ,0.444687,0.103207,0.454375,0.096330,0.472059,0.095959,0.481660,0.101988,0.475921,0.108507,0.469043,0.098818,0.452471,0.092635
			 ,0.452581,0.088480,0.462953,0.090240,0.454375,0.096330,0.460558,0.079757,0.456864,0.081661,0.449986,0.071973,0.458033,0.068705
			 ,0.473436,0.087845,0.473325,0.092000,0.462953,0.090240,0.471532,0.084150,0.453847,0.084521,0.444247,0.078492,0.449986,0.071973
			 ,0.456864,0.081661,0.465349,0.100723,0.461194,0.100612,0.462953,0.090240,0.469043,0.098818,0.460558,0.079757,0.458033,0.068705
			 ,0.466701,0.068154,0.464713,0.079868,0.465349,0.100723,0.467874,0.111775,0.459206,0.112326,0.461194,0.100612,0.473436,0.087845
			 ,0.484488,0.085319,0.485039,0.093987,0.473325,0.092000,0.453847,0.084521,0.456864,0.081661,0.462953,0.090240,0.452581,0.088480
			 ,0.472059,0.095959,0.469043,0.098818,0.462953,0.090240,0.473325,0.092000,0.460558,0.079757,0.464713,0.079868,0.462953,0.090240
			 ,0.456864,0.081661,0.457235,0.099346,0.454375,0.096330,0.462953,0.090240,0.461194,0.100612,0.473436,0.087845,0.471532,0.084150
			 ,0.481220,0.077272,0.484488,0.085319,0.457235,0.099346,0.461194,0.100612,0.459206,0.112326,0.451205,0.108947,0.252641,0.411852
			 ,0.254657,0.448731,0.211493,0.449438,0.211493,0.410542,0.252640,0.354824,0.211491,0.356134,0.211491,0.317238,0.254656,0.317946
			 ,0.348812,0.453519,0.344582,0.436866,0.393791,0.419424,0.402934,0.437235,0.348811,0.313157,0.344582,0.329811,0.298859,0.321734
			 ,0.300762,0.305747,0.255390,0.463844,0.211493,0.464707,0.211493,0.449438,0.254657,0.448731,0.170343,0.354824,0.168327,0.317946
			 ,0.211491,0.317238,0.211491,0.356134,0.074174,0.313158,0.078403,0.329810,0.029196,0.347252,0.020054,0.329442,0.074175,0.453519
			 ,0.020054,0.437234,0.029197,0.419424,0.078404,0.436866,0.089309,0.399705,0.129720,0.406191,0.124126,0.444942,0.078404,0.436866
			 ,0.252641,0.411852,0.293266,0.406191,0.298860,0.444943,0.254657,0.448731,0.333677,0.366972,0.344582,0.329811,0.393791,0.347253
			 ,0.371016,0.383078,0.089309,0.399705,0.078404,0.436866,0.029197,0.419424,0.051971,0.383599,0.089307,0.366971,0.078403,0.329810
			 ,0.124124,0.321734,0.129719,0.360485,0.333678,0.399705,0.371017,0.383599,0.393791,0.419424,0.344582,0.436866,0.170344,0.411853
			 ,0.211493,0.410542,0.211493,0.449438,0.168328,0.448731,0.170344,0.411853,0.168328,0.448731,0.124126,0.444942,0.129720,0.406191
			 ,0.252640,0.354824,0.254656,0.317946,0.298859,0.321734,0.293265,0.360485,0.167595,0.463844,0.168328,0.448731,0.211493,0.449438
			 ,0.211493,0.464707,0.333678,0.399705,0.344582,0.436866,0.298860,0.444943,0.293266,0.406191,0.255389,0.302832,0.300762,0.305747
			 ,0.298859,0.321734,0.254656,0.317946,0.348812,0.453519,0.300763,0.460929,0.298860,0.444943,0.344582,0.436866,0.348811,0.313157
			 ,0.402933,0.329442,0.393791,0.347253,0.344582,0.329811,0.170343,0.354824,0.129719,0.360485,0.124124,0.321734,0.168327,0.317946
			 ,0.089307,0.366971,0.051969,0.383077,0.029196,0.347252,0.078403,0.329810,0.571965,0.137125,0.616885,0.155606,0.608515,0.168478
			 ,0.568520,0.151036,0.640488,0.197897,0.660634,0.235491,0.649048,0.238411,0.632160,0.204338,0.530622,0.364345,0.532785,0.353779
			 ,0.572380,0.353426,0.574664,0.365599,0.651857,0.189182,0.640488,0.197897,0.608515,0.168478,0.616885,0.155606,0.622809,0.360471
			 ,0.577565,0.380740,0.574664,0.365599,0.614745,0.348314,0.530622,0.364345,0.489475,0.348143,0.496405,0.337749,0.532785,0.353779
			 ,0.444557,0.325991,0.423247,0.279907,0.425573,0.279424,0.446520,0.324662,0.446520,0.324662,0.425573,0.279424,0.440625,0.276279
			 ,0.458710,0.316393,0.527674,0.378791,0.480856,0.361065,0.489475,0.348143,0.530622,0.364345,0.572512,0.134893,0.571965,0.137125
			 ,0.523704,0.132757,0.523341,0.130467,0.479573,0.151766,0.487300,0.163731,0.456351,0.192529,0.443896,0.184183,0.614745,0.348314
			 ,0.608882,0.339438,0.636014,0.311716,0.646139,0.318437,0.441087,0.232761,0.451487,0.234716,0.452708,0.273693,0.440625,0.276279
			 ,0.640488,0.197897,0.632160,0.204338,0.601745,0.178933,0.608515,0.168478,0.677375,0.281057,0.675084,0.280664,0.675106,0.231839
			 ,0.677375,0.231262,0.479573,0.151766,0.523704,0.132757,0.525997,0.147363,0.487300,0.163731,0.624110,0.362428,0.578016,0.383078
			 ,0.577565,0.380740,0.622809,0.360471,0.660858,0.278220,0.650509,0.276433,0.649048,0.238411,0.660634,0.235491,0.675084,0.280664
			 ,0.660858,0.278220,0.660634,0.235491,0.675106,0.231839,0.568520,0.151036,0.608515,0.168478,0.601745,0.178933,0.565927,0.161286
			 ,0.572512,0.134893,0.618142,0.153676,0.616885,0.155606,0.571965,0.137125,0.487300,0.163731,0.492944,0.172447,0.466383,0.199151
			 ,0.456351,0.192529,0.651857,0.189182,0.675106,0.231839,0.660634,0.235491,0.640488,0.197897,0.458710,0.316393,0.467624,0.310336
			 ,0.496405,0.337749,0.489475,0.348143,0.675084,0.280664,0.658810,0.326762,0.646139,0.318437,0.660858,0.278220,0.568520,0.151036
			 ,0.565927,0.161286,0.527764,0.159070,0.525997,0.147363,0.424548,0.229602,0.426841,0.230043,0.425573,0.279424,0.423247,0.279907
			 ,0.426841,0.230043,0.441087,0.232761,0.440625,0.276279,0.425573,0.279424,0.446520,0.324662,0.458710,0.316393,0.489475,0.348143
			 ,0.480856,0.361065,0.677375,0.281057,0.660781,0.328053,0.658810,0.326762,0.675084,0.280664,0.624110,0.362428,0.622809,0.360471
			 ,0.658810,0.326762,0.660781,0.328053,0.441087,0.232761,0.456351,0.192529,0.466383,0.199151,0.451487,0.234716,0.458710,0.316393
			 ,0.440625,0.276279,0.452708,0.273693,0.467624,0.310336,0.527674,0.378791,0.530622,0.364345,0.574664,0.365599,0.577565,0.380740
			 ,0.653684,0.187786,0.651857,0.189182,0.616885,0.155606,0.618142,0.153676,0.487300,0.163731,0.525997,0.147363,0.527764,0.159070
			 ,0.492944,0.172447,0.571965,0.137125,0.568520,0.151036,0.525997,0.147363,0.523704,0.132757,0.478334,0.149843,0.479573,0.151766
			 ,0.443896,0.184183,0.441964,0.182881,0.426841,0.230043,0.443896,0.184183,0.456351,0.192529,0.441087,0.232761,0.424548,0.229602
			 ,0.441964,0.182881,0.443896,0.184183,0.426841,0.230043,0.622809,0.360471,0.614745,0.348314,0.646139,0.318437,0.658810,0.326762
			 ,0.653684,0.187786,0.677375,0.231262,0.675106,0.231839,0.651857,0.189182,0.660858,0.278220,0.646139,0.318437,0.636014,0.311716
			 ,0.650509,0.276433
			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,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649
				,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704
				,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759
				,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814
				,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869
				,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924
				,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979
				,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034
				,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089
				,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144
				,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199
				,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254
				,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309
				,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364
				,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419
				,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474
				,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529
				,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584
				,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639
				,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694
				,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749
				,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804
				,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859
				,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914
				,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969
				,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024
				,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079
				,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134
				,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189
				,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244
				,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299
				,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354
				,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409
				,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464
				,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519
				,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574
				,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629
				,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684
				,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739
				,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759
		}
		LayerElementTexture: 0 {
			Version: 101
			Name: "diffuse"
			MappingInformationType: "ByPolygon"
			ReferenceInformationType: "IndexToDirect"
			BlendMode: "Translucent"
			TextureAlpha: 1
			TextureId: -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1
		}
		LayerElementUV: 1 {
			Version: 101
			Name: "lightmap"
			MappingInformationType: "ByPolygonVertex"
			ReferenceInformationType: "IndexToDirect"
			UV: 0.827124,0.186499,0.827124,0.157251,0.821314,0.157251,0.821314,0.186499,0.819311,0.157251,0.813501,0.157251,0.813501,0.186499
			 ,0.819311,0.186499,0.280249,0.688501,0.266626,0.688501,0.266626,0.748999,0.280249,0.748999,0.311499,0.126001,0.282251,0.126001
			 ,0.282251,0.186499,0.311499,0.186499,0.436499,0.813501,0.422876,0.813501,0.422876,0.842749,0.436499,0.842749,0.483374,0.858374
			 ,0.483374,0.844751,0.477564,0.844751,0.477564,0.858374,0.475561,0.844751,0.469751,0.844751,0.469751,0.858374,0.475561,0.858374
			 ,0.420874,0.842749,0.420874,0.813501,0.407251,0.813501,0.407251,0.842749,0.170874,0.186499,0.170874,0.126001,0.165064,0.126001
			 ,0.165064,0.186499,0.498999,0.858374,0.498999,0.844751,0.493189,0.844751,0.493189,0.858374,0.491186,0.844751,0.485376,0.844751
			 ,0.485376,0.858374,0.491186,0.858374,0.264624,0.748999,0.264624,0.688501,0.251001,0.688501,0.251001,0.748999,0.842749,0.157251
			 ,0.836939,0.157251,0.836939,0.186499,0.842749,0.186499,0.834936,0.157251,0.829126,0.157251,0.829126,0.186499,0.834936,0.186499
			 ,0.405249,0.873999,0.405249,0.844751,0.391626,0.844751,0.391626,0.873999,0.280249,0.186499,0.280249,0.126001,0.251001,0.126001
			 ,0.251001,0.186499,0.389624,0.844751,0.376001,0.844751,0.376001,0.873999,0.389624,0.873999,0.858374,0.126001,0.852564,0.126001
			 ,0.852564,0.155249,0.858374,0.155249,0.311499,0.688501,0.297876,0.688501,0.297876,0.748999,0.311499,0.748999,0.163061,0.186499
			 ,0.163061,0.126001,0.157251,0.126001,0.157251,0.186499,0.436499,0.873999,0.436499,0.844751,0.422876,0.844751,0.422876,0.873999
			 ,0.850561,0.155249,0.850561,0.126001,0.844751,0.126001,0.844751,0.155249,0.873999,0.126001,0.868189,0.126001,0.868189,0.155249
			 ,0.873999,0.155249,0.483374,0.873999,0.483374,0.860376,0.477564,0.860376,0.477564,0.873999,0.475561,0.860376,0.469751,0.860376
			 ,0.469751,0.873999,0.475561,0.873999,0.498999,0.860376,0.493189,0.860376,0.493189,0.873999,0.498999,0.873999,0.491186,0.873999
			 ,0.491186,0.860376,0.485376,0.860376,0.485376,0.873999,0.452124,0.844751,0.446314,0.844751,0.446314,0.858374,0.452124,0.858374
			 ,0.444311,0.844751,0.438501,0.844751,0.438501,0.858374,0.444311,0.858374,0.467749,0.858374,0.467749,0.844751,0.461939,0.844751
			 ,0.461939,0.858374,0.459936,0.844751,0.454126,0.844751,0.454126,0.858374,0.459936,0.858374,0.452124,0.873999,0.452124,0.860376
			 ,0.446314,0.860376,0.446314,0.873999,0.842749,0.704126,0.829126,0.704126,0.829126,0.717749,0.842749,0.717749,0.373999,0.126001
			 ,0.344751,0.126001,0.344751,0.186499,0.373999,0.186499,0.866186,0.155249,0.866186,0.126001,0.860376,0.126001,0.860376,0.155249
			 ,0.444311,0.860376,0.438501,0.860376,0.438501,0.873999,0.444311,0.873999,0.827124,0.704126,0.813501,0.704126,0.813501,0.717749
			 ,0.827124,0.717749,0.342749,0.126001,0.313501,0.126001,0.313501,0.186499,0.342749,0.186499,0.842749,0.688501,0.829126,0.688501
			 ,0.829126,0.702124,0.842749,0.702124,0.827124,0.155249,0.827124,0.126001,0.821314,0.126001,0.821314,0.155249,0.819311,0.126001
			 ,0.813501,0.126001,0.813501,0.155249,0.819311,0.155249,0.827124,0.688501,0.813501,0.688501,0.813501,0.702124,0.827124,0.702124
			 ,0.467749,0.873999,0.467749,0.860376,0.461939,0.860376,0.461939,0.873999,0.842749,0.155249,0.842749,0.126001,0.836939,0.126001
			 ,0.836939,0.155249,0.186499,0.126001,0.180689,0.126001,0.180689,0.186499,0.186499,0.186499,0.420874,0.873999,0.420874,0.844751
			 ,0.407251,0.844751,0.407251,0.873999,0.467749,0.751001,0.454126,0.751001,0.454126,0.780249,0.467749,0.780249,0.834936,0.155249
			 ,0.834936,0.126001,0.829126,0.126001,0.829126,0.155249,0.459936,0.873999,0.459936,0.860376,0.454126,0.860376,0.454126,0.873999
			 ,0.873999,0.704126,0.860376,0.704126,0.860376,0.717749,0.873999,0.717749,0.795874,0.219751,0.790064,0.219751,0.790064,0.248999
			 ,0.795874,0.248999,0.858374,0.704126,0.844751,0.704126,0.844751,0.717749,0.858374,0.717749,0.788061,0.248999,0.788061,0.219751
			 ,0.782251,0.219751,0.782251,0.248999,0.452124,0.780249,0.452124,0.751001,0.438501,0.751001,0.438501,0.780249,0.498999,0.751001
			 ,0.485376,0.751001,0.485376,0.780249,0.498999,0.780249,0.873999,0.688501,0.860376,0.688501,0.860376,0.702124,0.873999,0.702124
			 ,0.483374,0.813501,0.477564,0.813501,0.477564,0.827124,0.483374,0.827124,0.475561,0.827124,0.475561,0.813501,0.469751,0.813501
			 ,0.469751,0.827124,0.483374,0.751001,0.469751,0.751001,0.469751,0.780249,0.483374,0.780249,0.858374,0.688501,0.844751,0.688501
			 ,0.844751,0.702124,0.858374,0.702124,0.467749,0.811499,0.467749,0.782251,0.454126,0.782251,0.454126,0.811499,0.623999,0.876001
			 ,0.563501,0.876001,0.563501,0.936499,0.623999,0.936499,0.498999,0.827124,0.498999,0.813501,0.493189,0.813501,0.493189,0.827124
			 ,0.491186,0.827124,0.491186,0.813501,0.485376,0.813501,0.485376,0.827124,0.295874,0.748999,0.295874,0.688501,0.282251,0.688501
			 ,0.282251,0.748999,0.373999,0.688501,0.313501,0.688501,0.313501,0.748999,0.373999,0.748999,0.717749,0.998999,0.717749,0.938501
			 ,0.704126,0.938501,0.704126,0.998999,0.811499,0.219751,0.805689,0.219751,0.805689,0.248999,0.811499,0.248999,0.311499,0.248999
			 ,0.311499,0.188501,0.282251,0.188501,0.282251,0.248999,0.483374,0.842749,0.483374,0.829126,0.477564,0.829126,0.477564,0.842749
			 ,0.280249,0.188501,0.251001,0.188501,0.251001,0.248999,0.280249,0.248999,0.803686,0.248999,0.803686,0.219751,0.797876,0.219751
			 ,0.797876,0.248999,0.373999,0.248999,0.373999,0.188501,0.344751,0.188501,0.344751,0.248999,0.702124,0.998999,0.702124,0.938501
			 ,0.688501,0.938501,0.688501,0.998999,0.342749,0.248999,0.342749,0.188501,0.313501,0.188501,0.313501,0.248999,0.475561,0.829126
			 ,0.469751,0.829126,0.469751,0.842749,0.475561,0.842749,0.452124,0.782251,0.438501,0.782251,0.438501,0.811499,0.452124,0.811499
			 ,0.498999,0.829126,0.493189,0.829126,0.493189,0.842749,0.498999,0.842749,0.491186,0.829126,0.485376,0.829126,0.485376,0.842749
			 ,0.491186,0.842749,0.178686,0.126001,0.172876,0.126001,0.172876,0.186499,0.178686,0.186499,0.764624,0.248999,0.764624,0.219751
			 ,0.758814,0.219751,0.758814,0.248999,0.756811,0.219751,0.751001,0.219751,0.751001,0.248999,0.756811,0.248999,0.748999,0.938501
			 ,0.735376,0.938501,0.735376,0.998999,0.748999,0.998999,0.733374,0.998999,0.733374,0.938501,0.719751,0.938501,0.719751,0.998999
			 ,0.389624,0.821314,0.383814,0.821314,0.383814,0.827124,0.389624,0.827124,0.655249,0.998999,0.655249,0.938501,0.641626,0.938501
			 ,0.641626,0.998999,0.639624,0.938501,0.626001,0.938501,0.626001,0.998999,0.639624,0.998999,0.686499,0.938501,0.672876,0.938501
			 ,0.672876,0.998999,0.686499,0.998999,0.311499,0.001001,0.282251,0.001001,0.282251,0.061499,0.311499,0.061499,0.780249,0.248999
			 ,0.780249,0.219751,0.774439,0.219751,0.774439,0.248999,0.670874,0.998999,0.670874,0.938501,0.657251,0.938501,0.657251,0.998999
			 ,0.717749,0.876001,0.704126,0.876001,0.704126,0.936499,0.717749,0.936499,0.772436,0.248999,0.772436,0.219751,0.766626,0.219751
			 ,0.766626,0.248999,0.530249,0.876001,0.501001,0.876001,0.501001,0.905249,0.530249,0.905249,0.795874,0.217749,0.795874,0.188501
			 ,0.790064,0.188501,0.790064,0.217749,0.139624,0.126001,0.133814,0.126001,0.133814,0.186499,0.139624,0.186499,0.702124,0.876001
			 ,0.688501,0.876001,0.688501,0.936499,0.702124,0.936499,0.373999,0.813501,0.313501,0.813501,0.313501,0.873999,0.373999,0.873999
			 ,0.748999,0.876001,0.735376,0.876001,0.735376,0.936499,0.748999,0.936499,0.131811,0.126001,0.126001,0.126001,0.126001,0.186499
			 ,0.131811,0.186499,0.155249,0.186499,0.155249,0.126001,0.149439,0.126001,0.149439,0.186499,0.147436,0.186499,0.147436,0.126001
			 ,0.141626,0.126001,0.141626,0.186499,0.733374,0.936499,0.733374,0.876001,0.719751,0.876001,0.719751,0.936499,0.311499,0.813501
			 ,0.251001,0.813501,0.251001,0.873999,0.311499,0.873999,0.373999,0.751001,0.313501,0.751001,0.313501,0.811499,0.373999,0.811499
			 ,0.311499,0.751001,0.251001,0.751001,0.251001,0.811499,0.311499,0.811499,0.233374,0.126001,0.227564,0.126001,0.227564,0.186499
			 ,0.233374,0.186499,0.225561,0.186499,0.225561,0.126001,0.219751,0.126001,0.219751,0.186499,0.248999,0.126001,0.243189,0.126001
			 ,0.243189,0.186499,0.248999,0.186499,0.241186,0.186499,0.241186,0.126001,0.235376,0.126001,0.235376,0.186499,0.655249,0.936499
			 ,0.655249,0.876001,0.641626,0.876001,0.641626,0.936499,0.452124,0.827124,0.452124,0.813501,0.446314,0.813501,0.446314,0.827124
			 ,0.381811,0.821314,0.376001,0.821314,0.376001,0.827124,0.381811,0.827124,0.788061,0.217749,0.788061,0.188501,0.782251,0.188501
			 ,0.782251,0.217749,0.389624,0.813501,0.383814,0.813501,0.383814,0.819311,0.389624,0.819311,0.498999,0.811499,0.498999,0.782251
			 ,0.485376,0.782251,0.485376,0.811499,0.483374,0.782251,0.469751,0.782251,0.469751,0.811499,0.483374,0.811499,0.405249,0.751001
			 ,0.391626,0.751001,0.391626,0.780249,0.405249,0.780249,0.444311,0.827124,0.444311,0.813501,0.438501,0.813501,0.438501,0.827124
			 ,0.381811,0.813501,0.376001,0.813501,0.376001,0.819311,0.381811,0.819311,0.811499,0.188501,0.805689,0.188501,0.805689,0.217749
			 ,0.811499,0.217749,0.803686,0.188501,0.797876,0.188501,0.797876,0.217749,0.803686,0.217749,0.467749,0.813501,0.461939,0.813501
			 ,0.461939,0.827124,0.467749,0.827124,0.459936,0.813501,0.454126,0.813501,0.454126,0.827124,0.459936,0.827124,0.498999,0.876001
			 ,0.469751,0.876001,0.469751,0.905249,0.498999,0.905249,0.764624,0.217749,0.764624,0.188501,0.758814,0.188501,0.758814,0.217749
			 ,0.756811,0.188501,0.751001,0.188501,0.751001,0.217749,0.756811,0.217749,0.639624,0.876001,0.626001,0.876001,0.626001,0.936499
			 ,0.639624,0.936499,0.280249,0.001001,0.251001,0.001001,0.251001,0.061499,0.280249,0.061499,0.389624,0.751001,0.376001,0.751001
			 ,0.376001,0.780249,0.389624,0.780249,0.452124,0.842749,0.452124,0.829126,0.446314,0.829126,0.446314,0.842749,0.444311,0.829126
			 ,0.438501,0.829126,0.438501,0.842749,0.444311,0.842749,0.436499,0.780249,0.436499,0.751001,0.422876,0.751001,0.422876,0.780249
			 ,0.202124,0.186499,0.202124,0.126001,0.196314,0.126001,0.196314,0.186499,0.467749,0.842749,0.467749,0.829126,0.461939,0.829126
			 ,0.461939,0.842749,0.459936,0.829126,0.454126,0.829126,0.454126,0.842749,0.459936,0.842749,0.686499,0.936499,0.686499,0.876001
			 ,0.672876,0.876001,0.672876,0.936499,0.780249,0.188501,0.774439,0.188501,0.774439,0.217749,0.780249,0.217749,0.772436,0.188501
			 ,0.766626,0.188501,0.766626,0.217749,0.772436,0.217749,0.420874,0.780249,0.420874,0.751001,0.407251,0.751001,0.407251,0.780249
			 ,0.373999,0.061499,0.373999,0.001001,0.344751,0.001001,0.344751,0.061499,0.405249,0.782251,0.391626,0.782251,0.391626,0.811499
			 ,0.405249,0.811499,0.858374,0.219751,0.852564,0.219751,0.852564,0.248999,0.858374,0.248999,0.670874,0.876001,0.657251,0.876001
			 ,0.657251,0.936499,0.670874,0.936499,0.194311,0.186499,0.194311,0.126001,0.188501,0.126001,0.188501,0.186499,0.389624,0.811499
			 ,0.389624,0.782251,0.376001,0.782251,0.376001,0.811499,0.850561,0.248999,0.850561,0.219751,0.844751,0.219751,0.844751,0.248999
			 ,0.873999,0.219751,0.868189,0.219751,0.868189,0.248999,0.873999,0.248999,0.670874,0.795874,0.670874,0.782251,0.665064,0.782251
			 ,0.665064,0.795874,0.663061,0.782251,0.657251,0.782251,0.657251,0.795874,0.663061,0.795874,0.686499,0.782251,0.680689,0.782251
			 ,0.680689,0.795874,0.686499,0.795874,0.678686,0.795874,0.678686,0.782251,0.672876,0.782251,0.672876,0.795874,0.670874,0.797876
			 ,0.665064,0.797876,0.665064,0.811499,0.670874,0.811499,0.663061,0.797876,0.657251,0.797876,0.657251,0.811499,0.663061,0.811499
			 ,0.686499,0.811499,0.686499,0.797876,0.680689,0.797876,0.680689,0.811499,0.678686,0.797876,0.672876,0.797876,0.672876,0.811499
			 ,0.678686,0.811499,0.639624,0.795874,0.639624,0.782251,0.633814,0.782251,0.633814,0.795874,0.842749,0.735376,0.829126,0.735376
			 ,0.829126,0.748999,0.842749,0.748999,0.342749,0.001001,0.313501,0.001001,0.313501,0.061499,0.342749,0.061499,0.866186,0.248999
			 ,0.866186,0.219751,0.860376,0.219751,0.860376,0.248999,0.631811,0.782251,0.626001,0.782251,0.626001,0.795874,0.631811,0.795874
			 ,0.827124,0.735376,0.813501,0.735376,0.813501,0.748999,0.827124,0.748999,0.311499,0.063501,0.282251,0.063501,0.282251,0.123999
			 ,0.311499,0.123999,0.842749,0.719751,0.829126,0.719751,0.829126,0.733374,0.842749,0.733374,0.827124,0.248999,0.827124,0.219751
			 ,0.821314,0.219751,0.821314,0.248999,0.819311,0.219751,0.813501,0.219751,0.813501,0.248999,0.819311,0.248999,0.827124,0.719751
			 ,0.813501,0.719751,0.813501,0.733374,0.827124,0.733374,0.655249,0.795874,0.655249,0.782251,0.649439,0.782251,0.649439,0.795874
			 ,0.842749,0.248999,0.842749,0.219751,0.836939,0.219751,0.836939,0.248999,0.217749,0.126001,0.211939,0.126001,0.211939,0.186499
			 ,0.217749,0.186499,0.436499,0.811499,0.436499,0.782251,0.422876,0.782251,0.422876,0.811499,0.420874,0.782251,0.407251,0.782251
			 ,0.407251,0.811499,0.420874,0.811499,0.834936,0.248999,0.834936,0.219751,0.829126,0.219751,0.829126,0.248999,0.647436,0.795874
			 ,0.647436,0.782251,0.641626,0.782251,0.641626,0.795874,0.873999,0.735376,0.860376,0.735376,0.860376,0.748999,0.873999,0.748999
			 ,0.858374,0.188501,0.852564,0.188501,0.852564,0.217749,0.858374,0.217749,0.858374,0.735376,0.844751,0.735376,0.844751,0.748999
			 ,0.858374,0.748999,0.850561,0.217749,0.850561,0.188501,0.844751,0.188501,0.844751,0.217749,0.592749,0.842749,0.592749,0.813501
			 ,0.579126,0.813501,0.579126,0.842749,0.577124,0.813501,0.563501,0.813501,0.563501,0.842749,0.577124,0.842749,0.873999,0.719751
			 ,0.860376,0.719751,0.860376,0.733374,0.873999,0.733374,0.639624,0.797876,0.633814,0.797876,0.633814,0.811499,0.639624,0.811499
			 ,0.631811,0.811499,0.631811,0.797876,0.626001,0.797876,0.626001,0.811499,0.623999,0.813501,0.610376,0.813501,0.610376,0.842749
			 ,0.623999,0.842749,0.858374,0.719751,0.844751,0.719751,0.844751,0.733374,0.858374,0.733374,0.608374,0.842749,0.608374,0.813501
			 ,0.594751,0.813501,0.594751,0.842749,0.873999,0.438501,0.813501,0.438501,0.813501,0.498999,0.873999,0.498999,0.655249,0.811499
			 ,0.655249,0.797876,0.649439,0.797876,0.649439,0.811499,0.647436,0.811499,0.647436,0.797876,0.641626,0.797876,0.641626,0.811499
			 ,0.967749,0.123999,0.967749,0.063501,0.954126,0.063501,0.954126,0.123999,0.811499,0.438501,0.751001,0.438501,0.751001,0.498999
			 ,0.811499,0.498999,0.952124,0.123999,0.952124,0.063501,0.938501,0.063501,0.938501,0.123999,0.873999,0.188501,0.868189,0.188501
			 ,0.868189,0.217749,0.873999,0.217749,0.280249,0.123999,0.280249,0.063501,0.251001,0.063501,0.251001,0.123999,0.670874,0.764624
			 ,0.670874,0.751001,0.665064,0.751001,0.665064,0.764624,0.373999,0.063501,0.344751,0.063501,0.344751,0.123999,0.373999,0.123999
			 ,0.866186,0.217749,0.866186,0.188501,0.860376,0.188501,0.860376,0.217749,0.342749,0.123999,0.342749,0.063501,0.313501,0.063501
			 ,0.313501,0.123999,0.998999,0.123999,0.998999,0.063501,0.985376,0.063501,0.985376,0.123999,0.186499,0.311499,0.186499,0.251001
			 ,0.157251,0.251001,0.157251,0.311499,0.663061,0.751001,0.657251,0.751001,0.657251,0.764624,0.663061,0.764624,0.592749,0.844751
			 ,0.579126,0.844751,0.579126,0.873999,0.592749,0.873999,0.686499,0.751001,0.680689,0.751001,0.680689,0.764624,0.686499,0.764624
			 ,0.678686,0.751001,0.672876,0.751001,0.672876,0.764624,0.678686,0.764624,0.209936,0.126001,0.204126,0.126001,0.204126,0.186499
			 ,0.209936,0.186499,0.827124,0.217749,0.827124,0.188501,0.821314,0.188501,0.821314,0.217749,0.819311,0.188501,0.813501,0.188501
			 ,0.813501,0.217749,0.819311,0.217749,0.983374,0.063501,0.969751,0.063501,0.969751,0.123999,0.983374,0.123999,0.905249,0.123999
			 ,0.905249,0.063501,0.891626,0.063501,0.891626,0.123999,0.405249,0.821314,0.399439,0.821314,0.399439,0.827124,0.405249,0.827124
			 ,0.889624,0.123999,0.889624,0.063501,0.876001,0.063501,0.876001,0.123999,0.936499,0.063501,0.922876,0.063501,0.922876,0.123999
			 ,0.936499,0.123999,0.920874,0.063501,0.907251,0.063501,0.907251,0.123999,0.920874,0.123999,0.155249,0.251001,0.126001,0.251001
			 ,0.126001,0.311499,0.155249,0.311499,0.842749,0.217749,0.842749,0.188501,0.836939,0.188501,0.836939,0.217749,0.967749,0.061499
			 ,0.967749,0.001001,0.954126,0.001001,0.954126,0.061499,0.952124,0.001001,0.938501,0.001001,0.938501,0.061499,0.952124,0.061499
			 ,0.834936,0.217749,0.834936,0.188501,0.829126,0.188501,0.829126,0.217749,0.405249,0.876001,0.376001,0.876001,0.376001,0.905249
			 ,0.405249,0.905249,0.795874,0.061499,0.795874,0.032251,0.790064,0.032251,0.790064,0.061499,0.170874,0.188501,0.165064,0.188501
			 ,0.165064,0.248999,0.170874,0.248999,0.998999,0.001001,0.985376,0.001001,0.985376,0.061499,0.998999,0.061499,0.873999,0.376001
			 ,0.813501,0.376001,0.813501,0.436499,0.873999,0.436499,0.983374,0.001001,0.969751,0.001001,0.969751,0.061499,0.983374,0.061499
			 ,0.163061,0.188501,0.157251,0.188501,0.157251,0.248999,0.163061,0.248999,0.186499,0.248999,0.186499,0.188501,0.180689,0.188501
			 ,0.180689,0.248999,0.178686,0.248999,0.178686,0.188501,0.172876,0.188501,0.172876,0.248999,0.905249,0.061499,0.905249,0.001001
			 ,0.891626,0.001001,0.891626,0.061499,0.811499,0.376001,0.751001,0.376001,0.751001,0.436499,0.811499,0.436499,0.873999,0.563501
			 ,0.813501,0.563501,0.813501,0.623999,0.873999,0.623999,0.811499,0.563501,0.751001,0.563501,0.751001,0.623999,0.811499,0.623999
			 ,0.139624,0.188501,0.133814,0.188501,0.133814,0.248999,0.139624,0.248999,0.131811,0.248999,0.131811,0.188501,0.126001,0.188501
			 ,0.126001,0.248999,0.155249,0.188501,0.149439,0.188501,0.149439,0.248999,0.155249,0.248999,0.147436,0.248999,0.147436,0.188501
			 ,0.141626,0.188501,0.141626,0.248999,0.889624,0.061499,0.889624,0.001001,0.876001,0.001001,0.876001,0.061499,0.670874,0.780249
			 ,0.670874,0.766626,0.665064,0.766626,0.665064,0.780249,0.397436,0.821314,0.391626,0.821314,0.391626,0.827124,0.397436,0.827124
			 ,0.788061,0.061499,0.788061,0.032251,0.782251,0.032251,0.782251,0.061499,0.405249,0.813501,0.399439,0.813501,0.399439,0.819311
			 ,0.405249,0.819311,0.577124,0.873999,0.577124,0.844751,0.563501,0.844751,0.563501,0.873999,0.623999,0.844751,0.610376,0.844751
			 ,0.610376,0.873999,0.623999,0.873999,0.608374,0.844751,0.594751,0.844751,0.594751,0.873999,0.608374,0.873999,0.663061,0.780249
			 ,0.663061,0.766626,0.657251,0.766626,0.657251,0.780249,0.397436,0.813501,0.391626,0.813501,0.391626,0.819311,0.397436,0.819311
			 ,0.811499,0.032251,0.805689,0.032251,0.805689,0.061499,0.811499,0.061499,0.803686,0.032251,0.797876,0.032251,0.797876,0.061499
			 ,0.803686,0.061499,0.686499,0.766626,0.680689,0.766626,0.680689,0.780249,0.686499,0.780249,0.678686,0.766626,0.672876,0.766626
			 ,0.672876,0.780249,0.678686,0.780249,0.186499,0.782251,0.157251,0.782251,0.157251,0.811499,0.186499,0.811499,0.764624,0.061499
			 ,0.764624,0.032251,0.758814,0.032251,0.758814,0.061499,0.756811,0.032251,0.751001,0.032251,0.751001,0.061499,0.756811,0.061499
			 ,0.936499,0.001001,0.922876,0.001001,0.922876,0.061499,0.936499,0.061499,0.248999,0.251001,0.219751,0.251001,0.219751,0.311499
			 ,0.248999,0.311499,0.530249,0.813501,0.516626,0.813501,0.516626,0.842749,0.530249,0.842749,0.639624,0.764624,0.639624,0.751001
			 ,0.633814,0.751001,0.633814,0.764624,0.631811,0.751001,0.626001,0.751001,0.626001,0.764624,0.631811,0.764624,0.514624,0.842749
			 ,0.514624,0.813501,0.501001,0.813501,0.501001,0.842749,0.233374,0.248999,0.233374,0.188501,0.227564,0.188501,0.227564,0.248999
			 ,0.655249,0.764624,0.655249,0.751001,0.649439,0.751001,0.649439,0.764624,0.647436,0.751001,0.641626,0.751001,0.641626,0.764624
			 ,0.647436,0.764624,0.920874,0.061499,0.920874,0.001001,0.907251,0.001001,0.907251,0.061499,0.780249,0.032251,0.774439,0.032251
			 ,0.774439,0.061499,0.780249,0.061499,0.772436,0.032251,0.766626,0.032251,0.766626,0.061499,0.772436,0.061499,0.561499,0.842749
			 ,0.561499,0.813501,0.547876,0.813501,0.547876,0.842749,0.217749,0.311499,0.217749,0.251001,0.188501,0.251001,0.188501,0.311499
			 ,0.545874,0.813501,0.532251,0.813501,0.532251,0.842749,0.545874,0.842749,0.795874,0.001001,0.790064,0.001001,0.790064,0.030249
			 ,0.795874,0.030249,0.967749,0.188501,0.954126,0.188501,0.954126,0.248999,0.967749,0.248999,0.225561,0.248999,0.225561,0.188501
			 ,0.219751,0.188501,0.219751,0.248999,0.530249,0.873999,0.530249,0.844751,0.516626,0.844751,0.516626,0.873999,0.788061,0.030249
			 ,0.788061,0.001001,0.782251,0.001001,0.782251,0.030249,0.811499,0.001001,0.805689,0.001001,0.805689,0.030249,0.811499,0.030249
			 ,0.639624,0.780249,0.639624,0.766626,0.633814,0.766626,0.633814,0.780249,0.631811,0.766626,0.626001,0.766626,0.626001,0.780249
			 ,0.631811,0.780249,0.655249,0.766626,0.649439,0.766626,0.649439,0.780249,0.655249,0.780249,0.647436,0.780249,0.647436,0.766626
			 ,0.641626,0.766626,0.641626,0.780249,0.733374,0.782251,0.727564,0.782251,0.727564,0.795874,0.733374,0.795874,0.725561,0.782251
			 ,0.719751,0.782251,0.719751,0.795874,0.725561,0.795874,0.748999,0.795874,0.748999,0.782251,0.743189,0.782251,0.743189,0.795874
			 ,0.741186,0.782251,0.735376,0.782251,0.735376,0.795874,0.741186,0.795874,0.733374,0.811499,0.733374,0.797876,0.727564,0.797876
			 ,0.727564,0.811499,0.780249,0.704126,0.766626,0.704126,0.766626,0.717749,0.780249,0.717749,0.186499,0.313501,0.157251,0.313501
			 ,0.157251,0.373999,0.186499,0.373999,0.803686,0.030249,0.803686,0.001001,0.797876,0.001001,0.797876,0.030249,0.725561,0.797876
			 ,0.719751,0.797876,0.719751,0.811499,0.725561,0.811499,0.764624,0.704126,0.751001,0.704126,0.751001,0.717749,0.764624,0.717749
			 ,0.155249,0.313501,0.126001,0.313501,0.126001,0.373999,0.155249,0.373999,0.780249,0.688501,0.766626,0.688501,0.766626,0.702124
			 ,0.780249,0.702124,0.764624,0.030249,0.764624,0.001001,0.758814,0.001001,0.758814,0.030249,0.756811,0.001001,0.751001,0.001001
			 ,0.751001,0.030249,0.756811,0.030249,0.764624,0.688501,0.751001,0.688501,0.751001,0.702124,0.764624,0.702124,0.748999,0.811499
			 ,0.748999,0.797876,0.743189,0.797876,0.743189,0.811499,0.780249,0.030249,0.780249,0.001001,0.774439,0.001001,0.774439,0.030249
			 ,0.248999,0.188501,0.243189,0.188501,0.243189,0.248999,0.248999,0.248999,0.514624,0.873999,0.514624,0.844751,0.501001,0.844751
			 ,0.501001,0.873999,0.561499,0.844751,0.547876,0.844751,0.547876,0.873999,0.561499,0.873999,0.772436,0.030249,0.772436,0.001001
			 ,0.766626,0.001001,0.766626,0.030249,0.741186,0.811499,0.741186,0.797876,0.735376,0.797876,0.735376,0.811499,0.811499,0.704126
			 ,0.797876,0.704126,0.797876,0.717749,0.811499,0.717749,0.858374,0.032251,0.852564,0.032251,0.852564,0.061499,0.858374,0.061499
			 ,0.795874,0.704126,0.782251,0.704126,0.782251,0.717749,0.795874,0.717749,0.850561,0.061499,0.850561,0.032251,0.844751,0.032251
			 ,0.844751,0.061499,0.545874,0.873999,0.545874,0.844751,0.532251,0.844751,0.532251,0.873999,0.592749,0.751001,0.579126,0.751001
			 ,0.579126,0.780249,0.592749,0.780249,0.811499,0.688501,0.797876,0.688501,0.797876,0.702124,0.811499,0.702124,0.702124,0.782251
			 ,0.696314,0.782251,0.696314,0.795874,0.702124,0.795874,0.694311,0.795874,0.694311,0.782251,0.688501,0.782251,0.688501,0.795874
			 ,0.577124,0.751001,0.563501,0.751001,0.563501,0.780249,0.577124,0.780249,0.795874,0.688501,0.782251,0.688501,0.782251,0.702124
			 ,0.795874,0.702124,0.623999,0.780249,0.623999,0.751001,0.610376,0.751001,0.610376,0.780249,0.873999,0.501001,0.813501,0.501001
			 ,0.813501,0.561499,0.873999,0.561499,0.717749,0.795874,0.717749,0.782251,0.711939,0.782251,0.711939,0.795874,0.709936,0.795874
			 ,0.709936,0.782251,0.704126,0.782251,0.704126,0.795874,0.952124,0.248999,0.952124,0.188501,0.938501,0.188501,0.938501,0.248999
			 ,0.811499,0.501001,0.751001,0.501001,0.751001,0.561499,0.811499,0.561499,0.998999,0.248999,0.998999,0.188501,0.985376,0.188501
			 ,0.985376,0.248999,0.873999,0.032251,0.868189,0.032251,0.868189,0.061499,0.873999,0.061499,0.248999,0.373999,0.248999,0.313501
			 ,0.219751,0.313501,0.219751,0.373999,0.702124,0.811499,0.702124,0.797876,0.696314,0.797876,0.696314,0.811499,0.217749,0.313501
			 ,0.188501,0.313501,0.188501,0.373999,0.217749,0.373999,0.866186,0.061499,0.866186,0.032251,0.860376,0.032251,0.860376,0.061499
			 ,0.061499,0.311499,0.061499,0.251001,0.032251,0.251001,0.032251,0.311499,0.983374,0.248999,0.983374,0.188501,0.969751,0.188501
			 ,0.969751,0.248999,0.030249,0.311499,0.030249,0.251001,0.001001,0.251001,0.001001,0.311499,0.694311,0.797876,0.688501,0.797876
			 ,0.688501,0.811499,0.694311,0.811499,0.608374,0.751001,0.594751,0.751001,0.594751,0.780249,0.608374,0.780249,0.717749,0.797876
			 ,0.711939,0.797876,0.711939,0.811499,0.717749,0.811499,0.709936,0.797876,0.704126,0.797876,0.704126,0.811499,0.709936,0.811499
			 ,0.241186,0.188501,0.235376,0.188501,0.235376,0.248999,0.241186,0.248999,0.827124,0.061499,0.827124,0.032251,0.821314,0.032251
			 ,0.821314,0.061499,0.819311,0.032251,0.813501,0.032251,0.813501,0.061499,0.819311,0.061499,0.905249,0.188501,0.891626,0.188501
			 ,0.891626,0.248999,0.905249,0.248999,0.889624,0.248999,0.889624,0.188501,0.876001,0.188501,0.876001,0.248999,0.389624,0.836939
			 ,0.383814,0.836939,0.383814,0.842749,0.389624,0.842749,0.936499,0.248999,0.936499,0.188501,0.922876,0.188501,0.922876,0.248999
			 ,0.920874,0.188501,0.907251,0.188501,0.907251,0.248999,0.920874,0.248999,0.967749,0.126001,0.954126,0.126001,0.954126,0.186499
			 ,0.967749,0.186499,0.123999,0.251001,0.094751,0.251001,0.094751,0.311499,0.123999,0.311499,0.842749,0.061499,0.842749,0.032251
			 ,0.836939,0.032251,0.836939,0.061499,0.952124,0.186499,0.952124,0.126001,0.938501,0.126001,0.938501,0.186499,0.998999,0.126001
			 ,0.985376,0.126001,0.985376,0.186499,0.998999,0.186499,0.834936,0.061499,0.834936,0.032251,0.829126,0.032251,0.829126,0.061499
			 ,0.155249,0.782251,0.126001,0.782251,0.126001,0.811499,0.155249,0.811499,0.858374,0.030249,0.858374,0.001001,0.852564,0.001001
			 ,0.852564,0.030249,0.202124,0.188501,0.196314,0.188501,0.196314,0.248999,0.202124,0.248999,0.983374,0.126001,0.969751,0.126001
			 ,0.969751,0.186499,0.983374,0.186499,0.123999,0.813501,0.063501,0.813501,0.063501,0.873999,0.123999,0.873999,0.905249,0.126001
			 ,0.891626,0.126001,0.891626,0.186499,0.905249,0.186499,0.194311,0.188501,0.188501,0.188501,0.188501,0.248999,0.194311,0.248999
			 ,0.217749,0.248999,0.217749,0.188501,0.211939,0.188501,0.211939,0.248999,0.209936,0.248999,0.209936,0.188501,0.204126,0.188501
			 ,0.204126,0.248999,0.889624,0.186499,0.889624,0.126001,0.876001,0.126001,0.876001,0.186499,0.061499,0.813501,0.001001,0.813501
			 ,0.001001,0.873999,0.061499,0.873999,0.123999,0.751001,0.063501,0.751001,0.063501,0.811499,0.123999,0.811499,0.061499,0.751001
			 ,0.001001,0.751001,0.001001,0.811499,0.061499,0.811499,0.170874,0.001001,0.165064,0.001001,0.165064,0.061499,0.170874,0.061499
			 ,0.163061,0.061499,0.163061,0.001001,0.157251,0.001001,0.157251,0.061499,0.186499,0.001001,0.180689,0.001001,0.180689,0.061499
			 ,0.186499,0.061499,0.178686,0.061499,0.178686,0.001001,0.172876,0.001001,0.172876,0.061499,0.936499,0.186499,0.936499,0.126001
			 ,0.922876,0.126001,0.922876,0.186499,0.733374,0.764624,0.733374,0.751001,0.727564,0.751001,0.727564,0.764624,0.381811,0.836939
			 ,0.376001,0.836939,0.376001,0.842749,0.381811,0.842749,0.850561,0.030249,0.850561,0.001001,0.844751,0.001001,0.844751,0.030249
			 ,0.389624,0.829126,0.383814,0.829126,0.383814,0.834936,0.389624,0.834936,0.592749,0.811499,0.592749,0.782251,0.579126,0.782251
			 ,0.579126,0.811499,0.577124,0.782251,0.563501,0.782251,0.563501,0.811499,0.577124,0.811499,0.623999,0.782251,0.610376,0.782251
			 ,0.610376,0.811499,0.623999,0.811499,0.725561,0.764624,0.725561,0.751001,0.719751,0.751001,0.719751,0.764624,0.381811,0.829126
			 ,0.376001,0.829126,0.376001,0.834936,0.381811,0.834936,0.873999,0.001001,0.868189,0.001001,0.868189,0.030249,0.873999,0.030249
			 ,0.866186,0.001001,0.860376,0.001001,0.860376,0.030249,0.866186,0.030249,0.748999,0.751001,0.743189,0.751001,0.743189,0.764624
			 ,0.748999,0.764624,0.741186,0.751001,0.735376,0.751001,0.735376,0.764624,0.741186,0.764624,0.186499,0.751001,0.157251,0.751001
			 ,0.157251,0.780249,0.186499,0.780249,0.827124,0.030249,0.827124,0.001001,0.821314,0.001001,0.821314,0.030249,0.819311,0.001001
			 ,0.813501,0.001001,0.813501,0.030249,0.819311,0.030249,0.920874,0.126001,0.907251,0.126001,0.907251,0.186499,0.920874,0.186499
			 ,0.092749,0.251001,0.063501,0.251001,0.063501,0.311499,0.092749,0.311499,0.608374,0.782251,0.594751,0.782251,0.594751,0.811499
			 ,0.608374,0.811499,0.733374,0.780249,0.733374,0.766626,0.727564,0.766626,0.727564,0.780249,0.725561,0.766626,0.719751,0.766626
			 ,0.719751,0.780249,0.725561,0.780249,0.530249,0.780249,0.530249,0.751001,0.516626,0.751001,0.516626,0.780249,0.139624,0.061499
			 ,0.139624,0.001001,0.133814,0.001001,0.133814,0.061499,0.748999,0.780249,0.748999,0.766626,0.743189,0.766626,0.743189,0.780249
			 ,0.741186,0.766626,0.735376,0.766626,0.735376,0.780249,0.741186,0.780249,0.967749,0.623999,0.967749,0.563501,0.954126,0.563501
			 ,0.954126,0.623999,0.842749,0.001001,0.836939,0.001001,0.836939,0.030249,0.842749,0.030249,0.834936,0.001001,0.829126,0.001001
			 ,0.829126,0.030249,0.834936,0.030249,0.514624,0.780249,0.514624,0.751001,0.501001,0.751001,0.501001,0.780249,0.061499,0.373999
			 ,0.061499,0.313501,0.032251,0.313501,0.032251,0.373999,0.561499,0.751001,0.547876,0.751001,0.547876,0.780249,0.561499,0.780249
			 ,0.795874,0.094751,0.790064,0.094751,0.790064,0.123999,0.795874,0.123999,0.952124,0.563501,0.938501,0.563501,0.938501,0.623999
			 ,0.952124,0.623999,0.131811,0.061499,0.131811,0.001001,0.126001,0.001001,0.126001,0.061499,0.545874,0.780249,0.545874,0.751001
			 ,0.532251,0.751001,0.532251,0.780249,0.788061,0.123999,0.788061,0.094751,0.782251,0.094751,0.782251,0.123999,0.811499,0.094751
			 ,0.805689,0.094751,0.805689,0.123999,0.811499,0.123999,0.702124,0.764624,0.702124,0.751001,0.696314,0.751001,0.696314,0.764624
			 ,0.694311,0.751001,0.688501,0.751001,0.688501,0.764624,0.694311,0.764624,0.717749,0.751001,0.711939,0.751001,0.711939,0.764624
			 ,0.717749,0.764624,0.709936,0.764624,0.709936,0.751001,0.704126,0.751001,0.704126,0.764624,0.702124,0.766626,0.696314,0.766626
			 ,0.696314,0.780249,0.702124,0.780249,0.694311,0.766626,0.688501,0.766626,0.688501,0.780249,0.694311,0.780249,0.717749,0.780249
			 ,0.717749,0.766626,0.711939,0.766626,0.711939,0.780249,0.709936,0.766626,0.704126,0.766626,0.704126,0.780249,0.709936,0.780249
			 ,0.670874,0.858374,0.670874,0.844751,0.665064,0.844751,0.665064,0.858374,0.780249,0.735376,0.766626,0.735376,0.766626,0.748999
			 ,0.780249,0.748999,0.030249,0.313501,0.001001,0.313501,0.001001,0.373999,0.030249,0.373999,0.803686,0.123999,0.803686,0.094751
			 ,0.797876,0.094751,0.797876,0.123999,0.663061,0.844751,0.657251,0.844751,0.657251,0.858374,0.663061,0.858374,0.764624,0.735376
			 ,0.751001,0.735376,0.751001,0.748999,0.764624,0.748999,0.123999,0.313501,0.094751,0.313501,0.094751,0.373999,0.123999,0.373999
			 ,0.780249,0.719751,0.766626,0.719751,0.766626,0.733374,0.780249,0.733374,0.764624,0.123999,0.764624,0.094751,0.758814,0.094751
			 ,0.758814,0.123999,0.756811,0.094751,0.751001,0.094751,0.751001,0.123999,0.756811,0.123999,0.764624,0.719751,0.751001,0.719751
			 ,0.751001,0.733374,0.764624,0.733374,0.686499,0.858374,0.686499,0.844751,0.680689,0.844751,0.680689,0.858374,0.780249,0.123999
			 ,0.780249,0.094751,0.774439,0.094751,0.774439,0.123999,0.155249,0.001001,0.149439,0.001001,0.149439,0.061499,0.155249,0.061499
			 ,0.530249,0.811499,0.530249,0.782251,0.516626,0.782251,0.516626,0.811499,0.514624,0.782251,0.501001,0.782251,0.501001,0.811499
			 ,0.514624,0.811499,0.772436,0.123999,0.772436,0.094751,0.766626,0.094751,0.766626,0.123999,0.678686,0.858374,0.678686,0.844751
			 ,0.672876,0.844751,0.672876,0.858374,0.811499,0.735376,0.797876,0.735376,0.797876,0.748999,0.811499,0.748999,0.795874,0.063501
			 ,0.790064,0.063501,0.790064,0.092749,0.795874,0.092749,0.795874,0.735376,0.782251,0.735376,0.782251,0.748999,0.795874,0.748999
			 ,0.788061,0.092749,0.788061,0.063501,0.782251,0.063501,0.782251,0.092749,0.561499,0.811499,0.561499,0.782251,0.547876,0.782251
			 ,0.547876,0.811499,0.545874,0.782251,0.532251,0.782251,0.532251,0.811499,0.545874,0.811499,0.811499,0.719751,0.797876,0.719751
			 ,0.797876,0.733374,0.811499,0.733374,0.670874,0.860376,0.665064,0.860376,0.665064,0.873999,0.670874,0.873999,0.663061,0.873999
			 ,0.663061,0.860376,0.657251,0.860376,0.657251,0.873999,0.842749,0.063501,0.829126,0.063501,0.829126,0.092749,0.842749,0.092749
			 ,0.795874,0.719751,0.782251,0.719751,0.782251,0.733374,0.795874,0.733374,0.827124,0.092749,0.827124,0.063501,0.813501,0.063501
			 ,0.813501,0.092749,0.748999,0.688501,0.688501,0.688501,0.688501,0.748999,0.748999,0.748999,0.686499,0.873999,0.686499,0.860376
			 ,0.680689,0.860376,0.680689,0.873999,0.678686,0.873999,0.678686,0.860376,0.672876,0.860376,0.672876,0.873999,0.998999,0.623999
			 ,0.998999,0.563501,0.985376,0.563501,0.985376,0.623999,0.686499,0.688501,0.626001,0.688501,0.626001,0.748999,0.686499,0.748999
			 ,0.983374,0.623999,0.983374,0.563501,0.969751,0.563501,0.969751,0.623999,0.811499,0.063501,0.805689,0.063501,0.805689,0.092749
			 ,0.811499,0.092749,0.092749,0.373999,0.092749,0.313501,0.063501,0.313501,0.063501,0.373999,0.639624,0.858374,0.639624,0.844751
			 ,0.633814,0.844751,0.633814,0.858374,0.311499,0.251001,0.282251,0.251001,0.282251,0.311499,0.311499,0.311499,0.803686,0.092749
			 ,0.803686,0.063501,0.797876,0.063501,0.797876,0.092749,0.280249,0.311499,0.280249,0.251001,0.251001,0.251001,0.251001,0.311499
			 ,0.905249,0.623999,0.905249,0.563501,0.891626,0.563501,0.891626,0.623999,0.373999,0.311499,0.373999,0.251001,0.344751,0.251001
			 ,0.344751,0.311499,0.631811,0.844751,0.626001,0.844751,0.626001,0.858374,0.631811,0.858374,0.873999,0.063501,0.860376,0.063501
			 ,0.860376,0.092749,0.873999,0.092749,0.655249,0.844751,0.649439,0.844751,0.649439,0.858374,0.655249,0.858374,0.647436,0.844751
			 ,0.641626,0.844751,0.641626,0.858374,0.647436,0.858374,0.147436,0.001001,0.141626,0.001001,0.141626,0.061499,0.147436,0.061499
			 ,0.764624,0.092749,0.764624,0.063501,0.758814,0.063501,0.758814,0.092749,0.756811,0.063501,0.751001,0.063501,0.751001,0.092749
			 ,0.756811,0.092749,0.889624,0.563501,0.876001,0.563501,0.876001,0.623999,0.889624,0.623999,0.936499,0.623999,0.936499,0.563501
			 ,0.922876,0.563501,0.922876,0.623999,0.405249,0.836939,0.399439,0.836939,0.399439,0.842749,0.405249,0.842749,0.920874,0.623999
			 ,0.920874,0.563501,0.907251,0.563501,0.907251,0.623999,0.967749,0.501001,0.954126,0.501001,0.954126,0.561499,0.967749,0.561499
			 ,0.952124,0.501001,0.938501,0.501001,0.938501,0.561499,0.952124,0.561499,0.342749,0.251001,0.313501,0.251001,0.313501,0.311499
			 ,0.342749,0.311499,0.780249,0.092749,0.780249,0.063501,0.774439,0.063501,0.774439,0.092749,0.998999,0.561499,0.998999,0.501001
			 ,0.985376,0.501001,0.985376,0.561499,0.983374,0.501001,0.969751,0.501001,0.969751,0.561499,0.983374,0.561499,0.772436,0.092749
			 ,0.772436,0.063501,0.766626,0.063501,0.766626,0.092749,0.155249,0.751001,0.126001,0.751001,0.126001,0.780249,0.155249,0.780249
			 ,0.858374,0.123999,0.858374,0.094751,0.852564,0.094751,0.852564,0.123999,0.233374,0.001001,0.227564,0.001001,0.227564,0.061499
			 ,0.233374,0.061499,0.905249,0.501001,0.891626,0.501001,0.891626,0.561499,0.905249,0.561499,0.748999,0.626001,0.688501,0.626001
			 ,0.688501,0.686499,0.748999,0.686499,0.889624,0.501001,0.876001,0.501001,0.876001,0.561499,0.889624,0.561499,0.225561,0.001001
			 ,0.219751,0.001001,0.219751,0.061499,0.225561,0.061499,0.248999,0.061499,0.248999,0.001001,0.243189,0.001001,0.243189,0.061499
			 ,0.241186,0.061499,0.241186,0.001001,0.235376,0.001001,0.235376,0.061499,0.936499,0.561499,0.936499,0.501001,0.922876,0.501001
			 ,0.922876,0.561499,0.686499,0.626001,0.626001,0.626001,0.626001,0.686499,0.686499,0.686499,0.748999,0.563501,0.688501,0.563501
			 ,0.688501,0.623999,0.748999,0.623999,0.686499,0.563501,0.626001,0.563501,0.626001,0.623999,0.686499,0.623999,0.202124,0.001001
			 ,0.196314,0.001001,0.196314,0.061499,0.202124,0.061499,0.194311,0.061499,0.194311,0.001001,0.188501,0.001001,0.188501,0.061499
			 ,0.217749,0.001001,0.211939,0.001001,0.211939,0.061499,0.217749,0.061499,0.209936,0.061499,0.209936,0.001001,0.204126,0.001001
			 ,0.204126,0.061499,0.920874,0.561499,0.920874,0.501001,0.907251,0.501001,0.907251,0.561499,0.639624,0.873999,0.639624,0.860376
			 ,0.633814,0.860376,0.633814,0.873999,0.397436,0.836939,0.391626,0.836939,0.391626,0.842749,0.397436,0.842749,0.850561,0.123999
			 ,0.850561,0.094751,0.844751,0.094751,0.844751,0.123999,0.405249,0.829126,0.399439,0.829126,0.399439,0.834936,0.405249,0.834936
			 ,0.858374,0.092749,0.858374,0.063501,0.844751,0.063501,0.844751,0.092749,0.842749,0.094751,0.829126,0.094751,0.829126,0.123999
			 ,0.842749,0.123999,0.827124,0.094751,0.813501,0.094751,0.813501,0.123999,0.827124,0.123999,0.631811,0.873999,0.631811,0.860376
			 ,0.626001,0.860376,0.626001,0.873999,0.397436,0.829126,0.391626,0.829126,0.391626,0.834936,0.397436,0.834936,0.873999,0.094751
			 ,0.868189,0.094751,0.868189,0.123999,0.873999,0.123999,0.866186,0.094751,0.860376,0.094751,0.860376,0.123999,0.866186,0.123999
			 ,0.655249,0.860376,0.649439,0.860376,0.649439,0.873999,0.655249,0.873999,0.647436,0.860376,0.641626,0.860376,0.641626,0.873999
			 ,0.647436,0.873999,0.248999,0.782251,0.219751,0.782251,0.219751,0.811499,0.248999,0.811499,0.670874,0.813501,0.665064,0.813501
			 ,0.665064,0.827124,0.670874,0.827124,0.663061,0.827124,0.663061,0.813501,0.657251,0.813501,0.657251,0.827124,0.842749,0.641626
			 ,0.829126,0.641626,0.829126,0.655249,0.842749,0.655249,0.686499,0.813501,0.680689,0.813501,0.680689,0.827124,0.686499,0.827124
			 ,0.678686,0.827124,0.678686,0.813501,0.672876,0.813501,0.672876,0.827124,0.670874,0.829126,0.665064,0.829126,0.665064,0.842749
			 ,0.670874,0.842749,0.663061,0.842749,0.663061,0.829126,0.657251,0.829126,0.657251,0.842749,0.686499,0.842749,0.686499,0.829126
			 ,0.680689,0.829126,0.680689,0.842749,0.678686,0.829126,0.672876,0.829126,0.672876,0.842749,0.678686,0.842749,0.639624,0.813501
			 ,0.633814,0.813501,0.633814,0.827124,0.639624,0.827124,0.631811,0.827124,0.631811,0.813501,0.626001,0.813501,0.626001,0.827124
			 ,0.217749,0.782251,0.188501,0.782251,0.188501,0.811499,0.217749,0.811499,0.248999,0.751001,0.219751,0.751001,0.219751,0.780249
			 ,0.248999,0.780249,0.217749,0.751001,0.188501,0.751001,0.188501,0.780249,0.217749,0.780249,0.186499,0.844751,0.157251,0.844751
			 ,0.157251,0.873999,0.186499,0.873999,0.311499,0.373999,0.311499,0.313501,0.282251,0.313501,0.282251,0.373999,0.280249,0.313501
			 ,0.251001,0.313501,0.251001,0.373999,0.280249,0.373999,0.373999,0.373999,0.373999,0.313501,0.344751,0.313501,0.344751,0.373999
			 ,0.342749,0.313501,0.313501,0.313501,0.313501,0.373999,0.342749,0.373999,0.311499,0.436499,0.311499,0.376001,0.282251,0.376001
			 ,0.282251,0.436499,0.280249,0.376001,0.251001,0.376001,0.251001,0.436499,0.280249,0.436499,0.373999,0.436499,0.373999,0.376001
			 ,0.344751,0.376001,0.344751,0.436499,0.342749,0.376001,0.313501,0.376001,0.313501,0.436499,0.342749,0.436499,0.967749,0.688501
			 ,0.954126,0.688501,0.954126,0.748999,0.967749,0.748999,0.311499,0.498999,0.311499,0.438501,0.282251,0.438501,0.282251,0.498999
			 ,0.280249,0.438501,0.251001,0.438501,0.251001,0.498999,0.280249,0.498999,0.373999,0.498999,0.373999,0.438501,0.344751,0.438501
			 ,0.344751,0.498999,0.342749,0.438501,0.313501,0.438501,0.313501,0.498999,0.342749,0.498999,0.748999,0.501001,0.688501,0.501001
			 ,0.688501,0.561499,0.748999,0.561499,0.686499,0.501001,0.626001,0.501001,0.626001,0.561499,0.686499,0.561499,0.155249,0.844751
			 ,0.126001,0.844751,0.126001,0.873999,0.155249,0.873999,0.186499,0.813501,0.157251,0.813501,0.157251,0.842749,0.186499,0.842749
			 ,0.155249,0.813501,0.126001,0.813501,0.126001,0.842749,0.155249,0.842749,0.248999,0.844751,0.219751,0.844751,0.219751,0.873999
			 ,0.248999,0.873999,0.186499,0.436499,0.186499,0.376001,0.157251,0.376001,0.157251,0.436499,0.155249,0.376001,0.126001,0.376001
			 ,0.126001,0.436499,0.155249,0.436499,0.952124,0.748999,0.952124,0.688501,0.938501,0.688501,0.938501,0.748999,0.248999,0.436499
			 ,0.248999,0.376001,0.219751,0.376001,0.219751,0.436499,0.217749,0.376001,0.188501,0.376001,0.188501,0.436499,0.217749,0.436499
			 ,0.186499,0.498999,0.186499,0.438501,0.157251,0.438501,0.157251,0.498999,0.155249,0.438501,0.126001,0.438501,0.126001,0.498999
			 ,0.155249,0.498999,0.248999,0.498999,0.248999,0.438501,0.219751,0.438501,0.219751,0.498999,0.217749,0.438501,0.188501,0.438501
			 ,0.188501,0.498999,0.217749,0.498999,0.998999,0.688501,0.985376,0.688501,0.985376,0.748999,0.998999,0.748999,0.061499,0.436499
			 ,0.061499,0.376001,0.032251,0.376001,0.032251,0.436499,0.030249,0.376001,0.001001,0.376001,0.001001,0.436499,0.030249,0.436499
			 ,0.123999,0.436499,0.123999,0.376001,0.094751,0.376001,0.094751,0.436499,0.092749,0.376001,0.063501,0.376001,0.063501,0.436499
			 ,0.092749,0.436499,0.061499,0.498999,0.061499,0.438501,0.032251,0.438501,0.032251,0.498999,0.030249,0.438501,0.001001,0.438501
			 ,0.001001,0.498999,0.030249,0.498999,0.123999,0.498999,0.123999,0.438501,0.094751,0.438501,0.094751,0.498999,0.092749,0.438501
			 ,0.063501,0.438501,0.063501,0.498999,0.092749,0.498999,0.436499,0.126001,0.407251,0.126001,0.407251,0.186499,0.436499,0.186499
			 ,0.405249,0.186499,0.405249,0.126001,0.376001,0.126001,0.376001,0.186499,0.498999,0.126001,0.469751,0.126001,0.469751,0.186499
			 ,0.498999,0.186499,0.983374,0.748999,0.983374,0.688501,0.969751,0.688501,0.969751,0.748999,0.467749,0.186499,0.467749,0.126001
			 ,0.438501,0.126001,0.438501,0.186499,0.436499,0.188501,0.407251,0.188501,0.407251,0.248999,0.436499,0.248999,0.405249,0.248999
			 ,0.405249,0.188501,0.376001,0.188501,0.376001,0.248999,0.498999,0.188501,0.469751,0.188501,0.469751,0.248999,0.498999,0.248999
			 ,0.467749,0.248999,0.467749,0.188501,0.438501,0.188501,0.438501,0.248999,0.436499,0.001001,0.407251,0.001001,0.407251,0.061499
			 ,0.436499,0.061499,0.905249,0.748999,0.905249,0.688501,0.891626,0.688501,0.891626,0.748999,0.889624,0.688501,0.876001,0.688501
			 ,0.876001,0.748999,0.889624,0.748999,0.405249,0.061499,0.405249,0.001001,0.376001,0.001001,0.376001,0.061499,0.498999,0.001001
			 ,0.469751,0.001001,0.469751,0.061499,0.498999,0.061499,0.467749,0.061499,0.467749,0.001001,0.438501,0.001001,0.438501,0.061499
			 ,0.436499,0.063501,0.407251,0.063501,0.407251,0.123999,0.436499,0.123999,0.623999,0.688501,0.563501,0.688501,0.563501,0.748999
			 ,0.623999,0.748999,0.561499,0.688501,0.501001,0.688501,0.501001,0.748999,0.561499,0.748999,0.217749,0.844751,0.188501,0.844751
			 ,0.188501,0.873999,0.217749,0.873999,0.248999,0.813501,0.219751,0.813501,0.219751,0.842749,0.248999,0.842749,0.217749,0.813501
			 ,0.188501,0.813501,0.188501,0.842749,0.217749,0.842749,0.811499,0.282251,0.782251,0.282251,0.782251,0.311499,0.811499,0.311499
			 ,0.780249,0.282251,0.751001,0.282251,0.751001,0.311499,0.780249,0.311499,0.811499,0.251001,0.782251,0.251001,0.782251,0.280249
			 ,0.811499,0.280249,0.780249,0.251001,0.751001,0.251001,0.751001,0.280249,0.780249,0.280249,0.873999,0.282251,0.844751,0.282251
			 ,0.844751,0.311499,0.873999,0.311499,0.405249,0.123999,0.405249,0.063501,0.376001,0.063501,0.376001,0.123999,0.498999,0.063501
			 ,0.469751,0.063501,0.469751,0.123999,0.498999,0.123999,0.936499,0.688501,0.922876,0.688501,0.922876,0.748999,0.936499,0.748999
			 ,0.467749,0.123999,0.467749,0.063501,0.438501,0.063501,0.438501,0.123999,0.436499,0.251001,0.407251,0.251001,0.407251,0.311499
			 ,0.436499,0.311499,0.405249,0.311499,0.405249,0.251001,0.376001,0.251001,0.376001,0.311499,0.498999,0.251001,0.469751,0.251001
			 ,0.469751,0.311499,0.498999,0.311499,0.842749,0.282251,0.813501,0.282251,0.813501,0.311499,0.842749,0.311499,0.873999,0.251001
			 ,0.844751,0.251001,0.844751,0.280249,0.873999,0.280249,0.842749,0.251001,0.813501,0.251001,0.813501,0.280249,0.842749,0.280249
			 ,0.811499,0.344751,0.782251,0.344751,0.782251,0.373999,0.811499,0.373999,0.467749,0.311499,0.467749,0.251001,0.438501,0.251001
			 ,0.438501,0.311499,0.436499,0.313501,0.407251,0.313501,0.407251,0.373999,0.436499,0.373999,0.405249,0.373999,0.405249,0.313501
			 ,0.376001,0.313501,0.376001,0.373999,0.498999,0.313501,0.469751,0.313501,0.469751,0.373999,0.498999,0.373999,0.467749,0.373999
			 ,0.467749,0.313501,0.438501,0.313501,0.438501,0.373999,0.436499,0.376001,0.407251,0.376001,0.407251,0.436499,0.436499,0.436499
			 ,0.405249,0.436499,0.405249,0.376001,0.376001,0.376001,0.376001,0.436499,0.498999,0.376001,0.469751,0.376001,0.469751,0.436499
			 ,0.498999,0.436499,0.467749,0.436499,0.467749,0.376001,0.438501,0.376001,0.438501,0.436499,0.436499,0.438501,0.407251,0.438501
			 ,0.407251,0.498999,0.436499,0.498999,0.623999,0.626001,0.563501,0.626001,0.563501,0.686499,0.623999,0.686499,0.561499,0.626001
			 ,0.501001,0.626001,0.501001,0.686499,0.561499,0.686499,0.405249,0.498999,0.405249,0.438501,0.376001,0.438501,0.376001,0.498999
			 ,0.498999,0.438501,0.469751,0.438501,0.469751,0.498999,0.498999,0.498999,0.467749,0.498999,0.467749,0.438501,0.438501,0.438501
			 ,0.438501,0.498999,0.061499,0.501001,0.032251,0.501001,0.032251,0.561499,0.061499,0.561499,0.030249,0.561499,0.030249,0.501001
			 ,0.001001,0.501001,0.001001,0.561499,0.123999,0.501001,0.094751,0.501001,0.094751,0.561499,0.123999,0.561499,0.092749,0.561499
			 ,0.092749,0.501001,0.063501,0.501001,0.063501,0.561499,0.061499,0.563501,0.032251,0.563501,0.032251,0.623999,0.061499,0.623999
			 ,0.748999,0.063501,0.688501,0.063501,0.688501,0.123999,0.748999,0.123999,0.686499,0.063501,0.626001,0.063501,0.626001,0.123999
			 ,0.686499,0.123999,0.748999,0.001001,0.688501,0.001001,0.688501,0.061499,0.748999,0.061499,0.686499,0.001001,0.626001,0.001001
			 ,0.626001,0.061499,0.686499,0.061499,0.123999,0.063501,0.063501,0.063501,0.063501,0.123999,0.123999,0.123999,0.061499,0.063501
			 ,0.001001,0.063501,0.001001,0.123999,0.061499,0.123999,0.030249,0.623999,0.030249,0.563501,0.001001,0.563501,0.001001,0.623999
			 ,0.123999,0.563501,0.094751,0.563501,0.094751,0.623999,0.123999,0.623999,0.092749,0.623999,0.092749,0.563501,0.063501,0.563501
			 ,0.063501,0.623999,0.311499,0.501001,0.282251,0.501001,0.282251,0.561499,0.311499,0.561499,0.123999,0.001001,0.063501,0.001001
			 ,0.063501,0.061499,0.123999,0.061499,0.061499,0.001001,0.001001,0.001001,0.001001,0.061499,0.061499,0.061499,0.498999,0.688501
			 ,0.438501,0.688501,0.438501,0.748999,0.498999,0.748999,0.436499,0.688501,0.376001,0.688501,0.376001,0.748999,0.436499,0.748999
			 ,0.280249,0.561499,0.280249,0.501001,0.251001,0.501001,0.251001,0.561499,0.373999,0.501001,0.344751,0.501001,0.344751,0.561499
			 ,0.373999,0.561499,0.342749,0.561499,0.342749,0.501001,0.313501,0.501001,0.313501,0.561499,0.311499,0.563501,0.282251,0.563501
			 ,0.282251,0.623999,0.311499,0.623999,0.498999,0.626001,0.438501,0.626001,0.438501,0.686499,0.498999,0.686499,0.436499,0.626001
			 ,0.376001,0.626001,0.376001,0.686499,0.436499,0.686499,0.280249,0.623999,0.280249,0.563501,0.251001,0.563501,0.251001,0.623999
			 ,0.373999,0.563501,0.344751,0.563501,0.344751,0.623999,0.373999,0.623999,0.342749,0.623999,0.342749,0.563501,0.313501,0.563501
			 ,0.313501,0.623999,0.186499,0.501001,0.157251,0.501001,0.157251,0.561499,0.186499,0.561499,0.155249,0.561499,0.155249,0.501001
			 ,0.126001,0.501001,0.126001,0.561499,0.248999,0.501001,0.219751,0.501001,0.219751,0.561499,0.248999,0.561499,0.217749,0.561499
			 ,0.217749,0.501001,0.188501,0.501001,0.188501,0.561499,0.186499,0.563501,0.157251,0.563501,0.157251,0.623999,0.186499,0.623999
			 ,0.780249,0.344751,0.751001,0.344751,0.751001,0.373999,0.780249,0.373999,0.811499,0.313501,0.782251,0.313501,0.782251,0.342749
			 ,0.811499,0.342749,0.780249,0.313501,0.751001,0.313501,0.751001,0.342749,0.780249,0.342749,0.873999,0.344751,0.844751,0.344751
			 ,0.844751,0.373999,0.873999,0.373999,0.842749,0.344751,0.813501,0.344751,0.813501,0.373999,0.842749,0.373999,0.873999,0.313501
			 ,0.844751,0.313501,0.844751,0.342749,0.873999,0.342749,0.842749,0.313501,0.813501,0.313501,0.813501,0.342749,0.842749,0.342749
			 ,0.811499,0.157251,0.782251,0.157251,0.782251,0.186499,0.811499,0.186499,0.780249,0.157251,0.751001,0.157251,0.751001,0.186499
			 ,0.780249,0.186499,0.811499,0.126001,0.782251,0.126001,0.782251,0.155249,0.811499,0.155249,0.780249,0.126001,0.751001,0.126001
			 ,0.751001,0.155249,0.780249,0.155249,0.873999,0.157251,0.844751,0.157251,0.844751,0.186499,0.873999,0.186499,0.920874,0.748999
			 ,0.920874,0.688501,0.907251,0.688501,0.907251,0.748999,0.967749,0.626001,0.954126,0.626001,0.954126,0.686499,0.967749,0.686499
			 ,0.952124,0.686499,0.952124,0.626001,0.938501,0.626001,0.938501,0.686499,0.998999,0.626001,0.985376,0.626001,0.985376,0.686499
			 ,0.998999,0.686499,0.170874,0.063501,0.165064,0.063501,0.165064,0.123999,0.170874,0.123999,0.983374,0.686499,0.983374,0.626001
			 ,0.969751,0.626001,0.969751,0.686499,0.905249,0.626001,0.891626,0.626001,0.891626,0.686499,0.905249,0.686499,0.889624,0.686499
			 ,0.889624,0.626001,0.876001,0.626001,0.876001,0.686499,0.936499,0.626001,0.922876,0.626001,0.922876,0.686499,0.936499,0.686499
			 ,0.920874,0.686499,0.920874,0.626001,0.907251,0.626001,0.907251,0.686499,0.967749,0.313501,0.954126,0.313501,0.954126,0.373999
			 ,0.967749,0.373999,0.952124,0.373999,0.952124,0.313501,0.938501,0.313501,0.938501,0.373999,0.998999,0.313501,0.985376,0.313501
			 ,0.985376,0.373999,0.998999,0.373999,0.163061,0.123999,0.163061,0.063501,0.157251,0.063501,0.157251,0.123999,0.186499,0.123999
			 ,0.186499,0.063501,0.180689,0.063501,0.180689,0.123999,0.178686,0.063501,0.172876,0.063501,0.172876,0.123999,0.178686,0.123999
			 ,0.983374,0.373999,0.983374,0.313501,0.969751,0.313501,0.969751,0.373999,0.905249,0.313501,0.891626,0.313501,0.891626,0.373999
			 ,0.905249,0.373999,0.889624,0.373999,0.889624,0.313501,0.876001,0.313501,0.876001,0.373999,0.936499,0.313501,0.922876,0.313501
			 ,0.922876,0.373999,0.936499,0.373999,0.920874,0.373999,0.920874,0.313501,0.907251,0.313501,0.907251,0.373999,0.967749,0.251001
			 ,0.954126,0.251001,0.954126,0.311499,0.967749,0.311499,0.952124,0.311499,0.952124,0.251001,0.938501,0.251001,0.938501,0.311499
			 ,0.998999,0.251001,0.985376,0.251001,0.985376,0.311499,0.998999,0.311499,0.139624,0.123999,0.139624,0.063501,0.133814,0.063501
			 ,0.133814,0.123999,0.131811,0.063501,0.126001,0.063501,0.126001,0.123999,0.131811,0.123999,0.155249,0.123999,0.155249,0.063501
			 ,0.149439,0.063501,0.149439,0.123999,0.147436,0.063501,0.141626,0.063501,0.141626,0.123999,0.147436,0.123999,0.983374,0.311499
			 ,0.983374,0.251001,0.969751,0.251001,0.969751,0.311499,0.905249,0.251001,0.891626,0.251001,0.891626,0.311499,0.905249,0.311499
			 ,0.889624,0.311499,0.889624,0.251001,0.876001,0.251001,0.876001,0.311499,0.936499,0.251001,0.922876,0.251001,0.922876,0.311499
			 ,0.936499,0.311499,0.920874,0.311499,0.920874,0.251001,0.907251,0.251001,0.907251,0.311499,0.967749,0.438501,0.954126,0.438501
			 ,0.954126,0.498999,0.967749,0.498999,0.952124,0.498999,0.952124,0.438501,0.938501,0.438501,0.938501,0.498999,0.998999,0.438501
			 ,0.985376,0.438501,0.985376,0.498999,0.998999,0.498999,0.233374,0.063501,0.227564,0.063501,0.227564,0.123999,0.233374,0.123999
			 ,0.983374,0.498999,0.983374,0.438501,0.969751,0.438501,0.969751,0.498999,0.905249,0.438501,0.891626,0.438501,0.891626,0.498999
			 ,0.905249,0.498999,0.889624,0.498999,0.889624,0.438501,0.876001,0.438501,0.876001,0.498999,0.936499,0.438501,0.922876,0.438501
			 ,0.922876,0.498999,0.936499,0.498999,0.920874,0.498999,0.920874,0.438501,0.907251,0.438501,0.907251,0.498999,0.967749,0.436499
			 ,0.967749,0.376001,0.954126,0.376001,0.954126,0.436499,0.952124,0.436499,0.952124,0.376001,0.938501,0.376001,0.938501,0.436499
			 ,0.998999,0.436499,0.998999,0.376001,0.985376,0.376001,0.985376,0.436499,0.983374,0.436499,0.983374,0.376001,0.969751,0.376001
			 ,0.969751,0.436499,0.905249,0.436499,0.905249,0.376001,0.891626,0.376001,0.891626,0.436499,0.889624,0.436499,0.889624,0.376001
			 ,0.876001,0.376001,0.876001,0.436499,0.936499,0.436499,0.936499,0.376001,0.922876,0.376001,0.922876,0.436499,0.920874,0.436499
			 ,0.920874,0.376001,0.907251,0.376001,0.907251,0.436499,0.342749,0.998999,0.342749,0.938501,0.329126,0.938501,0.329126,0.998999
			 ,0.327124,0.998999,0.327124,0.938501,0.313501,0.938501,0.313501,0.998999,0.373999,0.998999,0.373999,0.938501,0.360376,0.938501
			 ,0.360376,0.998999,0.358374,0.998999,0.358374,0.938501,0.344751,0.938501,0.344751,0.998999,0.280249,0.998999,0.280249,0.938501
			 ,0.266626,0.938501,0.266626,0.998999,0.264624,0.998999,0.264624,0.938501,0.251001,0.938501,0.251001,0.998999,0.311499,0.998999
			 ,0.311499,0.938501,0.297876,0.938501,0.297876,0.998999,0.295874,0.998999,0.295874,0.938501,0.282251,0.938501,0.282251,0.998999
			 ,0.225561,0.123999,0.225561,0.063501,0.219751,0.063501,0.219751,0.123999,0.248999,0.063501,0.243189,0.063501,0.243189,0.123999
			 ,0.248999,0.123999,0.241186,0.123999,0.241186,0.063501,0.235376,0.063501,0.235376,0.123999,0.202124,0.063501,0.196314,0.063501
			 ,0.196314,0.123999,0.202124,0.123999,0.194311,0.123999,0.194311,0.063501,0.188501,0.063501,0.188501,0.123999,0.217749,0.063501
			 ,0.211939,0.063501,0.211939,0.123999,0.217749,0.123999,0.209936,0.123999,0.209936,0.063501,0.204126,0.063501,0.204126,0.123999
			 ,0.045874,0.126001,0.040064,0.126001,0.040064,0.186499,0.045874,0.186499,0.038061,0.186499,0.038061,0.126001,0.032251,0.126001
			 ,0.032251,0.186499,0.061499,0.126001,0.055689,0.126001,0.055689,0.186499,0.061499,0.186499,0.053686,0.186499,0.053686,0.126001
			 ,0.047876,0.126001,0.047876,0.186499,0.014624,0.126001,0.008814,0.126001,0.008814,0.186499,0.014624,0.186499,0.006811,0.186499
			 ,0.006811,0.126001,0.001001,0.126001,0.001001,0.186499,0.030249,0.126001,0.024439,0.126001,0.024439,0.186499,0.030249,0.186499
			 ,0.022436,0.186499,0.022436,0.126001,0.016626,0.126001,0.016626,0.186499,0.108374,0.126001,0.102564,0.126001,0.102564,0.186499
			 ,0.108374,0.186499,0.100561,0.186499,0.100561,0.126001,0.094751,0.126001,0.094751,0.186499,0.123999,0.126001,0.118189,0.126001
			 ,0.118189,0.186499,0.123999,0.186499,0.116186,0.186499,0.116186,0.126001,0.110376,0.126001,0.110376,0.186499,0.077124,0.126001
			 ,0.071314,0.126001,0.071314,0.186499,0.077124,0.186499,0.069311,0.186499,0.069311,0.126001,0.063501,0.126001,0.063501,0.186499
			 ,0.092749,0.126001,0.086939,0.126001,0.086939,0.186499,0.092749,0.186499,0.084936,0.186499,0.084936,0.126001,0.079126,0.126001
			 ,0.079126,0.186499,0.045874,0.188501,0.040064,0.188501,0.040064,0.248999,0.045874,0.248999,0.038061,0.248999,0.038061,0.188501
			 ,0.032251,0.188501,0.032251,0.248999,0.061499,0.188501,0.055689,0.188501,0.055689,0.248999,0.061499,0.248999,0.053686,0.248999
			 ,0.053686,0.188501,0.047876,0.188501,0.047876,0.248999,0.014624,0.188501,0.008814,0.188501,0.008814,0.248999,0.014624,0.248999
			 ,0.006811,0.248999,0.006811,0.188501,0.001001,0.188501,0.001001,0.248999,0.030249,0.188501,0.024439,0.188501,0.024439,0.248999
			 ,0.030249,0.248999,0.022436,0.248999,0.022436,0.188501,0.016626,0.188501,0.016626,0.248999,0.108374,0.188501,0.102564,0.188501
			 ,0.102564,0.248999,0.108374,0.248999,0.748999,0.188501,0.688501,0.188501,0.688501,0.248999,0.748999,0.248999,0.155249,0.563501
			 ,0.126001,0.563501,0.126001,0.623999,0.155249,0.623999,0.686499,0.188501,0.626001,0.188501,0.626001,0.248999,0.686499,0.248999
			 ,0.248999,0.623999,0.248999,0.563501,0.219751,0.563501,0.219751,0.623999,0.748999,0.126001,0.688501,0.126001,0.688501,0.186499
			 ,0.748999,0.186499,0.217749,0.563501,0.188501,0.563501,0.188501,0.623999,0.217749,0.623999,0.686499,0.126001,0.626001,0.126001
			 ,0.626001,0.186499,0.686499,0.186499,0.561499,0.251001,0.532251,0.251001,0.532251,0.311499,0.561499,0.311499,0.530249,0.251001
			 ,0.501001,0.251001,0.501001,0.311499,0.530249,0.311499,0.623999,0.311499,0.623999,0.251001,0.594751,0.251001,0.594751,0.311499
			 ,0.123999,0.688501,0.063501,0.688501,0.063501,0.748999,0.123999,0.748999,0.592749,0.311499,0.592749,0.251001,0.563501,0.251001
			 ,0.563501,0.311499,0.561499,0.313501,0.532251,0.313501,0.532251,0.373999,0.561499,0.373999,0.342749,0.876001,0.329126,0.876001
			 ,0.329126,0.936499,0.342749,0.936499,0.061499,0.688501,0.001001,0.688501,0.001001,0.748999,0.061499,0.748999,0.123999,0.626001
			 ,0.063501,0.626001,0.063501,0.686499,0.123999,0.686499,0.061499,0.626001,0.001001,0.626001,0.001001,0.686499,0.061499,0.686499
			 ,0.530249,0.313501,0.501001,0.313501,0.501001,0.373999,0.530249,0.373999,0.327124,0.936499,0.327124,0.876001,0.313501,0.876001
			 ,0.313501,0.936499,0.623999,0.313501,0.594751,0.313501,0.594751,0.373999,0.623999,0.373999,0.248999,0.688501,0.188501,0.688501
			 ,0.188501,0.748999,0.248999,0.748999,0.186499,0.688501,0.126001,0.688501,0.126001,0.748999,0.186499,0.748999,0.248999,0.626001
			 ,0.188501,0.626001,0.188501,0.686499,0.248999,0.686499,0.186499,0.626001,0.126001,0.626001,0.126001,0.686499,0.186499,0.686499
			 ,0.748999,0.313501,0.688501,0.313501,0.688501,0.373999,0.748999,0.373999,0.686499,0.313501,0.626001,0.313501,0.626001,0.373999
			 ,0.686499,0.373999,0.748999,0.251001,0.688501,0.251001,0.688501,0.311499,0.748999,0.311499,0.686499,0.251001,0.626001,0.251001
			 ,0.626001,0.311499,0.686499,0.311499,0.748999,0.438501,0.688501,0.438501,0.688501,0.498999,0.748999,0.498999,0.686499,0.438501
			 ,0.626001,0.438501,0.626001,0.498999,0.686499,0.498999,0.373999,0.876001,0.360376,0.876001,0.360376,0.936499,0.373999,0.936499
			 ,0.748999,0.376001,0.688501,0.376001,0.688501,0.436499,0.748999,0.436499,0.592749,0.373999,0.592749,0.313501,0.563501,0.313501
			 ,0.563501,0.373999,0.686499,0.376001,0.626001,0.376001,0.626001,0.436499,0.686499,0.436499,0.623999,0.563501,0.563501,0.563501
			 ,0.563501,0.623999,0.623999,0.623999,0.561499,0.186499,0.561499,0.126001,0.532251,0.126001,0.532251,0.186499,0.530249,0.186499
			 ,0.530249,0.126001,0.501001,0.126001,0.501001,0.186499,0.623999,0.186499,0.623999,0.126001,0.594751,0.126001,0.594751,0.186499
			 ,0.561499,0.563501,0.501001,0.563501,0.501001,0.623999,0.561499,0.623999,0.623999,0.501001,0.563501,0.501001,0.563501,0.561499
			 ,0.623999,0.561499,0.561499,0.501001,0.501001,0.501001,0.501001,0.561499,0.561499,0.561499,0.623999,0.438501,0.563501,0.438501
			 ,0.563501,0.498999,0.623999,0.498999,0.561499,0.438501,0.501001,0.438501,0.501001,0.498999,0.561499,0.498999,0.623999,0.376001
			 ,0.563501,0.376001,0.563501,0.436499,0.623999,0.436499,0.358374,0.936499,0.358374,0.876001,0.344751,0.876001,0.344751,0.936499
			 ,0.592749,0.186499,0.592749,0.126001,0.563501,0.126001,0.563501,0.186499,0.561499,0.376001,0.501001,0.376001,0.501001,0.436499
			 ,0.561499,0.436499,0.280249,0.876001,0.266626,0.876001,0.266626,0.936499,0.280249,0.936499,0.498999,0.563501,0.438501,0.563501
			 ,0.438501,0.623999,0.498999,0.623999,0.436499,0.563501,0.376001,0.563501,0.376001,0.623999,0.436499,0.623999,0.561499,0.248999
			 ,0.561499,0.188501,0.532251,0.188501,0.532251,0.248999,0.100561,0.188501,0.094751,0.188501,0.094751,0.248999,0.100561,0.248999
			 ,0.123999,0.248999,0.123999,0.188501,0.118189,0.188501,0.118189,0.248999,0.116186,0.188501,0.110376,0.188501,0.110376,0.248999
			 ,0.116186,0.248999,0.264624,0.936499,0.264624,0.876001,0.251001,0.876001,0.251001,0.936499,0.311499,0.876001,0.297876,0.876001
			 ,0.297876,0.936499,0.311499,0.936499,0.295874,0.936499,0.295874,0.876001,0.282251,0.876001,0.282251,0.936499,0.077124,0.248999
			 ,0.077124,0.188501,0.071314,0.188501,0.071314,0.248999,0.069311,0.248999,0.069311,0.188501,0.063501,0.188501,0.063501,0.248999
			 ,0.092749,0.938501,0.079126,0.938501,0.079126,0.998999,0.092749,0.998999,0.092749,0.248999,0.092749,0.188501,0.086939,0.188501
			 ,0.086939,0.248999,0.077124,0.938501,0.063501,0.938501,0.063501,0.998999,0.077124,0.998999,0.084936,0.188501,0.079126,0.188501
			 ,0.079126,0.248999,0.084936,0.248999,0.295874,0.686499,0.295874,0.626001,0.290064,0.626001,0.290064,0.686499,0.123999,0.938501
			 ,0.110376,0.938501,0.110376,0.998999,0.123999,0.998999,0.108374,0.938501,0.094751,0.938501,0.094751,0.998999,0.108374,0.998999
			 ,0.030249,0.998999,0.030249,0.938501,0.016626,0.938501,0.016626,0.998999,0.014624,0.998999,0.014624,0.938501,0.001001,0.938501
			 ,0.001001,0.998999,0.288061,0.686499,0.288061,0.626001,0.282251,0.626001,0.282251,0.686499,0.061499,0.998999,0.061499,0.938501
			 ,0.047876,0.938501,0.047876,0.998999,0.311499,0.626001,0.305689,0.626001,0.305689,0.686499,0.311499,0.686499,0.303686,0.626001
			 ,0.297876,0.626001,0.297876,0.686499,0.303686,0.686499,0.045874,0.998999,0.045874,0.938501,0.032251,0.938501,0.032251,0.998999
			 ,0.827124,0.641626,0.813501,0.641626,0.813501,0.655249,0.827124,0.655249,0.655249,0.813501,0.649439,0.813501,0.649439,0.827124
			 ,0.655249,0.827124,0.842749,0.626001,0.829126,0.626001,0.829126,0.639624,0.842749,0.639624,0.827124,0.626001,0.813501,0.626001
			 ,0.813501,0.639624,0.827124,0.639624,0.873999,0.641626,0.860376,0.641626,0.860376,0.655249,0.873999,0.655249,0.647436,0.813501
			 ,0.641626,0.813501,0.641626,0.827124,0.647436,0.827124,0.858374,0.641626,0.844751,0.641626,0.844751,0.655249,0.858374,0.655249
			 ,0.873999,0.626001,0.860376,0.626001,0.860376,0.639624,0.873999,0.639624,0.639624,0.842749,0.639624,0.829126,0.633814,0.829126
			 ,0.633814,0.842749,0.631811,0.842749,0.631811,0.829126,0.626001,0.829126,0.626001,0.842749,0.858374,0.626001,0.844751,0.626001
			 ,0.844751,0.639624,0.858374,0.639624,0.842749,0.672876,0.829126,0.672876,0.829126,0.686499,0.842749,0.686499,0.827124,0.672876
			 ,0.813501,0.672876,0.813501,0.686499,0.827124,0.686499,0.842749,0.657251,0.829126,0.657251,0.829126,0.670874,0.842749,0.670874
			 ,0.655249,0.829126,0.649439,0.829126,0.649439,0.842749,0.655249,0.842749,0.827124,0.657251,0.813501,0.657251,0.813501,0.670874
			 ,0.827124,0.670874,0.873999,0.672876,0.860376,0.672876,0.860376,0.686499,0.873999,0.686499,0.647436,0.829126,0.641626,0.829126
			 ,0.641626,0.842749,0.647436,0.842749,0.858374,0.672876,0.844751,0.672876,0.844751,0.686499,0.858374,0.686499,0.873999,0.657251
			 ,0.860376,0.657251,0.860376,0.670874,0.873999,0.670874,0.858374,0.657251,0.844751,0.657251,0.844751,0.670874,0.858374,0.670874
			 ,0.780249,0.641626,0.766626,0.641626,0.766626,0.655249,0.780249,0.655249,0.733374,0.858374,0.733374,0.844751,0.727564,0.844751
			 ,0.727564,0.858374,0.764624,0.641626,0.751001,0.641626,0.751001,0.655249,0.764624,0.655249,0.725561,0.844751,0.719751,0.844751
			 ,0.719751,0.858374,0.725561,0.858374,0.780249,0.626001,0.766626,0.626001,0.766626,0.639624,0.780249,0.639624,0.748999,0.858374
			 ,0.748999,0.844751,0.743189,0.844751,0.743189,0.858374,0.741186,0.844751,0.735376,0.844751,0.735376,0.858374,0.741186,0.858374
			 ,0.764624,0.626001,0.751001,0.626001,0.751001,0.639624,0.764624,0.639624,0.811499,0.641626,0.797876,0.641626,0.797876,0.655249
			 ,0.811499,0.655249,0.795874,0.641626,0.782251,0.641626,0.782251,0.655249,0.795874,0.655249,0.733374,0.873999,0.733374,0.860376
			 ,0.727564,0.860376,0.727564,0.873999,0.811499,0.626001,0.797876,0.626001,0.797876,0.639624,0.811499,0.639624,0.795874,0.626001
			 ,0.782251,0.626001,0.782251,0.639624,0.795874,0.639624,0.780249,0.672876,0.766626,0.672876,0.766626,0.686499,0.780249,0.686499
			 ,0.764624,0.672876,0.751001,0.672876,0.751001,0.686499,0.764624,0.686499,0.780249,0.657251,0.766626,0.657251,0.766626,0.670874
			 ,0.780249,0.670874,0.764624,0.657251,0.751001,0.657251,0.751001,0.670874,0.764624,0.670874,0.811499,0.672876,0.797876,0.672876
			 ,0.797876,0.686499,0.811499,0.686499,0.795874,0.672876,0.782251,0.672876,0.782251,0.686499,0.795874,0.686499,0.811499,0.657251
			 ,0.797876,0.657251,0.797876,0.670874,0.811499,0.670874,0.795874,0.657251,0.782251,0.657251,0.782251,0.670874,0.795874,0.670874
			 ,0.725561,0.860376,0.719751,0.860376,0.719751,0.873999,0.725561,0.873999,0.717749,0.829126,0.704126,0.829126,0.704126,0.842749
			 ,0.717749,0.842749,0.748999,0.860376,0.743189,0.860376,0.743189,0.873999,0.748999,0.873999,0.741186,0.873999,0.741186,0.860376
			 ,0.735376,0.860376,0.735376,0.873999,0.702124,0.858374,0.702124,0.844751,0.696314,0.844751,0.696314,0.858374,0.702124,0.829126
			 ,0.688501,0.829126,0.688501,0.842749,0.702124,0.842749,0.694311,0.844751,0.688501,0.844751,0.688501,0.858374,0.694311,0.858374
			 ,0.717749,0.813501,0.704126,0.813501,0.704126,0.827124,0.717749,0.827124,0.717749,0.858374,0.717749,0.844751,0.711939,0.844751
			 ,0.711939,0.858374,0.702124,0.813501,0.688501,0.813501,0.688501,0.827124,0.702124,0.827124,0.709936,0.858374,0.709936,0.844751
			 ,0.704126,0.844751,0.704126,0.858374,0.702124,0.873999,0.702124,0.860376,0.696314,0.860376,0.696314,0.873999,0.694311,0.873999
			 ,0.694311,0.860376,0.688501,0.860376,0.688501,0.873999,0.748999,0.829126,0.735376,0.829126,0.735376,0.842749,0.748999,0.842749
			 ,0.733374,0.829126,0.719751,0.829126,0.719751,0.842749,0.733374,0.842749,0.748999,0.813501,0.735376,0.813501,0.735376,0.827124
			 ,0.748999,0.827124,0.733374,0.813501,0.719751,0.813501,0.719751,0.827124,0.733374,0.827124,0.717749,0.860376,0.711939,0.860376
			 ,0.711939,0.873999,0.717749,0.873999,0.709936,0.860376,0.704126,0.860376,0.704126,0.873999,0.709936,0.873999,0.530249,0.188501
			 ,0.501001,0.188501,0.501001,0.248999,0.530249,0.248999,0.623999,0.248999,0.623999,0.188501,0.594751,0.188501,0.594751,0.248999
			 ,0.092749,0.876001,0.079126,0.876001,0.079126,0.936499,0.092749,0.936499,0.077124,0.876001,0.063501,0.876001,0.063501,0.936499
			 ,0.077124,0.936499,0.123999,0.936499,0.123999,0.876001,0.110376,0.876001,0.110376,0.936499,0.592749,0.188501,0.563501,0.188501
			 ,0.563501,0.248999,0.592749,0.248999,0.108374,0.876001,0.094751,0.876001,0.094751,0.936499,0.108374,0.936499,0.030249,0.936499
			 ,0.030249,0.876001,0.016626,0.876001,0.016626,0.936499,0.561499,0.061499,0.561499,0.001001,0.532251,0.001001,0.532251,0.061499
			 ,0.530249,0.061499,0.530249,0.001001,0.501001,0.001001,0.501001,0.061499,0.623999,0.001001,0.594751,0.001001,0.594751,0.061499
			 ,0.623999,0.061499,0.592749,0.001001,0.563501,0.001001,0.563501,0.061499,0.592749,0.061499,0.561499,0.063501,0.532251,0.063501
			 ,0.532251,0.123999,0.561499,0.123999,0.530249,0.123999,0.530249,0.063501,0.501001,0.063501,0.501001,0.123999,0.623999,0.123999
			 ,0.623999,0.063501,0.594751,0.063501,0.594751,0.123999,0.592749,0.063501,0.563501,0.063501,0.563501,0.123999,0.592749,0.123999
			 ,0.436499,0.501001,0.407251,0.501001,0.407251,0.561499,0.436499,0.561499,0.014624,0.876001,0.001001,0.876001,0.001001,0.936499
			 ,0.014624,0.936499,0.405249,0.501001,0.376001,0.501001,0.376001,0.561499,0.405249,0.561499,0.061499,0.936499,0.061499,0.876001
			 ,0.047876,0.876001,0.047876,0.936499,0.045874,0.936499,0.045874,0.876001,0.032251,0.876001,0.032251,0.936499,0.217749,0.998999
			 ,0.217749,0.938501,0.204126,0.938501,0.204126,0.998999,0.498999,0.561499,0.498999,0.501001,0.469751,0.501001,0.469751,0.561499
			 ,0.467749,0.561499,0.467749,0.501001,0.438501,0.501001,0.438501,0.561499,0.202124,0.998999,0.202124,0.938501,0.188501,0.938501
			 ,0.188501,0.998999,0.248999,0.998999,0.248999,0.938501,0.235376,0.938501,0.235376,0.998999,0.233374,0.938501,0.219751,0.938501
			 ,0.219751,0.998999,0.233374,0.998999,0.155249,0.938501,0.141626,0.938501,0.141626,0.998999,0.155249,0.998999,0.139624,0.998999
			 ,0.139624,0.938501,0.126001,0.938501,0.126001,0.998999,0.186499,0.998999,0.186499,0.938501,0.172876,0.938501,0.172876,0.998999
			 ,0.264624,0.686499,0.264624,0.626001,0.258814,0.626001,0.258814,0.686499,0.170874,0.998999,0.170874,0.938501,0.157251,0.938501
			 ,0.157251,0.998999,0.217749,0.936499,0.217749,0.876001,0.204126,0.876001,0.204126,0.936499,0.256811,0.626001,0.251001,0.626001
			 ,0.251001,0.686499,0.256811,0.686499,0.202124,0.876001,0.188501,0.876001,0.188501,0.936499,0.202124,0.936499,0.248999,0.876001
			 ,0.235376,0.876001,0.235376,0.936499,0.248999,0.936499,0.233374,0.876001,0.219751,0.876001,0.219751,0.936499,0.233374,0.936499
			 ,0.155249,0.876001,0.141626,0.876001,0.141626,0.936499,0.155249,0.936499,0.280249,0.626001,0.274439,0.626001,0.274439,0.686499
			 ,0.280249,0.686499,0.139624,0.936499,0.139624,0.876001,0.126001,0.876001,0.126001,0.936499,0.272436,0.686499,0.272436,0.626001
			 ,0.266626,0.626001,0.266626,0.686499,0.186499,0.876001,0.172876,0.876001,0.172876,0.936499,0.186499,0.936499,0.170874,0.876001
			 ,0.157251,0.876001,0.157251,0.936499,0.170874,0.936499,0.842749,0.873999,0.842749,0.813501,0.829126,0.813501,0.829126,0.873999
			 ,0.358374,0.686499,0.358374,0.626001,0.352564,0.626001,0.352564,0.686499,0.827124,0.813501,0.813501,0.813501,0.813501,0.873999
			 ,0.827124,0.873999,0.873999,0.873999,0.873999,0.813501,0.860376,0.813501,0.860376,0.873999,0.858374,0.813501,0.844751,0.813501
			 ,0.844751,0.873999,0.858374,0.873999,0.780249,0.873999,0.780249,0.813501,0.766626,0.813501,0.766626,0.873999,0.764624,0.813501
			 ,0.751001,0.813501,0.751001,0.873999,0.764624,0.873999,0.350561,0.626001,0.344751,0.626001,0.344751,0.686499,0.350561,0.686499
			 ,0.811499,0.813501,0.797876,0.813501,0.797876,0.873999,0.811499,0.873999,0.795874,0.813501,0.782251,0.813501,0.782251,0.873999
			 ,0.795874,0.873999,0.373999,0.686499,0.373999,0.626001,0.368189,0.626001,0.368189,0.686499,0.366186,0.626001,0.360376,0.626001
			 ,0.360376,0.686499,0.366186,0.686499,0.842749,0.811499,0.842749,0.751001,0.829126,0.751001,0.829126,0.811499,0.827124,0.811499
			 ,0.827124,0.751001,0.813501,0.751001,0.813501,0.811499,0.873999,0.751001,0.860376,0.751001,0.860376,0.811499,0.873999,0.811499
			 ,0.327124,0.626001,0.321314,0.626001,0.321314,0.686499,0.327124,0.686499,0.858374,0.811499,0.858374,0.751001,0.844751,0.751001
			 ,0.844751,0.811499,0.780249,0.751001,0.766626,0.751001,0.766626,0.811499,0.780249,0.811499,0.319311,0.626001,0.313501,0.626001
			 ,0.313501,0.686499,0.319311,0.686499,0.764624,0.811499,0.764624,0.751001,0.751001,0.751001,0.751001,0.811499,0.342749,0.686499
			 ,0.342749,0.626001,0.336939,0.626001,0.336939,0.686499,0.811499,0.751001,0.797876,0.751001,0.797876,0.811499,0.811499,0.811499
			 ,0.334936,0.686499,0.334936,0.626001,0.329126,0.626001,0.329126,0.686499,0.795874,0.811499,0.795874,0.751001,0.782251,0.751001
			 ,0.782251,0.811499
			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,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649
				,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704
				,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759
				,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814
				,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869
				,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924
				,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979
				,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034
				,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089
				,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144
				,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199
				,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254
				,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309
				,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364
				,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419
				,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474
				,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529
				,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584
				,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639
				,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694
				,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749
				,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804
				,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859
				,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914
				,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969
				,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024
				,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079
				,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134
				,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189
				,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244
				,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299
				,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354
				,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409
				,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464
				,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519
				,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574
				,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629
				,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684
				,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739
				,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759
		}
		LayerElementTexture: 1 {
			Version: 101
			Name: "lightmap"
			MappingInformationType: "ByPolygon"
			ReferenceInformationType: "IndexToDirect"
			BlendMode: "Translucent"
			TextureAlpha: 1
			TextureId: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0
		}
		LayerElementMaterial: 0 {
			Version: 101
			Name: ""
			MappingInformationType: "ByPolygon"
			ReferenceInformationType: "IndexToDirect"
			Materials: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0
		}
		Layer: 0 {
			Version: 100
			LayerElement:  {
				Type: "LayerElementNormal"
				TypedIndex: 0
			}
			LayerElement:  {
				Type: "LayerElementMaterial"
				TypedIndex: 0
			}
			LayerElement:  {
				Type: "LayerElementSmoothing"
				TypedIndex: 0
			}
			LayerElement:  {
				Type: "LayerElementTexture"
				TypedIndex: 0
			}
			LayerElement:  {
				Type: "LayerElementUV"
				TypedIndex: 0
			}
		}
		Layer: 1 {
			Version: 100
			LayerElement:  {
				Type: "LayerElementUV"
				TypedIndex: 1
			}
			LayerElement:  {
				Type: "LayerElementTexture"
				TypedIndex: 1
			}
		}
	}
	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::None__ao", "" {
		Version: 102
		ShadingModel: "phong"
		MultiLayer: 0
		Properties60:  {
			Property: "ShadingModel", "KString", "", "Phong"
			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", "",0.5000
			Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000
			Property: "DiffuseFactor", "double", "",1.0000
			Property: "Bump", "Vector3D", "",0,0,0
			Property: "TransparentColor", "ColorRGB", "",1,1,1
			Property: "TransparencyFactor", "double", "",0.0000
			Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000
			Property: "SpecularFactor", "double", "",0.2000
			Property: "ShininessExponent", "double", "",80.0
			Property: "ReflectionColor", "ColorRGB", "",0,0,0
			Property: "ReflectionFactor", "double", "",1
			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: "Specular", "ColorRGB", "",0.8,0.8,0.8
			Property: "Shininess", "double", "",20.0
			Property: "Opacity", "double", "",1.0
			Property: "Reflectivity", "double", "",0
		}
	}
	Material: "Material::unnamed", "" {
		Version: 102
		ShadingModel: "phong"
		MultiLayer: 0
		Properties60:  {
			Property: "ShadingModel", "KString", "", "Phong"
			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", "",0.5000
			Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000
			Property: "DiffuseFactor", "double", "",1.0000
			Property: "Bump", "Vector3D", "",0,0,0
			Property: "TransparentColor", "ColorRGB", "",1,1,1
			Property: "TransparencyFactor", "double", "",0.0000
			Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000
			Property: "SpecularFactor", "double", "",0.2000
			Property: "ShininessExponent", "double", "",80.0
			Property: "ReflectionColor", "ColorRGB", "",0,0,0
			Property: "ReflectionFactor", "double", "",1
			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: "Specular", "ColorRGB", "",0.8,0.8,0.8
			Property: "Shininess", "double", "",20.0
			Property: "Opacity", "double", "",1.0
			Property: "Reflectivity", "double", "",0
		}
	}
	Video: "Video::ao", "Clip" {
		Type: "Clip"
		Properties60:  {
			Property: "FrameRate", "double", "",0
			Property: "LastFrame", "int", "",0
			Property: "Width", "int", "",0
			Property: "Height", "int", "",0
			Property: "Path", "charptr", "", "bishop-ao.jpg"
			Property: "StartFrame", "int", "",0
			Property: "StopFrame", "int", "",0
			Property: "PlaySpeed", "double", "",1
			Property: "Offset", "KTime", "",0
			Property: "InterlaceMode", "enum", "",0
			Property: "FreeRunning", "bool", "",0
			Property: "Loop", "bool", "",0
			Property: "AccessMode", "enum", "",0
		}
		UseMipMap: 0
		Filename: "bishop-ao.jpg"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\chess\texture\bishop-ao.jpg"
	}
	Texture: "Texture::ao", "TextureVideoClip" {
		Type: "TextureVideoClip"
		Version: 202
		TextureName: "Texture::ao"
		Properties60:  {
			Property: "Translation", "Vector", "A+",0,0,0
			Property: "Rotation", "Vector", "A+",0,0,0
			Property: "Scaling", "Vector", "A+",1,1,1
			Property: "Texture alpha", "Number", "A+",0
			Property: "TextureTypeUse", "enum", "",0
			Property: "CurrentTextureBlendMode", "enum", "",1
			Property: "UseMaterial", "bool", "",0
			Property: "UseMipMap", "bool", "",0
			Property: "CurrentMappingType", "enum", "",0
			Property: "UVSwap", "bool", "",0
			Property: "WrapModeU", "enum", "",0
			Property: "WrapModeV", "enum", "",0
			Property: "TextureRotationPivot", "Vector3D", "",0,0,0
			Property: "TextureScalingPivot", "Vector3D", "",0,0,0
			Property: "VideoProperty", "object", ""
		}
		Media: "Video::ao"
		FileName: "bishop-ao.jpg"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\chess\texture\bishop-ao.jpg"
		ModelUVTranslation: 0,0
		ModelUVScaling: 1,1
		Texture_Alpha_Source: "None"
		Cropping: 0,0,0,0
	}
	Pose: "Pose::BIND_POSES", "BindPose" {
		Type: "BindPose"
		Version: 100
		Properties60:  {
		}
		NbPoseNodes: 1
		PoseNode:  {
			Node: "Model::BezierCircle_001"
			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::BezierCircle_001", "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::None__ao", "" {
	}
	Material: "Material::unnamed", "" {
	}
	Texture: "Texture::ao", "TextureVideoClip" {
	}
	Video: "Video::ao", "Clip" {
	}
}

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

Connections:  {
	Connect: "OO", "Model::BezierCircle_001", "Model::Scene"
	Connect: "OO", "Material::unnamed", "Model::BezierCircle_001"
	Connect: "OO", "Material::None__ao", "Model::BezierCircle_001"
	Connect: "OO", "Texture::ao", "Model::BezierCircle_001"
	Connect: "OO", "Video::ao", "Texture::ao"
}
;Takes and animation section
;----------------------------------------------------

Takes:  {
	Current: ""
}
;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
	}
}