Socialify

Folder ..

Viewing knight.fbx
2888 lines (2877 loc) • 353.6 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
; 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: 04
		Minute: 20
		Second: 36
		Millisecond: 0
	}
	Creator: "FBX SDK/FBX Plugins build 20070228"
	OtherFlags:  {
		FlagPLE: 0
	}
}
CreationTime: "2013-06-05 04:20:36:000"
Creator: "Blender version 2.64 (sub 0)"

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

Definitions:  {
	Version: 100
	Count: 8
	ObjectType: "Model" {
		Count: 1
	}
	ObjectType: "Geometry" {
		Count: 1
	}
	ObjectType: "Material" {
		Count: 2
	}
	ObjectType: "Texture" {
		Count: 2
	}
	ObjectType: "Video" {
		Count: 2
	}
	ObjectType: "Pose" {
		Count: 1
	}
	ObjectType: "GlobalSettings" {
		Count: 1
	}
}

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

Objects:  {
	Model: "Model::knight", "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+",-0.000004325711105,0.000000000000000,0.000000000000000
			Property: "Lcl Scaling", "Lcl Scaling", "A+",0.775777697563171,0.775777697563171,0.775777697563171
			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.450291,0.274552,0.500494,-0.749919,1.665631,0.132610,-1.070427,1.207376,0.089128,-0.759535,1.373757,0.170132,-1.219260,0.672240,0.121399,-1.175389,1.017457,0.105452,-0.993591,0.764682,0.190968
		,-0.430805,1.839453,0.310810,-1.179427,0.584395,0.094641,-0.593343,0.965961,0.089813,-0.123170,1.277222,0.276331,-0.177690,2.276694,0.309544,-0.753843,0.748677,0.070799,0.215781,1.272539,0.248318
		,0.221391,0.979817,0.302312,0.135764,1.545170,0.209068,-0.105222,2.302968,0.445018,-1.150182,0.603306,0.111251,-0.542222,1.545565,0.258552,-1.104386,0.810323,0.192711,-0.842347,0.644498,0.088153
		,-1.020293,0.647273,0.171024,-0.372278,1.071540,0.144797,-0.512463,1.795052,0.250019,-0.440081,1.958555,0.259454,-1.168267,0.677506,0.115289,-1.070421,0.574735,0.111594,0.170401,1.989141,0.184150
		,0.095516,0.511558,0.388865,-0.182892,2.175936,0.266963,-0.179894,2.114656,0.328673,-0.096383,2.197041,0.395819,0.072286,1.862444,0.235252,-0.233254,2.123851,0.237460,0.005298,1.492288,0.178013
		,-0.016910,1.817648,0.272213,-0.203272,2.277776,0.281117,-0.537850,0.959186,0.061520,-1.201998,0.890334,0.130775,-0.321982,1.060078,0.101583,-0.345011,1.800851,0.336399,-0.787433,0.660959,0.071641
		,-0.810953,0.613450,0.056453,-0.047230,2.083306,0.198962,-1.029475,0.913450,0.166578,-1.195214,0.862432,0.147467,-1.209164,0.759360,0.176461,-1.128337,0.802861,0.193887,-1.040894,0.662294,0.164097
		,-1.152022,0.819594,0.210584,-0.685852,0.909462,0.079982,-1.260799,0.670587,0.047646,-1.052753,0.822053,0.193902,-1.076783,0.587329,0.111013,-1.102763,0.723557,0.101229,-1.096860,0.757404,0.117498
		,-0.398688,1.471615,0.306626,-0.492937,1.711285,0.248133,0.090140,2.066304,0.181857,-0.423917,1.671314,0.268664,-0.590975,1.851575,0.187676,-0.663933,1.596965,0.193222,-0.986481,0.981373,0.145636
		,-0.830503,1.158424,0.140112,-0.427444,1.694206,0.291644,-0.348997,1.719938,0.314422,-0.561039,1.831113,0.224081,-0.284653,1.922754,0.358179,-0.368131,1.728708,0.316573,-0.144172,1.456893,0.378672
		,-1.108294,1.005200,0.137604,-0.431139,1.710252,0.304054,-0.444425,1.806242,0.337897,-0.500593,1.707550,0.229396,-0.440600,1.824006,0.323391,-0.275410,1.599605,0.383874,-0.058600,1.887336,0.267069
		,-0.224266,1.665034,0.398670,-0.323283,1.664362,0.358250,-0.614288,1.339574,0.203822,-0.954648,1.199589,0.123322,-0.900548,1.480399,0.105262,-0.835802,1.432243,0.147028,-0.968907,1.368226,0.093064
		,-0.489371,1.715187,0.257187,-0.072866,1.461514,0.324292,-0.060168,1.586907,0.346364,-1.146685,0.709042,0.103162,-1.133280,0.755588,0.119321,-1.169173,0.750274,0.149744,-1.061275,0.753733,0.149199
		,-1.077954,0.701020,0.129996,-0.968025,0.570702,0.081418,-1.137137,0.665009,0.112287,-0.136806,2.204496,0.406656,-0.193312,2.136355,0.268001,-0.212708,2.201922,0.246349,-0.156443,2.063556,0.273438
		,-0.138355,1.997066,0.272947,-0.270945,2.067425,0.244665,-0.087096,2.292820,0.442184,-0.103045,2.337120,0.444332,-0.175638,2.344206,0.350196,-0.112154,2.130541,0.310545,-0.069797,2.172427,0.269312
		,-0.159254,2.206808,0.200459,-0.068388,2.214770,0.307558,-0.082328,2.276601,0.357176,-0.141506,2.247908,0.243940,-0.139533,2.193184,0.438507,-1.062222,0.985602,0.144690,-0.481311,1.832401,0.281258
		,-0.708635,1.641567,0.169076,-1.008914,1.215546,0.110959,-0.083509,1.398178,0.308916,-0.457383,1.621268,0.287168,-0.860996,1.293128,0.137110,-0.368369,1.789541,0.333067,-0.345056,1.245304,0.254674
		,-0.555519,1.114969,0.155409,-0.750017,0.982448,0.120991,0.500462,0.749729,0.393132,-0.464781,1.680997,0.244931,-0.272459,1.307061,0.309833,-1.028584,0.572977,0.123850,-0.854091,0.681940,0.109145
		,-0.845563,0.736080,0.141308,-0.181955,2.346830,0.369568,-0.480613,1.020406,0.111585,0.117843,1.708364,0.227831,-0.209151,1.170575,0.222081,-0.159272,1.222046,0.254870,-0.207165,2.278960,0.301359
		,-0.959001,0.718061,0.182063,0.324354,1.606537,0.234501,-0.868555,0.600692,0.057566,-0.459396,1.290146,0.244569,-0.311806,1.410015,0.332101,-0.690322,1.135871,0.157585,-0.894395,0.983934,0.142374
		,-0.171335,1.596569,0.407292,0.096468,1.786666,0.235003,-0.864752,0.705045,0.132275,-0.102083,2.303757,0.472542,-0.520233,1.746928,0.228847,-0.817842,0.702413,0.107631,-0.170712,1.151999,0.150352
		,0.868726,0.007061,0.408430,-0.175553,2.133512,0.297244,0.835016,0.799644,0.270740,-0.090517,1.251921,0.152788,-1.192399,0.671299,0.128145,-0.891215,0.629322,0.106748,-0.883806,0.681183,0.122388
		,-0.941922,0.628535,0.131086,-0.917702,0.631058,0.109977,-0.105470,1.715333,0.352575,-0.218510,2.063329,0.284710,-0.088800,1.783704,0.301343,-0.017092,0.279321,0.443661,-0.134229,0.006005,0.490819
		,-0.136858,-0.000780,0.488936,-0.125722,2.331568,0.393174,-0.209157,2.191481,0.264250,-0.072102,2.150699,0.247213,-0.145778,2.236554,0.345162,-0.101830,2.162723,0.351089,-0.116722,2.165123,0.185478
		,-0.205597,2.240406,0.257969,-0.088349,2.241860,0.428329,0.029340,2.092208,0.174254,0.435120,1.330980,0.268163,0.498833,0.517513,0.442654,0.481019,1.018402,0.338841,0.382822,-0.000841,0.550349
		,-0.241469,2.093668,0.236518,0.009026,1.736440,0.262035,-0.273354,2.008569,0.322089,-0.072221,2.130664,0.231271,-1.090132,0.549498,0.062580,-0.379271,1.825757,0.331590,0.157314,2.092427,0.096638
		,0.873321,0.274463,0.362891,-0.196396,2.312785,0.312836,-0.107137,2.412008,0.435844,0.672123,1.403474,0.159779,-1.133087,1.111120,0.093563,-0.420142,1.013218,0.076594,0.006083,1.354644,0.101790
		,-0.797625,0.597533,0.031739,-0.617849,0.897540,0.029057,-0.764287,0.652962,0.038673,-1.121330,1.192120,0.061384,-0.503017,0.959129,0.029478,-1.198102,0.939493,0.119591,0.434626,1.818891,0.109902
		,-0.287830,1.063412,0.049788,-1.199060,0.577351,0.077254,-0.898290,1.175288,0.130634,-1.008628,1.296365,0.089759,-1.206827,0.635522,0.106314,-0.977881,0.590663,0.072635,-0.357983,2.005988,0.283719
		,-0.475909,1.979326,0.181133,-0.654707,1.780295,0.156274,-1.220864,0.713452,0.144176,0.175985,0.727258,0.347614,-0.782868,1.677570,0.089393,-0.153968,1.150651,0.075312,-0.880258,0.581684,0.029215
		,-1.227907,0.875642,0.098626,-1.243088,0.675896,0.098484,-0.049921,1.446628,0.167474,-0.036262,1.377092,0.090087,-0.090272,1.238076,0.070722,-0.397203,0.295290,0.259578,-0.531543,0.008037,0.228752
		,-1.184864,0.752334,0.171695,-1.041819,0.849833,0.192713,-1.172047,0.837323,0.205331,-1.233517,0.767382,0.159118,-1.002928,0.722599,0.188516,-1.143495,0.635141,0.121525,-1.185119,0.797904,0.205492
		,-1.123522,0.784843,0.160342,-0.946898,0.774986,0.178401,-1.057160,0.679439,0.154112,-1.032303,0.755733,0.180437,-1.108743,0.827225,0.201787,-1.111474,0.773246,0.134109,-0.736778,0.748008,0.035190
		,-0.833844,0.768583,0.137245,-0.787866,0.753498,0.105091,-1.242918,0.632650,0.037794,-0.756800,0.798520,0.090846,-0.819800,0.811641,0.128671,-1.253615,0.766898,0.084827,-1.130671,0.560852,0.067950
		,-1.073706,0.801015,0.181771,-1.125331,0.701467,0.100326,-1.095727,0.772955,0.133622,-1.124181,0.555404,0.029819,-1.006300,0.801385,0.191114,-1.203394,0.581703,0.028801,-1.095123,0.612346,0.124094
		,-1.120549,0.720405,0.098799,-1.074196,0.776197,0.149494,-1.115116,0.757935,0.115812,-1.099339,0.738670,0.107046,-0.480880,1.415962,0.261453,-0.480437,1.516816,0.288063,-0.332971,1.765305,0.329214
		,-0.382411,1.782974,0.333563,-0.506388,1.780399,0.263630,-0.379390,1.736928,0.318741,-0.608897,1.758355,0.195568,-0.322620,1.970783,0.358726,-0.178636,1.724295,0.385181,0.305102,1.977780,0.113352
		,0.207112,1.932298,0.190809,-0.027646,2.038025,0.212846,-0.225736,1.902162,0.317270,-0.115255,1.956546,0.269126,-0.620009,1.869617,0.135614,-0.529255,1.903114,0.223257,-0.918152,1.066988,0.134756
		,-0.727794,1.250885,0.161140,-0.652525,1.453796,0.213556,-0.807422,1.395864,0.153885,-0.610300,1.556679,0.218548,-1.163669,0.929285,0.145124,-0.422749,1.859738,0.316883,-0.415137,1.929102,0.312324
		,-1.140686,1.021905,0.124488,-0.383057,1.682726,0.293822,-0.511780,1.707131,0.222223,-0.328263,1.822226,0.344232,-0.518863,1.799385,0.247994,-1.204252,1.007105,0.078523,-0.338325,1.715390,0.323031
		,-0.424832,1.662766,0.267057,-1.037933,1.100995,0.124806,-0.220311,1.339084,0.334337,-0.212514,1.527445,0.398894,-0.063777,1.372805,0.152110,-0.074565,1.323758,0.068471,-0.178736,1.394434,0.360097
		,-0.098709,1.335993,0.292404,-0.075280,1.307808,0.144472,-0.330030,1.537404,0.346977,-0.370389,1.758470,0.322151,-0.499943,1.765216,0.276347,-0.355954,1.759223,0.323943,0.034349,1.928530,0.228173
		,-0.580447,1.678856,0.212509,-0.694404,1.357726,0.188606,-0.903994,1.388368,0.123186,-1.019381,1.361856,0.060643,-0.843052,1.551145,0.115876,-0.757919,1.501295,0.168928,-0.861302,1.466040,0.135506
		,-0.937923,1.484907,0.067351,-0.937476,1.427918,0.098435,-0.461608,1.708121,0.284604,-0.478140,1.794653,0.317013,-0.505224,1.733528,0.246279,-0.098088,1.591548,0.385405,-0.251317,1.967283,0.326817
		,-0.140774,1.765931,0.349037,0.537060,1.660443,0.127375,-0.112653,1.524976,0.385289,0.017689,1.637604,0.237805,-1.079751,0.754574,0.126105,-1.062661,0.727925,0.147051,-1.153686,0.770521,0.154226
		,-1.169886,0.728363,0.129457,-1.095778,0.714434,0.108113,-1.129131,0.770389,0.135351,-1.151577,0.752456,0.126822,-1.134788,0.736765,0.108089,-0.905911,0.665148,0.138588,-0.993269,0.574942,0.101880
		,-0.884686,0.671839,0.112479,-0.156971,2.338459,0.368319,-0.160772,2.155990,0.366703,-0.115716,2.255159,0.436703,-0.174193,2.312637,0.346234,-0.177719,2.233156,0.279442,-0.222014,2.165022,0.241265
		,-0.177157,2.162508,0.172574,-0.156939,2.025652,0.265505,-0.216453,1.974643,0.300736,-0.325466,2.080854,0.189823,-0.299458,2.048339,0.270516,-0.160795,2.047954,0.269497,-0.101819,2.353491,0.467270
		,-0.088581,2.340185,0.447691,-0.149166,2.373178,0.386341,-0.131056,2.302067,0.318277,-0.142855,2.359808,0.386161,-0.129718,2.102458,0.291510,-0.188263,2.099788,0.343995,-0.199573,2.126691,0.130140
		,-0.184540,2.142664,0.162930,-0.067745,2.194300,0.291462,-0.148765,2.227931,0.220167,-0.108191,2.198880,0.213164,-0.072482,2.238087,0.324110,-0.097610,2.272111,0.310405,-0.096364,2.227698,0.248422
		,-0.116651,0.046440,0.484204,0.384471,0.005779,0.552129,0.394330,0.045206,0.544842,-0.365840,1.364135,0.298636,-0.917489,1.320430,0.121023,-0.928999,0.569387,0.077776,-1.190280,0.710510,0.143737
		,-0.460889,1.696434,0.271388,-1.084335,1.118474,0.113115,-1.135583,0.900616,0.163423,-0.203233,2.314917,0.335499,-0.668230,1.049149,0.128146,-0.803720,0.919538,0.120942,-0.438826,1.180245,0.198662
		,-0.923240,0.675822,0.158109,-0.112295,2.249401,0.465543,-0.278427,1.121038,0.183584,-0.799200,1.059331,0.142269,-0.929629,0.918588,0.156735,-0.567050,1.211916,0.193582,0.241728,1.853452,0.200079
		,-0.131674,1.660528,0.391434,-0.135495,2.268129,0.271863,-0.642064,0.901145,0.055277,-0.119221,1.201303,0.160373,-0.239972,1.104695,0.128749,-0.137225,2.296720,0.377170,-0.775527,0.707075,0.072960
		,-0.977955,0.627196,0.155805,-0.918624,0.647674,0.101801,-0.057701,1.704510,0.292150,-0.112902,2.417617,0.443244,-0.215928,2.146428,0.262855,-0.169591,2.141262,0.396352,-0.205293,2.238101,0.274993
		,-0.155059,2.187968,0.319721,-0.103182,2.322684,0.368923,0.777993,1.079042,0.222399,0.866518,0.000539,0.407272,-0.102405,2.126388,0.143616,0.034780,2.124632,0.104345,0.864336,0.536767,0.315980
		,0.375585,1.899200,0.114505,-1.065905,1.283547,0.059677,-1.221688,0.930725,0.090597,-1.049400,0.533909,0.069747,-1.171999,1.096872,0.067191,-0.379510,1.016039,0.035245,-0.946171,0.538892,0.044071
		,-1.227076,0.636969,0.085396,-0.396293,2.029253,0.192994,-0.747645,0.719271,0.037170,-0.998897,0.565192,0.034463,-0.237342,0.512293,0.241493,-0.108997,1.194825,0.077460,-0.511991,1.739149,0.239638
		,-1.246256,0.718333,0.122100,-0.216480,1.106525,0.065635,-0.684317,1.796263,0.109766,-0.106409,0.704100,0.224362,-0.532429,0.000793,0.225953,0.028688,1.201424,0.143859,0.000853,0.938539,0.195497
		,-0.064300,1.358063,0.076262,-1.119102,0.849243,0.203423,-0.953708,0.834084,0.176068,-1.231776,0.826089,0.109686,-1.207803,0.811045,0.192531,-1.082875,0.768512,0.134232,-1.158262,0.785127,0.193554
		,-0.717359,0.783437,0.032939,-0.728739,0.790153,0.061761,-1.036444,0.724752,0.175485,-1.264279,0.714644,0.062826,-1.153804,0.564400,0.028680,-1.044181,0.782443,0.178832,-1.132115,0.715377,0.100730
		,-1.117124,0.739101,0.103295,-0.310997,1.778725,0.339904,-0.582590,1.443874,0.241357,-0.398615,1.813221,0.335573,-0.402177,1.720254,0.315407,-0.253642,1.857521,0.343848,0.206447,2.067654,0.094531
		,-0.191546,1.925727,0.299271,0.130129,2.034945,0.187057,-0.011108,1.993822,0.222859,-0.502125,1.879939,0.264895,-0.560390,1.922386,0.161287,-0.711367,1.468618,0.185550,-0.801217,1.271218,0.148029
		,-0.395347,1.704818,0.307164,-0.530199,1.751834,0.224200,-0.484414,1.841808,0.281324,-0.473433,1.674412,0.237914,-0.365479,1.844175,0.340176,-0.259248,1.465987,0.369456,-0.985374,1.077546,0.130281
		,-1.169350,0.961083,0.131442,-0.375686,1.675187,0.298686,-0.083543,1.280892,0.064568,-0.395860,1.606584,0.324753,-0.528057,1.631438,0.241302,-0.409086,1.801758,0.342310,-0.480976,1.815272,0.298688
		,-0.131059,1.850341,0.297483,-0.273064,1.727246,0.373339,-0.216850,1.789783,0.362888,0.258315,2.025464,0.106693,-0.799406,1.534559,0.150200,-0.879467,1.558723,0.075065,-0.900648,1.427604,0.120351
		,-0.977980,1.428494,0.063471,-0.388398,1.760842,0.213710,-0.175329,1.811936,0.340650,0.274469,1.770010,0.213140,-0.039878,1.582524,0.252263,-1.018526,0.536233,0.066606,-1.083859,0.733949,0.118614
		,-1.145495,0.764997,0.136639,-1.151883,0.732304,0.114057,-0.979953,0.533184,0.045445,-0.112937,2.375982,0.411776,-0.204420,2.084977,0.292008,-0.245807,2.022877,0.295797,-0.071301,2.113416,0.219253
		,-0.117527,2.148216,0.175154,-0.127353,2.329376,0.353099,-0.154051,2.376471,0.400327,-0.169782,2.184886,0.184650,-0.114757,2.182476,0.198015,-0.100801,2.214049,0.230206,-0.090026,2.310421,0.387908
		,-0.094852,2.243447,0.271198,-0.512870,0.051171,0.234431,0.869609,0.045838,0.401891,-0.194751,2.089285,0.325757,-0.186859,2.102974,0.318353,-0.229382,2.045284,0.290654,-1.103698,0.788168,0.162794
		,-1.091518,0.785297,0.161957,-0.414990,1.785577,0.326313,-0.481421,1.762545,0.298149,-0.475426,1.741803,0.294383,-0.431903,1.749080,0.323584,-0.454885,1.782358,0.321461,-0.440411,1.732281,0.312368
		,-0.458439,1.729267,0.300272,-0.481506,1.735913,0.267879,-0.419444,1.719037,0.299757,-0.445098,1.807797,0.315874,-0.406367,1.767748,0.325195,-0.404363,1.748812,0.319637,-0.437899,1.769823,0.327350
		,-0.449075,1.729166,0.306199,-0.468013,1.721720,0.271040,-0.428482,1.799770,0.323152,-0.378341,1.752521,0.305978,-0.477052,1.802454,0.294435,-0.487710,1.789867,0.283414,-0.392225,1.800558,0.314700
		,-0.472913,1.779344,0.309365,-0.492132,1.772679,0.274555,-0.408785,1.731623,0.310778,-0.451397,1.713694,0.278318,-0.467666,1.734222,0.296650,-0.479869,1.751891,0.295522,-0.464445,1.782344,0.315855
		,-0.478535,1.771824,0.303477,-0.473313,1.822608,0.273049,-0.439793,1.706637,0.251992,-0.431564,1.829589,0.301061,-0.462175,1.808932,0.305846,-0.479132,1.735668,0.238353,-0.493016,1.783705,0.247075
		,-0.398044,1.713618,0.280003,-0.380960,1.777262,0.313240,-0.433651,1.759619,0.326531,-0.384119,1.730063,0.294403,-0.434986,1.739686,0.318576,-0.461063,1.753233,0.318069,-0.417481,1.705153,0.265094
		,-0.434320,1.712558,0.288346,-0.461503,1.717124,0.242483,-0.490398,1.758964,0.239813,-0.490128,1.753743,0.268997,-0.487238,1.806163,0.258650,-0.453876,1.831073,0.287958,-0.445854,1.777289,0.325404
		,-0.409854,1.819102,0.310570,-0.148765,1.162632,-0.000050,0.450291,0.274552,-0.500494,-0.749919,1.665631,-0.132610,-0.487744,0.959142,0.000000,-1.070427,1.207376,-0.089128,-0.759535,1.373757,-0.170132
		,-1.219260,0.672240,-0.121399,-1.175389,1.017457,-0.105452,-0.993591,0.764682,-0.190968,-0.430805,1.839453,-0.310810,-1.179427,0.584395,-0.094641,-0.593343,0.965961,-0.089813,-0.123170,1.277222,-0.276331
		,-0.177690,2.276694,-0.309544,-0.753843,0.748677,-0.070799,-0.405088,0.521745,0.000036,0.215781,1.272539,-0.248318,0.221391,0.979817,-0.302312,0.135764,1.545170,-0.209068,-0.105222,2.302968,-0.445018
		,-1.150182,0.603306,-0.111251,-0.542222,1.545565,-0.258552,-1.104386,0.810323,-0.192711,-0.842347,0.644498,-0.088153,-0.651785,1.884870,0.000000,-1.020293,0.647273,-0.171024,-0.372278,1.071540,-0.144797
		,-0.736362,0.745771,0.000000,-0.512463,1.795052,-0.250019,-0.440081,1.958555,-0.259454,-1.168267,0.677506,-0.115289,-1.070421,0.574735,-0.111594,0.170401,1.989141,-0.184150,0.095516,0.511558,-0.388865
		,-0.632010,0.055040,-0.000000,-0.042447,1.160879,0.000000,-0.552221,0.309259,0.000005,-0.247259,0.702126,0.000052,-0.182892,2.175936,-0.266963,-0.179894,2.114656,-0.328673,-0.096383,2.197041,-0.395819
		,0.072286,1.862444,-0.235252,-0.233254,2.123851,-0.237460,0.005298,1.492288,-0.178013,-0.016910,1.817648,-0.272213,-0.203272,2.277776,-0.281117,-0.537850,0.959186,-0.061520,-1.201998,0.890334,-0.130775
		,-0.809102,1.688993,0.000000,-0.321982,1.060078,-0.101583,-1.147870,1.186654,-0.000000,-1.253134,0.873833,0.000000,-0.888004,0.572338,0.000000,-1.203986,0.585129,0.000000,-1.268545,0.665349,0.000000
		,-0.345011,1.800851,-0.336399,-0.787433,0.660959,-0.071641,-0.810953,0.613450,-0.056453,-0.047230,2.083306,-0.198962,-1.029475,0.913450,-0.166578,-1.195214,0.862432,-0.147467,-1.268629,0.764608,0.000000
		,-1.209164,0.759360,-0.176461,-1.128337,0.802861,-0.193887,-1.040894,0.662294,-0.164097,-1.152022,0.819594,-0.210584,-0.685852,0.909462,-0.079982,-1.260799,0.670587,-0.047646,-1.052753,0.822053,-0.193902
		,-1.076783,0.587329,-0.111013,-1.102763,0.723557,-0.101229,-1.096860,0.757404,-0.117498,-0.398688,1.471615,-0.306626,-0.492937,1.711285,-0.248133,0.090140,2.066304,-0.181857,-0.423917,1.671314,-0.268664
		,-0.590975,1.851575,-0.187676,-0.663933,1.596965,-0.193222,-0.986481,0.981373,-0.145636,-0.830503,1.158424,-0.140112,-0.427444,1.694206,-0.291644,-0.348997,1.719938,-0.314422,-0.561039,1.831113,-0.224081
		,-0.284653,1.922754,-0.358179,-0.368131,1.728708,-0.316573,-0.144172,1.456893,-0.378672,-1.108294,1.005200,-0.137604,-0.082222,1.277835,0.000000,-0.431139,1.710252,-0.304054,-0.444425,1.806242,-0.337897
		,-0.500593,1.707550,-0.229396,-0.440600,1.824006,-0.323391,-0.275410,1.599605,-0.383874,-0.058600,1.887336,-0.267069,-0.224266,1.665034,-0.398670,-0.323283,1.664362,-0.358250,-0.614288,1.339574,-0.203822
		,-0.954648,1.199589,-0.123322,-0.900548,1.480399,-0.105262,-0.835802,1.432243,-0.147028,-0.963384,1.491202,0.000000,-0.968907,1.368226,-0.093064,-0.489371,1.715187,-0.257187,-0.072866,1.461514,-0.324292
		,-0.060168,1.586907,-0.346364,-1.146685,0.709042,-0.103162,-1.133280,0.755588,-0.119321,-1.169173,0.750274,-0.149744,-1.061275,0.753733,-0.149199,-1.077954,0.701020,-0.129996,-0.968025,0.570702,-0.081418
		,-1.137137,0.665009,-0.112287,-0.136806,2.204496,-0.406656,-0.193312,2.136355,-0.268001,-0.212708,2.201922,-0.246349,-0.156443,2.063556,-0.273438,-0.138355,1.997066,-0.272947,-0.270945,2.067425,-0.244665
		,-0.087096,2.292820,-0.442184,-0.103045,2.337120,-0.444332,-0.175638,2.344206,-0.350196,-0.112154,2.130541,-0.310545,-0.228674,2.155856,0.000160,-0.069797,2.172427,-0.269312,-0.159254,2.206808,-0.200459
		,-0.068388,2.214770,-0.307558,-0.082328,2.276601,-0.357176,-0.141506,2.247908,-0.243940,-0.267971,1.073464,-0.000050,-1.223065,1.007929,0.000000,0.747869,1.431690,0.000000,-0.756595,0.645130,0.000000
		,-0.063097,1.306545,0.000000,0.178012,2.116275,0.000000,0.341042,2.001818,0.000000,-1.050293,1.358970,0.000000,-0.643950,0.009745,-0.000000,-1.098328,1.276882,0.000000,-0.139533,2.193184,-0.438507
		,1.038204,0.008513,-0.000000,-0.712445,1.809751,0.000000,-0.202187,1.120948,-0.000074,-1.062222,0.985602,-0.144690,-0.481311,1.832401,-0.281258,-1.191816,1.094824,0.000000,-0.708635,1.641567,-0.169076
		,-1.008914,1.215546,-0.110959,-0.083509,1.398178,-0.308916,-0.457383,1.621268,-0.287168,-0.860996,1.293128,-0.137110,-0.368369,1.789541,-0.333067,-0.345056,1.245304,-0.254674,-0.555519,1.114969,-0.155409
		,-0.750017,0.982448,-0.120991,0.500462,0.749729,-0.393132,-0.464781,1.680997,-0.244931,-0.272459,1.307061,-0.309833,-1.028584,0.572977,-0.123850,-0.854091,0.681940,-0.109145,-0.792004,0.593902,0.000000
		,-0.845563,0.736080,-0.141308,-0.181955,2.346830,-0.369568,-0.480613,1.020406,-0.111585,0.117843,1.708364,-0.227831,-0.209151,1.170575,-0.222081,-0.159272,1.222046,-0.254870,-0.066054,2.158979,0.000000
		,-0.207165,2.278960,-0.301359,-0.642857,0.002129,-0.000000,-0.959001,0.718061,-0.182063,0.051938,2.153165,0.000000,0.324354,1.606537,-0.234501,-0.868555,0.600692,-0.057566,0.599461,1.681995,0.000000
		,-0.459396,1.290146,-0.244569,-0.311806,1.410015,-0.332101,-0.690322,1.135871,-0.157585,-0.894395,0.983934,-0.142374,-0.171335,1.596569,-0.407292,0.096468,1.786666,-0.235003,-0.864752,0.705045,-0.132275
		,-0.102083,2.303757,-0.472542,-0.453417,2.058715,0.000000,-0.520233,1.746928,-0.228847,-0.817842,0.702413,-0.107631,-0.170712,1.151999,-0.150352,0.868726,0.007061,-0.408430,-0.175553,2.133512,-0.297244
		,0.835016,0.799644,-0.270740,-0.090517,1.251921,-0.152788,-1.192399,0.671299,-0.128145,-0.891215,0.629322,-0.106748,-0.883806,0.681183,-0.122388,-1.249563,0.628866,0.000000,-0.941922,0.628535,-0.131086
		,-0.917702,0.631058,-0.109977,-0.105470,1.715333,-0.352575,-0.218510,2.063329,-0.284710,-0.074949,1.297419,0.000000,-0.088800,1.783704,-0.301343,-0.017092,0.279321,-0.443661,-0.134229,0.006005,-0.490819
		,-0.136858,-0.000780,-0.488936,-0.125722,2.331568,-0.393174,-0.209157,2.191481,-0.264250,-0.072102,2.150699,-0.247213,-0.145778,2.236554,-0.345162,-0.101830,2.162723,-0.351089,-0.116722,2.165123,-0.185478
		,-0.205597,2.240406,-0.257969,0.411245,1.927055,0.000000,-0.088349,2.241860,-0.428329,0.029340,2.092208,-0.174254,0.435120,1.330980,-0.268163,0.498833,0.517513,-0.442654,0.481019,1.018402,-0.338841
		,0.382822,-0.000841,-0.550349,-0.241469,2.093668,-0.236518,0.009026,1.736440,-0.262035,-0.273354,2.008569,-0.322089,-0.072221,2.130664,-0.231271,-1.090132,0.549498,-0.062580,-0.379271,1.825757,-0.331590
		,0.157314,2.092427,-0.096638,0.873321,0.274463,-0.362891,-0.196396,2.312785,-0.312836,-0.107137,2.412008,-0.435844,0.672123,1.403474,-0.159779,-1.133087,1.111120,-0.093563,-1.057671,0.524566,0.000000
		,-0.420142,1.013218,-0.076594,0.006083,1.354644,-0.101790,-0.797625,0.597533,-0.031739,-0.617849,0.897540,-0.029057,-0.764287,0.652962,-0.038673,-1.121330,1.192120,-0.061384,-0.503017,0.959129,-0.029478
		,-1.198102,0.939493,-0.119591,0.434626,1.818891,-0.109902,-0.287830,1.063412,-0.049788,-1.199060,0.577351,-0.077254,-0.898290,1.175288,-0.130634,-1.008628,1.296365,-0.089759,-1.206827,0.635522,-0.106314
		,-0.977881,0.590663,-0.072635,-0.357983,2.005988,-0.283719,-0.475909,1.979326,-0.181133,-0.654707,1.780295,-0.156274,-1.220864,0.713452,-0.144176,-0.039468,1.284302,0.000000,0.175985,0.727258,-0.347614
		,-0.782868,1.677570,-0.089393,-0.153968,1.150651,-0.075312,-0.880258,0.581684,-0.029215,-1.227907,0.875642,-0.098626,-1.243088,0.675896,-0.098484,-0.049921,1.446628,-0.167474,-0.036262,1.377092,-0.090087
		,-0.090272,1.238076,-0.070722,-0.397203,0.295290,-0.259578,-0.531543,0.008037,-0.228752,-1.184864,0.752334,-0.171695,-1.041819,0.849833,-0.192713,-1.172047,0.837323,-0.205331,-1.233517,0.767382,-0.159118
		,-1.002928,0.722599,-0.188516,-1.143495,0.635141,-0.121525,-1.185119,0.797904,-0.205492,-1.123522,0.784843,-0.160342,-0.946898,0.774986,-0.178401,-1.057160,0.679439,-0.154112,-1.032303,0.755733,-0.180437
		,-1.108743,0.827225,-0.201787,-1.111474,0.773246,-0.134109,-0.736778,0.748008,-0.035190,-0.833844,0.768583,-0.137245,-0.787866,0.753498,-0.105091,-1.242918,0.632650,-0.037794,-0.756800,0.798520,-0.090846
		,-0.819800,0.811641,-0.128671,-1.253615,0.766898,-0.084827,-1.130671,0.560852,-0.067950,-1.073706,0.801015,-0.181771,-1.125331,0.701467,-0.100326,-1.095727,0.772955,-0.133622,-1.124181,0.555404,-0.029819
		,-1.006300,0.801385,-0.191114,-1.203394,0.581703,-0.028801,-1.095123,0.612346,-0.124094,-1.162916,0.566728,0.000000,-1.120549,0.720405,-0.098799,-1.074196,0.776197,-0.149494,-1.115116,0.757935,-0.115812
		,-1.099339,0.738670,-0.107046,-0.480880,1.415962,-0.261453,-0.480437,1.516816,-0.288063,-0.332971,1.765305,-0.329214,-0.382411,1.782974,-0.333563,-0.506388,1.780399,-0.263630,-0.379390,1.736928,-0.318741
		,-0.608897,1.758355,-0.195568,-0.322620,1.970783,-0.358726,-0.178636,1.724295,-0.385181,0.305102,1.977780,-0.113352,0.207112,1.932298,-0.190809,-0.027646,2.038025,-0.212846,-0.225736,1.902162,-0.317270
		,-0.115255,1.956546,-0.269126,0.232500,2.087862,0.000000,-0.620009,1.869617,-0.135614,-0.598965,1.940554,0.000000,-0.529255,1.903114,-0.223257,-0.918152,1.066988,-0.134756,-0.727794,1.250885,-0.161140
		,-0.652525,1.453796,-0.213556,-0.807422,1.395864,-0.153885,-0.610300,1.556679,-0.218548,-1.163669,0.929285,-0.145124,-0.422749,1.859738,-0.316883,-0.525833,2.003006,0.000000,-0.415137,1.929102,-0.312324
		,-1.140686,1.021905,-0.124488,-0.383057,1.682726,-0.293822,-0.511780,1.707131,-0.222223,-0.328263,1.822226,-0.344232,-0.518863,1.799385,-0.247994,-1.204252,1.007105,-0.078523,-0.338325,1.715390,-0.323031
		,-0.424832,1.662766,-0.267057,-1.037933,1.100995,-0.124806,-0.095717,1.227219,0.000000,-0.220311,1.339084,-0.334337,-0.212514,1.527445,-0.398894,-0.063777,1.372805,-0.152110,-0.074565,1.323758,-0.068471
		,-0.178736,1.394434,-0.360097,-0.098709,1.335993,-0.292404,-0.075280,1.307808,-0.144472,-0.089440,1.252775,0.000000,-0.330030,1.537404,-0.346977,-0.370389,1.758470,-0.322151,-0.499943,1.765216,-0.276347
		,-0.355954,1.759223,-0.323943,0.034349,1.928530,-0.228173,0.289737,2.047970,0.000000,-0.580447,1.678856,-0.212509,-0.694404,1.357726,-0.188606,-0.903994,1.388368,-0.123186,-1.019381,1.361856,-0.060643
		,-0.843052,1.551145,-0.115876,-0.757919,1.501295,-0.168928,-0.904999,1.567757,0.000000,-0.861302,1.466040,-0.135506,-0.937923,1.484907,-0.067351,-0.937476,1.427918,-0.098435,-0.461608,1.708121,-0.284604
		,-0.478140,1.794653,-0.317013,-0.505224,1.733528,-0.246279,-0.098088,1.591548,-0.385405,-0.251317,1.967283,-0.326817,-0.140774,1.765931,-0.349037,0.537060,1.660443,-0.127375,-0.112653,1.524976,-0.385289
		,0.017689,1.637604,-0.237805,-1.079751,0.754574,-0.126105,-1.062661,0.727925,-0.147051,-1.153686,0.770521,-0.154226,-1.169886,0.728363,-0.129457,-1.095778,0.714434,-0.108113,-1.129131,0.770389,-0.135351
		,-1.151577,0.752456,-0.126822,-1.134788,0.736765,-0.108089,-0.990757,0.524065,0.000000,-0.905911,0.665148,-0.138588,-0.993269,0.574942,-0.101880,-0.884686,0.671839,-0.112479,-1.035190,0.525216,0.000000
		,-0.156971,2.338459,-0.368319,-0.160772,2.155990,-0.366703,-0.115716,2.255159,-0.436703,-0.174193,2.312637,-0.346234,-0.177719,2.233156,-0.279442,-0.222014,2.165022,-0.241265,-0.177157,2.162508,-0.172574
		,-0.156939,2.025652,-0.265505,-0.216453,1.974643,-0.300736,-0.325466,2.080854,-0.189823,-0.362532,2.117907,0.000046,-0.299458,2.048339,-0.270516,-0.160795,2.047954,-0.269497,-0.101819,2.353491,-0.467270
		,-0.088581,2.340185,-0.447691,-0.149166,2.373178,-0.386341,-0.131056,2.302067,-0.318277,-0.142855,2.359808,-0.386161,-0.129718,2.102458,-0.291510,-0.188263,2.099788,-0.343995,-0.199573,2.126691,-0.130140
		,-0.184540,2.142664,-0.162930,-0.067745,2.194300,-0.291462,-0.148765,2.227931,-0.220167,-0.108191,2.198880,-0.213164,-0.072482,2.238087,-0.324110,-0.097610,2.272111,-0.310405,-0.096364,2.227698,-0.248422
		,-0.111883,1.198170,-0.000012,-1.273770,0.710015,0.000000,-0.358897,1.019691,-0.000012,1.036788,0.282741,-0.000000,0.967804,0.835676,-0.000000,1.015538,0.552985,-0.000000,-1.096100,0.537657,0.000000
		,-1.007128,0.556693,0.000000,-1.259593,0.821692,0.000000,-0.715922,0.779954,0.000000,0.476158,1.844396,0.000000,1.038398,0.048310,-0.000000,-0.116651,0.046440,-0.484204,0.384471,0.005779,-0.552129
		,0.394330,0.045206,-0.544842,-0.365840,1.364135,-0.298636,-0.917489,1.320430,-0.121023,-0.928999,0.569387,-0.077776,-1.190280,0.710510,-0.143737,-0.460889,1.696434,-0.271388,-1.084335,1.118474,-0.113115
		,-1.135583,0.900616,-0.163423,-0.203233,2.314917,-0.335499,-0.668230,1.049149,-0.128146,-0.803720,0.919538,-0.120942,-0.438826,1.180245,-0.198662,-0.923240,0.675822,-0.158109,-0.112295,2.249401,-0.465543
		,-0.278427,1.121038,-0.183584,-0.799200,1.059331,-0.142269,-0.929629,0.918588,-0.156735,-0.567050,1.211916,-0.193582,0.241728,1.853452,-0.200079,-0.131674,1.660528,-0.391434,-0.135495,2.268129,-0.271863
		,-0.642064,0.901145,-0.055277,-0.119221,1.201303,-0.160373,-0.239972,1.104695,-0.128749,-0.137225,2.296720,-0.377170,-0.775527,0.707075,-0.072960,-0.977955,0.627196,-0.155805,-0.918624,0.647674,-0.101801
		,-0.057701,1.704510,-0.292150,-0.112902,2.417617,-0.443244,-0.215928,2.146428,-0.262855,-0.169591,2.141262,-0.396352,-0.205293,2.238101,-0.274993,-0.155059,2.187968,-0.319721,-0.103182,2.322684,-0.368923
		,0.777993,1.079042,-0.222399,0.866518,0.000539,-0.407272,-0.102405,2.126388,-0.143616,0.034780,2.124632,-0.104345,0.864336,0.536767,-0.315980,0.375585,1.899200,-0.114505,-1.065905,1.283547,-0.059677
		,-1.221688,0.930725,-0.090597,-1.049400,0.533909,-0.069747,-1.171999,1.096872,-0.067191,-0.379510,1.016039,-0.035245,-0.946171,0.538892,-0.044071,-1.227076,0.636969,-0.085396,-0.396293,2.029253,-0.192994
		,-0.747645,0.719271,-0.037170,-0.998897,0.565192,-0.034463,-0.237342,0.512293,-0.241493,-0.108997,1.194825,-0.077460,-0.511991,1.739149,-0.239638,-1.246256,0.718333,-0.122100,-0.216480,1.106525,-0.065635
		,-0.684317,1.796263,-0.109766,-0.106409,0.704100,-0.224362,-0.532429,0.000793,-0.225953,0.028688,1.201424,-0.143859,0.000853,0.938539,-0.195497,-0.064300,1.358063,-0.076262,-1.119102,0.849243,-0.203423
		,-0.953708,0.834084,-0.176068,-1.231776,0.826089,-0.109686,-1.207803,0.811045,-0.192531,-1.082875,0.768512,-0.134232,-1.158262,0.785127,-0.193554,-0.717359,0.783437,-0.032939,-0.728739,0.790153,-0.061761
		,-1.036444,0.724752,-0.175485,-1.264279,0.714644,-0.062826,-1.153804,0.564400,-0.028680,-1.044181,0.782443,-0.178832,-1.132115,0.715377,-0.100730,-1.117124,0.739101,-0.103295,-0.310997,1.778725,-0.339904
		,-0.582590,1.443874,-0.241357,-0.398615,1.813221,-0.335573,-0.402177,1.720254,-0.315407,-0.253642,1.857521,-0.343848,0.206447,2.067654,-0.094531,-0.191546,1.925727,-0.299271,0.130129,2.034945,-0.187057
		,-0.011108,1.993822,-0.222859,-0.502125,1.879939,-0.264895,-0.560390,1.922386,-0.161287,-0.711367,1.468618,-0.185550,-0.801217,1.271218,-0.148029,-0.395347,1.704818,-0.307164,-0.530199,1.751834,-0.224200
		,-0.484414,1.841808,-0.281324,-0.473433,1.674412,-0.237914,-0.365479,1.844175,-0.340176,-0.259248,1.465987,-0.369456,-0.985374,1.077546,-0.130281,-1.169350,0.961083,-0.131442,-0.375686,1.675187,-0.298686
		,-0.083543,1.280892,-0.064568,-0.395860,1.606584,-0.324753,-0.528057,1.631438,-0.241302,-0.409086,1.801758,-0.342310,-0.480976,1.815272,-0.298688,-0.131059,1.850341,-0.297483,-0.273064,1.727246,-0.373339
		,-0.216850,1.789783,-0.362888,0.258315,2.025464,-0.106693,-0.799406,1.534559,-0.150200,-0.879467,1.558723,-0.075065,-0.900648,1.427604,-0.120351,-0.977980,1.428494,-0.063471,-0.388398,1.760842,-0.213710
		,-0.175329,1.811936,-0.340650,0.274469,1.770010,-0.213140,-0.039878,1.582524,-0.252263,-1.018526,0.536233,-0.066606,-1.083859,0.733949,-0.118614,-1.145495,0.764997,-0.136639,-1.151883,0.732304,-0.114057
		,-0.979953,0.533184,-0.045445,-0.112937,2.375982,-0.411776,-0.204420,2.084977,-0.292008,-0.245807,2.022877,-0.295797,-0.071301,2.113416,-0.219253,-0.117527,2.148216,-0.175154,-0.127353,2.329376,-0.353099
		,-0.154051,2.376471,-0.400327,-0.169782,2.184886,-0.184650,-0.114757,2.182476,-0.198015,-0.100801,2.214049,-0.230206,-0.090026,2.310421,-0.387908,-0.094852,2.243447,-0.271198,1.035152,0.001813,0.000000
		,0.885290,1.119769,0.000000,-0.956874,0.527444,0.000000,-0.609634,0.895612,0.000000,-1.243032,0.932191,0.000000,-0.110993,0.922075,0.000008,-0.746372,0.717287,0.000000,-1.128896,0.552186,0.000000
		,-1.004925,1.431037,0.000000,-0.512870,0.051171,-0.234431,0.869609,0.045838,-0.401891,0.452364,0.000937,-0.000000,-0.222471,0.001078,0.000192,-0.194751,2.089285,-0.325757,-0.186859,2.102974,-0.318353
		,-0.229382,2.045284,-0.290654,-1.103698,0.788168,-0.162794,-1.091518,0.785297,-0.161957,-0.414990,1.785577,-0.326313,-0.481421,1.762545,-0.298149,-0.475426,1.741803,-0.294383,-0.431903,1.749080,-0.323584
		,-0.454885,1.782358,-0.321461,-0.440411,1.732281,-0.312368,-0.458439,1.729267,-0.300272,-0.481506,1.735913,-0.267879,-0.419444,1.719037,-0.299757,-0.445098,1.807797,-0.315874,-0.406367,1.767748,-0.325195
		,-0.404363,1.748812,-0.319637,-0.437899,1.769823,-0.327350,-0.449075,1.729166,-0.306199,-0.468013,1.721720,-0.271040,-0.428482,1.799770,-0.323152,-0.378341,1.752521,-0.305978,-0.477052,1.802454,-0.294435
		,-0.487710,1.789867,-0.283414,-0.392225,1.800558,-0.314700,-0.472913,1.779344,-0.309365,-0.492132,1.772679,-0.274555,-0.408785,1.731623,-0.310778,-0.451397,1.713694,-0.278318,-0.467666,1.734222,-0.296650
		,-0.479869,1.751891,-0.295522,-0.464445,1.782344,-0.315855,-0.478535,1.771824,-0.303477,-0.473313,1.822608,-0.273049,-0.439793,1.706637,-0.251992,-0.431564,1.829589,-0.301061,-0.462175,1.808932,-0.305846
		,-0.479132,1.735668,-0.238353,-0.493016,1.783705,-0.247075,-0.398044,1.713618,-0.280003,-0.380960,1.777262,-0.313240,-0.433651,1.759619,-0.326531,-0.384119,1.730063,-0.294403,-0.434986,1.739686,-0.318576
		,-0.461063,1.753233,-0.318069,-0.417481,1.705153,-0.265094,-0.434320,1.712558,-0.288346,-0.461503,1.717124,-0.242483,-0.490398,1.758964,-0.239813,-0.490128,1.753743,-0.268997,-0.487238,1.806163,-0.258650
		,-0.453876,1.831073,-0.287958,-0.445854,1.777289,-0.325404,-0.409854,1.819102,-0.310570
		PolygonVertexIndex: 540,208,407,-682,555,403,409,-578,0,182,391,-173,577,409,412,-1097,1,207,460,-299,1,298,459,-113,1,204,408,-208,2,192,396,-187,2,186,358,-114,2,113,354,-200,2,199,393,-193,3,116,440,-296,3,295,429,-268
		,3,267,439,-269,3,268,354,-117,4,211,399,-201,155,152,125,-323,4,151,356,-206,4,205,406,-212,5,278,394,-195,5,194,448,-274,5,273,358,-187,5,186,396,-279,6,225,415,-243,6,242,425,-228,6,227,422,-222
		,7,180,445,-272,7,271,443,-112,26,53,237,-180,9,128,361,-121,10,131,374,-151,950,949,149,-392,18,267,429,-251,18,250,451,-116,18,115,452,-270,18,269,439,-268,314,469,317,-225,240,229,247,-56,564,680,408,-264
		,564,263,438,-851,23,277,442,-145,23,144,405,-254,23,253,454,-112,23,111,443,-278,24,203,438,-265,24,264,437,-273,24,202,400,-204,154,320,364,-379,87,239,245,-427,135,20,152,-356,13,15,188,-412,14,13,411,-413
		,97,178,164,-341,31,109,383,-167,31,169,365,-110,32,141,370,-260,33,157,382,-329,34,212,413,-214,35,158,380,-177,36,168,384,-133,36,132,360,-184,37,193,397,-188,38,194,394,-211,38,270,448,-195,588,891,460,-208
		,588,207,408,-681,39,187,397,-197,590,684,396,-193,590,192,393,-678,593,829,424,-244,40,276,445,-181,40,180,430,-118,40,251,428,-277,46,220,406,-206,46,205,356,-218,46,217,419,-224,46,223,417,-221,49,223,419,-48
		,425,238,490,-247,47,224,489,-20,419,314,224,-48,48,221,422,-227,52,228,19,-239,49,47,19,-229,49,228,414,-220,49,219,417,-224,51,233,399,-212,52,242,415,-219,52,218,414,-229,19,489,490,-239,52,238,425,-243
		,25,93,239,-88,54,316,468,-249,54,248,427,-246,55,312,418,-241,246,490,240,-419,55,247,427,-249,55,248,468,-313,56,137,446,-290,56,289,451,-251,56,250,429,-250,56,249,353,-138,464,455,434,-262,457,432,428,-457
		,58,181,390,-171,59,280,449,-275,59,122,444,-281,60,263,408,-205,60,264,438,-264,61,299,439,-270,61,269,452,-295,61,112,459,-300,62,139,367,-266,62,265,447,-111,63,198,447,-266,63,265,367,-139,63,138,369,-267
		,63,266,440,-199,65,279,428,-252,65,274,449,-280,66,255,442,-278,592,699,189,-210,67,256,445,-277,78,456,428,-280,69,283,446,-287,70,110,447,-282,70,281,358,-274,70,273,448,-271,70,270,359,-111,679,956,485,-148
		,627,738,413,-286,627,285,450,-879,59,64,357,-123,68,254,431,-442,64,71,303,-358,117,430,453,-253,117,252,290,-293,253,405,305,-292,57,357,303,-85,74,72,453,-431,73,275,444,-123,73,144,442,-276,7,74,430,-181
		,64,441,431,-72,75,77,456,-79,75,289,446,-284,77,140,371,-258,79,295,440,-267,79,266,369,-137,79,136,353,-250,79,249,429,-296,80,113,358,-282,80,281,447,-199,80,198,440,-117,80,116,354,-114,81,301,462,-303
		,81,302,461,-301,81,300,459,-299,81,298,460,-302,82,296,354,-269,82,268,439,-300,82,299,459,-301,82,300,461,-297,640,301,460,-892,83,297,393,-200,83,199,354,-297,83,296,461,-303,83,302,462,-298,65,68,441,-275
		,253,291,304,-455,73,122,357,-58,57,84,305,-406,73,57,405,-145,7,111,454,-75,59,274,441,-65,65,251,292,-69,74,454,304,-73,40,117,292,-252,86,156,371,-307,25,87,470,-316,243,197,399,-234,243,424,237,-198
		,224,317,229,-490,88,317,469,-319,88,318,470,-320,88,319,427,-248,89,314,419,-218,89,217,356,-316,89,315,470,-319,89,318,469,-315,90,227,425,-247,90,246,418,-313,90,312,468,-314,90,313,422,-228,53,48,226,-245
		,91,226,422,-314,91,313,468,-317,17,244,226,-223,114,85,310,-70,126,133,364,-143,316,54,245,-240,91,316,239,-94,94,324,383,-110,94,109,365,-326,465,195,392,-371,96,328,382,-164,96,163,384,-169,97,334,475,-179
		,98,330,474,-332,98,331,434,-263,160,161,174,-352,428,432,67,-277,952,402,467,-917,100,143,365,-170,102,183,360,-128,102,127,478,-338,102,337,477,-339,102,338,372,-184,103,166,383,-342,104,164,480,-347,104,346,481,-345
		,105,345,481,-347,106,344,481,-350,108,349,481,-346,1094,190,420,-955,675,677,393,-298,870,214,404,-946,859,203,400,-723,118,136,369,-364,670,713,309,-186,951,769,395,-180,640,1099,462,-302,594,51,423,-947,98,262,436,-261
		,114,69,286,-288,86,466,380,-157,912,471,402,-953,679,147,388,-1092,674,258,392,-751,592,209,398,-1094,668,681,407,-197,567,230,401,-1098,601,236,416,-954,713,955,195,-310,955,750,392,-196,870,878,450,-215,310,306,371,-141
		,173,387,185,-172,591,210,394,-1096,232,231,126,-146,540,945,404,-209,6,221,133,-226,48,21,133,-222,949,1092,387,-150,669,1095,394,-279,232,12,421,-235,145,126,142,-126,201,321,467,-403,231,225,133,-127,20,145,125,-153
		,674,884,458,-259,912,1093,398,-472,669,278,396,-685,130,131,123,-119,671,1097,401,-192,232,234,235,-232,119,363,369,-139,350,159,215,-485,948,950,391,-183,33,328,479,-330,76,293,436,-263,576,215,403,-556,543,193,190,-1095
		,591,953,416,-211,676,708,410,-217,601,946,423,-237,675,297,462,-1100,68,292,290,-255,672,789,188,-214,119,138,367,-362,120,361,367,-140,231,235,415,-226,543,947,397,-194,120,139,368,-363,308,158,455,-465,182,0,352,-486
		,130,366,375,-147,69,310,140,-284,10,282,123,-132,153,142,364,-321,118,123,353,-137,10,287,286,-283,130,146,374,-132,85,86,306,-311,307,261,434,-332,28,206,409,-404,829,1098,241,-425,282,137,353,-124,76,262,434,-456
		,35,76,455,-159,115,280,444,-453,676,216,484,-575,884,848,433,-459,24,272,256,-203,60,66,437,-265,75,78,451,-290,272,271,445,-257,294,452,444,-276,78,279,449,-452,272,437,443,-272,61,294,255,-113,115,451,449,-281
		,66,277,443,-438,294,275,442,-256,60,204,255,-67,1,112,255,-205,457,456,77,-258,282,286,446,-138,75,283,140,-78,311,176,380,-467,307,331,474,-178,307,67,432,-262,307,177,256,-68,333,202,256,-178,308,156,380,-159
		,92,201,402,-472,457,464,261,-433,130,118,363,-367,927,722,400,-333,22,119,361,-129,308,257,371,-157,22,366,363,-120,308,464,457,-258,333,332,400,-203,62,44,368,-140,236,423,406,-221,44,218,415,-369,45,219,414,-360
		,38,210,416,-46,236,220,417,-417,51,211,406,-424,38,45,359,-271,9,120,362,-51,362,368,415,-236,45,416,417,-220,50,234,421,-374,594,733,233,-52,668,196,397,-948,50,362,235,-235,44,359,414,-219,567,954,420,-231
		,62,110,359,-45,859,850,438,-204,322,125,142,-154,916,467,395,-770,672,213,413,-739,673,181,433,-849,53,26,21,-49,135,42,41,-21,673,710,390,-182,222,226,91,-94,26,124,378,-22,222,93,25,-152,39,196,407,-376
		,22,128,187,-40,135,355,398,-210,92,155,379,-202,92,471,398,-356,12,377,401,-231,146,375,407,-209,956,948,182,-486,150,214,450,-289,10,150,288,-288,201,379,154,-322,146,208,404,-375,574,484,215,-577,321,154,378,-125
		,284,285,413,-213,135,209,189,-43,114,284,212,-86,232,145,377,-13,85,212,466,-87,9,37,187,-129,159,28,403,-216,34,311,466,-213,9,50,373,-38,1092,670,185,-388,20,41,377,-146,37,373,190,-194,150,374,404,-215
		,373,421,420,-191,114,287,288,-285,22,39,375,-367,41,191,401,-378,284,288,450,-286,321,124,395,-468,12,230,420,-422,179,395,124,-27,8,53,244,-18,424,241,179,-238,1098,951,179,-242,8,17,222,-201,1091,388,174,-1103
		,35,32,293,-77,129,465,370,-142,160,216,410,-162,43,170,390,-390,706,389,390,-711,575,411,188,-790,34,213,188,-16,311,129,141,-177,35,176,141,-33,34,15,129,-312,206,14,412,-410,1096,412,411,-576,15,134,465,-130
		,160,350,484,-217,410,708,1103,-162,71,463,-304,84,463,-306,84,303,-464,254,290,-464,72,304,-464,291,305,-464,254,463,-432,291,463,-305,72,463,-454,252,463,-291,71,431,-464
		,252,453,-464,342,343,476,-390,333,177,474,-100,33,175,488,-158,178,475,476,-168,103,341,486,-341,488,474,330,-335,99,474,488,-176,97,340,486,-158,334,97,157,-489,103,340,164,-105,338,477,386,-349,106,349,483,-348
		,14,173,171,-14,259,258,458,-28,96,105,479,-329,43,389,476,-476,100,169,347,-108,121,149,387,-174,260,436,435,-59,99,175,343,-343,27,458,433,-436,107,348,386,-483,337,478,381,-185,351,147,485,-353,107,347,483,-349
		,94,325,376,-166,927,332,342,-663,351,174,388,-148,160,351,352,-351,206,121,173,-15,330,43,475,-335,98,260,43,-331,0,159,350,-353,108,372,483,-350,1103,1102,174,-162,172,391,149,-122,28,172,121,-207,13,171,134,-16
		,32,259,27,-294,101,335,381,-473,31,166,344,-107,662,342,389,-707,103,104,344,-167,58,435,433,-182,336,482,386,-185,96,168,345,-106,11,327,385,-166,260,58,170,-44,329,479,480,-168,100,107,482,-337,171,185,309,-135
		,178,167,480,-165,259,370,392,-259,338,348,483,-373,337,184,386,-478,100,336,335,-144,329,167,476,-344,31,106,347,-170,333,99,342,-333,336,184,381,-336,293,27,435,-437,134,309,195,-466,159,0,172,-29,105,346,480,-480
		,33,329,343,-176,36,183,372,-109,36,108,345,-169,30,324,385,-149,473,487,30,-149,11,326,360,-133,29,148,385,-328,157,486,487,-474,323,326,376,-163,30,487,486,-342,323,339,478,-128,95,382,157,-474,16,325,365,-144
		,16,162,376,-326,323,127,360,-327,11,165,376,-327,339,472,381,-479,16,101,472,-163,148,29,95,-474,11,132,384,-328,94,165,385,-325,30,341,383,-325,16,143,335,-102,323,162,472,-340,29,163,382,-96,29,327,384,-164
		,1102,1103,-709,676,1091,1102,-709,489,229,240,-491,247,229,317,-89,8,200,399,-198,319,426,245,-428,87,426,319,-471,25,315,356,-152,593,243,233,-734,4,200,222,-152,155,322,153,-380,92,355,152,-156,8,197,237,-54
		,699,671,191,-190,21,378,364,-134,42,189,191,-42,379,153,320,-155,491,501,526,-511,491,510,539,-507,498,523,533,-506,499,525,528,-514,500,506,539,-522,500,521,537,-523,503,527,501,-492,499,532,531,-526,498,535,534,-524
		,494,529,513,-503,508,522,537,-520,502,507,526,-502,514,520,531,-533,495,538,506,-501,502,513,528,-508,512,524,534,-536,503,491,506,-539,512,509,536,-525,514,505,533,-521,494,502,501,-528,508,519,536,-510,497,514,532,-505
		,492,516,530,-519,494,527,530,-530,496,529,530,-505,497,515,505,-515,492,518,509,-513,493,498,505,-516,493,516,535,-499,495,500,522,-518,503,538,530,-528,511,518,530,-518,496,504,532,-500,492,512,535,-517,495,517,530,-539
		,511,508,509,-519,496,499,513,-530,493,515,530,-517,497,504,530,-516,511,517,522,-509,540,681,1014,-793,555,577,1016,-1011,541,754,998,-765,577,1096,1019,-1017,542,889,1067,-792,542,685,1066,-890,542,791,1015,-788,544,768,1003,-776
		,544,686,965,-769,544,782,961,-687,544,775,1000,-783,545,886,1047,-690,545,854,1036,-887,545,855,1046,-855,545,689,961,-856,546,783,1006,-796,735,915,698,-732,546,788,963,-731,546,795,1013,-789,547,777,1001,-867,547,861,1055,-778
		,547,768,965,-862,547,866,1003,-769,548,826,1022,-810,548,811,1032,-827,548,805,1029,-812,549,858,1052,-763,549,683,1050,-859,571,761,821,-610,551,693,968,-703,552,729,981,-706,950,998,728,-950,561,835,1036,-855,561,688,1058,-836
		,561,856,1059,-689,561,854,1046,-857,906,808,909,-1077,824,611,832,-814,564,849,1015,-681,564,850,1045,-850,568,723,1049,-866,568,838,1012,-724,568,683,1061,-839,568,865,1050,-684,569,851,1045,-787,569,860,1044,-852,569,786,1007,-786
		,734,985,971,-914,645,1033,830,-824,712,962,731,-564,556,1018,771,-559,557,1019,1018,-557,655,935,745,-761,580,747,990,-679,580,678,972,-752,581,844,977,-720,582,922,989,-738,583,797,1020,-797,584,758,987,-740,585,707,991,-750
		,585,765,967,-708,586,770,1004,-777,587,794,1001,-778,587,777,1055,-858,588,791,1067,-892,588,680,1015,-792,589,779,1004,-771,590,775,1003,-685,590,677,1000,-776,593,827,1031,-830,595,762,1052,-865,595,690,1037,-763,595,864,1035,-837
		,602,788,1013,-805,602,801,963,-789,602,807,1026,-802,602,804,1024,-808,605,603,1026,-808,1032,831,1108,-823,603,562,1107,-809,1026,603,808,-907,604,810,1029,-806,608,822,562,-813,605,812,562,-604,605,803,1021,-813,605,807,1024,-804
		,607,795,1006,-818,608,802,1022,-827,608,812,1021,-803,562,822,1108,-1108,608,826,1032,-823,570,645,823,-652,610,833,1075,-909,610,830,1034,-834,611,824,1025,-905,831,1025,824,-1109,611,833,1034,-833,611,904,1075,-834,612,879,1053,-716
		,612,835,1058,-880,612,834,1036,-836,612,715,960,-835,1071,846,1041,-1063,1064,1063,1035,-1040,614,752,997,-764,615,862,1056,-869,615,868,1051,-696,616,787,1015,-850,616,849,1045,-852,617,856,1046,-891,617,885,1059,-857,617,890,1066,-686
		,618,852,974,-718,618,682,1054,-853,619,852,1054,-782,619,716,974,-853,619,853,976,-717,619,781,1047,-854,621,836,1035,-868,621,867,1056,-863,622,865,1049,-841,592,793,772,-700,623,864,1052,-842,635,867,1035,-1064,625,875,1053,-873
		,626,869,1054,-683,626,861,965,-870,626,857,1055,-862,626,682,966,-858,679,726,1101,-957,627,874,1020,-739,627,878,1057,-875,615,695,964,-621,624,1048,1038,-840,620,964,895,-629,690,837,1060,-1038,690,882,880,-838,838,881,897,-1013
		,613,642,895,-965,631,1037,1060,-630,630,695,1051,-864,630,863,1049,-724,549,762,1037,-632,620,628,1038,-1049,632,635,1063,-635,632,872,1053,-880,634,842,978,-719,636,853,1047,-887,636,714,976,-854,636,834,960,-715,636,886,1036,-835
		,637,869,965,-687,637,781,1054,-870,637,689,1047,-782,637,686,961,-690,638,894,1069,-894,638,892,1068,-895,638,889,1066,-893,638,893,1067,-890,639,855,961,-888,639,890,1046,-856,639,892,1066,-891,639,887,1068,-893,640,891,1067,-894
		,641,782,1000,-889,641,887,961,-783,641,894,1068,-888,641,888,1069,-895,621,862,1048,-625,838,1061,896,-882,630,613,964,-696,613,1012,897,-643,630,723,1012,-614,549,631,1061,-684,615,620,1048,-863,621,624,882,-837,631,629,896,-1062
		,595,836,882,-691,644,898,978,-737,570,907,1077,-646,827,817,1006,-781,827,780,821,-1032,808,1107,813,-910,646,910,1076,-910,646,911,1077,-911,646,832,1034,-912,647,801,1026,-907,647,907,963,-802,647,910,1077,-908,647,906,1076,-911
		,648,831,1032,-812,648,904,1025,-832,648,905,1075,-905,648,811,1029,-906,609,828,810,-605,649,905,1029,-811,649,908,1075,-906,560,806,810,-829,687,625,902,-644,700,720,971,-710,908,823,830,-611,649,651,823,-909,652,678,990,-919
		,652,919,972,-679,1072,977,999,-779,654,744,989,-923,654,749,991,-745,655,760,1082,-930,656,925,1081,-925,656,847,1041,-926,741,958,756,-743,1035,864,623,-1040,952,916,1074,-1010,658,751,972,-722,660,701,967,-766,660,932,1085,-702
		,660,933,1084,-933,660,765,979,-934,661,936,990,-748,663,941,1087,-746,663,939,1088,-942,664,941,1088,-941,665,944,1088,-940,667,940,1088,-945,1094,954,1027,-774,675,888,1000,-678,870,945,1011,-799,859,722,1007,-787,691,970,976,-715
		,670,767,901,-714,951,761,1002,-770,640,893,1069,-1100,594,946,1030,-608,656,845,1043,-848,687,876,875,-626,644,736,987,-1074,912,952,1009,-1079,679,1091,995,-727,674,750,999,-844,592,1093,1005,-794,668,779,1014,-682,567,1097,1008,-815
		,601,953,1023,-821,713,901,778,-956,955,778,999,-751,870,798,1057,-879,902,718,978,-899,755,753,767,-995,591,1095,1001,-795,816,724,700,-816,540,792,1011,-946,548,809,709,-806,604,805,709,-566,949,728,994,-1093,669,866,1001,-1096
		,816,818,1028,-555,724,698,720,-701,784,1009,1074,-915,815,700,709,-810,563,731,698,-725,674,843,1065,-885,912,1078,1005,-1094,669,684,1003,-867,704,691,696,-706,671,774,1008,-1098,816,815,819,-819,692,716,976,-971,957,1100,799,-741
		,948,764,998,-951,582,923,1086,-923,633,847,1043,-884,576,555,1010,-800,543,1094,773,-777,591,794,1023,-954,676,800,1017,-709,601,820,1030,-947,675,1099,1069,-889,624,839,880,-883,672,797,771,-790,692,968,974,-717,693,717,974,-969
		,815,809,1022,-820,543,776,1004,-948,693,969,975,-718,900,1071,1062,-740,959,541,764,-1102,704,725,982,-974,625,872,718,-903,552,705,696,-872,732,913,971,-721,691,714,960,-697,552,871,875,-877,704,705,981,-726,643,902,898,-645
		,899,925,1041,-847,573,1010,1016,-791,829,1031,825,-1099,871,696,960,-716,633,1062,1041,-848,584,739,1062,-634,688,1059,1051,-869,676,574,1100,-801,884,1065,1040,-849,569,785,841,-861,616,851,1044,-623,632,879,1058,-636,860,841,1052,-859
		,885,863,1051,-1060,635,1058,1056,-868,860,858,1050,-1045,617,685,840,-886,688,868,1056,-1059,622,1044,1050,-866,885,840,1049,-864,616,622,840,-788,542,787,840,-686,1064,842,634,-1064,871,715,1053,-876,632,634,718,-873,903,1073,987,-759
		,899,759,1081,-926,899,846,1039,-624,899,623,841,-760,928,759,841,-786,900,739,987,-737,650,1078,1009,-785,1064,1039,846,-1072,704,973,970,-692,927,926,1007,-723,566,702,968,-693,900,736,978,-843,566,692,970,-974,900,842,1064,-1072
		,928,785,1007,-927,618,717,975,-600,820,804,1013,-1031,599,975,1022,-803,600,966,1021,-804,587,600,1023,-795,820,1023,1024,-805,607,1030,1013,-796,587,857,966,-601,551,606,969,-694,969,819,1022,-976,600,803,1024,-1024,606,980,1028,-819
		,594,607,817,-734,668,947,1004,-780,606,818,819,-970,599,802,1021,-967,567,814,1027,-955,618,599,966,-683,859,786,1045,-851,915,732,720,-699,916,769,1002,-1075,672,738,1020,-798,673,848,1040,-764,609,604,565,-572,712,563,596,-598
		,673,763,997,-711,806,651,649,-811,571,565,985,-698,806,730,570,-652,589,982,1014,-780,566,589,770,-703,712,793,1005,-963,650,784,986,-736,650,962,1005,-1079,554,814,1008,-985,725,792,1014,-983,956,1101,764,-949,729,877,1057,-799
		,552,876,877,-730,784,914,734,-987,725,981,1011,-793,574,576,799,-1101,914,697,985,-735,873,796,1020,-875,712,597,772,-794,687,643,796,-874,816,554,984,-725,643,644,1073,-797,551,702,770,-587,740,799,1010,-574,583,796,1073,-904
		,551,586,980,-607,1092,994,767,-671,563,724,984,-597,586,776,773,-981,729,798,1011,-982,980,773,1027,-1029,687,873,877,-877,566,973,982,-590,596,984,1008,-775,873,874,1057,-878,914,1074,1002,-698,554,1028,1027,-815,761,571,697,-1003
		,550,560,828,-610,1031,821,761,-826,1098,825,761,-952,550,783,806,-561,1091,1102,756,-996,584,633,883,-582,703,719,977,-1073,741,742,1017,-801,598,996,997,-753,706,710,997,-997,575,789,771,-1019,583,558,771,-798,903,758,719,-704
		,584,581,719,-759,583,903,703,-559,790,1016,1019,-558,1096,575,1018,-1020,558,703,1072,-712,741,800,1100,-958,1017,742,1103,-709,628,895,-1071,642,897,-1071,642,1070,-896,839,1070,-881,629,1070,-897,881,1070,-898
		,839,1038,-1071,881,896,-1071,629,1060,-1071,837,880,-1071,628,1070,-1039,837,1070,-1061,937,996,1083,-939,928,657,1081,-760,582,737,1106,-758,760,748,1083,-1083,661,935,1104,-937,1106,929,924,-1082,657,757,1106,-1082
		,655,737,1104,-936,929,1106,737,-656,661,663,745,-936,933,943,993,-1085,665,942,1090,-945,557,556,753,-756,844,572,1065,-844,654,922,1086,-665,598,1082,1083,-997,658,666,942,-752,694,755,994,-729,845,614,1042,-1044,657,937,938,-758
		,572,1042,1040,-1066,666,1089,993,-944,932,766,988,-1086,958,959,1101,-727,666,943,1090,-943,652,746,983,-920,927,662,937,-927,958,726,995,-757,741,957,959,-959,790,557,755,-695,924,929,1082,-599,656,924,598,-846,957,740,541,-960
		,667,944,1090,-980,1103,742,756,-1103,754,694,728,-999,573,790,694,-755,556,558,711,-754,581,883,572,-845,659,1079,988,-931,580,665,939,-748,662,706,996,-938,661,747,939,-664,614,763,1040,-1043,931,766,993,-1090,654,664,940,-750
		,553,746,992,-922,845,598,752,-615,923,748,1087,-1087,658,931,1089,-667,753,711,901,-768,760,745,1087,-749,844,843,999,-978,933,979,1090,-944,932,1084,993,-767,658,721,930,-932,923,938,1083,-749,580,751,942,-666,928,926,937,-658
		,931,930,988,-767,883,1043,1042,-573,711,1072,778,-902,740,573,754,-542,664,1086,1087,-942,582,757,938,-924,585,667,979,-766,585,749,940,-668,579,727,992,-919,1080,727,579,-1106,553,707,967,-921,578,921,992,-728,737,1080,1105,-1105
		,917,743,983,-921,579,936,1104,-1106,917,701,1085,-935,653,1080,737,-990,559,721,972,-920,559,919,983,-744,917,920,967,-702,553,920,983,-747,934,1085,988,-1080,559,743,1079,-660,727,1080,653,-579,553,921,991,-708,652,918,992,-747
		,579,918,990,-937,559,659,930,-722,917,934,1079,-744,578,653,989,-745,578,744,991,-922,1102,708,-1104,676,708,1102,-1092,1107,1108,824,-814,832,646,909,-814,550,780,1006,-784,911,1034,830,-1034,645,1077,911,-1034,570,730,963,-908
		,593,733,817,-828,546,730,806,-784,735,986,732,-916,650,735,731,-963,550,609,821,-781,699,772,774,-672,565,709,971,-986,597,596,774,-773,986,734,913,-733,1109,1128,1144,-1120,1109,1124,1157,-1129,1116,1123,1151,-1142,1117,1131,1146,-1144
		,1118,1139,1157,-1125,1118,1140,1155,-1140,1121,1109,1119,-1146,1117,1143,1149,-1151,1116,1141,1152,-1154,1112,1120,1131,-1148,1126,1137,1155,-1141,1120,1119,1144,-1126,1132,1150,1149,-1139,1113,1118,1124,-1157,1120,1125,1146,-1132,1130,1153,1152,-1143,1121,1156,1124,-1110
		,1130,1142,1154,-1128,1132,1138,1151,-1124,1112,1145,1119,-1121,1126,1127,1154,-1138,1115,1122,1150,-1133,1110,1136,1148,-1135,1112,1147,1148,-1146,1114,1122,1148,-1148,1115,1132,1123,-1134,1110,1130,1127,-1137,1111,1133,1123,-1117,1111,1116,1153,-1135,1113,1135,1140,-1119
		,1121,1145,1148,-1157,1129,1135,1148,-1137,1114,1117,1150,-1123,1110,1134,1153,-1131,1113,1156,1148,-1136,1129,1136,1127,-1127,1114,1147,1131,-1118,1111,1134,1148,-1134,1115,1133,1148,-1123,1129,1126,1140,-1136
		Edges: 
		GeometryVersion: 124
		LayerElementNormal: 0 {
			Version: 101
			Name: ""
			MappingInformationType: "ByVertice"
			ReferenceInformationType: "Direct"
			Normals: 0.096011228859425,0.201116979122162,0.974822223186493,-0.598712146282196,0.370983004570007,0.709860503673553
			 ,-0.451063573360443,0.315042585134506,0.835016965866089,-0.314462721347809,-0.037232581526041,0.948515295982361
			 ,-0.451002538204193,-0.449018836021423,0.771324813365936,-0.597460865974426,0.327677249908447,0.731864392757416
			 ,0.014313180930912,-0.017395550385118,0.999725341796875,-0.409649938344955,0.255134731531143,0.875820159912109
			 ,-0.276772350072861,-0.606494367122650,0.745323061943054,0.201696828007698,-0.509872734546661,0.836237668991089
			 ,0.581743836402893,-0.509598076343536,0.633899986743927,-0.570451974868774,-0.465559870004654,0.676595330238342
			 ,0.742088079452515,-0.326548039913177,0.585345029830933,-0.331827759742737,0.121341593563557,0.935483872890472
			 ,-0.304330587387085,0.206915497779846,0.929807424545288,-0.135776847600937,-0.095248267054558,0.986144602298737
			 ,-0.962309658527374,0.109988704323769,0.248603776097298,-0.183446764945984,-0.407696753740311,0.894466996192932
			 ,-0.445966988801956,0.128604993224144,0.885738670825958,0.128452405333519,-0.637745320796967,0.759422600269318
			 ,0.378765225410461,-0.476210832595825,0.793542265892029,-0.130985438823700,-0.349497973918915,0.927701652050018
			 ,0.101229898631573,-0.681997120380402,0.724295794963837,-0.705465853214264,-0.111880853772163,0.699819922447205
			 ,-0.568102061748505,0.635059654712677,0.523361921310425,0.427289664745331,0.082979828119278,0.900265514850616
			 ,-0.321604043245316,-0.634113609790802,0.703146457672119,0.348948627710342,0.381511896848679,0.855922102928162
			 ,-0.258278131484985,0.299325525760651,0.918485045433044,-0.579668581485748,0.036225471645594,0.814020216464996
			 ,-0.897976636886597,0.435102403163910,0.065248571336269,0.780083596706390,-0.486007273197174,0.393993943929672
			 ,0.249000519514084,0.164677873253822,0.954374849796295,-0.945097208023071,0.326731175184250,-0.001281777396798
			 ,0.157200843095779,-0.466841638088226,0.870235323905945,0.313730269670486,0.134861290454865,0.939878523349762
			 ,-0.647114455699921,0.544267117977142,-0.533829748630524,0.334879606962204,-0.767387926578522,0.546739101409912
			 ,-0.673940241336823,0.212561413645744,0.707510590553284,0.340769678354263,-0.867122411727905,0.363170266151428
			 ,-0.169743955135345,-0.186315506696701,0.967680871486664,0.588152706623077,-0.377025663852692,0.715445399284363
			 ,0.371593356132507,-0.631977319717407,0.680074453353882,0.396160781383514,0.600909471511841,0.694204509258270
			 ,0.039979249238968,0.310708940029144,0.949644446372986,-0.651142895221710,0.424787133932114,0.628894925117493
			 ,-0.349650561809540,-0.440351575613022,0.826929509639740,0.263832509517670,-0.656392097473145,0.706747651100159
			 ,-0.353953659534454,-0.252113401889801,0.900601208209991,0.059602648019791,-0.132480844855309,0.989379584789276
			 ,0.357432782649994,-0.330179750919342,0.873592317104340,-0.917447447776794,-0.310220658779144,0.248970001935959
			 ,0.063112273812294,-0.180913716554642,0.981444716453552,-0.340372949838638,-0.520279526710510,0.783196508884430
			 ,-0.377300322055817,-0.021271400153637,0.925809502601624,-0.290658295154572,-0.544511258602142,0.786736667156219
			 ,-0.363750100135803,-0.169896543025970,0.915829956531525,-0.722159504890442,-0.526902079582214,0.448072761297226
			 ,0.266487628221512,0.616229772567749,0.741080939769745,-0.477248460054398,-0.373363435268402,0.795464932918549
			 ,-0.687093734741211,0.357493817806244,0.632465600967407,-0.349314868450165,0.105624563992023,0.930997669696808
			 ,0.003845332190394,0.191381573677063,0.981505811214447,-0.131504252552986,-0.015686513856053,0.991180121898651
			 ,-0.301828056573868,-0.659566044807434,0.688344955444336,-0.339487910270691,-0.153935357928276,0.927915275096893
			 ,-0.608172833919525,0.092806786298752,0.788323640823364,0.252235472202301,0.056276131421328,0.966002404689789
			 ,-0.016602069139481,-0.324900060892105,0.945585489273071,0.273964673280716,-0.316507458686829,0.908139288425446
			 ,-0.172032833099365,0.247444078326225,0.953489780426025,-0.481398969888687,0.142338335514069,0.864833533763885
			 ,-0.307016193866730,-0.178228095173836,0.934843003749847,-0.640278339385986,-0.357493817806244,0.679830312728882
			 ,-0.321146279573441,0.625446319580078,0.711081266403198,-0.361461222171783,-0.036957915872335,0.931638538837433
			 ,0.283272802829742,0.233771786093712,0.930082082748413,-0.154515206813812,0.132053583860397,0.979094803333282
			 ,-0.532029151916504,0.145420700311661,0.834101378917694,-0.262733846902847,-0.209418013691902,0.941862225532532
			 ,-0.159001439809799,0.080538347363472,0.983977794647217,-0.576738774776459,0.335398405790329,0.744865238666534
			 ,-0.327738285064697,0.037568286061287,0.943998515605927,-0.491470068693161,0.203772082924843,0.846674978733063
			 ,-0.580370485782623,0.028321176767349,0.813837110996246,0.842585504055023,-0.244209110736847,0.479964584112167
			 ,0.861018717288971,0.004425183869898,0.508499383926392,0.404400765895844,-0.059480573982000,0.912625491619110
			 ,0.300759911537170,-0.628345608711243,0.717398583889008,0.675191521644592,-0.558214068412781,0.482161939144135
			 ,-0.731559216976166,-0.193212687969208,0.653767526149750,-0.642872393131256,0.227484971284866,0.731376051902771
			 ,-0.413068026304245,-0.384502708911896,0.825525701045990,-0.112918481230736,0.362865090370178,0.924955010414124
			 ,-0.944883584976196,0.292275756597519,0.147373884916306,-0.555772602558136,0.277321696281433,0.783684790134430
			 ,-0.896084487438202,0.354197829961777,-0.267433702945709,0.490737617015839,-0.490401923656464,0.720175802707672
			 ,0.316263318061829,0.265083760023117,0.910855412483215,-0.269600510597229,0.828669071197510,0.490462958812714
			 ,0.955381929874420,-0.021729178726673,0.294473111629486,-0.974913775920868,0.013245033100247,0.222052678465843
			 ,-0.215582758188248,0.825647771358490,-0.521317183971405,0.674916863441467,-0.639912128448486,0.367351293563843
			 ,0.981627881526947,-0.162572100758553,-0.099734485149384,-0.173467203974724,0.579577028751373,-0.796197414398193
			 ,0.998413026332855,0.014801477082074,-0.053804133087397,0.953764438629150,0.274910748004913,-0.121280558407307
			 ,0.121982485055923,0.715414881706238,-0.687948226928711,-0.432721942663193,-0.330179750919342,0.838862240314484
			 ,-0.059602648019791,0.229865416884422,0.971373617649078,-0.631733119487762,0.099429301917553,0.768730759620667
			 ,-0.445417642593384,0.205328524112701,0.871425509452820,-0.283150732517242,0.196142464876175,0.938779890537262
			 ,0.793847441673279,-0.323129981756210,0.515091419219971,-0.437086105346680,0.360789805650711,0.823847174644470
			 ,-0.230811491608620,-0.001709036529064,0.972991108894348,0.030091250315309,-0.130710780620575,0.990935981273651
			 ,-0.167516097426414,-0.472975850105286,0.864986121654510,-0.047181613743305,-0.403820931911469,0.913602113723755
			 ,0.158116400241852,-0.242255926132202,0.957213044166565,0.089693896472454,0.211645856499672,0.973204731941223
			 ,-0.568407237529755,-0.406628608703613,0.715201258659363,-0.147221297025681,-0.440778821706772,0.885433495044708
			 ,0.053132724016905,-0.701071202754974,0.711081266403198,0.338206112384796,-0.446424752473831,0.828424930572510
			 ,0.438947707414627,-0.222144231200218,0.870601534843445,-0.824701666831970,0.210089415311813,0.525070965290070
			 ,0.131534770131111,-0.615466773509979,0.777092814445496,0.111453592777252,-0.061830498278141,0.991821050643921
			 ,0.214331492781639,-0.709738433361053,0.671041011810303,0.378429532051086,-0.636707663536072,0.671803951263428
			 ,-0.905636787414551,-0.201208531856537,0.373210847377777,0.226722002029419,-0.162083804607391,0.960356473922729
			 ,0.147129729390144,0.167760252952576,0.974761188030243,0.372905671596527,-0.726584672927856,0.577043950557709
			 ,-0.266731768846512,-0.292245239019394,0.918362975120544,-0.327127903699875,-0.246040225028992,0.912381350994110
			 ,-0.084627829492092,-0.200933873653412,0.975920915603638,0.084139533340931,0.039277322590351,0.995666384696960
			 ,0.059511095285416,-0.006836146116257,0.998199403285980,0.233100369572639,0.037781916558743,0.971709370613098
			 ,0.418744474649429,-0.460921049118042,0.782403051853180,-0.148960843682289,0.042054504156113,0.987945199012756
			 ,-0.675527215003967,-0.246650591492653,0.694845438003540,0.495925784111023,-0.356028944253922,0.791985809803009
			 ,0.542344450950623,-0.783501684665680,0.303170859813690,0.660176396369934,-0.135929435491562,0.738669991493225
			 ,-0.888149678707123,0.314065992832184,0.335428923368454,0.642170488834381,0.218817710876465,0.734611034393311
			 ,0.906094551086426,-0.380413234233856,0.185094758868217,0.070497758686543,-0.320322275161743,0.944669961929321
			 ,0.285103917121887,-0.430402547121048,0.856410384178162,0.454542666673660,-0.595385611057281,0.662465274333954
			 ,0.590746760368347,-0.706198334693909,0.390209674835205,-0.218634605407715,-0.151524394750595,0.963957667350769
			 ,0.659138739109039,0.300973534584045,0.689138472080231,-0.372356325387955,0.071932129561901,0.925290703773499
			 ,0.470351278781891,0.251411467790604,0.845881521701813,-0.274178296327591,0.280373543500900,0.919888913631439
			 ,-0.333475738763809,0.013153477571905,0.942655742168427,-0.278756052255630,-0.725089251995087,0.629657864570618
			 ,-0.798547327518463,-0.032959990203381,0.600970506668091,-0.685598313808441,0.012695699930191,0.727835953235626
			 ,0.984221935272217,-0.146671950817108,-0.098879970610142,-0.928800344467163,-0.036072880029678,0.368755161762238
			 ,0.722922444343567,-0.586413145065308,0.365306556224823,0.508041620254517,0.434980303049088,-0.743369877338409
			 ,-0.783288061618805,0.432081043720245,-0.446913063526154,0.885402977466583,-0.263466298580170,0.382915735244751
			 ,0.187139496207237,0.730002760887146,0.657307684421539,0.116946928203106,0.215002894401550,0.969573020935059
			 ,0.104800559580326,0.215765863656998,0.970793783664703,0.087527081370354,0.221259191632271,0.971251547336578
			 ,0.037934508174658,-0.756981134414673,0.652302622795105,-0.761436820030212,0.601641893386841,0.241187781095505
			 ,0.351695299148560,-0.065004423260689,0.933835864067078,0.163396105170250,0.617297887802124,0.769554734230042
			 ,0.995605349540710,-0.093264564871788,-0.003814813680947,-0.327707767486572,-0.863155007362366,0.384075433015823
			 ,-0.216589868068695,0.018860438838601,0.976073503494263,0.363780617713928,0.833063781261444,0.416638702154160
			 ,0.667226195335388,0.113315224647522,0.736136972904205,-0.445600748062134,0.719321250915527,-0.532883703708649
			 ,0.611590921878815,0.764976978302002,-0.201788380742073,0.609851360321045,0.360454112291336,0.705740511417389
			 ,-0.512558341026306,0.346263021230698,0.785699009895325,0.313058882951736,-0.843836784362793,0.435773789882660
			 ,-0.555192708969116,-0.267433702945709,0.787530124187469,0.497512727975845,-0.767693102359772,0.403790384531021
			 ,0.571611702442169,-0.739799201488495,0.354838699102402,0.842127740383148,-0.358012646436691,0.403180032968521
			 ,-0.717429101467133,0.426831871271133,0.550492882728577,0.412549197673798,-0.863429665565491,0.290261536836624
			 ,-0.664571046829224,0.255195766687393,0.702230930328369,0.614123940467834,0.445844918489456,0.651173412799835
			 ,0.470564901828766,-0.873165071010590,0.126987516880035,-0.544175565242767,-0.750419616699219,0.375102996826172
			 ,-0.122226633131504,0.027588732540607,0.992095708847046,-0.444471567869186,0.248970001935959,0.860469400882721
			 ,-0.453871279954910,-0.430341511964798,0.780205667018890,0.123569443821907,-0.724295794963837,0.678273856639862
			 ,-0.468398094177246,0.715445399284363,0.518387377262115,-0.574907660484314,0.734519481658936,0.360484629869461
			 ,-0.647236526012421,0.341471612453461,0.681478321552277,-0.402783274650574,-0.446241647005081,0.799127161502838
			 ,-0.276070445775986,0.251136809587479,0.927732169628143,-0.715720057487488,0.523545026779175,0.462172299623489
			 ,0.633472681045532,-0.772270858287811,0.047547839581966,0.388103872537613,-0.873287141323090,0.294412046670914
			 ,-0.896938979625702,0.161534473299980,0.411542087793350,-0.801690697669983,-0.372997224330902,0.467024743556976
			 ,0.764519155025482,-0.447462379932404,0.463911861181259,0.004730368964374,-0.667043089866638,0.744987308979034
			 ,0.946653664112091,-0.321848213672638,0.015411847271025,-0.623523652553558,0.372417360544205,0.687368392944336
			 ,-0.745475649833679,0.070314645767212,0.662770450115204,0.311868637800217,-0.634846031665802,0.706839203834534
			 ,0.110965296626091,0.233680233359337,0.965941369533539,-0.398663282394409,0.412244021892548,0.819177806377411
			 ,-0.845362722873688,-0.038819544017315,0.532700598239899,-0.138248845934868,-0.109897151589394,0.984252452850342
			 ,-0.179723501205444,-0.103976562619209,0.978179275989532,-0.212469860911369,-0.269997239112854,0.939115583896637
			 ,0.251838743686676,-0.851405382156372,0.460036009550095,0.290932953357697,0.031067842617631,0.956205964088440
			 ,-0.504623532295227,-0.069704279303551,0.860499918460846,-0.471388906240463,-0.104831077158451,0.875667572021484
			 ,0.150028988718987,-0.206122010946274,0.966948449611664,0.052369762212038,-0.831049501895905,0.553697288036346
			 ,0.877712309360504,-0.410138249397278,0.247688218951225,0.451857060194016,-0.050263985991478,0.890652179718018
			 ,0.598040699958801,-0.202917575836182,0.775322735309601,-0.824671149253845,-0.530991554260254,0.194647058844566
			 ,0.536637485027313,-0.175725579261780,0.825281560420990,0.401745647192001,-0.000274666585028,0.915738403797150
			 ,-0.959990262985229,0.156285285949707,0.232245862483978,-0.224677264690399,-0.913937807083130,0.337931454181671
			 ,-0.082979828119278,-0.633259057998657,0.769463181495667,-0.131260111927986,0.288552492856979,0.948393225669861
			 ,-0.171208843588829,-0.798394739627838,0.577227115631104,-0.328623294830322,-0.935270249843597,0.131351664662361
			 ,0.048280283808708,-0.023712880909443,0.998535096645355,-0.583086669445038,-0.810205399990082,0.059389017522335
			 ,-0.217383340001106,-0.387371450662613,0.895901381969452,-0.002929776906967,-0.060518205165863,0.998138368129730
			 ,-0.454390078783035,-0.657582342624664,0.600878953933716,0.066866055130959,-0.647846937179565,0.758812189102173
			 ,-0.396008193492889,-0.290047913789749,0.871211886405945,-0.316324353218079,-0.214362010359764,0.924100458621979
			 ,-0.372966706752777,-0.070467241108418,0.925138115882874,-0.287240207195282,-0.175725579261780,0.941587567329407
			 ,-0.274727612733841,-0.508468866348267,0.816034436225891,-0.895809829235077,0.043061617761850,0.442304760217667
			 ,-0.481398969888687,0.148686170578003,0.863765358924866,-0.481765180826187,0.108676411211491,0.869502842426300
			 ,-0.158391058444977,0.404980629682541,0.900479137897491,0.160039067268372,0.320688486099243,0.933530688285828
			 ,0.575579106807709,0.549577295780182,0.605487227439880,0.335581541061401,0.302438437938690,0.892117083072662
			 ,0.249794006347656,0.357676923274994,0.899777233600616,0.461378812789917,0.234778895974159,0.855555891990662
			 ,0.316751599311829,0.202459797263145,0.926633477210999,-0.728751480579376,0.554551839828491,0.401684612035751
			 ,-0.643574357032776,0.503280758857727,0.576616704463959,-0.055116429924965,0.074343085289001,0.995696902275085
			 ,-0.205359056591988,-0.122867517173290,0.970915853977203,-0.391491442918777,0.019318215548992,0.919949948787689
			 ,-0.310525834560394,0.006469924002886,0.950529515743256,-0.405957221984863,0.139561146497726,0.903134226799011
			 ,-0.377727597951889,0.258857995271683,0.888973653316498,-0.459364593029022,0.000152592547238,0.888210713863373
			 ,-0.538651704788208,0.346629232168198,0.767906725406647,-0.358409374952316,0.295175015926361,0.885647118091583
			 ,-0.390423297882080,-0.264900654554367,0.881679713726044,-0.360545665025711,0.001068147830665,0.932706713676453
			 ,-0.101992860436440,-0.157963812351227,0.982146680355072,-0.516129016876221,-0.175389871001244,0.838343441486359
			 ,-0.843897819519043,0.313241988420486,0.435499131679535,-0.599230945110321,0.140964999794960,0.788048923015594
			 ,-0.489394813776016,0.274208813905716,0.827814579010010,-0.125003814697266,0.168004393577576,0.977813065052032
			 ,-0.015106662176549,-0.430219441652298,0.902584910392761,-0.145603805780411,-0.167027801275253,0.975127398967743
			 ,0.971373617649078,-0.219000816345215,0.091891229152679,0.967314660549164,-0.249641403555870,0.044099245220423
			 ,0.113193154335022,-0.392132341861725,0.912900149822235,0.722403645515442,-0.397076338529587,0.566057324409485
			 ,0.966154992580414,-0.240577414631844,0.092806786298752,-0.404431283473969,-0.121616259217262,0.906430244445801
			 ,-0.542588591575623,-0.266975909471512,0.796411037445068,-0.497543245553970,-0.516067981719971,0.697195351123810
			 ,-0.049928281456232,-0.260536521673203,0.964140772819519,0.244361698627472,0.224707782268524,0.943266093730927
			 ,-0.305276662111282,0.123477891087532,0.944212138652802,-0.273537397384644,-0.148869290947914,0.950254857540131
			 ,-0.383953362703323,0.073488570749760,0.920407712459564,-0.692739665508270,0.394299149513245,0.603808701038361
			 ,-0.581164002418518,0.367809087038040,0.725882768630981,-0.329691469669342,0.068971827626228,0.941526532173157
			 ,-0.438886672258377,0.175115212798119,0.881282985210419,-0.708822906017303,0.481917768716812,0.515060901641846
			 ,-0.554795980453491,0.263130575418472,0.789239168167114,-0.595233023166656,0.131229594349861,0.792718291282654
			 ,-0.515091419219971,-0.317117840051651,0.796288967132568,-0.579882204532623,-0.316537976264954,0.750633239746094
			 ,0.551896750926971,0.026520583778620,0.833460509777069,0.492141485214233,0.255867183208466,0.832026124000549
			 ,0.464888453483582,0.392803728580475,0.793450713157654,0.595873892307281,0.413190096616745,0.688619673252106
			 ,0.457838684320450,-0.183690905570984,0.869808018207550,0.281899482011795,-0.242286443710327,0.928342521190643
			 ,-0.640430927276611,-0.327127903699875,0.694814920425415,-0.758629083633423,0.006744590587914,0.651448130607605
			 ,0.509170830249786,-0.748680055141449,0.424481958150864,0.684316515922546,-0.359355449676514,0.634449303150177
			 ,-0.567094922065735,0.216834008693695,0.794549405574799,0.245948672294617,-0.811761856079102,0.529618203639984
			 ,0.540421783924103,-0.571611702442169,0.617389440536499,0.324625372886658,-0.408276617527008,0.853175461292267
			 ,0.624256134033203,-0.645588576793671,0.439863264560699,0.564989149570465,-0.750511169433594,0.342753380537033
			 ,0.039246805012226,-0.239478737115860,0.970091879367828,-0.432538837194443,-0.409283727407455,0.803338706493378
			 ,-0.927793204784393,0.368541508913040,0.057741019874811,-0.953306674957275,0.203192234039307,0.223395496606827
			 ,-0.501663267612457,-0.469222068786621,0.726706743240356,-0.600176990032196,-0.261421561241150,0.755912959575653
			 ,-0.943205058574677,0.315408796072006,-0.103946045041084,-0.362376779317856,0.477919846773148,-0.800134301185608
			 ,0.360362559556961,0.171941280364990,0.916806519031525,0.399884015321732,0.236152231693268,0.885586082935333
			 ,-0.366527289152145,0.863490700721741,0.346415609121323,-0.207159638404846,0.819696664810181,0.533982336521149
			 ,0.421338528394699,-0.119571521878242,0.898953199386597,-0.134342476725578,0.221289709210396,0.965880334377289
			 ,0.968779563903809,0.165746018290520,0.184331804513931,-0.047791987657547,0.811395585536957,-0.582506775856018
			 ,0.347422719001770,0.719687461853027,-0.601062059402466,-0.373393952846527,-0.456434816122055,0.807580769062042
			 ,0.586352109909058,-0.669270932674408,0.456312745809555,-0.582781434059143,-0.435682237148285,0.685903489589691
			 ,-0.227057710289955,0.970427572727203,0.081698052585125,-0.423932611942291,0.745658755302429,-0.514023244380951
			 ,0.991363286972046,-0.114413894712925,-0.063966795802116,-0.022217474877834,0.648548841476440,-0.760826468467712
			 ,0.594988882541656,0.454298526048660,-0.662984073162079,0.981047987937927,0.176244392991066,-0.080233164131641
			 ,0.671987056732178,0.602710068225861,-0.430310994386673,0.674428522586823,0.531327247619629,-0.512619376182556
			 ,-0.309579759836197,0.229560226202011,0.922727108001709,0.082491531968117,-0.043092135339975,0.995635867118835
			 ,0.088991969823837,0.175756096839905,0.980376601219177,-0.322885841131210,-0.267464220523834,0.907834112644196
			 ,-0.312509536743164,0.085116125643253,0.946073770523071,0.301004052162170,-0.681875050067902,0.666646301746368
			 ,0.315591901540756,-0.452772617340088,0.833887755870819,-0.527420878410339,-0.658375799655914,0.536942660808563
			 ,-0.295846432447433,0.262215018272400,0.918515563011169,-0.226081117987633,0.421979427337646,0.877956509590149
			 ,-0.918027281761169,0.036713767796755,0.394756913185120,0.051057465374470,-0.329935610294342,0.942594707012177
			 ,0.281258583068848,-0.070162050426006,0.957060456275940,-0.122196108102798,-0.452497929334641,0.883327722549438
			 ,0.415051728487015,-0.422620326280594,0.805658102035522,-0.204901278018951,-0.154820397496223,0.966429650783539
			 ,0.126071959733963,-0.717062890529633,0.685476243495941,0.006897183135152,-0.104586929082870,0.994476139545441
			 ,0.178014472126961,0.142399370670319,0.973631978034973,-0.179784536361694,-0.274513989686966,0.944608926773071
			 ,0.315683454275131,0.221167638897896,0.922696590423584,0.393414109945297,0.206335648894310,0.895870864391327
			 ,0.258766442537308,0.741508245468140,-0.618976414203644,0.482924878597260,-0.577867984771729,0.657887518405914
			 ,0.738242745399475,-0.614703834056854,0.277657389640808,0.414685517549515,-0.851130723953247,0.321817696094513
			 ,-0.847743153572083,-0.061647389084101,0.526780009269714,0.694723367691040,-0.294808804988861,0.656056404113770
			 ,0.247566148638725,-0.547013759613037,0.799645960330963,0.237800225615501,-0.561021745204926,0.792870879173279
			 ,0.667287230491638,0.063814200460911,0.742027044296265,-0.345744192600250,0.779198586940765,0.522721052169800
			 ,-0.656514167785645,0.170201733708382,0.734855175018311,-0.574114203453064,-0.420758694410324,0.702353000640869
			 ,-0.814691603183746,-0.183782458305359,0.549943566322327,-0.946470558643341,0.117709890007973,0.300515770912170
			 ,0.710287809371948,0.523850202560425,-0.470137625932693,0.621936678886414,0.288399904966354,0.727988541126251
			 ,0.420545071363449,-0.755088984966278,0.502914488315582,0.221716970205307,0.974211871623993,0.041352581232786
			 ,0.174993127584457,0.916531860828400,0.359599590301514,0.658742010593414,0.164128541946411,0.734244823455811
			 ,0.608569622039795,0.478011399507523,0.633320093154907,-0.683614611625671,0.409405797719955,0.604144394397736
			 ,-0.882869958877563,0.219519644975662,0.415082246065140,-0.097659230232239,-0.914273500442505,0.393108934164047
			 ,-0.784417271614075,0.388988912105560,0.483046978712082,0.411389499902725,-0.886806845664978,0.210455641150475
			 ,0.326364934444427,-0.868068456649780,0.374004334211349,-0.751670897006989,-0.484237194061279,0.447706520557404
			 ,-0.534745335578918,0.766716539859772,0.355204939842224,0.906064033508301,-0.289529085159302,0.308481097221375
			 ,-0.002960295416415,-0.931058704853058,0.364848792552948,-0.559251666069031,0.464369654655457,0.686697006225586
			 ,0.807336628437042,-0.588152706623077,0.047700431197882,-0.864864051342010,-0.276192516088486,0.419141203165054
			 ,-0.853785812854767,-0.193609416484833,0.483260601758957,0.538407564163208,-0.839930415153503,0.067537464201450
			 ,-0.736899912357330,0.523331403732300,0.427838981151581,-0.587878048419952,0.411908328533173,0.696188211441040
			 ,-0.569658517837524,-0.693014323711395,0.441785931587219,-0.726371049880981,0.112277597188950,0.678029716014862
			 ,-0.654896676540375,0.286751925945282,0.699179053306580,0.755577266216278,-0.557786822319031,0.343394279479980
			 ,-0.046540725976229,0.364055305719376,0.930204153060913,0.245551928877831,0.124790184199810,0.961302518844604
			 ,-0.907803595066071,0.252998441457748,0.334421813488007,-0.724967181682587,0.194616541266441,0.660664677619934
			 ,-0.456709504127502,-0.651387095451355,0.605853438377380,0.291543334722519,-0.657704412937164,0.694540262222290
			 ,0.787438571453094,-0.536332309246063,0.303689688444138,0.681203663349152,-0.384044915437698,0.623218476772308
			 ,-0.559923112392426,-0.053559985011816,0.826776921749115,-0.972106099128723,-0.041596729308367,0.230689406394958
			 ,-0.315744489431381,-0.948087990283966,0.037629321217537,-0.344340354204178,-0.373149812221527,0.861476480960846
			 ,0.234870448708534,-0.127231672406197,0.963652431964874,0.056794945150614,-0.404370248317719,0.912808597087860
			 ,-0.310312211513519,0.018768884241581,0.950437963008881,-0.325846135616302,-0.137882620096207,0.935300767421722
			 ,0.008880886249244,0.370464175939560,0.928800344467163,-0.385601371526718,0.199468970298767,0.900814831256866
			 ,0.179204687476158,0.154393136501312,0.971587240695953,0.483626812696457,0.738151192665100,0.470290243625641
			 ,0.375530272722244,0.205420091748238,0.903744637966156,0.336130857467651,0.460310667753220,0.821649849414825
			 ,0.262794882059097,0.247901856899261,0.932431995868683,-0.612475991249084,0.253547787666321,0.748680055141449
			 ,-0.656147956848145,0.649739086627960,0.383739739656448,-0.359721660614014,0.055818352848291,0.931363880634308
			 ,-0.203650012612343,-0.070925012230873,0.976439714431763,-0.080721460282803,-0.524552166461945,0.847499012947083
			 ,-0.409955143928528,-0.150639355182648,0.899563610553741,-0.536484897136688,-0.044618062674999,0.842707574367523
			 ,-0.424878686666489,0.190679639577866,0.884914696216583,-0.294015318155289,-0.090121157467365,0.951506078243256
			 ,-0.286233097314835,-0.239448219537735,0.927732169628143,-0.056184574961662,0.122043520212173,0.990905463695526
			 ,-0.434675127267838,0.285164952278137,0.854213058948517,-0.589129328727722,0.260383933782578,0.764885425567627
			 ,0.977568864822388,-0.210547193884850,0.000885036773980,-0.473250538110733,0.151524394750595,0.867763280868530
			 ,-0.369396030902863,0.287301242351532,0.883724451065063,-0.150334179401398,-0.280861854553223,0.947874367237091
			 ,-0.718283653259277,0.431897938251495,0.545426785945892,0.354350417852402,0.301889091730118,0.885006248950958
			 ,-0.351542711257935,0.209143340587616,0.912472903728485,0.037171542644501,0.343943595886230,0.938230514526367
			 ,0.541428864002228,0.635181725025177,0.550767540931702,-0.433973193168640,0.203955203294754,0.877498686313629
			 ,-0.705709993839264,0.511795401573181,0.489883124828339,-0.458967864513397,0.149845883250237,0.875698089599609
			 ,-0.710501432418823,0.427900016307831,0.558610796928406,-0.497817933559418,-0.103610336780548,0.861049234867096
			 ,0.354197829961777,0.400219738483429,0.845179617404938,0.250312805175781,0.176519066095352,0.951902806758881
			 ,0.776116192340851,-0.222052678465843,0.590166926383972,0.480300307273865,-0.845057547092438,0.234809413552284
			 ,-0.708548247814178,-0.065858945250511,0.702536106109619,0.442365795373917,-0.737144052982330,0.510757803916931
			 ,0.542558073997498,-0.358836621046066,0.759483635425568,-0.398846387863159,-0.767540514469147,0.501724302768707
			 ,-0.737540841102600,-0.329355746507645,0.589495539665222,-0.728629410266876,0.461592465639114,0.505935847759247
			 ,0.176610618829727,0.522354781627655,0.834223449230194,0.929136037826538,0.208716079592705,0.305093526840210
			 ,0.453840762376785,0.660634160041809,-0.597949147224426,0.372631013393402,0.669026792049408,-0.643055498600006
			 ,-0.806909382343292,0.305642873048782,0.505386531352997,-0.301492363214493,0.518967270851135,-0.799829125404358
			 ,0.534257054328918,0.449446082115173,-0.715933740139008,0.649098157882690,0.479903548955917,-0.590197443962097
			 ,0.954161226749420,0.253303617238998,-0.159215062856674,0.674642145633698,0.583147704601288,-0.452497929334641
			 ,-0.696188211441040,0.272042006254196,0.664296388626099,0.668172240257263,0.085665456950665,0.739036202430725
			 ,-0.559099078178406,-0.302987754344940,0.771721541881561,-0.861415445804596,0.489272743463516,0.136204108595848
			 ,-0.120517596602440,0.265602588653564,0.956511139869690,0.040162358433008,-0.850154101848602,0.524948894977570
			 ,-0.140873432159424,-0.826380193233490,0.545152127742767,0.160466328263283,0.172826319932938,0.971770405769348
			 ,-0.850795030593872,-0.144627213478088,0.505142390727997,-0.750877380371094,-0.490340888500214,0.442365795373917
			 ,-0.025543991476297,-0.369060337543488,0.929044485092163,-0.408551275730133,0.185552537441254,0.893643021583557
			 ,-0.167332991957664,-0.649006605148315,0.742118597030640,-0.467787712812424,-0.699240088462830,0.540513336658478
			 ,-0.821130990982056,-0.560106217861176,0.109408855438232,0.094729453325272,-0.809167742729187,0.579851686954498
			 ,-0.283852666616440,0.500717163085938,0.817712962627411,0.286416202783585,-0.090395823121071,0.953825473785400
			 ,0.317300945520401,-0.369731754064560,0.873256623744965,-0.125461593270302,-0.023346658796072,0.991821050643921
			 ,-0.317392498254776,-0.694143474102020,0.646046340465546,-0.621021151542664,-0.767967760562897,0.156620994210243
			 ,-0.039094209671021,0.380962550640106,0.923734247684479,0.473738819360733,-0.353587448596954,0.806543171405792
			 ,-0.755424678325653,0.421887874603271,0.501327574253082,-0.910977482795715,0.235175639390945,0.338755458593369
			 ,0.295602291822433,0.262733846902847,0.918454527854919,-0.709006011486053,0.135288551449776,0.692068219184875
			 ,-0.977965652942657,-0.017517624422908,0.207922607660294,0.250801116228104,-0.622180879116058,0.741599798202515
			 ,-0.376812040805817,-0.887997090816498,0.263466298580170,-0.621173739433289,-0.611529886722565,0.490005195140839
			 ,-0.820581674575806,-0.322794288396835,0.471572011709213,-0.568559825420380,0.174779504537582,0.803827047348022
			 ,-0.798791468143463,0.002899258397520,0.601580858230591,-0.744804203510284,0.545670926570892,0.384044915437698
			 ,-0.314706861972809,-0.942319989204407,0.113834038376808,-0.209112823009491,0.635242760181427,0.743430912494659
			 ,-0.535081028938293,0.515854358673096,0.668965697288513,-0.819452524185181,-0.569811105728149,-0.061128575354815
			 ,-0.997619569301605,0.046510208398104,0.050752282142639,0.220923483371735,-0.852748215198517,0.473250538110733
			 ,0.436750382184982,-0.036957915872335,0.898800611495972,-0.065370649099350,-0.196508675813675,0.978301346302032
			 ,0.396374404430389,-0.640125751495361,0.658070623874664,-0.087160862982273,-0.522232711315155,0.848322987556458
			 ,-0.498611420392990,-0.292275756597519,0.816034436225891,-0.029938656836748,-0.958494842052460,0.283516943454742
			 ,-0.125034332275391,-0.902829051017761,0.411358982324600,-0.592547357082367,-0.805505514144897,-0.005432294681668
			 ,-0.961790800094604,-0.270790725946426,-0.039551988244057,-0.946562111377716,-0.296548366546631,0.126529738306999
			 ,-0.921414852142334,0.332346558570862,0.201147496700287,-0.495071262121201,0.650715649127960,0.575701177120209
			 ,-0.264748066663742,0.092196419835091,0.959868133068085,0.067506939172745,0.497726380825043,0.864680945873260
			 ,0.654835641384125,-0.755760371685028,0.000030518509448,0.096011228859425,0.201116979122162,-0.974822223186493
			 ,-0.598712146282196,0.370983004570007,-0.709860503673553,0.436323136091232,-0.899777233600616,0.000000000000000
			 ,-0.451063573360443,0.315042585134506,-0.835016965866089,-0.314462721347809,-0.037232581526041,-0.948515295982361
			 ,-0.451002538204193,-0.449018836021423,-0.771324813365936,-0.597460865974426,0.327677249908447,-0.731864392757416
			 ,0.014313180930912,-0.017395550385118,-0.999725341796875,-0.409649938344955,0.255134731531143,-0.875820159912109
			 ,-0.276772350072861,-0.606494367122650,-0.745323061943054,0.201696828007698,-0.509872734546661,-0.836237668991089
			 ,0.581743836402893,-0.509598076343536,-0.633899986743927,-0.570451974868774,-0.465559870004654,-0.676595330238342
			 ,0.742088079452515,-0.326548039913177,-0.585345029830933,-0.793084502220154,0.609088420867920,0.000061037018895
			 ,-0.331827759742737,0.121341593563557,-0.935483872890472,-0.304330587387085,0.206915497779846,-0.929807424545288
			 ,-0.135776847600937,-0.095248267054558,-0.986144602298737,-0.962309658527374,0.109988704323769,-0.248603776097298
			 ,-0.183446764945984,-0.407696753740311,-0.894466996192932,-0.445966988801956,0.128604993224144,-0.885738670825958
			 ,0.128452405333519,-0.637745320796967,-0.759422600269318,0.378765225410461,-0.476210832595825,-0.793542265892029
			 ,-0.757408380508423,0.652912974357605,0.000000000000000,-0.130985438823700,-0.349497973918915,-0.927701652050018
			 ,0.101229898631573,-0.681997120380402,-0.724295794963837,0.908749639987946,-0.417279571294785,0.000000000000000
			 ,-0.705465853214264,-0.111880853772163,-0.699819922447205,-0.568102061748505,0.635059654712677,-0.523361921310425
			 ,0.427289664745331,0.082979828119278,-0.900265514850616,-0.321604043245316,-0.634113609790802,-0.703146457672119
			 ,0.348948627710342,0.381511896848679,-0.855922102928162,-0.258278131484985,0.299325525760651,-0.918485045433044
			 ,-0.947782814502716,0.318887919187546,0.000000000000000,-0.989837348461151,0.142063662409782,0.000000000000000
			 ,-0.888943135738373,0.457991272211075,0.000000000000000,-0.816583752632141,0.577196598052979,0.000091555528343
			 ,-0.579668581485748,0.036225471645594,-0.814020216464996,-0.897976636886597,0.435102403163910,-0.065248571336269
			 ,0.780083596706390,-0.486007273197174,-0.393993943929672,0.249000519514084,0.164677873253822,-0.954374849796295
			 ,-0.945097208023071,0.326731175184250,0.001281777396798,0.157200843095779,-0.466841638088226,-0.870235323905945
			 ,0.313730269670486,0.134861290454865,-0.939878523349762,-0.647114455699921,0.544267117977142,0.533829748630524
			 ,0.334879606962204,-0.767387926578522,-0.546739101409912,-0.673940241336823,0.212561413645744,-0.707510590553284
			 ,-0.788384675979614,0.615161597728729,0.000000000000000,0.340769678354263,-0.867122411727905,-0.363170266151428
			 ,-0.878872036933899,0.477004289627075,0.000000000000000,-0.989715278148651,0.142979219555855,0.000000000000000
			 ,0.423474848270416,-0.905880928039551,0.000000000000000,-0.577440738677979,-0.816400647163391,0.000000000000000
			 ,-0.952085912227631,-0.305764943361282,0.000000000000000,-0.169743955135345,-0.186315506696701,-0.967680871486664
			 ,0.588152706623077,-0.377025663852692,-0.715445399284363,0.371593356132507,-0.631977319717407,-0.680074453353882
			 ,0.396160781383514,0.600909471511841,-0.694204509258270,0.039979249238968,0.310708940029144,-0.949644446372986
			 ,-0.651142895221710,0.424787133932114,-0.628894925117493,-0.986602365970612,0.162938326597214,0.000000000000000
			 ,-0.349650561809540,-0.440351575613022,-0.826929509639740,0.263832509517670,-0.656392097473145,-0.706747651100159
			 ,-0.353953659534454,-0.252113401889801,-0.900601208209991,0.059602648019791,-0.132480844855309,-0.989379584789276
			 ,0.357432782649994,-0.330179750919342,-0.873592317104340,-0.917447447776794,-0.310220658779144,-0.248970001935959
			 ,0.063112273812294,-0.180913716554642,-0.981444716453552,-0.340372949838638,-0.520279526710510,-0.783196508884430
			 ,-0.377300322055817,-0.021271400153637,-0.925809502601624,-0.290658295154572,-0.544511258602142,-0.786736667156219
			 ,-0.363750100135803,-0.169896543025970,-0.915829956531525,-0.722159504890442,-0.526902079582214,-0.448072761297226
			 ,0.266487628221512,0.616229772567749,-0.741080939769745,-0.477248460054398,-0.373363435268402,-0.795464932918549
			 ,-0.687093734741211,0.357493817806244,-0.632465600967407,-0.349314868450165,0.105624563992023,-0.930997669696808
			 ,0.003845332190394,0.191381573677063,-0.981505811214447,-0.131504252552986,-0.015686513856053,-0.991180121898651
			 ,-0.301828056573868,-0.659566044807434,-0.688344955444336,-0.339487910270691,-0.153935357928276,-0.927915275096893
			 ,-0.608172833919525,0.092806786298752,-0.788323640823364,0.252235472202301,0.056276131421328,-0.966002404689789
			 ,-0.016602069139481,-0.324900060892105,-0.945585489273071,0.273964673280716,-0.316507458686829,-0.908139288425446
			 ,-0.172032833099365,0.247444078326225,-0.953489780426025,0.964964747428894,-0.262367635965347,0.000000000000000
			 ,-0.481398969888687,0.142338335514069,-0.864833533763885,-0.307016193866730,-0.178228095173836,-0.934843003749847
			 ,-0.640278339385986,-0.357493817806244,-0.679830312728882,-0.321146279573441,0.625446319580078,-0.711081266403198
			 ,-0.361461222171783,-0.036957915872335,-0.931638538837433,0.283272802829742,0.233771786093712,-0.930082082748413
			 ,-0.154515206813812,0.132053583860397,-0.979094803333282,-0.532029151916504,0.145420700311661,-0.834101378917694
			 ,-0.262733846902847,-0.209418013691902,-0.941862225532532,-0.159001439809799,0.080538347363472,-0.983977794647217
			 ,-0.576738774776459,0.335398405790329,-0.744865238666534,-0.327738285064697,0.037568286061287,-0.943998515605927
			 ,-0.812952041625977,0.582293152809143,0.000000000000000,-0.491470068693161,0.203772082924843,-0.846674978733063
			 ,-0.580370485782623,0.028321176767349,-0.813837110996246,0.842585504055023,-0.244209110736847,-0.479964584112167
			 ,0.861018717288971,0.004425183869898,-0.508499383926392,0.404400765895844,-0.059480573982000,-0.912625491619110
			 ,0.300759911537170,-0.628345608711243,-0.717398583889008,0.675191521644592,-0.558214068412781,-0.482161939144135
			 ,-0.731559216976166,-0.193212687969208,-0.653767526149750,-0.642872393131256,0.227484971284866,-0.731376051902771
			 ,-0.413068026304245,-0.384502708911896,-0.825525701045990,-0.112918481230736,0.362865090370178,-0.924955010414124
			 ,-0.944883584976196,0.292275756597519,-0.147373884916306,-0.555772602558136,0.277321696281433,-0.783684790134430
			 ,-0.896084487438202,0.354197829961777,0.267433702945709,0.490737617015839,-0.490401923656464,-0.720175802707672
			 ,0.316263318061829,0.265083760023117,-0.910855412483215,-0.269600510597229,0.828669071197510,-0.490462958812714
			 ,0.955381929874420,-0.021729178726673,-0.294473111629486,-0.974913775920868,0.013245033100247,-0.222052678465843
			 ,-0.215582758188248,0.825647771358490,0.521317183971405,0.674916863441467,-0.639912128448486,-0.367351293563843
			 ,-0.152348399162292,0.988311409950256,0.000274666585028,0.981627881526947,-0.162572100758553,0.099734485149384
			 ,-0.173467203974724,0.579577028751373,0.796197414398193,0.998413026332855,0.014801477082074,0.053804133087397
			 ,0.953764438629150,0.274910748004913,0.121280558407307,0.121982485055923,0.715414881706238,0.687948226928711
			 ,0.525986492633820,-0.850489795207977,0.000000000000000,-0.953093051910400,0.302652060985565,0.000000000000000
			 ,0.890285968780518,0.455397188663483,0.000000000000000,0.920834958553314,-0.389934986829758,0.000000000000000
			 ,-0.055574204772711,-0.998443543910980,0.000000000000000,0.376842558383942,0.926267266273499,0.000000000000000
			 ,0.708639800548553,0.705526888370514,0.000000000000000,-0.857966840267181,0.513687551021576,0.000000000000000
			 ,-0.995300173759460,0.096743673086166,0.000000000000000,-0.863612771034241,0.504104733467102,0.000000000000000
			 ,-0.432721942663193,-0.330179750919342,-0.838862240314484,0.983214795589447,-0.182348087430000,0.000000000000000
			 ,-0.787163913249969,0.616718053817749,0.000000000000000,0.579973757266998,-0.814600050449371,0.000030518509448
			 ,-0.059602648019791,0.229865416884422,-0.971373617649078,-0.631733119487762,0.099429301917553,-0.768730759620667
			 ,-0.916043579578400,0.401043742895126,0.000000000000000,-0.445417642593384,0.205328524112701,-0.871425509452820
			 ,-0.283150732517242,0.196142464876175,-0.938779890537262,0.793847441673279,-0.323129981756210,-0.515091419219971
			 ,-0.437086105346680,0.360789805650711,-0.823847174644470,-0.230811491608620,-0.001709036529064,-0.972991108894348
			 ,0.030091250315309,-0.130710780620575,-0.990935981273651,-0.167516097426414,-0.472975850105286,-0.864986121654510
			 ,-0.047181613743305,-0.403820931911469,-0.913602113723755,0.158116400241852,-0.242255926132202,-0.957213044166565
			 ,0.089693896472454,0.211645856499672,-0.973204731941223,-0.568407237529755,-0.406628608703613,-0.715201258659363
			 ,-0.147221297025681,-0.440778821706772,-0.885433495044708,0.053132724016905,-0.701071202754974,-0.711081266403198
			 ,0.338206112384796,-0.446424752473831,-0.828424930572510,0.575273931026459,-0.817926585674286,0.000000000000000
			 ,0.438947707414627,-0.222144231200218,-0.870601534843445,-0.824701666831970,0.210089415311813,-0.525070965290070
			 ,0.131534770131111,-0.615466773509979,-0.777092814445496,0.111453592777252,-0.061830498278141,-0.991821050643921
			 ,0.214331492781639,-0.709738433361053,-0.671041011810303,0.378429532051086,-0.636707663536072,-0.671803951263428
			 ,0.030487991869450,0.999511718750000,0.000000000000000,-0.905636787414551,-0.201208531856537,-0.373210847377777
			 ,-0.755699336528778,-0.654896676540375,0.000000000000000,0.226722002029419,-0.162083804607391,-0.960356473922729
			 ,0.180974766612053,0.983458995819092,0.000000000000000,0.147129729390144,0.167760252952576,-0.974761188030243
			 ,0.372905671596527,-0.726584672927856,-0.577043950557709,0.835108518600464,0.550035119056702,0.000000000000000
			 ,-0.266731768846512,-0.292245239019394,-0.918362975120544,-0.327127903699875,-0.246040225028992,-0.912381350994110
			 ,-0.084627829492092,-0.200933873653412,-0.975920915603638,0.084139533340931,0.039277322590351,-0.995666384696960
			 ,0.059511095285416,-0.006836146116257,-0.998199403285980,0.233100369572639,0.037781916558743,-0.971709370613098
			 ,0.418744474649429,-0.460921049118042,-0.782403051853180,-0.148960843682289,0.042054504156113,-0.987945199012756
			 ,-0.574571967124939,0.818414866924286,0.000000000000000,-0.675527215003967,-0.246650591492653,-0.694845438003540
			 ,0.495925784111023,-0.356028944253922,-0.791985809803009,0.542344450950623,-0.783501684665680,-0.303170859813690
			 ,0.660176396369934,-0.135929435491562,-0.738669991493225,-0.888149678707123,0.314065992832184,-0.335428923368454
			 ,0.642170488834381,0.218817710876465,-0.734611034393311,0.906094551086426,-0.380413234233856,-0.185094758868217
			 ,0.070497758686543,-0.320322275161743,-0.944669961929321,0.285103917121887,-0.430402547121048,-0.856410384178162
			 ,0.454542666673660,-0.595385611057281,-0.662465274333954,-0.819788217544556,-0.572618782520294,0.000000000000000
			 ,0.590746760368347,-0.706198334693909,-0.390209674835205,-0.218634605407715,-0.151524394750595,-0.963957667350769
			 ,0.659138739109039,0.300973534584045,-0.689138472080231,-0.372356325387955,0.071932129561901,-0.925290703773499
			 ,0.847682118415833,-0.530442237854004,0.000000000000000,0.470351278781891,0.251411467790604,-0.845881521701813
			 ,-0.274178296327591,0.280373543500900,-0.919888913631439,-0.333475738763809,0.013153477571905,-0.942655742168427
			 ,-0.278756052255630,-0.725089251995087,-0.629657864570618,-0.798547327518463,-0.032959990203381,-0.600970506668091
			 ,-0.685598313808441,0.012695699930191,-0.727835953235626,0.984221935272217,-0.146671950817108,0.098879970610142
			 ,-0.928800344467163,-0.036072880029678,-0.368755161762238,0.722922444343567,-0.586413145065308,-0.365306556224823
			 ,0.508041620254517,0.434980303049088,0.743369877338409,-0.783288061618805,0.432081043720245,0.446913063526154
			 ,0.769707322120667,0.638386189937592,0.000000000000000,0.885402977466583,-0.263466298580170,-0.382915735244751
			 ,0.187139496207237,0.730002760887146,-0.657307684421539,0.116946928203106,0.215002894401550,-0.969573020935059
			 ,0.104800559580326,0.215765863656998,-0.970793783664703,0.087527081370354,0.221259191632271,-0.971251547336578
			 ,0.037934508174658,-0.756981134414673,-0.652302622795105,-0.761436820030212,0.601641893386841,-0.241187781095505
			 ,0.351695299148560,-0.065004423260689,-0.933835864067078,0.163396105170250,0.617297887802124,-0.769554734230042
			 ,0.995605349540710,-0.093264564871788,0.003814813680947,-0.327707767486572,-0.863155007362366,-0.384075433015823
			 ,-0.216589868068695,0.018860438838601,-0.976073503494263,0.363780617713928,0.833063781261444,-0.416638702154160
			 ,0.667226195335388,0.113315224647522,-0.736136972904205,-0.445600748062134,0.719321250915527,0.532883703708649
			 ,0.611590921878815,0.764976978302002,0.201788380742073,0.609851360321045,0.360454112291336,-0.705740511417389
			 ,-0.512558341026306,0.346263021230698,-0.785699009895325,-0.161595508456230,-0.986846506595612,0.000000000000000
			 ,0.313058882951736,-0.843836784362793,-0.435773789882660,-0.555192708969116,-0.267433702945709,-0.787530124187469
			 ,0.497512727975845,-0.767693102359772,-0.403790384531021,0.571611702442169,-0.739799201488495,-0.354838699102402
			 ,0.842127740383148,-0.358012646436691,-0.403180032968521,-0.717429101467133,0.426831871271133,-0.550492882728577
			 ,0.412549197673798,-0.863429665565491,-0.290261536836624,-0.664571046829224,0.255195766687393,-0.702230930328369
			 ,0.614123940467834,0.445844918489456,-0.651173412799835,0.470534384250641,-0.873165071010590,-0.127018034458160
			 ,-0.544175565242767,-0.750419616699219,-0.375102996826172,-0.122226633131504,0.027588732540607,-0.992095708847046
			 ,-0.444471567869186,0.248970001935959,-0.860469400882721,-0.453871279954910,-0.430341511964798,-0.780205667018890
			 ,0.123569443821907,-0.724295794963837,-0.678273856639862,-0.468398094177246,0.715445399284363,-0.518387377262115
			 ,-0.574907660484314,0.734519481658936,-0.360484629869461,-0.647236526012421,0.341471612453461,-0.681478321552277
			 ,-0.402783274650574,-0.446241647005081,-0.799127161502838,-0.952513217926025,-0.304483175277710,0.000000000000000
			 ,-0.276070445775986,0.251136809587479,-0.927732169628143,-0.715720057487488,0.523545026779175,-0.462172299623489
			 ,0.633472681045532,-0.772270858287811,-0.047517318278551,0.388103872537613,-0.873287141323090,-0.294412046670914
			 ,-0.896938979625702,0.161534473299980,-0.411542087793350,-0.801690697669983,-0.372997224330902,-0.467024743556976
			 ,0.764519155025482,-0.447462379932404,-0.463911861181259,0.004730368964374,-0.667043089866638,-0.744987308979034
			 ,0.946653664112091,-0.321848213672638,-0.015411847271025,-0.623554170131683,0.372447878122330,-0.687337875366211
			 ,-0.745475649833679,0.070314645767212,-0.662770450115204,0.311868637800217,-0.634846031665802,-0.706839203834534
			 ,0.110965296626091,0.233680233359337,-0.965941369533539,-0.398663282394409,0.412244021892548,-0.819177806377411
			 ,-0.845362722873688,-0.038819544017315,-0.532700598239899,-0.138248845934868,-0.109897151589394,-0.984252452850342
			 ,-0.179723501205444,-0.103976562619209,-0.978179275989532,-0.212469860911369,-0.269997239112854,-0.939115583896637
			 ,0.251838743686676,-0.851405382156372,-0.460036009550095,0.290932953357697,0.031067842617631,-0.956205964088440
			 ,-0.504623532295227,-0.069704279303551,-0.860499918460846,-0.471388906240463,-0.104831077158451,-0.875667572021484
			 ,0.150028988718987,-0.206122010946274,-0.966948449611664,0.052369762212038,-0.831049501895905,-0.553697288036346
			 ,0.877712309360504,-0.410138249397278,-0.247688218951225,0.451857060194016,-0.050263985991478,-0.890652179718018
			 ,0.598040699958801,-0.202917575836182,-0.775322735309601,-0.824671149253845,-0.530991554260254,-0.194647058844566
			 ,0.536637485027313,-0.175725579261780,-0.825281560420990,0.401745647192001,-0.000274666585028,-0.915738403797150
			 ,-0.959990262985229,0.156285285949707,-0.232245862483978,-0.224677264690399,-0.913937807083130,-0.337931454181671
			 ,-0.082979828119278,-0.633259057998657,-0.769463181495667,-0.131260111927986,0.288552492856979,-0.948393225669861
			 ,-0.171208843588829,-0.798394739627838,-0.577227115631104,-0.328623294830322,-0.935270249843597,-0.131351664662361
			 ,0.048280283808708,-0.023712880909443,-0.998535096645355,-0.583086669445038,-0.810205399990082,-0.059389017522335
			 ,-0.217383340001106,-0.387371450662613,-0.895901381969452,-0.359263896942139,-0.933225512504578,0.000000000000000
			 ,-0.002929776906967,-0.060518205165863,-0.998138368129730,-0.454390078783035,-0.657582342624664,-0.600878953933716
			 ,0.066866055130959,-0.647846937179565,-0.758812189102173,-0.396008193492889,-0.290047913789749,-0.871211886405945
			 ,-0.316324353218079,-0.214362010359764,-0.924100458621979,-0.372966706752777,-0.070467241108418,-0.925138115882874
			 ,-0.287240207195282,-0.175725579261780,-0.941587567329407,-0.274727612733841,-0.508468866348267,-0.816034436225891
			 ,-0.895809829235077,0.043061617761850,-0.442304760217667,-0.481398969888687,0.148686170578003,-0.863765358924866
			 ,-0.481765180826187,0.108676411211491,-0.869502842426300,-0.158391058444977,0.404980629682541,-0.900479137897491
			 ,0.160039067268372,0.320688486099243,-0.933530688285828,0.575579106807709,0.549577295780182,-0.605487227439880
			 ,0.335581541061401,0.302438437938690,-0.892117083072662,0.249794006347656,0.357676923274994,-0.899777233600616
			 ,0.461378812789917,0.234778895974159,-0.855555891990662,0.316751599311829,0.202459797263145,-0.926633477210999
			 ,0.524674236774445,0.851283311843872,0.000000000000000,-0.728751480579376,0.554551839828491,-0.401684612035751
			 ,-0.678151786327362,0.734916210174561,0.000000000000000,-0.643574357032776,0.503280758857727,-0.576616704463959
			 ,-0.055116429924965,0.074343085289001,-0.995696902275085,-0.205359056591988,-0.122867517173290,-0.970915853977203
			 ,-0.391491442918777,0.019318215548992,-0.919949948787689,-0.310525834560394,0.006469924002886,-0.950529515743256
			 ,-0.405957221984863,0.139561146497726,-0.903134226799011,-0.377727597951889,0.258857995271683,-0.888973653316498
			 ,-0.459364593029022,0.000152592547238,-0.888210713863373,-0.606555402278900,0.795007169246674,0.000000000000000
			 ,-0.538651704788208,0.346629232168198,-0.767906725406647,-0.358409374952316,0.295175015926361,-0.885647118091583
			 ,-0.390423297882080,-0.264900654554367,-0.881679713726044,-0.360545665025711,0.001068147830665,-0.932706713676453
			 ,-0.101992860436440,-0.157963812351227,-0.982146680355072,-0.516129016876221,-0.175389871001244,-0.838343441486359
			 ,-0.843897819519043,0.313241988420486,-0.435499131679535,-0.599230945110321,0.140964999794960,-0.788048923015594
			 ,-0.489394813776016,0.274208813905716,-0.827814579010010,-0.125003814697266,0.168004393577576,-0.977813065052032
			 ,0.944303691387177,-0.328989535570145,0.000000000000000,-0.015106662176549,-0.430219441652298,-0.902584910392761
			 ,-0.145603805780411,-0.167027801275253,-0.975127398967743,0.971373617649078,-0.219000816345215,-0.091891229152679
			 ,0.967314660549164,-0.249641403555870,-0.044099245220423,0.113193154335022,-0.392132341861725,-0.912900149822235
			 ,0.722403645515442,-0.397076338529587,-0.566057324409485,0.966154992580414,-0.240577414631844,-0.092806786298752
			 ,0.978606522083282,-0.205572679638863,0.000000000000000,-0.404431283473969,-0.121616259217262,-0.906430244445801
			 ,-0.542588591575623,-0.266975909471512,-0.796411037445068,-0.497543245553970,-0.516067981719971,-0.697195351123810
			 ,-0.049928281456232,-0.260536521673203,-0.964140772819519,0.244361698627472,0.224707782268524,-0.943266093730927
			 ,0.631763637065887,0.775139629840851,0.000000000000000,-0.305276662111282,0.123477891087532,-0.944212138652802
			 ,-0.273537397384644,-0.148869290947914,-0.950254857540131,-0.383953362703323,0.073488570749760,-0.920407712459564
			 ,-0.692739665508270,0.394299149513245,-0.603808701038361,-0.581164002418518,0.367809087038040,-0.725882768630981
			 ,-0.329691469669342,0.068971827626228,-0.941526532173157,-0.794213712215424,0.607623517513275,0.000000000000000
			 ,-0.438886672258377,0.175115212798119,-0.881282985210419,-0.708822906017303,0.481917768716812,-0.515060901641846
			 ,-0.554795980453491,0.263130575418472,-0.789239168167114,-0.595233023166656,0.131229594349861,-0.792718291282654
			 ,-0.515091419219971,-0.317117840051651,-0.796288967132568,-0.579882204532623,-0.316537976264954,-0.750633239746094
			 ,0.551896750926971,0.026520583778620,-0.833460509777069,0.492141485214233,0.255867183208466,-0.832026124000549
			 ,0.464888453483582,0.392803728580475,-0.793450713157654,0.595873892307281,0.413190096616745,-0.688619673252106
			 ,0.457838684320450,-0.183690905570984,-0.869808018207550,0.281899482011795,-0.242286443710327,-0.928342521190643
			 ,-0.640430927276611,-0.327127903699875,-0.694814920425415,-0.758629083633423,0.006744590587914,-0.651448130607605
			 ,0.509170830249786,-0.748680055141449,-0.424481958150864,0.684316515922546,-0.359355449676514,-0.634449303150177
			 ,-0.567094922065735,0.216834008693695,-0.794549405574799,0.245948672294617,-0.811761856079102,-0.529618203639984
			 ,0.540421783924103,-0.571611702442169,-0.617389440536499,0.324625372886658,-0.408276617527008,-0.853175461292267
			 ,-0.501663267612457,-0.865047156810760,0.000000000000000,0.624256134033203,-0.645588576793671,-0.439863264560699
			 ,0.564989149570465,-0.750511169433594,-0.342753380537033,0.039246805012226,-0.239478737115860,-0.970091879367828
			 ,0.387707144021988,-0.921750545501709,0.000000000000000,-0.432538837194443,-0.409283727407455,-0.803338706493378
			 ,-0.927793204784393,0.368541508913040,-0.057741019874811,-0.953306674957275,0.203192234039307,-0.223395496606827
			 ,-0.501663267612457,-0.469222068786621,-0.726706743240356,-0.600176990032196,-0.261421561241150,-0.755912959575653
			 ,-0.943205058574677,0.315408796072006,0.103946045041084,-0.362376779317856,0.477919846773148,0.800134301185608
			 ,0.360362559556961,0.171941280364990,-0.916806519031525,0.399884015321732,0.236152231693268,-0.885586082935333
			 ,-0.366466253995895,0.863551735877991,-0.346324056386948,-0.422437220811844,0.906369209289551,0.000061037018895
			 ,-0.207159638404846,0.819696664810181,-0.533982336521149,0.421338528394699,-0.119571521878242,-0.898953199386597
			 ,-0.134342476725578,0.221289709210396,-0.965880334377289,0.968779563903809,0.165746018290520,-0.184331804513931
			 ,-0.047791987657547,0.811395585536957,0.582506775856018,0.347422719001770,0.719687461853027,0.601062059402466
			 ,-0.373393952846527,-0.456434816122055,-0.807580769062042,0.586352109909058,-0.669270932674408,-0.456312745809555
			 ,-0.582781434059143,-0.435682237148285,-0.685903489589691,-0.227118745446205,0.970427572727203,-0.081514939665794
			 ,-0.423932611942291,0.745658755302429,0.514023244380951,0.991363286972046,-0.114413894712925,0.063966795802116
			 ,-0.022217474877834,0.648548841476440,0.760826468467712,0.594988882541656,0.454298526048660,0.662984073162079
			 ,0.981047987937927,0.176244392991066,0.080233164131641,0.671987056732178,0.602710068225861,0.430310994386673
			 ,0.674428522586823,0.531327247619629,0.512619376182556,0.811883926391602,-0.583758056163788,0.000000000000000
			 ,-0.999908447265625,-0.011261329986155,0.000000000000000,0.459150969982147,-0.888332784175873,-0.000030518509448
			 ,0.997894227504730,0.064668722450733,0.000000000000000,0.972869038581848,0.231299787759781,0.000000000000000
			 ,0.990386664867401,0.138309881091118,0.000000000000000,-0.367137670516968,-0.930143117904663,0.000000000000000
			 ,0.008423108607531,-0.999938964843750,0.000000000000000,-0.984771251678467,0.173711359500885,0.000000000000000
			 ,0.814630568027496,-0.579943239688873,0.000000000000000,0.803643882274628,0.595080435276031,0.000000000000000
			 ,0.999633789062500,0.026551103219390,0.000000000000000,-0.309579759836197,0.229560226202011,-0.922727108001709
			 ,0.082491531968117,-0.043092135339975,-0.995635867118835,0.088991969823837,0.175756096839905,-0.980376601219177
			 ,-0.322885841131210,-0.267464220523834,-0.907834112644196,-0.312509536743164,0.085116125643253,-0.946073770523071
			 ,0.301004052162170,-0.681875050067902,-0.666646301746368,0.315591901540756,-0.452772617340088,-0.833887755870819
			 ,-0.527420878410339,-0.658375799655914,-0.536942660808563,-0.295846432447433,0.262215018272400,-0.918515563011169
			 ,-0.226081117987633,0.421979427337646,-0.877956509590149,-0.918027281761169,0.036713767796755,-0.394756913185120
			 ,0.051057465374470,-0.329935610294342,-0.942594707012177,0.281258583068848,-0.070162050426006,-0.957060456275940
			 ,-0.122196108102798,-0.452497929334641,-0.883327722549438,0.415051728487015,-0.422620326280594,-0.805658102035522
			 ,-0.204901278018951,-0.154820397496223,-0.966429650783539,0.126071959733963,-0.717062890529633,-0.685476243495941
			 ,0.006897183135152,-0.104586929082870,-0.994476139545441,0.178014472126961,0.142399370670319,-0.973631978034973
			 ,-0.179784536361694,-0.274513989686966,-0.944608926773071,0.315683454275131,0.221167638897896,-0.922696590423584
			 ,0.393414109945297,0.206335648894310,-0.895870864391327,0.258766442537308,0.741508245468140,0.618976414203644
			 ,0.482924878597260,-0.577867984771729,-0.657887518405914,0.738242745399475,-0.614703834056854,-0.277657389640808
			 ,0.414685517549515,-0.851130723953247,-0.321817696094513,-0.847743153572083,-0.061647389084101,-0.526780009269714
			 ,0.694723367691040,-0.294808804988861,-0.656056404113770,0.247566148638725,-0.547013759613037,-0.799645960330963
			 ,0.237800225615501,-0.561021745204926,-0.792870879173279,0.667287230491638,0.063814200460911,-0.742027044296265
			 ,-0.345744192600250,0.779198586940765,-0.522721052169800,-0.656514167785645,0.170201733708382,-0.734855175018311
			 ,-0.574114203453064,-0.420758694410324,-0.702353000640869,-0.814691603183746,-0.183782458305359,-0.549943566322327
			 ,-0.946470558643341,0.117709890007973,-0.300515770912170,0.710287809371948,0.523850202560425,0.470137625932693
			 ,0.621936678886414,0.288399904966354,-0.727988541126251,0.420545071363449,-0.755088984966278,-0.502914488315582
			 ,0.221655935049057,0.974242389202118,-0.041261024773121,0.174993127584457,0.916531860828400,-0.359599590301514
			 ,0.658742010593414,0.164128541946411,-0.734244823455811,0.608569622039795,0.478011399507523,-0.633320093154907
			 ,-0.683614611625671,0.409405797719955,-0.604144394397736,-0.882869958877563,0.219519644975662,-0.415082246065140
			 ,-0.097659230232239,-0.914273500442505,-0.393108934164047,-0.784417271614075,0.388988912105560,-0.483046978712082
			 ,0.411358982324600,-0.886806845664978,-0.210486158728600,0.326364934444427,-0.868068456649780,-0.374004334211349
			 ,-0.751670897006989,-0.484237194061279,-0.447706520557404,-0.534714818000793,0.766716539859772,-0.355174422264099
			 ,0.906064033508301,-0.289529085159302,-0.308481097221375,-0.002960295416415,-0.931058704853058,-0.364848792552948
			 ,-0.559282183647156,0.464400172233582,-0.686635971069336,0.807306110858917,-0.588152706623077,-0.047669909894466
			 ,-0.864864051342010,-0.276192516088486,-0.419141203165054,-0.853785812854767,-0.193609416484833,-0.483260601758957
			 ,0.538407564163208,-0.839960932731628,-0.067506939172745,-0.736899912357330,0.523331403732300,-0.427838981151581
			 ,-0.587939083576202,0.411938846111298,-0.696127176284790,-0.569658517837524,-0.693014323711395,-0.441785931587219
			 ,-0.726401567459106,0.112277597188950,-0.678029716014862,-0.654927194118500,0.286751925945282,-0.699148535728455
			 ,0.755577266216278,-0.557786822319031,-0.343394279479980,-0.046540725976229,0.364055305719376,-0.930204153060913
			 ,0.245551928877831,0.124790184199810,-0.961302518844604,-0.907803595066071,0.252998441457748,-0.334421813488007
			 ,-0.724967181682587,0.194616541266441,-0.660664677619934,-0.456709504127502,-0.651387095451355,-0.605853438377380
			 ,0.291543334722519,-0.657704412937164,-0.694540262222290,0.787438571453094,-0.536332309246063,-0.303689688444138
			 ,0.681203663349152,-0.384044915437698,-0.623218476772308,-0.559923112392426,-0.053559985011816,-0.826776921749115
			 ,-0.972106099128723,-0.041596729308367,-0.230689406394958,-0.315744489431381,-0.948087990283966,-0.037629321217537
			 ,-0.344340354204178,-0.373149812221527,-0.861476480960846,0.234870448708534,-0.127231672406197,-0.963652431964874
			 ,0.056794945150614,-0.404370248317719,-0.912808597087860,-0.310312211513519,0.018768884241581,-0.950437963008881
			 ,-0.325846135616302,-0.137882620096207,-0.935300767421722,0.008880886249244,0.370464175939560,-0.928800344467163
			 ,-0.385601371526718,0.199468970298767,-0.900814831256866,0.179204687476158,0.154393136501312,-0.971587240695953
			 ,0.483626812696457,0.738151192665100,-0.470290243625641,0.375530272722244,0.205420091748238,-0.903744637966156
			 ,0.336130857467651,0.460310667753220,-0.821649849414825,0.262794882059097,0.247901856899261,-0.932431995868683
			 ,-0.612475991249084,0.253547787666321,-0.748680055141449,-0.656147956848145,0.649739086627960,-0.383739739656448
			 ,-0.359721660614014,0.055818352848291,-0.931363880634308,-0.203650012612343,-0.070925012230873,-0.976439714431763
			 ,-0.080721460282803,-0.524552166461945,-0.847499012947083,-0.409955143928528,-0.150639355182648,-0.899563610553741
			 ,-0.536484897136688,-0.044618062674999,-0.842707574367523,-0.424878686666489,0.190679639577866,-0.884914696216583
			 ,-0.294015318155289,-0.090121157467365,-0.951506078243256,-0.286233097314835,-0.239448219537735,-0.927732169628143
			 ,-0.056184574961662,0.122043520212173,-0.990905463695526,-0.434675127267838,0.285164952278137,-0.854213058948517
			 ,-0.589129328727722,0.260383933782578,-0.764885425567627,0.977568864822388,-0.210547193884850,-0.000885036773980
			 ,-0.473250538110733,0.151524394750595,-0.867763280868530,-0.369396030902863,0.287301242351532,-0.883724451065063
			 ,-0.150334179401398,-0.280861854553223,-0.947874367237091,-0.718283653259277,0.431897938251495,-0.545426785945892
			 ,0.354350417852402,0.301889091730118,-0.885006248950958,-0.351542711257935,0.209143340587616,-0.912472903728485
			 ,0.037171542644501,0.343943595886230,-0.938230514526367,0.541428864002228,0.635181725025177,-0.550767540931702
			 ,-0.433973193168640,0.203955203294754,-0.877498686313629,-0.705709993839264,0.511795401573181,-0.489883124828339
			 ,-0.458967864513397,0.149845883250237,-0.875698089599609,-0.710501432418823,0.427900016307831,-0.558610796928406
			 ,-0.497817933559418,-0.103610336780548,-0.861049234867096,0.354197829961777,0.400219738483429,-0.845179617404938
			 ,0.250312805175781,0.176519066095352,-0.951902806758881,0.776116192340851,-0.222052678465843,-0.590166926383972
			 ,0.480300307273865,-0.845057547092438,-0.234809413552284,-0.708548247814178,-0.065858945250511,-0.702536106109619
			 ,0.442365795373917,-0.737144052982330,-0.510757803916931,0.542558073997498,-0.358836621046066,-0.759483635425568
			 ,-0.398846387863159,-0.767540514469147,-0.501724302768707,-0.737540841102600,-0.329355746507645,-0.589495539665222
			 ,-0.728629410266876,0.461592465639114,-0.505935847759247,0.176610618829727,0.522354781627655,-0.834223449230194
			 ,0.929136037826538,0.208716079592705,-0.305093526840210,0.453840762376785,0.660634160041809,0.597949147224426
			 ,0.372631013393402,0.669026792049408,0.643055498600006,-0.806909382343292,0.305642873048782,-0.505386531352997
			 ,-0.301492363214493,0.518967270851135,0.799829125404358,0.534257054328918,0.449446082115173,0.715933740139008
			 ,0.649098157882690,0.479903548955917,0.590197443962097,0.954161226749420,0.253303617238998,0.159215062856674
			 ,0.674642145633698,0.583147704601288,0.452497929334641,0.632343530654907,-0.774651348590851,0.000000000000000
			 ,0.939695417881012,0.341929376125336,0.000000000000000,0.314127027988434,-0.949369788169861,0.000000000000000
			 ,0.601428270339966,-0.798883020877838,0.000000000000000,-0.978331863880157,0.206946015357971,0.000000000000000
			 ,-0.920163571834564,0.391460925340652,0.000000000000000,0.964415431022644,-0.264290302991867,0.000000000000000
			 ,-0.362346261739731,-0.932035267353058,0.000000000000000,-0.839930415153503,0.542680144309998,0.000000000000000
			 ,-0.696188211441040,0.272042006254196,-0.664296388626099,0.668172240257263,0.085665456950665,-0.739036202430725
			 ,0.000946073792875,-0.999969482421875,0.000000000000000,-0.001068147830665,-0.999969482421875,0.000000000000000
			 ,-0.559099078178406,-0.302987754344940,-0.771721541881561,-0.861415445804596,0.489272743463516,-0.136204108595848
			 ,-0.120517596602440,0.265602588653564,-0.956511139869690,0.040162358433008,-0.850154101848602,-0.524948894977570
			 ,-0.140873432159424,-0.826380193233490,-0.545152127742767,0.160466328263283,0.172826319932938,-0.971770405769348
			 ,-0.850795030593872,-0.144627213478088,-0.505142390727997,-0.750877380371094,-0.490340888500214,-0.442365795373917
			 ,-0.025543991476297,-0.369060337543488,-0.929044485092163,-0.408551275730133,0.185552537441254,-0.893643021583557
			 ,-0.167332991957664,-0.649006605148315,-0.742118597030640,-0.467787712812424,-0.699240088462830,-0.540513336658478
			 ,-0.821130990982056,-0.560106217861176,-0.109408855438232,0.094729453325272,-0.809167742729187,-0.579851686954498
			 ,-0.283852666616440,0.500717163085938,-0.817712962627411,0.286416202783585,-0.090395823121071,-0.953825473785400
			 ,0.317300945520401,-0.369731754064560,-0.873256623744965,-0.125461593270302,-0.023346658796072,-0.991821050643921
			 ,-0.317392498254776,-0.694143474102020,-0.646046340465546,-0.621021151542664,-0.767967760562897,-0.156620994210243
			 ,-0.039094209671021,0.380962550640106,-0.923734247684479,0.473738819360733,-0.353587448596954,-0.806543171405792
			 ,-0.755424678325653,0.421887874603271,-0.501327574253082,-0.910977482795715,0.235175639390945,-0.338755458593369
			 ,0.295602291822433,0.262733846902847,-0.918454527854919,-0.709006011486053,0.135288551449776,-0.692068219184875
			 ,-0.977965652942657,-0.017517624422908,-0.207922607660294,0.250801116228104,-0.622180879116058,-0.741599798202515
			 ,-0.376812040805817,-0.887997090816498,-0.263466298580170,-0.621173739433289,-0.611529886722565,-0.490005195140839
			 ,-0.820581674575806,-0.322794288396835,-0.471572011709213,-0.568559825420380,0.174779504537582,-0.803827047348022
			 ,-0.798791468143463,0.002899258397520,-0.601580858230591,-0.744804203510284,0.545670926570892,-0.384044915437698
			 ,-0.314706861972809,-0.942319989204407,-0.113834038376808,-0.209112823009491,0.635242760181427,-0.743430912494659
			 ,-0.535081028938293,0.515854358673096,-0.668965697288513,-0.819452524185181,-0.569811105728149,0.061128575354815
			 ,-0.997619569301605,0.046510208398104,-0.050752282142639,0.220923483371735,-0.852748215198517,-0.473250538110733
			 ,0.436750382184982,-0.036957915872335,-0.898800611495972,-0.065370649099350,-0.196508675813675,-0.978301346302032
			 ,0.396374404430389,-0.640125751495361,-0.658070623874664,-0.087160862982273,-0.522232711315155,-0.848322987556458
			 ,-0.498611420392990,-0.292275756597519,-0.816034436225891,-0.029938656836748,-0.958494842052460,-0.283516943454742
			 ,-0.125034332275391,-0.902829051017761,-0.411358982324600,-0.592547357082367,-0.805505514144897,0.005432294681668
			 ,-0.961790800094604,-0.270790725946426,0.039551988244057,-0.946562111377716,-0.296548366546631,-0.126529738306999
			 ,-0.921414852142334,0.332346558570862,-0.201147496700287,-0.495071262121201,0.650715649127960,-0.575701177120209
			 ,-0.264748066663742,0.092196419835091,-0.959868133068085,0.067506939172745,0.497726380825043,-0.864680945873260
		}
		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,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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.306983,0.581783,0.310366,0.602596,0.290480,0.607846,0.288377,0.588528,0.338322,0.450893,0.285589,0.393478,0.319787,0.340890
			 ,0.367007,0.394508,0.136757,0.249796,0.094432,0.142173,0.157783,0.115060,0.191055,0.210591,0.367007,0.394508,0.319787,0.340890
			 ,0.368119,0.287003,0.404151,0.337328,0.338755,0.843828,0.335554,0.859867,0.290279,0.863129,0.295433,0.847710,0.338755,0.843828
			 ,0.295433,0.847710,0.299506,0.831258,0.340275,0.826411,0.338755,0.843828,0.382275,0.837156,0.380945,0.853850,0.335554,0.859867
			 ,0.172529,0.844420,0.159855,0.856777,0.129034,0.851744,0.139095,0.841948,0.172529,0.844420,0.139095,0.841948,0.149101,0.830373
			 ,0.185361,0.829593,0.172529,0.844420,0.185361,0.829593,0.227118,0.825215,0.204934,0.845318,0.172529,0.844420,0.204934,0.845318
			 ,0.191441,0.859813,0.159855,0.856777,0.268206,0.793925,0.230397,0.806031,0.235430,0.787337,0.275876,0.775126,0.268206,0.793925
			 ,0.275876,0.775126,0.316212,0.761404,0.306302,0.780135,0.268206,0.793925,0.306302,0.780135,0.299179,0.797824,0.264976,0.809798
			 ,0.268206,0.793925,0.264976,0.809798,0.227118,0.825215,0.230397,0.806031,0.038141,0.790717,0.033543,0.796881,0.026367,0.789405
			 ,0.031081,0.784397,0.055922,0.714721,0.058995,0.709188,0.076312,0.708205,0.069505,0.714307,0.038141,0.790717,0.041210,0.785219
			 ,0.049721,0.789186,0.047559,0.795248,0.038141,0.790717,0.047559,0.795248,0.043569,0.801435,0.033543,0.796881,0.110983,0.835061
			 ,0.103497,0.843482,0.084251,0.834237,0.090748,0.826507,0.110983,0.835061,0.090748,0.826507,0.099846,0.822538,0.117632,0.826333
			 ,0.110983,0.835061,0.117632,0.826333,0.149101,0.830373,0.139095,0.841948,0.110983,0.835061,0.139095,0.841948,0.129034,0.851744
			 ,0.103497,0.843482,0.081097,0.755404,0.089212,0.746333,0.101854,0.755214,0.087198,0.762867,0.081097,0.755404,0.087198,0.762867
			 ,0.077573,0.768239,0.074114,0.762145,0.081097,0.755404,0.074114,0.762145,0.067748,0.759036,0.071658,0.752281,0.430743,0.781681
			 ,0.432888,0.768027,0.438736,0.766533,0.435985,0.781725,0.430743,0.781681,0.435985,0.781725,0.424340,0.794857,0.422672,0.793175
			 ,0.032491,0.749943,0.033698,0.752907,0.018367,0.761612,0.018755,0.751265,0.194618,0.677353,0.231029,0.662249,0.202945,0.713857
			 ,0.171012,0.723031,0.350913,0.642610,0.335715,0.641548,0.331029,0.618214,0.344305,0.613599,0.139219,0.025652,0.213322,0.012692
			 ,0.222995,0.091299,0.157783,0.115060,0.345615,0.767245,0.306302,0.780135,0.316212,0.761404,0.349337,0.748074,0.345615,0.767245
			 ,0.349337,0.748074,0.381027,0.741236,0.374377,0.758100,0.345615,0.767245,0.374377,0.758100,0.366435,0.778444,0.336693,0.787047
			 ,0.345615,0.767245,0.336693,0.787047,0.299179,0.797824,0.306302,0.780135,0.062722,0.786230,0.061221,0.783239,0.063062,0.781116
			 ,0.067775,0.782957,0.065656,0.776229,0.064609,0.778625,0.061053,0.777433,0.062322,0.775000,0.408820,0.886753,0.379623,0.887714
			 ,0.380945,0.853850,0.408821,0.846033,0.408820,0.886753,0.408821,0.846033,0.430074,0.837070,0.431876,0.884635,0.409021,0.797410
			 ,0.409100,0.799439,0.394707,0.797116,0.395152,0.793807,0.409021,0.797410,0.395152,0.793807,0.395947,0.789523,0.408272,0.792358
			 ,0.409021,0.797410,0.408272,0.792358,0.419978,0.788352,0.422672,0.793175,0.409021,0.797410,0.422672,0.793175,0.424340,0.794857
			 ,0.409100,0.799439,0.454517,0.803665,0.455738,0.826414,0.430074,0.837070,0.430385,0.818129,0.454517,0.803665,0.430385,0.818129
			 ,0.429677,0.804391,0.451041,0.788155,0.454517,0.803665,0.474738,0.790639,0.478922,0.816221,0.455738,0.826414,0.056055,0.727432
			 ,0.067517,0.723315,0.069341,0.729812,0.054493,0.737122,0.052002,0.778323,0.052522,0.774645,0.055404,0.775427,0.053950,0.776644
			 ,0.052577,0.694505,0.068353,0.698574,0.058995,0.709188,0.040675,0.708040,0.419395,0.183279,0.502063,0.157813,0.483108,0.236237
			 ,0.435015,0.247675,0.342325,0.221850,0.419395,0.183279,0.435015,0.247675,0.368119,0.287003,0.581922,0.740272,0.616392,0.749169
			 ,0.615551,0.757029,0.589957,0.753006,0.590603,0.792002,0.575824,0.797576,0.570668,0.778913,0.592777,0.777460,0.590603,0.792002
			 ,0.592130,0.806074,0.583535,0.813833,0.575824,0.797576,0.583061,0.108992,0.563294,0.118491,0.550217,0.075540,0.572048,0.068309
			 ,0.681537,0.766715,0.700961,0.776681,0.678018,0.776760,0.671037,0.773116,0.516925,0.200062,0.521063,0.221136,0.499849,0.253389
			 ,0.496934,0.242722,0.592126,0.136388,0.600224,0.157439,0.579605,0.166451,0.570950,0.146586,0.650433,0.797857,0.655422,0.787980
			 ,0.658271,0.791483,0.652616,0.802583,0.650433,0.797857,0.652616,0.802583,0.647254,0.813993,0.645330,0.808376,0.201316,0.658844
			 ,0.204517,0.644701,0.240072,0.625564,0.237153,0.642306,0.080050,0.819217,0.090748,0.826507,0.084251,0.834237,0.071789,0.826626
			 ,0.080050,0.819217,0.093940,0.815580,0.099846,0.822538,0.090748,0.826507,0.333085,0.887715,0.286899,0.886602,0.290279,0.863129
			 ,0.335554,0.859867,0.333085,0.887715,0.335554,0.859867,0.380945,0.853850,0.379623,0.887714,0.267358,0.631768,0.237153,0.642306
			 ,0.240072,0.625564,0.267790,0.614327,0.152653,0.875271,0.122781,0.871140,0.129034,0.851744,0.159855,0.856777,0.152653,0.875271
			 ,0.159855,0.856777,0.191441,0.859813,0.183056,0.878370,0.001255,0.781687,0.000158,0.769126,0.007923,0.766590,0.008697,0.779926
			 ,0.430709,0.757469,0.437863,0.755838,0.438736,0.766533,0.432888,0.768027,0.430709,0.757469,0.432888,0.768027,0.428027,0.770601
			 ,0.425489,0.761831,0.430709,0.757469,0.423209,0.750875,0.429523,0.746857,0.437863,0.755838,0.058795,0.797334,0.056468,0.802771
			 ,0.043569,0.801435,0.047559,0.795248,0.058795,0.797334,0.047559,0.795248,0.049721,0.789186,0.059177,0.792502,0.058795,0.797334
			 ,0.059177,0.792502,0.067718,0.791505,0.068005,0.796770,0.058795,0.797334,0.068005,0.796770,0.067290,0.801543,0.056468,0.802771
			 ,0.073932,0.793981,0.068005,0.796770,0.067718,0.791505,0.072995,0.787934,0.077573,0.768239,0.077763,0.776768,0.071074,0.777766
			 ,0.069593,0.773391,0.072995,0.787934,0.067775,0.782957,0.070398,0.780136,0.076637,0.784356,0.067718,0.791505,0.062722,0.786230
			 ,0.067775,0.782957,0.072995,0.787934,0.055384,0.753247,0.071658,0.752281,0.067748,0.759036,0.056054,0.758595,0.085501,0.775593
			 ,0.079596,0.787362,0.076637,0.784356,0.077763,0.776768,0.073932,0.793981,0.072995,0.787934,0.076637,0.784356,0.079596,0.787362
			 ,0.073932,0.793981,0.079596,0.787362,0.082319,0.791867,0.074598,0.798776,0.073932,0.793981,0.074598,0.798776,0.067290,0.801543
			 ,0.068005,0.796770,0.022164,0.803927,0.015115,0.795182,0.026367,0.789405,0.033543,0.796881,0.085501,0.775593,0.087198,0.762867
			 ,0.101854,0.755214,0.092834,0.776978,0.085501,0.775593,0.092834,0.776978,0.082319,0.791867,0.079596,0.787362,0.076637,0.784356
			 ,0.070398,0.780136,0.071074,0.777766,0.077763,0.776768,0.085501,0.775593,0.077763,0.776768,0.077573,0.768239,0.087198,0.762867
			 ,0.044809,0.780262,0.045213,0.773295,0.052522,0.774645,0.052002,0.778323,0.057132,0.773649,0.056665,0.771797,0.060461,0.771302
			 ,0.059319,0.774050,0.057132,0.773649,0.059319,0.774050,0.058046,0.776272,0.055404,0.775427,0.062322,0.775000,0.063860,0.772411
			 ,0.066107,0.773975,0.065656,0.776229,0.069593,0.773391,0.071074,0.777766,0.065656,0.776229,0.066107,0.773975,0.062322,0.775000
			 ,0.061053,0.777433,0.058046,0.776272,0.059319,0.774050,0.062322,0.775000,0.059319,0.774050,0.060461,0.771302,0.063860,0.772411
			 ,0.351991,0.724217,0.353495,0.697712,0.373054,0.694595,0.376345,0.718164,0.351991,0.724217,0.376345,0.718164,0.381027,0.741236
			 ,0.349337,0.748074,0.351991,0.724217,0.349337,0.748074,0.316212,0.761404,0.326012,0.734268,0.351991,0.724217,0.326012,0.734268
			 ,0.334987,0.702004,0.353495,0.697712,0.456441,0.718280,0.475593,0.712211,0.483823,0.738085,0.472114,0.742238,0.444348,0.725082
			 ,0.455982,0.743035,0.429523,0.746857,0.423017,0.729162,0.617375,0.065857,0.612179,0.038591,0.641871,0.052031,0.633308,0.069886
			 ,0.389495,0.761174,0.387604,0.760506,0.397101,0.750342,0.397517,0.753060,0.389495,0.761174,0.386239,0.771862,0.383526,0.773441
			 ,0.387604,0.760506,0.409443,0.828723,0.408821,0.846033,0.380945,0.853850,0.382275,0.837156,0.409443,0.828723,0.430385,0.818129
			 ,0.430074,0.837070,0.408821,0.846033,0.337182,0.807224,0.298851,0.814916,0.299179,0.797824,0.336693,0.787047,0.337182,0.807224
			 ,0.336693,0.787047,0.366435,0.778444,0.369690,0.799300,0.337182,0.807224,0.340275,0.826411,0.299506,0.831258,0.298851,0.814916
			 ,0.132801,0.783894,0.147879,0.761597,0.182947,0.749826,0.164783,0.781290,0.132801,0.783894,0.164783,0.781290,0.156174,0.799533
			 ,0.121959,0.802193,0.202407,0.775121,0.194806,0.795003,0.156174,0.799533,0.164783,0.781290,0.202407,0.775121,0.164783,0.781290
			 ,0.182947,0.749826,0.221919,0.736020,0.202407,0.775121,0.221919,0.736020,0.263657,0.720339,0.243345,0.765679,0.202407,0.775121
			 ,0.243345,0.765679,0.235430,0.787337,0.194806,0.795003,0.410334,0.749793,0.411106,0.746277,0.429523,0.746857,0.423209,0.750875
			 ,0.410334,0.749793,0.397517,0.753060,0.397101,0.750342,0.411106,0.746277,0.409808,0.814741,0.384617,0.818770,0.394707,0.797116
			 ,0.409100,0.799439,0.035971,0.685133,0.058471,0.668857,0.061732,0.677063,0.043452,0.690075,0.464799,0.759199,0.468380,0.771721
			 ,0.438736,0.766533,0.437863,0.755838,0.403342,0.732447,0.423017,0.729162,0.429523,0.746857,0.411106,0.746277,0.385377,0.672589
			 ,0.391066,0.693147,0.373054,0.694595,0.369504,0.671065,0.119072,0.815720,0.121959,0.802193,0.156174,0.799533,0.152885,0.816084
			 ,0.119072,0.815720,0.152885,0.816084,0.149101,0.830373,0.117632,0.826333,0.119072,0.815720,0.117632,0.826333,0.099846,0.822538
			 ,0.093940,0.815580,0.119072,0.815720,0.093940,0.815580,0.091956,0.804484,0.121959,0.802193,0.000158,0.060093,0.010210,0.057322
			 ,0.039673,0.167527,0.030348,0.171876,0.344671,0.573208,0.350373,0.572324,0.369746,0.590727,0.359905,0.589809,0.344671,0.573208
			 ,0.359905,0.589809,0.348261,0.590429,0.337483,0.574444,0.389495,0.761174,0.396246,0.762993,0.392996,0.770326,0.386239,0.771862
			 ,0.410274,0.755052,0.410777,0.758450,0.404666,0.760690,0.401996,0.757774,0.396246,0.762993,0.399884,0.764595,0.396542,0.770257
			 ,0.392996,0.770326,0.425489,0.761831,0.428027,0.770601,0.424551,0.771484,0.422808,0.764383,0.425489,0.761831,0.422808,0.764383
			 ,0.417068,0.759502,0.418980,0.755939,0.408272,0.792358,0.395947,0.789523,0.396216,0.786497,0.407646,0.787604,0.392163,0.780460
			 ,0.392996,0.770326,0.396542,0.770257,0.394332,0.779113,0.426017,0.780241,0.422102,0.777969,0.424551,0.771484,0.428027,0.770601
			 ,0.387854,0.783863,0.385995,0.786916,0.383526,0.773441,0.386239,0.771862,0.387854,0.783863,0.395152,0.793807,0.394707,0.797116
			 ,0.385995,0.786916,0.430743,0.781681,0.426017,0.780241,0.428027,0.770601,0.432888,0.768027,0.396246,0.762993,0.401996,0.757774
			 ,0.404666,0.760690,0.399884,0.764595,0.396951,0.713583,0.415822,0.710741,0.423017,0.729162,0.403342,0.732447,0.396951,0.713583
			 ,0.376345,0.718164,0.373054,0.694595,0.391066,0.693147,0.415822,0.710741,0.408225,0.693240,0.425041,0.691925,0.433407,0.708345
			 ,0.285177,0.752997,0.275876,0.775126,0.235430,0.787337,0.243345,0.765679,0.285177,0.752997,0.243345,0.765679,0.263657,0.720339
			 ,0.302104,0.709876,0.285177,0.752997,0.302104,0.709876,0.334987,0.702004,0.326012,0.734268,0.285177,0.752997,0.326012,0.734268
			 ,0.316212,0.761404,0.275876,0.775126,0.190997,0.813182,0.185361,0.829593,0.149101,0.830373,0.152885,0.816084,0.190997,0.813182
			 ,0.152885,0.816084,0.156174,0.799533,0.194806,0.795003,0.190997,0.813182,0.194806,0.795003,0.235430,0.787337,0.230397,0.806031
			 ,0.190997,0.813182,0.230397,0.806031,0.227118,0.825215,0.185361,0.829593,0.268598,0.849743,0.262415,0.864200,0.241926,0.863807
			 ,0.249585,0.849944,0.268598,0.849743,0.249585,0.849944,0.256324,0.839228,0.272560,0.835194,0.268598,0.849743,0.272560,0.835194
			 ,0.299506,0.831258,0.295433,0.847710,0.268598,0.849743,0.295433,0.847710,0.290279,0.863129,0.262415,0.864200,0.268943,0.822898
			 ,0.246269,0.833246,0.227118,0.825215,0.264976,0.809798,0.268943,0.822898,0.264976,0.809798,0.299179,0.797824,0.298851,0.814916
			 ,0.268943,0.822898,0.298851,0.814916,0.299506,0.831258,0.272560,0.835194,0.268943,0.822898,0.272560,0.835194,0.256324,0.839228
			 ,0.246269,0.833246,0.258173,0.885221,0.262415,0.864200,0.290279,0.863129,0.286899,0.886602,0.229521,0.847840,0.218601,0.862245
			 ,0.191441,0.859813,0.204934,0.845318,0.229521,0.847840,0.204934,0.845318,0.227118,0.825215,0.246269,0.833246,0.229521,0.847840
			 ,0.246269,0.833246,0.256324,0.839228,0.249585,0.849944,0.229521,0.847840,0.249585,0.849944,0.241926,0.863807,0.218601,0.862245
			 ,0.410334,0.749793,0.410274,0.755052,0.401996,0.757774,0.397517,0.753060,0.408272,0.792358,0.407646,0.787604,0.417495,0.783636
			 ,0.419978,0.788352,0.387854,0.783863,0.386239,0.771862,0.392996,0.770326,0.392163,0.780460,0.392163,0.780460,0.394332,0.779113
			 ,0.396216,0.786497,0.395947,0.789523,0.387854,0.783863,0.392163,0.780460,0.395947,0.789523,0.395152,0.793807,0.430743,0.781681
			 ,0.422672,0.793175,0.419978,0.788352,0.426017,0.780241,0.389495,0.761174,0.397517,0.753060,0.401996,0.757774,0.396246,0.762993
			 ,0.410334,0.749793,0.423209,0.750875,0.418980,0.755939,0.410274,0.755052,0.426017,0.780241,0.419978,0.788352,0.417495,0.783636
			 ,0.422102,0.777969,0.430709,0.757469,0.425489,0.761831,0.418980,0.755939,0.423209,0.750875,0.419824,0.667493,0.442239,0.690500
			 ,0.425041,0.691925,0.414839,0.678657,0.044809,0.780262,0.052002,0.778323,0.055255,0.780973,0.053846,0.784794,0.008697,0.779926
			 ,0.019102,0.777057,0.026367,0.789405,0.015115,0.795182,0.008697,0.779926,0.007923,0.766590,0.018367,0.761612,0.019102,0.777057
			 ,0.067775,0.782957,0.063062,0.781116,0.064609,0.778625,0.070398,0.780136,0.059785,0.779921,0.063062,0.781116,0.061221,0.783239
			 ,0.058537,0.782751,0.059785,0.779921,0.058537,0.782751,0.055255,0.780973,0.056788,0.778587,0.059785,0.779921,0.056788,0.778587
			 ,0.058046,0.776272,0.061053,0.777433,0.058410,0.787621,0.062722,0.786230,0.067718,0.791505,0.059177,0.792502,0.058410,0.787621
			 ,0.059177,0.792502,0.049721,0.789186,0.053846,0.784794,0.058410,0.787621,0.053846,0.784794,0.055255,0.780973,0.058537,0.782751
			 ,0.058410,0.787621,0.058537,0.782751,0.061221,0.783239,0.062722,0.786230,0.067618,0.768622,0.074114,0.762145,0.077573,0.768239
			 ,0.069593,0.773391,0.067618,0.768622,0.069593,0.773391,0.066107,0.773975,0.063860,0.772411,0.067618,0.768622,0.063860,0.772411
			 ,0.060461,0.771302,0.063416,0.765658,0.067618,0.768622,0.063416,0.765658,0.067748,0.759036,0.074114,0.762145,0.033698,0.752907
			 ,0.055384,0.753247,0.056054,0.758595,0.038272,0.759257,0.056674,0.766483,0.056054,0.758595,0.067748,0.759036,0.063416,0.765658
			 ,0.056674,0.766483,0.063416,0.765658,0.060461,0.771302,0.056665,0.771797,0.030897,0.769794,0.038272,0.759257,0.056054,0.758595
			 ,0.038311,0.771385,0.379481,0.649119,0.393778,0.654391,0.401214,0.674412,0.385377,0.672589,0.091672,0.716208,0.075439,0.742761
			 ,0.069341,0.729812,0.081523,0.716130,0.056665,0.771797,0.057132,0.773649,0.055404,0.775427,0.052522,0.774645,0.056674,0.766483
			 ,0.056665,0.771797,0.052522,0.774645,0.045213,0.773295,0.766369,0.739471,0.748533,0.743741,0.747154,0.734476,0.766956,0.730148
			 ,0.766369,0.739471,0.766956,0.730148,0.785702,0.730148,0.783455,0.737978,0.527026,0.084004,0.510985,0.033363,0.537244,0.034000
			 ,0.550217,0.075540,0.662627,0.779645,0.671037,0.773116,0.678018,0.776760,0.667457,0.782623,0.662627,0.779645,0.667457,0.782623
			 ,0.658271,0.791483,0.655422,0.787980,0.581922,0.740272,0.579941,0.736082,0.616794,0.742839,0.616392,0.749169,0.648906,0.124758
			 ,0.657719,0.121934,0.674385,0.140532,0.659897,0.144677,0.648906,0.124758,0.659897,0.144677,0.645944,0.149164,0.636866,0.127697
			 ,0.660108,0.706740,0.660166,0.704285,0.788594,0.727374,0.789241,0.729833,0.429523,0.746857,0.455982,0.743035,0.464799,0.759199
			 ,0.437863,0.755838,0.012016,0.720792,0.022577,0.722425,0.024133,0.734107,0.006392,0.731285,0.597142,0.818433,0.591864,0.825983
			 ,0.583535,0.813833,0.592130,0.806074,0.637511,0.819020,0.645330,0.808376,0.647254,0.813993,0.638756,0.824116,0.637511,0.819020
			 ,0.638756,0.824116,0.628834,0.832569,0.628248,0.828795,0.637511,0.819020,0.628248,0.828795,0.625593,0.813898,0.629642,0.803213
			 ,0.637511,0.819020,0.629642,0.803213,0.635256,0.789561,0.645330,0.808376,0.593762,0.763069,0.592777,0.777460,0.570668,0.778913
			 ,0.570040,0.760917,0.613833,0.765983,0.615551,0.757029,0.636622,0.758919,0.633753,0.764760,0.613833,0.765983,0.633753,0.764760
			 ,0.630711,0.770416,0.612372,0.774291,0.647852,0.767310,0.643460,0.774154,0.630711,0.770416,0.633753,0.764760,0.612070,0.781069
			 ,0.612372,0.774291,0.630711,0.770416,0.628143,0.775811,0.639465,0.781521,0.628143,0.775811,0.630711,0.770416,0.643460,0.774154
			 ,0.166354,0.653287,0.167815,0.662729,0.120122,0.672772,0.118377,0.662790,0.211203,0.881164,0.183056,0.878370,0.191441,0.859813
			 ,0.218601,0.862245,0.330276,0.575933,0.337400,0.593981,0.325965,0.598285,0.321172,0.577947,0.460487,0.879763,0.455738,0.826414
			 ,0.478922,0.816221,0.486914,0.873218,0.312178,0.679356,0.302104,0.709876,0.263657,0.720339,0.279235,0.686279,0.379883,0.000158
			 ,0.456662,0.000158,0.460762,0.038036,0.383418,0.047340,0.001843,0.748465,0.004219,0.737254,0.022004,0.741016,0.018755,0.751265
			 ,0.258173,0.885221,0.236433,0.883555,0.241926,0.863807,0.262415,0.864200,0.010068,0.810124,0.022164,0.803927,0.032137,0.810670
			 ,0.017888,0.821330,0.648906,0.124758,0.636866,0.127697,0.623511,0.098752,0.634724,0.092579,0.379481,0.649119,0.385377,0.672589
			 ,0.369504,0.671065,0.365172,0.645026,0.419824,0.667493,0.428888,0.644592,0.451932,0.672338,0.442239,0.690500,0.012326,0.710030
			 ,0.024677,0.712231,0.022577,0.722425,0.012016,0.720792,0.999842,0.573391,0.918886,0.692895,0.917159,0.690968,0.997531,0.572324
			 ,0.564667,0.003503,0.564289,0.034944,0.537244,0.034000,0.537686,0.002000,0.035971,0.685133,0.043452,0.690075,0.029365,0.705569
			 ,0.017449,0.700699,0.266798,0.598655,0.288377,0.588528,0.290480,0.607846,0.267790,0.614327,0.106577,0.663613,0.107607,0.674267
			 ,0.098258,0.675043,0.097587,0.663861,0.029792,0.833275,0.045670,0.815627,0.061940,0.818492,0.044094,0.843722,0.456662,0.000158
			 ,0.510178,0.001582,0.510985,0.033363,0.460762,0.038036,0.510178,0.001582,0.537686,0.002000,0.537244,0.034000,0.510985,0.033363
			 ,0.330276,0.575933,0.337483,0.574444,0.348261,0.590429,0.337400,0.593981,0.401214,0.674412,0.414839,0.678657,0.425041,0.691925
			 ,0.408225,0.693240,0.315843,0.153425,0.294912,0.069495,0.383418,0.047340,0.399249,0.120202,0.057847,0.851147,0.071789,0.826626
			 ,0.084251,0.834237,0.074026,0.858175,0.103216,0.700288,0.101197,0.716636,0.091672,0.716208,0.086323,0.702188,0.306983,0.581783
			 ,0.321172,0.577947,0.325965,0.598285,0.310366,0.602596,0.081097,0.755404,0.071658,0.752281,0.075439,0.742761,0.089212,0.746333
			 ,0.055384,0.753247,0.055323,0.747732,0.075439,0.742761,0.071658,0.752281,0.213322,0.012692,0.290456,0.004142,0.294912,0.069495
			 ,0.222995,0.091299,0.096146,0.865145,0.074026,0.858175,0.084251,0.834237,0.103497,0.843482,0.103216,0.700288,0.106063,0.686195
			 ,0.120973,0.682751,0.119578,0.695641,0.086323,0.702188,0.091672,0.716208,0.081523,0.716130,0.076312,0.708205,0.036935,0.722290
			 ,0.037609,0.732007,0.024133,0.734107,0.022577,0.722425,0.101197,0.716636,0.089212,0.746333,0.075439,0.742761,0.091672,0.716208
			 ,0.068353,0.698574,0.086323,0.702188,0.076312,0.708205,0.058995,0.709188,0.564667,0.003503,0.582796,0.005464,0.581407,0.034807
			 ,0.564289,0.034944,0.012326,0.710030,0.017449,0.700699,0.029365,0.705569,0.024677,0.712231,0.096146,0.865145,0.103497,0.843482
			 ,0.129034,0.851744,0.122781,0.871140,0.317574,0.641241,0.335715,0.641548,0.338688,0.675808,0.312178,0.679356,0.075914,0.664114
			 ,0.097587,0.663861,0.098258,0.675043,0.078650,0.675419,0.103216,0.700288,0.119578,0.695641,0.114287,0.717395,0.101197,0.716636
			 ,0.241039,0.699450,0.279235,0.686279,0.263657,0.720339,0.221919,0.736020,0.144926,0.410067,0.191146,0.360763,0.249149,0.453199
			 ,0.211748,0.511897,0.069772,0.041378,0.139219,0.025652,0.157783,0.115060,0.094432,0.142173,0.681537,0.766715,0.671037,0.773116
			 ,0.652438,0.760856,0.656561,0.754335,0.613131,0.130299,0.602729,0.103182,0.623511,0.098752,0.636866,0.127697,0.303306,0.509748
			 ,0.249149,0.453199,0.285589,0.393478,0.338322,0.450893,0.203803,0.634717,0.204517,0.644701,0.167815,0.662729,0.166354,0.653287
			 ,0.057847,0.851147,0.044094,0.843722,0.061940,0.818492,0.071789,0.826626,0.555496,0.572327,0.558356,0.575899,0.567569,0.633551
			 ,0.566082,0.635219,0.029792,0.833275,0.017888,0.821330,0.032137,0.810670,0.045670,0.815627,0.211203,0.881164,0.218601,0.862245
			 ,0.241926,0.863807,0.236433,0.883555,0.410274,0.755052,0.418980,0.755939,0.417068,0.759502,0.410777,0.758450,0.485724,0.274481
			 ,0.477029,0.273822,0.483108,0.236237,0.496934,0.242722,0.241039,0.699450,0.221919,0.736020,0.182947,0.749826,0.202945,0.713857
			 ,0.171012,0.723031,0.202945,0.713857,0.182947,0.749826,0.147879,0.761597,0.101197,0.716636,0.114287,0.717395,0.101854,0.755214
			 ,0.089212,0.746333,0.203803,0.634717,0.239899,0.613602,0.240072,0.625564,0.204517,0.644701,0.171012,0.723031,0.147879,0.761597
			 ,0.125880,0.760635,0.145605,0.727137,0.449599,0.704459,0.465402,0.692545,0.475593,0.712211,0.456441,0.718280,0.094432,0.142173
			 ,0.136757,0.249796,0.086854,0.288243,0.039673,0.167527,0.317574,0.641241,0.294636,0.643284,0.292841,0.625620,0.314121,0.621500
			 ,0.385377,0.672589,0.401214,0.674412,0.408225,0.693240,0.391066,0.693147,0.350913,0.642610,0.353074,0.671033,0.338688,0.675808
			 ,0.335715,0.641548,0.072639,0.716413,0.081523,0.716130,0.069341,0.729812,0.067517,0.723315,0.312178,0.679356,0.338688,0.675808
			 ,0.334987,0.702004,0.302104,0.709876,0.350913,0.642610,0.365172,0.645026,0.369504,0.671065,0.353074,0.671033,0.317574,0.641241
			 ,0.314121,0.621500,0.331029,0.618214,0.335715,0.641548,0.393778,0.654391,0.419824,0.667493,0.414839,0.678657,0.401214,0.674412
			 ,0.480275,0.758822,0.472114,0.742238,0.483823,0.738085,0.490306,0.752297,0.238002,0.308544,0.283489,0.264217,0.319787,0.340890
			 ,0.285589,0.393478,0.000158,0.769126,0.000583,0.758620,0.008931,0.758540,0.007923,0.766590,0.353074,0.671033,0.353495,0.697712
			 ,0.334987,0.702004,0.338688,0.675808,0.613131,0.130299,0.636866,0.127697,0.645944,0.149164,0.620442,0.152211,0.592126,0.136388
			 ,0.613131,0.130299,0.620442,0.152211,0.600224,0.157439,0.374377,0.758100,0.387604,0.760506,0.383526,0.773441,0.366435,0.778444
			 ,0.249407,0.572008,0.205021,0.522248,0.211748,0.511897,0.257636,0.562928,0.582796,0.005464,0.601069,0.008654,0.598641,0.034640
			 ,0.581407,0.034807,0.454517,0.803665,0.451041,0.788155,0.468380,0.771721,0.474738,0.790639,0.409443,0.828723,0.409808,0.814741
			 ,0.429677,0.804391,0.430385,0.818129,0.396951,0.713583,0.403342,0.732447,0.381027,0.741236,0.376345,0.718164,0.451041,0.788155
			 ,0.435985,0.781725,0.438736,0.766533,0.468380,0.771721,0.369690,0.799300,0.366435,0.778444,0.383526,0.773441,0.385995,0.786916
			 ,0.403342,0.732447,0.411106,0.746277,0.397101,0.750342,0.381027,0.741236,0.451041,0.788155,0.429677,0.804391,0.424340,0.794857
			 ,0.435985,0.781725,0.337182,0.807224,0.369690,0.799300,0.384617,0.818770,0.340275,0.826411,0.374377,0.758100,0.381027,0.741236
			 ,0.397101,0.750342,0.387604,0.760506,0.409808,0.814741,0.409100,0.799439,0.424340,0.794857,0.429677,0.804391,0.369690,0.799300
			 ,0.385995,0.786916,0.394707,0.797116,0.384617,0.818770,0.409443,0.828723,0.382275,0.837156,0.384617,0.818770,0.409808,0.814741
			 ,0.338755,0.843828,0.340275,0.826411,0.384617,0.818770,0.382275,0.837156,0.444348,0.725082,0.423017,0.729162,0.415822,0.710741
			 ,0.433407,0.708345,0.353074,0.671033,0.369504,0.671065,0.373054,0.694595,0.353495,0.697712,0.396951,0.713583,0.391066,0.693147
			 ,0.408225,0.693240,0.415822,0.710741,0.547727,0.164212,0.570950,0.146586,0.579605,0.166451,0.551341,0.186709,0.480275,0.758822
			 ,0.490306,0.752297,0.495014,0.768084,0.484132,0.770117,0.480275,0.758822,0.464799,0.759199,0.455982,0.743035,0.472114,0.742238
			 ,0.480275,0.758822,0.484132,0.770117,0.468380,0.771721,0.464799,0.759199,0.492710,0.785806,0.474738,0.790639,0.468380,0.771721
			 ,0.484132,0.770117,0.449599,0.704459,0.442239,0.690500,0.451932,0.672338,0.465402,0.692545,0.036247,0.716288,0.036935,0.722290
			 ,0.022577,0.722425,0.024677,0.712231,0.444348,0.725082,0.456441,0.718280,0.472114,0.742238,0.455982,0.743035,0.317574,0.641241
			 ,0.312178,0.679356,0.279235,0.686279,0.294636,0.643284,0.517573,0.863141,0.486914,0.873218,0.478922,0.816221,0.501638,0.808851
			 ,0.265239,0.650394,0.241039,0.699450,0.202945,0.713857,0.231029,0.662249,0.449599,0.704459,0.433407,0.708345,0.425041,0.691925
			 ,0.442239,0.690500,0.265239,0.650394,0.294636,0.643284,0.279235,0.686279,0.241039,0.699450,0.449599,0.704459,0.456441,0.718280
			 ,0.444348,0.725082,0.433407,0.708345,0.492710,0.785806,0.501638,0.808851,0.478922,0.816221,0.474738,0.790639,0.132801,0.783894
			 ,0.109827,0.783355,0.125880,0.760635,0.147879,0.761597,0.045670,0.815627,0.032137,0.810670,0.043569,0.801435,0.056468,0.802771
			 ,0.109827,0.783355,0.092834,0.776978,0.101854,0.755214,0.125880,0.760635,0.075837,0.812296,0.074598,0.798776,0.082319,0.791867
			 ,0.091956,0.804484,0.080050,0.819217,0.071789,0.826626,0.061940,0.818492,0.075837,0.812296,0.045670,0.815627,0.056468,0.802771
			 ,0.067290,0.801543,0.061940,0.818492,0.022164,0.803927,0.033543,0.796881,0.043569,0.801435,0.032137,0.810670,0.080050,0.819217
			 ,0.075837,0.812296,0.091956,0.804484,0.093940,0.815580,0.194618,0.677353,0.171012,0.723031,0.145605,0.727137,0.161613,0.690363
			 ,0.145605,0.727137,0.125880,0.760635,0.101854,0.755214,0.114287,0.717395,0.075837,0.812296,0.061940,0.818492,0.067290,0.801543
			 ,0.074598,0.798776,0.161613,0.690363,0.119578,0.695641,0.120973,0.682751,0.166026,0.674210,0.010068,0.810124,0.005167,0.798975
			 ,0.015115,0.795182,0.022164,0.803927,0.266798,0.598655,0.267790,0.614327,0.240072,0.625564,0.239899,0.613602,0.161613,0.690363
			 ,0.145605,0.727137,0.114287,0.717395,0.119578,0.695641,0.109827,0.783355,0.091956,0.804484,0.082319,0.791867,0.092834,0.776978
			 ,0.106577,0.663613,0.118377,0.662790,0.120122,0.672772,0.107607,0.674267,0.132801,0.783894,0.121959,0.802193,0.091956,0.804484
			 ,0.109827,0.783355,0.460487,0.879763,0.431876,0.884635,0.430074,0.837070,0.455738,0.826414,0.069505,0.714307,0.076312,0.708205
			 ,0.081523,0.716130,0.072639,0.716413,0.006392,0.731285,0.024133,0.734107,0.022004,0.741016,0.004219,0.737254,0.485724,0.274481
			 ,0.496934,0.242722,0.499849,0.253389,0.488199,0.277782,0.616992,0.012539,0.612179,0.038591,0.598641,0.034640,0.601069,0.008654
			 ,0.033698,0.752907,0.032491,0.749943,0.055323,0.747732,0.055384,0.753247,0.052577,0.694505,0.064725,0.684694,0.078940,0.686521
			 ,0.068353,0.698574,0.616992,0.012539,0.650163,0.024371,0.641871,0.052031,0.612179,0.038591,0.038311,0.771385,0.056054,0.758595
			 ,0.056674,0.766483,0.045213,0.773295,0.032491,0.749943,0.037399,0.741616,0.054493,0.737122,0.055323,0.747732,0.038311,0.771385
			 ,0.045213,0.773295,0.044809,0.780262,0.041210,0.785219,0.267358,0.631768,0.267790,0.614327,0.290480,0.607846,0.292841,0.625620
			 ,0.265239,0.650394,0.231029,0.662249,0.237153,0.642306,0.267358,0.631768,0.052577,0.694505,0.040675,0.708040,0.029365,0.705569
			 ,0.043452,0.690075,0.036247,0.716288,0.055922,0.714721,0.058618,0.718047,0.036935,0.722290,0.036247,0.716288,0.024677,0.712231
			 ,0.029365,0.705569,0.040675,0.708040,0.106063,0.686195,0.092224,0.687559,0.098258,0.675043,0.107607,0.674267,0.314121,0.621500
			 ,0.292841,0.625620,0.290480,0.607846,0.310366,0.602596,0.010210,0.057322,0.069772,0.041378,0.094432,0.142173,0.039673,0.167527
			 ,0.344305,0.613599,0.337400,0.593981,0.348261,0.590429,0.358214,0.609929,0.350913,0.642610,0.344305,0.613599,0.358214,0.609929
			 ,0.365172,0.645026,0.036935,0.722290,0.058618,0.718047,0.056055,0.727432,0.037609,0.732007,0.314121,0.621500,0.310366,0.602596
			 ,0.325965,0.598285,0.331029,0.618214,0.257636,0.562928,0.211748,0.511897,0.249149,0.453199,0.303306,0.509748,0.037609,0.732007
			 ,0.056055,0.727432,0.054493,0.737122,0.037399,0.741616,0.375188,0.610714,0.359905,0.589809,0.369746,0.590727,0.395372,0.614239
			 ,0.052577,0.694505,0.043452,0.690075,0.061732,0.677063,0.064725,0.684694,0.379481,0.649119,0.375188,0.610714,0.395372,0.614239
			 ,0.393778,0.654391,0.103216,0.700288,0.086323,0.702188,0.092224,0.687559,0.106063,0.686195,0.393778,0.654391,0.395372,0.614239
			 ,0.428888,0.644592,0.419824,0.667493,0.194618,0.677353,0.201316,0.658844,0.237153,0.642306,0.231029,0.662249,0.191146,0.360763
			 ,0.238002,0.308544,0.285589,0.393478,0.249149,0.453199,0.516925,0.200062,0.547727,0.164212,0.551341,0.186709,0.521063,0.221136
			 ,0.194618,0.677353,0.161613,0.690363,0.166026,0.674210,0.201316,0.658844,0.290456,0.004142,0.379883,0.000158,0.383418,0.047340
			 ,0.294912,0.069495,0.068353,0.698574,0.078940,0.686521,0.092224,0.687559,0.086323,0.702188,0.201316,0.658844,0.166026,0.674210
			 ,0.167815,0.662729,0.204517,0.644701,0.344305,0.613599,0.331029,0.618214,0.325965,0.598285,0.337400,0.593981,0.166026,0.674210
			 ,0.120973,0.682751,0.120122,0.672772,0.167815,0.662729,0.379481,0.649119,0.365172,0.645026,0.358214,0.609929,0.375188,0.610714
			 ,0.265239,0.650394,0.267358,0.631768,0.292841,0.625620,0.294636,0.643284,0.078940,0.686521,0.078650,0.675419,0.098258,0.675043
			 ,0.092224,0.687559,0.375188,0.610714,0.358214,0.609929,0.348261,0.590429,0.359905,0.589809,0.037609,0.732007,0.037399,0.741616
			 ,0.022004,0.741016,0.024133,0.734107,0.106063,0.686195,0.107607,0.674267,0.120122,0.672772,0.120973,0.682751,0.018755,0.751265
			 ,0.022004,0.741016,0.037399,0.741616,0.032491,0.749943,0.023699,0.773870,0.033698,0.752907,0.038272,0.759257,0.030897,0.769794
			 ,0.007923,0.766590,0.008931,0.758540,0.018755,0.751265,0.018367,0.761612,0.000583,0.758620,0.001843,0.748465,0.018755,0.751265
			 ,0.008931,0.758540,0.023699,0.773870,0.030897,0.769794,0.038311,0.771385,0.031081,0.784397,0.997531,0.572324,0.917159,0.690968
			 ,0.788594,0.727374,0.801940,0.576074,0.592126,0.136388,0.583061,0.108992,0.602729,0.103182,0.613131,0.130299,0.542633,0.128958
			 ,0.527026,0.084004,0.550217,0.075540,0.563294,0.118491,0.660108,0.706740,0.566082,0.635219,0.567569,0.633551,0.660166,0.704285
			 ,0.646797,0.086045,0.633308,0.069886,0.641871,0.052031,0.669005,0.077661,0.678600,0.038237,0.669005,0.077661,0.641871,0.052031
			 ,0.650163,0.024371,0.450057,0.290827,0.435015,0.247675,0.483108,0.236237,0.477029,0.273822,0.516925,0.200062,0.496934,0.242722
			 ,0.483108,0.236237,0.502063,0.157813,0.547727,0.164212,0.542633,0.128958,0.563294,0.118491,0.570950,0.146586,0.592126,0.136388
			 ,0.570950,0.146586,0.563294,0.118491,0.583061,0.108992,0.516925,0.200062,0.502063,0.157813,0.542633,0.128958,0.547727,0.164212
			 ,0.283489,0.264217,0.342325,0.221850,0.368119,0.287003,0.319787,0.340890,0.404151,0.337328,0.368119,0.287003,0.435015,0.247675
			 ,0.450057,0.290827,0.502063,0.157813,0.482272,0.101985,0.527026,0.084004,0.542633,0.128958,0.137029,0.418653,0.144926,0.410067
			 ,0.211748,0.511897,0.205021,0.522248,0.567569,0.633551,0.558356,0.575899,0.651385,0.578336,0.660166,0.704285,0.399884,0.764595
			 ,0.408170,0.771997,0.396542,0.770257,0.394332,0.779113,0.408170,0.771997,0.396216,0.786497,0.394332,0.779113,0.396542,0.770257
			 ,0.408170,0.771997,0.410777,0.758450,0.417068,0.759502,0.408170,0.771997,0.422102,0.777969,0.417495,0.783636,0.408170,0.771997
			 ,0.407646,0.787604,0.396216,0.786497,0.408170,0.771997,0.410777,0.758450,0.408170,0.771997,0.404666,0.760690,0.407646,0.787604
			 ,0.408170,0.771997,0.417495,0.783636,0.422102,0.777969,0.408170,0.771997,0.424551,0.771484,0.422808,0.764383,0.408170,0.771997
			 ,0.417068,0.759502,0.399884,0.764595,0.404666,0.760690,0.408170,0.771997,0.422808,0.764383,0.424551,0.771484,0.408170,0.771997
			 ,0.665067,0.738969,0.660668,0.748697,0.639461,0.746953,0.639737,0.736369,0.492710,0.785806,0.484132,0.770117,0.495014,0.768084
			 ,0.504655,0.786751,0.681537,0.766715,0.690084,0.763147,0.706175,0.775582,0.700961,0.776681,0.616392,0.749169,0.616794,0.742839
			 ,0.639461,0.746953,0.638268,0.752871,0.593762,0.763069,0.570040,0.760917,0.569735,0.755146,0.589957,0.753006,0.560973,0.738915
			 ,0.555496,0.734065,0.579498,0.730148,0.579941,0.736082,0.701186,0.760514,0.712698,0.773616,0.706175,0.775582,0.690084,0.763147
			 ,0.581922,0.740272,0.589957,0.753006,0.569735,0.755146,0.564857,0.742940,0.579941,0.736082,0.581922,0.740272,0.564857,0.742940
			 ,0.560973,0.738915,0.593762,0.763069,0.589957,0.753006,0.615551,0.757029,0.613833,0.765983,0.629642,0.803213,0.625593,0.813898
			 ,0.617863,0.813900,0.622158,0.794229,0.612070,0.781069,0.628143,0.775811,0.625603,0.782335,0.612298,0.788489,0.342325,0.221850
			 ,0.315843,0.153425,0.399249,0.120202,0.419395,0.183279,0.572048,0.068309,0.564289,0.034944,0.581407,0.034807,0.589356,0.065039
			 ,0.662627,0.779645,0.647852,0.767310,0.652438,0.760856,0.671037,0.773116,0.618169,0.730148,0.639737,0.736369,0.639461,0.746953
			 ,0.616794,0.742839,0.597142,0.818433,0.592130,0.806074,0.612298,0.788489,0.611898,0.801773,0.247718,0.182682,0.222995,0.091299
			 ,0.294912,0.069495,0.315843,0.153425,0.634724,0.092579,0.623511,0.098752,0.604769,0.065141,0.617375,0.065857,0.701186,0.760514
			 ,0.690084,0.763147,0.660668,0.748697,0.665067,0.738969,0.589356,0.065039,0.581407,0.034807,0.598641,0.034640,0.604769,0.065141
			 ,0.611898,0.801773,0.622158,0.794229,0.617863,0.813900,0.611024,0.813750,0.628248,0.828795,0.628834,0.832569,0.615463,0.842297
			 ,0.615337,0.839680,0.078312,0.294860,0.030348,0.171876,0.039673,0.167527,0.086854,0.288243,0.611898,0.801773,0.612298,0.788489
			 ,0.625603,0.782335,0.622158,0.794229,0.766369,0.739471,0.783455,0.737978,0.784910,0.759003,0.766013,0.758486,0.517573,0.863141
			 ,0.501638,0.808851,0.543456,0.806467,0.555181,0.845531,0.789241,0.729833,0.788594,0.727374,0.917159,0.690968,0.918886,0.692895
			 ,0.137029,0.418653,0.078312,0.294860,0.086854,0.288243,0.144926,0.410067,0.283489,0.264217,0.247718,0.182682,0.315843,0.153425
			 ,0.342325,0.221850,0.579498,0.730148,0.618169,0.730148,0.616794,0.742839,0.579941,0.736082,0.648906,0.124758,0.634724,0.092579
			 ,0.646797,0.086045,0.657719,0.121934,0.136757,0.249796,0.191146,0.360763,0.144926,0.410067,0.086854,0.288243,0.639465,0.781521
			 ,0.635256,0.789561,0.625603,0.782335,0.628143,0.775811,0.651385,0.578336,0.801940,0.576074,0.788594,0.727374,0.660166,0.704285
			 ,0.191055,0.210591,0.157783,0.115060,0.222995,0.091299,0.247718,0.182682,0.238002,0.308544,0.191055,0.210591,0.247718,0.182682
			 ,0.283489,0.264217,0.419395,0.183279,0.399249,0.120202,0.482272,0.101985,0.502063,0.157813,0.583061,0.108992,0.572048,0.068309
			 ,0.589356,0.065039,0.602729,0.103182,0.804496,0.746177,0.811507,0.742985,0.822525,0.758319,0.808934,0.758659,0.590603,0.792002
			 ,0.592777,0.777460,0.612372,0.774291,0.612070,0.781069,0.717111,0.058481,0.693694,0.086550,0.669005,0.077661,0.678600,0.038237
			 ,0.593762,0.763069,0.613833,0.765983,0.612372,0.774291,0.592777,0.777460,0.617375,0.065857,0.604769,0.065141,0.598641,0.034640
			 ,0.612179,0.038591,0.603125,0.828507,0.611024,0.813750,0.617863,0.813900,0.615337,0.839680,0.662627,0.779645,0.655422,0.787980
			 ,0.643460,0.774154,0.647852,0.767310,0.768852,0.775076,0.755402,0.774079,0.751334,0.758571,0.766013,0.758486,0.634724,0.092579
			 ,0.617375,0.065857,0.633308,0.069886,0.646797,0.086045,0.656561,0.754335,0.652438,0.760856,0.636622,0.758919,0.638268,0.752871
			 ,0.597142,0.818433,0.611898,0.801773,0.611024,0.813750,0.603125,0.828507,0.399249,0.120202,0.383418,0.047340,0.460762,0.038036
			 ,0.482272,0.101985,0.616392,0.749169,0.638268,0.752871,0.636622,0.758919,0.615551,0.757029,0.572048,0.068309,0.550217,0.075540
			 ,0.537244,0.034000,0.564289,0.034944,0.629642,0.803213,0.622158,0.794229,0.625603,0.782335,0.635256,0.789561,0.628248,0.828795
			 ,0.615337,0.839680,0.617863,0.813900,0.625593,0.813898,0.597142,0.818433,0.603125,0.828507,0.601145,0.834988,0.591864,0.825983
			 ,0.656561,0.754335,0.638268,0.752871,0.639461,0.746953,0.660668,0.748697,0.590603,0.792002,0.612070,0.781069,0.612298,0.788489
			 ,0.592130,0.806074,0.492710,0.785806,0.504655,0.786751,0.543456,0.806467,0.501638,0.808851,0.603125,0.828507,0.615337,0.839680
			 ,0.615463,0.842297,0.601145,0.834988,0.602729,0.103182,0.589356,0.065039,0.604769,0.065141,0.623511,0.098752,0.482272,0.101985
			 ,0.460762,0.038036,0.510985,0.033363,0.527026,0.084004,0.191146,0.360763,0.136757,0.249796,0.191055,0.210591,0.238002,0.308544
			 ,0.647852,0.767310,0.633753,0.764760,0.636622,0.758919,0.652438,0.760856,0.681537,0.766715,0.656561,0.754335,0.660668,0.748697
			 ,0.690084,0.763147,0.650433,0.797857,0.645330,0.808376,0.635256,0.789561,0.639465,0.781521,0.650433,0.797857,0.639465,0.781521
			 ,0.643460,0.774154,0.655422,0.787980,0.733487,0.749176,0.748533,0.743741,0.751334,0.758571,0.735710,0.758432,0.720517,0.756314
			 ,0.729160,0.750755,0.733487,0.749176,0.735710,0.758432,0.768852,0.775076,0.783057,0.773443,0.781353,0.782090,0.767646,0.783194
			 ,0.741542,0.770013,0.735710,0.758432,0.751334,0.758571,0.755402,0.774079,0.713013,0.756269,0.725550,0.747581,0.729160,0.750755
			 ,0.720517,0.756314,0.793122,0.769388,0.783057,0.773443,0.784910,0.759003,0.796031,0.758637,0.733487,0.749176,0.729160,0.750755
			 ,0.725550,0.747581,0.730357,0.743724,0.793122,0.769388,0.801054,0.766250,0.806888,0.769611,0.794613,0.776541,0.732313,0.766226
			 ,0.730168,0.772713,0.713013,0.756269,0.720517,0.756314,0.796436,0.741713,0.783455,0.737978,0.785702,0.730148,0.800198,0.735122
			 ,0.796436,0.741713,0.796031,0.758637,0.784910,0.759003,0.783455,0.737978,0.793122,0.769388,0.794613,0.776541,0.781353,0.782090
			 ,0.783057,0.773443,0.768852,0.775076,0.766013,0.758486,0.784910,0.759003,0.783057,0.773443,0.801054,0.766250,0.808934,0.758659
			 ,0.822525,0.758319,0.806888,0.769611,0.796436,0.741713,0.804496,0.746177,0.808934,0.758659,0.796031,0.758637,0.735710,0.758432
			 ,0.741542,0.770013,0.732313,0.766226,0.720517,0.756314,0.768852,0.775076,0.767646,0.783194,0.754577,0.781460,0.755402,0.774079
			 ,0.766369,0.739471,0.766013,0.758486,0.751334,0.758571,0.748533,0.743741,0.733487,0.749176,0.730357,0.743724,0.747154,0.734476
			 ,0.748533,0.743741,0.796436,0.741713,0.800198,0.735122,0.811507,0.742985,0.804496,0.746177,0.793122,0.769388,0.796031,0.758637
			 ,0.808934,0.758659,0.801054,0.766250,0.741542,0.770013,0.741765,0.778105,0.730168,0.772713,0.732313,0.766226,0.741542,0.770013
			 ,0.755402,0.774079,0.754577,0.781460,0.741765,0.778105,0.801940,0.576074,0.651385,0.578336,0.558356,0.575899,0.555496,0.572327
			 ,0.997531,0.572324,0.801940,0.576074,0.558356,0.575899,0.070398,0.780136,0.064609,0.778625,0.065656,0.776229,0.071074,0.777766
			 ,0.061053,0.777433,0.064609,0.778625,0.063062,0.781116,0.059785,0.779921,0.023699,0.773870,0.031081,0.784397,0.026367,0.789405
			 ,0.019102,0.777057,0.056788,0.778587,0.053950,0.776644,0.055404,0.775427,0.058046,0.776272,0.052002,0.778323,0.053950,0.776644
			 ,0.056788,0.778587,0.055255,0.780973,0.044809,0.780262,0.053846,0.784794,0.049721,0.789186,0.041210,0.785219,0.001255,0.781687
			 ,0.008697,0.779926,0.015115,0.795182,0.005167,0.798975,0.038141,0.790717,0.031081,0.784397,0.038311,0.771385,0.041210,0.785219
			 ,0.055922,0.714721,0.069505,0.714307,0.072639,0.716413,0.058618,0.718047,0.036247,0.716288,0.040675,0.708040,0.058995,0.709188
			 ,0.055922,0.714721,0.023699,0.773870,0.019102,0.777057,0.018367,0.761612,0.033698,0.752907,0.058471,0.668857,0.075914,0.664114
			 ,0.078650,0.675419,0.061732,0.677063,0.055323,0.747732,0.054493,0.737122,0.069341,0.729812,0.075439,0.742761,0.064725,0.684694
			 ,0.061732,0.677063,0.078650,0.675419,0.078940,0.686521,0.058618,0.718047,0.072639,0.716413,0.067517,0.723315,0.056055,0.727432
			 ,0.746071,0.010608,0.741350,0.008537,0.742961,0.000158,0.750875,0.003316,0.746071,0.010608,0.750875,0.003316,0.756901,0.009342
			 ,0.749836,0.014128,0.731617,0.032543,0.726812,0.039834,0.720787,0.033808,0.727852,0.029023,0.727877,0.014349,0.720585,0.009545
			 ,0.726611,0.003520,0.731397,0.010584,0.751710,0.018931,0.749836,0.014128,0.756901,0.009342,0.760263,0.017172,0.751710,0.018931
			 ,0.760263,0.017172,0.760263,0.025694,0.751883,0.024083,0.742465,0.016081,0.740061,0.015246,0.741350,0.008537,0.746071,0.010608
			 ,0.727877,0.014349,0.725805,0.019069,0.717426,0.017458,0.720585,0.009545,0.731617,0.032543,0.736337,0.034614,0.734725,0.042994
			 ,0.726812,0.039834,0.737519,0.015130,0.735228,0.016239,0.731397,0.010584,0.736199,0.008711,0.749812,0.028803,0.751883,0.024083
			 ,0.760263,0.025694,0.757103,0.033609,0.736199,0.008711,0.734440,0.000158,0.742961,0.000158,0.741350,0.008537,0.725979,0.024221
			 ,0.717426,0.025979,0.717426,0.017458,0.725805,0.019069,0.745290,0.020251,0.744180,0.017960,0.749836,0.014128,0.751710,0.018931
			 ,0.736199,0.008711,0.731397,0.010584,0.726611,0.003520,0.734440,0.000158,0.741488,0.034441,0.743246,0.042995,0.734725,0.042994
			 ,0.736337,0.034614,0.742465,0.016081,0.746071,0.010608,0.749836,0.014128,0.744180,0.017960,0.741488,0.034441,0.746291,0.032568
			 ,0.751077,0.039634,0.743246,0.042995,0.725979,0.024221,0.727852,0.029023,0.720787,0.033808,0.717426,0.025979,0.737519,0.015130
			 ,0.736199,0.008711,0.741350,0.008537,0.740061,0.015246,0.749812,0.028803,0.757103,0.033609,0.751077,0.039634,0.746291,0.032568
			 ,0.732398,0.022901,0.725979,0.024221,0.725805,0.019069,0.732514,0.020359,0.740169,0.028022,0.737627,0.027906,0.738844,0.021576
			 ,0.742459,0.026912,0.737519,0.015130,0.740061,0.015246,0.738844,0.021576,0.735228,0.016239,0.733349,0.017955,0.735228,0.016239
			 ,0.738844,0.021576,0.732514,0.020359,0.732398,0.022901,0.733508,0.025191,0.727852,0.029023,0.725979,0.024221,0.740169,0.028022
			 ,0.742459,0.026912,0.746291,0.032568,0.741488,0.034441,0.735223,0.027071,0.731617,0.032543,0.727852,0.029023,0.733508,0.025191
			 ,0.735223,0.027071,0.737627,0.027906,0.736337,0.034614,0.731617,0.032543,0.745290,0.020251,0.751710,0.018931,0.751883,0.024083
			 ,0.745174,0.022793,0.742465,0.016081,0.744180,0.017960,0.738844,0.021576,0.740061,0.015246,0.744339,0.025197,0.742459,0.026912
			 ,0.738844,0.021576,0.745174,0.022793,0.733349,0.017955,0.732514,0.020359,0.725805,0.019069,0.727877,0.014349,0.740169,0.028022
			 ,0.741488,0.034441,0.736337,0.034614,0.737627,0.027906,0.745290,0.020251,0.745174,0.022793,0.738844,0.021576,0.744180,0.017960
			 ,0.744339,0.025197,0.749812,0.028803,0.746291,0.032568,0.742459,0.026912,0.733349,0.017955,0.727877,0.014349,0.731397,0.010584
			 ,0.735228,0.016239,0.735223,0.027071,0.733508,0.025191,0.738844,0.021576,0.737627,0.027906,0.732398,0.022901,0.732514,0.020359
			 ,0.738844,0.021576,0.733508,0.025191,0.744339,0.025197,0.745174,0.022793,0.751883,0.024083,0.749812,0.028803,0.306983,0.581783
			 ,0.288377,0.588528,0.290480,0.607846,0.310366,0.602596,0.338322,0.450893,0.367007,0.394508,0.319787,0.340890,0.285589,0.393478
			 ,0.136757,0.249796,0.191055,0.210591,0.157783,0.115060,0.094432,0.142173,0.367007,0.394508,0.404151,0.337328,0.368119,0.287003
			 ,0.319787,0.340890,0.338755,0.843828,0.295433,0.847710,0.290279,0.863129,0.335554,0.859867,0.338755,0.843828,0.340275,0.826411
			 ,0.299506,0.831258,0.295433,0.847710,0.338755,0.843828,0.335554,0.859867,0.380945,0.853850,0.382275,0.837156,0.172529,0.844420
			 ,0.139095,0.841948,0.129034,0.851744,0.159855,0.856777,0.172529,0.844420,0.185361,0.829593,0.149101,0.830373,0.139095,0.841948
			 ,0.172529,0.844420,0.204934,0.845318,0.227118,0.825215,0.185361,0.829593,0.172529,0.844420,0.159855,0.856777,0.191441,0.859813
			 ,0.204934,0.845318,0.268206,0.793925,0.275876,0.775126,0.235430,0.787337,0.230397,0.806031,0.268206,0.793925,0.306302,0.780135
			 ,0.316212,0.761404,0.275876,0.775126,0.268206,0.793925,0.264976,0.809798,0.299179,0.797824,0.306302,0.780135,0.268206,0.793925
			 ,0.230397,0.806031,0.227118,0.825215,0.264976,0.809798,0.038141,0.790717,0.031081,0.784397,0.026367,0.789405,0.033543,0.796881
			 ,0.055922,0.714721,0.069505,0.714307,0.076312,0.708205,0.058995,0.709188,0.038141,0.790717,0.047559,0.795248,0.049721,0.789186
			 ,0.041210,0.785219,0.038141,0.790717,0.033543,0.796881,0.043569,0.801435,0.047559,0.795248,0.110983,0.835061,0.090748,0.826507
			 ,0.084251,0.834237,0.103497,0.843482,0.110983,0.835061,0.117632,0.826333,0.099846,0.822538,0.090748,0.826507,0.110983,0.835061
			 ,0.139095,0.841948,0.149101,0.830373,0.117632,0.826333,0.110983,0.835061,0.103497,0.843482,0.129034,0.851744,0.139095,0.841948
			 ,0.081097,0.755404,0.087198,0.762867,0.101854,0.755214,0.089212,0.746333,0.081097,0.755404,0.074114,0.762145,0.077573,0.768239
			 ,0.087198,0.762867,0.081097,0.755404,0.071658,0.752281,0.067748,0.759036,0.074114,0.762145,0.430743,0.781681,0.435985,0.781725
			 ,0.438736,0.766533,0.432888,0.768027,0.430743,0.781681,0.422672,0.793175,0.424340,0.794857,0.435985,0.781725,0.032491,0.749943
			 ,0.018755,0.751265,0.018367,0.761612,0.033698,0.752907,0.194618,0.677353,0.171012,0.723031,0.202945,0.713857,0.231029,0.662249
			 ,0.350913,0.642610,0.344305,0.613599,0.331029,0.618214,0.335715,0.641548,0.139219,0.025652,0.157783,0.115060,0.222995,0.091299
			 ,0.213322,0.012692,0.345615,0.767245,0.349337,0.748074,0.316212,0.761404,0.306302,0.780135,0.345615,0.767245,0.374377,0.758100
			 ,0.381027,0.741236,0.349337,0.748074,0.345615,0.767245,0.336693,0.787047,0.366435,0.778444,0.374377,0.758100,0.345615,0.767245
			 ,0.306302,0.780135,0.299179,0.797824,0.336693,0.787047,0.062722,0.786230,0.067775,0.782957,0.063062,0.781116,0.061221,0.783239
			 ,0.065656,0.776229,0.062322,0.775000,0.061053,0.777433,0.064609,0.778625,0.408820,0.886753,0.408821,0.846033,0.380945,0.853850
			 ,0.379623,0.887714,0.408820,0.886753,0.431876,0.884635,0.430074,0.837070,0.408821,0.846033,0.409021,0.797410,0.395152,0.793807
			 ,0.394707,0.797116,0.409100,0.799439,0.409021,0.797410,0.408272,0.792358,0.395947,0.789523,0.395152,0.793807,0.409021,0.797410
			 ,0.422672,0.793175,0.419978,0.788352,0.408272,0.792358,0.409021,0.797410,0.409100,0.799439,0.424340,0.794857,0.422672,0.793175
			 ,0.454517,0.803665,0.430385,0.818129,0.430074,0.837070,0.455738,0.826414,0.454517,0.803665,0.451041,0.788155,0.429677,0.804391
			 ,0.430385,0.818129,0.454517,0.803665,0.455738,0.826414,0.478922,0.816221,0.474738,0.790639,0.056055,0.727432,0.054493,0.737122
			 ,0.069341,0.729812,0.067517,0.723315,0.052002,0.778323,0.053950,0.776644,0.055404,0.775427,0.052522,0.774645,0.052577,0.694505
			 ,0.040675,0.708040,0.058995,0.709188,0.068353,0.698574,0.419395,0.183279,0.435015,0.247675,0.483108,0.236237,0.502063,0.157813
			 ,0.342325,0.221850,0.368119,0.287003,0.435015,0.247675,0.419395,0.183279,0.581922,0.740272,0.589957,0.753006,0.615551,0.757029
			 ,0.616392,0.749169,0.590603,0.792002,0.592777,0.777460,0.570668,0.778913,0.575824,0.797576,0.590603,0.792002,0.575824,0.797576
			 ,0.583535,0.813833,0.592130,0.806074,0.583061,0.108992,0.572048,0.068309,0.550217,0.075540,0.563294,0.118491,0.681537,0.766715
			 ,0.671037,0.773116,0.678018,0.776760,0.700961,0.776681,0.516925,0.200062,0.496934,0.242722,0.499849,0.253389,0.521063,0.221136
			 ,0.592126,0.136388,0.570950,0.146586,0.579605,0.166451,0.600224,0.157439,0.650433,0.797857,0.652616,0.802583,0.658271,0.791483
			 ,0.655422,0.787980,0.650433,0.797857,0.645330,0.808376,0.647254,0.813993,0.652616,0.802583,0.201316,0.658844,0.237153,0.642306
			 ,0.240072,0.625564,0.204517,0.644701,0.080050,0.819217,0.071789,0.826626,0.084251,0.834237,0.090748,0.826507,0.080050,0.819217
			 ,0.090748,0.826507,0.099846,0.822538,0.093940,0.815580,0.333085,0.887715,0.335554,0.859867,0.290279,0.863129,0.286899,0.886602
			 ,0.333085,0.887715,0.379623,0.887714,0.380945,0.853850,0.335554,0.859867,0.267358,0.631768,0.267790,0.614327,0.240072,0.625564
			 ,0.237153,0.642306,0.152653,0.875271,0.159855,0.856777,0.129034,0.851744,0.122781,0.871140,0.152653,0.875271,0.183056,0.878370
			 ,0.191441,0.859813,0.159855,0.856777,0.001255,0.781687,0.008697,0.779926,0.007923,0.766590,0.000158,0.769126,0.430709,0.757469
			 ,0.432888,0.768027,0.438736,0.766533,0.437863,0.755838,0.430709,0.757469,0.425489,0.761831,0.428027,0.770601,0.432888,0.768027
			 ,0.430709,0.757469,0.437863,0.755838,0.429523,0.746857,0.423209,0.750875,0.058795,0.797334,0.047559,0.795248,0.043569,0.801435
			 ,0.056468,0.802771,0.058795,0.797334,0.059177,0.792502,0.049721,0.789186,0.047559,0.795248,0.058795,0.797334,0.068005,0.796770
			 ,0.067718,0.791505,0.059177,0.792502,0.058795,0.797334,0.056468,0.802771,0.067290,0.801543,0.068005,0.796770,0.073932,0.793981
			 ,0.072995,0.787934,0.067718,0.791505,0.068005,0.796770,0.077573,0.768239,0.069593,0.773391,0.071074,0.777766,0.077763,0.776768
			 ,0.072995,0.787934,0.076637,0.784356,0.070398,0.780136,0.067775,0.782957,0.067718,0.791505,0.072995,0.787934,0.067775,0.782957
			 ,0.062722,0.786230,0.055384,0.753247,0.056054,0.758595,0.067748,0.759036,0.071658,0.752281,0.085501,0.775593,0.077763,0.776768
			 ,0.076637,0.784356,0.079596,0.787362,0.073932,0.793981,0.079596,0.787362,0.076637,0.784356,0.072995,0.787934,0.073932,0.793981
			 ,0.074598,0.798776,0.082319,0.791867,0.079596,0.787362,0.073932,0.793981,0.068005,0.796770,0.067290,0.801543,0.074598,0.798776
			 ,0.022164,0.803927,0.033543,0.796881,0.026367,0.789405,0.015115,0.795182,0.085501,0.775593,0.092834,0.776978,0.101854,0.755214
			 ,0.087198,0.762867,0.085501,0.775593,0.079596,0.787362,0.082319,0.791867,0.092834,0.776978,0.076637,0.784356,0.077763,0.776768
			 ,0.071074,0.777766,0.070398,0.780136,0.085501,0.775593,0.087198,0.762867,0.077573,0.768239,0.077763,0.776768,0.044809,0.780262
			 ,0.052002,0.778323,0.052522,0.774645,0.045213,0.773295,0.057132,0.773649,0.059319,0.774050,0.060461,0.771302,0.056665,0.771797
			 ,0.057132,0.773649,0.055404,0.775427,0.058046,0.776272,0.059319,0.774050,0.062322,0.775000,0.065656,0.776229,0.066107,0.773975
			 ,0.063860,0.772411,0.069593,0.773391,0.066107,0.773975,0.065656,0.776229,0.071074,0.777766,0.062322,0.775000,0.059319,0.774050
			 ,0.058046,0.776272,0.061053,0.777433,0.062322,0.775000,0.063860,0.772411,0.060461,0.771302,0.059319,0.774050,0.351991,0.724217
			 ,0.376345,0.718164,0.373054,0.694595,0.353495,0.697712,0.351991,0.724217,0.349337,0.748074,0.381027,0.741236,0.376345,0.718164
			 ,0.351991,0.724217,0.326012,0.734268,0.316212,0.761404,0.349337,0.748074,0.351991,0.724217,0.353495,0.697712,0.334987,0.702004
			 ,0.326012,0.734268,0.456441,0.718280,0.472114,0.742238,0.483823,0.738085,0.475593,0.712211,0.444348,0.725082,0.423017,0.729162
			 ,0.429523,0.746857,0.455982,0.743035,0.617375,0.065857,0.633308,0.069886,0.641871,0.052031,0.612179,0.038591,0.389495,0.761174
			 ,0.397517,0.753060,0.397101,0.750342,0.387604,0.760506,0.389495,0.761174,0.387604,0.760506,0.383526,0.773441,0.386239,0.771862
			 ,0.409443,0.828723,0.382275,0.837156,0.380945,0.853850,0.408821,0.846033,0.409443,0.828723,0.408821,0.846033,0.430074,0.837070
			 ,0.430385,0.818129,0.337182,0.807224,0.336693,0.787047,0.299179,0.797824,0.298851,0.814916,0.337182,0.807224,0.369690,0.799300
			 ,0.366435,0.778444,0.336693,0.787047,0.337182,0.807224,0.298851,0.814916,0.299506,0.831258,0.340275,0.826411,0.132801,0.783894
			 ,0.164783,0.781290,0.182947,0.749826,0.147879,0.761597,0.132801,0.783894,0.121959,0.802193,0.156174,0.799533,0.164783,0.781290
			 ,0.202407,0.775121,0.164783,0.781290,0.156174,0.799533,0.194806,0.795003,0.202407,0.775121,0.221919,0.736020,0.182947,0.749826
			 ,0.164783,0.781290,0.202407,0.775121,0.243345,0.765679,0.263657,0.720339,0.221919,0.736020,0.202407,0.775121,0.194806,0.795003
			 ,0.235430,0.787337,0.243345,0.765679,0.410334,0.749793,0.423209,0.750875,0.429523,0.746857,0.411106,0.746277,0.410334,0.749793
			 ,0.411106,0.746277,0.397101,0.750342,0.397517,0.753060,0.409808,0.814741,0.409100,0.799439,0.394707,0.797116,0.384617,0.818770
			 ,0.035971,0.685133,0.043452,0.690075,0.061732,0.677063,0.058471,0.668857,0.464799,0.759199,0.437863,0.755838,0.438736,0.766533
			 ,0.468380,0.771721,0.403342,0.732447,0.411106,0.746277,0.429523,0.746857,0.423017,0.729162,0.385377,0.672589,0.369504,0.671065
			 ,0.373054,0.694595,0.391066,0.693147,0.119072,0.815720,0.152885,0.816084,0.156174,0.799533,0.121959,0.802193,0.119072,0.815720
			 ,0.117632,0.826333,0.149101,0.830373,0.152885,0.816084,0.119072,0.815720,0.093940,0.815580,0.099846,0.822538,0.117632,0.826333
			 ,0.119072,0.815720,0.121959,0.802193,0.091956,0.804484,0.093940,0.815580,0.000158,0.060093,0.030348,0.171876,0.039673,0.167527
			 ,0.010210,0.057322,0.344671,0.573208,0.359905,0.589809,0.369746,0.590727,0.350373,0.572324,0.344671,0.573208,0.337483,0.574444
			 ,0.348261,0.590429,0.359905,0.589809,0.389495,0.761174,0.386239,0.771862,0.392996,0.770326,0.396246,0.762993,0.410274,0.755052
			 ,0.401996,0.757774,0.404666,0.760690,0.410777,0.758450,0.396246,0.762993,0.392996,0.770326,0.396542,0.770257,0.399884,0.764595
			 ,0.425489,0.761831,0.422808,0.764383,0.424551,0.771484,0.428027,0.770601,0.425489,0.761831,0.418980,0.755939,0.417068,0.759502
			 ,0.422808,0.764383,0.408272,0.792358,0.407646,0.787604,0.396216,0.786497,0.395947,0.789523,0.392163,0.780460,0.394332,0.779113
			 ,0.396542,0.770257,0.392996,0.770326,0.426017,0.780241,0.428027,0.770601,0.424551,0.771484,0.422102,0.777969,0.387854,0.783863
			 ,0.386239,0.771862,0.383526,0.773441,0.385995,0.786916,0.387854,0.783863,0.385995,0.786916,0.394707,0.797116,0.395152,0.793807
			 ,0.430743,0.781681,0.432888,0.768027,0.428027,0.770601,0.426017,0.780241,0.396246,0.762993,0.399884,0.764595,0.404666,0.760690
			 ,0.401996,0.757774,0.396951,0.713583,0.403342,0.732447,0.423017,0.729162,0.415822,0.710741,0.396951,0.713583,0.391066,0.693147
			 ,0.373054,0.694595,0.376345,0.718164,0.415822,0.710741,0.433407,0.708345,0.425041,0.691925,0.408225,0.693240,0.285177,0.752997
			 ,0.243345,0.765679,0.235430,0.787337,0.275876,0.775126,0.285177,0.752997,0.302104,0.709876,0.263657,0.720339,0.243345,0.765679
			 ,0.285177,0.752997,0.326012,0.734268,0.334987,0.702004,0.302104,0.709876,0.285177,0.752997,0.275876,0.775126,0.316212,0.761404
			 ,0.326012,0.734268,0.190997,0.813182,0.152885,0.816084,0.149101,0.830373,0.185361,0.829593,0.190997,0.813182,0.194806,0.795003
			 ,0.156174,0.799533,0.152885,0.816084,0.190997,0.813182,0.230397,0.806031,0.235430,0.787337,0.194806,0.795003,0.190997,0.813182
			 ,0.185361,0.829593,0.227118,0.825215,0.230397,0.806031,0.268598,0.849743,0.249585,0.849944,0.241926,0.863807,0.262415,0.864200
			 ,0.268598,0.849743,0.272560,0.835194,0.256324,0.839228,0.249585,0.849944,0.268598,0.849743,0.295433,0.847710,0.299506,0.831258
			 ,0.272560,0.835194,0.268598,0.849743,0.262415,0.864200,0.290279,0.863129,0.295433,0.847710,0.268943,0.822898,0.264976,0.809798
			 ,0.227118,0.825215,0.246269,0.833246,0.268943,0.822898,0.298851,0.814916,0.299179,0.797824,0.264976,0.809798,0.268943,0.822898
			 ,0.272560,0.835194,0.299506,0.831258,0.298851,0.814916,0.268943,0.822898,0.246269,0.833246,0.256324,0.839228,0.272560,0.835194
			 ,0.258173,0.885221,0.286899,0.886602,0.290279,0.863129,0.262415,0.864200,0.229521,0.847840,0.204934,0.845318,0.191441,0.859813
			 ,0.218601,0.862245,0.229521,0.847840,0.246269,0.833246,0.227118,0.825215,0.204934,0.845318,0.229521,0.847840,0.249585,0.849944
			 ,0.256324,0.839228,0.246269,0.833246,0.229521,0.847840,0.218601,0.862245,0.241926,0.863807,0.249585,0.849944,0.410334,0.749793
			 ,0.397517,0.753060,0.401996,0.757774,0.410274,0.755052,0.408272,0.792358,0.419978,0.788352,0.417495,0.783636,0.407646,0.787604
			 ,0.387854,0.783863,0.392163,0.780460,0.392996,0.770326,0.386239,0.771862,0.392163,0.780460,0.395947,0.789523,0.396216,0.786497
			 ,0.394332,0.779113,0.387854,0.783863,0.395152,0.793807,0.395947,0.789523,0.392163,0.780460,0.430743,0.781681,0.426017,0.780241
			 ,0.419978,0.788352,0.422672,0.793175,0.389495,0.761174,0.396246,0.762993,0.401996,0.757774,0.397517,0.753060,0.410334,0.749793
			 ,0.410274,0.755052,0.418980,0.755939,0.423209,0.750875,0.426017,0.780241,0.422102,0.777969,0.417495,0.783636,0.419978,0.788352
			 ,0.430709,0.757469,0.423209,0.750875,0.418980,0.755939,0.425489,0.761831,0.419824,0.667493,0.414839,0.678657,0.425041,0.691925
			 ,0.442239,0.690500,0.044809,0.780262,0.053846,0.784794,0.055255,0.780973,0.052002,0.778323,0.008697,0.779926,0.015115,0.795182
			 ,0.026367,0.789405,0.019102,0.777057,0.008697,0.779926,0.019102,0.777057,0.018367,0.761612,0.007923,0.766590,0.067775,0.782957
			 ,0.070398,0.780136,0.064609,0.778625,0.063062,0.781116,0.059785,0.779921,0.058537,0.782751,0.061221,0.783239,0.063062,0.781116
			 ,0.059785,0.779921,0.056788,0.778587,0.055255,0.780973,0.058537,0.782751,0.059785,0.779921,0.061053,0.777433,0.058046,0.776272
			 ,0.056788,0.778587,0.058410,0.787621,0.059177,0.792502,0.067718,0.791505,0.062722,0.786230,0.058410,0.787621,0.053846,0.784794
			 ,0.049721,0.789186,0.059177,0.792502,0.058410,0.787621,0.058537,0.782751,0.055255,0.780973,0.053846,0.784794,0.058410,0.787621
			 ,0.062722,0.786230,0.061221,0.783239,0.058537,0.782751,0.067618,0.768622,0.069593,0.773391,0.077573,0.768239,0.074114,0.762145
			 ,0.067618,0.768622,0.063860,0.772411,0.066107,0.773975,0.069593,0.773391,0.067618,0.768622,0.063416,0.765658,0.060461,0.771302
			 ,0.063860,0.772411,0.067618,0.768622,0.074114,0.762145,0.067748,0.759036,0.063416,0.765658,0.033698,0.752907,0.038272,0.759257
			 ,0.056054,0.758595,0.055384,0.753247,0.056674,0.766483,0.063416,0.765658,0.067748,0.759036,0.056054,0.758595,0.056674,0.766483
			 ,0.056665,0.771797,0.060461,0.771302,0.063416,0.765658,0.030897,0.769794,0.038311,0.771385,0.056054,0.758595,0.038272,0.759257
			 ,0.379481,0.649119,0.385377,0.672589,0.401214,0.674412,0.393778,0.654391,0.091672,0.716208,0.081523,0.716130,0.069341,0.729812
			 ,0.075439,0.742761,0.056665,0.771797,0.052522,0.774645,0.055404,0.775427,0.057132,0.773649,0.056674,0.766483,0.045213,0.773295
			 ,0.052522,0.774645,0.056665,0.771797,0.766369,0.739471,0.766956,0.730148,0.747154,0.734476,0.748533,0.743741,0.766369,0.739471
			 ,0.783455,0.737978,0.785702,0.730148,0.766956,0.730148,0.527026,0.084004,0.550217,0.075540,0.537244,0.034000,0.510985,0.033363
			 ,0.662627,0.779645,0.667457,0.782623,0.678018,0.776760,0.671037,0.773116,0.662627,0.779645,0.655422,0.787980,0.658271,0.791483
			 ,0.667457,0.782623,0.581922,0.740272,0.616392,0.749169,0.616794,0.742839,0.579941,0.736082,0.648906,0.124758,0.659897,0.144677
			 ,0.674385,0.140532,0.657719,0.121934,0.648906,0.124758,0.636866,0.127697,0.645944,0.149164,0.659897,0.144677,0.660108,0.706740
			 ,0.789241,0.729833,0.788594,0.727374,0.660166,0.704285,0.429523,0.746857,0.437863,0.755838,0.464799,0.759199,0.455982,0.743035
			 ,0.012016,0.720792,0.006392,0.731285,0.024133,0.734107,0.022577,0.722425,0.597142,0.818433,0.592130,0.806074,0.583535,0.813833
			 ,0.591864,0.825983,0.637511,0.819020,0.638756,0.824116,0.647254,0.813993,0.645330,0.808376,0.637511,0.819020,0.628248,0.828795
			 ,0.628834,0.832569,0.638756,0.824116,0.637511,0.819020,0.629642,0.803213,0.625593,0.813898,0.628248,0.828795,0.637511,0.819020
			 ,0.645330,0.808376,0.635256,0.789561,0.629642,0.803213,0.593762,0.763069,0.570040,0.760917,0.570668,0.778913,0.592777,0.777460
			 ,0.613833,0.765983,0.633753,0.764760,0.636622,0.758919,0.615551,0.757029,0.613833,0.765983,0.612372,0.774291,0.630711,0.770416
			 ,0.633753,0.764760,0.647852,0.767310,0.633753,0.764760,0.630711,0.770416,0.643460,0.774154,0.612070,0.781069,0.628143,0.775811
			 ,0.630711,0.770416,0.612372,0.774291,0.639465,0.781521,0.643460,0.774154,0.630711,0.770416,0.628143,0.775811,0.166354,0.653287
			 ,0.118377,0.662790,0.120122,0.672772,0.167815,0.662729,0.211203,0.881164,0.218601,0.862245,0.191441,0.859813,0.183056,0.878370
			 ,0.330276,0.575933,0.321172,0.577947,0.325965,0.598285,0.337400,0.593981,0.460487,0.879763,0.486914,0.873218,0.478922,0.816221
			 ,0.455738,0.826414,0.312178,0.679356,0.279235,0.686279,0.263657,0.720339,0.302104,0.709876,0.379883,0.000158,0.383418,0.047340
			 ,0.460762,0.038036,0.456662,0.000158,0.001843,0.748465,0.018755,0.751265,0.022004,0.741016,0.004219,0.737254,0.258173,0.885221
			 ,0.262415,0.864200,0.241926,0.863807,0.236433,0.883555,0.010068,0.810124,0.017888,0.821330,0.032137,0.810670,0.022164,0.803927
			 ,0.648906,0.124758,0.634724,0.092579,0.623511,0.098752,0.636866,0.127697,0.379481,0.649119,0.365172,0.645026,0.369504,0.671065
			 ,0.385377,0.672589,0.419824,0.667493,0.442239,0.690500,0.451932,0.672338,0.428888,0.644592,0.012326,0.710030,0.012016,0.720792
			 ,0.022577,0.722425,0.024677,0.712231,0.999842,0.573391,0.997531,0.572324,0.917159,0.690968,0.918886,0.692895,0.564667,0.003503
			 ,0.537686,0.002000,0.537244,0.034000,0.564289,0.034944,0.035971,0.685133,0.017449,0.700699,0.029365,0.705569,0.043452,0.690075
			 ,0.266798,0.598655,0.267790,0.614327,0.290480,0.607846,0.288377,0.588528,0.106577,0.663613,0.097587,0.663861,0.098258,0.675043
			 ,0.107607,0.674267,0.029792,0.833275,0.044094,0.843722,0.061940,0.818492,0.045670,0.815627,0.456662,0.000158,0.460762,0.038036
			 ,0.510985,0.033363,0.510178,0.001582,0.510178,0.001582,0.510985,0.033363,0.537244,0.034000,0.537686,0.002000,0.330276,0.575933
			 ,0.337400,0.593981,0.348261,0.590429,0.337483,0.574444,0.401214,0.674412,0.408225,0.693240,0.425041,0.691925,0.414839,0.678657
			 ,0.315843,0.153425,0.399249,0.120202,0.383418,0.047340,0.294912,0.069495,0.057847,0.851147,0.074026,0.858175,0.084251,0.834237
			 ,0.071789,0.826626,0.103216,0.700288,0.086323,0.702188,0.091672,0.716208,0.101197,0.716636,0.306983,0.581783,0.310366,0.602596
			 ,0.325965,0.598285,0.321172,0.577947,0.081097,0.755404,0.089212,0.746333,0.075439,0.742761,0.071658,0.752281,0.055384,0.753247
			 ,0.071658,0.752281,0.075439,0.742761,0.055323,0.747732,0.213322,0.012692,0.222995,0.091299,0.294912,0.069495,0.290456,0.004142
			 ,0.096146,0.865145,0.103497,0.843482,0.084251,0.834237,0.074026,0.858175,0.103216,0.700288,0.119578,0.695641,0.120973,0.682751
			 ,0.106063,0.686195,0.086323,0.702188,0.076312,0.708205,0.081523,0.716130,0.091672,0.716208,0.036935,0.722290,0.022577,0.722425
			 ,0.024133,0.734107,0.037609,0.732007,0.101197,0.716636,0.091672,0.716208,0.075439,0.742761,0.089212,0.746333,0.068353,0.698574
			 ,0.058995,0.709188,0.076312,0.708205,0.086323,0.702188,0.564667,0.003503,0.564289,0.034944,0.581407,0.034807,0.582796,0.005464
			 ,0.012326,0.710030,0.024677,0.712231,0.029365,0.705569,0.017449,0.700699,0.096146,0.865145,0.122781,0.871140,0.129034,0.851744
			 ,0.103497,0.843482,0.317574,0.641241,0.312178,0.679356,0.338688,0.675808,0.335715,0.641548,0.075914,0.664114,0.078650,0.675419
			 ,0.098258,0.675043,0.097587,0.663861,0.103216,0.700288,0.101197,0.716636,0.114287,0.717395,0.119578,0.695641,0.241039,0.699450
			 ,0.221919,0.736020,0.263657,0.720339,0.279235,0.686279,0.144926,0.410067,0.211748,0.511897,0.249149,0.453199,0.191146,0.360763
			 ,0.069772,0.041378,0.094432,0.142173,0.157783,0.115060,0.139219,0.025652,0.681537,0.766715,0.656561,0.754335,0.652438,0.760856
			 ,0.671037,0.773116,0.613131,0.130299,0.636866,0.127697,0.623511,0.098752,0.602729,0.103182,0.303306,0.509748,0.338322,0.450893
			 ,0.285589,0.393478,0.249149,0.453199,0.203803,0.634717,0.166354,0.653287,0.167815,0.662729,0.204517,0.644701,0.057847,0.851147
			 ,0.071789,0.826626,0.061940,0.818492,0.044094,0.843722,0.555496,0.572327,0.566082,0.635219,0.567569,0.633551,0.558356,0.575899
			 ,0.029792,0.833275,0.045670,0.815627,0.032137,0.810670,0.017888,0.821330,0.211203,0.881164,0.236433,0.883555,0.241926,0.863807
			 ,0.218601,0.862245,0.410274,0.755052,0.410777,0.758450,0.417068,0.759502,0.418980,0.755939,0.485724,0.274481,0.496934,0.242722
			 ,0.483108,0.236237,0.477029,0.273822,0.241039,0.699450,0.202945,0.713857,0.182947,0.749826,0.221919,0.736020,0.171012,0.723031
			 ,0.147879,0.761597,0.182947,0.749826,0.202945,0.713857,0.101197,0.716636,0.089212,0.746333,0.101854,0.755214,0.114287,0.717395
			 ,0.203803,0.634717,0.204517,0.644701,0.240072,0.625564,0.239899,0.613602,0.171012,0.723031,0.145605,0.727137,0.125880,0.760635
			 ,0.147879,0.761597,0.449599,0.704459,0.456441,0.718280,0.475593,0.712211,0.465402,0.692545,0.086854,0.288243,0.136757,0.249796
			 ,0.094432,0.142173,0.039673,0.167527,0.317574,0.641241,0.314121,0.621500,0.292841,0.625620,0.294636,0.643284,0.385377,0.672589
			 ,0.391066,0.693147,0.408225,0.693240,0.401214,0.674412,0.350913,0.642610,0.335715,0.641548,0.338688,0.675808,0.353074,0.671033
			 ,0.072639,0.716413,0.067517,0.723315,0.069341,0.729812,0.081523,0.716130,0.312178,0.679356,0.302104,0.709876,0.334987,0.702004
			 ,0.338688,0.675808,0.350913,0.642610,0.353074,0.671033,0.369504,0.671065,0.365172,0.645026,0.317574,0.641241,0.335715,0.641548
			 ,0.331029,0.618214,0.314121,0.621500,0.393778,0.654391,0.401214,0.674412,0.414839,0.678657,0.419824,0.667493,0.480275,0.758822
			 ,0.490306,0.752297,0.483823,0.738085,0.472114,0.742238,0.238002,0.308544,0.285589,0.393478,0.319787,0.340890,0.283489,0.264217
			 ,0.000158,0.769126,0.007923,0.766590,0.008931,0.758540,0.000583,0.758620,0.353074,0.671033,0.338688,0.675808,0.334987,0.702004
			 ,0.353495,0.697712,0.613131,0.130299,0.620442,0.152211,0.645944,0.149164,0.636866,0.127697,0.592126,0.136388,0.600224,0.157439
			 ,0.620442,0.152211,0.613131,0.130299,0.374377,0.758100,0.366435,0.778444,0.383526,0.773441,0.387604,0.760506,0.249407,0.572008
			 ,0.257636,0.562928,0.211748,0.511897,0.205021,0.522248,0.582796,0.005464,0.581407,0.034807,0.598641,0.034640,0.601069,0.008654
			 ,0.454517,0.803665,0.474738,0.790639,0.468380,0.771721,0.451041,0.788155,0.409443,0.828723,0.430385,0.818129,0.429677,0.804391
			 ,0.409808,0.814741,0.396951,0.713583,0.376345,0.718164,0.381027,0.741236,0.403342,0.732447,0.451041,0.788155,0.468380,0.771721
			 ,0.438736,0.766533,0.435985,0.781725,0.369690,0.799300,0.385995,0.786916,0.383526,0.773441,0.366435,0.778444,0.403342,0.732447
			 ,0.381027,0.741236,0.397101,0.750342,0.411106,0.746277,0.451041,0.788155,0.435985,0.781725,0.424340,0.794857,0.429677,0.804391
			 ,0.337182,0.807224,0.340275,0.826411,0.384617,0.818770,0.369690,0.799300,0.374377,0.758100,0.387604,0.760506,0.397101,0.750342
			 ,0.381027,0.741236,0.409808,0.814741,0.429677,0.804391,0.424340,0.794857,0.409100,0.799439,0.369690,0.799300,0.384617,0.818770
			 ,0.394707,0.797116,0.385995,0.786916,0.409443,0.828723,0.409808,0.814741,0.384617,0.818770,0.382275,0.837156,0.338755,0.843828
			 ,0.382275,0.837156,0.384617,0.818770,0.340275,0.826411,0.444348,0.725082,0.433407,0.708345,0.415822,0.710741,0.423017,0.729162
			 ,0.353074,0.671033,0.353495,0.697712,0.373054,0.694595,0.369504,0.671065,0.396951,0.713583,0.415822,0.710741,0.408225,0.693240
			 ,0.391066,0.693147,0.547727,0.164212,0.551341,0.186709,0.579605,0.166451,0.570950,0.146586,0.480275,0.758822,0.484132,0.770117
			 ,0.495014,0.768084,0.490306,0.752297,0.480275,0.758822,0.472114,0.742238,0.455982,0.743035,0.464799,0.759199,0.480275,0.758822
			 ,0.464799,0.759199,0.468380,0.771721,0.484132,0.770117,0.492710,0.785806,0.484132,0.770117,0.468380,0.771721,0.474738,0.790639
			 ,0.449599,0.704459,0.465402,0.692545,0.451932,0.672338,0.442239,0.690500,0.036247,0.716288,0.024677,0.712231,0.022577,0.722425
			 ,0.036935,0.722290,0.444348,0.725082,0.455982,0.743035,0.472114,0.742238,0.456441,0.718280,0.317574,0.641241,0.294636,0.643284
			 ,0.279235,0.686279,0.312178,0.679356,0.517573,0.863141,0.501638,0.808851,0.478922,0.816221,0.486914,0.873218,0.265239,0.650394
			 ,0.231029,0.662249,0.202945,0.713857,0.241039,0.699450,0.449599,0.704459,0.442239,0.690500,0.425041,0.691925,0.433407,0.708345
			 ,0.265239,0.650394,0.241039,0.699450,0.279235,0.686279,0.294636,0.643284,0.449599,0.704459,0.433407,0.708345,0.444348,0.725082
			 ,0.456441,0.718280,0.492710,0.785806,0.474738,0.790639,0.478922,0.816221,0.501638,0.808851,0.132801,0.783894,0.147879,0.761597
			 ,0.125880,0.760635,0.109827,0.783355,0.045670,0.815627,0.056468,0.802771,0.043569,0.801435,0.032137,0.810670,0.109827,0.783355
			 ,0.125880,0.760635,0.101854,0.755214,0.092834,0.776978,0.075837,0.812296,0.091956,0.804484,0.082319,0.791867,0.074598,0.798776
			 ,0.080050,0.819217,0.075837,0.812296,0.061940,0.818492,0.071789,0.826626,0.045670,0.815627,0.061940,0.818492,0.067290,0.801543
			 ,0.056468,0.802771,0.022164,0.803927,0.032137,0.810670,0.043569,0.801435,0.033543,0.796881,0.080050,0.819217,0.093940,0.815580
			 ,0.091956,0.804484,0.075837,0.812296,0.194618,0.677353,0.161613,0.690363,0.145605,0.727137,0.171012,0.723031,0.145605,0.727137
			 ,0.114287,0.717395,0.101854,0.755214,0.125880,0.760635,0.075837,0.812296,0.074598,0.798776,0.067290,0.801543,0.061940,0.818492
			 ,0.161613,0.690363,0.166026,0.674210,0.120973,0.682751,0.119578,0.695641,0.010068,0.810124,0.022164,0.803927,0.015115,0.795182
			 ,0.005167,0.798975,0.266798,0.598655,0.239899,0.613602,0.240072,0.625564,0.267790,0.614327,0.161613,0.690363,0.119578,0.695641
			 ,0.114287,0.717395,0.145605,0.727137,0.109827,0.783355,0.092834,0.776978,0.082319,0.791867,0.091956,0.804484,0.106577,0.663613
			 ,0.107607,0.674267,0.120122,0.672772,0.118377,0.662790,0.132801,0.783894,0.109827,0.783355,0.091956,0.804484,0.121959,0.802193
			 ,0.460487,0.879763,0.455738,0.826414,0.430074,0.837070,0.431876,0.884635,0.069505,0.714307,0.072639,0.716413,0.081523,0.716130
			 ,0.076312,0.708205,0.006392,0.731285,0.004219,0.737254,0.022004,0.741016,0.024133,0.734107,0.485724,0.274481,0.488199,0.277782
			 ,0.499849,0.253389,0.496934,0.242722,0.616992,0.012539,0.601069,0.008654,0.598641,0.034640,0.612179,0.038591,0.033698,0.752907
			 ,0.055384,0.753247,0.055323,0.747732,0.032491,0.749943,0.052577,0.694505,0.068353,0.698574,0.078940,0.686521,0.064725,0.684694
			 ,0.616992,0.012539,0.612179,0.038591,0.641871,0.052031,0.650163,0.024371,0.038311,0.771385,0.045213,0.773295,0.056674,0.766483
			 ,0.056054,0.758595,0.032491,0.749943,0.055323,0.747732,0.054493,0.737122,0.037399,0.741616,0.038311,0.771385,0.041210,0.785219
			 ,0.044809,0.780262,0.045213,0.773295,0.267358,0.631768,0.292841,0.625620,0.290480,0.607846,0.267790,0.614327,0.265239,0.650394
			 ,0.267358,0.631768,0.237153,0.642306,0.231029,0.662249,0.052577,0.694505,0.043452,0.690075,0.029365,0.705569,0.040675,0.708040
			 ,0.036247,0.716288,0.036935,0.722290,0.058618,0.718047,0.055922,0.714721,0.036247,0.716288,0.040675,0.708040,0.029365,0.705569
			 ,0.024677,0.712231,0.106063,0.686195,0.107607,0.674267,0.098258,0.675043,0.092224,0.687559,0.314121,0.621500,0.310366,0.602596
			 ,0.290480,0.607846,0.292841,0.625620,0.010210,0.057322,0.039673,0.167527,0.094432,0.142173,0.069772,0.041378,0.344305,0.613599
			 ,0.358214,0.609929,0.348261,0.590429,0.337400,0.593981,0.350913,0.642610,0.365172,0.645026,0.358214,0.609929,0.344305,0.613599
			 ,0.036935,0.722290,0.037609,0.732007,0.056055,0.727432,0.058618,0.718047,0.314121,0.621500,0.331029,0.618214,0.325965,0.598285
			 ,0.310366,0.602596,0.257636,0.562928,0.303306,0.509748,0.249149,0.453199,0.211748,0.511897,0.037609,0.732007,0.037399,0.741616
			 ,0.054493,0.737122,0.056055,0.727432,0.375188,0.610714,0.395372,0.614239,0.369746,0.590727,0.359905,0.589809,0.052577,0.694505
			 ,0.064725,0.684694,0.061732,0.677063,0.043452,0.690075,0.379481,0.649119,0.393778,0.654391,0.395372,0.614239,0.375188,0.610714
			 ,0.103216,0.700288,0.106063,0.686195,0.092224,0.687559,0.086323,0.702188,0.393778,0.654391,0.419824,0.667493,0.428888,0.644592
			 ,0.395372,0.614239,0.194618,0.677353,0.231029,0.662249,0.237153,0.642306,0.201316,0.658844,0.191146,0.360763,0.249149,0.453199
			 ,0.285589,0.393478,0.238002,0.308544,0.516925,0.200062,0.521063,0.221136,0.551341,0.186709,0.547727,0.164212,0.194618,0.677353
			 ,0.201316,0.658844,0.166026,0.674210,0.161613,0.690363,0.290456,0.004142,0.294912,0.069495,0.383418,0.047340,0.379883,0.000158
			 ,0.068353,0.698574,0.086323,0.702188,0.092224,0.687559,0.078940,0.686521,0.201316,0.658844,0.204517,0.644701,0.167815,0.662729
			 ,0.166026,0.674210,0.344305,0.613599,0.337400,0.593981,0.325965,0.598285,0.331029,0.618214,0.166026,0.674210,0.167815,0.662729
			 ,0.120122,0.672772,0.120973,0.682751,0.379481,0.649119,0.375188,0.610714,0.358214,0.609929,0.365172,0.645026,0.265239,0.650394
			 ,0.294636,0.643284,0.292841,0.625620,0.267358,0.631768,0.078940,0.686521,0.092224,0.687559,0.098258,0.675043,0.078650,0.675419
			 ,0.375188,0.610714,0.359905,0.589809,0.348261,0.590429,0.358214,0.609929,0.037609,0.732007,0.024133,0.734107,0.022004,0.741016
			 ,0.037399,0.741616,0.106063,0.686195,0.120973,0.682751,0.120122,0.672772,0.107607,0.674267,0.018755,0.751265,0.032491,0.749943
			 ,0.037399,0.741616,0.022004,0.741016,0.023699,0.773870,0.030897,0.769794,0.038272,0.759257,0.033698,0.752907,0.007923,0.766590
			 ,0.018367,0.761612,0.018755,0.751265,0.008931,0.758540,0.000583,0.758620,0.008931,0.758540,0.018755,0.751265,0.001843,0.748465
			 ,0.023699,0.773870,0.031081,0.784397,0.038311,0.771385,0.030897,0.769794,0.997531,0.572324,0.801940,0.576074,0.788594,0.727374
			 ,0.917159,0.690968,0.592126,0.136388,0.613131,0.130299,0.602729,0.103182,0.583061,0.108992,0.542633,0.128958,0.563294,0.118491
			 ,0.550217,0.075540,0.527026,0.084004,0.660108,0.706740,0.660166,0.704285,0.567569,0.633551,0.566082,0.635219,0.646797,0.086045
			 ,0.669005,0.077661,0.641871,0.052031,0.633308,0.069886,0.678600,0.038237,0.650163,0.024371,0.641871,0.052031,0.669005,0.077661
			 ,0.450057,0.290827,0.477029,0.273822,0.483108,0.236237,0.435015,0.247675,0.516925,0.200062,0.502063,0.157813,0.483108,0.236237
			 ,0.496934,0.242722,0.547727,0.164212,0.570950,0.146586,0.563294,0.118491,0.542633,0.128958,0.592126,0.136388,0.583061,0.108992
			 ,0.563294,0.118491,0.570950,0.146586,0.516925,0.200062,0.547727,0.164212,0.542633,0.128958,0.502063,0.157813,0.283489,0.264217
			 ,0.319787,0.340890,0.368119,0.287003,0.342325,0.221850,0.404151,0.337328,0.450057,0.290827,0.435015,0.247675,0.368119,0.287003
			 ,0.502063,0.157813,0.542633,0.128958,0.527026,0.084004,0.482272,0.101985,0.137029,0.418653,0.205021,0.522248,0.211748,0.511897
			 ,0.144926,0.410067,0.567569,0.633551,0.660166,0.704285,0.651385,0.578336,0.558356,0.575899,0.399884,0.764595,0.396542,0.770257
			 ,0.408170,0.771997,0.394332,0.779113,0.396216,0.786497,0.408170,0.771997,0.394332,0.779113,0.408170,0.771997,0.396542,0.770257
			 ,0.410777,0.758450,0.408170,0.771997,0.417068,0.759502,0.422102,0.777969,0.408170,0.771997,0.417495,0.783636,0.407646,0.787604
			 ,0.408170,0.771997,0.396216,0.786497,0.410777,0.758450,0.404666,0.760690,0.408170,0.771997,0.407646,0.787604,0.417495,0.783636
			 ,0.408170,0.771997,0.422102,0.777969,0.424551,0.771484,0.408170,0.771997,0.422808,0.764383,0.417068,0.759502,0.408170,0.771997
			 ,0.399884,0.764595,0.408170,0.771997,0.404666,0.760690,0.422808,0.764383,0.408170,0.771997,0.424551,0.771484,0.665067,0.738969
			 ,0.639737,0.736369,0.639461,0.746953,0.660668,0.748697,0.492710,0.785806,0.504655,0.786751,0.495014,0.768084,0.484132,0.770117
			 ,0.681537,0.766715,0.700961,0.776681,0.706175,0.775582,0.690084,0.763147,0.616392,0.749169,0.638268,0.752871,0.639461,0.746953
			 ,0.616794,0.742839,0.593762,0.763069,0.589957,0.753006,0.569735,0.755146,0.570040,0.760917,0.560973,0.738915,0.579941,0.736082
			 ,0.579498,0.730148,0.555496,0.734065,0.701186,0.760514,0.690084,0.763147,0.706175,0.775582,0.712698,0.773616,0.581922,0.740272
			 ,0.564857,0.742940,0.569735,0.755146,0.589957,0.753006,0.579941,0.736082,0.560973,0.738915,0.564857,0.742940,0.581922,0.740272
			 ,0.593762,0.763069,0.613833,0.765983,0.615551,0.757029,0.589957,0.753006,0.629642,0.803213,0.622158,0.794229,0.617863,0.813900
			 ,0.625593,0.813898,0.612070,0.781069,0.612298,0.788489,0.625603,0.782335,0.628143,0.775811,0.342325,0.221850,0.419395,0.183279
			 ,0.399249,0.120202,0.315843,0.153425,0.572048,0.068309,0.589356,0.065039,0.581407,0.034807,0.564289,0.034944,0.662627,0.779645
			 ,0.671037,0.773116,0.652438,0.760856,0.647852,0.767310,0.618169,0.730148,0.616794,0.742839,0.639461,0.746953,0.639737,0.736369
			 ,0.597142,0.818433,0.611898,0.801773,0.612298,0.788489,0.592130,0.806074,0.247718,0.182682,0.315843,0.153425,0.294912,0.069495
			 ,0.222995,0.091299,0.634724,0.092579,0.617375,0.065857,0.604769,0.065141,0.623511,0.098752,0.701186,0.760514,0.665067,0.738969
			 ,0.660668,0.748697,0.690084,0.763147,0.589356,0.065039,0.604769,0.065141,0.598641,0.034640,0.581407,0.034807,0.611898,0.801773
			 ,0.611024,0.813750,0.617863,0.813900,0.622158,0.794229,0.628248,0.828795,0.615337,0.839680,0.615463,0.842297,0.628834,0.832569
			 ,0.078312,0.294860,0.086854,0.288243,0.039673,0.167527,0.030348,0.171876,0.611898,0.801773,0.622158,0.794229,0.625603,0.782335
			 ,0.612298,0.788489,0.766369,0.739471,0.766013,0.758486,0.784910,0.759003,0.783455,0.737978,0.517573,0.863141,0.555181,0.845531
			 ,0.543456,0.806467,0.501638,0.808851,0.789241,0.729833,0.918886,0.692895,0.917159,0.690968,0.788594,0.727374,0.137029,0.418653
			 ,0.144926,0.410067,0.086854,0.288243,0.078312,0.294860,0.283489,0.264217,0.342325,0.221850,0.315843,0.153425,0.247718,0.182682
			 ,0.579498,0.730148,0.579941,0.736082,0.616794,0.742839,0.618169,0.730148,0.648906,0.124758,0.657719,0.121934,0.646797,0.086045
			 ,0.634724,0.092579,0.144926,0.410067,0.191146,0.360763,0.136757,0.249796,0.086854,0.288243,0.639465,0.781521,0.628143,0.775811
			 ,0.625603,0.782335,0.635256,0.789561,0.651385,0.578336,0.660166,0.704285,0.788594,0.727374,0.801940,0.576074,0.191055,0.210591
			 ,0.247718,0.182682,0.222995,0.091299,0.157783,0.115060,0.238002,0.308544,0.283489,0.264217,0.247718,0.182682,0.191055,0.210591
			 ,0.419395,0.183279,0.502063,0.157813,0.482272,0.101985,0.399249,0.120202,0.583061,0.108992,0.602729,0.103182,0.589356,0.065039
			 ,0.572048,0.068309,0.804496,0.746177,0.808934,0.758659,0.822525,0.758319,0.811507,0.742985,0.590603,0.792002,0.612070,0.781069
			 ,0.612372,0.774291,0.592777,0.777460,0.717111,0.058481,0.678600,0.038237,0.669005,0.077661,0.693694,0.086550,0.593762,0.763069
			 ,0.592777,0.777460,0.612372,0.774291,0.613833,0.765983,0.617375,0.065857,0.612179,0.038591,0.598641,0.034640,0.604769,0.065141
			 ,0.603125,0.828507,0.615337,0.839680,0.617863,0.813900,0.611024,0.813750,0.662627,0.779645,0.647852,0.767310,0.643460,0.774154
			 ,0.655422,0.787980,0.768852,0.775076,0.766013,0.758486,0.751334,0.758571,0.755402,0.774079,0.634724,0.092579,0.646797,0.086045
			 ,0.633308,0.069886,0.617375,0.065857,0.656561,0.754335,0.638268,0.752871,0.636622,0.758919,0.652438,0.760856,0.597142,0.818433
			 ,0.603125,0.828507,0.611024,0.813750,0.611898,0.801773,0.399249,0.120202,0.482272,0.101985,0.460762,0.038036,0.383418,0.047340
			 ,0.616392,0.749169,0.615551,0.757029,0.636622,0.758919,0.638268,0.752871,0.572048,0.068309,0.564289,0.034944,0.537244,0.034000
			 ,0.550217,0.075540,0.629642,0.803213,0.635256,0.789561,0.625603,0.782335,0.622158,0.794229,0.628248,0.828795,0.625593,0.813898
			 ,0.617863,0.813900,0.615337,0.839680,0.597142,0.818433,0.591864,0.825983,0.601145,0.834988,0.603125,0.828507,0.656561,0.754335
			 ,0.660668,0.748697,0.639461,0.746953,0.638268,0.752871,0.590603,0.792002,0.592130,0.806074,0.612298,0.788489,0.612070,0.781069
			 ,0.492710,0.785806,0.501638,0.808851,0.543456,0.806467,0.504655,0.786751,0.603125,0.828507,0.601145,0.834988,0.615463,0.842297
			 ,0.615337,0.839680,0.602729,0.103182,0.623511,0.098752,0.604769,0.065141,0.589356,0.065039,0.482272,0.101985,0.527026,0.084004
			 ,0.510985,0.033363,0.460762,0.038036,0.191146,0.360763,0.238002,0.308544,0.191055,0.210591,0.136757,0.249796,0.647852,0.767310
			 ,0.652438,0.760856,0.636622,0.758919,0.633753,0.764760,0.681537,0.766715,0.690084,0.763147,0.660668,0.748697,0.656561,0.754335
			 ,0.650433,0.797857,0.639465,0.781521,0.635256,0.789561,0.645330,0.808376,0.650433,0.797857,0.655422,0.787980,0.643460,0.774154
			 ,0.639465,0.781521,0.733487,0.749176,0.735710,0.758432,0.751334,0.758571,0.748533,0.743741,0.720517,0.756314,0.735710,0.758432
			 ,0.733487,0.749176,0.729160,0.750755,0.768852,0.775076,0.767646,0.783194,0.781353,0.782090,0.783057,0.773443,0.741542,0.770013
			 ,0.755402,0.774079,0.751334,0.758571,0.735710,0.758432,0.713013,0.756269,0.720517,0.756314,0.729160,0.750755,0.725550,0.747581
			 ,0.793122,0.769388,0.796031,0.758637,0.784910,0.759003,0.783057,0.773443,0.733487,0.749176,0.730357,0.743724,0.725550,0.747581
			 ,0.729160,0.750755,0.793122,0.769388,0.794613,0.776541,0.806888,0.769611,0.801054,0.766250,0.732313,0.766226,0.720517,0.756314
			 ,0.713013,0.756269,0.730168,0.772713,0.796436,0.741713,0.800198,0.735122,0.785702,0.730148,0.783455,0.737978,0.796436,0.741713
			 ,0.783455,0.737978,0.784910,0.759003,0.796031,0.758637,0.793122,0.769388,0.783057,0.773443,0.781353,0.782090,0.794613,0.776541
			 ,0.768852,0.775076,0.783057,0.773443,0.784910,0.759003,0.766013,0.758486,0.801054,0.766250,0.806888,0.769611,0.822525,0.758319
			 ,0.808934,0.758659,0.796436,0.741713,0.796031,0.758637,0.808934,0.758659,0.804496,0.746177,0.735710,0.758432,0.720517,0.756314
			 ,0.732313,0.766226,0.741542,0.770013,0.768852,0.775076,0.755402,0.774079,0.754577,0.781460,0.767646,0.783194,0.766369,0.739471
			 ,0.748533,0.743741,0.751334,0.758571,0.766013,0.758486,0.733487,0.749176,0.748533,0.743741,0.747154,0.734476,0.730357,0.743724
			 ,0.796436,0.741713,0.804496,0.746177,0.811507,0.742985,0.800198,0.735122,0.793122,0.769388,0.801054,0.766250,0.808934,0.758659
			 ,0.796031,0.758637,0.741542,0.770013,0.732313,0.766226,0.730168,0.772713,0.741765,0.778105,0.741542,0.770013,0.741765,0.778105
			 ,0.754577,0.781460,0.755402,0.774079,0.801940,0.576074,0.558356,0.575899,0.651385,0.578336,0.555496,0.572327,0.558356,0.575899
			 ,0.801940,0.576074,0.997531,0.572324,0.070398,0.780136,0.071074,0.777766,0.065656,0.776229,0.064609,0.778625,0.061053,0.777433
			 ,0.059785,0.779921,0.063062,0.781116,0.064609,0.778625,0.023699,0.773870,0.019102,0.777057,0.026367,0.789405,0.031081,0.784397
			 ,0.056788,0.778587,0.058046,0.776272,0.055404,0.775427,0.053950,0.776644,0.052002,0.778323,0.055255,0.780973,0.056788,0.778587
			 ,0.053950,0.776644,0.044809,0.780262,0.041210,0.785219,0.049721,0.789186,0.053846,0.784794,0.001255,0.781687,0.005167,0.798975
			 ,0.015115,0.795182,0.008697,0.779926,0.038141,0.790717,0.041210,0.785219,0.038311,0.771385,0.031081,0.784397,0.055922,0.714721
			 ,0.058618,0.718047,0.072639,0.716413,0.069505,0.714307,0.036247,0.716288,0.055922,0.714721,0.058995,0.709188,0.040675,0.708040
			 ,0.023699,0.773870,0.033698,0.752907,0.018367,0.761612,0.019102,0.777057,0.058471,0.668857,0.061732,0.677063,0.078650,0.675419
			 ,0.075914,0.664114,0.055323,0.747732,0.075439,0.742761,0.069341,0.729812,0.054493,0.737122,0.064725,0.684694,0.078940,0.686521
			 ,0.078650,0.675419,0.061732,0.677063,0.058618,0.718047,0.056055,0.727432,0.067517,0.723315,0.072639,0.716413,0.746071,0.010608
			 ,0.750875,0.003316,0.742961,0.000158,0.741350,0.008537,0.746071,0.010608,0.749836,0.014128,0.756901,0.009342,0.750875,0.003316
			 ,0.731617,0.032543,0.727852,0.029023,0.720787,0.033808,0.726812,0.039834,0.727877,0.014349,0.731397,0.010584,0.726611,0.003520
			 ,0.720585,0.009545,0.751710,0.018931,0.760263,0.017172,0.756901,0.009342,0.749836,0.014128,0.751710,0.018931,0.751883,0.024083
			 ,0.760263,0.025694,0.760263,0.017172,0.742465,0.016081,0.746071,0.010608,0.741350,0.008537,0.740061,0.015246,0.727877,0.014349
			 ,0.720585,0.009545,0.717426,0.017458,0.725805,0.019069,0.731617,0.032543,0.726812,0.039834,0.734725,0.042994,0.736337,0.034614
			 ,0.737519,0.015130,0.736199,0.008711,0.731397,0.010584,0.735228,0.016239,0.749812,0.028803,0.757103,0.033609,0.760263,0.025694
			 ,0.751883,0.024083,0.736199,0.008711,0.741350,0.008537,0.742961,0.000158,0.734440,0.000158,0.725979,0.024221,0.725805,0.019069
			 ,0.717426,0.017458,0.717426,0.025979,0.745290,0.020251,0.751710,0.018931,0.749836,0.014128,0.744180,0.017960,0.736199,0.008711
			 ,0.734440,0.000158,0.726611,0.003520,0.731397,0.010584,0.741488,0.034441,0.736337,0.034614,0.734725,0.042994,0.743246,0.042995
			 ,0.742465,0.016081,0.744180,0.017960,0.749836,0.014128,0.746071,0.010608,0.741488,0.034441,0.743246,0.042995,0.751077,0.039634
			 ,0.746291,0.032568,0.725979,0.024221,0.717426,0.025979,0.720787,0.033808,0.727852,0.029023,0.737519,0.015130,0.740061,0.015246
			 ,0.741350,0.008537,0.736199,0.008711,0.749812,0.028803,0.746291,0.032568,0.751077,0.039634,0.757103,0.033609,0.732398,0.022901
			 ,0.732514,0.020359,0.725805,0.019069,0.725979,0.024221,0.740169,0.028022,0.742459,0.026912,0.738844,0.021576,0.737627,0.027906
			 ,0.737519,0.015130,0.735228,0.016239,0.738844,0.021576,0.740061,0.015246,0.733349,0.017955,0.732514,0.020359,0.738844,0.021576
			 ,0.735228,0.016239,0.732398,0.022901,0.725979,0.024221,0.727852,0.029023,0.733508,0.025191,0.740169,0.028022,0.741488,0.034441
			 ,0.746291,0.032568,0.742459,0.026912,0.735223,0.027071,0.733508,0.025191,0.727852,0.029023,0.731617,0.032543,0.735223,0.027071
			 ,0.731617,0.032543,0.736337,0.034614,0.737627,0.027906,0.745290,0.020251,0.745174,0.022793,0.751883,0.024083,0.751710,0.018931
			 ,0.742465,0.016081,0.740061,0.015246,0.738844,0.021576,0.744180,0.017960,0.744339,0.025197,0.745174,0.022793,0.738844,0.021576
			 ,0.742459,0.026912,0.733349,0.017955,0.727877,0.014349,0.725805,0.019069,0.732514,0.020359,0.740169,0.028022,0.737627,0.027906
			 ,0.736337,0.034614,0.741488,0.034441,0.745290,0.020251,0.744180,0.017960,0.738844,0.021576,0.745174,0.022793,0.744339,0.025197
			 ,0.742459,0.026912,0.746291,0.032568,0.749812,0.028803,0.733349,0.017955,0.735228,0.016239,0.731397,0.010584,0.727877,0.014349
			 ,0.735223,0.027071,0.737627,0.027906,0.738844,0.021576,0.733508,0.025191,0.732398,0.022901,0.733508,0.025191,0.738844,0.021576
			 ,0.732514,0.020359,0.744339,0.025197,0.749812,0.028803,0.751883,0.024083,0.745174,0.022793
			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,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794
				,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849
				,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904
				,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959
				,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014
				,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069
				,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124
				,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179
				,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234
				,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289
				,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344
				,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399
				,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454
				,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509
				,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564
				,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589
		}
		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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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.124189,0.978375,0.106580,0.978375,0.106580,0.995984,0.124189,0.995984,0.611369,0.004016,0.516837,0.004016,0.516837,0.098548
			 ,0.611369,0.098548,0.201112,0.516837,0.106580,0.516837,0.106580,0.611369,0.201112,0.611369,0.303676,0.516837,0.209144,0.516837
			 ,0.209144,0.611369,0.303676,0.611369,0.995984,0.106580,0.978375,0.106580,0.978375,0.149830,0.995984,0.149830,0.157862,0.995984
			 ,0.201112,0.995984,0.201112,0.978375,0.157862,0.978375,0.995984,0.380599,0.995984,0.337349,0.978375,0.337349,0.978375,0.380599
			 ,0.406240,0.995984,0.406240,0.978375,0.362990,0.978375,0.362990,0.995984,0.995984,0.431881,0.995984,0.388631,0.978375,0.388631
			 ,0.978375,0.431881,0.252394,0.995984,0.252394,0.978375,0.209144,0.978375,0.209144,0.995984,0.995984,0.303676,0.995984,0.260426
			 ,0.978375,0.260426,0.978375,0.303676,0.311708,0.995984,0.354958,0.995984,0.354958,0.978375,0.311708,0.978375,0.995984,0.209144
			 ,0.978375,0.209144,0.978375,0.252394,0.995984,0.252394,0.260426,0.995984,0.303676,0.995984,0.303676,0.978375,0.260426,0.978375
			 ,0.995984,0.157862,0.978375,0.157862,0.978375,0.201112,0.995984,0.201112,0.098548,0.978375,0.080939,0.978375,0.080939,0.995984
			 ,0.098548,0.995984,0.047266,0.901452,0.029657,0.901452,0.029657,0.919061,0.047266,0.919061,0.021625,0.901452,0.004016,0.901452
			 ,0.004016,0.919061,0.021625,0.919061,0.047266,0.875811,0.029657,0.875811,0.029657,0.893420,0.047266,0.893420,0.021625,0.875811
			 ,0.004016,0.875811,0.004016,0.893420,0.021625,0.893420,0.919061,0.029657,0.901452,0.029657,0.901452,0.047266,0.919061,0.047266
			 ,0.457522,0.995984,0.457522,0.978375,0.414272,0.978375,0.414272,0.995984,0.893420,0.029657,0.875811,0.029657,0.875811,0.047266
			 ,0.893420,0.047266,0.919061,0.004016,0.901452,0.004016,0.901452,0.021625,0.919061,0.021625,0.893420,0.004016,0.875811,0.004016
			 ,0.875811,0.021625,0.893420,0.021625,0.713933,0.901452,0.696324,0.901452,0.696324,0.919061,0.713933,0.919061,0.688292,0.901452
			 ,0.670683,0.901452,0.670683,0.919061,0.688292,0.919061,0.713933,0.875811,0.696324,0.875811,0.696324,0.893420,0.713933,0.893420
			 ,0.688292,0.875811,0.670683,0.875811,0.670683,0.893420,0.688292,0.893420,0.098548,0.875811,0.055298,0.875811,0.055298,0.919061
			 ,0.098548,0.919061,0.995984,0.465555,0.978375,0.465555,0.978375,0.508804,0.995984,0.508804,0.098548,0.516837,0.004016,0.516837
			 ,0.004016,0.611369,0.098548,0.611369,0.465555,0.995984,0.508804,0.995984,0.508804,0.978375,0.465555,0.978375,0.995984,0.516837
			 ,0.978375,0.516837,0.978375,0.560086,0.995984,0.560086,0.516837,0.995984,0.560086,0.995984,0.560086,0.978375,0.516837,0.978375
			 ,0.995984,0.568119,0.978375,0.568119,0.978375,0.611369,0.995984,0.611369,0.919061,0.080939,0.901452,0.080939,0.901452,0.098548
			 ,0.919061,0.098548,0.893420,0.080939,0.875811,0.080939,0.875811,0.098548,0.893420,0.098548,0.611369,0.995984,0.611369,0.978375
			 ,0.568119,0.978375,0.568119,0.995984,0.995984,0.970343,0.995984,0.927093,0.978375,0.927093,0.978375,0.970343,0.919061,0.055298
			 ,0.901452,0.055298,0.901452,0.072907,0.919061,0.072907,0.893420,0.055298,0.875811,0.055298,0.875811,0.072907,0.893420,0.072907
			 ,0.919061,0.542478,0.901452,0.542478,0.901452,0.560086,0.919061,0.560086,0.893420,0.542478,0.875811,0.542478,0.875811,0.560086
			 ,0.893420,0.560086,0.662651,0.995984,0.662651,0.978375,0.619401,0.978375,0.619401,0.995984,0.995984,0.919061,0.995984,0.875811
			 ,0.978375,0.875811,0.978375,0.919061,0.919061,0.516837,0.901452,0.516837,0.901452,0.534445,0.919061,0.534445,0.893420,0.516837
			 ,0.875811,0.516837,0.875811,0.534445,0.893420,0.534445,0.919061,0.593760,0.901452,0.593760,0.901452,0.611369,0.919061,0.611369
			 ,0.893420,0.593760,0.875811,0.593760,0.875811,0.611369,0.893420,0.611369,0.713933,0.414272,0.619401,0.414272,0.619401,0.508804
			 ,0.713933,0.508804,0.713933,0.311708,0.619401,0.311708,0.619401,0.406240,0.713933,0.406240,0.919061,0.568119,0.901452,0.568119
			 ,0.901452,0.585728,0.919061,0.585728,0.893420,0.568119,0.875811,0.568119,0.875811,0.585728,0.893420,0.585728,0.919061,0.645042
			 ,0.901452,0.645042,0.901452,0.662651,0.919061,0.662651,0.713933,0.995984,0.713933,0.978375,0.670683,0.978375,0.670683,0.995984
			 ,0.893420,0.645042,0.875811,0.645042,0.875811,0.662651,0.893420,0.662651,0.995984,0.004016,0.978375,0.004016,0.978375,0.047266
			 ,0.995984,0.047266,0.919061,0.619401,0.901452,0.619401,0.901452,0.637010,0.919061,0.637010,0.893420,0.619401,0.875811,0.619401
			 ,0.875811,0.637010,0.893420,0.637010,0.919061,0.696324,0.901452,0.696324,0.901452,0.713933,0.919061,0.713933,0.765215,0.995984
			 ,0.765215,0.978375,0.721965,0.978375,0.721965,0.995984,0.893420,0.696324,0.875811,0.696324,0.875811,0.713933,0.893420,0.713933
			 ,0.919061,0.670683,0.901452,0.670683,0.901452,0.688292,0.919061,0.688292,0.995984,0.098548,0.995984,0.055298,0.978375,0.055298
			 ,0.978375,0.098548,0.816497,0.995984,0.816497,0.978375,0.773247,0.978375,0.773247,0.995984,0.995984,0.662651,0.995984,0.619401
			 ,0.978375,0.619401,0.978375,0.662651,0.824529,0.995984,0.867779,0.995984,0.867779,0.978375,0.824529,0.978375,0.995984,0.670683
			 ,0.978375,0.670683,0.978375,0.713933,0.995984,0.713933,0.893420,0.670683,0.875811,0.670683,0.875811,0.688292,0.893420,0.688292
			 ,0.765215,0.901452,0.747606,0.901452,0.747606,0.919061,0.765215,0.919061,0.739574,0.901452,0.721965,0.901452,0.721965,0.919061
			 ,0.739574,0.919061,0.765215,0.875811,0.747606,0.875811,0.747606,0.893420,0.765215,0.893420,0.739574,0.875811,0.721965,0.875811
			 ,0.721965,0.893420,0.739574,0.893420,0.816497,0.901452,0.798888,0.901452,0.798888,0.919061,0.816497,0.919061,0.790856,0.901452
			 ,0.773247,0.901452,0.773247,0.919061,0.790856,0.919061,0.816497,0.875811,0.798888,0.875811,0.798888,0.893420,0.816497,0.893420
			 ,0.790856,0.875811,0.773247,0.875811,0.773247,0.893420,0.790856,0.893420,0.611369,0.901452,0.593760,0.901452,0.593760,0.919061
			 ,0.611369,0.919061,0.585728,0.901452,0.568119,0.901452,0.568119,0.919061,0.585728,0.919061,0.611369,0.875811,0.593760,0.875811
			 ,0.593760,0.893420,0.611369,0.893420,0.585728,0.875811,0.568119,0.875811,0.568119,0.893420,0.585728,0.893420,0.662651,0.901452
			 ,0.645042,0.901452,0.645042,0.919061,0.662651,0.919061,0.637010,0.901452,0.619401,0.901452,0.619401,0.919061,0.637010,0.919061
			 ,0.662651,0.875811,0.645042,0.875811,0.645042,0.893420,0.662651,0.893420,0.637010,0.875811,0.619401,0.875811,0.619401,0.893420
			 ,0.637010,0.893420,0.149830,0.901452,0.132221,0.901452,0.132221,0.919061,0.149830,0.919061,0.124189,0.901452,0.106580,0.901452
			 ,0.106580,0.919061,0.124189,0.919061,0.149830,0.875811,0.132221,0.875811,0.132221,0.893420,0.149830,0.893420,0.124189,0.875811
			 ,0.106580,0.875811,0.106580,0.893420,0.124189,0.893420,0.303676,0.901452,0.286067,0.901452,0.286067,0.919061,0.303676,0.919061
			 ,0.278035,0.901452,0.260426,0.901452,0.260426,0.919061,0.278035,0.919061,0.303676,0.875811,0.286067,0.875811,0.286067,0.893420
			 ,0.303676,0.893420,0.278035,0.875811,0.260426,0.875811,0.260426,0.893420,0.278035,0.893420,0.406240,0.901452,0.388631,0.901452
			 ,0.388631,0.919061,0.406240,0.919061,0.380599,0.901452,0.362990,0.901452,0.362990,0.919061,0.380599,0.919061,0.406240,0.875811
			 ,0.388631,0.875811,0.388631,0.893420,0.406240,0.893420,0.380599,0.875811,0.362990,0.875811,0.362990,0.893420,0.380599,0.893420
			 ,0.927093,0.995984,0.970343,0.995984,0.970343,0.978375,0.927093,0.978375,0.995984,0.765215,0.995984,0.721965,0.978375,0.721965
			 ,0.978375,0.765215,0.919061,0.995984,0.919061,0.978375,0.875811,0.978375,0.875811,0.995984,0.995984,0.773247,0.978375,0.773247
			 ,0.978375,0.816497,0.995984,0.816497,0.893420,0.747606,0.875811,0.747606,0.875811,0.765215,0.893420,0.765215,0.867779,0.747606
			 ,0.850170,0.747606,0.850170,0.765215,0.867779,0.765215,0.893420,0.721965,0.875811,0.721965,0.875811,0.739574,0.893420,0.739574
			 ,0.867779,0.721965,0.850170,0.721965,0.850170,0.739574,0.867779,0.739574,0.893420,0.798888,0.875811,0.798888,0.875811,0.816497
			 ,0.893420,0.816497,0.867779,0.798888,0.850170,0.798888,0.850170,0.816497,0.867779,0.816497,0.893420,0.773247,0.875811,0.773247
			 ,0.875811,0.790856,0.893420,0.790856,0.952734,0.457522,0.995984,0.457522,0.995984,0.439914,0.952734,0.439914,0.995984,0.824529
			 ,0.978375,0.824529,0.978375,0.867779,0.995984,0.867779,0.995984,0.329317,0.995984,0.311708,0.952734,0.311708,0.952734,0.329317
			 ,0.713933,0.721965,0.670683,0.721965,0.670683,0.765215,0.713933,0.765215,0.970343,0.867779,0.970343,0.824529,0.952734,0.824529
			 ,0.952734,0.867779,0.919061,0.970343,0.919061,0.952734,0.875811,0.952734,0.875811,0.970343,0.765215,0.004016,0.721965,0.004016
			 ,0.721965,0.047266,0.765215,0.047266,0.765215,0.055298,0.721965,0.055298,0.721965,0.098548,0.765215,0.098548,0.970343,0.919061
			 ,0.970343,0.875811,0.952734,0.875811,0.952734,0.919061,0.867779,0.773247,0.850170,0.773247,0.850170,0.790856,0.867779,0.790856
			 ,0.560086,0.875811,0.542478,0.875811,0.542478,0.893420,0.560086,0.893420,0.534445,0.875811,0.516837,0.875811,0.516837,0.893420
			 ,0.534445,0.893420,0.560086,0.850170,0.542478,0.850170,0.542478,0.867779,0.560086,0.867779,0.303676,0.970343,0.303676,0.952734
			 ,0.260426,0.952734,0.260426,0.970343,0.534445,0.850170,0.516837,0.850170,0.516837,0.867779,0.534445,0.867779,0.508804,0.875811
			 ,0.491196,0.875811,0.491196,0.893420,0.508804,0.893420,0.970343,0.927093,0.952734,0.927093,0.952734,0.970343,0.970343,0.970343
			 ,0.465555,0.970343,0.508804,0.970343,0.508804,0.952734,0.465555,0.952734,0.483163,0.875811,0.465555,0.875811,0.465555,0.893420
			 ,0.483163,0.893420,0.508804,0.850170,0.491196,0.850170,0.491196,0.867779,0.508804,0.867779,0.739574,0.106580,0.721965,0.106580
			 ,0.721965,0.303676,0.739574,0.303676,0.483163,0.850170,0.465555,0.850170,0.465555,0.867779,0.483163,0.867779,0.893420,0.132221
			 ,0.875811,0.132221,0.875811,0.149830,0.893420,0.149830,0.867779,0.132221,0.850170,0.132221,0.850170,0.149830,0.867779,0.149830
			 ,0.893420,0.106580,0.875811,0.106580,0.875811,0.124189,0.893420,0.124189,0.867779,0.106580,0.850170,0.106580,0.850170,0.124189
			 ,0.867779,0.124189,0.893420,0.183503,0.875811,0.183503,0.875811,0.201112,0.893420,0.201112,0.867779,0.183503,0.850170,0.183503
			 ,0.850170,0.201112,0.867779,0.201112,0.893420,0.157862,0.875811,0.157862,0.875811,0.175471,0.893420,0.175471,0.867779,0.157862
			 ,0.850170,0.157862,0.850170,0.175471,0.867779,0.175471,0.893420,0.388631,0.875811,0.388631,0.875811,0.406240,0.893420,0.406240
			 ,0.867779,0.388631,0.850170,0.388631,0.850170,0.406240,0.867779,0.406240,0.893420,0.362990,0.875811,0.362990,0.875811,0.380599
			 ,0.893420,0.380599,0.867779,0.362990,0.850170,0.362990,0.850170,0.380599,0.867779,0.380599,0.867779,0.850170,0.850170,0.850170
			 ,0.850170,0.867779,0.867779,0.867779,0.842138,0.850170,0.824529,0.850170,0.824529,0.867779,0.842138,0.867779,0.867779,0.824529
			 ,0.850170,0.824529,0.850170,0.842138,0.867779,0.842138,0.842138,0.824529,0.824529,0.824529,0.824529,0.842138,0.842138,0.842138
			 ,0.560086,0.970343,0.560086,0.952734,0.516837,0.952734,0.516837,0.970343,0.201112,0.721965,0.157862,0.721965,0.157862,0.765215
			 ,0.201112,0.765215,0.765215,0.721965,0.721965,0.721965,0.721965,0.765215,0.765215,0.765215,0.970343,0.047266,0.970343,0.004016
			 ,0.952734,0.004016,0.952734,0.047266,0.611369,0.970343,0.611369,0.952734,0.568119,0.952734,0.568119,0.970343,0.970343,0.098548
			 ,0.970343,0.055298,0.952734,0.055298,0.952734,0.098548,0.662651,0.970343,0.662651,0.952734,0.619401,0.952734,0.619401,0.970343
			 ,0.970343,0.149830,0.970343,0.106580,0.952734,0.106580,0.952734,0.149830,0.867779,0.029657,0.850170,0.029657,0.850170,0.047266
			 ,0.867779,0.047266,0.842138,0.029657,0.824529,0.029657,0.824529,0.047266,0.842138,0.047266,0.867779,0.004016,0.850170,0.004016
			 ,0.850170,0.021625,0.867779,0.021625,0.842138,0.004016,0.824529,0.004016,0.824529,0.021625,0.842138,0.021625,0.670683,0.970343
			 ,0.713933,0.970343,0.713933,0.952734,0.670683,0.952734,0.970343,0.388631,0.952734,0.388631,0.952734,0.431881,0.970343,0.431881
			 ,0.842138,0.132221,0.824529,0.132221,0.824529,0.149830,0.842138,0.149830,0.816497,0.132221,0.798888,0.132221,0.798888,0.149830
			 ,0.816497,0.149830,0.842138,0.106580,0.824529,0.106580,0.824529,0.124189,0.842138,0.124189,0.816497,0.106580,0.798888,0.106580
			 ,0.798888,0.124189,0.816497,0.124189,0.842138,0.439914,0.824529,0.439914,0.824529,0.457522,0.842138,0.457522,0.816497,0.439914
			 ,0.798888,0.439914,0.798888,0.457522,0.816497,0.457522,0.842138,0.414272,0.824529,0.414272,0.824529,0.431881,0.842138,0.431881
			 ,0.816497,0.414272,0.798888,0.414272,0.798888,0.431881,0.816497,0.431881,0.149830,0.798888,0.132221,0.798888,0.132221,0.816497
			 ,0.149830,0.816497,0.124189,0.798888,0.106580,0.798888,0.106580,0.816497,0.124189,0.816497,0.149830,0.773247,0.132221,0.773247
			 ,0.132221,0.790856,0.149830,0.790856,0.124189,0.773247,0.106580,0.773247,0.106580,0.790856,0.124189,0.790856,0.662651,0.798888
			 ,0.645042,0.798888,0.645042,0.816497,0.662651,0.816497,0.637010,0.798888,0.619401,0.798888,0.619401,0.816497,0.637010,0.816497
			 ,0.662651,0.773247,0.645042,0.773247,0.645042,0.790856,0.662651,0.790856,0.637010,0.773247,0.619401,0.773247,0.619401,0.790856
			 ,0.637010,0.790856,0.406240,0.798888,0.388631,0.798888,0.388631,0.816497,0.406240,0.816497,0.721965,0.970343,0.765215,0.970343
			 ,0.765215,0.952734,0.721965,0.952734,0.380599,0.798888,0.362990,0.798888,0.362990,0.816497,0.380599,0.816497,0.406240,0.773247
			 ,0.388631,0.773247,0.388631,0.790856,0.406240,0.790856,0.380599,0.773247,0.362990,0.773247,0.362990,0.790856,0.380599,0.790856
			 ,0.816497,0.542478,0.798888,0.542478,0.798888,0.560086,0.816497,0.560086,0.790856,0.542478,0.773247,0.542478,0.773247,0.560086
			 ,0.790856,0.560086,0.816497,0.516837,0.798888,0.516837,0.798888,0.534445,0.816497,0.534445,0.790856,0.516837,0.773247,0.516837
			 ,0.773247,0.534445,0.790856,0.534445,0.816497,0.593760,0.798888,0.593760,0.798888,0.611369,0.816497,0.611369,0.790856,0.593760
			 ,0.773247,0.593760,0.773247,0.611369,0.790856,0.611369,0.816497,0.568119,0.798888,0.568119,0.798888,0.585728,0.816497,0.585728
			 ,0.790856,0.568119,0.773247,0.568119,0.773247,0.585728,0.790856,0.585728,0.611369,0.798888,0.593760,0.798888,0.593760,0.816497
			 ,0.611369,0.816497,0.585728,0.798888,0.568119,0.798888,0.568119,0.816497,0.585728,0.816497,0.611369,0.773247,0.593760,0.773247
			 ,0.593760,0.790856,0.611369,0.790856,0.585728,0.773247,0.568119,0.773247,0.568119,0.790856,0.585728,0.790856,0.790856,0.183503
			 ,0.773247,0.183503,0.773247,0.201112,0.790856,0.201112,0.765215,0.183503,0.747606,0.183503,0.747606,0.201112,0.765215,0.201112
			 ,0.790856,0.157862,0.773247,0.157862,0.773247,0.175471,0.790856,0.175471,0.765215,0.157862,0.747606,0.157862,0.747606,0.175471
			 ,0.765215,0.175471,0.790856,0.132221,0.773247,0.132221,0.773247,0.149830,0.790856,0.149830,0.765215,0.132221,0.747606,0.132221
			 ,0.747606,0.149830,0.765215,0.149830,0.790856,0.106580,0.773247,0.106580,0.773247,0.124189,0.790856,0.124189,0.765215,0.106580
			 ,0.747606,0.106580,0.747606,0.124189,0.765215,0.124189,0.611369,0.747606,0.593760,0.747606,0.593760,0.765215,0.611369,0.765215
			 ,0.585728,0.747606,0.568119,0.747606,0.568119,0.765215,0.585728,0.765215,0.970343,0.380599,0.970343,0.337349,0.952734,0.337349
			 ,0.952734,0.380599,0.611369,0.721965,0.593760,0.721965,0.593760,0.739574,0.611369,0.739574,0.585728,0.721965,0.568119,0.721965
			 ,0.568119,0.739574,0.585728,0.739574,0.816497,0.970343,0.816497,0.952734,0.773247,0.952734,0.773247,0.970343,0.919061,0.850170
			 ,0.901452,0.850170,0.901452,0.867779,0.919061,0.867779,0.893420,0.850170,0.875811,0.850170,0.875811,0.867779,0.893420,0.867779
			 ,0.713933,0.516837,0.696324,0.516837,0.696324,0.713933,0.713933,0.713933,0.919061,0.824529,0.901452,0.824529,0.901452,0.842138
			 ,0.919061,0.842138,0.893420,0.824529,0.875811,0.824529,0.875811,0.842138,0.893420,0.842138,0.047266,0.696324,0.029657,0.696324
			 ,0.029657,0.713933,0.047266,0.713933,0.021625,0.696324,0.004016,0.696324,0.004016,0.713933,0.021625,0.713933,0.047266,0.670683
			 ,0.029657,0.670683,0.029657,0.688292,0.047266,0.688292,0.021625,0.670683,0.004016,0.670683,0.004016,0.688292,0.021625,0.688292
			 ,0.098548,0.696324,0.080939,0.696324,0.080939,0.713933,0.098548,0.713933,0.072907,0.696324,0.055298,0.696324,0.055298,0.713933
			 ,0.072907,0.713933,0.098548,0.670683,0.080939,0.670683,0.080939,0.688292,0.098548,0.688292,0.072907,0.670683,0.055298,0.670683
			 ,0.055298,0.688292,0.072907,0.688292,0.662651,0.747606,0.645042,0.747606,0.645042,0.765215,0.662651,0.765215,0.637010,0.747606
			 ,0.619401,0.747606,0.619401,0.765215,0.637010,0.765215,0.662651,0.721965,0.645042,0.721965,0.645042,0.739574,0.662651,0.739574
			 ,0.867779,0.970343,0.867779,0.952734,0.824529,0.952734,0.824529,0.970343,0.637010,0.721965,0.619401,0.721965,0.619401,0.739574
			 ,0.637010,0.739574,0.765215,0.542478,0.747606,0.542478,0.747606,0.560086,0.765215,0.560086,0.970343,0.611369,0.970343,0.568119
			 ,0.952734,0.568119,0.952734,0.611369,0.790856,0.209144,0.747606,0.209144,0.747606,0.252394,0.790856,0.252394,0.516837,0.688292
			 ,0.611369,0.688292,0.611369,0.645042,0.516837,0.645042,0.739574,0.542478,0.721965,0.542478,0.721965,0.560086,0.739574,0.560086
			 ,0.765215,0.516837,0.747606,0.516837,0.747606,0.534445,0.765215,0.534445,0.739574,0.516837,0.721965,0.516837,0.721965,0.534445
			 ,0.739574,0.534445,0.970343,0.773247,0.952734,0.773247,0.952734,0.816497,0.970343,0.816497,0.055298,0.970343,0.098548,0.970343
			 ,0.098548,0.952734,0.055298,0.952734,0.970343,0.619401,0.952734,0.619401,0.952734,0.662651,0.970343,0.662651,0.354958,0.747606
			 ,0.337349,0.747606,0.337349,0.765215,0.354958,0.765215,0.414272,0.713933,0.611369,0.713933,0.611369,0.696324,0.414272,0.696324
			 ,0.970343,0.713933,0.970343,0.670683,0.952734,0.670683,0.952734,0.713933,0.329317,0.747606,0.311708,0.747606,0.311708,0.765215
			 ,0.329317,0.765215,0.354958,0.721965,0.337349,0.721965,0.337349,0.739574,0.354958,0.739574,0.329317,0.721965,0.311708,0.721965
			 ,0.311708,0.739574,0.329317,0.739574,0.303676,0.747606,0.286067,0.747606,0.286067,0.765215,0.303676,0.765215,0.303676,0.773247
			 ,0.260426,0.773247,0.260426,0.816497,0.303676,0.816497,0.149830,0.970343,0.149830,0.952734,0.106580,0.952734,0.106580,0.970343
			 ,0.278035,0.747606,0.260426,0.747606,0.260426,0.765215,0.278035,0.765215,0.303676,0.721965,0.286067,0.721965,0.286067,0.739574
			 ,0.303676,0.739574,0.201112,0.619401,0.106580,0.619401,0.106580,0.713933,0.201112,0.713933,0.278035,0.721965,0.260426,0.721965
			 ,0.260426,0.739574,0.278035,0.739574,0.457522,0.747606,0.439914,0.747606,0.439914,0.765215,0.457522,0.765215,0.431881,0.747606
			 ,0.414272,0.747606,0.414272,0.765215,0.431881,0.765215,0.457522,0.721965,0.439914,0.721965,0.439914,0.739574,0.457522,0.739574
			 ,0.431881,0.721965,0.414272,0.721965,0.414272,0.739574,0.431881,0.739574,0.611369,0.516837,0.516837,0.516837,0.516837,0.611369
			 ,0.611369,0.611369,0.406240,0.747606,0.388631,0.747606,0.388631,0.765215,0.406240,0.765215,0.380599,0.747606,0.362990,0.747606
			 ,0.362990,0.765215,0.380599,0.765215,0.406240,0.721965,0.388631,0.721965,0.388631,0.739574,0.406240,0.739574,0.380599,0.721965
			 ,0.362990,0.721965,0.362990,0.739574,0.380599,0.739574,0.970343,0.765215,0.970343,0.721965,0.952734,0.721965,0.952734,0.765215
			 ,0.252394,0.747606,0.234785,0.747606,0.234785,0.765215,0.252394,0.765215,0.252394,0.970343,0.252394,0.952734,0.209144,0.952734
			 ,0.209144,0.970343,0.226753,0.747606,0.209144,0.747606,0.209144,0.765215,0.226753,0.765215,0.252394,0.721965,0.234785,0.721965
			 ,0.234785,0.739574,0.252394,0.739574,0.970343,0.465555,0.952734,0.465555,0.952734,0.508804,0.970343,0.508804,0.226753,0.721965
			 ,0.209144,0.721965,0.209144,0.739574,0.226753,0.739574,0.765215,0.696324,0.747606,0.696324,0.747606,0.713933,0.765215,0.713933
			 ,0.713933,0.773247,0.670683,0.773247,0.670683,0.816497,0.713933,0.816497,0.406240,0.098548,0.406240,0.004016,0.209144,0.004016
			 ,0.209144,0.098548,0.406240,0.414272,0.311708,0.414272,0.311708,0.508804,0.406240,0.508804,0.739574,0.696324,0.721965,0.696324
			 ,0.721965,0.713933,0.739574,0.713933,0.970343,0.560086,0.970343,0.516837,0.952734,0.516837,0.952734,0.560086,0.508804,0.311708
			 ,0.414272,0.311708,0.414272,0.406240,0.508804,0.406240,0.201112,0.970343,0.201112,0.952734,0.157862,0.952734,0.157862,0.970343
			 ,0.970343,0.157862,0.952734,0.157862,0.952734,0.201112,0.970343,0.201112,0.560086,0.842138,0.560086,0.824529,0.465555,0.824529
			 ,0.465555,0.842138,0.765215,0.670683,0.747606,0.670683,0.747606,0.688292,0.765215,0.688292,0.739574,0.670683,0.721965,0.670683
			 ,0.721965,0.688292,0.739574,0.688292,0.149830,0.747606,0.132221,0.747606,0.132221,0.765215,0.149830,0.765215,0.970343,0.260426
			 ,0.952734,0.260426,0.952734,0.303676,0.970343,0.303676,0.816497,0.670683,0.773247,0.670683,0.773247,0.713933,0.816497,0.713933
			 ,0.816497,0.619401,0.773247,0.619401,0.773247,0.662651,0.816497,0.662651,0.406240,0.970343,0.406240,0.952734,0.362990,0.952734
			 ,0.362990,0.970343,0.970343,0.252394,0.970343,0.209144,0.952734,0.209144,0.952734,0.252394,0.414272,0.970343,0.457522,0.970343
			 ,0.457522,0.952734,0.414272,0.952734,0.124189,0.747606,0.106580,0.747606,0.106580,0.765215,0.124189,0.765215,0.209144,0.311708
			 ,0.209144,0.508804,0.303676,0.508804,0.303676,0.311708,0.149830,0.721965,0.132221,0.721965,0.132221,0.739574,0.149830,0.739574
			 ,0.124189,0.721965,0.106580,0.721965,0.106580,0.739574,0.124189,0.739574,0.004016,0.970343,0.047266,0.970343,0.047266,0.952734
			 ,0.004016,0.952734,0.098548,0.747606,0.080939,0.747606,0.080939,0.765215,0.098548,0.765215,0.842138,0.260426,0.798888,0.260426
			 ,0.798888,0.303676,0.842138,0.303676,0.944702,0.927093,0.927093,0.927093,0.927093,0.970343,0.944702,0.970343,0.072907,0.747606
			 ,0.055298,0.747606,0.055298,0.765215,0.072907,0.765215,0.098548,0.721965,0.080939,0.721965,0.080939,0.739574,0.098548,0.739574
			 ,0.072907,0.721965,0.055298,0.721965,0.055298,0.739574,0.072907,0.739574,0.406240,0.516837,0.311708,0.516837,0.311708,0.611369
			 ,0.406240,0.611369,0.047266,0.747606,0.029657,0.747606,0.029657,0.765215,0.047266,0.765215,0.004016,0.944702,0.047266,0.944702
			 ,0.047266,0.927093,0.004016,0.927093,0.021625,0.747606,0.004016,0.747606,0.004016,0.765215,0.021625,0.765215,0.047266,0.721965
			 ,0.029657,0.721965,0.029657,0.739574,0.047266,0.739574,0.021625,0.721965,0.004016,0.721965,0.004016,0.739574,0.021625,0.739574
			 ,0.842138,0.816497,0.842138,0.721965,0.824529,0.721965,0.824529,0.816497,0.098548,0.944702,0.098548,0.927093,0.055298,0.927093
			 ,0.055298,0.944702,0.329317,0.927093,0.311708,0.927093,0.311708,0.970343,0.329317,0.970343,0.765215,0.593760,0.747606,0.593760
			 ,0.747606,0.611369,0.765215,0.611369,0.739574,0.593760,0.721965,0.593760,0.721965,0.611369,0.739574,0.611369,0.765215,0.568119
			 ,0.747606,0.568119,0.747606,0.585728,0.765215,0.585728,0.739574,0.568119,0.721965,0.568119,0.721965,0.585728,0.739574,0.585728
			 ,0.508804,0.747606,0.491196,0.747606,0.491196,0.765215,0.508804,0.765215,0.483163,0.747606,0.465555,0.747606,0.465555,0.765215
			 ,0.483163,0.765215,0.106580,0.944702,0.149830,0.944702,0.149830,0.927093,0.106580,0.927093,0.508804,0.721965,0.491196,0.721965
			 ,0.491196,0.739574,0.508804,0.739574,0.483163,0.721965,0.465555,0.721965,0.465555,0.739574,0.483163,0.739574,0.560086,0.747606
			 ,0.542478,0.747606,0.542478,0.765215,0.560086,0.765215,0.534445,0.747606,0.516837,0.747606,0.516837,0.765215,0.534445,0.765215
			 ,0.354958,0.927093,0.337349,0.927093,0.337349,0.970343,0.354958,0.970343,0.560086,0.721965,0.542478,0.721965,0.542478,0.739574
			 ,0.560086,0.739574,0.406240,0.944702,0.406240,0.927093,0.362990,0.927093,0.362990,0.944702,0.534445,0.721965,0.516837,0.721965
			 ,0.516837,0.739574,0.534445,0.739574,0.944702,0.098548,0.944702,0.055298,0.927093,0.055298,0.927093,0.098548,0.765215,0.645042
			 ,0.747606,0.645042,0.747606,0.662651,0.765215,0.662651,0.739574,0.645042,0.721965,0.645042,0.721965,0.662651,0.739574,0.662651
			 ,0.765215,0.619401,0.747606,0.619401,0.747606,0.637010,0.765215,0.637010,0.739574,0.619401,0.721965,0.619401,0.721965,0.637010
			 ,0.739574,0.637010,0.790856,0.337349,0.773247,0.337349,0.773247,0.354958,0.790856,0.354958,0.765215,0.337349,0.747606,0.337349
			 ,0.747606,0.354958,0.765215,0.354958,0.790856,0.311708,0.773247,0.311708,0.773247,0.329317,0.790856,0.329317,0.098548,0.824529
			 ,0.055298,0.824529,0.055298,0.867779,0.098548,0.867779,0.457522,0.944702,0.457522,0.927093,0.414272,0.927093,0.414272,0.944702
			 ,0.713933,0.824529,0.670683,0.824529,0.670683,0.867779,0.713933,0.867779,0.765215,0.311708,0.747606,0.311708,0.747606,0.329317
			 ,0.765215,0.329317,0.662651,0.824529,0.619401,0.824529,0.619401,0.867779,0.662651,0.867779,0.790856,0.286067,0.773247,0.286067
			 ,0.773247,0.303676,0.790856,0.303676,0.765215,0.286067,0.747606,0.286067,0.747606,0.303676,0.765215,0.303676,0.790856,0.260426
			 ,0.773247,0.260426,0.773247,0.278035,0.790856,0.278035,0.765215,0.260426,0.747606,0.260426,0.747606,0.278035,0.765215,0.278035
			 ,0.790856,0.491196,0.773247,0.491196,0.773247,0.508804,0.790856,0.508804,0.765215,0.491196,0.747606,0.491196,0.747606,0.508804
			 ,0.765215,0.508804,0.790856,0.465555,0.773247,0.465555,0.773247,0.483163,0.790856,0.483163,0.765215,0.465555,0.747606,0.465555
			 ,0.747606,0.483163,0.765215,0.483163,0.790856,0.388631,0.773247,0.388631,0.773247,0.406240,0.790856,0.406240,0.765215,0.388631
			 ,0.747606,0.388631,0.747606,0.406240,0.765215,0.406240,0.944702,0.047266,0.944702,0.004016,0.927093,0.004016,0.927093,0.047266
			 ,0.465555,0.944702,0.508804,0.944702,0.508804,0.927093,0.465555,0.927093,0.790856,0.362990,0.773247,0.362990,0.773247,0.380599
			 ,0.790856,0.380599,0.944702,0.816497,0.944702,0.773247,0.927093,0.773247,0.927093,0.816497,0.765215,0.362990,0.747606,0.362990
			 ,0.747606,0.380599,0.765215,0.380599,0.560086,0.944702,0.560086,0.927093,0.516837,0.927093,0.516837,0.944702,0.944702,0.824529
			 ,0.927093,0.824529,0.927093,0.867779,0.944702,0.867779,0.790856,0.439914,0.773247,0.439914,0.773247,0.457522,0.790856,0.457522
			 ,0.765215,0.439914,0.747606,0.439914,0.747606,0.457522,0.765215,0.457522,0.790856,0.414272,0.773247,0.414272,0.773247,0.431881
			 ,0.790856,0.431881,0.611369,0.944702,0.611369,0.927093,0.568119,0.927093,0.568119,0.944702,0.765215,0.414272,0.747606,0.414272
			 ,0.747606,0.431881,0.765215,0.431881,0.816497,0.080939,0.798888,0.080939,0.798888,0.098548,0.816497,0.098548,0.944702,0.919061
			 ,0.944702,0.875811,0.927093,0.875811,0.927093,0.919061,0.790856,0.080939,0.773247,0.080939,0.773247,0.098548,0.790856,0.098548
			 ,0.816497,0.055298,0.798888,0.055298,0.798888,0.072907,0.816497,0.072907,0.790856,0.055298,0.773247,0.055298,0.773247,0.072907
			 ,0.790856,0.072907,0.867779,0.568119,0.824529,0.568119,0.824529,0.611369,0.867779,0.611369,0.816497,0.029657,0.798888,0.029657
			 ,0.798888,0.047266,0.816497,0.047266,0.790856,0.029657,0.773247,0.029657,0.773247,0.047266,0.790856,0.047266,0.816497,0.004016
			 ,0.798888,0.004016,0.798888,0.021625,0.816497,0.021625,0.790856,0.004016,0.773247,0.004016,0.773247,0.021625,0.790856,0.021625
			 ,0.619401,0.944702,0.662651,0.944702,0.662651,0.927093,0.619401,0.927093,0.560086,0.798888,0.542478,0.798888,0.542478,0.816497
			 ,0.560086,0.816497,0.534445,0.798888,0.516837,0.798888,0.516837,0.816497,0.534445,0.816497,0.560086,0.773247,0.542478,0.773247
			 ,0.542478,0.790856,0.560086,0.790856,0.534445,0.773247,0.516837,0.773247,0.516837,0.790856,0.534445,0.790856,0.252394,0.798888
			 ,0.234785,0.798888,0.234785,0.816497,0.252394,0.816497,0.713933,0.004016,0.619401,0.004016,0.619401,0.098548,0.713933,0.098548
			 ,0.226753,0.798888,0.209144,0.798888,0.209144,0.816497,0.226753,0.816497,0.944702,0.252394,0.944702,0.209144,0.927093,0.209144
			 ,0.927093,0.252394,0.252394,0.773247,0.234785,0.773247,0.234785,0.790856,0.252394,0.790856,0.226753,0.773247,0.209144,0.773247
			 ,0.209144,0.790856,0.226753,0.790856,0.303676,0.619401,0.209144,0.619401,0.209144,0.713933,0.303676,0.713933,0.354958,0.798888
			 ,0.337349,0.798888,0.337349,0.816497,0.354958,0.816497,0.670683,0.944702,0.713933,0.944702,0.713933,0.927093,0.670683,0.927093
			 ,0.329317,0.798888,0.311708,0.798888,0.311708,0.816497,0.329317,0.816497,0.944702,0.508804,0.944702,0.465555,0.927093,0.465555
			 ,0.927093,0.508804,0.354958,0.773247,0.337349,0.773247,0.337349,0.790856,0.354958,0.790856,0.893420,0.311708,0.850170,0.311708
			 ,0.850170,0.354958,0.893420,0.354958,0.765215,0.944702,0.765215,0.927093,0.721965,0.927093,0.721965,0.944702,0.406240,0.619401
			 ,0.311708,0.619401,0.311708,0.713933,0.406240,0.713933,0.944702,0.765215,0.944702,0.721965,0.927093,0.721965,0.927093,0.765215
			 ,0.773247,0.944702,0.816497,0.944702,0.816497,0.927093,0.773247,0.927093,0.713933,0.209144,0.619401,0.209144,0.619401,0.303676
			 ,0.713933,0.303676,0.329317,0.773247,0.311708,0.773247,0.311708,0.790856,0.329317,0.790856,0.944702,0.611369,0.944702,0.568119
			 ,0.927093,0.568119,0.927093,0.611369,0.201112,0.798888,0.183503,0.798888,0.183503,0.816497,0.201112,0.816497,0.209144,0.944702
			 ,0.252394,0.944702,0.252394,0.927093,0.209144,0.927093,0.944702,0.388631,0.927093,0.388631,0.927093,0.431881,0.944702,0.431881
			 ,0.944702,0.124189,0.944702,0.106580,0.901452,0.106580,0.901452,0.124189,0.175471,0.798888,0.157862,0.798888,0.157862,0.816497
			 ,0.175471,0.816497,0.201112,0.773247,0.183503,0.773247,0.183503,0.790856,0.201112,0.790856,0.175471,0.773247,0.157862,0.773247
			 ,0.157862,0.790856,0.175471,0.790856,0.765215,0.798888,0.747606,0.798888,0.747606,0.816497,0.765215,0.816497,0.739574,0.798888
			 ,0.721965,0.798888,0.721965,0.816497,0.739574,0.816497,0.765215,0.773247,0.747606,0.773247,0.747606,0.790856,0.765215,0.790856
			 ,0.739574,0.773247,0.721965,0.773247,0.721965,0.790856,0.739574,0.790856,0.457522,0.798888,0.439914,0.798888,0.439914,0.816497
			 ,0.457522,0.816497,0.431881,0.798888,0.414272,0.798888,0.414272,0.816497,0.431881,0.816497,0.201112,0.004016,0.004016,0.004016
			 ,0.004016,0.201112,0.201112,0.201112,0.919061,0.765215,0.919061,0.721965,0.901452,0.721965,0.901452,0.765215,0.901452,0.354958
			 ,0.944702,0.354958,0.944702,0.337349,0.901452,0.337349,0.688292,0.713933,0.688292,0.516837,0.670683,0.516837,0.670683,0.713933
			 ,0.901452,0.380599,0.944702,0.380599,0.944702,0.362990,0.901452,0.362990,0.252394,0.875811,0.209144,0.875811,0.209144,0.919061
			 ,0.252394,0.919061,0.201112,0.875811,0.157862,0.875811,0.157862,0.919061,0.201112,0.919061,0.919061,0.175471,0.919061,0.132221
			 ,0.901452,0.132221,0.901452,0.175471,0.901452,0.201112,0.944702,0.201112,0.944702,0.183503,0.901452,0.183503,0.919061,0.465555
			 ,0.901452,0.465555,0.901452,0.508804,0.919061,0.508804,0.867779,0.875811,0.824529,0.875811,0.824529,0.919061,0.867779,0.919061
			 ,0.508804,0.414272,0.414272,0.414272,0.414272,0.508804,0.508804,0.508804,0.098548,0.662651,0.098548,0.619401,0.004016,0.619401
			 ,0.004016,0.662651,0.457522,0.875811,0.414272,0.875811,0.414272,0.919061,0.457522,0.919061,0.637010,0.516837,0.619401,0.516837
			 ,0.619401,0.713933,0.637010,0.713933,0.201112,0.508804,0.201112,0.414272,0.004016,0.414272,0.004016,0.508804,0.867779,0.944702
			 ,0.828545,0.944702,0.867779,0.931109,0.944702,0.662651,0.944702,0.623417,0.931109,0.662651,0.157862,0.940686,0.157862,0.927093
			 ,0.197096,0.927093,0.944702,0.713933,0.931109,0.713933,0.944702,0.674699,0.623417,0.201112,0.713933,0.201112,0.713933,0.110596
			 ,0.931109,0.560086,0.944702,0.560086,0.944702,0.520853,0.927093,0.670683,0.927093,0.709917,0.940686,0.670683,0.919061,0.944702
			 ,0.879827,0.944702,0.919061,0.931109,0.875811,0.940686,0.915045,0.927093,0.875811,0.927093,0.940686,0.619401,0.927093,0.658635
			 ,0.927093,0.619401,0.824529,0.940686,0.824529,0.927093,0.863763,0.927093,0.927093,0.516837,0.940686,0.516837,0.927093,0.556070
			 ,0.457522,0.773247,0.439914,0.773247,0.439914,0.790856,0.457522,0.790856,0.431881,0.773247,0.414272,0.773247,0.414272,0.790856
			 ,0.431881,0.790856,0.098548,0.798888,0.080939,0.798888,0.080939,0.816497,0.098548,0.816497,0.072907,0.798888,0.055298,0.798888
			 ,0.055298,0.816497,0.072907,0.816497,0.098548,0.773247,0.080939,0.773247,0.080939,0.790856,0.098548,0.790856,0.072907,0.773247
			 ,0.055298,0.773247,0.055298,0.790856,0.072907,0.790856,0.047266,0.798888,0.029657,0.798888,0.029657,0.816497,0.047266,0.816497
			 ,0.021625,0.798888,0.004016,0.798888,0.004016,0.816497,0.021625,0.816497,0.047266,0.773247,0.029657,0.773247,0.029657,0.790856
			 ,0.047266,0.790856,0.021625,0.773247,0.004016,0.773247,0.004016,0.790856,0.021625,0.790856,0.508804,0.798888,0.491196,0.798888
			 ,0.491196,0.816497,0.508804,0.816497,0.483163,0.798888,0.465555,0.798888,0.465555,0.816497,0.483163,0.816497,0.406240,0.311708
			 ,0.311708,0.311708,0.311708,0.406240,0.406240,0.406240,0.919061,0.252394,0.919061,0.209144,0.901452,0.209144,0.901452,0.252394
			 ,0.508804,0.773247,0.491196,0.773247,0.491196,0.790856,0.508804,0.790856,0.483163,0.773247,0.465555,0.773247,0.465555,0.790856
			 ,0.483163,0.790856,0.816497,0.747606,0.798888,0.747606,0.798888,0.765215,0.816497,0.765215,0.508804,0.004016,0.414272,0.004016
			 ,0.414272,0.098548,0.508804,0.098548,0.508804,0.919061,0.508804,0.901452,0.465555,0.901452,0.465555,0.919061,0.919061,0.773247
			 ,0.901452,0.773247,0.901452,0.816497,0.919061,0.816497,0.516837,0.919061,0.560086,0.919061,0.560086,0.901452,0.516837,0.901452
			 ,0.790856,0.747606,0.773247,0.747606,0.773247,0.765215,0.790856,0.765215,0.816497,0.721965,0.798888,0.721965,0.798888,0.739574
			 ,0.816497,0.739574,0.739574,0.508804,0.739574,0.311708,0.721965,0.311708,0.721965,0.508804,0.790856,0.721965,0.773247,0.721965
			 ,0.773247,0.739574,0.790856,0.739574,0.816497,0.798888,0.798888,0.798888,0.798888,0.816497,0.816497,0.816497,0.919061,0.875811
			 ,0.875811,0.875811,0.875811,0.919061,0.919061,0.919061,0.611369,0.637010,0.611369,0.619401,0.414272,0.619401,0.414272,0.637010
			 ,0.662651,0.713933,0.662651,0.516837,0.645042,0.516837,0.645042,0.713933,0.508804,0.516837,0.414272,0.516837,0.414272,0.611369
			 ,0.508804,0.611369,0.901452,0.278035,0.944702,0.278035,0.944702,0.260426,0.901452,0.260426,0.919061,0.329317,0.919061,0.286067
			 ,0.901452,0.286067,0.901452,0.329317,0.406240,0.106580,0.209144,0.106580,0.209144,0.201112,0.406240,0.201112,0.790856,0.798888
			 ,0.773247,0.798888,0.773247,0.816497,0.790856,0.816497,0.201112,0.209144,0.004016,0.209144,0.004016,0.406240,0.201112,0.406240
			 ,0.611369,0.311708,0.516837,0.311708,0.516837,0.406240,0.611369,0.406240,0.611369,0.209144,0.516837,0.209144,0.516837,0.303676
			 ,0.611369,0.303676,0.611369,0.106580,0.516837,0.106580,0.516837,0.201112,0.611369,0.201112,0.919061,0.431881,0.919061,0.388631
			 ,0.901452,0.388631,0.901452,0.431881,0.816497,0.773247,0.798888,0.773247,0.798888,0.790856,0.816497,0.790856,0.790856,0.773247
			 ,0.773247,0.773247,0.773247,0.790856,0.790856,0.790856,0.354958,0.875811,0.311708,0.875811,0.311708,0.919061,0.354958,0.919061
			 ,0.842138,0.491196,0.824529,0.491196,0.824529,0.508804,0.842138,0.508804,0.944702,0.457522,0.944702,0.439914,0.901452,0.439914
			 ,0.901452,0.457522,0.816497,0.491196,0.798888,0.491196,0.798888,0.508804,0.816497,0.508804,0.842138,0.465555,0.824529,0.465555
			 ,0.824529,0.483163,0.842138,0.483163,0.816497,0.465555,0.798888,0.465555,0.798888,0.483163,0.816497,0.483163,0.842138,0.337349
			 ,0.824529,0.337349,0.824529,0.354958,0.842138,0.354958,0.816497,0.337349,0.798888,0.337349,0.798888,0.354958,0.816497,0.354958
			 ,0.842138,0.311708,0.824529,0.311708,0.824529,0.329317,0.842138,0.329317,0.611369,0.414272,0.516837,0.414272,0.516837,0.508804
			 ,0.611369,0.508804,0.816497,0.311708,0.798888,0.311708,0.798888,0.329317,0.816497,0.329317,0.944702,0.132221,0.927093,0.132221
			 ,0.927093,0.175471,0.944702,0.175471,0.842138,0.183503,0.824529,0.183503,0.824529,0.201112,0.842138,0.201112,0.816497,0.183503
			 ,0.798888,0.183503,0.798888,0.201112,0.816497,0.201112,0.842138,0.157862,0.824529,0.157862,0.824529,0.175471,0.842138,0.175471
			 ,0.816497,0.157862,0.798888,0.157862,0.798888,0.175471,0.816497,0.175471,0.842138,0.388631,0.824529,0.388631,0.824529,0.406240
			 ,0.842138,0.406240,0.303676,0.944702,0.303676,0.927093,0.260426,0.927093,0.260426,0.944702,0.816497,0.388631,0.798888,0.388631
			 ,0.798888,0.406240,0.816497,0.406240,0.944702,0.329317,0.944702,0.286067,0.927093,0.286067,0.927093,0.329317,0.414272,0.688292
			 ,0.508804,0.688292,0.508804,0.645042,0.414272,0.645042,0.508804,0.303676,0.508804,0.106580,0.414272,0.106580,0.414272,0.303676
			 ,0.842138,0.362990,0.824529,0.362990,0.824529,0.380599,0.842138,0.380599,0.816497,0.362990,0.798888,0.362990,0.798888,0.380599
			 ,0.816497,0.380599,0.842138,0.234785,0.824529,0.234785,0.824529,0.252394,0.842138,0.252394,0.816497,0.234785,0.798888,0.234785
			 ,0.798888,0.252394,0.816497,0.252394,0.842138,0.209144,0.824529,0.209144,0.824529,0.226753,0.842138,0.226753,0.816497,0.209144
			 ,0.798888,0.209144,0.798888,0.226753,0.816497,0.226753,0.201112,0.850170,0.183503,0.850170,0.183503,0.867779,0.201112,0.867779
			 ,0.175471,0.850170,0.157862,0.850170,0.157862,0.867779,0.175471,0.867779,0.201112,0.824529,0.183503,0.824529,0.183503,0.842138
			 ,0.201112,0.842138,0.175471,0.824529,0.157862,0.824529,0.157862,0.842138,0.175471,0.842138,0.149830,0.850170,0.132221,0.850170
			 ,0.132221,0.867779,0.149830,0.867779,0.124189,0.850170,0.106580,0.850170,0.106580,0.867779,0.124189,0.867779,0.149830,0.824529
			 ,0.132221,0.824529,0.132221,0.842138,0.149830,0.842138,0.124189,0.824529,0.106580,0.824529,0.106580,0.842138,0.124189,0.842138
			 ,0.354958,0.850170,0.337349,0.850170,0.337349,0.867779,0.354958,0.867779,0.329317,0.850170,0.311708,0.850170,0.311708,0.867779
			 ,0.329317,0.867779,0.354958,0.824529,0.337349,0.824529,0.337349,0.842138,0.354958,0.842138,0.329317,0.824529,0.311708,0.824529
			 ,0.311708,0.842138,0.329317,0.842138,0.303676,0.850170,0.286067,0.850170,0.286067,0.867779,0.303676,0.867779,0.278035,0.850170
			 ,0.260426,0.850170,0.260426,0.867779,0.278035,0.867779,0.303676,0.824529,0.286067,0.824529,0.286067,0.842138,0.303676,0.842138
			 ,0.278035,0.824529,0.260426,0.824529,0.260426,0.842138,0.278035,0.842138,0.867779,0.696324,0.850170,0.696324,0.850170,0.713933
			 ,0.867779,0.713933,0.842138,0.696324,0.824529,0.696324,0.824529,0.713933,0.842138,0.713933,0.867779,0.670683,0.850170,0.670683
			 ,0.850170,0.688292,0.867779,0.688292,0.842138,0.670683,0.824529,0.670683,0.824529,0.688292,0.842138,0.688292,0.047266,0.850170
			 ,0.029657,0.850170,0.029657,0.867779,0.047266,0.867779,0.619401,0.197096,0.619401,0.106580,0.709917,0.106580,0.209144,0.303676
			 ,0.406240,0.303676,0.406240,0.209144,0.209144,0.209144,0.021625,0.850170,0.004016,0.850170,0.004016,0.867779,0.021625,0.867779
			 ,0.047266,0.824529,0.029657,0.824529,0.029657,0.842138,0.047266,0.842138,0.021625,0.824529,0.004016,0.824529,0.004016,0.842138
			 ,0.021625,0.842138,0.457522,0.850170,0.439914,0.850170,0.439914,0.867779,0.457522,0.867779,0.431881,0.850170,0.414272,0.850170
			 ,0.414272,0.867779,0.431881,0.867779,0.457522,0.824529,0.439914,0.824529,0.439914,0.842138,0.457522,0.842138,0.431881,0.824529
			 ,0.414272,0.824529,0.414272,0.842138,0.431881,0.842138,0.406240,0.850170,0.388631,0.850170,0.388631,0.867779,0.406240,0.867779
			 ,0.380599,0.850170,0.362990,0.850170,0.362990,0.867779,0.380599,0.867779,0.406240,0.824529,0.388631,0.824529,0.388631,0.842138
			 ,0.406240,0.842138,0.380599,0.824529,0.362990,0.824529,0.362990,0.842138,0.380599,0.842138,0.765215,0.850170,0.747606,0.850170
			 ,0.747606,0.867779,0.765215,0.867779,0.739574,0.850170,0.721965,0.850170,0.721965,0.867779,0.739574,0.867779,0.765215,0.824529
			 ,0.747606,0.824529,0.747606,0.842138,0.765215,0.842138,0.739574,0.824529,0.721965,0.824529,0.721965,0.842138,0.739574,0.842138
			 ,0.611369,0.850170,0.593760,0.850170,0.593760,0.867779,0.611369,0.867779,0.585728,0.850170,0.568119,0.850170,0.568119,0.867779
			 ,0.585728,0.867779,0.611369,0.824529,0.593760,0.824529,0.593760,0.842138,0.611369,0.842138,0.585728,0.824529,0.568119,0.824529
			 ,0.568119,0.842138,0.585728,0.842138,0.816497,0.850170,0.798888,0.850170,0.798888,0.867779,0.816497,0.867779,0.790856,0.850170
			 ,0.773247,0.850170,0.773247,0.867779,0.790856,0.867779,0.816497,0.824529,0.798888,0.824529,0.798888,0.842138,0.816497,0.842138
			 ,0.790856,0.824529,0.773247,0.824529,0.773247,0.842138,0.790856,0.842138,0.252394,0.850170,0.234785,0.850170,0.234785,0.867779
			 ,0.252394,0.867779,0.226753,0.850170,0.209144,0.850170,0.209144,0.867779,0.226753,0.867779,0.252394,0.824529,0.234785,0.824529
			 ,0.234785,0.842138,0.252394,0.842138,0.226753,0.824529,0.209144,0.824529,0.209144,0.842138,0.226753,0.842138,0.867779,0.645042
			 ,0.850170,0.645042,0.850170,0.662651,0.867779,0.662651,0.842138,0.645042,0.824529,0.645042,0.824529,0.662651,0.842138,0.662651
			 ,0.867779,0.619401,0.850170,0.619401,0.850170,0.637010,0.867779,0.637010,0.842138,0.619401,0.824529,0.619401,0.824529,0.637010
			 ,0.842138,0.637010,0.867779,0.080939,0.850170,0.080939,0.850170,0.098548,0.867779,0.098548,0.842138,0.080939,0.824529,0.080939
			 ,0.824529,0.098548,0.842138,0.098548,0.867779,0.055298,0.850170,0.055298,0.850170,0.072907,0.867779,0.072907,0.842138,0.055298
			 ,0.824529,0.055298,0.824529,0.072907,0.842138,0.072907,0.867779,0.542478,0.850170,0.542478,0.850170,0.560086,0.867779,0.560086
			 ,0.842138,0.542478,0.824529,0.542478,0.824529,0.560086,0.842138,0.560086,0.867779,0.516837,0.850170,0.516837,0.850170,0.534445
			 ,0.867779,0.534445,0.842138,0.516837,0.824529,0.516837,0.824529,0.534445,0.842138,0.534445,0.893420,0.491196,0.875811,0.491196
			 ,0.875811,0.508804,0.893420,0.508804,0.867779,0.491196,0.850170,0.491196,0.850170,0.508804,0.867779,0.508804,0.893420,0.465555
			 ,0.875811,0.465555,0.875811,0.483163,0.893420,0.483163,0.867779,0.465555,0.850170,0.465555,0.850170,0.483163,0.867779,0.483163
			 ,0.893420,0.439914,0.875811,0.439914,0.875811,0.457522,0.893420,0.457522,0.867779,0.439914,0.850170,0.439914,0.850170,0.457522
			 ,0.867779,0.457522,0.893420,0.414272,0.875811,0.414272,0.875811,0.431881,0.893420,0.431881,0.867779,0.414272,0.850170,0.414272
			 ,0.850170,0.431881,0.867779,0.431881,0.893420,0.286067,0.875811,0.286067,0.875811,0.303676,0.893420,0.303676,0.867779,0.286067
			 ,0.850170,0.286067,0.850170,0.303676,0.867779,0.303676,0.893420,0.260426,0.875811,0.260426,0.875811,0.278035,0.893420,0.278035
			 ,0.867779,0.260426,0.850170,0.260426,0.850170,0.278035,0.867779,0.278035,0.893420,0.234785,0.875811,0.234785,0.875811,0.252394
			 ,0.893420,0.252394,0.867779,0.234785,0.850170,0.234785,0.850170,0.252394,0.867779,0.252394,0.893420,0.209144,0.875811,0.209144
			 ,0.875811,0.226753,0.893420,0.226753,0.867779,0.209144,0.850170,0.209144,0.850170,0.226753,0.867779,0.226753,0.124189,0.978375
			 ,0.124189,0.995984,0.106580,0.995984,0.106580,0.978375,0.611369,0.004016,0.611369,0.098548,0.516837,0.098548,0.516837,0.004016
			 ,0.201112,0.516837,0.201112,0.611369,0.106580,0.611369,0.106580,0.516837,0.303676,0.516837,0.303676,0.611369,0.209144,0.611369
			 ,0.209144,0.516837,0.995984,0.106580,0.995984,0.149830,0.978375,0.149830,0.978375,0.106580,0.157862,0.995984,0.157862,0.978375
			 ,0.201112,0.978375,0.201112,0.995984,0.995984,0.380599,0.978375,0.380599,0.978375,0.337349,0.995984,0.337349,0.406240,0.995984
			 ,0.362990,0.995984,0.362990,0.978375,0.406240,0.978375,0.995984,0.431881,0.978375,0.431881,0.978375,0.388631,0.995984,0.388631
			 ,0.252394,0.995984,0.209144,0.995984,0.209144,0.978375,0.252394,0.978375,0.995984,0.303676,0.978375,0.303676,0.978375,0.260426
			 ,0.995984,0.260426,0.311708,0.995984,0.311708,0.978375,0.354958,0.978375,0.354958,0.995984,0.995984,0.209144,0.995984,0.252394
			 ,0.978375,0.252394,0.978375,0.209144,0.260426,0.995984,0.260426,0.978375,0.303676,0.978375,0.303676,0.995984,0.995984,0.157862
			 ,0.995984,0.201112,0.978375,0.201112,0.978375,0.157862,0.098548,0.978375,0.098548,0.995984,0.080939,0.995984,0.080939,0.978375
			 ,0.047266,0.901452,0.047266,0.919061,0.029657,0.919061,0.029657,0.901452,0.021625,0.901452,0.021625,0.919061,0.004016,0.919061
			 ,0.004016,0.901452,0.047266,0.875811,0.047266,0.893420,0.029657,0.893420,0.029657,0.875811,0.021625,0.875811,0.021625,0.893420
			 ,0.004016,0.893420,0.004016,0.875811,0.919061,0.029657,0.919061,0.047266,0.901452,0.047266,0.901452,0.029657,0.457522,0.995984
			 ,0.414272,0.995984,0.414272,0.978375,0.457522,0.978375,0.893420,0.029657,0.893420,0.047266,0.875811,0.047266,0.875811,0.029657
			 ,0.919061,0.004016,0.919061,0.021625,0.901452,0.021625,0.901452,0.004016,0.893420,0.004016,0.893420,0.021625,0.875811,0.021625
			 ,0.875811,0.004016,0.713933,0.901452,0.713933,0.919061,0.696324,0.919061,0.696324,0.901452,0.688292,0.901452,0.688292,0.919061
			 ,0.670683,0.919061,0.670683,0.901452,0.713933,0.875811,0.713933,0.893420,0.696324,0.893420,0.696324,0.875811,0.688292,0.875811
			 ,0.688292,0.893420,0.670683,0.893420,0.670683,0.875811,0.098548,0.875811,0.098548,0.919061,0.055298,0.919061,0.055298,0.875811
			 ,0.995984,0.465555,0.995984,0.508804,0.978375,0.508804,0.978375,0.465555,0.098548,0.516837,0.098548,0.611369,0.004016,0.611369
			 ,0.004016,0.516837,0.465555,0.995984,0.465555,0.978375,0.508804,0.978375,0.508804,0.995984,0.995984,0.516837,0.995984,0.560086
			 ,0.978375,0.560086,0.978375,0.516837,0.516837,0.995984,0.516837,0.978375,0.560086,0.978375,0.560086,0.995984,0.995984,0.568119
			 ,0.995984,0.611369,0.978375,0.611369,0.978375,0.568119,0.919061,0.080939,0.919061,0.098548,0.901452,0.098548,0.901452,0.080939
			 ,0.893420,0.080939,0.893420,0.098548,0.875811,0.098548,0.875811,0.080939,0.611369,0.995984,0.568119,0.995984,0.568119,0.978375
			 ,0.611369,0.978375,0.995984,0.970343,0.978375,0.970343,0.978375,0.927093,0.995984,0.927093,0.919061,0.055298,0.919061,0.072907
			 ,0.901452,0.072907,0.901452,0.055298,0.893420,0.055298,0.893420,0.072907,0.875811,0.072907,0.875811,0.055298,0.919061,0.542478
			 ,0.919061,0.560086,0.901452,0.560086,0.901452,0.542478,0.893420,0.542478,0.893420,0.560086,0.875811,0.560086,0.875811,0.542478
			 ,0.662651,0.995984,0.619401,0.995984,0.619401,0.978375,0.662651,0.978375,0.995984,0.919061,0.978375,0.919061,0.978375,0.875811
			 ,0.995984,0.875811,0.919061,0.516837,0.919061,0.534445,0.901452,0.534445,0.901452,0.516837,0.893420,0.516837,0.893420,0.534445
			 ,0.875811,0.534445,0.875811,0.516837,0.919061,0.593760,0.919061,0.611369,0.901452,0.611369,0.901452,0.593760,0.893420,0.593760
			 ,0.893420,0.611369,0.875811,0.611369,0.875811,0.593760,0.713933,0.414272,0.713933,0.508804,0.619401,0.508804,0.619401,0.414272
			 ,0.713933,0.311708,0.713933,0.406240,0.619401,0.406240,0.619401,0.311708,0.919061,0.568119,0.919061,0.585728,0.901452,0.585728
			 ,0.901452,0.568119,0.893420,0.568119,0.893420,0.585728,0.875811,0.585728,0.875811,0.568119,0.919061,0.645042,0.919061,0.662651
			 ,0.901452,0.662651,0.901452,0.645042,0.713933,0.995984,0.670683,0.995984,0.670683,0.978375,0.713933,0.978375,0.893420,0.645042
			 ,0.893420,0.662651,0.875811,0.662651,0.875811,0.645042,0.995984,0.004016,0.995984,0.047266,0.978375,0.047266,0.978375,0.004016
			 ,0.919061,0.619401,0.919061,0.637010,0.901452,0.637010,0.901452,0.619401,0.893420,0.619401,0.893420,0.637010,0.875811,0.637010
			 ,0.875811,0.619401,0.919061,0.696324,0.919061,0.713933,0.901452,0.713933,0.901452,0.696324,0.765215,0.995984,0.721965,0.995984
			 ,0.721965,0.978375,0.765215,0.978375,0.893420,0.696324,0.893420,0.713933,0.875811,0.713933,0.875811,0.696324,0.919061,0.670683
			 ,0.919061,0.688292,0.901452,0.688292,0.901452,0.670683,0.995984,0.098548,0.978375,0.098548,0.978375,0.055298,0.995984,0.055298
			 ,0.816497,0.995984,0.773247,0.995984,0.773247,0.978375,0.816497,0.978375,0.995984,0.662651,0.978375,0.662651,0.978375,0.619401
			 ,0.995984,0.619401,0.824529,0.995984,0.824529,0.978375,0.867779,0.978375,0.867779,0.995984,0.995984,0.670683,0.995984,0.713933
			 ,0.978375,0.713933,0.978375,0.670683,0.893420,0.670683,0.893420,0.688292,0.875811,0.688292,0.875811,0.670683,0.765215,0.901452
			 ,0.765215,0.919061,0.747606,0.919061,0.747606,0.901452,0.739574,0.901452,0.739574,0.919061,0.721965,0.919061,0.721965,0.901452
			 ,0.765215,0.875811,0.765215,0.893420,0.747606,0.893420,0.747606,0.875811,0.739574,0.875811,0.739574,0.893420,0.721965,0.893420
			 ,0.721965,0.875811,0.816497,0.901452,0.816497,0.919061,0.798888,0.919061,0.798888,0.901452,0.790856,0.901452,0.790856,0.919061
			 ,0.773247,0.919061,0.773247,0.901452,0.816497,0.875811,0.816497,0.893420,0.798888,0.893420,0.798888,0.875811,0.790856,0.875811
			 ,0.790856,0.893420,0.773247,0.893420,0.773247,0.875811,0.611369,0.901452,0.611369,0.919061,0.593760,0.919061,0.593760,0.901452
			 ,0.585728,0.901452,0.585728,0.919061,0.568119,0.919061,0.568119,0.901452,0.611369,0.875811,0.611369,0.893420,0.593760,0.893420
			 ,0.593760,0.875811,0.585728,0.875811,0.585728,0.893420,0.568119,0.893420,0.568119,0.875811,0.662651,0.901452,0.662651,0.919061
			 ,0.645042,0.919061,0.645042,0.901452,0.637010,0.901452,0.637010,0.919061,0.619401,0.919061,0.619401,0.901452,0.662651,0.875811
			 ,0.662651,0.893420,0.645042,0.893420,0.645042,0.875811,0.637010,0.875811,0.637010,0.893420,0.619401,0.893420,0.619401,0.875811
			 ,0.149830,0.901452,0.149830,0.919061,0.132221,0.919061,0.132221,0.901452,0.124189,0.901452,0.124189,0.919061,0.106580,0.919061
			 ,0.106580,0.901452,0.149830,0.875811,0.149830,0.893420,0.132221,0.893420,0.132221,0.875811,0.124189,0.875811,0.124189,0.893420
			 ,0.106580,0.893420,0.106580,0.875811,0.303676,0.901452,0.303676,0.919061,0.286067,0.919061,0.286067,0.901452,0.278035,0.901452
			 ,0.278035,0.919061,0.260426,0.919061,0.260426,0.901452,0.303676,0.875811,0.303676,0.893420,0.286067,0.893420,0.286067,0.875811
			 ,0.278035,0.875811,0.278035,0.893420,0.260426,0.893420,0.260426,0.875811,0.406240,0.901452,0.406240,0.919061,0.388631,0.919061
			 ,0.388631,0.901452,0.380599,0.901452,0.380599,0.919061,0.362990,0.919061,0.362990,0.901452,0.406240,0.875811,0.406240,0.893420
			 ,0.388631,0.893420,0.388631,0.875811,0.380599,0.875811,0.380599,0.893420,0.362990,0.893420,0.362990,0.875811,0.927093,0.995984
			 ,0.927093,0.978375,0.970343,0.978375,0.970343,0.995984,0.995984,0.765215,0.978375,0.765215,0.978375,0.721965,0.995984,0.721965
			 ,0.919061,0.995984,0.875811,0.995984,0.875811,0.978375,0.919061,0.978375,0.995984,0.773247,0.995984,0.816497,0.978375,0.816497
			 ,0.978375,0.773247,0.893420,0.747606,0.893420,0.765215,0.875811,0.765215,0.875811,0.747606,0.867779,0.747606,0.867779,0.765215
			 ,0.850170,0.765215,0.850170,0.747606,0.893420,0.721965,0.893420,0.739574,0.875811,0.739574,0.875811,0.721965,0.867779,0.721965
			 ,0.867779,0.739574,0.850170,0.739574,0.850170,0.721965,0.893420,0.798888,0.893420,0.816497,0.875811,0.816497,0.875811,0.798888
			 ,0.867779,0.798888,0.867779,0.816497,0.850170,0.816497,0.850170,0.798888,0.893420,0.773247,0.893420,0.790856,0.875811,0.790856
			 ,0.875811,0.773247,0.952734,0.457522,0.952734,0.439914,0.995984,0.439914,0.995984,0.457522,0.995984,0.824529,0.995984,0.867779
			 ,0.978375,0.867779,0.978375,0.824529,0.995984,0.329317,0.952734,0.329317,0.952734,0.311708,0.995984,0.311708,0.713933,0.721965
			 ,0.713933,0.765215,0.670683,0.765215,0.670683,0.721965,0.970343,0.867779,0.952734,0.867779,0.952734,0.824529,0.970343,0.824529
			 ,0.919061,0.970343,0.875811,0.970343,0.875811,0.952734,0.919061,0.952734,0.765215,0.004016,0.765215,0.047266,0.721965,0.047266
			 ,0.721965,0.004016,0.765215,0.055298,0.765215,0.098548,0.721965,0.098548,0.721965,0.055298,0.970343,0.919061,0.952734,0.919061
			 ,0.952734,0.875811,0.970343,0.875811,0.867779,0.773247,0.867779,0.790856,0.850170,0.790856,0.850170,0.773247,0.560086,0.875811
			 ,0.560086,0.893420,0.542478,0.893420,0.542478,0.875811,0.534445,0.875811,0.534445,0.893420,0.516837,0.893420,0.516837,0.875811
			 ,0.560086,0.850170,0.560086,0.867779,0.542478,0.867779,0.542478,0.850170,0.303676,0.970343,0.260426,0.970343,0.260426,0.952734
			 ,0.303676,0.952734,0.534445,0.850170,0.534445,0.867779,0.516837,0.867779,0.516837,0.850170,0.508804,0.875811,0.508804,0.893420
			 ,0.491196,0.893420,0.491196,0.875811,0.970343,0.927093,0.970343,0.970343,0.952734,0.970343,0.952734,0.927093,0.465555,0.970343
			 ,0.465555,0.952734,0.508804,0.952734,0.508804,0.970343,0.483163,0.875811,0.483163,0.893420,0.465555,0.893420,0.465555,0.875811
			 ,0.508804,0.850170,0.508804,0.867779,0.491196,0.867779,0.491196,0.850170,0.739574,0.106580,0.739574,0.303676,0.721965,0.303676
			 ,0.721965,0.106580,0.483163,0.850170,0.483163,0.867779,0.465555,0.867779,0.465555,0.850170,0.893420,0.132221,0.893420,0.149830
			 ,0.875811,0.149830,0.875811,0.132221,0.867779,0.132221,0.867779,0.149830,0.850170,0.149830,0.850170,0.132221,0.893420,0.106580
			 ,0.893420,0.124189,0.875811,0.124189,0.875811,0.106580,0.867779,0.106580,0.867779,0.124189,0.850170,0.124189,0.850170,0.106580
			 ,0.893420,0.183503,0.893420,0.201112,0.875811,0.201112,0.875811,0.183503,0.867779,0.183503,0.867779,0.201112,0.850170,0.201112
			 ,0.850170,0.183503,0.893420,0.157862,0.893420,0.175471,0.875811,0.175471,0.875811,0.157862,0.867779,0.157862,0.867779,0.175471
			 ,0.850170,0.175471,0.850170,0.157862,0.893420,0.388631,0.893420,0.406240,0.875811,0.406240,0.875811,0.388631,0.867779,0.388631
			 ,0.867779,0.406240,0.850170,0.406240,0.850170,0.388631,0.893420,0.362990,0.893420,0.380599,0.875811,0.380599,0.875811,0.362990
			 ,0.867779,0.362990,0.867779,0.380599,0.850170,0.380599,0.850170,0.362990,0.867779,0.850170,0.867779,0.867779,0.850170,0.867779
			 ,0.850170,0.850170,0.842138,0.850170,0.842138,0.867779,0.824529,0.867779,0.824529,0.850170,0.867779,0.824529,0.867779,0.842138
			 ,0.850170,0.842138,0.850170,0.824529,0.842138,0.824529,0.842138,0.842138,0.824529,0.842138,0.824529,0.824529,0.560086,0.970343
			 ,0.516837,0.970343,0.516837,0.952734,0.560086,0.952734,0.201112,0.721965,0.201112,0.765215,0.157862,0.765215,0.157862,0.721965
			 ,0.765215,0.721965,0.765215,0.765215,0.721965,0.765215,0.721965,0.721965,0.970343,0.047266,0.952734,0.047266,0.952734,0.004016
			 ,0.970343,0.004016,0.611369,0.970343,0.568119,0.970343,0.568119,0.952734,0.611369,0.952734,0.970343,0.098548,0.952734,0.098548
			 ,0.952734,0.055298,0.970343,0.055298,0.662651,0.970343,0.619401,0.970343,0.619401,0.952734,0.662651,0.952734,0.970343,0.149830
			 ,0.952734,0.149830,0.952734,0.106580,0.970343,0.106580,0.867779,0.029657,0.867779,0.047266,0.850170,0.047266,0.850170,0.029657
			 ,0.842138,0.029657,0.842138,0.047266,0.824529,0.047266,0.824529,0.029657,0.867779,0.004016,0.867779,0.021625,0.850170,0.021625
			 ,0.850170,0.004016,0.842138,0.004016,0.842138,0.021625,0.824529,0.021625,0.824529,0.004016,0.670683,0.970343,0.670683,0.952734
			 ,0.713933,0.952734,0.713933,0.970343,0.970343,0.388631,0.970343,0.431881,0.952734,0.431881,0.952734,0.388631,0.842138,0.132221
			 ,0.842138,0.149830,0.824529,0.149830,0.824529,0.132221,0.816497,0.132221,0.816497,0.149830,0.798888,0.149830,0.798888,0.132221
			 ,0.842138,0.106580,0.842138,0.124189,0.824529,0.124189,0.824529,0.106580,0.816497,0.106580,0.816497,0.124189,0.798888,0.124189
			 ,0.798888,0.106580,0.842138,0.439914,0.842138,0.457522,0.824529,0.457522,0.824529,0.439914,0.816497,0.439914,0.816497,0.457522
			 ,0.798888,0.457522,0.798888,0.439914,0.842138,0.414272,0.842138,0.431881,0.824529,0.431881,0.824529,0.414272,0.816497,0.414272
			 ,0.816497,0.431881,0.798888,0.431881,0.798888,0.414272,0.149830,0.798888,0.149830,0.816497,0.132221,0.816497,0.132221,0.798888
			 ,0.124189,0.798888,0.124189,0.816497,0.106580,0.816497,0.106580,0.798888,0.149830,0.773247,0.149830,0.790856,0.132221,0.790856
			 ,0.132221,0.773247,0.124189,0.773247,0.124189,0.790856,0.106580,0.790856,0.106580,0.773247,0.662651,0.798888,0.662651,0.816497
			 ,0.645042,0.816497,0.645042,0.798888,0.637010,0.798888,0.637010,0.816497,0.619401,0.816497,0.619401,0.798888,0.662651,0.773247
			 ,0.662651,0.790856,0.645042,0.790856,0.645042,0.773247,0.637010,0.773247,0.637010,0.790856,0.619401,0.790856,0.619401,0.773247
			 ,0.406240,0.798888,0.406240,0.816497,0.388631,0.816497,0.388631,0.798888,0.721965,0.970343,0.721965,0.952734,0.765215,0.952734
			 ,0.765215,0.970343,0.380599,0.798888,0.380599,0.816497,0.362990,0.816497,0.362990,0.798888,0.406240,0.773247,0.406240,0.790856
			 ,0.388631,0.790856,0.388631,0.773247,0.380599,0.773247,0.380599,0.790856,0.362990,0.790856,0.362990,0.773247,0.816497,0.542478
			 ,0.816497,0.560086,0.798888,0.560086,0.798888,0.542478,0.790856,0.542478,0.790856,0.560086,0.773247,0.560086,0.773247,0.542478
			 ,0.816497,0.516837,0.816497,0.534445,0.798888,0.534445,0.798888,0.516837,0.790856,0.516837,0.790856,0.534445,0.773247,0.534445
			 ,0.773247,0.516837,0.816497,0.593760,0.816497,0.611369,0.798888,0.611369,0.798888,0.593760,0.790856,0.593760,0.790856,0.611369
			 ,0.773247,0.611369,0.773247,0.593760,0.816497,0.568119,0.816497,0.585728,0.798888,0.585728,0.798888,0.568119,0.790856,0.568119
			 ,0.790856,0.585728,0.773247,0.585728,0.773247,0.568119,0.611369,0.798888,0.611369,0.816497,0.593760,0.816497,0.593760,0.798888
			 ,0.585728,0.798888,0.585728,0.816497,0.568119,0.816497,0.568119,0.798888,0.611369,0.773247,0.611369,0.790856,0.593760,0.790856
			 ,0.593760,0.773247,0.585728,0.773247,0.585728,0.790856,0.568119,0.790856,0.568119,0.773247,0.790856,0.183503,0.790856,0.201112
			 ,0.773247,0.201112,0.773247,0.183503,0.765215,0.183503,0.765215,0.201112,0.747606,0.201112,0.747606,0.183503,0.790856,0.157862
			 ,0.790856,0.175471,0.773247,0.175471,0.773247,0.157862,0.765215,0.157862,0.765215,0.175471,0.747606,0.175471,0.747606,0.157862
			 ,0.790856,0.132221,0.790856,0.149830,0.773247,0.149830,0.773247,0.132221,0.765215,0.132221,0.765215,0.149830,0.747606,0.149830
			 ,0.747606,0.132221,0.790856,0.106580,0.790856,0.124189,0.773247,0.124189,0.773247,0.106580,0.765215,0.106580,0.765215,0.124189
			 ,0.747606,0.124189,0.747606,0.106580,0.611369,0.747606,0.611369,0.765215,0.593760,0.765215,0.593760,0.747606,0.585728,0.747606
			 ,0.585728,0.765215,0.568119,0.765215,0.568119,0.747606,0.970343,0.380599,0.952734,0.380599,0.952734,0.337349,0.970343,0.337349
			 ,0.611369,0.721965,0.611369,0.739574,0.593760,0.739574,0.593760,0.721965,0.585728,0.721965,0.585728,0.739574,0.568119,0.739574
			 ,0.568119,0.721965,0.816497,0.970343,0.773247,0.970343,0.773247,0.952734,0.816497,0.952734,0.919061,0.850170,0.919061,0.867779
			 ,0.901452,0.867779,0.901452,0.850170,0.893420,0.850170,0.893420,0.867779,0.875811,0.867779,0.875811,0.850170,0.713933,0.516837
			 ,0.713933,0.713933,0.696324,0.713933,0.696324,0.516837,0.919061,0.824529,0.919061,0.842138,0.901452,0.842138,0.901452,0.824529
			 ,0.893420,0.824529,0.893420,0.842138,0.875811,0.842138,0.875811,0.824529,0.047266,0.696324,0.047266,0.713933,0.029657,0.713933
			 ,0.029657,0.696324,0.021625,0.696324,0.021625,0.713933,0.004016,0.713933,0.004016,0.696324,0.047266,0.670683,0.047266,0.688292
			 ,0.029657,0.688292,0.029657,0.670683,0.021625,0.670683,0.021625,0.688292,0.004016,0.688292,0.004016,0.670683,0.098548,0.696324
			 ,0.098548,0.713933,0.080939,0.713933,0.080939,0.696324,0.072907,0.696324,0.072907,0.713933,0.055298,0.713933,0.055298,0.696324
			 ,0.098548,0.670683,0.098548,0.688292,0.080939,0.688292,0.080939,0.670683,0.072907,0.670683,0.072907,0.688292,0.055298,0.688292
			 ,0.055298,0.670683,0.662651,0.747606,0.662651,0.765215,0.645042,0.765215,0.645042,0.747606,0.637010,0.747606,0.637010,0.765215
			 ,0.619401,0.765215,0.619401,0.747606,0.662651,0.721965,0.662651,0.739574,0.645042,0.739574,0.645042,0.721965,0.867779,0.970343
			 ,0.824529,0.970343,0.824529,0.952734,0.867779,0.952734,0.637010,0.721965,0.637010,0.739574,0.619401,0.739574,0.619401,0.721965
			 ,0.765215,0.542478,0.765215,0.560086,0.747606,0.560086,0.747606,0.542478,0.970343,0.611369,0.952734,0.611369,0.952734,0.568119
			 ,0.970343,0.568119,0.790856,0.209144,0.790856,0.252394,0.747606,0.252394,0.747606,0.209144,0.516837,0.688292,0.516837,0.645042
			 ,0.611369,0.645042,0.611369,0.688292,0.739574,0.542478,0.739574,0.560086,0.721965,0.560086,0.721965,0.542478,0.765215,0.516837
			 ,0.765215,0.534445,0.747606,0.534445,0.747606,0.516837,0.739574,0.516837,0.739574,0.534445,0.721965,0.534445,0.721965,0.516837
			 ,0.970343,0.773247,0.970343,0.816497,0.952734,0.816497,0.952734,0.773247,0.055298,0.970343,0.055298,0.952734,0.098548,0.952734
			 ,0.098548,0.970343,0.970343,0.619401,0.970343,0.662651,0.952734,0.662651,0.952734,0.619401,0.354958,0.747606,0.354958,0.765215
			 ,0.337349,0.765215,0.337349,0.747606,0.414272,0.713933,0.414272,0.696324,0.611369,0.696324,0.611369,0.713933,0.970343,0.713933
			 ,0.952734,0.713933,0.952734,0.670683,0.970343,0.670683,0.329317,0.747606,0.329317,0.765215,0.311708,0.765215,0.311708,0.747606
			 ,0.354958,0.721965,0.354958,0.739574,0.337349,0.739574,0.337349,0.721965,0.329317,0.721965,0.329317,0.739574,0.311708,0.739574
			 ,0.311708,0.721965,0.303676,0.747606,0.303676,0.765215,0.286067,0.765215,0.286067,0.747606,0.303676,0.773247,0.303676,0.816497
			 ,0.260426,0.816497,0.260426,0.773247,0.149830,0.970343,0.106580,0.970343,0.106580,0.952734,0.149830,0.952734,0.278035,0.747606
			 ,0.278035,0.765215,0.260426,0.765215,0.260426,0.747606,0.303676,0.721965,0.303676,0.739574,0.286067,0.739574,0.286067,0.721965
			 ,0.201112,0.619401,0.201112,0.713933,0.106580,0.713933,0.106580,0.619401,0.278035,0.721965,0.278035,0.739574,0.260426,0.739574
			 ,0.260426,0.721965,0.457522,0.747606,0.457522,0.765215,0.439914,0.765215,0.439914,0.747606,0.431881,0.747606,0.431881,0.765215
			 ,0.414272,0.765215,0.414272,0.747606,0.457522,0.721965,0.457522,0.739574,0.439914,0.739574,0.439914,0.721965,0.431881,0.721965
			 ,0.431881,0.739574,0.414272,0.739574,0.414272,0.721965,0.611369,0.516837,0.611369,0.611369,0.516837,0.611369,0.516837,0.516837
			 ,0.406240,0.747606,0.406240,0.765215,0.388631,0.765215,0.388631,0.747606,0.380599,0.747606,0.380599,0.765215,0.362990,0.765215
			 ,0.362990,0.747606,0.406240,0.721965,0.406240,0.739574,0.388631,0.739574,0.388631,0.721965,0.380599,0.721965,0.380599,0.739574
			 ,0.362990,0.739574,0.362990,0.721965,0.970343,0.765215,0.952734,0.765215,0.952734,0.721965,0.970343,0.721965,0.252394,0.747606
			 ,0.252394,0.765215,0.234785,0.765215,0.234785,0.747606,0.252394,0.970343,0.209144,0.970343,0.209144,0.952734,0.252394,0.952734
			 ,0.226753,0.747606,0.226753,0.765215,0.209144,0.765215,0.209144,0.747606,0.252394,0.721965,0.252394,0.739574,0.234785,0.739574
			 ,0.234785,0.721965,0.970343,0.465555,0.970343,0.508804,0.952734,0.508804,0.952734,0.465555,0.226753,0.721965,0.226753,0.739574
			 ,0.209144,0.739574,0.209144,0.721965,0.765215,0.696324,0.765215,0.713933,0.747606,0.713933,0.747606,0.696324,0.713933,0.773247
			 ,0.713933,0.816497,0.670683,0.816497,0.670683,0.773247,0.406240,0.098548,0.209144,0.098548,0.209144,0.004016,0.406240,0.004016
			 ,0.406240,0.414272,0.406240,0.508804,0.311708,0.508804,0.311708,0.414272,0.739574,0.696324,0.739574,0.713933,0.721965,0.713933
			 ,0.721965,0.696324,0.970343,0.560086,0.952734,0.560086,0.952734,0.516837,0.970343,0.516837,0.508804,0.311708,0.508804,0.406240
			 ,0.414272,0.406240,0.414272,0.311708,0.201112,0.970343,0.157862,0.970343,0.157862,0.952734,0.201112,0.952734,0.970343,0.157862
			 ,0.970343,0.201112,0.952734,0.201112,0.952734,0.157862,0.560086,0.842138,0.465555,0.842138,0.465555,0.824529,0.560086,0.824529
			 ,0.765215,0.670683,0.765215,0.688292,0.747606,0.688292,0.747606,0.670683,0.739574,0.670683,0.739574,0.688292,0.721965,0.688292
			 ,0.721965,0.670683,0.149830,0.747606,0.149830,0.765215,0.132221,0.765215,0.132221,0.747606,0.970343,0.260426,0.970343,0.303676
			 ,0.952734,0.303676,0.952734,0.260426,0.816497,0.670683,0.816497,0.713933,0.773247,0.713933,0.773247,0.670683,0.816497,0.619401
			 ,0.816497,0.662651,0.773247,0.662651,0.773247,0.619401,0.406240,0.970343,0.362990,0.970343,0.362990,0.952734,0.406240,0.952734
			 ,0.970343,0.252394,0.952734,0.252394,0.952734,0.209144,0.970343,0.209144,0.414272,0.970343,0.414272,0.952734,0.457522,0.952734
			 ,0.457522,0.970343,0.124189,0.747606,0.124189,0.765215,0.106580,0.765215,0.106580,0.747606,0.303676,0.508804,0.209144,0.508804
			 ,0.209144,0.311708,0.303676,0.311708,0.149830,0.721965,0.149830,0.739574,0.132221,0.739574,0.132221,0.721965,0.124189,0.721965
			 ,0.124189,0.739574,0.106580,0.739574,0.106580,0.721965,0.004016,0.970343,0.004016,0.952734,0.047266,0.952734,0.047266,0.970343
			 ,0.098548,0.747606,0.098548,0.765215,0.080939,0.765215,0.080939,0.747606,0.842138,0.260426,0.842138,0.303676,0.798888,0.303676
			 ,0.798888,0.260426,0.944702,0.927093,0.944702,0.970343,0.927093,0.970343,0.927093,0.927093,0.072907,0.747606,0.072907,0.765215
			 ,0.055298,0.765215,0.055298,0.747606,0.098548,0.721965,0.098548,0.739574,0.080939,0.739574,0.080939,0.721965,0.072907,0.721965
			 ,0.072907,0.739574,0.055298,0.739574,0.055298,0.721965,0.406240,0.516837,0.406240,0.611369,0.311708,0.611369,0.311708,0.516837
			 ,0.047266,0.747606,0.047266,0.765215,0.029657,0.765215,0.029657,0.747606,0.004016,0.944702,0.004016,0.927093,0.047266,0.927093
			 ,0.047266,0.944702,0.021625,0.747606,0.021625,0.765215,0.004016,0.765215,0.004016,0.747606,0.047266,0.721965,0.047266,0.739574
			 ,0.029657,0.739574,0.029657,0.721965,0.021625,0.721965,0.021625,0.739574,0.004016,0.739574,0.004016,0.721965,0.842138,0.816497
			 ,0.824529,0.816497,0.824529,0.721965,0.842138,0.721965,0.098548,0.944702,0.055298,0.944702,0.055298,0.927093,0.098548,0.927093
			 ,0.329317,0.927093,0.329317,0.970343,0.311708,0.970343,0.311708,0.927093,0.765215,0.593760,0.765215,0.611369,0.747606,0.611369
			 ,0.747606,0.593760,0.739574,0.593760,0.739574,0.611369,0.721965,0.611369,0.721965,0.593760,0.765215,0.568119,0.765215,0.585728
			 ,0.747606,0.585728,0.747606,0.568119,0.739574,0.568119,0.739574,0.585728,0.721965,0.585728,0.721965,0.568119,0.508804,0.747606
			 ,0.508804,0.765215,0.491196,0.765215,0.491196,0.747606,0.483163,0.747606,0.483163,0.765215,0.465555,0.765215,0.465555,0.747606
			 ,0.106580,0.944702,0.106580,0.927093,0.149830,0.927093,0.149830,0.944702,0.508804,0.721965,0.508804,0.739574,0.491196,0.739574
			 ,0.491196,0.721965,0.483163,0.721965,0.483163,0.739574,0.465555,0.739574,0.465555,0.721965,0.560086,0.747606,0.560086,0.765215
			 ,0.542478,0.765215,0.542478,0.747606,0.534445,0.747606,0.534445,0.765215,0.516837,0.765215,0.516837,0.747606,0.354958,0.927093
			 ,0.354958,0.970343,0.337349,0.970343,0.337349,0.927093,0.560086,0.721965,0.560086,0.739574,0.542478,0.739574,0.542478,0.721965
			 ,0.406240,0.944702,0.362990,0.944702,0.362990,0.927093,0.406240,0.927093,0.534445,0.721965,0.534445,0.739574,0.516837,0.739574
			 ,0.516837,0.721965,0.944702,0.098548,0.927093,0.098548,0.927093,0.055298,0.944702,0.055298,0.765215,0.645042,0.765215,0.662651
			 ,0.747606,0.662651,0.747606,0.645042,0.739574,0.645042,0.739574,0.662651,0.721965,0.662651,0.721965,0.645042,0.765215,0.619401
			 ,0.765215,0.637010,0.747606,0.637010,0.747606,0.619401,0.739574,0.619401,0.739574,0.637010,0.721965,0.637010,0.721965,0.619401
			 ,0.790856,0.337349,0.790856,0.354958,0.773247,0.354958,0.773247,0.337349,0.765215,0.337349,0.765215,0.354958,0.747606,0.354958
			 ,0.747606,0.337349,0.790856,0.311708,0.790856,0.329317,0.773247,0.329317,0.773247,0.311708,0.098548,0.824529,0.098548,0.867779
			 ,0.055298,0.867779,0.055298,0.824529,0.457522,0.944702,0.414272,0.944702,0.414272,0.927093,0.457522,0.927093,0.713933,0.824529
			 ,0.713933,0.867779,0.670683,0.867779,0.670683,0.824529,0.765215,0.311708,0.765215,0.329317,0.747606,0.329317,0.747606,0.311708
			 ,0.662651,0.824529,0.662651,0.867779,0.619401,0.867779,0.619401,0.824529,0.790856,0.286067,0.790856,0.303676,0.773247,0.303676
			 ,0.773247,0.286067,0.765215,0.286067,0.765215,0.303676,0.747606,0.303676,0.747606,0.286067,0.790856,0.260426,0.790856,0.278035
			 ,0.773247,0.278035,0.773247,0.260426,0.765215,0.260426,0.765215,0.278035,0.747606,0.278035,0.747606,0.260426,0.790856,0.491196
			 ,0.790856,0.508804,0.773247,0.508804,0.773247,0.491196,0.765215,0.491196,0.765215,0.508804,0.747606,0.508804,0.747606,0.491196
			 ,0.790856,0.465555,0.790856,0.483163,0.773247,0.483163,0.773247,0.465555,0.765215,0.465555,0.765215,0.483163,0.747606,0.483163
			 ,0.747606,0.465555,0.790856,0.388631,0.790856,0.406240,0.773247,0.406240,0.773247,0.388631,0.765215,0.388631,0.765215,0.406240
			 ,0.747606,0.406240,0.747606,0.388631,0.944702,0.047266,0.927093,0.047266,0.927093,0.004016,0.944702,0.004016,0.465555,0.944702
			 ,0.465555,0.927093,0.508804,0.927093,0.508804,0.944702,0.790856,0.362990,0.790856,0.380599,0.773247,0.380599,0.773247,0.362990
			 ,0.944702,0.816497,0.927093,0.816497,0.927093,0.773247,0.944702,0.773247,0.765215,0.362990,0.765215,0.380599,0.747606,0.380599
			 ,0.747606,0.362990,0.560086,0.944702,0.516837,0.944702,0.516837,0.927093,0.560086,0.927093,0.944702,0.824529,0.944702,0.867779
			 ,0.927093,0.867779,0.927093,0.824529,0.790856,0.439914,0.790856,0.457522,0.773247,0.457522,0.773247,0.439914,0.765215,0.439914
			 ,0.765215,0.457522,0.747606,0.457522,0.747606,0.439914,0.790856,0.414272,0.790856,0.431881,0.773247,0.431881,0.773247,0.414272
			 ,0.611369,0.944702,0.568119,0.944702,0.568119,0.927093,0.611369,0.927093,0.765215,0.414272,0.765215,0.431881,0.747606,0.431881
			 ,0.747606,0.414272,0.816497,0.080939,0.816497,0.098548,0.798888,0.098548,0.798888,0.080939,0.944702,0.919061,0.927093,0.919061
			 ,0.927093,0.875811,0.944702,0.875811,0.790856,0.080939,0.790856,0.098548,0.773247,0.098548,0.773247,0.080939,0.816497,0.055298
			 ,0.816497,0.072907,0.798888,0.072907,0.798888,0.055298,0.790856,0.055298,0.790856,0.072907,0.773247,0.072907,0.773247,0.055298
			 ,0.867779,0.568119,0.867779,0.611369,0.824529,0.611369,0.824529,0.568119,0.816497,0.029657,0.816497,0.047266,0.798888,0.047266
			 ,0.798888,0.029657,0.790856,0.029657,0.790856,0.047266,0.773247,0.047266,0.773247,0.029657,0.816497,0.004016,0.816497,0.021625
			 ,0.798888,0.021625,0.798888,0.004016,0.790856,0.004016,0.790856,0.021625,0.773247,0.021625,0.773247,0.004016,0.619401,0.944702
			 ,0.619401,0.927093,0.662651,0.927093,0.662651,0.944702,0.560086,0.798888,0.560086,0.816497,0.542478,0.816497,0.542478,0.798888
			 ,0.534445,0.798888,0.534445,0.816497,0.516837,0.816497,0.516837,0.798888,0.560086,0.773247,0.560086,0.790856,0.542478,0.790856
			 ,0.542478,0.773247,0.534445,0.773247,0.534445,0.790856,0.516837,0.790856,0.516837,0.773247,0.252394,0.798888,0.252394,0.816497
			 ,0.234785,0.816497,0.234785,0.798888,0.713933,0.004016,0.713933,0.098548,0.619401,0.098548,0.619401,0.004016,0.226753,0.798888
			 ,0.226753,0.816497,0.209144,0.816497,0.209144,0.798888,0.944702,0.252394,0.927093,0.252394,0.927093,0.209144,0.944702,0.209144
			 ,0.252394,0.773247,0.252394,0.790856,0.234785,0.790856,0.234785,0.773247,0.226753,0.773247,0.226753,0.790856,0.209144,0.790856
			 ,0.209144,0.773247,0.303676,0.619401,0.303676,0.713933,0.209144,0.713933,0.209144,0.619401,0.354958,0.798888,0.354958,0.816497
			 ,0.337349,0.816497,0.337349,0.798888,0.670683,0.944702,0.670683,0.927093,0.713933,0.927093,0.713933,0.944702,0.329317,0.798888
			 ,0.329317,0.816497,0.311708,0.816497,0.311708,0.798888,0.944702,0.508804,0.927093,0.508804,0.927093,0.465555,0.944702,0.465555
			 ,0.354958,0.773247,0.354958,0.790856,0.337349,0.790856,0.337349,0.773247,0.893420,0.311708,0.893420,0.354958,0.850170,0.354958
			 ,0.850170,0.311708,0.765215,0.944702,0.721965,0.944702,0.721965,0.927093,0.765215,0.927093,0.406240,0.619401,0.406240,0.713933
			 ,0.311708,0.713933,0.311708,0.619401,0.944702,0.765215,0.927093,0.765215,0.927093,0.721965,0.944702,0.721965,0.773247,0.944702
			 ,0.773247,0.927093,0.816497,0.927093,0.816497,0.944702,0.713933,0.209144,0.713933,0.303676,0.619401,0.303676,0.619401,0.209144
			 ,0.329317,0.773247,0.329317,0.790856,0.311708,0.790856,0.311708,0.773247,0.944702,0.611369,0.927093,0.611369,0.927093,0.568119
			 ,0.944702,0.568119,0.201112,0.798888,0.201112,0.816497,0.183503,0.816497,0.183503,0.798888,0.209144,0.944702,0.209144,0.927093
			 ,0.252394,0.927093,0.252394,0.944702,0.944702,0.388631,0.944702,0.431881,0.927093,0.431881,0.927093,0.388631,0.944702,0.124189
			 ,0.901452,0.124189,0.901452,0.106580,0.944702,0.106580,0.175471,0.798888,0.175471,0.816497,0.157862,0.816497,0.157862,0.798888
			 ,0.201112,0.773247,0.201112,0.790856,0.183503,0.790856,0.183503,0.773247,0.175471,0.773247,0.175471,0.790856,0.157862,0.790856
			 ,0.157862,0.773247,0.765215,0.798888,0.765215,0.816497,0.747606,0.816497,0.747606,0.798888,0.739574,0.798888,0.739574,0.816497
			 ,0.721965,0.816497,0.721965,0.798888,0.765215,0.773247,0.765215,0.790856,0.747606,0.790856,0.747606,0.773247,0.739574,0.773247
			 ,0.739574,0.790856,0.721965,0.790856,0.721965,0.773247,0.457522,0.798888,0.457522,0.816497,0.439914,0.816497,0.439914,0.798888
			 ,0.431881,0.798888,0.431881,0.816497,0.414272,0.816497,0.414272,0.798888,0.201112,0.004016,0.201112,0.201112,0.004016,0.201112
			 ,0.004016,0.004016,0.919061,0.765215,0.901452,0.765215,0.901452,0.721965,0.919061,0.721965,0.901452,0.354958,0.901452,0.337349
			 ,0.944702,0.337349,0.944702,0.354958,0.688292,0.713933,0.670683,0.713933,0.670683,0.516837,0.688292,0.516837,0.901452,0.380599
			 ,0.901452,0.362990,0.944702,0.362990,0.944702,0.380599,0.252394,0.875811,0.252394,0.919061,0.209144,0.919061,0.209144,0.875811
			 ,0.201112,0.875811,0.201112,0.919061,0.157862,0.919061,0.157862,0.875811,0.919061,0.175471,0.901452,0.175471,0.901452,0.132221
			 ,0.919061,0.132221,0.901452,0.201112,0.901452,0.183503,0.944702,0.183503,0.944702,0.201112,0.919061,0.465555,0.919061,0.508804
			 ,0.901452,0.508804,0.901452,0.465555,0.867779,0.875811,0.867779,0.919061,0.824529,0.919061,0.824529,0.875811,0.508804,0.414272
			 ,0.508804,0.508804,0.414272,0.508804,0.414272,0.414272,0.098548,0.662651,0.004016,0.662651,0.004016,0.619401,0.098548,0.619401
			 ,0.457522,0.875811,0.457522,0.919061,0.414272,0.919061,0.414272,0.875811,0.637010,0.516837,0.637010,0.713933,0.619401,0.713933
			 ,0.619401,0.516837,0.201112,0.508804,0.004016,0.508804,0.004016,0.414272,0.201112,0.414272,0.867779,0.944702,0.867779,0.931109
			 ,0.828545,0.944702,0.944702,0.662651,0.931109,0.662651,0.944702,0.623417,0.157862,0.940686,0.197096,0.927093,0.157862,0.927093
			 ,0.944702,0.713933,0.944702,0.674699,0.931109,0.713933,0.623417,0.201112,0.713933,0.110596,0.713933,0.201112,0.931109,0.560086
			 ,0.944702,0.520853,0.944702,0.560086,0.927093,0.670683,0.940686,0.670683,0.927093,0.709917,0.919061,0.944702,0.919061,0.931109
			 ,0.879827,0.944702,0.875811,0.940686,0.875811,0.927093,0.915045,0.927093,0.940686,0.619401,0.927093,0.619401,0.927093,0.658635
			 ,0.824529,0.940686,0.863763,0.927093,0.824529,0.927093,0.927093,0.516837,0.927093,0.556070,0.940686,0.516837,0.457522,0.773247
			 ,0.457522,0.790856,0.439914,0.790856,0.439914,0.773247,0.431881,0.773247,0.431881,0.790856,0.414272,0.790856,0.414272,0.773247
			 ,0.098548,0.798888,0.098548,0.816497,0.080939,0.816497,0.080939,0.798888,0.072907,0.798888,0.072907,0.816497,0.055298,0.816497
			 ,0.055298,0.798888,0.098548,0.773247,0.098548,0.790856,0.080939,0.790856,0.080939,0.773247,0.072907,0.773247,0.072907,0.790856
			 ,0.055298,0.790856,0.055298,0.773247,0.047266,0.798888,0.047266,0.816497,0.029657,0.816497,0.029657,0.798888,0.021625,0.798888
			 ,0.021625,0.816497,0.004016,0.816497,0.004016,0.798888,0.047266,0.773247,0.047266,0.790856,0.029657,0.790856,0.029657,0.773247
			 ,0.021625,0.773247,0.021625,0.790856,0.004016,0.790856,0.004016,0.773247,0.508804,0.798888,0.508804,0.816497,0.491196,0.816497
			 ,0.491196,0.798888,0.483163,0.798888,0.483163,0.816497,0.465555,0.816497,0.465555,0.798888,0.406240,0.311708,0.406240,0.406240
			 ,0.311708,0.406240,0.311708,0.311708,0.919061,0.252394,0.901452,0.252394,0.901452,0.209144,0.919061,0.209144,0.508804,0.773247
			 ,0.508804,0.790856,0.491196,0.790856,0.491196,0.773247,0.483163,0.773247,0.483163,0.790856,0.465555,0.790856,0.465555,0.773247
			 ,0.816497,0.747606,0.816497,0.765215,0.798888,0.765215,0.798888,0.747606,0.508804,0.004016,0.508804,0.098548,0.414272,0.098548
			 ,0.414272,0.004016,0.508804,0.919061,0.465555,0.919061,0.465555,0.901452,0.508804,0.901452,0.919061,0.773247,0.919061,0.816497
			 ,0.901452,0.816497,0.901452,0.773247,0.516837,0.919061,0.516837,0.901452,0.560086,0.901452,0.560086,0.919061,0.790856,0.747606
			 ,0.790856,0.765215,0.773247,0.765215,0.773247,0.747606,0.816497,0.721965,0.816497,0.739574,0.798888,0.739574,0.798888,0.721965
			 ,0.739574,0.508804,0.721965,0.508804,0.721965,0.311708,0.739574,0.311708,0.790856,0.721965,0.790856,0.739574,0.773247,0.739574
			 ,0.773247,0.721965,0.816497,0.798888,0.816497,0.816497,0.798888,0.816497,0.798888,0.798888,0.919061,0.875811,0.919061,0.919061
			 ,0.875811,0.919061,0.875811,0.875811,0.611369,0.637010,0.414272,0.637010,0.414272,0.619401,0.611369,0.619401,0.662651,0.713933
			 ,0.645042,0.713933,0.645042,0.516837,0.662651,0.516837,0.508804,0.516837,0.508804,0.611369,0.414272,0.611369,0.414272,0.516837
			 ,0.901452,0.278035,0.901452,0.260426,0.944702,0.260426,0.944702,0.278035,0.919061,0.329317,0.901452,0.329317,0.901452,0.286067
			 ,0.919061,0.286067,0.209144,0.201112,0.209144,0.106580,0.406240,0.106580,0.406240,0.201112,0.790856,0.798888,0.790856,0.816497
			 ,0.773247,0.816497,0.773247,0.798888,0.201112,0.209144,0.201112,0.406240,0.004016,0.406240,0.004016,0.209144,0.611369,0.311708
			 ,0.611369,0.406240,0.516837,0.406240,0.516837,0.311708,0.611369,0.209144,0.611369,0.303676,0.516837,0.303676,0.516837,0.209144
			 ,0.611369,0.106580,0.611369,0.201112,0.516837,0.201112,0.516837,0.106580,0.919061,0.431881,0.901452,0.431881,0.901452,0.388631
			 ,0.919061,0.388631,0.816497,0.773247,0.816497,0.790856,0.798888,0.790856,0.798888,0.773247,0.790856,0.773247,0.790856,0.790856
			 ,0.773247,0.790856,0.773247,0.773247,0.354958,0.875811,0.354958,0.919061,0.311708,0.919061,0.311708,0.875811,0.842138,0.491196
			 ,0.842138,0.508804,0.824529,0.508804,0.824529,0.491196,0.944702,0.457522,0.901452,0.457522,0.901452,0.439914,0.944702,0.439914
			 ,0.816497,0.491196,0.816497,0.508804,0.798888,0.508804,0.798888,0.491196,0.842138,0.465555,0.842138,0.483163,0.824529,0.483163
			 ,0.824529,0.465555,0.816497,0.465555,0.816497,0.483163,0.798888,0.483163,0.798888,0.465555,0.842138,0.337349,0.842138,0.354958
			 ,0.824529,0.354958,0.824529,0.337349,0.816497,0.337349,0.816497,0.354958,0.798888,0.354958,0.798888,0.337349,0.842138,0.311708
			 ,0.842138,0.329317,0.824529,0.329317,0.824529,0.311708,0.611369,0.414272,0.611369,0.508804,0.516837,0.508804,0.516837,0.414272
			 ,0.816497,0.311708,0.816497,0.329317,0.798888,0.329317,0.798888,0.311708,0.944702,0.132221,0.944702,0.175471,0.927093,0.175471
			 ,0.927093,0.132221,0.842138,0.183503,0.842138,0.201112,0.824529,0.201112,0.824529,0.183503,0.816497,0.183503,0.816497,0.201112
			 ,0.798888,0.201112,0.798888,0.183503,0.842138,0.157862,0.842138,0.175471,0.824529,0.175471,0.824529,0.157862,0.816497,0.157862
			 ,0.816497,0.175471,0.798888,0.175471,0.798888,0.157862,0.842138,0.388631,0.842138,0.406240,0.824529,0.406240,0.824529,0.388631
			 ,0.303676,0.944702,0.260426,0.944702,0.260426,0.927093,0.303676,0.927093,0.816497,0.388631,0.816497,0.406240,0.798888,0.406240
			 ,0.798888,0.388631,0.944702,0.329317,0.927093,0.329317,0.927093,0.286067,0.944702,0.286067,0.414272,0.688292,0.414272,0.645042
			 ,0.508804,0.645042,0.508804,0.688292,0.508804,0.303676,0.414272,0.303676,0.414272,0.106580,0.508804,0.106580,0.842138,0.362990
			 ,0.842138,0.380599,0.824529,0.380599,0.824529,0.362990,0.816497,0.362990,0.816497,0.380599,0.798888,0.380599,0.798888,0.362990
			 ,0.842138,0.234785,0.842138,0.252394,0.824529,0.252394,0.824529,0.234785,0.816497,0.234785,0.816497,0.252394,0.798888,0.252394
			 ,0.798888,0.234785,0.842138,0.209144,0.842138,0.226753,0.824529,0.226753,0.824529,0.209144,0.816497,0.209144,0.816497,0.226753
			 ,0.798888,0.226753,0.798888,0.209144,0.201112,0.850170,0.201112,0.867779,0.183503,0.867779,0.183503,0.850170,0.175471,0.850170
			 ,0.175471,0.867779,0.157862,0.867779,0.157862,0.850170,0.201112,0.824529,0.201112,0.842138,0.183503,0.842138,0.183503,0.824529
			 ,0.175471,0.824529,0.175471,0.842138,0.157862,0.842138,0.157862,0.824529,0.149830,0.850170,0.149830,0.867779,0.132221,0.867779
			 ,0.132221,0.850170,0.124189,0.850170,0.124189,0.867779,0.106580,0.867779,0.106580,0.850170,0.149830,0.824529,0.149830,0.842138
			 ,0.132221,0.842138,0.132221,0.824529,0.124189,0.824529,0.124189,0.842138,0.106580,0.842138,0.106580,0.824529,0.354958,0.850170
			 ,0.354958,0.867779,0.337349,0.867779,0.337349,0.850170,0.329317,0.850170,0.329317,0.867779,0.311708,0.867779,0.311708,0.850170
			 ,0.354958,0.824529,0.354958,0.842138,0.337349,0.842138,0.337349,0.824529,0.329317,0.824529,0.329317,0.842138,0.311708,0.842138
			 ,0.311708,0.824529,0.303676,0.850170,0.303676,0.867779,0.286067,0.867779,0.286067,0.850170,0.278035,0.850170,0.278035,0.867779
			 ,0.260426,0.867779,0.260426,0.850170,0.303676,0.824529,0.303676,0.842138,0.286067,0.842138,0.286067,0.824529,0.278035,0.824529
			 ,0.278035,0.842138,0.260426,0.842138,0.260426,0.824529,0.867779,0.696324,0.867779,0.713933,0.850170,0.713933,0.850170,0.696324
			 ,0.842138,0.696324,0.842138,0.713933,0.824529,0.713933,0.824529,0.696324,0.867779,0.670683,0.867779,0.688292,0.850170,0.688292
			 ,0.850170,0.670683,0.842138,0.670683,0.842138,0.688292,0.824529,0.688292,0.824529,0.670683,0.047266,0.850170,0.047266,0.867779
			 ,0.029657,0.867779,0.029657,0.850170,0.619401,0.197096,0.709917,0.106580,0.619401,0.106580,0.209144,0.303676,0.209144,0.209144
			 ,0.406240,0.209144,0.406240,0.303676,0.021625,0.850170,0.021625,0.867779,0.004016,0.867779,0.004016,0.850170,0.047266,0.824529
			 ,0.047266,0.842138,0.029657,0.842138,0.029657,0.824529,0.021625,0.824529,0.021625,0.842138,0.004016,0.842138,0.004016,0.824529
			 ,0.457522,0.850170,0.457522,0.867779,0.439914,0.867779,0.439914,0.850170,0.431881,0.850170,0.431881,0.867779,0.414272,0.867779
			 ,0.414272,0.850170,0.457522,0.824529,0.457522,0.842138,0.439914,0.842138,0.439914,0.824529,0.431881,0.824529,0.431881,0.842138
			 ,0.414272,0.842138,0.414272,0.824529,0.406240,0.850170,0.406240,0.867779,0.388631,0.867779,0.388631,0.850170,0.380599,0.850170
			 ,0.380599,0.867779,0.362990,0.867779,0.362990,0.850170,0.406240,0.824529,0.406240,0.842138,0.388631,0.842138,0.388631,0.824529
			 ,0.380599,0.824529,0.380599,0.842138,0.362990,0.842138,0.362990,0.824529,0.765215,0.850170,0.765215,0.867779,0.747606,0.867779
			 ,0.747606,0.850170,0.739574,0.850170,0.739574,0.867779,0.721965,0.867779,0.721965,0.850170,0.765215,0.824529,0.765215,0.842138
			 ,0.747606,0.842138,0.747606,0.824529,0.739574,0.824529,0.739574,0.842138,0.721965,0.842138,0.721965,0.824529,0.611369,0.850170
			 ,0.611369,0.867779,0.593760,0.867779,0.593760,0.850170,0.585728,0.850170,0.585728,0.867779,0.568119,0.867779,0.568119,0.850170
			 ,0.611369,0.824529,0.611369,0.842138,0.593760,0.842138,0.593760,0.824529,0.585728,0.824529,0.585728,0.842138,0.568119,0.842138
			 ,0.568119,0.824529,0.816497,0.850170,0.816497,0.867779,0.798888,0.867779,0.798888,0.850170,0.790856,0.850170,0.790856,0.867779
			 ,0.773247,0.867779,0.773247,0.850170,0.816497,0.824529,0.816497,0.842138,0.798888,0.842138,0.798888,0.824529,0.790856,0.824529
			 ,0.790856,0.842138,0.773247,0.842138,0.773247,0.824529,0.252394,0.850170,0.252394,0.867779,0.234785,0.867779,0.234785,0.850170
			 ,0.226753,0.850170,0.226753,0.867779,0.209144,0.867779,0.209144,0.850170,0.252394,0.824529,0.252394,0.842138,0.234785,0.842138
			 ,0.234785,0.824529,0.226753,0.824529,0.226753,0.842138,0.209144,0.842138,0.209144,0.824529,0.867779,0.645042,0.867779,0.662651
			 ,0.850170,0.662651,0.850170,0.645042,0.842138,0.645042,0.842138,0.662651,0.824529,0.662651,0.824529,0.645042,0.867779,0.619401
			 ,0.867779,0.637010,0.850170,0.637010,0.850170,0.619401,0.842138,0.619401,0.842138,0.637010,0.824529,0.637010,0.824529,0.619401
			 ,0.867779,0.080939,0.867779,0.098548,0.850170,0.098548,0.850170,0.080939,0.842138,0.080939,0.842138,0.098548,0.824529,0.098548
			 ,0.824529,0.080939,0.867779,0.055298,0.867779,0.072907,0.850170,0.072907,0.850170,0.055298,0.842138,0.055298,0.842138,0.072907
			 ,0.824529,0.072907,0.824529,0.055298,0.867779,0.542478,0.867779,0.560086,0.850170,0.560086,0.850170,0.542478,0.842138,0.542478
			 ,0.842138,0.560086,0.824529,0.560086,0.824529,0.542478,0.867779,0.516837,0.867779,0.534445,0.850170,0.534445,0.850170,0.516837
			 ,0.842138,0.516837,0.842138,0.534445,0.824529,0.534445,0.824529,0.516837,0.893420,0.491196,0.893420,0.508804,0.875811,0.508804
			 ,0.875811,0.491196,0.867779,0.491196,0.867779,0.508804,0.850170,0.508804,0.850170,0.491196,0.893420,0.465555,0.893420,0.483163
			 ,0.875811,0.483163,0.875811,0.465555,0.867779,0.465555,0.867779,0.483163,0.850170,0.483163,0.850170,0.465555,0.893420,0.439914
			 ,0.893420,0.457522,0.875811,0.457522,0.875811,0.439914,0.867779,0.439914,0.867779,0.457522,0.850170,0.457522,0.850170,0.439914
			 ,0.893420,0.414272,0.893420,0.431881,0.875811,0.431881,0.875811,0.414272,0.867779,0.414272,0.867779,0.431881,0.850170,0.431881
			 ,0.850170,0.414272,0.893420,0.286067,0.893420,0.303676,0.875811,0.303676,0.875811,0.286067,0.867779,0.286067,0.867779,0.303676
			 ,0.850170,0.303676,0.850170,0.286067,0.893420,0.260426,0.893420,0.278035,0.875811,0.278035,0.875811,0.260426,0.867779,0.260426
			 ,0.867779,0.278035,0.850170,0.278035,0.850170,0.260426,0.893420,0.234785,0.893420,0.252394,0.875811,0.252394,0.875811,0.234785
			 ,0.867779,0.234785,0.867779,0.252394,0.850170,0.252394,0.850170,0.234785,0.893420,0.209144,0.893420,0.226753,0.875811,0.226753
			 ,0.875811,0.209144,0.867779,0.209144,0.867779,0.226753,0.850170,0.226753,0.850170,0.209144
			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,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794
				,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849
				,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904
				,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959
				,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014
				,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069
				,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124
				,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179
				,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234
				,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289
				,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344
				,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399
				,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454
				,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509
				,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564
				,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589
		}
		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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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
			}
		}
	}
	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::None__checkerboard_jpg", "" {
		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", "", "knight-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: "knight-ao.jpg"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\chess\texture\knight-ao.jpg"
	}
	Video: "Video::checkerboard_jpg", "Clip" {
		Type: "Clip"
		Properties60:  {
			Property: "FrameRate", "double", "",0
			Property: "LastFrame", "int", "",0
			Property: "Width", "int", "",0
			Property: "Height", "int", "",0
			Property: "Path", "charptr", "", "checkerboard.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: "checkerboard.jpg"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\checkerboard.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: "knight-ao.jpg"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\chess\texture\knight-ao.jpg"
		ModelUVTranslation: 0,0
		ModelUVScaling: 1,1
		Texture_Alpha_Source: "None"
		Cropping: 0,0,0,0
	}
	Texture: "Texture::checkerboard_jpg", "TextureVideoClip" {
		Type: "TextureVideoClip"
		Version: 202
		TextureName: "Texture::checkerboard_jpg"
		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+",1
			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::checkerboard_jpg"
		FileName: "checkerboard.jpg"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\checkerboard.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::knight"
			Matrix: 0.000000058569587,0.775777697563171,-0.000000058569587,0.000000000000000,-0.775777697563171,0.000000058569587,-0.000000000000004,0.000000000000000,0.000000000000000,0.000000058569587,0.775777697563171,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::knight", "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::None__checkerboard_jpg", "" {
	}
	Texture: "Texture::ao", "TextureVideoClip" {
	}
	Texture: "Texture::checkerboard_jpg", "TextureVideoClip" {
	}
	Video: "Video::ao", "Clip" {
	}
	Video: "Video::checkerboard_jpg", "Clip" {
	}
}

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

Connections:  {
	Connect: "OO", "Model::knight", "Model::Scene"
	Connect: "OO", "Material::None__ao", "Model::knight"
	Connect: "OO", "Material::None__checkerboard_jpg", "Model::knight"
	Connect: "OO", "Texture::ao", "Model::knight"
	Connect: "OO", "Texture::checkerboard_jpg", "Model::knight"
	Connect: "OO", "Video::ao", "Texture::ao"
	Connect: "OO", "Video::checkerboard_jpg", "Texture::checkerboard_jpg"
}
;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
	}
}