text = "Low Key"; font_name = "Arial:style:bold"; font_size = 8; line_spacing = 16; board_thickness = 3; board_frame = 1.5; board_spacing = 0.5; board_only = "NO"; // [YES, NO] /* [Hidden] */ BOARD_FOR_DIFF_WIDTH = 30; BOARD_FOR_DIFF_HEIGHT = 40; /** * multi_line_text.scad * * Creates multi-line text from a list of strings. * * @copyright Justin Lin, 2017 * @license https://opensource.org/licenses/lgpl-3.0.html * * @see https://openhome.cc/eGossip/OpenSCAD/lib-multi_line_text.html * **/ module multi_line_text(lines, line_spacing = 15, size = 10, font = "Arial", halign = "left", valign = "baseline", direction = "ltr", language = "en", script = "latin"){ to = len(lines) - 1; inc = line_spacing; offset_y = inc * to / 2; union() { for (i = [0 : to]) { translate([0 , -i * inc + offset_y, 0]) text(lines[i], size, font = font, valign = valign, halign = halign, direction = direction, language = language, script = script); } } } /** * hollow_out.scad * * Hollows out a 2D object. * * @copyright Justin Lin, 2017 * @license https://opensource.org/licenses/lgpl-3.0.html * * @see https://openhome.cc/eGossip/OpenSCAD/lib-hollow_out.html * **/ module hollow_out(shell_thickness) { difference() { children(); offset(delta = -shell_thickness) children(); } } /** * sub_str.scad * * Returns a new string that is a substring of the given string. * * @copyright Justin Lin, 2017 * @license https://opensource.org/licenses/lgpl-3.0.html * * @see https://openhome.cc/eGossip/OpenSCAD/lib-sub_str.html * **/ function sub_str(t, begin, end, result = "") = end == undef ? sub_str(t, begin, len(t)) : ( begin == end ? result : sub_str(t, begin + 1, end, str(result, t[begin])) ); /** * split_str.scad * * Splits the given string around matches of the given delimiting character. * It depends on the sub_str function so remember to include sub_str.scad. * * @copyright Justin Lin, 2017 * @license https://opensource.org/licenses/lgpl-3.0.html * * @see https://openhome.cc/eGossip/OpenSCAD/lib-split_str.html * **/ function _split_t_by(idxs, t, ts = [], i = -1) = i == -1 ? _split_t_by(idxs, t, [sub_str(t, 0, idxs[0])], i + 1) : ( i == len(idxs) - 1 ? concat(ts, sub_str(t, idxs[i] + 1)) : _split_t_by(idxs, t, concat(ts, sub_str(t, idxs[i] + 1, idxs[i + 1])), i + 1) ); function split_str(t, delimiter) = len(search(delimiter, t)) == 0 ? [t] : _split_t_by(search(delimiter, t, 0)[0], t); module base(board_thickness) { module microphone() { $fn = 36; linear_extrude(2, scale = 0.8) circle(10); linear_extrude(4, scale = 0.8) circle(3.5); linear_extrude(15, scale = 0.9) circle(2.25); hull() { translate([0, 0, 12.5]) sphere(1.5); translate([0, 1, 22.5]) sphere(1.5); } hull() { translate([0, 1, 22.5]) sphere(1.5); translate([0, 4, 30]) sphere(1.5); } hull() { translate([0, 4, 30]) sphere(1.85); translate([0, 8, 37.5]) sphere(1.85); } } translate([0, 0, 2.5]) union() { difference() { translate([10, 5, 0]) object1(1); translate([-18, -2.5, 32]) rotate([90, -5, -12.5]) linear_extrude(board_thickness, center = true) square([ BOARD_FOR_DIFF_WIDTH, BOARD_FOR_DIFF_HEIGHT ], center = true); } cube([100, 65, 5], center = true); translate([5, -20, 2]) rotate(-15) microphone(); } } module board(text, font_name, font_size, line_spacing, board_thickness, board_frame, board_spacing) { width = BOARD_FOR_DIFF_WIDTH - 2 * board_spacing; height = BOARD_FOR_DIFF_HEIGHT - 2 * board_spacing; bd_thickness = board_thickness - 2 * board_spacing; translate([0, -60, bd_thickness / 2]) union() { color("black") linear_extrude(bd_thickness, center = true) hollow_out(shell_thickness = board_frame) square([width, height], center = true); color("white") translate([0, 0, -bd_thickness / 4]) linear_extrude(bd_thickness / 2, center = true) square([width, height], center = true); color("black") linear_extrude(bd_thickness, center = true) multi_line_text( split_str(text, " "), font = font_name, size = font_size, line_spacing = line_spacing, valign = "center", halign = "center" ); } } if(board_only == "NO") { base(board_thickness); } board(text, font_name, font_size, line_spacing, board_thickness, board_frame, board_spacing); /* // for preview * translate([-18, -2.5, 34.5]) rotate([90, -5, -12.5]) translate([0, 60, -(board_thickness - 2 * board_spacing) / 2]) board(text, font_name, font_size, line_spacing, board_thickness, board_frame, board_spacing); */ module object1(scale) {polyhedron( points=[[16.6016,8.71525,14.2936],[16.7326,8.07205,14.5434],[16.927,8.12582,13.7672],[16.927,8.12582,13.7672],[16.5982,9.21451,13.483],[16.6016,8.71525,14.2936],[16.5982,9.21451,13.483],[16.2014,9.59645,14.5798],[16.6016,8.71525,14.2936],[16.2014,9.59645,14.5798],[16.4001,8.59391,15.0815],[16.6016,8.71525,14.2936],[16.0853,9.3233,15.4561],[16.4001,8.59391,15.0815],[16.2014,9.59645,14.5798],[15.7614,10.2128,15.5537],[16.0853,9.3233,15.4561],[16.2014,9.59645,14.5798],[15.7388,10.6707,14.6074],[15.7614,10.2128,15.5537],[16.2014,9.59645,14.5798],[16.0117,10.4784,13.5771],[15.7388,10.6707,14.6074],[16.2014,9.59645,14.5798],[16.0117,10.4784,13.5771],[15.2361,11.7616,14.025],[15.7388,10.6707,14.6074],[15.2361,11.7616,14.025],[15.3257,11.2536,15.3267],[15.7388,10.6707,14.6074],[15.3257,11.2536,15.3267],[15.2361,11.7616,14.025],[14.4893,12.4955,16.1036],[14.4893,12.4955,16.1036],[15.2622,11.049,16.3889],[15.3257,11.2536,15.3267],[15.7614,10.2128,15.5537],[15.3257,11.2536,15.3267],[15.2622,11.049,16.3889],[15.2622,11.049,16.3889],[15.6375,10.1165,16.4665],[15.7614,10.2128,15.5537],[15.7614,10.2128,15.5537],[15.6375,10.1165,16.4665],[15.8877,9.52912,16.0664],[15.8877,9.52912,16.0664],[15.6375,10.1165,16.4665],[15.8254,9.3693,16.869],[16.1036,8.72259,15.9935],[15.8877,9.52912,16.0664],[15.8254,9.3693,16.869],[16.1036,8.72259,15.9935],[15.8254,9.3693,16.869],[16.0565,8.40755,16.6889],[16.1914,7.9313,16.1256],[16.1036,8.72259,15.9935],[16.0565,8.40755,16.6889],[16.1914,7.9313,16.1256],[16.0565,8.40755,16.6889],[16.227,7.74859,16.5613],[16.2693,7.39558,16.1566],[16.1914,7.9313,16.1256],[16.227,7.74859,16.5613],[16.2693,7.39558,16.1566],[16.227,7.74859,16.5613],[16.4209,7.28058,16.3544],[16.4689,6.84358,15.9172],[16.2693,7.39558,16.1566],[16.4209,7.28058,16.3544],[16.8328,7.06429,16.1377],[16.4689,6.84358,15.9172],[16.4209,7.28058,16.3544],[16.6697,7.72365,16.8077],[16.8328,7.06429,16.1377],[16.4209,7.28058,16.3544],[17.2201,7.37199,16.4226],[16.8328,7.06429,16.1377],[16.6697,7.72365,16.8077],[16.6697,7.72365,16.8077],[17.4816,7.94894,17.1305],[17.2201,7.37199,16.4226],[17.2201,7.37199,16.4226],[17.4816,7.94894,17.1305],[17.8107,7.32847,16.2844],[17.2201,7.37199,16.4226],[17.8107,7.32847,16.2844],[17.3915,6.91257,15.833],[17.8107,7.32847,16.2844],[17.9587,6.824,15.5656],[17.3915,6.91257,15.833],[17.5429,6.38615,15.1464],[17.3915,6.91257,15.833],[17.9587,6.824,15.5656],[17.5429,6.38615,15.1464],[17.9587,6.824,15.5656],[18.1508,6.33556,14.9013],[17.7801,5.76391,14.3177],[17.5429,6.38615,15.1464],[18.1508,6.33556,14.9013],[18.4819,5.84694,14.2561],[17.7801,5.76391,14.3177],[18.1508,6.33556,14.9013],[18.1508,6.33556,14.9013],[18.7009,6.26221,14.7674],[18.4819,5.84694,14.2561],[18.7009,6.26221,14.7674],[19.3949,5.70594,14.1471],[18.4819,5.84694,14.2561],[19.3949,5.70594,14.1471],[18.7632,5.38548,13.6542],[18.4819,5.84694,14.2561],[18.7632,5.38548,13.6542],[18.1607,5.36138,13.7061],[18.4819,5.84694,14.2561],[18.1607,5.36138,13.7061],[18.7632,5.38548,13.6542],[18.5071,4.91916,13.1104],[17.8863,4.83059,13.1856],[18.1607,5.36138,13.7061],[18.5071,4.91916,13.1104],[18.2087,4.36375,12.5529],[17.8863,4.83059,13.1856],[18.5071,4.91916,13.1104],[18.2087,4.36375,12.5529],[18.5071,4.91916,13.1104],[18.8068,4.47534,12.5496],[18.6677,3.89552,11.9346],[18.2087,4.36375,12.5529],[18.8068,4.47534,12.5496],[18.6677,3.89552,11.9346],[18.8068,4.47534,12.5496],[19.3646,4.12755,12.1623],[19.3646,4.12755,12.1623],[19.2985,3.31997,11.2768],[18.6677,3.89552,11.9346],[19.2985,3.31997,11.2768],[18.4399,3.19057,11.2373],[18.6677,3.89552,11.9346],[17.8733,3.64258,11.9333],[18.6677,3.89552,11.9346],[18.4399,3.19057,11.2373],[17.8733,3.64258,11.9333],[18.4399,3.19057,11.2373],[17.8286,2.9928,11.2651],[17.3124,3.00417,11.6424],[17.8733,3.64258,11.9333],[17.8286,2.9928,11.2651],[17.3124,3.00417,11.6424],[17.8286,2.9928,11.2651],[17.4574,2.42878,10.961],[16.8664,2.31774,11.4029],[17.3124,3.00417,11.6424],[17.4574,2.42878,10.961],[16.8664,2.31774,11.4029],[17.4574,2.42878,10.961],[17.0342,1.73755,10.682],[16.3971,1.49837,11.1975],[16.8664,2.31774,11.4029],[17.0342,1.73755,10.682],[16.3971,1.49837,11.1975],[17.0342,1.73755,10.682],[16.652,1.04722,10.4355],[16.652,1.04722,10.4355],[16.1589,0.634372,10.7031],[16.3971,1.49837,11.1975],[16.1589,0.634372,10.7031],[15.8476,0.857308,11.4553],[16.3971,1.49837,11.1975],[15.8476,0.857308,11.4553],[16.0009,1.5608,11.8571],[16.3971,1.49837,11.1975],[16.345,2.19362,11.9351],[16.3971,1.49837,11.1975],[16.0009,1.5608,11.8571],[16.345,2.19362,11.9351],[16.0009,1.5608,11.8571],[15.9009,1.98288,12.5049],[16.2572,2.75061,12.6362],[16.345,2.19362,11.9351],[15.9009,1.98288,12.5049],[15.9009,1.98288,12.5049],[15.8163,2.50255,13.337],[16.2572,2.75061,12.6362],[15.8163,2.50255,13.337],[16.2072,3.21717,13.1925],[16.2572,2.75061,12.6362],[16.6272,3.46466,12.7765],[16.2572,2.75061,12.6362],[16.2072,3.21717,13.1925],[16.5293,3.97184,13.3925],[16.6272,3.46466,12.7765],[16.2072,3.21717,13.1925],[16.2448,4.25899,14.2185],[16.5293,3.97184,13.3925],[16.2072,3.21717,13.1925],[16.2448,4.25899,14.2185],[16.2072,3.21717,13.1925],[15.9194,3.26919,13.9299],[15.9194,3.26919,13.9299],[15.8511,3.52864,14.712],[16.2448,4.25899,14.2185],[15.8511,3.52864,14.712],[16.127,4.68379,14.8902],[16.2448,4.25899,14.2185],[16.127,4.68379,14.8902],[16.5097,5.01752,14.5172],[16.2448,4.25899,14.2185],[16.7614,4.61843,13.7743],[16.2448,4.25899,14.2185],[16.5097,5.01752,14.5172],[17.164,5.35974,14.2041],[16.7614,4.61843,13.7743],[16.5097,5.01752,14.5172],[16.5097,5.01752,14.5172],[16.9113,6.04566,15.1276],[17.164,5.35974,14.2041],[16.9113,6.04566,15.1276],[17.3218,5.93108,14.706],[17.164,5.35974,14.2041],[17.7801,5.76391,14.3177],[17.164,5.35974,14.2041],[17.3218,5.93108,14.706],[17.164,5.35974,14.2041],[17.7801,5.76391,14.3177],[17.6439,5.23501,13.7481],[17.164,5.35974,14.2041],[17.6439,5.23501,13.7481],[17.3248,4.70599,13.3606],[17.8863,4.83059,13.1856],[17.3248,4.70599,13.3606],[17.6439,5.23501,13.7481],[17.3248,4.70599,13.3606],[17.8863,4.83059,13.1856],[17.559,4.23608,12.7159],[17.3248,4.70599,13.3606],[17.559,4.23608,12.7159],[16.9693,4.12982,13.0495],[16.7614,4.61843,13.7743],[17.3248,4.70599,13.3606],[16.9693,4.12982,13.0495],[16.5293,3.97184,13.3925],[16.7614,4.61843,13.7743],[16.9693,4.12982,13.0495],[17.1647,3.59243,12.3513],[16.9693,4.12982,13.0495],[17.559,4.23608,12.7159],[17.8733,3.64258,11.9333],[17.1647,3.59243,12.3513],[17.559,4.23608,12.7159],[17.8733,3.64258,11.9333],[17.559,4.23608,12.7159],[18.2087,4.36375,12.5529],[16.9693,4.12982,13.0495],[17.1647,3.59243,12.3513],[16.6272,3.46466,12.7765],[16.7476,2.91469,12.1075],[16.6272,3.46466,12.7765],[17.1647,3.59243,12.3513],[17.1647,3.59243,12.3513],[17.3124,3.00417,11.6424],[16.7476,2.91469,12.1075],[17.7801,5.76391,14.3177],[18.1607,5.36138,13.7061],[17.6439,5.23501,13.7481],[17.3218,5.93108,14.706],[16.9113,6.04566,15.1276],[17.5429,6.38615,15.1464],[16.5097,5.01752,14.5172],[16.3094,5.26621,15.1275],[16.9113,6.04566,15.1276],[16.3094,5.26621,15.1275],[16.4689,6.84358,15.9172],[16.9113,6.04566,15.1276],[16.4689,6.84358,15.9172],[16.3094,5.26621,15.1275],[16.3578,5.70868,15.7085],[16.6785,5.37194,15.6526],[16.4689,6.84358,15.9172],[16.3578,5.70868,15.7085],[16.2661,4.95271,15.7756],[16.6785,5.37194,15.6526],[16.3578,5.70868,15.7085],[16.2661,4.95271,15.7756],[16.3578,5.70868,15.7085],[16.0789,4.81487,15.3737],[16.0789,4.81487,15.3737],[16.0744,4.46941,15.7211],[16.2661,4.95271,15.7756],[16.1162,3.72402,15.9201],[16.2661,4.95271,15.7756],[16.0744,4.46941,15.7211],[15.8845,3.43801,15.4856],[16.1162,3.72402,15.9201],[16.0744,4.46941,15.7211],[16.0259,3.17418,16.0162],[16.1162,3.72402,15.9201],[15.8845,3.43801,15.4856],[15.7811,2.47174,15.967],[16.0259,3.17418,16.0162],[15.8845,3.43801,15.4856],[15.7811,2.47174,15.967],[15.8845,3.43801,15.4856],[15.6237,2.59836,15.1025],[15.7811,2.47174,15.967],[15.6237,2.59836,15.1025],[15.4382,1.7811,15.5147],[15.7811,2.47174,15.967],[15.4382,1.7811,15.5147],[15.4985,1.36609,16.4705],[15.4985,1.36609,16.4705],[15.8531,2.0027,16.5719],[15.7811,2.47174,15.967],[15.8531,2.0027,16.5719],[16.098,2.60791,16.4206],[15.7811,2.47174,15.967],[16.098,2.60791,16.4206],[15.8531,2.0027,16.5719],[16.1466,2.07285,16.787],[16.098,2.60791,16.4206],[16.1466,2.07285,16.787],[16.4599,2.59385,16.5525],[16.4599,2.59385,16.5525],[16.305,3.09392,16.3014],[16.098,2.60791,16.4206],[16.098,2.60791,16.4206],[16.305,3.09392,16.3014],[16.0259,3.17418,16.0162],[16.4599,2.59385,16.5525],[16.739,3.338,16.1883],[16.305,3.09392,16.3014],[16.4943,4.25159,15.9904],[16.305,3.09392,16.3014],[16.739,3.338,16.1883],[16.8689,4.85268,15.6667],[16.4943,4.25159,15.9904],[16.739,3.338,16.1883],[17.1787,4.09827,15.5173],[16.8689,4.85268,15.6667],[16.739,3.338,16.1883],[16.739,3.338,16.1883],[16.9564,2.37958,16.3256],[17.1787,4.09827,15.5173],[17.4573,2.98019,15.3631],[17.1787,4.09827,15.5173],[16.9564,2.37958,16.3256],[16.9564,2.37958,16.3256],[17.3123,1.81571,15.8297],[17.4573,2.98019,15.3631],[17.4573,2.98019,15.3631],[17.3123,1.81571,15.8297],[17.6672,2.01194,14.8736],[17.7933,3.16659,14.4383],[17.4573,2.98019,15.3631],[17.6672,2.01194,14.8736],[17.7933,3.16659,14.4383],[17.6672,2.01194,14.8736],[17.9928,2.26448,13.7368],[18.0425,3.4562,13.4985],[17.7933,3.16659,14.4383],[17.9928,2.26448,13.7368],[18.2371,2.90251,12.7494],[18.0425,3.4562,13.4985],[17.9928,2.26448,13.7368],[18.2214,1.94247,12.7],[18.2371,2.90251,12.7494],[17.9928,2.26448,13.7368],[17.9928,2.26448,13.7368],[17.986,1.16825,13.3408],[18.2214,1.94247,12.7],[17.986,1.16825,13.3408],[18.1889,1.17345,12.485],[18.2214,1.94247,12.7],[18.2214,1.94247,12.7],[18.1889,1.17345,12.485],[18.3895,1.67517,11.7894],[18.4163,2.53045,11.9203],[18.2214,1.94247,12.7],[18.3895,1.67517,11.7894],[18.4163,2.53045,11.9203],[18.3895,1.67517,11.7894],[18.6153,2.33259,10.8436],[18.6153,2.33259,10.8436],[18.5373,3.07489,11.3576],[18.4163,2.53045,11.9203],[18.4163,2.53045,11.9203],[18.5373,3.07489,11.3576],[18.4008,3.27377,11.9918],[18.4163,2.53045,11.9203],[18.4008,3.27377,11.9918],[18.2371,2.90251,12.7494],[18.2448,3.96053,12.48],[18.2371,2.90251,12.7494],[18.4008,3.27377,11.9918],[18.4957,3.89764,11.386],[18.2448,3.96053,12.48],[18.4008,3.27377,11.9918],[18.2448,3.96053,12.48],[18.4957,3.89764,11.386],[18.3264,4.78087,11.7013],[18.0974,5.00714,12.5551],[18.2448,3.96053,12.48],[18.3264,4.78087,11.7013],[18.0974,5.00714,12.5551],[18.3264,4.78087,11.7013],[18.1538,5.56836,11.8377],[18.0974,5.00714,12.5551],[18.1538,5.56836,11.8377],[17.9135,5.93358,12.5147],[18.0974,5.00714,12.5551],[17.9135,5.93358,12.5147],[17.8479,5.34801,13.3059],[17.9879,4.43899,13.348],[18.0974,5.00714,12.5551],[17.8479,5.34801,13.3059],[17.9879,4.43899,13.348],[17.8479,5.34801,13.3059],[17.7273,4.85329,14.0268],[17.8449,4.03095,14.0596],[17.9879,4.43899,13.348],[17.7273,4.85329,14.0268],[17.5254,4.2533,14.8074],[17.8449,4.03095,14.0596],[17.7273,4.85329,14.0268],[17.4168,5.41883,14.5352],[17.5254,4.2533,14.8074],[17.7273,4.85329,14.0268],[17.7273,4.85329,14.0268],[17.6174,5.62912,13.89],[17.4168,5.41883,14.5352],[17.4168,5.41883,14.5352],[17.6174,5.62912,13.89],[17.3611,6.31088,14.1136],[17.3611,6.31088,14.1136],[17.0809,6.20465,14.8629],[17.4168,5.41883,14.5352],[17.077,5.27798,15.2562],[17.4168,5.41883,14.5352],[17.0809,6.20465,14.8629],[17.0809,6.20465,14.8629],[16.825,6.05102,15.4086],[17.077,5.27798,15.2562],[16.825,6.05102,15.4086],[16.6785,5.37194,15.6526],[17.077,5.27798,15.2562],[16.8689,4.85268,15.6667],[17.077,5.27798,15.2562],[16.6785,5.37194,15.6526],[16.782,6.93116,15.1413],[16.825,6.05102,15.4086],[17.0809,6.20465,14.8629],[17.0809,6.20465,14.8629],[16.9914,7.22214,14.4444],[16.782,6.93116,15.1413],[16.9914,7.22214,14.4444],[16.6193,7.72649,15.0923],[16.782,6.93116,15.1413],[16.4077,7.49201,15.6993],[16.782,6.93116,15.1413],[16.6193,7.72649,15.0923],[16.4077,7.49201,15.6993],[16.6193,7.72649,15.0923],[16.3402,8.0722,15.6041],[16.1914,7.9313,16.1256],[16.4077,7.49201,15.6993],[16.3402,8.0722,15.6041],[16.6193,7.72649,15.0923],[16.4001,8.59391,15.0815],[16.3402,8.0722,15.6041],[16.4001,8.59391,15.0815],[16.1036,8.72259,15.9935],[16.3402,8.0722,15.6041],[16.4001,8.59391,15.0815],[16.6193,7.72649,15.0923],[16.7326,8.07205,14.5434],[16.7326,8.07205,14.5434],[16.6193,7.72649,15.0923],[16.9914,7.22214,14.4444],[16.782,6.93116,15.1413],[16.4077,7.49201,15.6993],[16.825,6.05102,15.4086],[16.4689,6.84358,15.9172],[16.825,6.05102,15.4086],[16.4077,7.49201,15.6993],[17.0809,6.20465,14.8629],[17.3611,6.31088,14.1136],[16.9914,7.22214,14.4444],[16.9914,7.22214,14.4444],[17.3611,6.31088,14.1136],[17.31,7.18743,13.4401],[16.927,8.12582,13.7672],[16.9914,7.22214,14.4444],[17.31,7.18743,13.4401],[16.927,8.12582,13.7672],[17.31,7.18743,13.4401],[17.1562,8.35386,12.3345],[17.1562,8.35386,12.3345],[17.31,7.18743,13.4401],[17.6284,6.85926,12.6119],[17.1562,8.35386,12.3345],[17.6284,6.85926,12.6119],[17.9717,6.55882,11.3447],[17.5755,8.30064,10.0449],[17.1562,8.35386,12.3345],[17.9717,6.55882,11.3447],[17.5755,8.30064,10.0449],[17.9717,6.55882,11.3447],[18.3463,6.31078,9.43717],[18.0569,7.79426,7.94207],[17.5755,8.30064,10.0449],[18.3463,6.31078,9.43717],[18.3463,6.31078,9.43717],[18.679,6.1257,6.97576],[18.0569,7.79426,7.94207],[18.2994,7.59095,6.1354],[18.0569,7.79426,7.94207],[18.679,6.1257,6.97576],[18.679,6.1257,6.97576],[18.6724,6.60112,4.89293],[18.2994,7.59095,6.1354],[18.2994,7.59095,6.1354],[18.6724,6.60112,4.89293],[18.1017,8.24369,4.35265],[18.2994,7.59095,6.1354],[18.1017,8.24369,4.35265],[17.6952,8.98524,6.46134],[17.6952,8.98524,6.46134],[18.1017,8.24369,4.35265],[17.2178,10.0838,4.04756],[17.6952,8.98524,6.46134],[17.2178,10.0838,4.04756],[17.0281,10.3922,6.04559],[17.6952,8.98524,6.46134],[17.0281,10.3922,6.04559],[16.6629,10.7825,7.69171],[17.4226,9.2221,8.37128],[17.6952,8.98524,6.46134],[16.6629,10.7825,7.69171],[16.8325,10.1094,9.58403],[17.4226,9.2221,8.37128],[16.6629,10.7825,7.69171],[16.8325,10.1094,9.58403],[16.6629,10.7825,7.69171],[15.9181,11.7143,9.28496],[16.8325,10.1094,9.58403],[15.9181,11.7143,9.28496],[16.1973,10.9382,10.9377],[16.1973,10.9382,10.9377],[16.8943,9.56553,11.0584],[16.8325,10.1094,9.58403],[17.5755,8.30064,10.0449],[16.8325,10.1094,9.58403],[16.8943,9.56553,11.0584],[16.8943,9.56553,11.0584],[16.1973,10.9382,10.9377],[16.4594,10.0225,12.3049],[16.4594,10.0225,12.3049],[17.1562,8.35386,12.3345],[16.8943,9.56553,11.0584],[16.5982,9.21451,13.483],[17.1562,8.35386,12.3345],[16.4594,10.0225,12.3049],[16.0117,10.4784,13.5771],[16.5982,9.21451,13.483],[16.4594,10.0225,12.3049],[16.0117,10.4784,13.5771],[16.4594,10.0225,12.3049],[15.6425,11.4911,12.4211],[16.4594,10.0225,12.3049],[16.1973,10.9382,10.9377],[15.6425,11.4911,12.4211],[16.1973,10.9382,10.9377],[15.1644,12.509,10.9102],[15.6425,11.4911,12.4211],[15.1644,12.509,10.9102],[14.5643,12.9983,12.7428],[15.6425,11.4911,12.4211],[15.2361,11.7616,14.025],[15.6425,11.4911,12.4211],[14.5643,12.9983,12.7428],[15.2361,11.7616,14.025],[14.5643,12.9983,12.7428],[14.2583,13.1462,14.3928],[14.2583,13.1462,14.3928],[14.5643,12.9983,12.7428],[13.2449,14.4441,13.6479],[14.2583,13.1462,14.3928],[13.2449,14.4441,13.6479],[13.6253,13.7994,15.3534],[14.2583,13.1462,14.3928],[13.6253,13.7994,15.3534],[14.4893,12.4955,16.1036],[14.4893,12.4955,16.1036],[13.6253,13.7994,15.3534],[13.4164,13.8204,16.9211],[14.4893,12.4955,16.1036],[13.4164,13.8204,16.9211],[14.0994,12.8748,17.861],[14.0994,12.8748,17.861],[14.829,11.7233,17.503],[14.4893,12.4955,16.1036],[14.0994,12.8748,17.861],[14.584,12.1196,18.7815],[14.829,11.7233,17.503],[14.829,11.7233,17.503],[14.584,12.1196,18.7815],[15.0649,11.2597,18.3665],[15.4044,10.5159,17.4607],[14.829,11.7233,17.503],[15.0649,11.2597,18.3665],[15.0649,11.2597,18.3665],[15.484,10.5766,18.6622],[15.4044,10.5159,17.4607],[15.4044,10.5159,17.4607],[15.484,10.5766,18.6622],[15.8284,9.68409,17.9482],[15.4044,10.5159,17.4607],[15.8284,9.68409,17.9482],[15.8254,9.3693,16.869],[15.8284,9.68409,17.9482],[16.1032,8.81373,17.4132],[15.8254,9.3693,16.869],[15.8284,9.68409,17.9482],[16.4099,9.14261,18.1951],[16.1032,8.81373,17.4132],[16.4099,9.14261,18.1951],[16.6649,8.44851,17.5375],[16.1032,8.81373,17.4132],[16.2695,8.16404,17.0434],[16.1032,8.81373,17.4132],[16.6649,8.44851,17.5375],[16.6697,7.72365,16.8077],[16.2695,8.16404,17.0434],[16.6649,8.44851,17.5375],[16.2695,8.16404,17.0434],[16.6697,7.72365,16.8077],[16.227,7.74859,16.5613],[16.1032,8.81373,17.4132],[16.2695,8.16404,17.0434],[16.0565,8.40755,16.6889],[16.6649,8.44851,17.5375],[16.4099,9.14261,18.1951],[17.2788,8.69729,18.0566],[16.6649,8.44851,17.5375],[17.2788,8.69729,18.0566],[17.4816,7.94894,17.1305],[17.4816,7.94894,17.1305],[17.2788,8.69729,18.0566],[18.3091,8.36097,17.8913],[18.4593,7.72702,16.9494],[17.4816,7.94894,17.1305],[18.3091,8.36097,17.8913],[18.4593,7.72702,16.9494],[18.3091,8.36097,17.8913],[19.8002,8.11442,18.1444],[19.8002,8.11442,18.1444],[19.1755,6.82958,15.6725],[18.4593,7.72702,16.9494],[18.4593,7.72702,16.9494],[19.1755,6.82958,15.6725],[18.4012,7.12211,15.9541],[17.8107,7.32847,16.2844],[18.4593,7.72702,16.9494],[18.4012,7.12211,15.9541],[18.4831,6.71382,15.3638],[18.4012,7.12211,15.9541],[19.1755,6.82958,15.6725],[19.1755,6.82958,15.6725],[18.7009,6.26221,14.7674],[18.4831,6.71382,15.3638],[18.4012,7.12211,15.9541],[18.4831,6.71382,15.3638],[17.9587,6.824,15.5656],[19.8002,8.11442,18.1444],[20.6279,6.90369,16.4932],[19.1755,6.82958,15.6725],[20.1983,6.52328,15.574],[19.1755,6.82958,15.6725],[20.6279,6.90369,16.4932],[20.1983,6.52328,15.574],[20.6279,6.90369,16.4932],[20.8938,6.01387,15.2662],[20.0825,6.11684,14.9157],[20.1983,6.52328,15.574],[20.8938,6.01387,15.2662],[20.3564,5.64254,14.3593],[20.0825,6.11684,14.9157],[20.8938,6.01387,15.2662],[20.3564,5.64254,14.3593],[20.8938,6.01387,15.2662],[20.9658,5.42012,14.3974],[20.709,5.15812,13.862],[20.3564,5.64254,14.3593],[20.9658,5.42012,14.3974],[20.709,5.15812,13.862],[20.9658,5.42012,14.3974],[21.3974,4.74894,13.8434],[20.709,5.15812,13.862],[21.3974,4.74894,13.8434],[20.7478,4.65133,13.2372],[20.1039,5.15921,13.6013],[20.709,5.15812,13.862],[20.7478,4.65133,13.2372],[20.1039,5.15921,13.6013],[20.7478,4.65133,13.2372],[20.1219,4.25563,12.4784],[20.1039,5.15921,13.6013],[20.1219,4.25563,12.4784],[19.2817,4.89519,13.0828],[20.1039,5.15921,13.6013],[19.2817,4.89519,13.0828],[19.3949,5.70594,14.1471],[20.3564,5.64254,14.3593],[20.1039,5.15921,13.6013],[19.3949,5.70594,14.1471],[19.2817,4.89519,13.0828],[20.1219,4.25563,12.4784],[19.3646,4.12755,12.1623],[19.896,3.73507,11.7882],[19.3646,4.12755,12.1623],[20.1219,4.25563,12.4784],[20.4628,3.59868,11.8405],[19.896,3.73507,11.7882],[20.1219,4.25563,12.4784],[20.4628,3.59868,11.8405],[20.1219,4.25563,12.4784],[20.9048,3.86392,12.3738],[21.1488,2.77252,11.3571],[20.4628,3.59868,11.8405],[20.9048,3.86392,12.3738],[21.1488,2.77252,11.3571],[20.9048,3.86392,12.3738],[21.5854,3.49753,12.4529],[22.0414,2.71226,12.0452],[21.1488,2.77252,11.3571],[21.5854,3.49753,12.4529],[21.5854,3.49753,12.4529],[22.2878,3.26164,12.973],[22.0414,2.71226,12.0452],[22.0414,2.71226,12.0452],[22.2878,3.26164,12.973],[22.6938,2.40602,12.5474],[22.455,1.97678,11.7276],[22.0414,2.71226,12.0452],[22.6938,2.40602,12.5474],[22.9393,1.67446,12.1644],[22.455,1.97678,11.7276],[22.6938,2.40602,12.5474],[22.9393,1.67446,12.1644],[22.6938,2.40602,12.5474],[23.2549,1.91682,12.9979],[23.2549,1.91682,12.9979],[23.4468,0.846043,12.3668],[22.9393,1.67446,12.1644],[22.7491,1.10869,11.3104],[22.9393,1.67446,12.1644],[23.4468,0.846043,12.3668],[23.4468,0.846043,12.3668],[23.2019,0.0297008,11.0682],[22.7491,1.10869,11.3104],[22.7491,1.10869,11.3104],[23.2019,0.0297008,11.0682],[22.7086,0.297743,10.4532],[22.1494,1.12718,10.5121],[22.7491,1.10869,11.3104],[22.7086,0.297743,10.4532],[22.3791,-0.141675,9.59034],[22.1494,1.12718,10.5121],[22.7086,0.297743,10.4532],[22.9458,-0.775513,9.91885],[22.3791,-0.141675,9.59034],[22.7086,0.297743,10.4532],[22.3877,-0.651995,9.14201],[22.3791,-0.141675,9.59034],[22.9458,-0.775513,9.91885],[22.3877,-0.651995,9.14201],[22.9458,-0.775513,9.91885],[22.6615,-2.00572,8.46087],[22.0766,-1.09454,8.40548],[22.3877,-0.651995,9.14201],[22.6615,-2.00572,8.46087],[22.0766,-1.09454,8.40548],[22.6615,-2.00572,8.46087],[22.0676,-2.39264,7.42478],[21.2986,-0.622961,8.16099],[22.0766,-1.09454,8.40548],[22.0676,-2.39264,7.42478],[20.8106,-2.72012,6.20281],[21.2986,-0.622961,8.16099],[22.0676,-2.39264,7.42478],[22.0676,-2.39264,7.42478],[22.0336,-4.0168,6.25406],[20.8106,-2.72012,6.20281],[22.0336,-4.0168,6.25406],[20.951,-4.17641,5.11784],[20.8106,-2.72012,6.20281],[19.8246,-3.24266,5.25542],[20.8106,-2.72012,6.20281],[20.951,-4.17641,5.11784],[20.012,-4.84165,4.14319],[19.8246,-3.24266,5.25542],[20.951,-4.17641,5.11784],[20.012,-4.84165,4.14319],[20.951,-4.17641,5.11784],[20.9382,-5.59046,4.25091],[20.9382,-5.59046,4.25091],[19.9557,-6.2256,3.47611],[20.012,-4.84165,4.14319],[20.012,-4.84165,4.14319],[19.9557,-6.2256,3.47611],[18.953,-5.35742,3.57851],[19.1092,-4.11986,4.36584],[20.012,-4.84165,4.14319],[18.953,-5.35742,3.57851],[18.0185,-4.61639,4.13353],[19.1092,-4.11986,4.36584],[18.953,-5.35742,3.57851],[18.0185,-4.61639,4.13353],[18.953,-5.35742,3.57851],[17.7361,-5.96585,3.29892],[16.782,-5.28768,4.1334],[18.0185,-4.61639,4.13353],[17.7361,-5.96585,3.29892],[17.7361,-5.96585,3.29892],[16.4548,-6.81317,3.19993],[16.782,-5.28768,4.1334],[16.4548,-6.81317,3.19993],[15.4733,-6.31285,4.13781],[16.782,-5.28768,4.1334],[16.782,-5.28768,4.1334],[15.4733,-6.31285,4.13781],[15.8764,-4.89801,5.27874],[15.8764,-4.89801,5.27874],[17.2327,-3.59988,5.38977],[16.782,-5.28768,4.1334],[17.2327,-3.59988,5.38977],[15.8764,-4.89801,5.27874],[16.2141,-3.28301,6.69804],[17.1714,-2.42125,6.52298],[17.2327,-3.59988,5.38977],[16.2141,-3.28301,6.69804],[16.2141,-3.28301,6.69804],[16.8013,-1.89974,7.39925],[17.1714,-2.42125,6.52298],[17.2373,-1.59761,7.25566],[17.1714,-2.42125,6.52298],[16.8013,-1.89974,7.39925],[16.8013,-1.89974,7.39925],[17.1168,-1.22709,7.77303],[17.2373,-1.59761,7.25566],[17.1168,-1.22709,7.77303],[17.4935,-1.14904,7.51119],[17.2373,-1.59761,7.25566],[17.4935,-1.14904,7.51119],[17.5553,-1.81474,6.79517],[17.2373,-1.59761,7.25566],[17.5553,-1.81474,6.79517],[17.4935,-1.14904,7.51119],[17.9031,-0.889994,7.50942],[18.05,-2.33552,6.11427],[17.5553,-1.81474,6.79517],[17.9031,-0.889994,7.50942],[18.473,-1.34627,6.86416],[18.05,-2.33552,6.11427],[17.9031,-0.889994,7.50942],[17.9031,-0.889994,7.50942],[18.1932,-0.393602,7.84984],[18.473,-1.34627,6.86416],[18.473,-1.34627,6.86416],[18.1932,-0.393602,7.84984],[18.8675,-0.07696,7.96801],[18.8675,-0.07696,7.96801],[19.3363,-2.06079,6.21774],[18.473,-1.34627,6.86416],[19.7045,0.19759,8.20128],[19.3363,-2.06079,6.21774],[18.8675,-0.07696,7.96801],[18.8675,-0.07696,7.96801],[19.119,0.648703,8.6031],[19.7045,0.19759,8.20128],[19.7045,0.19759,8.20128],[19.119,0.648703,8.6031],[19.8301,0.785919,8.74002],[20.2892,0.282435,8.36712],[19.7045,0.19759,8.20128],[19.8301,0.785919,8.74002],[20.2892,0.282435,8.36712],[19.8301,0.785919,8.74002],[20.3755,0.818122,8.90296],[20.7466,0.28039,8.56023],[20.2892,0.282435,8.36712],[20.3755,0.818122,8.90296],[20.7466,0.28039,8.56023],[20.3755,0.818122,8.90296],[20.827,1.38839,9.70169],[21.3946,0.687742,9.3764],[20.7466,0.28039,8.56023],[20.827,1.38839,9.70169],[21.3946,0.687742,9.3764],[20.827,1.38839,9.70169],[21.5336,1.22849,10.002],[21.8847,0.556272,9.66121],[21.3946,0.687742,9.3764],[21.5336,1.22849,10.002],[21.8847,0.556272,9.66121],[21.5336,1.22849,10.002],[22.1494,1.12718,10.5121],[22.1494,1.12718,10.5121],[21.5336,1.22849,10.002],[21.7453,1.73164,10.6851],[22.1494,1.12718,10.5121],[21.7453,1.73164,10.6851],[22.2247,1.64356,11.0853],[21.9399,2.18664,11.3452],[22.2247,1.64356,11.0853],[21.7453,1.73164,10.6851],[21.7453,1.73164,10.6851],[21.1488,2.77252,11.3571],[21.9399,2.18664,11.3452],[21.1488,2.77252,11.3571],[21.7453,1.73164,10.6851],[21.1472,1.86892,10.3684],[21.1488,2.77252,11.3571],[21.1472,1.86892,10.3684],[20.4052,2.13071,10.2776],[20.1404,3.16886,11.2648],[21.1488,2.77252,11.3571],[20.4052,2.13071,10.2776],[20.4052,2.13071,10.2776],[19.6742,2.68247,10.6286],[20.1404,3.16886,11.2648],[19.6742,2.68247,10.6286],[19.2985,3.31997,11.2768],[20.1404,3.16886,11.2648],[19.2985,3.31997,11.2768],[19.896,3.73507,11.7882],[20.1404,3.16886,11.2648],[18.9191,2.54372,10.4767],[19.2985,3.31997,11.2768],[19.6742,2.68247,10.6286],[19.5601,2.02313,9.9349],[18.9191,2.54372,10.4767],[19.6742,2.68247,10.6286],[19.5601,2.02313,9.9349],[18.9686,1.84391,9.74547],[18.9191,2.54372,10.4767],[18.9686,1.84391,9.74547],[18.3775,1.88524,9.94315],[18.9191,2.54372,10.4767],[18.3775,1.88524,9.94315],[18.1086,2.51795,10.6667],[18.9191,2.54372,10.4767],[18.1086,2.51795,10.6667],[18.4399,3.19057,11.2373],[18.9191,2.54372,10.4767],[17.6803,1.84171,10.2525],[18.1086,2.51795,10.6667],[18.3775,1.88524,9.94315],[17.937,1.16483,9.47165],[17.6803,1.84171,10.2525],[18.3775,1.88524,9.94315],[17.937,1.16483,9.47165],[18.3775,1.88524,9.94315],[18.6638,1.23204,9.22713],[18.3036,0.412058,8.59469],[17.937,1.16483,9.47165],[18.6638,1.23204,9.22713],[18.6638,1.23204,9.22713],[19.119,0.648703,8.6031],[18.3036,0.412058,8.59469],[19.366,1.34285,9.24039],[19.119,0.648703,8.6031],[18.6638,1.23204,9.22713],[18.6638,1.23204,9.22713],[18.9686,1.84391,9.74547],[19.366,1.34285,9.24039],[17.937,1.16483,9.47165],[18.3036,0.412058,8.59469],[17.4116,0.342069,9.07011],[17.937,1.16483,9.47165],[17.4116,0.342069,9.07011],[17.2329,1.17813,9.97736],[17.2329,1.17813,9.97736],[17.4116,0.342069,9.07011],[16.8409,0.422345,9.63775],[16.8409,0.422345,9.63775],[16.652,1.04722,10.4355],[17.2329,1.17813,9.97736],[16.652,1.04722,10.4355],[16.8409,0.422345,9.63775],[16.423,0.406454,10.0968],[16.8409,0.422345,9.63775],[16.4413,-0.107692,9.59718],[16.423,0.406454,10.0968],[16.4413,-0.107692,9.59718],[16.0631,-0.0600681,10.1831],[16.423,0.406454,10.0968],[16.0631,-0.0600681,10.1831],[16.1589,0.634372,10.7031],[16.423,0.406454,10.0968],[16.0631,-0.0600681,10.1831],[15.6535,-0.0651969,10.9338],[16.1589,0.634372,10.7031],[15.7214,-0.644887,10.2262],[15.6535,-0.0651969,10.9338],[16.0631,-0.0600681,10.1831],[15.7214,-0.644887,10.2262],[16.0631,-0.0600681,10.1831],[16.0467,-0.708844,9.61282],[15.5727,-1.47268,9.77015],[15.7214,-0.644887,10.2262],[16.0467,-0.708844,9.61282],[16.0507,-1.40719,8.94903],[15.5727,-1.47268,9.77015],[16.0467,-0.708844,9.61282],[16.0467,-0.708844,9.61282],[16.4784,-0.714282,8.9877],[16.0507,-1.40719,8.94903],[16.4784,-0.714282,8.9877],[16.5513,-1.3845,8.24192],[16.0507,-1.40719,8.94903],[16.5513,-1.3845,8.24192],[16.0538,-2.02845,8.282],[16.0507,-1.40719,8.94903],[16.0538,-2.02845,8.282],[15.6247,-2.27203,8.84006],[16.0507,-1.40719,8.94903],[16.0538,-2.02845,8.282],[15.8153,-2.81935,7.83026],[15.6247,-2.27203,8.84006],[15.6247,-2.27203,8.84006],[15.8153,-2.81935,7.83026],[15.3047,-3.4148,8.21754],[15.6247,-2.27203,8.84006],[15.3047,-3.4148,8.21754],[15.2101,-3.03958,8.96129],[15.2101,-3.03958,8.96129],[15.2026,-2.47998,9.62448],[15.6247,-2.27203,8.84006],[15.5727,-1.47268,9.77015],[15.6247,-2.27203,8.84006],[15.2026,-2.47998,9.62448],[15.055,-1.93749,10.5656],[15.5727,-1.47268,9.77015],[15.2026,-2.47998,9.62448],[14.8251,-2.9254,10.2428],[15.055,-1.93749,10.5656],[15.2026,-2.47998,9.62448],[15.2026,-2.47998,9.62448],[14.9278,-3.32374,9.45008],[14.8251,-2.9254,10.2428],[14.8251,-2.9254,10.2428],[14.9278,-3.32374,9.45008],[14.6157,-3.78292,9.96849],[14.4908,-3.5049,10.8118],[14.8251,-2.9254,10.2428],[14.6157,-3.78292,9.96849],[14.4908,-3.5049,10.8118],[14.6157,-3.78292,9.96849],[14.3036,-4.37917,10.5344],[14.211,-4.13216,11.3573],[14.4908,-3.5049,10.8118],[14.3036,-4.37917,10.5344],[14.211,-4.13216,11.3573],[14.3036,-4.37917,10.5344],[14.0658,-4.90816,11.1296],[13.989,-4.78711,11.8482],[14.211,-4.13216,11.3573],[14.0658,-4.90816,11.1296],[14.0658,-4.90816,11.1296],[13.7896,-5.86628,11.5185],[13.989,-4.78711,11.8482],[13.7896,-5.86628,11.5185],[13.8641,-5.21632,12.4635],[13.989,-4.78711,11.8482],[13.8641,-5.21632,12.4635],[13.9382,-4.58825,12.5236],[13.989,-4.78711,11.8482],[14.0875,-4.00364,12.1955],[13.989,-4.78711,11.8482],[13.9382,-4.58825,12.5236],[14.0875,-4.00364,12.1955],[13.9382,-4.58825,12.5236],[13.9506,-4.08706,13.0177],[14.1521,-3.23071,12.7837],[14.0875,-4.00364,12.1955],[13.9506,-4.08706,13.0177],[13.942,-3.5545,13.7905],[14.1521,-3.23071,12.7837],[13.9506,-4.08706,13.0177],[13.942,-3.5545,13.7905],[13.9506,-4.08706,13.0177],[13.8349,-4.34983,13.7324],[13.8349,-4.34983,13.7324],[13.7828,-4.19515,14.5964],[13.942,-3.5545,13.7905],[13.942,-3.5545,13.7905],[13.7828,-4.19515,14.5964],[13.8938,-3.2079,14.8603],[13.8938,-3.2079,14.8603],[14.2138,-2.3412,13.7935],[13.942,-3.5545,13.7905],[13.8938,-3.2079,14.8603],[14.1218,-1.97719,15.6177],[14.2138,-2.3412,13.7935],[14.5209,-0.946613,14.3635],[14.2138,-2.3412,13.7935],[14.1218,-1.97719,15.6177],[14.6262,-0.44419,15.6453],[14.5209,-0.946613,14.3635],[14.1218,-1.97719,15.6177],[14.6262,-0.44419,15.6453],[14.1218,-1.97719,15.6177],[14.2474,-1.36552,16.8494],[14.2474,-1.36552,16.8494],[14.5962,-0.583114,16.8759],[14.6262,-0.44419,15.6453],[14.5962,-0.583114,16.8759],[14.9815,0.262527,16.3778],[14.6262,-0.44419,15.6453],[14.9815,0.262527,16.3778],[15.0259,0.698778,15.3653],[14.6262,-0.44419,15.6453],[15.0259,0.698778,15.3653],[14.9042,0.332195,14.5415],[14.6262,-0.44419,15.6453],[15.3013,1.57032,14.6241],[14.9042,0.332195,14.5415],[15.0259,0.698778,15.3653],[15.0259,0.698778,15.3653],[15.4382,1.7811,15.5147],[15.3013,1.57032,14.6241],[14.9042,0.332195,14.5415],[15.3013,1.57032,14.6241],[15.1973,1.01176,13.7069],[14.9272,0.0713965,13.4438],[14.9042,0.332195,14.5415],[15.1973,1.01176,13.7069],[15.1973,1.01176,13.7069],[15.2362,0.620193,12.7963],[14.9272,0.0713965,13.4438],[15.2362,0.620193,12.7963],[14.9519,-0.411756,12.521],[14.9272,0.0713965,13.4438],[14.9272,0.0713965,13.4438],[14.9519,-0.411756,12.521],[14.7193,-0.649771,13.2882],[14.5209,-0.946613,14.3635],[14.9272,0.0713965,13.4438],[14.7193,-0.649771,13.2882],[14.6052,-1.33028,12.878],[14.5209,-0.946613,14.3635],[14.7193,-0.649771,13.2882],[14.7193,-0.649771,13.2882],[14.9519,-0.411756,12.521],[14.6052,-1.33028,12.878],[14.9519,-0.411756,12.521],[14.8196,-1.29307,11.9384],[14.6052,-1.33028,12.878],[14.4939,-2.25808,12.233],[14.6052,-1.33028,12.878],[14.8196,-1.29307,11.9384],[14.4939,-2.25808,12.233],[14.8196,-1.29307,11.9384],[14.7985,-1.86884,11.4009],[14.4939,-2.25808,12.233],[14.7985,-1.86884,11.4009],[14.6603,-2.60718,11.1531],[14.4939,-2.25808,12.233],[14.6603,-2.60718,11.1531],[14.3401,-3.27139,11.7385],[14.4939,-2.25808,12.233],[14.3401,-3.27139,11.7385],[14.1521,-3.23071,12.7837],[14.2138,-2.3412,13.7935],[14.4939,-2.25808,12.233],[14.1521,-3.23071,12.7837],[14.6603,-2.60718,11.1531],[14.4908,-3.5049,10.8118],[14.3401,-3.27139,11.7385],[14.6603,-2.60718,11.1531],[14.7985,-1.86884,11.4009],[15.055,-1.93749,10.5656],[14.7985,-1.86884,11.4009],[15.0238,-1.33418,11.2002],[15.055,-1.93749,10.5656],[15.055,-1.93749,10.5656],[15.0238,-1.33418,11.2002],[15.355,-0.996329,10.6816],[15.1766,-0.628216,11.5087],[15.355,-0.996329,10.6816],[15.0238,-1.33418,11.2002],[15.0238,-1.33418,11.2002],[14.8196,-1.29307,11.9384],[15.1766,-0.628216,11.5087],[15.6535,-0.0651969,10.9338],[15.355,-0.996329,10.6816],[15.1766,-0.628216,11.5087],[15.6535,-0.0651969,10.9338],[15.1766,-0.628216,11.5087],[15.3894,0.270789,11.8918],[15.8476,0.857308,11.4553],[15.6535,-0.0651969,10.9338],[15.3894,0.270789,11.8918],[15.6229,1.16287,12.2453],[15.8476,0.857308,11.4553],[15.3894,0.270789,11.8918],[15.6229,1.16287,12.2453],[15.3894,0.270789,11.8918],[15.2362,0.620193,12.7963],[15.2362,0.620193,12.7963],[15.5127,1.55216,13.0565],[15.6229,1.16287,12.2453],[15.6229,1.16287,12.2453],[15.5127,1.55216,13.0565],[15.9009,1.98288,12.5049],[14.9519,-0.411756,12.521],[15.3894,0.270789,11.8918],[15.1766,-0.628216,11.5087],[15.0238,-1.33418,11.2002],[14.7985,-1.86884,11.4009],[14.8196,-1.29307,11.9384],[14.6052,-1.33028,12.878],[14.4939,-2.25808,12.233],[14.2138,-2.3412,13.7935],[15.1766,-0.628216,11.5087],[14.8196,-1.29307,11.9384],[14.9519,-0.411756,12.521],[15.2362,0.620193,12.7963],[15.3894,0.270789,11.8918],[14.9519,-0.411756,12.521],[15.2362,0.620193,12.7963],[15.1973,1.01176,13.7069],[15.5127,1.55216,13.0565],[15.5127,1.55216,13.0565],[15.1973,1.01176,13.7069],[15.4659,1.86812,13.796],[15.4659,1.86812,13.796],[15.8163,2.50255,13.337],[15.5127,1.55216,13.0565],[15.634,2.59472,14.2602],[15.8163,2.50255,13.337],[15.4659,1.86812,13.796],[15.634,2.59472,14.2602],[15.4659,1.86812,13.796],[15.3013,1.57032,14.6241],[15.634,2.59472,14.2602],[15.3013,1.57032,14.6241],[15.6237,2.59836,15.1025],[15.8511,3.52864,14.712],[15.634,2.59472,14.2602],[15.6237,2.59836,15.1025],[15.634,2.59472,14.2602],[15.9194,3.26919,13.9299],[15.8163,2.50255,13.337],[14.9042,0.332195,14.5415],[14.9272,0.0713965,13.4438],[14.5209,-0.946613,14.3635],[15.4659,1.86812,13.796],[15.1973,1.01176,13.7069],[15.3013,1.57032,14.6241],[15.4382,1.7811,15.5147],[15.0259,0.698778,15.3653],[14.9815,0.262527,16.3778],[14.8824,-0.308823,17.6548],[14.9815,0.262527,16.3778],[14.5962,-0.583114,16.8759],[14.4104,-1.00925,17.686],[14.8824,-0.308823,17.6548],[14.5962,-0.583114,16.8759],[14.8824,-0.308823,17.6548],[14.4104,-1.00925,17.686],[14.3709,-1.20417,18.6971],[14.3709,-1.20417,18.6971],[14.8238,-0.602008,18.4229],[14.8824,-0.308823,17.6548],[15.3096,0.030172,17.9299],[14.8824,-0.308823,17.6548],[14.8238,-0.602008,18.4229],[15.3096,0.030172,17.9299],[14.8238,-0.602008,18.4229],[14.9053,-0.780616,18.9238],[15.2653,-0.54292,18.6603],[15.3096,0.030172,17.9299],[14.9053,-0.780616,18.9238],[14.9899,-0.975617,19.1213],[15.2653,-0.54292,18.6603],[14.9053,-0.780616,18.9238],[14.9899,-0.975617,19.1213],[14.9053,-0.780616,18.9238],[14.6641,-1.01143,19.0793],[14.9899,-0.975617,19.1213],[14.6641,-1.01143,19.0793],[14.6944,-1.20199,19.3956],[15.0732,-1.36187,19.1621],[14.9899,-0.975617,19.1213],[14.6944,-1.20199,19.3956],[15.0732,-1.36187,19.1621],[14.6944,-1.20199,19.3956],[14.2984,-1.91153,20.1443],[15.0732,-1.36187,19.1621],[14.2984,-1.91153,20.1443],[14.5958,-2.2277,19.5069],[15.0732,-1.36187,19.1621],[14.5958,-2.2277,19.5069],[15.3647,-1.61189,18.5994],[15.3922,-1.05252,18.798],[15.0732,-1.36187,19.1621],[15.3647,-1.61189,18.5994],[15.3922,-1.05252,18.798],[15.3647,-1.61189,18.5994],[15.8281,-1.05062,18.2168],[15.3922,-1.05252,18.798],[15.8281,-1.05062,18.2168],[16.1251,-0.549212,17.8264],[15.3922,-1.05252,18.798],[16.1251,-0.549212,17.8264],[15.9149,0.292242,17.773],[15.2653,-0.54292,18.6603],[15.3922,-1.05252,18.798],[15.9149,0.292242,17.773],[16.5596,0.680513,17.1659],[15.9149,0.292242,17.773],[16.1251,-0.549212,17.8264],[16.5781,-0.175913,17.1013],[16.5596,0.680513,17.1659],[16.1251,-0.549212,17.8264],[16.1987,-0.997852,17.4053],[16.5781,-0.175913,17.1013],[16.1251,-0.549212,17.8264],[16.1987,-0.997852,17.4053],[16.7863,-0.527227,16.1163],[16.5781,-0.175913,17.1013],[16.5781,-0.175913,17.1013],[16.7863,-0.527227,16.1163],[16.9451,0.544383,16.4933],[16.7863,-0.527227,16.1163],[17.3735,0.663242,15.2717],[16.9451,0.544383,16.4933],[16.9451,0.544383,16.4933],[17.3735,0.663242,15.2717],[17.3123,1.81571,15.8297],[16.9451,0.544383,16.4933],[17.3123,1.81571,15.8297],[16.9288,1.51928,16.6159],[16.9451,0.544383,16.4933],[16.9288,1.51928,16.6159],[16.5596,0.680513,17.1659],[16.5596,0.680513,17.1659],[16.9288,1.51928,16.6159],[16.557,2.00693,16.7972],[16.1273,1.18323,17.2974],[16.5596,0.680513,17.1659],[16.557,2.00693,16.7972],[16.1466,2.07285,16.787],[16.1273,1.18323,17.2974],[16.557,2.00693,16.7972],[16.1273,1.18323,17.2974],[16.1466,2.07285,16.787],[15.7581,1.34098,17.026],[15.6456,0.571331,17.6268],[16.1273,1.18323,17.2974],[15.7581,1.34098,17.026],[15.3066,0.453175,17.3172],[15.6456,0.571331,17.6268],[15.7581,1.34098,17.026],[15.4985,1.36609,16.4705],[15.3066,0.453175,17.3172],[15.7581,1.34098,17.026],[14.9815,0.262527,16.3778],[15.3066,0.453175,17.3172],[15.4985,1.36609,16.4705],[15.6456,0.571331,17.6268],[15.3066,0.453175,17.3172],[15.3096,0.030172,17.9299],[15.6456,0.571331,17.6268],[15.3096,0.030172,17.9299],[15.9149,0.292242,17.773],[15.9149,0.292242,17.773],[16.1273,1.18323,17.2974],[15.6456,0.571331,17.6268],[16.9288,1.51928,16.6159],[16.9564,2.37958,16.3256],[16.557,2.00693,16.7972],[16.4599,2.59385,16.5525],[16.557,2.00693,16.7972],[16.9564,2.37958,16.3256],[17.1389,-0.53768,14.9197],[17.3735,0.663242,15.2717],[16.7863,-0.527227,16.1163],[16.5223,-1.68745,15.2211],[17.1389,-0.53768,14.9197],[16.7863,-0.527227,16.1163],[16.1075,-1.70676,16.6334],[16.5223,-1.68745,15.2211],[16.7863,-0.527227,16.1163],[15.8052,-2.47895,16.0326],[16.5223,-1.68745,15.2211],[16.1075,-1.70676,16.6334],[15.4275,-2.54789,17.0649],[15.8052,-2.47895,16.0326],[16.1075,-1.70676,16.6334],[15.4275,-2.54789,17.0649],[16.1075,-1.70676,16.6334],[15.6739,-1.87751,17.6332],[15.0659,-2.47623,18.1419],[15.4275,-2.54789,17.0649],[15.6739,-1.87751,17.6332],[15.0659,-2.47623,18.1419],[15.6739,-1.87751,17.6332],[15.3647,-1.61189,18.5994],[16.1987,-0.997852,17.4053],[15.3647,-1.61189,18.5994],[15.6739,-1.87751,17.6332],[15.0659,-2.47623,18.1419],[14.7571,-3.19329,17.4695],[15.4275,-2.54789,17.0649],[14.7571,-3.19329,17.4695],[14.9592,-3.4355,16.1905],[15.4275,-2.54789,17.0649],[14.7571,-3.19329,17.4695],[13.9524,-4.00143,17.3819],[14.9592,-3.4355,16.1905],[14.9592,-3.4355,16.1905],[13.9524,-4.00143,17.3819],[13.6768,-4.78717,15.7536],[14.9592,-3.4355,16.1905],[13.6768,-4.78717,15.7536],[14.9918,-4.00503,14.5832],[14.9592,-3.4355,16.1905],[14.9918,-4.00503,14.5832],[15.8265,-2.90555,14.8999],[15.8052,-2.47895,16.0326],[14.9592,-3.4355,16.1905],[15.8265,-2.90555,14.8999],[14.9918,-4.00503,14.5832],[15.9594,-3.35652,13.3854],[15.8265,-2.90555,14.8999],[15.8265,-2.90555,14.8999],[15.9594,-3.35652,13.3854],[16.5401,-2.31535,13.8772],[16.5223,-1.68745,15.2211],[15.8265,-2.90555,14.8999],[16.5401,-2.31535,13.8772],[17.16,-1.18822,13.81],[16.5223,-1.68745,15.2211],[16.5401,-2.31535,13.8772],[16.5401,-2.31535,13.8772],[16.9862,-1.96894,13.0143],[17.16,-1.18822,13.81],[16.9862,-1.96894,13.0143],[17.4612,-1.27984,12.4678],[17.16,-1.18822,13.81],[17.4612,-1.27984,12.4678],[17.6349,-0.515054,13.0611],[17.16,-1.18822,13.81],[17.6349,-0.515054,13.0611],[17.614,0.146437,13.9485],[17.16,-1.18822,13.81],[17.16,-1.18822,13.81],[17.614,0.146437,13.9485],[17.1389,-0.53768,14.9197],[17.9725,0.315587,12.6879],[17.614,0.146437,13.9485],[17.6349,-0.515054,13.0611],[17.8303,-0.470908,12.3042],[17.9725,0.315587,12.6879],[17.6349,-0.515054,13.0611],[18.1105,0.00621052,11.6874],[17.9725,0.315587,12.6879],[17.8303,-0.470908,12.3042],[17.8686,-0.804253,11.5466],[18.1105,0.00621052,11.6874],[17.8303,-0.470908,12.3042],[17.8686,-0.804253,11.5466],[17.8303,-0.470908,12.3042],[17.4612,-1.27984,12.4678],[17.5575,-1.605,11.4162],[17.8686,-0.804253,11.5466],[17.4612,-1.27984,12.4678],[17.5575,-1.605,11.4162],[17.4612,-1.27984,12.4678],[17.054,-2.28956,12.0037],[17.5575,-1.605,11.4162],[17.054,-2.28956,12.0037],[17.3228,-2.2207,11.0979],[17.6241,-1.81039,10.7209],[17.5575,-1.605,11.4162],[17.3228,-2.2207,11.0979],[17.6241,-1.81039,10.7209],[17.3228,-2.2207,11.0979],[17.411,-2.36076,10.3694],[17.8239,-1.68019,10.0634],[17.6241,-1.81039,10.7209],[17.411,-2.36076,10.3694],[17.411,-2.36076,10.3694],[17.6432,-2.23607,9.6201],[17.8239,-1.68019,10.0634],[17.6432,-2.23607,9.6201],[18.0181,-1.61794,9.26742],[17.8239,-1.68019,10.0634],[18.208,-0.876834,9.75998],[17.8239,-1.68019,10.0634],[18.0181,-1.61794,9.26742],[18.3078,-1.0454,8.96243],[18.208,-0.876834,9.75998],[18.0181,-1.61794,9.26742],[18.3078,-1.0454,8.96243],[18.0181,-1.61794,9.26742],[18.1649,-1.56961,8.54936],[18.4835,-0.79041,8.31129],[18.3078,-1.0454,8.96243],[18.1649,-1.56961,8.54936],[18.4835,-0.79041,8.31129],[18.1649,-1.56961,8.54936],[18.0284,-2.08996,7.57734],[18.6993,-0.504447,7.26611],[18.4835,-0.79041,8.31129],[18.0284,-2.08996,7.57734],[18.6993,-0.504447,7.26611],[18.0284,-2.08996,7.57734],[18.5365,-1.21213,6.74431],[18.8264,-0.462291,6.2634],[18.6993,-0.504447,7.26611],[18.5365,-1.21213,6.74431],[18.3801,-1.73094,5.83034],[18.8264,-0.462291,6.2634],[18.5365,-1.21213,6.74431],[18.8233,-0.680751,5.14925],[18.8264,-0.462291,6.2634],[18.3801,-1.73094,5.83034],[18.8233,-0.680751,5.14925],[18.3801,-1.73094,5.83034],[18.5363,-1.58253,4.71011],[18.8233,-0.680751,5.14925],[18.5363,-1.58253,4.71011],[18.7882,-0.926412,4.24176],[19.0911,0.42353,4.15993],[18.8233,-0.680751,5.14925],[18.7882,-0.926412,4.24176],[18.7518,-1.0897,3.28015],[19.0911,0.42353,4.15993],[18.7882,-0.926412,4.24176],[18.5117,-1.72992,3.83783],[18.7518,-1.0897,3.28015],[18.7882,-0.926412,4.24176],[18.5351,-1.73682,2.97855],[18.7518,-1.0897,3.28015],[18.5117,-1.72992,3.83783],[18.2917,-2.27902,3.31568],[18.5351,-1.73682,2.97855],[18.5117,-1.72992,3.83783],[18.2917,-2.27902,3.31568],[18.5117,-1.72992,3.83783],[17.9661,-2.7862,4.36925],[18.2917,-2.27902,3.31568],[17.9661,-2.7862,4.36925],[17.9821,-2.89232,2.69768],[18.326,-2.23902,2.6788],[18.2917,-2.27902,3.31568],[17.9821,-2.89232,2.69768],[18.326,-2.23902,2.6788],[17.9821,-2.89232,2.69768],[18.2156,-2.45475,2.02469],[18.4711,-1.90807,2.35608],[18.326,-2.23902,2.6788],[18.2156,-2.45475,2.02469],[18.4773,-1.86616,1.75655],[18.4711,-1.90807,2.35608],[18.2156,-2.45475,2.02469],[18.2736,-2.26312,1.24716],[18.4773,-1.86616,1.75655],[18.2156,-2.45475,2.02469],[17.5253,-3.53106,1.57669],[18.2736,-2.26312,1.24716],[18.2156,-2.45475,2.02469],[17.5253,-3.53106,1.57669],[18.321,-1.82431,0.3813],[18.2736,-2.26312,1.24716],[18.321,-1.82431,0.3813],[18.5061,-1.42596,0.942543],[18.2736,-2.26312,1.24716],[18.5061,-1.42596,0.942543],[18.321,-1.82431,0.3813],[18.0028,-1.09934,0.162481],[18.5061,-1.42596,0.942543],[18.0028,-1.09934,0.162481],[18.69,-0.696795,0.639773],[19.0142,0.116605,1.90318],[18.5061,-1.42596,0.942543],[18.69,-0.696795,0.639773],[19.0142,0.116605,1.90318],[18.69,-0.696795,0.639773],[18.9745,-0.108707,0.897747],[18.9745,-0.108707,0.897747],[18.816,0.421266,0.539077],[19.0142,0.116605,1.90318],[19.0754,1.46197,0.948451],[19.0142,0.116605,1.90318],[18.816,0.421266,0.539077],[19.0754,1.46197,0.948451],[18.816,0.421266,0.539077],[18.0993,1.3248,0.082305],[18.0993,1.3248,0.082305],[18.9466,2.14281,0.210792],[19.0754,1.46197,0.948451],[19.2663,2.69435,0.564674],[19.0754,1.46197,0.948451],[18.9466,2.14281,0.210792],[19.2663,2.69435,0.564674],[18.9466,2.14281,0.210792],[19.0608,3.33526,0.259138],[19.0947,3.95865,0.968499],[19.2663,2.69435,0.564674],[19.0608,3.33526,0.259138],[19.0947,3.95865,0.968499],[19.0608,3.33526,0.259138],[18.2719,3.80122,0.0366073],[18.2719,3.80122,0.0366073],[18.8733,4.69321,0.166811],[19.0947,3.95865,0.968499],[18.8464,5.63546,0.778432],[19.0947,3.95865,0.968499],[18.8733,4.69321,0.166811],[18.8464,5.63546,0.778432],[18.8733,4.69321,0.166811],[18.8467,5.43182,0.107275],[18.8464,5.63546,0.778432],[18.8467,5.43182,0.107275],[18.3185,5.66547,0.0924644],[18.4701,7.07851,2.17675],[18.8464,5.63546,0.778432],[18.3185,5.66547,0.0924644],[18.4701,7.07851,2.17675],[18.3185,5.66547,0.0924644],[18.317,6.77693,0.722172],[18.317,6.77693,0.722172],[17.5412,7.2905,0.367664],[18.4701,7.07851,2.17675],[17.7004,8.61793,1.27176],[18.4701,7.07851,2.17675],[17.5412,7.2905,0.367664],[17.7004,8.61793,1.27176],[17.5412,7.2905,0.367664],[17.0051,8.76659,0.304437],[16.791,10.5308,1.6462],[17.7004,8.61793,1.27176],[17.0051,8.76659,0.304437],[16.791,10.5308,1.6462],[17.0051,8.76659,0.304437],[16.6951,9.8549,0.38341],[16.791,10.5308,1.6462],[16.6951,9.8549,0.38341],[16.1389,10.4532,0.270671],[16.1389,10.4532,0.270671],[15.7026,11.5278,0.23087],[16.791,10.5308,1.6462],[15.6866,12.3399,0.739129],[16.791,10.5308,1.6462],[15.7026,11.5278,0.23087],[15.6866,12.3399,0.739129],[15.7026,11.5278,0.23087],[15.0753,12.5626,0.147018],[15.6866,12.3399,0.739129],[15.0753,12.5626,0.147018],[15.1029,13.2074,0.840397],[15.6866,12.3399,0.739129],[15.1029,13.2074,0.840397],[15.63,12.5987,1.91552],[15.1029,13.2074,0.840397],[14.4696,14.0689,1.86927],[15.63,12.5987,1.91552],[15.63,12.5987,1.91552],[14.4696,14.0689,1.86927],[15.142,13.2631,3.35511],[16.1071,11.9046,3.68399],[15.63,12.5987,1.91552],[15.142,13.2631,3.35511],[16.1071,11.9046,3.68399],[15.142,13.2631,3.35511],[15.169,13.1272,5.42799],[16.1071,11.9046,3.68399],[15.169,13.1272,5.42799],[16.2829,11.583,5.90365],[16.2829,11.583,5.90365],[17.2178,10.0838,4.04756],[16.1071,11.9046,3.68399],[16.1071,11.9046,3.68399],[17.2178,10.0838,4.04756],[16.791,10.5308,1.6462],[17.7767,8.95186,2.60021],[16.791,10.5308,1.6462],[17.2178,10.0838,4.04756],[15.61,12.4057,7.45196],[16.2829,11.583,5.90365],[15.169,13.1272,5.42799],[15.61,12.4057,7.45196],[15.169,13.1272,5.42799],[14.6347,13.6582,7.28736],[15.61,12.4057,7.45196],[14.6347,13.6582,7.28736],[14.7739,13.2906,9.04261],[15.9181,11.7143,9.28496],[15.61,12.4057,7.45196],[14.7739,13.2906,9.04261],[15.9181,11.7143,9.28496],[14.7739,13.2906,9.04261],[15.1644,12.509,10.9102],[13.7038,14.2756,10.9753],[15.1644,12.509,10.9102],[14.7739,13.2906,9.04261],[13.4553,14.8151,8.30995],[13.7038,14.2756,10.9753],[14.7739,13.2906,9.04261],[12.4675,15.6242,10.0616],[13.7038,14.2756,10.9753],[13.4553,14.8151,8.30995],[11.7789,16.3218,8.3975],[12.4675,15.6242,10.0616],[13.4553,14.8151,8.30995],[12.6724,15.6811,6.15779],[11.7789,16.3218,8.3975],[13.4553,14.8151,8.30995],[13.4553,14.8151,8.30995],[14.0269,14.3967,6.2511],[12.6724,15.6811,6.15779],[12.6724,15.6811,6.15779],[14.0269,14.3967,6.2511],[14.0869,14.4424,4.02519],[12.6724,15.6811,6.15779],[14.0869,14.4424,4.02519],[13.0223,15.5291,3.90708],[11.9557,16.4457,3.07896],[12.6724,15.6811,6.15779],[13.0223,15.5291,3.90708],[11.9557,16.4457,3.07896],[13.0223,15.5291,3.90708],[13.2773,15.3117,2.52892],[12.383,16.0375,1.45002],[11.9557,16.4457,3.07896],[13.2773,15.3117,2.52892],[13.2773,15.3117,2.52892],[13.4438,15.0427,1.23229],[12.383,16.0375,1.45002],[12.383,16.0375,1.45002],[13.4438,15.0427,1.23229],[12.7865,14.9109,0.289086],[12.383,16.0375,1.45002],[12.7865,14.9109,0.289086],[12.333,15.9127,0.518022],[12.333,15.9127,0.518022],[11.4658,16.3325,0.355148],[12.383,16.0375,1.45002],[10.8043,17.2653,1.68502],[12.383,16.0375,1.45002],[11.4658,16.3325,0.355148],[10.8043,17.2653,1.68502],[11.4658,16.3325,0.355148],[10.8579,17.0575,0.549307],[10.8579,17.0575,0.549307],[10.0303,16.9359,0.13429],[10.8043,17.2653,1.68502],[9.12677,18.1479,1.22851],[10.8043,17.2653,1.68502],[10.0303,16.9359,0.13429],[9.12677,18.1479,1.22851],[10.0303,16.9359,0.13429],[9.29468,17.7851,0.222417],[9.12677,18.1479,1.22851],[9.29468,17.7851,0.222417],[8.49571,17.4343,-0.0296926],[9.12677,18.1479,1.22851],[8.49571,17.4343,-0.0296926],[7.27969,18.2207,0.178827],[6.48235,19.6371,1.72216],[9.12677,18.1479,1.22851],[7.27969,18.2207,0.178827],[6.48235,19.6371,1.72216],[7.27969,18.2207,0.178827],[6.70003,19.3634,0.733091],[6.70003,19.3634,0.733091],[6.06785,19.659,0.68085],[6.48235,19.6371,1.72216],[5.395,20.0632,1.04679],[6.48235,19.6371,1.72216],[6.06785,19.659,0.68085],[5.395,20.0632,1.04679],[6.06785,19.659,0.68085],[4.92791,19.544,0.233679],[4.17581,20.5349,1.12094],[5.395,20.0632,1.04679],[4.92791,19.544,0.233679],[4.17581,20.5349,1.12094],[4.92791,19.544,0.233679],[4.27136,20.3858,0.407054],[4.17581,20.5349,1.12094],[4.27136,20.3858,0.407054],[3.59229,20.4716,0.45893],[2.30792,20.8982,0.987729],[4.17581,20.5349,1.12094],[3.59229,20.4716,0.45893],[2.30792,20.8982,0.987729],[3.59229,20.4716,0.45893],[2.88616,19.4947,0.137939],[2.30792,20.8982,0.987729],[2.88616,19.4947,0.137939],[0.990445,19.8869,0.0600543],[0.990445,19.8869,0.0600543],[1.37239,20.9683,0.445175],[2.30792,20.8982,0.987729],[1.10944,21.3746,1.09135],[2.30792,20.8982,0.987729],[1.37239,20.9683,0.445175],[1.10944,21.3746,1.09135],[1.37239,20.9683,0.445175],[0.918492,20.9865,0.344927],[-0.608347,21.6204,2.35486],[1.10944,21.3746,1.09135],[0.918492,20.9865,0.344927],[-0.608347,21.6204,2.35486],[0.918492,20.9865,0.344927],[-0.182418,20.9833,0.57219],[-0.182418,20.9833,0.57219],[-1.30028,20.9582,0.510831],[-0.608347,21.6204,2.35486],[-2.34795,21.6382,1.07228],[-0.608347,21.6204,2.35486],[-1.30028,20.9582,0.510831],[-2.34795,21.6382,1.07228],[-1.30028,20.9582,0.510831],[-2.03664,21.4611,0.354375],[-2.34795,21.6382,1.07228],[-2.03664,21.4611,0.354375],[-2.68677,21.1372,0.222377],[-3.75591,21.4808,0.818632],[-2.34795,21.6382,1.07228],[-2.68677,21.1372,0.222377],[-3.75591,21.4808,0.818632],[-2.68677,21.1372,0.222377],[-3.67531,20.6869,-0.0254397],[-3.75591,21.4808,0.818632],[-3.67531,20.6869,-0.0254397],[-5.2318,20.7905,0.19707],[-5.41441,21.6557,1.76846],[-3.75591,21.4808,0.818632],[-5.2318,20.7905,0.19707],[-5.41441,21.6557,1.76846],[-5.2318,20.7905,0.19707],[-5.5436,21.4779,0.753549],[-5.5436,21.4779,0.753549],[-6.16257,21.5088,0.753192],[-5.41441,21.6557,1.76846],[-6.73401,21.5056,1.26306],[-5.41441,21.6557,1.76846],[-6.16257,21.5088,0.753192],[-6.73401,21.5056,1.26306],[-6.16257,21.5088,0.753192],[-6.90933,21.2731,0.61906],[-7.98408,21.062,1.13199],[-6.73401,21.5056,1.26306],[-6.90933,21.2731,0.61906],[-7.98408,21.062,1.13199],[-6.90933,21.2731,0.61906],[-7.26864,20.5861,0.297973],[-7.98408,21.062,1.13199],[-7.26864,20.5861,0.297973],[-8.37942,20.2043,0.259103],[-8.37942,20.2043,0.259103],[-9.13757,20.6121,0.584601],[-7.98408,21.062,1.13199],[-10.1962,20.3856,1.19231],[-7.98408,21.062,1.13199],[-9.13757,20.6121,0.584601],[-10.1962,20.3856,1.19231],[-9.13757,20.6121,0.584601],[-9.70807,20.0025,0.310037],[-9.70807,20.0025,0.310037],[-10.7048,19.7188,0.338424],[-10.1962,20.3856,1.19231],[-11.5325,19.7915,0.977304],[-10.1962,20.3856,1.19231],[-10.7048,19.7188,0.338424],[-11.5325,19.7915,0.977304],[-10.7048,19.7188,0.338424],[-11.4616,19.6977,0.338095],[-11.5325,19.7915,0.977304],[-11.4616,19.6977,0.338095],[-11.9438,19.1308,0.421574],[-12.8563,19.0325,1.4418],[-11.5325,19.7915,0.977304],[-11.9438,19.1308,0.421574],[-12.8563,19.0325,1.4418],[-11.9438,19.1308,0.421574],[-12.5875,18.4237,0.302785],[-12.5875,18.4237,0.302785],[-13.5541,17.9805,0.257062],[-12.8563,19.0325,1.4418],[-14.1408,18.145,0.845265],[-12.8563,19.0325,1.4418],[-13.5541,17.9805,0.257062],[-14.1408,18.145,0.845265],[-13.5541,17.9805,0.257062],[-14.3464,17.4455,0.105163],[-15.2036,17.4336,0.97803],[-14.1408,18.145,0.845265],[-14.3464,17.4455,0.105163],[-15.2036,17.4336,0.97803],[-14.3464,17.4455,0.105163],[-15.1904,17.3269,0.249834],[-15.2036,17.4336,0.97803],[-15.1904,17.3269,0.249834],[-15.7394,16.7936,0.361627],[-16.5225,16.0392,0.966141],[-15.2036,17.4336,0.97803],[-15.7394,16.7936,0.361627],[-16.5225,16.0392,0.966141],[-15.7394,16.7936,0.361627],[-15.9848,15.7681,0.0944061],[-16.5225,16.0392,0.966141],[-15.9848,15.7681,0.0944061],[-16.6314,15.2123,0.216849],[-17.5327,14.8929,1.07229],[-16.5225,16.0392,0.966141],[-16.6314,15.2123,0.216849],[-17.5327,14.8929,1.07229],[-16.6314,15.2123,0.216849],[-17.3797,14.7635,0.294914],[-17.3797,14.7635,0.294914],[-17.4364,13.8591,0.112795],[-17.5327,14.8929,1.07229],[-18.3606,13.6094,0.945135],[-17.5327,14.8929,1.07229],[-17.4364,13.8591,0.112795],[-18.3606,13.6094,0.945135],[-17.4364,13.8591,0.112795],[-18.1995,13.4184,0.188962],[-18.1995,13.4184,0.188962],[-18.2262,12.5134,0.111021],[-18.3606,13.6094,0.945135],[-18.9131,12.5649,0.785897],[-18.3606,13.6094,0.945135],[-18.2262,12.5134,0.111021],[-18.9131,12.5649,0.785897],[-18.2262,12.5134,0.111021],[-19.1372,11.7788,0.370074],[-19.5507,11.0682,1.52736],[-18.9131,12.5649,0.785897],[-19.1372,11.7788,0.370074],[-19.5507,11.0682,1.52736],[-19.1372,11.7788,0.370074],[-19.4853,10.9639,0.524873],[-19.5507,11.0682,1.52736],[-19.4853,10.9639,0.524873],[-19.11,9.85245,0.195959],[-20.026,8.96959,1.2959],[-19.5507,11.0682,1.52736],[-19.11,9.85245,0.195959],[-20.026,8.96959,1.2959],[-19.11,9.85245,0.195959],[-19.7421,8.97643,0.339796],[-20.026,8.96959,1.2959],[-19.7421,8.97643,0.339796],[-19.3871,7.9291,0.10824],[-20.2821,7.28996,0.937757],[-20.026,8.96959,1.2959],[-19.3871,7.9291,0.10824],[-20.2821,7.28996,0.937757],[-19.3871,7.9291,0.10824],[-20.1409,7.39798,0.266983],[-20.1409,7.39798,0.266983],[-20.2407,6.8884,0.261184],[-20.2821,7.28996,0.937757],[-20.2869,6.52674,0.607843],[-20.2821,7.28996,0.937757],[-20.2407,6.8884,0.261184],[-20.2869,6.52674,0.607843],[-20.2407,6.8884,0.261184],[-20.1581,6.35987,0.109335],[-20.2869,6.52674,0.607843],[-20.1581,6.35987,0.109335],[-19.5347,5.72845,0.27676],[-20.2425,6.04616,2.01542],[-20.2869,6.52674,0.607843],[-19.5347,5.72845,0.27676],[-20.2425,6.04616,2.01542],[-19.5347,5.72845,0.27676],[-19.9687,4.69352,1.19076],[-19.8882,3.3473,2.31047],[-20.2425,6.04616,2.01542],[-19.9687,4.69352,1.19076],[-19.8882,3.3473,2.31047],[-19.9687,4.69352,1.19076],[-19.5651,3.84335,0.755346],[-19.8882,3.3473,2.31047],[-19.5651,3.84335,0.755346],[-19.7317,2.9087,0.86718],[-19.4559,1.62707,0.84895],[-19.8882,3.3473,2.31047],[-19.7317,2.9087,0.86718],[-19.4559,1.62707,0.84895],[-19.7317,2.9087,0.86718],[-19.5638,2.29607,0.405548],[-19.5638,2.29607,0.405548],[-18.9776,2.39222,0.0830183],[-19.4559,1.62707,0.84895],[-18.9776,2.39222,0.0830183],[-19.2265,1.26589,0.204881],[-19.4559,1.62707,0.84895],[-19.0468,0.363994,0.721695],[-19.4559,1.62707,0.84895],[-19.2265,1.26589,0.204881],[-19.0468,0.363994,0.721695],[-19.2265,1.26589,0.204881],[-19.0329,0.560245,0.171504],[-19.0468,0.363994,0.721695],[-19.0329,0.560245,0.171504],[-18.3785,0.282212,0.156855],[-18.7279,-0.579335,1.17841],[-19.0468,0.363994,0.721695],[-18.3785,0.282212,0.156855],[-18.7279,-0.579335,1.17841],[-18.3785,0.282212,0.156855],[-18.5947,-0.663999,0.462155],[-18.5947,-0.663999,0.462155],[-18.1953,-1.37012,0.564643],[-18.7279,-0.579335,1.17841],[-17.7918,-2.25116,1.42686],[-18.7279,-0.579335,1.17841],[-18.1953,-1.37012,0.564643],[-17.7918,-2.25116,1.42686],[-18.1953,-1.37012,0.564643],[-17.2624,-1.60057,0.240973],[-17.7918,-2.25116,1.42686],[-17.2624,-1.60057,0.240973],[-16.7467,-2.74229,0.304955],[-16.063,-4.67231,1.17113],[-17.7918,-2.25116,1.42686],[-16.7467,-2.74229,0.304955],[-16.063,-4.67231,1.17113],[-16.7467,-2.74229,0.304955],[-15.6968,-3.61656,-0.00345469],[-16.063,-4.67231,1.17113],[-15.6968,-3.61656,-0.00345469],[-15.7419,-4.57913,0.227851],[-16.063,-4.67231,1.17113],[-15.7419,-4.57913,0.227851],[-14.7662,-5.01662,0.160693],[-14.9652,-5.91445,1.6366],[-16.063,-4.67231,1.17113],[-14.7662,-5.01662,0.160693],[-14.9652,-5.91445,1.6366],[-14.7662,-5.01662,0.160693],[-14.682,-5.89619,0.542868],[-14.682,-5.89619,0.542868],[-13.7932,-6.30848,0.375235],[-14.9652,-5.91445,1.6366],[-13.3349,-7.21786,1.38416],[-14.9652,-5.91445,1.6366],[-13.7932,-6.30848,0.375235],[-13.3349,-7.21786,1.38416],[-13.7932,-6.30848,0.375235],[-12.4907,-6.97809,0.189942],[-13.3349,-7.21786,1.38416],[-12.4907,-6.97809,0.189942],[-12.2525,-7.91571,0.580139],[-11.3531,-8.69963,1.60915],[-13.3349,-7.21786,1.38416],[-12.2525,-7.91571,0.580139],[-11.3531,-8.69963,1.60915],[-12.2525,-7.91571,0.580139],[-11.4616,-8.50301,0.57582],[-11.4616,-8.50301,0.57582],[-10.4905,-8.37702,0.100178],[-11.3531,-8.69963,1.60915],[-9.99759,-9.43955,0.840442],[-11.3531,-8.69963,1.60915],[-10.4905,-8.37702,0.100178],[-9.99759,-9.43955,0.840442],[-10.4905,-8.37702,0.100178],[-10.2041,-9.24032,0.195971],[-9.99759,-9.43955,0.840442],[-10.2041,-9.24032,0.195971],[-9.90252,-9.38445,0.169488],[-9.99759,-9.43955,0.840442],[-9.90252,-9.38445,0.169488],[-9.07202,-9.32217,0.176716],[-8.47006,-10.0546,1.50444],[-9.99759,-9.43955,0.840442],[-9.07202,-9.32217,0.176716],[-8.47006,-10.0546,1.50444],[-9.07202,-9.32217,0.176716],[-8.3709,-9.94299,0.470964],[-8.3709,-9.94299,0.470964],[-7.40933,-9.84081,0.239266],[-8.47006,-10.0546,1.50444],[-6.95541,-10.5014,0.967295],[-8.47006,-10.0546,1.50444],[-7.40933,-9.84081,0.239266],[-6.95541,-10.5014,0.967295],[-7.40933,-9.84081,0.239266],[-6.74245,-10.388,0.236302],[-6.95541,-10.5014,0.967295],[-6.74245,-10.388,0.236302],[-5.72235,-10.1444,0.168244],[-5.39179,-10.8982,1.73614],[-6.95541,-10.5014,0.967295],[-5.72235,-10.1444,0.168244],[-5.39179,-10.8982,1.73614],[-5.72235,-10.1444,0.168244],[-5.16354,-10.8025,0.580636],[-5.16354,-10.8025,0.580636],[-4.29371,-10.641,0.364721],[-5.39179,-10.8982,1.73614],[-3.32963,-11.1241,1.28867],[-5.39179,-10.8982,1.73614],[-4.29371,-10.641,0.364721],[-3.32963,-11.1241,1.28867],[-4.29371,-10.641,0.364721],[-3.28672,-10.5487,0.154369],[-3.32963,-11.1241,1.28867],[-3.28672,-10.5487,0.154369],[-2.04727,-10.8812,0.261477],[-0.995258,-11.3373,1.22138],[-3.32963,-11.1241,1.28867],[-2.04727,-10.8812,0.261477],[-0.995258,-11.3373,1.22138],[-2.04727,-10.8812,0.261477],[-1.21633,-11.277,0.375829],[-0.995258,-11.3373,1.22138],[-1.21633,-11.277,0.375829],[-0.612903,-10.9573,0.33247],[0.484104,-11.2051,1.05427],[-0.995258,-11.3373,1.22138],[-0.612903,-10.9573,0.33247],[0.484104,-11.2051,1.05427],[-0.612903,-10.9573,0.33247],[0.349629,-10.6374,0.172029],[0.484104,-11.2051,1.05427],[0.349629,-10.6374,0.172029],[1.18844,-10.754,0.358709],[1.93265,-11.0781,1.0821],[0.484104,-11.2051,1.05427],[1.18844,-10.754,0.358709],[1.93265,-11.0781,1.0821],[1.18844,-10.754,0.358709],[1.93813,-10.5809,0.262577],[1.93265,-11.0781,1.0821],[1.93813,-10.5809,0.262577],[2.85024,-10.8206,0.51544],[3.69107,-10.9155,1.07665],[1.93265,-11.0781,1.0821],[2.85024,-10.8206,0.51544],[3.69107,-10.9155,1.07665],[2.85024,-10.8206,0.51544],[3.49898,-10.5882,0.317956],[3.49898,-10.5882,0.317956],[3.98466,-10.6087,0.136373],[3.69107,-10.9155,1.07665],[4.48546,-10.8009,0.395467],[3.69107,-10.9155,1.07665],[3.98466,-10.6087,0.136373],[4.48546,-10.8009,0.395467],[3.98466,-10.6087,0.136373],[4.40164,-10.7771,0.01369],[4.48546,-10.8009,0.395467],[4.40164,-10.7771,0.01369],[4.80864,-10.6028,0.0377498],[5.80145,-10.5205,0.45601],[4.48546,-10.8009,0.395467],[4.80864,-10.6028,0.0377498],[5.80145,-10.5205,0.45601],[4.80864,-10.6028,0.0377498],[6.12621,-9.68192,-0.080956],[5.80145,-10.5205,0.45601],[6.12621,-9.68192,-0.080956],[6.45378,-10.3351,0.068181],[7.278,-10.3763,0.778318],[5.80145,-10.5205,0.45601],[6.45378,-10.3351,0.068181],[7.278,-10.3763,0.778318],[6.45378,-10.3351,0.068181],[6.99806,-10.352,0.138727],[7.278,-10.3763,0.778318],[6.99806,-10.352,0.138727],[7.3124,-10.2021,0.137508],[7.278,-10.3763,0.778318],[7.3124,-10.2021,0.137508],[7.90876,-9.56317,0.140973],[9.47433,-9.65386,1.46218],[7.278,-10.3763,0.778318],[7.90876,-9.56317,0.140973],[9.47433,-9.65386,1.46218],[7.90876,-9.56317,0.140973],[9.19678,-9.03571,0.268233],[9.19678,-9.03571,0.268233],[10.6626,-8.70638,0.522761],[9.47433,-9.65386,1.46218],[9.47433,-9.65386,1.46218],[10.6626,-8.70638,0.522761],[10.909,-9.21814,1.59928],[10.4312,-9.46853,2.51819],[9.47433,-9.65386,1.46218],[10.909,-9.21814,1.59928],[10.4312,-9.46853,2.51819],[10.909,-9.21814,1.59928],[11.5654,-8.9427,2.71726],[10.6021,-9.27363,3.94456],[10.4312,-9.46853,2.51819],[11.5654,-8.9427,2.71726],[11.902,-8.64923,4.14858],[10.6021,-9.27363,3.94456],[11.5654,-8.9427,2.71726],[11.5654,-8.9427,2.71726],[13.1479,-7.97998,3.07938],[11.902,-8.64923,4.14858],[13.1479,-7.97998,3.07938],[12.7572,-8.07633,4.95601],[11.902,-8.64923,4.14858],[11.902,-8.64923,4.14858],[12.7572,-8.07633,4.95601],[11.2339,-8.70949,5.94763],[11.2339,-8.70949,5.94763],[12.7572,-8.07633,4.95601],[13.0683,-7.66714,6.62482],[11.9026,-7.95303,8.56237],[11.2339,-8.70949,5.94763],[13.0683,-7.66714,6.62482],[11.9026,-7.95303,8.56237],[13.0683,-7.66714,6.62482],[13.6897,-6.98183,8.28531],[11.9026,-7.95303,8.56237],[13.6897,-6.98183,8.28531],[13.2335,-6.88337,10.1449],[11.9026,-7.95303,8.56237],[13.2335,-6.88337,10.1449],[11.7838,-7.56643,10.8842],[11.7838,-7.56643,10.8842],[9.58077,-8.4713,11.1331],[11.9026,-7.95303,8.56237],[9.58077,-8.4713,11.1331],[9.29848,-9.18365,7.91425],[11.9026,-7.95303,8.56237],[9.29848,-9.18365,7.91425],[9.58077,-8.4713,11.1331],[7.11739,-9.654,9.4935],[7.08315,-10.0615,6.9503],[9.29848,-9.18365,7.91425],[7.11739,-9.654,9.4935],[7.11739,-9.654,9.4935],[5.45076,-10.3106,8.12009],[7.08315,-10.0615,6.9503],[5.30939,-10.5521,6.20103],[7.08315,-10.0615,6.9503],[5.45076,-10.3106,8.12009],[3.21296,-10.6751,7.65799],[5.30939,-10.5521,6.20103],[5.45076,-10.3106,8.12009],[5.45076,-10.3106,8.12009],[4.73697,-10.0764,10.2416],[3.21296,-10.6751,7.65799],[1.62292,-10.347,10.6675],[3.21296,-10.6751,7.65799],[4.73697,-10.0764,10.2416],[1.62292,-10.347,10.6675],[4.73697,-10.0764,10.2416],[4.46691,-9.67354,12.8488],[1.62292,-10.347,10.6675],[4.46691,-9.67354,12.8488],[2.74163,-9.35584,15.6914],[-1.3403,-9.87376,14.1915],[1.62292,-10.347,10.6675],[2.74163,-9.35584,15.6914],[-1.3403,-9.87376,14.1915],[2.74163,-9.35584,15.6914],[0.504081,-9.34589,16.8272],[-1.29642,-9.35191,17.1212],[-1.3403,-9.87376,14.1915],[0.504081,-9.34589,16.8272],[-1.29642,-9.35191,17.1212],[0.504081,-9.34589,16.8272],[0.284606,-8.98973,18.5518],[-0.95648,-8.64656,20.0451],[-1.29642,-9.35191,17.1212],[0.284606,-8.98973,18.5518],[1.09292,-8.52083,20.148],[-0.95648,-8.64656,20.0451],[0.284606,-8.98973,18.5518],[2.19117,-8.81473,18.4155],[1.09292,-8.52083,20.148],[0.284606,-8.98973,18.5518],[1.09292,-8.52083,20.148],[2.19117,-8.81473,18.4155],[2.98498,-8.22868,20.2824],[1.84468,-7.95824,22.0157],[1.09292,-8.52083,20.148],[2.98498,-8.22868,20.2824],[2.98498,-8.22868,20.2824],[3.70107,-7.6837,21.8776],[1.84468,-7.95824,22.0157],[3.70107,-7.6837,21.8776],[3.08219,-7.36762,23.5277],[1.84468,-7.95824,22.0157],[1.38195,-7.52216,23.9024],[1.84468,-7.95824,22.0157],[3.08219,-7.36762,23.5277],[1.38195,-7.52216,23.9024],[3.08219,-7.36762,23.5277],[2.53594,-6.95617,25.4488],[1.38195,-7.52216,23.9024],[2.53594,-6.95617,25.4488],[0.812597,-7.20447,25.3518],[0.812597,-7.20447,25.3518],[-0.415761,-7.56649,24.1792],[1.38195,-7.52216,23.9024],[0.392319,-7.90042,22.7905],[1.38195,-7.52216,23.9024],[-0.415761,-7.56649,24.1792],[-1.09701,-8.04102,22.4084],[0.392319,-7.90042,22.7905],[-0.415761,-7.56649,24.1792],[-1.09701,-8.04102,22.4084],[-0.415761,-7.56649,24.1792],[-1.8446,-7.69541,23.6551],[-1.09701,-8.04102,22.4084],[-1.8446,-7.69541,23.6551],[-2.77706,-7.89067,22.6268],[-1.09701,-8.04102,22.4084],[-2.77706,-7.89067,22.6268],[-2.23271,-8.33145,21.1353],[-1.09701,-8.04102,22.4084],[-2.23271,-8.33145,21.1353],[-0.95648,-8.64656,20.0451],[-1.09701,-8.04102,22.4084],[-0.95648,-8.64656,20.0451],[0.246117,-8.24909,21.4811],[-0.95648,-8.64656,20.0451],[-2.23271,-8.33145,21.1353],[-2.7719,-8.61093,19.8899],[-0.95648,-8.64656,20.0451],[-2.7719,-8.61093,19.8899],[-3.0727,-9.06635,17.9504],[-3.0727,-9.06635,17.9504],[-2.7719,-8.61093,19.8899],[-4.88128,-8.18012,20.1763],[-3.0727,-9.06635,17.9504],[-4.88128,-8.18012,20.1763],[-5.16052,-9.139,16.2222],[-3.0727,-9.06635,17.9504],[-5.16052,-9.139,16.2222],[-2.9916,-9.49588,16.1046],[-1.29642,-9.35191,17.1212],[-3.0727,-9.06635,17.9504],[-2.9916,-9.49588,16.1046],[-4.00603,-9.7036,14.5185],[-2.9916,-9.49588,16.1046],[-5.16052,-9.139,16.2222],[-5.6976,-9.55228,13.9371],[-4.00603,-9.7036,14.5185],[-5.16052,-9.139,16.2222],[-5.6976,-9.55228,13.9371],[-5.16052,-9.139,16.2222],[-7.46812,-8.9142,14.5856],[-5.6976,-9.55228,13.9371],[-7.46812,-8.9142,14.5856],[-6.97458,-9.55547,12.1518],[-4.76208,-10.0132,11.9433],[-5.6976,-9.55228,13.9371],[-6.97458,-9.55547,12.1518],[-4.76208,-10.0132,11.9433],[-6.97458,-9.55547,12.1518],[-6.4079,-10.0189,10.0596],[-5.10796,-10.5099,7.8125],[-4.76208,-10.0132,11.9433],[-6.4079,-10.0189,10.0596],[-5.10796,-10.5099,7.8125],[-6.4079,-10.0189,10.0596],[-7.22028,-10.0347,8.27352],[-6.70839,-10.33,6.76604],[-5.10796,-10.5099,7.8125],[-7.22028,-10.0347,8.27352],[-6.70839,-10.33,6.76604],[-7.22028,-10.0347,8.27352],[-8.27634,-9.87817,6.50611],[-6.70839,-10.33,6.76604],[-8.27634,-9.87817,6.50611],[-7.07161,-10.3569,5.39912],[-7.07161,-10.3569,5.39912],[-5.92124,-10.6147,5.79387],[-6.70839,-10.33,6.76604],[-6.09165,-10.7031,3.9142],[-5.92124,-10.6147,5.79387],[-7.07161,-10.3569,5.39912],[-6.09165,-10.7031,3.9142],[-7.07161,-10.3569,5.39912],[-8.38564,-10.0185,3.95039],[-7.07776,-10.5476,2.32392],[-6.09165,-10.7031,3.9142],[-8.38564,-10.0185,3.95039],[-8.47006,-10.0546,1.50444],[-7.07776,-10.5476,2.32392],[-8.38564,-10.0185,3.95039],[-8.47006,-10.0546,1.50444],[-8.38564,-10.0185,3.95039],[-10.013,-9.44685,2.45345],[-8.38564,-10.0185,3.95039],[-10.3538,-9.21482,4.20488],[-10.013,-9.44685,2.45345],[-10.013,-9.44685,2.45345],[-10.3538,-9.21482,4.20488],[-11.2705,-8.80612,3.13986],[-11.3531,-8.69963,1.60915],[-10.013,-9.44685,2.45345],[-11.2705,-8.80612,3.13986],[-12.573,-7.97018,3.10523],[-11.3531,-8.69963,1.60915],[-11.2705,-8.80612,3.13986],[-11.7749,-8.43966,4.62969],[-12.573,-7.97018,3.10523],[-11.2705,-8.80612,3.13986],[-11.7749,-8.43966,4.62969],[-13.1983,-7.46205,4.99406],[-12.573,-7.97018,3.10523],[-13.1983,-7.46205,4.99406],[-14.1229,-6.7732,3.36589],[-12.573,-7.97018,3.10523],[-12.573,-7.97018,3.10523],[-14.1229,-6.7732,3.36589],[-13.3349,-7.21786,1.38416],[-14.1229,-6.7732,3.36589],[-13.1983,-7.46205,4.99406],[-14.6296,-6.23657,5.5213],[-14.6296,-6.23657,5.5213],[-15.5548,-5.44338,3.98671],[-14.1229,-6.7732,3.36589],[-14.1229,-6.7732,3.36589],[-15.5548,-5.44338,3.98671],[-14.9652,-5.91445,1.6366],[-14.9652,-5.91445,1.6366],[-15.5548,-5.44338,3.98671],[-16.1539,-4.87348,2.52933],[-16.6846,-4.18324,3.91948],[-16.1539,-4.87348,2.52933],[-15.5548,-5.44338,3.98671],[-15.5548,-5.44338,3.98671],[-16.0662,-4.68566,6.08742],[-16.6846,-4.18324,3.91948],[-17.3137,-3.12518,5.42357],[-16.6846,-4.18324,3.91948],[-16.0662,-4.68566,6.08742],[-17.3137,-3.12518,5.42357],[-16.0662,-4.68566,6.08742],[-16.994,-3.2943,7.57535],[-17.3137,-3.12518,5.42357],[-16.994,-3.2943,7.57535],[-17.9694,-1.80416,6.89129],[-17.3137,-3.12518,5.42357],[-17.9694,-1.80416,6.89129],[-18.2087,-1.66912,4.84436],[-17.6475,-2.80019,3.3795],[-17.3137,-3.12518,5.42357],[-18.2087,-1.66912,4.84436],[-18.488,-1.27107,2.57331],[-17.6475,-2.80019,3.3795],[-18.2087,-1.66912,4.84436],[-18.7749,-0.608374,3.83855],[-18.488,-1.27107,2.57331],[-18.2087,-1.66912,4.84436],[-18.8968,0.0489633,5.90195],[-18.7749,-0.608374,3.83855],[-18.2087,-1.66912,4.84436],[-19.1652,0.414406,2.0873],[-18.7749,-0.608374,3.83855],[-18.8968,0.0489633,5.90195],[-19.1652,0.414406,2.0873],[-18.8968,0.0489633,5.90195],[-19.5659,1.79153,4.15998],[-19.5659,1.79153,4.15998],[-19.8882,3.3473,2.31047],[-19.1652,0.414406,2.0873],[-19.9138,3.16957,4.5812],[-19.8882,3.3473,2.31047],[-19.5659,1.79153,4.15998],[-19.5659,1.79153,4.15998],[-19.5928,2.08051,6.10264],[-19.9138,3.16957,4.5812],[-19.9138,3.16957,4.5812],[-19.5928,2.08051,6.10264],[-19.9784,3.96846,6.41687],[-19.9138,3.16957,4.5812],[-19.9784,3.96846,6.41687],[-20.1607,4.76767,4.17883],[-19.9784,3.96846,6.41687],[-20.1967,5.6053,5.75588],[-20.1607,4.76767,4.17883],[-20.1967,5.6053,5.75588],[-20.2752,6.63312,4.23045],[-20.1607,4.76767,4.17883],[-20.2752,6.63312,4.23045],[-20.2425,6.04616,2.01542],[-20.1607,4.76767,4.17883],[-20.2752,6.63312,4.23045],[-20.2725,7.83874,2.62131],[-20.2425,6.04616,2.01542],[-20.2725,7.83874,2.62131],[-20.2821,7.28996,0.937757],[-20.2425,6.04616,2.01542],[-20.2752,6.63312,4.23045],[-20.1032,8.58763,4.84125],[-20.2725,7.83874,2.62131],[-20.0354,9.45736,2.92702],[-20.2725,7.83874,2.62131],[-20.1032,8.58763,4.84125],[-19.6513,10.6402,4.77406],[-20.0354,9.45736,2.92702],[-20.1032,8.58763,4.84125],[-19.6513,10.6402,4.77406],[-20.1032,8.58763,4.84125],[-19.7521,9.92204,6.25695],[-19.2616,11.4711,6.36507],[-19.6513,10.6402,4.77406],[-19.7521,9.92204,6.25695],[-19.4208,10.3158,8.22789],[-19.2616,11.4711,6.36507],[-19.7521,9.92204,6.25695],[-19.9494,8.56729,7.08069],[-19.4208,10.3158,8.22789],[-19.7521,9.92204,6.25695],[-19.9494,8.56729,7.08069],[-19.7953,8.31269,9.039],[-19.4208,10.3158,8.22789],[-19.7953,8.31269,9.039],[-19.3516,9.60092,10.5757],[-19.4208,10.3158,8.22789],[-18.7036,11.7742,10.1987],[-19.4208,10.3158,8.22789],[-19.3516,9.60092,10.5757],[-18.781,10.7444,12.7197],[-18.7036,11.7742,10.1987],[-19.3516,9.60092,10.5757],[-19.3516,9.60092,10.5757],[-19.3731,8.81175,12.2088],[-18.781,10.7444,12.7197],[-19.1974,8.92042,13.8543],[-18.781,10.7444,12.7197],[-19.3731,8.81175,12.2088],[-19.6045,7.16375,12.9003],[-19.1974,8.92042,13.8543],[-19.3731,8.81175,12.2088],[-19.6045,7.16375,12.9003],[-19.3731,8.81175,12.2088],[-19.7007,7.66906,10.9433],[-19.7007,7.66906,10.9433],[-19.7994,5.6524,11.3808],[-19.6045,7.16375,12.9003],[-19.7994,5.6524,11.3808],[-19.6706,5.41495,13.5139],[-19.6045,7.16375,12.9003],[-19.6186,6.50914,14.3617],[-19.6045,7.16375,12.9003],[-19.6706,5.41495,13.5139],[-19.5403,6.00404,15.8873],[-19.6186,6.50914,14.3617],[-19.6706,5.41495,13.5139],[-19.4138,3.7402,15.1694],[-19.5403,6.00404,15.8873],[-19.6706,5.41495,13.5139],[-19.5811,3.81922,12.5919],[-19.4138,3.7402,15.1694],[-19.6706,5.41495,13.5139],[-19.0577,1.94558,13.4769],[-19.4138,3.7402,15.1694],[-19.5811,3.81922,12.5919],[-19.0577,1.94558,13.4769],[-19.5811,3.81922,12.5919],[-19.3529,2.357,11.2287],[-19.3529,2.357,11.2287],[-18.5824,0.337966,11.5425],[-19.0577,1.94558,13.4769],[-18.5824,0.337966,11.5425],[-18.2793,0.167162,14.1087],[-19.0577,1.94558,13.4769],[-18.6929,1.49609,16.0349],[-19.0577,1.94558,13.4769],[-18.2793,0.167162,14.1087],[-18.6929,1.49609,16.0349],[-18.2793,0.167162,14.1087],[-17.8744,-0.185618,15.9061],[-17.7668,0.123038,17.7404],[-18.6929,1.49609,16.0349],[-17.8744,-0.185618,15.9061],[-17.8744,-0.185618,15.9061],[-16.9027,-1.36979,16.8841],[-17.7668,0.123038,17.7404],[-17.7668,0.123038,17.7404],[-16.9027,-1.36979,16.8841],[-16.496,-1.3168,18.9029],[-17.7668,0.123038,17.7404],[-16.496,-1.3168,18.9029],[-17.6584,0.439534,20.2424],[-18.7368,1.85908,18.4458],[-17.7668,0.123038,17.7404],[-17.6584,0.439534,20.2424],[-19.272,2.35485,20.5047],[-18.7368,1.85908,18.4458],[-17.6584,0.439534,20.2424],[-18.441,1.30403,21.9005],[-19.272,2.35485,20.5047],[-17.6584,0.439534,20.2424],[-18.441,1.30403,21.9005],[-17.6584,0.439534,20.2424],[-17.0244,0.0185684,22.8812],[-17.0244,0.0185684,22.8812],[-18.749,1.25441,23.5065],[-18.441,1.30403,21.9005],[-18.749,1.25441,23.5065],[-19.7454,2.14184,22.2781],[-18.441,1.30403,21.9005],[-18.749,1.25441,23.5065],[-20.6694,1.98692,23.8104],[-19.7454,2.14184,22.2781],[-20.6694,1.98692,23.8104],[-21.0284,2.56973,22.439],[-19.7454,2.14184,22.2781],[-21.0284,2.56973,22.439],[-20.6341,2.97143,21.3538],[-19.7454,2.14184,22.2781],[-20.6341,2.97143,21.3538],[-19.272,2.35485,20.5047],[-19.7454,2.14184,22.2781],[-20.4028,3.79823,20.2258],[-19.272,2.35485,20.5047],[-20.6341,2.97143,21.3538],[-20.4028,3.79823,20.2258],[-20.6341,2.97143,21.3538],[-21.6589,3.75607,20.8017],[-20.4028,3.79823,20.2258],[-21.6589,3.75607,20.8017],[-21.3062,4.88882,20.081],[-20.4028,3.79823,20.2258],[-21.3062,4.88882,20.081],[-20.2659,4.98285,19.4878],[-19.5947,3.71171,18.854],[-20.4028,3.79823,20.2258],[-20.2659,4.98285,19.4878],[-19.7875,5.19361,18.5298],[-19.5947,3.71171,18.854],[-20.2659,4.98285,19.4878],[-20.2659,4.98285,19.4878],[-20.1074,6.40058,19.1106],[-19.7875,5.19361,18.5298],[-20.1074,6.40058,19.1106],[-19.6243,6.2679,17.6693],[-19.7875,5.19361,18.5298],[-19.5682,4.6434,17.2528],[-19.7875,5.19361,18.5298],[-19.6243,6.2679,17.6693],[-19.5682,4.6434,17.2528],[-19.6243,6.2679,17.6693],[-19.5403,6.00404,15.8873],[-19.3355,7.68943,16.7105],[-19.5403,6.00404,15.8873],[-19.6243,6.2679,17.6693],[-19.6243,6.2679,17.6693],[-19.5385,7.81998,18.3357],[-19.3355,7.68943,16.7105],[-19.5385,7.81998,18.3357],[-18.9737,9.52115,17.581],[-19.3355,7.68943,16.7105],[-18.9737,9.52115,17.581],[-19.0479,9.08125,15.6426],[-19.3355,7.68943,16.7105],[-19.3355,7.68943,16.7105],[-19.0479,9.08125,15.6426],[-19.4027,7.56376,15.0808],[-19.1974,8.92042,13.8543],[-19.4027,7.56376,15.0808],[-19.0479,9.08125,15.6426],[-19.1974,8.92042,13.8543],[-19.0479,9.08125,15.6426],[-18.8063,10.1804,14.6008],[-18.5711,10.6784,16.0656],[-18.8063,10.1804,14.6008],[-19.0479,9.08125,15.6426],[-18.8063,10.1804,14.6008],[-18.5711,10.6784,16.0656],[-18.3801,11.4504,14.768],[-18.8063,10.1804,14.6008],[-18.3801,11.4504,14.768],[-18.781,10.7444,12.7197],[-17.6942,13.2594,14.4418],[-18.781,10.7444,12.7197],[-18.3801,11.4504,14.768],[-17.9771,12.3582,16.1692],[-17.6942,13.2594,14.4418],[-18.3801,11.4504,14.768],[-17.2494,14.0234,16.2792],[-17.6942,13.2594,14.4418],[-17.9771,12.3582,16.1692],[-17.2494,14.0234,16.2792],[-17.9771,12.3582,16.1692],[-17.6361,13.1954,17.8285],[-16.6802,15.0219,18.108],[-17.2494,14.0234,16.2792],[-17.6361,13.1954,17.8285],[-17.494,13.8322,19.6377],[-16.6802,15.0219,18.108],[-17.6361,13.1954,17.8285],[-17.6361,13.1954,17.8285],[-18.137,12.3769,19.0484],[-17.494,13.8322,19.6377],[-17.494,13.8322,19.6377],[-18.137,12.3769,19.0484],[-18.5044,12.5057,20.6366],[-18.5044,12.5057,20.6366],[-17.7125,14.1358,21.3895],[-17.494,13.8322,19.6377],[-17.7125,14.1358,21.3895],[-16.4011,15.6511,20.6829],[-17.494,13.8322,19.6377],[-16.4011,15.6511,20.6829],[-17.7125,14.1358,21.3895],[-17.2721,15.1015,22.2926],[-16.4011,15.6511,20.6829],[-17.2721,15.1015,22.2926],[-16.467,16.0603,22.8305],[-15.1837,17.0072,22.1042],[-16.4011,15.6511,20.6829],[-16.467,16.0603,22.8305],[-15.5519,16.9229,23.6483],[-15.1837,17.0072,22.1042],[-16.467,16.0603,22.8305],[-16.6122,16.2942,24.4745],[-15.5519,16.9229,23.6483],[-16.467,16.0603,22.8305],[-16.467,16.0603,22.8305],[-17.7609,15.1869,23.758],[-16.6122,16.2942,24.4745],[-16.6122,16.2942,24.4745],[-17.7609,15.1869,23.758],[-17.7819,15.6979,25.2292],[-17.7819,15.6979,25.2292],[-16.8349,16.4934,26.1348],[-16.6122,16.2942,24.4745],[-16.6122,16.2942,24.4745],[-16.8349,16.4934,26.1348],[-15.3788,17.195,25.1693],[-15.3788,17.195,25.1693],[-16.8349,16.4934,26.1348],[-15.3926,17.3111,27.3695],[-13.7922,17.9689,25.7604],[-15.3788,17.195,25.1693],[-15.3926,17.3111,27.3695],[-13.2974,18.0152,28.0043],[-13.7922,17.9689,25.7604],[-15.3926,17.3111,27.3695],[-13.2974,18.0152,28.0043],[-15.3926,17.3111,27.3695],[-14.726,17.5363,29.3466],[-13.0902,17.8633,29.9309],[-13.2974,18.0152,28.0043],[-14.726,17.5363,29.3466],[-13.0902,17.8633,29.9309],[-14.726,17.5363,29.3466],[-14.5029,17.3912,31.1439],[-13.0902,17.8633,29.9309],[-14.5029,17.3912,31.1439],[-12.806,17.612,31.5471],[-12.806,17.612,31.5471],[-11.4384,17.962,30.5535],[-13.0902,17.8633,29.9309],[-11.7397,18.2281,28.9512],[-13.0902,17.8633,29.9309],[-11.4384,17.962,30.5535],[-9.80658,18.2607,29.5854],[-11.7397,18.2281,28.9512],[-11.4384,17.962,30.5535],[-9.88712,17.8394,31.1871],[-9.80658,18.2607,29.5854],[-11.4384,17.962,30.5535],[-9.88712,17.8394,31.1871],[-11.4384,17.962,30.5535],[-11.2942,17.5694,32.103],[-9.88712,17.8394,31.1871],[-11.2942,17.5694,32.103],[-9.70063,17.3037,32.7654],[-9.88712,17.8394,31.1871],[-9.70063,17.3037,32.7654],[-8.69219,17.6333,31.6508],[-8.69219,17.6333,31.6508],[-8.44056,18.0016,30.4185],[-9.88712,17.8394,31.1871],[-8.44056,18.0016,30.4185],[-8.69219,17.6333,31.6508],[-7.36066,17.5755,31.3476],[-7.36066,17.5755,31.3476],[-6.73974,18.0935,29.5954],[-8.44056,18.0016,30.4185],[-6.73974,18.0935,29.5954],[-8.31523,18.3798,29.1362],[-8.44056,18.0016,30.4185],[-8.44056,18.0016,30.4185],[-8.31523,18.3798,29.1362],[-9.80658,18.2607,29.5854],[-9.80658,18.2607,29.5854],[-8.31523,18.3798,29.1362],[-8.97892,18.5794,28.4032],[-8.97892,18.5794,28.4032],[-10.1954,18.7543,27.076],[-9.80658,18.2607,29.5854],[-10.1954,18.7543,27.076],[-8.97892,18.5794,28.4032],[-7.67124,18.7388,27.6568],[-10.1954,18.7543,27.076],[-7.67124,18.7388,27.6568],[-8.74086,19.2066,25.6957],[-8.74086,19.2066,25.6957],[-10.315,19.0803,25.3335],[-10.1954,18.7543,27.076],[-11.8021,18.6339,25.9074],[-10.1954,18.7543,27.076],[-10.315,19.0803,25.3335],[-11.8021,18.6339,25.9074],[-10.315,19.0803,25.3335],[-11.3095,19.0194,24.075],[-11.8021,18.6339,25.9074],[-11.3095,19.0194,24.075],[-12.7245,18.4775,24.4486],[-11.8021,18.6339,25.9074],[-12.7245,18.4775,24.4486],[-13.7922,17.9689,25.7604],[-14.1345,17.8206,23.6413],[-13.7922,17.9689,25.7604],[-12.7245,18.4775,24.4486],[-12.5235,18.6894,22.7754],[-14.1345,17.8206,23.6413],[-12.7245,18.4775,24.4486],[-12.5235,18.6894,22.7754],[-13.7297,18.0893,21.5375],[-14.1345,17.8206,23.6413],[-15.1837,17.0072,22.1042],[-14.1345,17.8206,23.6413],[-13.7297,18.0893,21.5375],[-14.8034,17.2719,20.2019],[-15.1837,17.0072,22.1042],[-13.7297,18.0893,21.5375],[-14.8034,17.2719,20.2019],[-13.7297,18.0893,21.5375],[-13.4226,18.4057,19.6235],[-13.4226,18.4057,19.6235],[-14.4116,17.7171,18.4103],[-14.8034,17.2719,20.2019],[-14.8034,17.2719,20.2019],[-14.4116,17.7171,18.4103],[-15.5724,16.5265,18.7084],[-14.8034,17.2719,20.2019],[-15.5724,16.5265,18.7084],[-16.4011,15.6511,20.6829],[-15.5724,16.5265,18.7084],[-16.6802,15.0219,18.108],[-16.4011,15.6511,20.6829],[-15.877,16.2195,17.2773],[-16.6802,15.0219,18.108],[-15.5724,16.5265,18.7084],[-15.877,16.2195,17.2773],[-15.5724,16.5265,18.7084],[-15.1318,17.0933,17.3933],[-15.877,16.2195,17.2773],[-15.1318,17.0933,17.3933],[-15.4633,16.81,15.8516],[-15.4633,16.81,15.8516],[-16.4444,15.4688,16.1922],[-15.877,16.2195,17.2773],[-15.4633,16.81,15.8516],[-16.2845,15.8737,14.5486],[-16.4444,15.4688,16.1922],[-16.9664,14.7079,14.9627],[-16.4444,15.4688,16.1922],[-16.2845,15.8737,14.5486],[-16.2845,15.8737,14.5486],[-17.0252,14.799,13.3468],[-16.9664,14.7079,14.9627],[-17.0252,14.799,13.3468],[-17.6942,13.2594,14.4418],[-16.9664,14.7079,14.9627],[-17.0252,14.799,13.3468],[-17.8754,13.3229,11.9643],[-17.6942,13.2594,14.4418],[-17.0252,14.799,13.3468],[-16.9998,15.1631,11.4047],[-17.8754,13.3229,11.9643],[-17.8754,13.3229,11.9643],[-16.9998,15.1631,11.4047],[-17.7803,14.0576,9.60492],[-18.7036,11.7742,10.1987],[-17.8754,13.3229,11.9643],[-17.7803,14.0576,9.60492],[-18.6645,12.5298,7.99499],[-18.7036,11.7742,10.1987],[-17.7803,14.0576,9.60492],[-17.889,14.2626,7.41314],[-18.6645,12.5298,7.99499],[-17.7803,14.0576,9.60492],[-17.889,14.2626,7.41314],[-17.7803,14.0576,9.60492],[-17.2363,15.267,8.38688],[-17.889,14.2626,7.41314],[-17.2363,15.267,8.38688],[-17.0403,15.6549,6.79753],[-17.0403,15.6549,6.79753],[-17.7699,14.6374,5.42608],[-17.889,14.2626,7.41314],[-17.7699,14.6374,5.42608],[-18.5836,13.1317,6.01131],[-17.889,14.2626,7.41314],[-18.5836,13.1317,6.01131],[-17.7699,14.6374,5.42608],[-18.5178,13.4839,3.936],[-19.1008,12.192,4.88041],[-18.5836,13.1317,6.01131],[-18.5178,13.4839,3.936],[-19.2178,12.0704,3.37626],[-19.1008,12.192,4.88041],[-18.5178,13.4839,3.936],[-18.8644,12.8876,2.03894],[-19.2178,12.0704,3.37626],[-18.5178,13.4839,3.936],[-18.0819,14.2753,2.28427],[-18.8644,12.8876,2.03894],[-18.5178,13.4839,3.936],[-17.6775,14.8728,3.71499],[-18.0819,14.2753,2.28427],[-18.5178,13.4839,3.936],[-18.0819,14.2753,2.28427],[-17.6775,14.8728,3.71499],[-17.1336,15.5832,2.46916],[-17.5327,14.8929,1.07229],[-18.0819,14.2753,2.28427],[-17.1336,15.5832,2.46916],[-16.6935,16.1127,4.5715],[-17.1336,15.5832,2.46916],[-17.6775,14.8728,3.71499],[-17.6775,14.8728,3.71499],[-17.7699,14.6374,5.42608],[-16.6935,16.1127,4.5715],[-16.6935,16.1127,4.5715],[-15.9122,16.9062,2.55547],[-17.1336,15.5832,2.46916],[-16.5225,16.0392,0.966141],[-17.1336,15.5832,2.46916],[-15.9122,16.9062,2.55547],[-16.6935,16.1127,4.5715],[-15.0974,17.7157,4.51957],[-15.9122,16.9062,2.55547],[-14.4563,18.1455,2.29568],[-15.9122,16.9062,2.55547],[-15.0974,17.7157,4.51957],[-14.4563,18.1455,2.29568],[-15.0974,17.7157,4.51957],[-13.2557,19.0811,4.02487],[-13.2557,19.0811,4.02487],[-12.8563,19.0325,1.4418],[-14.4563,18.1455,2.29568],[-13.2557,19.0811,4.02487],[-11.4348,20.0376,2.76432],[-12.8563,19.0325,1.4418],[-11.8498,20.0169,4.87595],[-11.4348,20.0376,2.76432],[-13.2557,19.0811,4.02487],[-13.2557,19.0811,4.02487],[-12.2127,19.873,6.76952],[-11.8498,20.0169,4.87595],[-11.8498,20.0169,4.87595],[-12.2127,19.873,6.76952],[-10.4326,20.673,5.94065],[-12.2127,19.873,6.76952],[-11.2993,20.3984,8.10041],[-10.4326,20.673,5.94065],[-10.4326,20.673,5.94065],[-11.2993,20.3984,8.10041],[-9.66612,21.0427,8.71165],[-7.67133,21.4896,5.32239],[-10.4326,20.673,5.94065],[-9.66612,21.0427,8.71165],[-9.66612,21.0427,8.71165],[-7.80243,21.6212,8.4058],[-7.67133,21.4896,5.32239],[-7.80243,21.6212,8.4058],[-6.70658,21.8202,7.22639],[-7.67133,21.4896,5.32239],[-6.70658,21.8202,7.22639],[-5.83503,21.874,5.99768],[-7.67133,21.4896,5.32239],[-5.83503,21.874,5.99768],[-5.54255,21.7955,4.04399],[-7.67133,21.4896,5.32239],[-7.11473,21.4989,2.7097],[-7.67133,21.4896,5.32239],[-5.54255,21.7955,4.04399],[-7.11473,21.4989,2.7097],[-5.54255,21.7955,4.04399],[-5.41441,21.6557,1.76846],[-3.31578,21.8403,2.82281],[-5.41441,21.6557,1.76846],[-5.54255,21.7955,4.04399],[-3.31578,21.8403,2.82281],[-5.54255,21.7955,4.04399],[-3.76953,22.0108,5.84253],[-3.76953,22.0108,5.84253],[-1.91965,21.9227,4.46206],[-3.31578,21.8403,2.82281],[-0.608347,21.6204,2.35486],[-3.31578,21.8403,2.82281],[-1.91965,21.9227,4.46206],[-0.608347,21.6204,2.35486],[-1.91965,21.9227,4.46206],[-0.244586,21.776,5.08359],[1.37867,21.4411,3.9027],[-0.608347,21.6204,2.35486],[-0.244586,21.776,5.08359],[-0.244586,21.776,5.08359],[1.47998,21.4639,6.21526],[1.37867,21.4411,3.9027],[1.47998,21.4639,6.21526],[3.09713,21.0066,5.01064],[1.37867,21.4411,3.9027],[3.09713,21.0066,5.01064],[3.11955,20.9702,2.72605],[1.37867,21.4411,3.9027],[1.46243,21.3821,2.13257],[1.37867,21.4411,3.9027],[3.11955,20.9702,2.72605],[2.30792,20.8982,0.987729],[1.46243,21.3821,2.13257],[3.11955,20.9702,2.72605],[3.09713,21.0066,5.01064],[4.42248,20.5614,3.93827],[3.11955,20.9702,2.72605],[3.11955,20.9702,2.72605],[4.42248,20.5614,3.93827],[4.95393,20.3488,2.29537],[4.17581,20.5349,1.12094],[3.11955,20.9702,2.72605],[4.95393,20.3488,2.29537],[5.94989,19.9399,3.83119],[4.95393,20.3488,2.29537],[4.42248,20.5614,3.93827],[5.94989,19.9399,3.83119],[4.42248,20.5614,3.93827],[4.92681,20.3527,5.91892],[5.94989,19.9399,3.83119],[4.92681,20.3527,5.91892],[6.83355,19.5188,5.72366],[7.95407,18.9804,3.75151],[5.94989,19.9399,3.83119],[6.83355,19.5188,5.72366],[7.95407,18.9804,3.75151],[6.83355,19.5188,5.72366],[8.55247,18.614,5.98484],[9.47681,18.1508,4.32233],[7.95407,18.9804,3.75151],[8.55247,18.614,5.98484],[10.4764,17.3815,6.44279],[9.47681,18.1508,4.32233],[8.55247,18.614,5.98484],[9.00083,18.2627,8.32562],[10.4764,17.3815,6.44279],[8.55247,18.614,5.98484],[7.36629,19.2173,7.70545],[9.00083,18.2627,8.32562],[8.55247,18.614,5.98484],[7.36629,19.2173,7.70545],[7.44454,19.0777,9.89165],[9.00083,18.2627,8.32562],[7.44454,19.0777,9.89165],[9.46851,17.8097,11.0237],[9.00083,18.2627,8.32562],[9.00083,18.2627,8.32562],[9.46851,17.8097,11.0237],[10.3939,17.3451,8.92317],[11.1735,16.6641,10.5339],[10.3939,17.3451,8.92317],[9.46851,17.8097,11.0237],[9.46851,17.8097,11.0237],[10.6632,16.8442,12.7246],[11.1735,16.6641,10.5339],[11.1735,16.6641,10.5339],[10.6632,16.8442,12.7246],[12.1641,15.6893,12.0483],[11.1735,16.6641,10.5339],[12.1641,15.6893,12.0483],[12.4675,15.6242,10.0616],[11.6491,15.8979,14.1765],[12.1641,15.6893,12.0483],[10.6632,16.8442,12.7246],[11.6491,15.8979,14.1765],[10.6632,16.8442,12.7246],[10.2105,16.9568,14.7278],[10.9164,16.2731,15.9896],[11.6491,15.8979,14.1765],[10.2105,16.9568,14.7278],[9.6297,17.1164,16.3927],[10.9164,16.2731,15.9896],[10.2105,16.9568,14.7278],[10.2105,16.9568,14.7278],[9.02549,17.6692,15.2419],[9.6297,17.1164,16.3927],[8.0075,18.0284,16.6126],[9.6297,17.1164,16.3927],[9.02549,17.6692,15.2419],[7.93124,18.3645,14.7307],[8.0075,18.0284,16.6126],[9.02549,17.6692,15.2419],[7.93124,18.3645,14.7307],[9.02549,17.6692,15.2419],[9.21911,17.7431,13.6045],[7.90473,18.586,13.0681],[7.93124,18.3645,14.7307],[9.21911,17.7431,13.6045],[9.46851,17.8097,11.0237],[7.90473,18.586,13.0681],[9.21911,17.7431,13.6045],[9.46851,17.8097,11.0237],[7.93815,18.7091,11.617],[7.90473,18.586,13.0681],[7.93815,18.7091,11.617],[6.83906,19.2231,12.324],[7.90473,18.586,13.0681],[6.83906,19.2231,12.324],[6.69277,19.1083,13.9783],[7.90473,18.586,13.0681],[5.30577,19.8406,13.1152],[6.69277,19.1083,13.9783],[6.83906,19.2231,12.324],[5.30577,19.8406,13.1152],[6.83906,19.2231,12.324],[5.84785,19.8078,10.9926],[5.84785,19.8078,10.9926],[4.28859,20.4252,11.5189],[5.30577,19.8406,13.1152],[5.30577,19.8406,13.1152],[4.28859,20.4252,11.5189],[3.58342,20.5026,13.3114],[5.30577,19.8406,13.1152],[3.58342,20.5026,13.3114],[4.27003,20.0439,14.7589],[5.52928,19.5276,14.8037],[5.30577,19.8406,13.1152],[4.27003,20.0439,14.7589],[5.52928,19.5276,14.8037],[4.27003,20.0439,14.7589],[4.85028,19.5429,16.3554],[6.54113,18.9149,15.7252],[5.52928,19.5276,14.8037],[4.85028,19.5429,16.3554],[4.85028,19.5429,16.3554],[6.18247,18.7188,17.7416],[6.54113,18.9149,15.7252],[6.18247,18.7188,17.7416],[8.0075,18.0284,16.6126],[6.54113,18.9149,15.7252],[8.0075,18.0284,16.6126],[6.18247,18.7188,17.7416],[7.64583,17.9566,18.2349],[7.64583,17.9566,18.2349],[8.96817,17.2804,17.9633],[8.0075,18.0284,16.6126],[7.64583,17.9566,18.2349],[8.3037,17.4446,19.2147],[8.96817,17.2804,17.9633],[8.96817,17.2804,17.9633],[8.3037,17.4446,19.2147],[9.64717,16.6291,19.4784],[8.96817,17.2804,17.9633],[9.64717,16.6291,19.4784],[10.4882,16.3322,17.716],[9.6297,17.1164,16.3927],[8.96817,17.2804,17.9633],[10.4882,16.3322,17.716],[11.133,15.6258,19.4327],[10.4882,16.3322,17.716],[9.64717,16.6291,19.4784],[10.4025,16.0351,20.4431],[11.133,15.6258,19.4327],[9.64717,16.6291,19.4784],[9.64717,16.6291,19.4784],[9.63043,16.4604,20.8135],[10.4025,16.0351,20.4431],[10.3085,15.9532,21.57],[10.4025,16.0351,20.4431],[9.63043,16.4604,20.8135],[10.3085,15.9532,21.57],[9.63043,16.4604,20.8135],[9.25897,16.4996,21.8891],[10.0545,15.964,22.6367],[10.3085,15.9532,21.57],[9.25897,16.4996,21.8891],[9.16893,16.3344,23.255],[10.0545,15.964,22.6367],[9.25897,16.4996,21.8891],[9.16893,16.3344,23.255],[9.25897,16.4996,21.8891],[7.93382,17.0673,22.3628],[8.04118,16.6498,24.3484],[9.16893,16.3344,23.255],[7.93382,17.0673,22.3628],[8.04118,16.6498,24.3484],[7.93382,17.0673,22.3628],[6.83339,17.3713,23.1891],[8.04118,16.6498,24.3484],[6.83339,17.3713,23.1891],[6.03191,17.3934,24.3161],[8.04118,16.6498,24.3484],[6.03191,17.3934,24.3161],[7.02197,16.8107,25.3777],[7.02197,16.8107,25.3777],[7.83017,16.3793,26.1081],[8.04118,16.6498,24.3484],[8.04118,16.6498,24.3484],[7.83017,16.3793,26.1081],[9.15341,15.9692,25.6991],[9.44769,16.02,24.4974],[8.04118,16.6498,24.3484],[9.15341,15.9692,25.6991],[9.15341,15.9692,25.6991],[10.5097,15.4163,25.2878],[9.44769,16.02,24.4974],[10.5097,15.4163,25.2878],[10.3652,15.6522,23.8022],[9.44769,16.02,24.4974],[10.3652,15.6522,23.8022],[9.16893,16.3344,23.255],[9.44769,16.02,24.4974],[11.7909,14.8202,24.3712],[10.3652,15.6522,23.8022],[10.5097,15.4163,25.2878],[11.7909,14.8202,24.3712],[10.5097,15.4163,25.2878],[11.9929,14.6319,26.2478],[11.7909,14.8202,24.3712],[11.9929,14.6319,26.2478],[12.9365,14.1585,25.2096],[12.9365,14.1585,25.2096],[13.0058,14.0838,24.1018],[11.7909,14.8202,24.3712],[11.7909,14.8202,24.3712],[13.0058,14.0838,24.1018],[12.3603,14.4864,23.1445],[11.7909,14.8202,24.3712],[12.3603,14.4864,23.1445],[11.22,15.2742,22.6561],[11.22,15.2742,22.6561],[12.3603,14.4864,23.1445],[12.2369,14.6133,21.9044],[11.22,15.2742,22.6561],[12.2369,14.6133,21.9044],[11.3291,15.3359,20.9923],[11.22,15.2742,22.6561],[11.3291,15.3359,20.9923],[10.3085,15.9532,21.57],[11.3291,15.3359,20.9923],[12.2369,14.6133,21.9044],[12.5935,14.3942,19.8995],[12.5935,14.3942,19.8995],[11.133,15.6258,19.4327],[11.3291,15.3359,20.9923],[12.2927,14.8404,18.0419],[11.133,15.6258,19.4327],[12.5935,14.3942,19.8995],[12.2927,14.8404,18.0419],[12.5935,14.3942,19.8995],[13.2761,13.8372,18.4341],[12.2927,14.8404,18.0419],[13.2761,13.8372,18.4341],[13.4164,13.8204,16.9211],[12.2927,14.8404,18.0419],[13.4164,13.8204,16.9211],[12.5599,14.8929,15.687],[12.2927,14.8404,18.0419],[12.5599,14.8929,15.687],[11.5913,15.6191,16.8742],[10.4882,16.3322,17.716],[12.2927,14.8404,18.0419],[11.5913,15.6191,16.8742],[10.9164,16.2731,15.9896],[10.4882,16.3322,17.716],[11.5913,15.6191,16.8742],[10.9164,16.2731,15.9896],[11.5913,15.6191,16.8742],[12.5599,14.8929,15.687],[13.851,13.1232,19.3896],[13.2761,13.8372,18.4341],[12.5935,14.3942,19.8995],[13.958,13.1066,21.1165],[13.851,13.1232,19.3896],[12.5935,14.3942,19.8995],[13.958,13.1066,21.1165],[12.5935,14.3942,19.8995],[13.0828,13.951,21.3973],[13.0828,13.951,21.3973],[13.4893,13.6294,22.5283],[13.958,13.1066,21.1165],[13.4893,13.6294,22.5283],[14.6964,12.6545,22.3189],[13.958,13.1066,21.1165],[13.958,13.1066,21.1165],[14.6964,12.6545,22.3189],[14.8212,12.2577,21.2282],[13.958,13.1066,21.1165],[14.8212,12.2577,21.2282],[14.5733,12.2712,20.1089],[14.8212,12.2577,21.2282],[15.293,11.5539,20.5525],[14.5733,12.2712,20.1089],[15.293,11.5539,20.5525],[15.0859,11.4133,19.3901],[14.5733,12.2712,20.1089],[14.584,12.1196,18.7815],[14.5733,12.2712,20.1089],[15.0859,11.4133,19.3901],[14.5733,12.2712,20.1089],[14.584,12.1196,18.7815],[13.851,13.1232,19.3896],[15.0859,11.4133,19.3901],[15.293,11.5539,20.5525],[15.7084,10.7659,19.7502],[15.0859,11.4133,19.3901],[15.7084,10.7659,19.7502],[15.484,10.5766,18.6622],[15.484,10.5766,18.6622],[15.7084,10.7659,19.7502],[16.084,9.94725,18.9627],[16.5861,10.2613,20.0267],[16.084,9.94725,18.9627],[15.7084,10.7659,19.7502],[15.7084,10.7659,19.7502],[16.0487,10.9944,20.774],[16.5861,10.2613,20.0267],[17.1519,10.7997,21.5857],[16.5861,10.2613,20.0267],[16.0487,10.9944,20.774],[16.0487,10.9944,20.774],[15.7456,11.7012,21.8613],[17.1519,10.7997,21.5857],[15.7456,11.7012,21.8613],[16.7212,11.4842,22.8424],[17.1519,10.7997,21.5857],[17.1519,10.7997,21.5857],[16.7212,11.4842,22.8424],[17.8134,11.0768,23.0206],[17.1519,10.7997,21.5857],[17.8134,11.0768,23.0206],[18.5446,10.5379,22.2204],[18.4505,10.1168,21.1229],[17.1519,10.7997,21.5857],[18.5446,10.5379,22.2204],[18.5446,10.5379,22.2204],[19.4243,9.9815,21.5906],[18.4505,10.1168,21.1229],[19.4243,9.9815,21.5906],[19.2664,9.49117,20.3759],[18.4505,10.1168,21.1229],[19.2664,9.49117,20.3759],[17.9704,9.67311,19.9135],[18.4505,10.1168,21.1229],[17.9704,9.67311,19.9135],[19.2664,9.49117,20.3759],[19.0315,8.95325,19.1746],[17.9704,9.67311,19.9135],[19.0315,8.95325,19.1746],[18.121,8.94225,18.7259],[17.2788,8.69729,18.0566],[17.9704,9.67311,19.9135],[18.121,8.94225,18.7259],[17.2788,8.69729,18.0566],[16.8309,9.51378,19.0402],[17.9704,9.67311,19.9135],[17.9704,9.67311,19.9135],[16.8309,9.51378,19.0402],[16.5861,10.2613,20.0267],[19.0315,8.95325,19.1746],[18.3091,8.36097,17.8913],[18.121,8.94225,18.7259],[19.0315,8.95325,19.1746],[19.2664,9.49117,20.3759],[20.3702,8.68774,19.6197],[20.3702,8.68774,19.6197],[19.8002,8.11442,18.1444],[19.0315,8.95325,19.1746],[21.0225,7.8642,18.575],[19.8002,8.11442,18.1444],[20.3702,8.68774,19.6197],[20.3702,8.68774,19.6197],[21.6573,7.97579,19.5932],[21.0225,7.8642,18.575],[22.0209,7.01466,18.1529],[21.0225,7.8642,18.575],[21.6573,7.97579,19.5932],[22.9248,7.15628,19.9726],[22.0209,7.01466,18.1529],[21.6573,7.97579,19.5932],[22.9248,7.15628,19.9726],[21.6573,7.97579,19.5932],[22.438,8.31792,21.8368],[22.438,8.31792,21.8368],[23.5297,7.21735,21.6394],[22.9248,7.15628,19.9726],[22.9248,7.15628,19.9726],[23.5297,7.21735,21.6394],[23.7053,6.59296,20.5377],[23.7053,6.59296,20.5377],[23.6322,6.17163,19.4957],[22.9248,7.15628,19.9726],[23.6322,6.17163,19.4957],[23.0332,6.48243,18.712],[22.9248,7.15628,19.9726],[23.0332,6.48243,18.712],[23.6322,6.17163,19.4957],[23.4627,5.7477,18.3199],[23.0332,6.48243,18.712],[23.4627,5.7477,18.3199],[22.8676,6.13242,17.778],[22.8676,6.13242,17.778],[22.0209,7.01466,18.1529],[23.0332,6.48243,18.712],[22.8676,6.13242,17.778],[22.4475,5.85957,16.7499],[22.0209,7.01466,18.1529],[22.4475,5.85957,16.7499],[21.5024,6.51792,16.6432],[22.0209,7.01466,18.1529],[21.5024,6.51792,16.6432],[21.0176,7.32725,17.5592],[22.0209,7.01466,18.1529],[21.5024,6.51792,16.6432],[20.6279,6.90369,16.4932],[21.0176,7.32725,17.5592],[22.4475,5.85957,16.7499],[21.8676,5.67199,15.73],[21.5024,6.51792,16.6432],[20.8938,6.01387,15.2662],[21.5024,6.51792,16.6432],[21.8676,5.67199,15.73],[21.4456,5.35325,14.7427],[20.8938,6.01387,15.2662],[21.8676,5.67199,15.73],[22.1,4.75835,14.6727],[21.4456,5.35325,14.7427],[21.8676,5.67199,15.73],[22.8151,4.83722,15.8413],[22.1,4.75835,14.6727],[21.8676,5.67199,15.73],[22.7777,3.97989,14.6168],[22.1,4.75835,14.6727],[22.8151,4.83722,15.8413],[22.7777,3.97989,14.6168],[22.8151,4.83722,15.8413],[23.4581,3.69905,15.5048],[23.4581,3.69905,15.5048],[23.3695,3.0968,14.5458],[22.7777,3.97989,14.6168],[23.3695,3.0968,14.5458],[23.0366,2.738,13.5018],[22.7777,3.97989,14.6168],[22.2878,3.26164,12.973],[22.7777,3.97989,14.6168],[23.0366,2.738,13.5018],[22.0652,4.27759,13.9419],[22.7777,3.97989,14.6168],[22.2878,3.26164,12.973],[21.7377,4.02079,13.204],[22.0652,4.27759,13.9419],[22.2878,3.26164,12.973],[21.7377,4.02079,13.204],[21.3974,4.74894,13.8434],[22.0652,4.27759,13.9419],[22.1,4.75835,14.6727],[22.0652,4.27759,13.9419],[21.3974,4.74894,13.8434],[21.7377,4.02079,13.204],[21.3064,4.17529,12.9946],[21.3974,4.74894,13.8434],[21.5854,3.49753,12.4529],[21.3064,4.17529,12.9946],[21.7377,4.02079,13.204],[23.3695,3.0968,14.5458],[23.5583,2.28458,14.0187],[23.0366,2.738,13.5018],[23.5583,2.28458,14.0187],[23.2549,1.91682,12.9979],[23.0366,2.738,13.5018],[23.6711,1.49859,13.4766],[23.2549,1.91682,12.9979],[23.5583,2.28458,14.0187],[23.6711,1.49859,13.4766],[23.5583,2.28458,14.0187],[24.0006,1.69636,14.5496],[23.6711,1.49859,13.4766],[24.0006,1.69636,14.5496],[23.979,0.7238,13.6118],[23.6711,1.49859,13.4766],[23.979,0.7238,13.6118],[23.4468,0.846043,12.3668],[23.979,0.7238,13.6118],[23.9142,-0.0418923,12.6936],[23.4468,0.846043,12.3668],[23.9142,-0.0418923,12.6936],[23.7074,-0.316288,11.8638],[23.4468,0.846043,12.3668],[24.0591,-0.943483,12.3613],[23.7074,-0.316288,11.8638],[23.9142,-0.0418923,12.6936],[23.9142,-0.0418923,12.6936],[24.2664,-0.643577,13.3672],[24.0591,-0.943483,12.3613],[24.2664,-0.643577,13.3672],[24.3757,-1.81422,12.9403],[24.0591,-0.943483,12.3613],[24.3757,-1.81422,12.9403],[24.0992,-2.68164,11.3815],[24.0591,-0.943483,12.3613],[24.0992,-2.68164,11.3815],[23.8836,-1.23985,11.5644],[24.0591,-0.943483,12.3613],[23.8836,-1.23985,11.5644],[24.0992,-2.68164,11.3815],[23.509,-1.194,10.6819],[23.8836,-1.23985,11.5644],[23.509,-1.194,10.6819],[23.7074,-0.316288,11.8638],[23.509,-1.194,10.6819],[23.2019,0.0297008,11.0682],[23.7074,-0.316288,11.8638],[23.509,-1.194,10.6819],[22.9458,-0.775513,9.91885],[23.2019,0.0297008,11.0682],[23.4167,-2.66611,9.45123],[22.9458,-0.775513,9.91885],[23.509,-1.194,10.6819],[23.4167,-2.66611,9.45123],[23.509,-1.194,10.6819],[24.0992,-2.68164,11.3815],[23.4167,-2.66611,9.45123],[24.0992,-2.68164,11.3815],[23.9971,-4.34019,10.0674],[23.4644,-4.61233,8.352],[23.4167,-2.66611,9.45123],[23.9971,-4.34019,10.0674],[23.9971,-4.34019,10.0674],[23.8516,-6.92389,8.71464],[23.4644,-4.61233,8.352],[23.8516,-6.92389,8.71464],[23.159,-6.94583,6.71179],[23.4644,-4.61233,8.352],[23.159,-6.94583,6.71179],[22.8874,-4.91798,6.90354],[23.4644,-4.61233,8.352],[22.8293,-3.3684,7.75439],[23.4644,-4.61233,8.352],[22.8874,-4.91798,6.90354],[22.0336,-4.0168,6.25406],[22.8293,-3.3684,7.75439],[22.8874,-4.91798,6.90354],[22.4101,-5.83374,5.71522],[22.0336,-4.0168,6.25406],[22.8874,-4.91798,6.90354],[21.704,-5.19024,5.09923],[22.0336,-4.0168,6.25406],[22.4101,-5.83374,5.71522],[22.4101,-5.83374,5.71522],[21.7148,-6.5763,4.56774],[21.704,-5.19024,5.09923],[20.9382,-5.59046,4.25091],[21.704,-5.19024,5.09923],[21.7148,-6.5763,4.56774],[20.8521,-6.92022,3.73972],[20.9382,-5.59046,4.25091],[21.7148,-6.5763,4.56774],[20.8521,-6.92022,3.73972],[21.7148,-6.5763,4.56774],[21.3643,-8.32483,3.9873],[20.8521,-6.92022,3.73972],[21.3643,-8.32483,3.9873],[19.8568,-8.0102,3.05428],[20.8521,-6.92022,3.73972],[19.8568,-8.0102,3.05428],[19.9557,-6.2256,3.47611],[19.8568,-8.0102,3.05428],[18.7265,-6.83492,2.94035],[19.9557,-6.2256,3.47611],[19.8568,-8.0102,3.05428],[18.1456,-8.391,2.50008],[18.7265,-6.83492,2.94035],[17.479,-7.26981,2.72083],[18.7265,-6.83492,2.94035],[18.1456,-8.391,2.50008],[18.1456,-8.391,2.50008],[16.304,-8.50406,2.49025],[17.479,-7.26981,2.72083],[16.304,-8.50406,2.49025],[16.4548,-6.81317,3.19993],[17.479,-7.26981,2.72083],[14.9791,-7.75738,3.24462],[16.4548,-6.81317,3.19993],[16.304,-8.50406,2.49025],[16.304,-8.50406,2.49025],[14.3102,-9.20942,2.56969],[14.9791,-7.75738,3.24462],[13.3706,-8.52428,3.39431],[14.9791,-7.75738,3.24462],[14.3102,-9.20942,2.56969],[13.3706,-8.52428,3.39431],[14.3102,-9.20942,2.56969],[12.4386,-9.80025,2.77573],[11.8524,-9.02087,3.6825],[13.3706,-8.52428,3.39431],[12.4386,-9.80025,2.77573],[10.9439,-9.8459,3.23752],[11.8524,-9.02087,3.6825],[12.4386,-9.80025,2.77573],[10.545,-10.7929,2.72089],[10.9439,-9.8459,3.23752],[12.4386,-9.80025,2.77573],[10.545,-10.7929,2.72089],[12.4386,-9.80025,2.77573],[11.8389,-11.3091,2.28402],[10.3339,-11.6924,2.44808],[10.545,-10.7929,2.72089],[11.8389,-11.3091,2.28402],[11.1885,-13.0566,2.31034],[10.3339,-11.6924,2.44808],[11.8389,-11.3091,2.28402],[13.4569,-11.9183,1.932],[11.1885,-13.0566,2.31034],[11.8389,-11.3091,2.28402],[11.8389,-11.3091,2.28402],[13.4674,-10.508,2.19419],[13.4569,-11.9183,1.932],[13.4674,-10.508,2.19419],[15.5065,-10.2125,2.07654],[13.4569,-11.9183,1.932],[15.5065,-10.2125,2.07654],[15.0571,-11.7917,1.86091],[13.4569,-11.9183,1.932],[15.0571,-11.7917,1.86091],[14.2496,-12.7878,1.95183],[13.4569,-11.9183,1.932],[13.4569,-11.9183,1.932],[14.2496,-12.7878,1.95183],[12.7981,-13.0148,2.02367],[12.5213,-14.1672,2.45001],[12.7981,-13.0148,2.02367],[14.2496,-12.7878,1.95183],[12.5213,-14.1672,2.45001],[14.2496,-12.7878,1.95183],[15.1384,-13.7093,2.43266],[14.3435,-15.0363,3.11567],[12.5213,-14.1672,2.45001],[15.1384,-13.7093,2.43266],[16.7116,-14.4155,3.25444],[14.3435,-15.0363,3.11567],[15.1384,-13.7093,2.43266],[15.1384,-13.7093,2.43266],[17.5933,-12.5159,2.53384],[16.7116,-14.4155,3.25444],[16.7116,-14.4155,3.25444],[17.5933,-12.5159,2.53384],[18.6846,-13.6312,3.51496],[16.7116,-14.4155,3.25444],[18.6846,-13.6312,3.51496],[18.1256,-14.9836,4.33086],[16.4074,-15.7755,4.37642],[16.7116,-14.4155,3.25444],[18.1256,-14.9836,4.33086],[16.4074,-15.7755,4.37642],[18.1256,-14.9836,4.33086],[17.6517,-16.0621,5.56455],[16.4074,-15.7755,4.37642],[17.6517,-16.0621,5.56455],[16.0605,-16.8344,5.70998],[13.2267,-17.4452,5.61087],[16.4074,-15.7755,4.37642],[16.0605,-16.8344,5.70998],[14.4902,-17.5347,6.54182],[13.2267,-17.4452,5.61087],[16.0605,-16.8344,5.70998],[16.8112,-16.8107,6.94124],[14.4902,-17.5347,6.54182],[16.0605,-16.8344,5.70998],[15.2244,-17.2359,8.2594],[14.4902,-17.5347,6.54182],[16.8112,-16.8107,6.94124],[16.8112,-16.8107,6.94124],[17.3179,-16.4863,8.59714],[15.2244,-17.2359,8.2594],[15.3893,-16.5385,10.0539],[15.2244,-17.2359,8.2594],[17.3179,-16.4863,8.59714],[15.3893,-16.5385,10.0539],[17.3179,-16.4863,8.59714],[17.9542,-15.5864,10.3203],[16.0981,-14.8894,11.8558],[15.3893,-16.5385,10.0539],[17.9542,-15.5864,10.3203],[16.0981,-14.8894,11.8558],[17.9542,-15.5864,10.3203],[18.9933,-14.1668,11.8201],[16.0981,-14.8894,11.8558],[18.9933,-14.1668,11.8201],[18.1103,-13.0761,13.3878],[15.8624,-13.0563,13.2967],[16.0981,-14.8894,11.8558],[18.1103,-13.0761,13.3878],[17.4959,-11.6146,14.9334],[15.8624,-13.0563,13.2967],[18.1103,-13.0761,13.3878],[18.1103,-13.0761,13.3878],[19.4061,-11.477,15.0479],[17.4959,-11.6146,14.9334],[19.4061,-11.477,15.0479],[18.4191,-10.9983,15.9771],[17.4959,-11.6146,14.9334],[17.4959,-11.6146,14.9334],[18.4191,-10.9983,15.9771],[17.4004,-10.6927,16.189],[17.4959,-11.6146,14.9334],[17.4004,-10.6927,16.189],[16.5395,-10.874,15.3774],[17.4959,-11.6146,14.9334],[16.5395,-10.874,15.3774],[15.7029,-11.5199,14.2831],[15.7029,-11.5199,14.2831],[16.5395,-10.874,15.3774],[15.5577,-10.2396,15.2051],[14.5363,-10.7561,13.9116],[15.7029,-11.5199,14.2831],[15.5577,-10.2396,15.2051],[14.5363,-10.7561,13.9116],[15.5577,-10.2396,15.2051],[14.5444,-9.39398,14.5437],[14.5444,-9.39398,14.5437],[13.6511,-9.97207,13.2662],[14.5363,-10.7561,13.9116],[12.5031,-11.2834,12.536],[14.5363,-10.7561,13.9116],[13.6511,-9.97207,13.2662],[12.5031,-11.2834,12.536],[13.6511,-9.97207,13.2662],[12.5519,-9.59162,12.0819],[10.7742,-10.8451,11.769],[12.5031,-11.2834,12.536],[12.5519,-9.59162,12.0819],[10.7742,-10.8451,11.769],[12.5519,-9.59162,12.0819],[11.1016,-9.57593,10.911],[8.72326,-10.5201,10.9815],[10.7742,-10.8451,11.769],[11.1016,-9.57593,10.911],[11.1016,-9.57593,10.911],[9.61921,-9.58785,10.111],[8.72326,-10.5201,10.9815],[9.61921,-9.58785,10.111],[7.74189,-9.79065,9.86335],[8.72326,-10.5201,10.9815],[7.74189,-9.79065,9.86335],[6.83451,-10.5549,10.8441],[8.72326,-10.5201,10.9815],[8.72326,-10.5201,10.9815],[6.83451,-10.5549,10.8441],[5.56053,-11.3925,11.6927],[8.64708,-11.8799,11.8994],[8.72326,-10.5201,10.9815],[5.56053,-11.3925,11.6927],[8.64708,-11.8799,11.8994],[5.56053,-11.3925,11.6927],[5.53927,-13.13,12.3526],[8.64708,-11.8799,11.8994],[5.53927,-13.13,12.3526],[10.0328,-13.1882,12.2189],[10.0328,-13.1882,12.2189],[10.786,-12.0393,12.1591],[8.64708,-11.8799,11.8994],[10.786,-12.0393,12.1591],[10.7742,-10.8451,11.769],[8.64708,-11.8799,11.8994],[10.0328,-13.1882,12.2189],[11.8374,-13.0046,12.4333],[10.786,-12.0393,12.1591],[10.786,-12.0393,12.1591],[11.8374,-13.0046,12.4333],[12.5031,-11.2834,12.536],[12.5031,-11.2834,12.536],[11.8374,-13.0046,12.4333],[13.9772,-12.3826,13.1158],[11.8374,-13.0046,12.4333],[12.9468,-14.4755,12.2549],[13.9772,-12.3826,13.1158],[13.9772,-12.3826,13.1158],[12.9468,-14.4755,12.2549],[15.8624,-13.0563,13.2967],[15.8624,-13.0563,13.2967],[15.7029,-11.5199,14.2831],[13.9772,-12.3826,13.1158],[11.8374,-13.0046,12.4333],[10.4233,-14.4944,12.2173],[12.9468,-14.4755,12.2549],[10.8401,-15.9121,11.7243],[12.9468,-14.4755,12.2549],[10.4233,-14.4944,12.2173],[10.8401,-15.9121,11.7243],[10.4233,-14.4944,12.2173],[9.06249,-15.713,11.9347],[10.8401,-15.9121,11.7243],[9.06249,-15.713,11.9347],[8.95426,-16.8413,11.2945],[10.9778,-16.9703,10.893],[10.8401,-15.9121,11.7243],[8.95426,-16.8413,11.2945],[9.74365,-17.6903,9.94721],[10.9778,-16.9703,10.893],[8.95426,-16.8413,11.2945],[8.95426,-16.8413,11.2945],[6.72574,-17.3934,10.9265],[9.74365,-17.6903,9.94721],[9.74365,-17.6903,9.94721],[6.72574,-17.3934,10.9265],[7.31254,-18.174,9.56523],[10.4362,-18.0138,7.8955],[9.74365,-17.6903,9.94721],[7.31254,-18.174,9.56523],[6.28959,-18.4027,8.36362],[10.4362,-18.0138,7.8955],[7.31254,-18.174,9.56523],[6.28959,-18.4027,8.36362],[7.31254,-18.174,9.56523],[5.47973,-18.2084,9.82318],[5.47973,-18.2084,9.82318],[1.65718,-18.2563,9.35576],[6.28959,-18.4027,8.36362],[4.03118,-18.1455,7.21023],[6.28959,-18.4027,8.36362],[1.65718,-18.2563,9.35576],[1.65718,-18.2563,9.35576],[1.14965,-18.1445,7.85991],[4.03118,-18.1455,7.21023],[4.03118,-18.1455,7.21023],[1.14965,-18.1445,7.85991],[1.82633,-17.2804,6.19502],[6.85857,-17.226,5.07549],[4.03118,-18.1455,7.21023],[1.82633,-17.2804,6.19502],[1.82633,-17.2804,6.19502],[5.24903,-16.1719,4.25246],[6.85857,-17.226,5.07549],[7.23059,-15.933,3.76815],[6.85857,-17.226,5.07549],[5.24903,-16.1719,4.25246],[7.23059,-15.933,3.76815],[5.24903,-16.1719,4.25246],[6.19701,-14.635,3.32494],[7.23059,-15.933,3.76815],[6.19701,-14.635,3.32494],[7.87,-14.47,2.97845],[7.87,-14.47,2.97845],[10.6119,-14.5533,2.65986],[7.23059,-15.933,3.76815],[10.6119,-14.5533,2.65986],[12.0906,-15.4368,3.13192],[7.23059,-15.933,3.76815],[7.23059,-15.933,3.76815],[12.0906,-15.4368,3.13192],[9.40589,-16.9848,4.50532],[11.5617,-16.9306,4.52474],[9.40589,-16.9848,4.50532],[12.0906,-15.4368,3.13192],[14.3435,-15.0363,3.11567],[11.5617,-16.9306,4.52474],[12.0906,-15.4368,3.13192],[11.5617,-16.9306,4.52474],[14.3435,-15.0363,3.11567],[16.4074,-15.7755,4.37642],[11.5617,-16.9306,4.52474],[10.7669,-17.7714,5.93092],[9.40589,-16.9848,4.50532],[10.7669,-17.7714,5.93092],[6.85857,-17.226,5.07549],[9.40589,-16.9848,4.50532],[8.13439,-18.1277,6.75988],[6.85857,-17.226,5.07549],[10.7669,-17.7714,5.93092],[10.4362,-18.0138,7.8955],[8.13439,-18.1277,6.75988],[10.7669,-17.7714,5.93092],[10.7669,-17.7714,5.93092],[12.5061,-17.8732,6.64148],[10.4362,-18.0138,7.8955],[10.4362,-18.0138,7.8955],[12.5061,-17.8732,6.64148],[15.2244,-17.2359,8.2594],[10.4362,-18.0138,7.8955],[15.2244,-17.2359,8.2594],[12.7102,-17.3047,9.72547],[10.7669,-17.7714,5.93092],[13.2267,-17.4452,5.61087],[12.5061,-17.8732,6.64148],[10.7669,-17.7714,5.93092],[11.5617,-16.9306,4.52474],[13.2267,-17.4452,5.61087],[12.5213,-14.1672,2.45001],[12.0906,-15.4368,3.13192],[10.6119,-14.5533,2.65986],[12.5213,-14.1672,2.45001],[10.6119,-14.5533,2.65986],[11.1885,-13.0566,2.31034],[7.87,-14.47,2.97845],[11.1885,-13.0566,2.31034],[10.6119,-14.5533,2.65986],[11.1885,-13.0566,2.31034],[7.87,-14.47,2.97845],[6.64184,-13.0944,3.05211],[11.1885,-13.0566,2.31034],[6.64184,-13.0944,3.05211],[9.13245,-11.9561,2.60881],[9.13245,-11.9561,2.60881],[6.64184,-13.0944,3.05211],[7.70406,-11.9817,2.93996],[9.13245,-11.9561,2.60881],[7.70406,-11.9817,2.93996],[9.29584,-11.2705,2.79983],[9.13245,-11.9561,2.60881],[9.29584,-11.2705,2.79983],[10.3339,-11.6924,2.44808],[9.29584,-11.2705,2.79983],[7.70406,-11.9817,2.93996],[7.62601,-11.182,3.31823],[9.72462,-10.336,3.28324],[9.29584,-11.2705,2.79983],[7.62601,-11.182,3.31823],[7.17713,-10.1939,4.30706],[9.72462,-10.336,3.28324],[7.62601,-11.182,3.31823],[7.62601,-11.182,3.31823],[6.38282,-11.026,3.737],[7.17713,-10.1939,4.30706],[6.05145,-10.4279,4.30175],[7.17713,-10.1939,4.30706],[6.38282,-11.026,3.737],[6.05145,-10.4279,4.30175],[6.38282,-11.026,3.737],[5.32046,-10.8759,4.10255],[6.05145,-10.4279,4.30175],[5.32046,-10.8759,4.10255],[4.60801,-10.3117,4.88064],[6.17766,-9.86262,5.03484],[6.05145,-10.4279,4.30175],[4.60801,-10.3117,4.88064],[6.17766,-9.86262,5.03484],[4.60801,-10.3117,4.88064],[3.72151,-9.97298,5.76436],[6.17766,-9.86262,5.03484],[3.72151,-9.97298,5.76436],[5.08847,-9.67655,5.83255],[6.17766,-9.86262,5.03484],[5.08847,-9.67655,5.83255],[6.35103,-9.43198,5.92179],[7.38854,-9.43854,5.40844],[6.17766,-9.86262,5.03484],[6.35103,-9.43198,5.92179],[7.38854,-9.43854,5.40844],[6.35103,-9.43198,5.92179],[7.21865,-9.15877,6.60951],[8.78372,-8.98935,5.92746],[7.38854,-9.43854,5.40844],[7.21865,-9.15877,6.60951],[7.21865,-9.15877,6.60951],[9.29289,-8.81624,7.36521],[8.78372,-8.98935,5.92746],[10.0707,-8.63349,6.21682],[8.78372,-8.98935,5.92746],[9.29289,-8.81624,7.36521],[10.0707,-8.63349,6.21682],[9.29289,-8.81624,7.36521],[11.0876,-8.27695,6.81508],[10.0707,-8.63349,6.21682],[11.0876,-8.27695,6.81508],[11.1184,-8.35806,5.81749],[10.0738,-8.83235,5.2579],[10.0707,-8.63349,6.21682],[11.1184,-8.35806,5.81749],[10.0738,-8.83235,5.2579],[11.1184,-8.35806,5.81749],[11.3447,-8.60604,4.74433],[11.3447,-8.60604,4.74433],[10.4723,-9.28599,4.12235],[10.0738,-8.83235,5.2579],[10.4723,-9.28599,4.12235],[8.76687,-9.32329,4.91049],[10.0738,-8.83235,5.2579],[8.76687,-9.32329,4.91049],[8.78372,-8.98935,5.92746],[10.0738,-8.83235,5.2579],[10.4723,-9.28599,4.12235],[7.17713,-10.1939,4.30706],[8.76687,-9.32329,4.91049],[7.17713,-10.1939,4.30706],[7.38854,-9.43854,5.40844],[8.76687,-9.32329,4.91049],[10.4723,-9.28599,4.12235],[11.3447,-8.60604,4.74433],[11.8524,-9.02087,3.6825],[11.8524,-9.02087,3.6825],[11.3447,-8.60604,4.74433],[12.7634,-8.1634,4.21871],[13.2071,-7.48188,5.16391],[12.7634,-8.1634,4.21871],[11.3447,-8.60604,4.74433],[12.1372,-7.94315,5.60955],[13.2071,-7.48188,5.16391],[11.3447,-8.60604,4.74433],[12.9455,-7.33188,6.11745],[13.2071,-7.48188,5.16391],[12.1372,-7.94315,5.60955],[11.9835,-7.89168,6.4069],[12.9455,-7.33188,6.11745],[12.1372,-7.94315,5.60955],[11.1184,-8.35806,5.81749],[11.9835,-7.89168,6.4069],[12.1372,-7.94315,5.60955],[11.9835,-7.89168,6.4069],[12.6017,-7.4629,7.01474],[12.9455,-7.33188,6.11745],[12.6017,-7.4629,7.01474],[13.7456,-6.40495,6.999],[12.9455,-7.33188,6.11745],[13.7456,-6.40495,6.999],[13.8851,-6.74306,5.62038],[12.9455,-7.33188,6.11745],[13.7456,-6.40495,6.999],[14.8805,-5.11203,6.62375],[13.8851,-6.74306,5.62038],[13.8851,-6.74306,5.62038],[14.8805,-5.11203,6.62375],[14.8187,-6.06647,5.13999],[13.8851,-6.74306,5.62038],[14.8187,-6.06647,5.13999],[14.064,-7.28788,4.34814],[13.8851,-6.74306,5.62038],[14.064,-7.28788,4.34814],[13.2071,-7.48188,5.16391],[14.8187,-6.06647,5.13999],[15.4733,-6.31285,4.13781],[14.064,-7.28788,4.34814],[15.4733,-6.31285,4.13781],[14.9791,-7.75738,3.24462],[14.064,-7.28788,4.34814],[14.8187,-6.06647,5.13999],[14.8805,-5.11203,6.62375],[15.8764,-4.89801,5.27874],[13.7456,-6.40495,6.999],[14.4014,-5.3375,7.6929],[14.8805,-5.11203,6.62375],[14.9432,-4.31892,7.88074],[14.8805,-5.11203,6.62375],[14.4014,-5.3375,7.6929],[14.9432,-4.31892,7.88074],[14.4014,-5.3375,7.6929],[14.5736,-4.63343,8.73318],[14.9432,-4.31892,7.88074],[14.5736,-4.63343,8.73318],[14.9549,-3.77917,8.74276],[14.9432,-4.31892,7.88074],[14.9549,-3.77917,8.74276],[15.3047,-3.4148,8.21754],[15.4285,-3.76957,7.41853],[14.9432,-4.31892,7.88074],[15.3047,-3.4148,8.21754],[14.5736,-4.63343,8.73318],[14.7074,-4.01494,9.28401],[14.9549,-3.77917,8.74276],[14.9278,-3.32374,9.45008],[14.9549,-3.77917,8.74276],[14.7074,-4.01494,9.28401],[14.9549,-3.77917,8.74276],[14.9278,-3.32374,9.45008],[15.2101,-3.03958,8.96129],[14.5736,-4.63343,8.73318],[14.4126,-4.58516,9.62488],[14.7074,-4.01494,9.28401],[14.4126,-4.58516,9.62488],[14.6157,-3.78292,9.96849],[14.7074,-4.01494,9.28401],[14.4126,-4.58516,9.62488],[14.5736,-4.63343,8.73318],[14.1659,-5.37824,9.026],[14.1156,-5.34231,9.61698],[14.4126,-4.58516,9.62488],[14.1659,-5.37824,9.026],[13.8077,-6.02135,9.44374],[14.1156,-5.34231,9.61698],[14.1659,-5.37824,9.026],[13.6383,-6.35127,8.39638],[13.8077,-6.02135,9.44374],[14.1659,-5.37824,9.026],[14.1659,-5.37824,9.026],[14.2206,-5.4154,8.45676],[13.6383,-6.35127,8.39638],[14.2206,-5.4154,8.45676],[14.4014,-5.3375,7.6929],[13.6383,-6.35127,8.39638],[13.8077,-6.02135,9.44374],[13.6383,-6.35127,8.39638],[13.2479,-6.90737,9.40044],[13.5688,-6.47648,10.3803],[13.8077,-6.02135,9.44374],[13.2479,-6.90737,9.40044],[13.5688,-6.47648,10.3803],[13.2479,-6.90737,9.40044],[13.0377,-7.40035,10.2577],[13.5688,-6.47648,10.3803],[13.0377,-7.40035,10.2577],[13.3069,-7.2319,11.2215],[13.7896,-5.86628,11.5185],[13.5688,-6.47648,10.3803],[13.3069,-7.2319,11.2215],[13.7896,-5.86628,11.5185],[13.3069,-7.2319,11.2215],[13.6022,-7.02574,12.359],[13.7895,-5.90427,13.3177],[13.7896,-5.86628,11.5185],[13.6022,-7.02574,12.359],[13.7895,-5.90427,13.3177],[13.6022,-7.02574,12.359],[13.8658,-7.14777,13.9949],[13.8658,-7.14777,13.9949],[13.8189,-6.03851,14.6776],[13.7895,-5.90427,13.3177],[13.7895,-5.90427,13.3177],[13.8189,-6.03851,14.6776],[13.774,-5.06932,14.1487],[13.8446,-4.87224,13.1814],[13.7895,-5.90427,13.3177],[13.774,-5.06932,14.1487],[13.8349,-4.34983,13.7324],[13.8446,-4.87224,13.1814],[13.774,-5.06932,14.1487],[13.7895,-5.90427,13.3177],[13.8446,-4.87224,13.1814],[13.8641,-5.21632,12.4635],[13.7339,-5.00756,15.4661],[13.774,-5.06932,14.1487],[13.8189,-6.03851,14.6776],[13.8189,-6.03851,14.6776],[13.8592,-6.00496,15.8415],[13.7339,-5.00756,15.4661],[13.8592,-6.00496,15.8415],[13.7817,-5.30118,16.8767],[13.7339,-5.00756,15.4661],[13.7339,-5.00756,15.4661],[13.7817,-5.30118,16.8767],[13.6721,-4.34675,16.4692],[13.7339,-5.00756,15.4661],[13.6721,-4.34675,16.4692],[13.7191,-3.99543,15.6172],[13.7191,-3.99543,15.6172],[13.7828,-4.19515,14.5964],[13.7339,-5.00756,15.4661],[13.7459,-3.28767,16.6306],[13.7191,-3.99543,15.6172],[13.6721,-4.34675,16.4692],[13.6721,-4.34675,16.4692],[13.6502,-4.10374,17.6944],[13.7459,-3.28767,16.6306],[13.7459,-3.28767,16.6306],[13.6502,-4.10374,17.6944],[13.6701,-3.15908,18.0172],[13.9328,-2.25947,17.0255],[13.7459,-3.28767,16.6306],[13.6701,-3.15908,18.0172],[13.726,-2.60763,19.3419],[13.9328,-2.25947,17.0255],[13.6701,-3.15908,18.0172],[13.6273,-3.67844,19.1958],[13.726,-2.60763,19.3419],[13.6701,-3.15908,18.0172],[13.726,-2.60763,19.3419],[13.6273,-3.67844,19.1958],[13.6035,-2.87975,20.1704],[13.726,-2.60763,19.3419],[13.6035,-2.87975,20.1704],[13.8422,-2.19215,19.9504],[14.0917,-1.68287,19.1591],[13.726,-2.60763,19.3419],[13.8422,-2.19215,19.9504],[13.8422,-2.19215,19.9504],[14.2027,-1.60699,19.6549],[14.0917,-1.68287,19.1591],[14.2027,-1.60699,19.6549],[14.3792,-1.30107,19.2592],[14.0917,-1.68287,19.1591],[14.3709,-1.20417,18.6971],[14.0917,-1.68287,19.1591],[14.3792,-1.30107,19.2592],[14.3709,-1.20417,18.6971],[14.3792,-1.30107,19.2592],[14.6641,-1.01143,19.0793],[14.0917,-1.68287,19.1591],[14.3709,-1.20417,18.6971],[14.1157,-1.61354,18.1637],[14.6944,-1.20199,19.3956],[14.3792,-1.30107,19.2592],[14.2027,-1.60699,19.6549],[13.9195,-2.2213,20.6198],[14.2027,-1.60699,19.6549],[13.8422,-2.19215,19.9504],[13.5842,-2.78799,21.0475],[13.9195,-2.2213,20.6198],[13.8422,-2.19215,19.9504],[13.9195,-2.2213,20.6198],[13.5842,-2.78799,21.0475],[13.8551,-2.61124,20.7357],[14.2984,-1.91153,20.1443],[13.9195,-2.2213,20.6198],[13.8551,-2.61124,20.7357],[13.5842,-2.78799,21.0475],[13.4637,-2.85268,21.7435],[13.8551,-2.61124,20.7357],[13.4637,-2.85268,21.7435],[13.067,-3.28451,21.7347],[13.8551,-2.61124,20.7357],[13.067,-3.28451,21.7347],[13.6167,-3.29899,19.9439],[13.8551,-2.61124,20.7357],[14.5958,-2.2277,19.5069],[13.8551,-2.61124,20.7357],[13.6167,-3.29899,19.9439],[13.6167,-3.29899,19.9439],[15.0659,-2.47623,18.1419],[14.5958,-2.2277,19.5069],[13.6167,-3.29899,19.9439],[14.1741,-3.41334,18.4068],[15.0659,-2.47623,18.1419],[14.1741,-3.41334,18.4068],[13.6167,-3.29899,19.9439],[13.1385,-4.16001,18.8681],[13.9524,-4.00143,17.3819],[14.1741,-3.41334,18.4068],[13.1385,-4.16001,18.8681],[12.6767,-4.99188,17.4541],[13.9524,-4.00143,17.3819],[13.1385,-4.16001,18.8681],[13.1385,-4.16001,18.8681],[11.6259,-5.14617,19.1752],[12.6767,-4.99188,17.4541],[12.6767,-4.99188,17.4541],[11.6259,-5.14617,19.1752],[11.2819,-5.9229,17.4687],[11.2819,-5.9229,17.4687],[12.0897,-5.88176,15.9887],[12.6767,-4.99188,17.4541],[12.6767,-4.99188,17.4541],[12.0897,-5.88176,15.9887],[13.6768,-4.78717,15.7536],[12.0897,-5.88176,15.9887],[12.8032,-5.91432,14.4693],[13.6768,-4.78717,15.7536],[13.6768,-4.78717,15.7536],[12.8032,-5.91432,14.4693],[13.9387,-5.19345,14.1195],[13.9387,-5.19345,14.1195],[12.8032,-5.91432,14.4693],[13.4874,-5.92906,13.0233],[13.9387,-5.19345,14.1195],[13.4874,-5.92906,13.0233],[14.5674,-5.14748,12.7294],[14.7299,-4.69238,13.5991],[13.9387,-5.19345,14.1195],[14.5674,-5.14748,12.7294],[15.2655,-4.37285,12.9479],[14.7299,-4.69238,13.5991],[14.5674,-5.14748,12.7294],[15.2142,-4.82919,11.8368],[15.2655,-4.37285,12.9479],[14.5674,-5.14748,12.7294],[15.2142,-4.82919,11.8368],[14.5674,-5.14748,12.7294],[14.2389,-5.82055,11.4303],[15.3143,-5.10939,10.5858],[15.2142,-4.82919,11.8368],[14.2389,-5.82055,11.4303],[14.2389,-5.82055,11.4303],[14.7552,-5.8614,9.56179],[15.3143,-5.10939,10.5858],[16.1656,-4.5008,9.27791],[15.3143,-5.10939,10.5858],[14.7552,-5.8614,9.56179],[14.7552,-5.8614,9.56179],[15.5305,-5.57689,7.42765],[16.1656,-4.5008,9.27791],[16.1656,-4.5008,9.27791],[15.5305,-5.57689,7.42765],[16.6719,-4.33926,7.4458],[16.6719,-4.33926,7.4458],[17.2379,-3.33576,8.17232],[16.1656,-4.5008,9.27791],[16.1656,-4.5008,9.27791],[17.2379,-3.33576,8.17232],[17.0518,-3.17128,9.73949],[16.1656,-4.5008,9.27791],[17.0518,-3.17128,9.73949],[16.4894,-3.79805,10.4259],[15.976,-4.36568,10.7448],[16.1656,-4.5008,9.27791],[16.4894,-3.79805,10.4259],[15.976,-4.36568,10.7448],[16.4894,-3.79805,10.4259],[16.2943,-3.76712,11.2986],[15.851,-4.24735,11.5651],[15.976,-4.36568,10.7448],[16.2943,-3.76712,11.2986],[15.851,-4.24735,11.5651],[16.2943,-3.76712,11.2986],[15.867,-3.91475,12.3365],[15.2142,-4.82919,11.8368],[15.851,-4.24735,11.5651],[15.867,-3.91475,12.3365],[16.2943,-3.76712,11.2986],[16.453,-3.18313,12.164],[15.867,-3.91475,12.3365],[16.453,-3.18313,12.164],[15.9594,-3.35652,13.3854],[15.867,-3.91475,12.3365],[15.9594,-3.35652,13.3854],[15.2655,-4.37285,12.9479],[15.867,-3.91475,12.3365],[15.9594,-3.35652,13.3854],[16.453,-3.18313,12.164],[16.6172,-2.64174,12.8884],[16.453,-3.18313,12.164],[17.054,-2.28956,12.0037],[16.6172,-2.64174,12.8884],[17.054,-2.28956,12.0037],[16.9862,-1.96894,13.0143],[16.6172,-2.64174,12.8884],[17.054,-2.28956,12.0037],[16.453,-3.18313,12.164],[16.8835,-2.99001,11.0132],[16.453,-3.18313,12.164],[16.2943,-3.76712,11.2986],[16.8835,-2.99001,11.0132],[15.976,-4.36568,10.7448],[15.851,-4.24735,11.5651],[15.2142,-4.82919,11.8368],[16.4894,-3.79805,10.4259],[16.8835,-2.99001,11.0132],[16.2943,-3.76712,11.2986],[17.0518,-3.17128,9.73949],[16.8835,-2.99001,11.0132],[16.4894,-3.79805,10.4259],[17.411,-2.36076,10.3694],[16.8835,-2.99001,11.0132],[17.0518,-3.17128,9.73949],[17.7893,-2.27214,8.72709],[17.0518,-3.17128,9.73949],[17.2379,-3.33576,8.17232],[18.0284,-2.08996,7.57734],[17.7893,-2.27214,8.72709],[17.2379,-3.33576,8.17232],[18.0284,-2.08996,7.57734],[17.2379,-3.33576,8.17232],[17.493,-3.34049,6.31362],[18.0284,-2.08996,7.57734],[17.493,-3.34049,6.31362],[18.3801,-1.73094,5.83034],[18.3801,-1.73094,5.83034],[17.493,-3.34049,6.31362],[17.9661,-2.7862,4.36925],[17.493,-3.34049,6.31362],[17.1627,-4.0822,4.8125],[17.9661,-2.7862,4.36925],[17.1627,-4.0822,4.8125],[17.2717,-4.00805,3.24179],[17.9661,-2.7862,4.36925],[17.2717,-4.00805,3.24179],[17.1627,-4.0822,4.8125],[16.1586,-5.34235,4.16241],[16.4541,-5.14537,2.09954],[17.2717,-4.00805,3.24179],[16.1586,-5.34235,4.16241],[16.4541,-5.14537,2.09954],[16.1586,-5.34235,4.16241],[15.0043,-6.59043,2.64666],[15.5113,-6.14875,0.925729],[16.4541,-5.14537,2.09954],[15.0043,-6.59043,2.64666],[15.5113,-6.14875,0.925729],[15.0043,-6.59043,2.64666],[14.1189,-7.33515,1.20536],[15.5113,-6.14875,0.925729],[14.1189,-7.33515,1.20536],[14.5917,-6.33193,0.0725751],[15.5113,-6.14875,0.925729],[14.5917,-6.33193,0.0725751],[15.6552,-5.87341,0.0636201],[15.6552,-5.87341,0.0636201],[16.2255,-5.27845,0.00175619],[15.5113,-6.14875,0.925729],[16.6912,-4.90929,0.727811],[15.5113,-6.14875,0.925729],[16.2255,-5.27845,0.00175619],[16.6912,-4.90929,0.727811],[16.2255,-5.27845,0.00175619],[16.4806,-4.93984,-0.0250258],[16.6912,-4.90929,0.727811],[16.4806,-4.93984,-0.0250258],[15.8023,-4.64877,-0.143644],[17.5253,-3.53106,1.57669],[16.6912,-4.90929,0.727811],[15.8023,-4.64877,-0.143644],[17.5253,-3.53106,1.57669],[15.8023,-4.64877,-0.143644],[16.6834,-3.25455,0.224312],[16.6834,-3.25455,0.224312],[17.8084,-2.76956,0.386693],[17.5253,-3.53106,1.57669],[16.6834,-3.25455,0.224312],[18.0028,-1.09934,0.162481],[17.8084,-2.76956,0.386693],[17.8084,-2.76956,0.386693],[18.0028,-1.09934,0.162481],[18.2445,-1.89851,0.013649],[17.8084,-2.76956,0.386693],[18.2445,-1.89851,0.013649],[18.2187,-2.36139,0.0356789],[18.321,-1.82431,0.3813],[17.8084,-2.76956,0.386693],[18.2187,-2.36139,0.0356789],[18.321,-1.82431,0.3813],[18.2187,-2.36139,0.0356789],[18.2445,-1.89851,0.013649],[16.6834,-3.25455,0.224312],[16.5877,-1.84564,-0.0839601],[18.0028,-1.09934,0.162481],[16.151,0.0978757,-0.117207],[18.0028,-1.09934,0.162481],[16.5877,-1.84564,-0.0839601],[16.151,0.0978757,-0.117207],[16.5877,-1.84564,-0.0839601],[15.0963,-2.92765,-0.136261],[13.4962,-0.887837,-0.0845737],[16.151,0.0978757,-0.117207],[15.0963,-2.92765,-0.136261],[13.4962,-0.887837,-0.0845737],[15.0963,-2.92765,-0.136261],[12.6815,-3.18514,-0.110082],[13.4962,-0.887837,-0.0845737],[12.6815,-3.18514,-0.110082],[11.43,-1.61875,-0.0302262],[11.4633,0.418872,-0.0174398],[13.4962,-0.887837,-0.0845737],[11.43,-1.61875,-0.0302262],[11.43,-1.61875,-0.0302262],[9.51315,-1.01341,0.00398922],[11.4633,0.418872,-0.0174398],[11.4633,0.418872,-0.0174398],[9.51315,-1.01341,0.00398922],[9.1004,1.41025,0.0105939],[11.4633,0.418872,-0.0174398],[9.1004,1.41025,0.0105939],[11.4943,2.71706,-0.00912905],[13.943,1.87722,-0.0885887],[11.4633,0.418872,-0.0174398],[11.4943,2.71706,-0.00912905],[13.943,1.87722,-0.0885887],[11.4943,2.71706,-0.00912905],[13.2765,4.172,-0.0571508],[13.943,1.87722,-0.0885887],[13.2765,4.172,-0.0571508],[15.0933,3.96218,-0.135667],[13.943,1.87722,-0.0885887],[15.0933,3.96218,-0.135667],[16.4735,2.71952,-0.155439],[13.943,1.87722,-0.0885887],[16.4735,2.71952,-0.155439],[16.151,0.0978757,-0.117207],[18.0993,1.3248,0.082305],[16.151,0.0978757,-0.117207],[16.4735,2.71952,-0.155439],[18.0993,1.3248,0.082305],[16.4735,2.71952,-0.155439],[18.2719,3.80122,0.0366073],[16.7844,5.26781,-0.119704],[18.2719,3.80122,0.0366073],[16.4735,2.71952,-0.155439],[18.2719,3.80122,0.0366073],[16.7844,5.26781,-0.119704],[18.3185,5.66547,0.0924644],[18.3185,5.66547,0.0924644],[16.7844,5.26781,-0.119704],[17.5412,7.2905,0.367664],[16.7844,5.26781,-0.119704],[16.1907,7.51198,-0.0972013],[17.5412,7.2905,0.367664],[16.7844,5.26781,-0.119704],[14.7647,5.88237,-0.130192],[16.1907,7.51198,-0.0972013],[14.187,8.26997,-0.141776],[16.1907,7.51198,-0.0972013],[14.7647,5.88237,-0.130192],[14.7647,5.88237,-0.130192],[12.7536,6.12396,-0.0538812],[14.187,8.26997,-0.141776],[12.7536,6.12396,-0.0538812],[11.7697,7.90829,-0.0518703],[14.187,8.26997,-0.141776],[14.187,8.26997,-0.141776],[11.7697,7.90829,-0.0518703],[12.4681,10.1946,-0.130444],[14.187,8.26997,-0.141776],[12.4681,10.1946,-0.130444],[14.7481,10.642,-0.122787],[14.7481,10.642,-0.122787],[15.9853,9.33116,-0.062943],[14.187,8.26997,-0.141776],[14.7481,10.642,-0.122787],[16.1389,10.4532,0.270671],[15.9853,9.33116,-0.062943],[13.036,12.6112,-0.128174],[14.7481,10.642,-0.122787],[12.4681,10.1946,-0.130444],[13.036,12.6112,-0.128174],[12.4681,10.1946,-0.130444],[10.3626,11.9428,-0.10092],[10.7538,15.3161,-0.0987163],[13.036,12.6112,-0.128174],[10.3626,11.9428,-0.10092],[10.3626,11.9428,-0.10092],[9.22841,14.2868,-0.139126],[10.7538,15.3161,-0.0987163],[8.97779,16.0749,-0.167452],[10.7538,15.3161,-0.0987163],[9.22841,14.2868,-0.139126],[8.97779,16.0749,-0.167452],[9.22841,14.2868,-0.139126],[7.89699,14.9427,-0.124448],[8.97779,16.0749,-0.167452],[7.89699,14.9427,-0.124448],[7.20252,16.6975,-0.142704],[8.97779,16.0749,-0.167452],[7.20252,16.6975,-0.142704],[8.49571,17.4343,-0.0296926],[8.97779,16.0749,-0.167452],[8.49571,17.4343,-0.0296926],[10.0303,16.9359,0.13429],[6.05938,14.6933,-0.0775499],[7.20252,16.6975,-0.142704],[7.89699,14.9427,-0.124448],[6.05938,14.6933,-0.0775499],[7.89699,14.9427,-0.124448],[7.86151,12.6829,-0.0506263],[7.86151,12.6829,-0.0506263],[5.60757,11.9844,-0.00603867],[6.05938,14.6933,-0.0775499],[6.05938,14.6933,-0.0775499],[5.60757,11.9844,-0.00603867],[3.94239,13.4931,-0.0234752],[3.94239,13.4931,-0.0234752],[4.11291,16.0444,-0.0913177],[6.05938,14.6933,-0.0775499],[6.05938,14.6933,-0.0775499],[4.11291,16.0444,-0.0913177],[5.59694,16.7369,-0.142292],[4.60815,17.8752,-0.103858],[5.59694,16.7369,-0.142292],[4.11291,16.0444,-0.0913177],[4.11291,16.0444,-0.0913177],[3.29939,17.7284,-0.0898781],[4.60815,17.8752,-0.103858],[2.88616,19.4947,0.137939],[4.60815,17.8752,-0.103858],[3.29939,17.7284,-0.0898781],[2.88616,19.4947,0.137939],[3.29939,17.7284,-0.0898781],[1.45366,17.1725,-0.0839915],[4.92791,19.544,0.233679],[4.60815,17.8752,-0.103858],[2.88616,19.4947,0.137939],[4.92791,19.544,0.233679],[5.9736,17.9483,-0.118965],[4.60815,17.8752,-0.103858],[4.92791,19.544,0.233679],[7.27969,18.2207,0.178827],[5.9736,17.9483,-0.118965],[7.20252,16.6975,-0.142704],[5.9736,17.9483,-0.118965],[7.27969,18.2207,0.178827],[7.20252,16.6975,-0.142704],[5.59694,16.7369,-0.142292],[5.9736,17.9483,-0.118965],[4.11291,16.0444,-0.0913177],[1.45366,17.1725,-0.0839915],[3.29939,17.7284,-0.0898781],[2.38561,14.7876,-0.0443635],[1.45366,17.1725,-0.0839915],[4.11291,16.0444,-0.0913177],[2.38561,14.7876,-0.0443635],[0.616554,14.7109,-0.0372596],[1.45366,17.1725,-0.0839915],[1.45366,17.1725,-0.0839915],[0.616554,14.7109,-0.0372596],[-0.392316,16.395,-0.0941887],[1.45366,17.1725,-0.0839915],[-0.392316,16.395,-0.0941887],[-0.459767,18.4527,-0.145045],[1.45366,17.1725,-0.0839915],[-0.459767,18.4527,-0.145045],[0.990445,19.8869,0.0600543],[-0.459767,18.4527,-0.145045],[-0.617867,20.1346,-0.0123525],[0.990445,19.8869,0.0600543],[-0.182418,20.9833,0.57219],[0.990445,19.8869,0.0600543],[-0.617867,20.1346,-0.0123525],[-0.459767,18.4527,-0.145045],[-2.38676,19.5689,-0.120617],[-0.617867,20.1346,-0.0123525],[-1.30028,20.9582,0.510831],[-0.617867,20.1346,-0.0123525],[-2.38676,19.5689,-0.120617],[-2.68677,21.1372,0.222377],[-1.30028,20.9582,0.510831],[-2.38676,19.5689,-0.120617],[-2.38676,19.5689,-0.120617],[-0.459767,18.4527,-0.145045],[-2.04493,17.0428,-0.121233],[-2.04493,17.0428,-0.121233],[-4.07544,17.6296,-0.141421],[-2.38676,19.5689,-0.120617],[-4.07544,17.6296,-0.141421],[-4.39144,19.6532,-0.177409],[-2.38676,19.5689,-0.120617],[-3.67531,20.6869,-0.0254397],[-2.38676,19.5689,-0.120617],[-4.39144,19.6532,-0.177409],[-4.07544,17.6296,-0.141421],[-6.57654,19.0222,-0.105626],[-4.39144,19.6532,-0.177409],[-5.2318,20.7905,0.19707],[-4.39144,19.6532,-0.177409],[-6.57654,19.0222,-0.105626],[-5.2318,20.7905,0.19707],[-6.57654,19.0222,-0.105626],[-7.26864,20.5861,0.297973],[-4.07544,17.6296,-0.141421],[-5.8481,17.284,-0.123564],[-6.57654,19.0222,-0.105626],[-7.60618,16.675,-0.108955],[-6.57654,19.0222,-0.105626],[-5.8481,17.284,-0.123564],[-7.60618,16.675,-0.108955],[-5.8481,17.284,-0.123564],[-5.00346,15.7033,-0.0637565],[-7.60618,16.675,-0.108955],[-5.00346,15.7033,-0.0637565],[-6.55101,13.9632,-0.0203829],[-6.55101,13.9632,-0.0203829],[-8.65245,14.8975,-0.0545053],[-7.60618,16.675,-0.108955],[-7.60618,16.675,-0.108955],[-8.65245,14.8975,-0.0545053],[-9.89033,16.4249,-0.122206],[-7.60618,16.675,-0.108955],[-9.89033,16.4249,-0.122206],[-9.11683,18.5798,-0.0811],[-11.4352,17.8281,-0.077064],[-9.11683,18.5798,-0.0811],[-9.89033,16.4249,-0.122206],[-11.6605,15.9914,-0.14459],[-11.4352,17.8281,-0.077064],[-9.89033,16.4249,-0.122206],[-11.6605,15.9914,-0.14459],[-9.89033,16.4249,-0.122206],[-10.5412,14.2082,-0.0606518],[-12.9063,14.4142,-0.126758],[-11.6605,15.9914,-0.14459],[-10.5412,14.2082,-0.0606518],[-12.9063,14.4142,-0.126758],[-10.5412,14.2082,-0.0606518],[-11.9059,12.2313,-0.0390191],[-12.9063,14.4142,-0.126758],[-11.9059,12.2313,-0.0390191],[-14.3544,12.3461,-0.112801],[-15.3783,14.5744,-0.139026],[-12.9063,14.4142,-0.126758],[-14.3544,12.3461,-0.112801],[-15.3783,14.5744,-0.139026],[-14.3544,12.3461,-0.112801],[-16.5911,12.41,-0.137444],[-16.5911,12.41,-0.137444],[-17.4364,13.8591,0.112795],[-15.3783,14.5744,-0.139026],[-16.6314,15.2123,0.216849],[-15.3783,14.5744,-0.139026],[-17.4364,13.8591,0.112795],[-16.5911,12.41,-0.137444],[-18.2262,12.5134,0.111021],[-17.4364,13.8591,0.112795],[-17.6561,10.7839,-0.129026],[-18.2262,12.5134,0.111021],[-16.5911,12.41,-0.137444],[-17.6561,10.7839,-0.129026],[-16.5911,12.41,-0.137444],[-15.8223,10.076,-0.119552],[-17.6561,10.7839,-0.129026],[-15.8223,10.076,-0.119552],[-17.8526,8.85697,-0.129089],[-17.8526,8.85697,-0.129089],[-19.11,9.85245,0.195959],[-17.6561,10.7839,-0.129026],[-17.8526,8.85697,-0.129089],[-19.3871,7.9291,0.10824],[-19.11,9.85245,0.195959],[-19.3871,7.9291,0.10824],[-17.8526,8.85697,-0.129089],[-18.0993,6.66331,-0.133357],[-19.5347,5.72845,0.27676],[-19.3871,7.9291,0.10824],[-18.0993,6.66331,-0.133357],[-18.2367,4.27003,-0.0904455],[-19.5347,5.72845,0.27676],[-18.0993,6.66331,-0.133357],[-18.0993,6.66331,-0.133357],[-16.5222,5.50812,-0.124578],[-18.2367,4.27003,-0.0904455],[-18.2367,4.27003,-0.0904455],[-16.5222,5.50812,-0.124578],[-16.536,3.66263,-0.147642],[-18.2367,4.27003,-0.0904455],[-16.536,3.66263,-0.147642],[-17.4982,2.11551,-0.156209],[-18.2367,4.27003,-0.0904455],[-17.4982,2.11551,-0.156209],[-18.9776,2.39222,0.0830183],[-19.5651,3.84335,0.755346],[-18.2367,4.27003,-0.0904455],[-18.9776,2.39222,0.0830183],[-18.3785,0.282212,0.156855],[-18.9776,2.39222,0.0830183],[-17.4982,2.11551,-0.156209],[-18.3785,0.282212,0.156855],[-17.4982,2.11551,-0.156209],[-16.5709,0.0905385,-0.124577],[-18.3785,0.282212,0.156855],[-16.5709,0.0905385,-0.124577],[-17.2624,-1.60057,0.240973],[-16.5709,0.0905385,-0.124577],[-15.5978,-1.98244,-0.107985],[-17.2624,-1.60057,0.240973],[-15.5978,-1.98244,-0.107985],[-16.5709,0.0905385,-0.124577],[-14.4541,0.040713,-0.106695],[-15.5978,-1.98244,-0.107985],[-14.4541,0.040713,-0.106695],[-13.2935,-1.79149,-0.111659],[-15.5978,-1.98244,-0.107985],[-13.2935,-1.79149,-0.111659],[-14.1532,-3.60318,-0.150682],[-15.5978,-1.98244,-0.107985],[-14.1532,-3.60318,-0.150682],[-15.6968,-3.61656,-0.00345469],[-15.6968,-3.61656,-0.00345469],[-14.1532,-3.60318,-0.150682],[-14.7662,-5.01662,0.160693],[-13.1608,-5.19169,-0.0920229],[-14.7662,-5.01662,0.160693],[-14.1532,-3.60318,-0.150682],[-11.7891,-3.55766,-0.127288],[-13.1608,-5.19169,-0.0920229],[-14.1532,-3.60318,-0.150682],[-13.1608,-5.19169,-0.0920229],[-11.7891,-3.55766,-0.127288],[-11.0956,-5.34538,-0.178078],[-13.1608,-5.19169,-0.0920229],[-11.0956,-5.34538,-0.178078],[-10.3144,-6.92091,-0.155144],[-10.3144,-6.92091,-0.155144],[-12.4907,-6.97809,0.189942],[-13.1608,-5.19169,-0.0920229],[-12.4907,-6.97809,0.189942],[-10.3144,-6.92091,-0.155144],[-10.4905,-8.37702,0.100178],[-10.3144,-6.92091,-0.155144],[-8.6267,-7.83358,-0.150611],[-10.4905,-8.37702,0.100178],[-9.07202,-9.32217,0.176716],[-10.4905,-8.37702,0.100178],[-8.6267,-7.83358,-0.150611],[-7.40933,-9.84081,0.239266],[-9.07202,-9.32217,0.176716],[-8.6267,-7.83358,-0.150611],[-8.6267,-7.83358,-0.150611],[-6.33237,-8.65155,-0.152785],[-7.40933,-9.84081,0.239266],[-7.40933,-9.84081,0.239266],[-6.33237,-8.65155,-0.152785],[-5.72235,-10.1444,0.168244],[-6.33237,-8.65155,-0.152785],[-4.31953,-9.27676,-0.127886],[-5.72235,-10.1444,0.168244],[-4.29371,-10.641,0.364721],[-5.72235,-10.1444,0.168244],[-4.31953,-9.27676,-0.127886],[-4.31953,-9.27676,-0.127886],[-6.33237,-8.65155,-0.152785],[-5.01368,-7.51991,-0.158027],[-2.80013,-7.10195,-0.131535],[-4.31953,-9.27676,-0.127886],[-5.01368,-7.51991,-0.158027],[-2.80013,-7.10195,-0.131535],[-5.01368,-7.51991,-0.158027],[-4.83332,-5.687,-0.0678959],[-4.83332,-5.687,-0.0678959],[-3.12694,-4.89199,-0.0325365],[-2.80013,-7.10195,-0.131535],[-2.80013,-7.10195,-0.131535],[-3.12694,-4.89199,-0.0325365],[-1.13517,-5.0911,-0.0503325],[-2.80013,-7.10195,-0.131535],[-1.13517,-5.0911,-0.0503325],[-0.013553,-7.37942,-0.138295],[-2.80013,-7.10195,-0.131535],[-0.013553,-7.37942,-0.138295],[-1.1976,-9.5166,-0.122993],[1.00248,-9.57705,-0.0792117],[-1.1976,-9.5166,-0.122993],[-0.013553,-7.37942,-0.138295],[1.00248,-9.57705,-0.0792117],[-0.013553,-7.37942,-0.138295],[2.50552,-7.62814,-0.130185],[1.00248,-9.57705,-0.0792117],[2.50552,-7.62814,-0.130185],[3.58441,-9.68674,-0.056437],[3.58441,-9.68674,-0.056437],[1.93813,-10.5809,0.262577],[1.00248,-9.57705,-0.0792117],[2.50552,-7.62814,-0.130185],[5.0114,-8.00616,-0.145271],[3.58441,-9.68674,-0.056437],[6.12621,-9.68192,-0.080956],[3.58441,-9.68674,-0.056437],[5.0114,-8.00616,-0.145271],[6.12621,-9.68192,-0.080956],[5.0114,-8.00616,-0.145271],[7.35186,-8.25656,-0.123348],[7.90876,-9.56317,0.140973],[6.12621,-9.68192,-0.080956],[7.35186,-8.25656,-0.123348],[6.56714,-6.57742,-0.0934243],[7.35186,-8.25656,-0.123348],[5.0114,-8.00616,-0.145271],[6.56714,-6.57742,-0.0934243],[5.0114,-8.00616,-0.145271],[4.0121,-5.75187,-0.0600772],[4.0121,-5.75187,-0.0600772],[5.91639,-5.1537,-0.0285039],[6.56714,-6.57742,-0.0934243],[7.78914,-4.95326,-0.0494237],[6.56714,-6.57742,-0.0934243],[5.91639,-5.1537,-0.0285039],[7.78914,-4.95326,-0.0494237],[5.91639,-5.1537,-0.0285039],[5.3847,-3.27968,0.00213814],[5.3847,-3.27968,0.00213814],[7.6743,-2.38519,0.00241995],[7.78914,-4.95326,-0.0494237],[10.073,-3.48833,-0.0517697],[7.78914,-4.95326,-0.0494237],[7.6743,-2.38519,0.00241995],[10.073,-3.48833,-0.0517697],[7.6743,-2.38519,0.00241995],[9.51315,-1.01341,0.00398922],[7.6999,-0.430349,0.0129595],[9.51315,-1.01341,0.00398922],[7.6743,-2.38519,0.00241995],[7.6999,-0.430349,0.0129595],[7.6743,-2.38519,0.00241995],[5.91535,-1.11562,0.0103064],[7.6999,-0.430349,0.0129595],[5.91535,-1.11562,0.0103064],[6.62119,1.00928,0.00734806],[7.6999,-0.430349,0.0129595],[6.62119,1.00928,0.00734806],[9.1004,1.41025,0.0105939],[7.56972,3.36291,0.00865269],[9.1004,1.41025,0.0105939],[6.62119,1.00928,0.00734806],[5.24684,2.71839,0.00185728],[7.56972,3.36291,0.00865269],[6.62119,1.00928,0.00734806],[5.24684,2.71839,0.00185728],[6.62119,1.00928,0.00734806],[4.51586,0.34786,0.00431204],[3.08506,1.86481,0.000208378],[5.24684,2.71839,0.00185728],[4.51586,0.34786,0.00431204],[3.08506,1.86481,0.000208378],[4.51586,0.34786,0.00431204],[2.52264,-0.393682,0.00452566],[2.52264,-0.393682,0.00452566],[1.06931,1.00755,0.00131893],[3.08506,1.86481,0.000208378],[3.08506,1.86481,0.000208378],[1.06931,1.00755,0.00131893],[1.48197,3.33202,-0.000977039],[3.69457,4.31086,-0.000101566],[3.08506,1.86481,0.000208378],[1.48197,3.33202,-0.000977039],[3.69457,4.31086,-0.000101566],[1.48197,3.33202,-0.000977039],[1.88441,6.05941,6.86646e-005],[3.69457,4.31086,-0.000101566],[1.88441,6.05941,6.86646e-005],[4.1898,6.47877,0.002707],[4.1898,6.47877,0.002707],[6.16601,5.53608,0.00562239],[3.69457,4.31086,-0.000101566],[3.69457,4.31086,-0.000101566],[6.16601,5.53608,0.00562239],[5.24684,2.71839,0.00185728],[6.16601,5.53608,0.00562239],[4.1898,6.47877,0.002707],[5.67081,8.11123,0.00883293],[6.16601,5.53608,0.00562239],[5.67081,8.11123,0.00883293],[8.07878,8.11924,0.00559664],[8.71483,5.71153,0.0118113],[6.16601,5.53608,0.00562239],[8.07878,8.11924,0.00559664],[8.07878,8.11924,0.00559664],[9.93812,7.42117,-0.000306129],[8.71483,5.71153,0.0118113],[8.71483,5.71153,0.0118113],[9.93812,7.42117,-0.000306129],[10.7706,5.93493,-0.000195026],[8.71483,5.71153,0.0118113],[10.7706,5.93493,-0.000195026],[9.83994,3.93163,0.0128937],[8.71483,5.71153,0.0118113],[9.83994,3.93163,0.0128937],[7.56972,3.36291,0.00865269],[11.6067,4.56398,-0.00301218],[9.83994,3.93163,0.0128937],[10.7706,5.93493,-0.000195026],[12.7536,6.12396,-0.0538812],[11.6067,4.56398,-0.00301218],[10.7706,5.93493,-0.000195026],[12.7536,6.12396,-0.0538812],[13.2765,4.172,-0.0571508],[11.6067,4.56398,-0.00301218],[9.83994,3.93163,0.0128937],[11.6067,4.56398,-0.00301218],[11.4943,2.71706,-0.00912905],[9.93812,7.42117,-0.000306129],[11.7697,7.90829,-0.0518703],[10.7706,5.93493,-0.000195026],[10.2593,9.39073,-0.0385604],[11.7697,7.90829,-0.0518703],[9.93812,7.42117,-0.000306129],[9.93812,7.42117,-0.000306129],[8.07878,8.11924,0.00559664],[10.2593,9.39073,-0.0385604],[8.7265,10.4839,-0.0195432],[10.2593,9.39073,-0.0385604],[8.07878,8.11924,0.00559664],[6.88118,10.2158,0.00442934],[8.7265,10.4839,-0.0195432],[8.07878,8.11924,0.00559664],[8.7265,10.4839,-0.0195432],[6.88118,10.2158,0.00442934],[7.86151,12.6829,-0.0506263],[7.86151,12.6829,-0.0506263],[10.3626,11.9428,-0.10092],[8.7265,10.4839,-0.0195432],[8.7265,10.4839,-0.0195432],[10.3626,11.9428,-0.10092],[10.2593,9.39073,-0.0385604],[7.56972,3.36291,0.00865269],[6.16601,5.53608,0.00562239],[8.71483,5.71153,0.0118113],[6.88118,10.2158,0.00442934],[8.07878,8.11924,0.00559664],[5.67081,8.11123,0.00883293],[5.07542,9.93069,0.010654],[6.88118,10.2158,0.00442934],[5.67081,8.11123,0.00883293],[5.07542,9.93069,0.010654],[5.67081,8.11123,0.00883293],[3.4064,8.47637,0.0057416],[5.07542,9.93069,0.010654],[3.4064,8.47637,0.0057416],[3.63791,11.0047,0.00614309],[5.60757,11.9844,-0.00603867],[5.07542,9.93069,0.010654],[3.63791,11.0047,0.00614309],[3.63791,11.0047,0.00614309],[3.4064,8.47637,0.0057416],[1.77762,9.99283,0.00557518],[3.63791,11.0047,0.00614309],[1.77762,9.99283,0.00557518],[1.77012,12.5134,-0.00319767],[3.63791,11.0047,0.00614309],[1.77012,12.5134,-0.00319767],[3.94239,13.4931,-0.0234752],[1.77012,12.5134,-0.00319767],[2.38561,14.7876,-0.0443635],[3.94239,13.4931,-0.0234752],[0.0477361,11.0177,0.00748348],[1.77012,12.5134,-0.00319767],[1.77762,9.99283,0.00557518],[0.177537,9.15658,0.0036459],[0.0477361,11.0177,0.00748348],[1.77762,9.99283,0.00557518],[0.177537,9.15658,0.0036459],[1.77762,9.99283,0.00557518],[1.32977,8.13015,0.00192165],[0.177537,9.15658,0.0036459],[1.32977,8.13015,0.00192165],[-0.833808,7.19411,4.81606e-005],[-1.74047,9.78021,0.00553274],[0.177537,9.15658,0.0036459],[-0.833808,7.19411,4.81606e-005],[-0.833808,7.19411,4.81606e-005],[-2.94577,8.26482,0.000659943],[-1.74047,9.78021,0.00553274],[-1.74047,9.78021,0.00553274],[-2.94577,8.26482,0.000659943],[-4.01476,9.8843,0.00511885],[-1.74047,9.78021,0.00553274],[-4.01476,9.8843,0.00511885],[-3.2619,11.3807,0.00925112],[-1.74047,9.78021,0.00553274],[-3.2619,11.3807,0.00925112],[-1.7556,12.141,0.00651979],[0.0477361,11.0177,0.00748348],[-1.74047,9.78021,0.00553274],[-1.7556,12.141,0.00651979],[-1.7556,12.141,0.00651979],[-0.175106,12.9361,-0.000173092],[0.0477361,11.0177,0.00748348],[-1.57926,14.589,-0.0321898],[-0.175106,12.9361,-0.000173092],[-1.7556,12.141,0.00651979],[-3.82676,13.5572,-0.00525427],[-1.57926,14.589,-0.0321898],[-1.7556,12.141,0.00651979],[-3.82676,13.5572,-0.00525427],[-3.3497,15.6754,-0.0609956],[-1.57926,14.589,-0.0321898],[-2.04493,17.0428,-0.121233],[-1.57926,14.589,-0.0321898],[-3.3497,15.6754,-0.0609956],[-1.57926,14.589,-0.0321898],[-2.04493,17.0428,-0.121233],[-0.392316,16.395,-0.0941887],[-3.82676,13.5572,-0.00525427],[-5.00346,15.7033,-0.0637565],[-3.3497,15.6754,-0.0609956],[-5.00346,15.7033,-0.0637565],[-4.07544,17.6296,-0.141421],[-3.3497,15.6754,-0.0609956],[-1.57926,14.589,-0.0321898],[0.616554,14.7109,-0.0372596],[-0.175106,12.9361,-0.000173092],[1.77012,12.5134,-0.00319767],[-0.175106,12.9361,-0.000173092],[0.616554,14.7109,-0.0372596],[-1.7556,12.141,0.00651979],[-3.2619,11.3807,0.00925112],[-3.82676,13.5572,-0.00525427],[-3.2619,11.3807,0.00925112],[-5.12877,11.8147,0.00671387],[-3.82676,13.5572,-0.00525427],[-3.82676,13.5572,-0.00525427],[-5.12877,11.8147,0.00671387],[-6.55101,13.9632,-0.0203829],[-6.9463,12.0222,0.00828362],[-6.55101,13.9632,-0.0203829],[-5.12877,11.8147,0.00671387],[-6.9463,12.0222,0.00828362],[-5.12877,11.8147,0.00671387],[-6.20324,10.2553,0.00793457],[-6.20324,10.2553,0.00793457],[-8.30564,11.0576,0.0115829],[-6.9463,12.0222,0.00828362],[-8.52872,13.0654,-0.00448561],[-6.9463,12.0222,0.00828362],[-8.30564,11.0576,0.0115829],[-8.52872,13.0654,-0.00448561],[-8.30564,11.0576,0.0115829],[-9.96072,12.1331,-0.000797749],[-8.52872,13.0654,-0.00448561],[-9.96072,12.1331,-0.000797749],[-10.5412,14.2082,-0.0606518],[-8.52872,13.0654,-0.00448561],[-10.5412,14.2082,-0.0606518],[-8.65245,14.8975,-0.0545053],[-10.4051,9.99889,0.00568199],[-9.96072,12.1331,-0.000797749],[-8.30564,11.0576,0.0115829],[-10.4051,9.99889,0.00568199],[-8.30564,11.0576,0.0115829],[-7.79362,8.85814,0.00750065],[-7.79362,8.85814,0.00750065],[-9.67257,7.4072,0.0105634],[-10.4051,9.99889,0.00568199],[-11.9922,8.0428,0.0073061],[-10.4051,9.99889,0.00568199],[-9.67257,7.4072,0.0105634],[-11.9922,8.0428,0.0073061],[-9.67257,7.4072,0.0105634],[-11.2632,6.22917,0.0142546],[-11.9922,8.0428,0.0073061],[-11.2632,6.22917,0.0142546],[-13.1926,6.28285,0.000249386],[-13.1926,6.28285,0.000249386],[-14.27,8.11255,-0.0346527],[-11.9922,8.0428,0.0073061],[-13.1493,10.1552,-0.0342097],[-11.9922,8.0428,0.0073061],[-14.27,8.11255,-0.0346527],[-13.1493,10.1552,-0.0342097],[-14.27,8.11255,-0.0346527],[-15.8223,10.076,-0.119552],[-13.1493,10.1552,-0.0342097],[-15.8223,10.076,-0.119552],[-14.3544,12.3461,-0.112801],[-16.3227,7.62421,-0.113996],[-15.8223,10.076,-0.119552],[-14.27,8.11255,-0.0346527],[-16.3227,7.62421,-0.113996],[-14.27,8.11255,-0.0346527],[-14.9981,6.39124,-0.0478692],[-16.3227,7.62421,-0.113996],[-14.9981,6.39124,-0.0478692],[-16.5222,5.50812,-0.124578],[-14.5602,4.36133,-0.0541415],[-16.5222,5.50812,-0.124578],[-14.9981,6.39124,-0.0478692],[-14.5602,4.36133,-0.0541415],[-14.9981,6.39124,-0.0478692],[-13.1926,6.28285,0.000249386],[-14.5602,4.36133,-0.0541415],[-13.1926,6.28285,0.000249386],[-12.0044,4.4797,0.00405645],[-14.5602,4.36133,-0.0541415],[-12.0044,4.4797,0.00405645],[-12.9117,2.08428,-0.0288858],[-12.9117,2.08428,-0.0288858],[-15.4956,2.05399,-0.122144],[-14.5602,4.36133,-0.0541415],[-14.5602,4.36133,-0.0541415],[-15.4956,2.05399,-0.122144],[-16.536,3.66263,-0.147642],[-12.9117,2.08428,-0.0288858],[-14.4541,0.040713,-0.106695],[-15.4956,2.05399,-0.122144],[-14.4541,0.040713,-0.106695],[-12.9117,2.08428,-0.0288858],[-12.4657,-0.058319,-0.0399399],[-10.5765,0.782078,0.00349474],[-12.4657,-0.058319,-0.0399399],[-12.9117,2.08428,-0.0288858],[-10.6586,2.96757,0.00796938],[-10.5765,0.782078,0.00349474],[-12.9117,2.08428,-0.0288858],[-10.6586,2.96757,0.00796938],[-8.28859,2.62125,0.00747061],[-10.5765,0.782078,0.00349474],[-10.5765,0.782078,0.00349474],[-8.28859,2.62125,0.00747061],[-8.58863,0.910035,0.0121675],[-10.5765,0.782078,0.00349474],[-8.58863,0.910035,0.0121675],[-8.8796,-0.689583,0.00654173],[-8.8796,-0.689583,0.00654173],[-11.0011,-1.37268,-0.035831],[-10.5765,0.782078,0.00349474],[-8.8796,-0.689583,0.00654173],[-8.96696,-2.86856,-0.0384183],[-11.0011,-1.37268,-0.035831],[-11.7891,-3.55766,-0.127288],[-11.0011,-1.37268,-0.035831],[-8.96696,-2.86856,-0.0384183],[-11.7891,-3.55766,-0.127288],[-8.96696,-2.86856,-0.0384183],[-9.0053,-5.54405,-0.13757],[-9.0053,-5.54405,-0.13757],[-8.96696,-2.86856,-0.0384183],[-6.75581,-4.33386,-0.0410128],[-9.0053,-5.54405,-0.13757],[-6.75581,-4.33386,-0.0410128],[-6.78258,-6.62394,-0.134675],[-6.78258,-6.62394,-0.134675],[-8.6267,-7.83358,-0.150611],[-9.0053,-5.54405,-0.13757],[-4.83332,-5.687,-0.0678959],[-6.78258,-6.62394,-0.134675],[-6.75581,-4.33386,-0.0410128],[-4.83332,-5.687,-0.0678959],[-6.75581,-4.33386,-0.0410128],[-4.56444,-3.56603,0.00114155],[-6.31584,-1.7635,0.00721264],[-4.56444,-3.56603,0.00114155],[-6.75581,-4.33386,-0.0410128],[-6.31584,-1.7635,0.00721264],[-4.035,-1.84736,0.0132146],[-4.56444,-3.56603,0.00114155],[-2.34129,-2.9879,0.00421858],[-4.56444,-3.56603,0.00114155],[-4.035,-1.84736,0.0132146],[-4.035,-1.84736,0.0132146],[-2.51478,-0.868871,0.00746679],[-2.34129,-2.9879,0.00421858],[-2.34129,-2.9879,0.00421858],[-2.51478,-0.868871,0.00746679],[-1.01049,-1.5782,0.00770855],[-2.34129,-2.9879,0.00421858],[-1.01049,-1.5782,0.00770855],[-0.0579398,-3.05862,-0.0020895],[-2.34129,-2.9879,0.00421858],[-0.0579398,-3.05862,-0.0020895],[-1.13517,-5.0911,-0.0503325],[1.51419,-5.03983,-0.0479002],[-1.13517,-5.0911,-0.0503325],[-0.0579398,-3.05862,-0.0020895],[-0.0579398,-3.05862,-0.0020895],[1.97233,-2.54249,0.00144339],[1.51419,-5.03983,-0.0479002],[1.51419,-5.03983,-0.0479002],[1.97233,-2.54249,0.00144339],[3.33706,-3.69781,-0.0049696],[1.51419,-5.03983,-0.0479002],[3.33706,-3.69781,-0.0049696],[4.0121,-5.75187,-0.0600772],[1.51419,-5.03983,-0.0479002],[4.0121,-5.75187,-0.0600772],[2.50552,-7.62814,-0.130185],[5.3847,-3.27968,0.00213814],[4.0121,-5.75187,-0.0600772],[3.33706,-3.69781,-0.0049696],[5.3847,-3.27968,0.00213814],[3.33706,-3.69781,-0.0049696],[3.91089,-1.8065,0.00873804],[3.91089,-1.8065,0.00873804],[5.91535,-1.11562,0.0103064],[5.3847,-3.27968,0.00213814],[5.91535,-1.11562,0.0103064],[3.91089,-1.8065,0.00873804],[4.51586,0.34786,0.00431204],[1.97233,-2.54249,0.00144339],[3.91089,-1.8065,0.00873804],[3.33706,-3.69781,-0.0049696],[3.91089,-1.8065,0.00873804],[1.97233,-2.54249,0.00144339],[2.52264,-0.393682,0.00452566],[2.52264,-0.393682,0.00452566],[1.97233,-2.54249,0.00144339],[0.62164,-1.08569,0.00553703],[1.97233,-2.54249,0.00144339],[-0.0579398,-3.05862,-0.0020895],[0.62164,-1.08569,0.00553703],[0.62164,-1.08569,0.00553703],[-0.0579398,-3.05862,-0.0020895],[-1.01049,-1.5782,0.00770855],[0.62164,-1.08569,0.00553703],[-1.01049,-1.5782,0.00770855],[-0.808227,0.139128,0.00324535],[0.62164,-1.08569,0.00553703],[-0.808227,0.139128,0.00324535],[1.06931,1.00755,0.00131893],[-0.580478,2.24255,-0.000468731],[1.06931,1.00755,0.00131893],[-0.808227,0.139128,0.00324535],[-0.808227,0.139128,0.00324535],[-2.52808,1.14002,0.00157499],[-0.580478,2.24255,-0.000468731],[-2.45616,3.27442,-0.00102997],[-0.580478,2.24255,-0.000468731],[-2.52808,1.14002,0.00157499],[-4.4802,2.08508,0.00130415],[-2.45616,3.27442,-0.00102997],[-2.52808,1.14002,0.00157499],[-4.41344,-0.0548989,0.00735474],[-4.4802,2.08508,0.00130415],[-2.52808,1.14002,0.00157499],[-4.41344,-0.0548989,0.00735474],[-2.52808,1.14002,0.00157499],[-2.51478,-0.868871,0.00746679],[-6.57643,0.980127,0.00765562],[-4.4802,2.08508,0.00130415],[-4.41344,-0.0548989,0.00735474],[-4.41344,-0.0548989,0.00735474],[-6.31584,-1.7635,0.00721264],[-6.57643,0.980127,0.00765562],[-8.8796,-0.689583,0.00654173],[-6.57643,0.980127,0.00765562],[-6.31584,-1.7635,0.00721264],[-4.4802,2.08508,0.00130415],[-6.57643,0.980127,0.00765562],[-6.23801,2.84273,0.00181675],[-4.65892,4.36029,-0.000929832],[-4.4802,2.08508,0.00130415],[-6.23801,2.84273,0.00181675],[-4.65892,4.36029,-0.000929832],[-6.23801,2.84273,0.00181675],[-7.13491,4.21187,0.00221443],[-4.65892,4.36029,-0.000929832],[-7.13491,4.21187,0.00221443],[-7.13138,6.43783,0.00291777],[-7.13138,6.43783,0.00291777],[-5.01836,6.36881,-0.00102949],[-4.65892,4.36029,-0.000929832],[-3.30742,6.74982,-0.00118589],[-4.65892,4.36029,-0.000929832],[-5.01836,6.36881,-0.00102949],[-3.30742,6.74982,-0.00118589],[-5.01836,6.36881,-0.00102949],[-5.14529,8.05532,0.00142527],[-5.14529,8.05532,0.00142527],[-2.94577,8.26482,0.000659943],[-3.30742,6.74982,-0.00118589],[-4.65892,4.36029,-0.000929832],[-3.30742,6.74982,-0.00118589],[-2.29011,5.2154,-0.00131607],[-2.29011,5.2154,-0.00131607],[-2.45616,3.27442,-0.00102997],[-4.65892,4.36029,-0.000929832],[-0.422206,4.54623,-0.00112867],[-2.45616,3.27442,-0.00102997],[-2.29011,5.2154,-0.00131607],[-0.833808,7.19411,4.81606e-005],[-0.422206,4.54623,-0.00112867],[-2.29011,5.2154,-0.00131607],[-0.422206,4.54623,-0.00112867],[-0.833808,7.19411,4.81606e-005],[1.88441,6.05941,6.86646e-005],[-0.833808,7.19411,4.81606e-005],[-2.29011,5.2154,-0.00131607],[-3.30742,6.74982,-0.00118589],[-7.13138,6.43783,0.00291777],[-5.14529,8.05532,0.00142527],[-5.01836,6.36881,-0.00102949],[-5.14529,8.05532,0.00142527],[-7.13138,6.43783,0.00291777],[-7.79362,8.85814,0.00750065],[-5.14529,8.05532,0.00142527],[-7.79362,8.85814,0.00750065],[-6.20324,10.2553,0.00793457],[-5.14529,8.05532,0.00142527],[-6.20324,10.2553,0.00793457],[-4.01476,9.8843,0.00511885],[-9.45483,4.90017,0.00888681],[-7.13138,6.43783,0.00291777],[-7.13491,4.21187,0.00221443],[-9.45483,4.90017,0.00888681],[-7.13491,4.21187,0.00221443],[-8.28859,2.62125,0.00747061],[-9.67257,7.4072,0.0105634],[-7.13138,6.43783,0.00291777],[-9.45483,4.90017,0.00888681],[-8.28859,2.62125,0.00747061],[-7.13491,4.21187,0.00221443],[-6.23801,2.84273,0.00181675],[-8.28859,2.62125,0.00747061],[-6.23801,2.84273,0.00181675],[-6.57643,0.980127,0.00765562],[-2.45616,3.27442,-0.00102997],[-4.4802,2.08508,0.00130415],[-4.65892,4.36029,-0.000929832],[-2.45616,3.27442,-0.00102997],[-0.422206,4.54623,-0.00112867],[-0.580478,2.24255,-0.000468731],[-0.580478,2.24255,-0.000468731],[-0.422206,4.54623,-0.00112867],[1.48197,3.33202,-0.000977039],[-0.808227,0.139128,0.00324535],[-2.51478,-0.868871,0.00746679],[-2.52808,1.14002,0.00157499],[-2.51478,-0.868871,0.00746679],[-0.808227,0.139128,0.00324535],[-1.01049,-1.5782,0.00770855],[-2.51478,-0.868871,0.00746679],[-4.035,-1.84736,0.0132146],[-4.41344,-0.0548989,0.00735474],[-2.34129,-2.9879,0.00421858],[-3.12694,-4.89199,-0.0325365],[-4.56444,-3.56603,0.00114155],[-4.41344,-0.0548989,0.00735474],[-4.035,-1.84736,0.0132146],[-6.31584,-1.7635,0.00721264],[-6.31584,-1.7635,0.00721264],[-6.75581,-4.33386,-0.0410128],[-8.96696,-2.86856,-0.0384183],[-11.7891,-3.55766,-0.127288],[-13.2935,-1.79149,-0.111659],[-11.0011,-1.37268,-0.035831],[-12.4657,-0.058319,-0.0399399],[-11.0011,-1.37268,-0.035831],[-13.2935,-1.79149,-0.111659],[-6.31584,-1.7635,0.00721264],[-8.96696,-2.86856,-0.0384183],[-8.8796,-0.689583,0.00654173],[-6.57643,0.980127,0.00765562],[-8.8796,-0.689583,0.00654173],[-8.58863,0.910035,0.0121675],[-6.57643,0.980127,0.00765562],[-8.58863,0.910035,0.0121675],[-8.28859,2.62125,0.00747061],[-9.45483,4.90017,0.00888681],[-8.28859,2.62125,0.00747061],[-10.6586,2.96757,0.00796938],[-10.6586,2.96757,0.00796938],[-12.0044,4.4797,0.00405645],[-9.45483,4.90017,0.00888681],[-9.45483,4.90017,0.00888681],[-12.0044,4.4797,0.00405645],[-11.2632,6.22917,0.0142546],[-12.4657,-0.058319,-0.0399399],[-10.5765,0.782078,0.00349474],[-11.0011,-1.37268,-0.035831],[-10.6586,2.96757,0.00796938],[-12.9117,2.08428,-0.0288858],[-12.0044,4.4797,0.00405645],[-13.1926,6.28285,0.000249386],[-14.9981,6.39124,-0.0478692],[-14.27,8.11255,-0.0346527],[-13.1926,6.28285,0.000249386],[-11.2632,6.22917,0.0142546],[-12.0044,4.4797,0.00405645],[-9.45483,4.90017,0.00888681],[-11.2632,6.22917,0.0142546],[-9.67257,7.4072,0.0105634],[-13.1493,10.1552,-0.0342097],[-10.4051,9.99889,0.00568199],[-11.9922,8.0428,0.0073061],[-13.1493,10.1552,-0.0342097],[-11.9059,12.2313,-0.0390191],[-10.4051,9.99889,0.00568199],[-9.67257,7.4072,0.0105634],[-7.79362,8.85814,0.00750065],[-7.13138,6.43783,0.00291777],[-11.9059,12.2313,-0.0390191],[-9.96072,12.1331,-0.000797749],[-10.4051,9.99889,0.00568199],[-8.30564,11.0576,0.0115829],[-6.20324,10.2553,0.00793457],[-7.79362,8.85814,0.00750065],[-6.20324,10.2553,0.00793457],[-5.12877,11.8147,0.00671387],[-4.01476,9.8843,0.00511885],[-8.52872,13.0654,-0.00448561],[-6.55101,13.9632,-0.0203829],[-6.9463,12.0222,0.00828362],[-3.2619,11.3807,0.00925112],[-4.01476,9.8843,0.00511885],[-5.12877,11.8147,0.00671387],[-5.14529,8.05532,0.00142527],[-4.01476,9.8843,0.00511885],[-2.94577,8.26482,0.000659943],[-0.833808,7.19411,4.81606e-005],[-3.30742,6.74982,-0.00118589],[-2.94577,8.26482,0.000659943],[-0.833808,7.19411,4.81606e-005],[1.32977,8.13015,0.00192165],[1.88441,6.05941,6.86646e-005],[1.88441,6.05941,6.86646e-005],[1.32977,8.13015,0.00192165],[3.4064,8.47637,0.0057416],[-1.74047,9.78021,0.00553274],[0.0477361,11.0177,0.00748348],[0.177537,9.15658,0.0036459],[1.77012,12.5134,-0.00319767],[0.0477361,11.0177,0.00748348],[-0.175106,12.9361,-0.000173092],[3.4064,8.47637,0.0057416],[1.32977,8.13015,0.00192165],[1.77762,9.99283,0.00557518],[5.07542,9.93069,0.010654],[5.60757,11.9844,-0.00603867],[6.88118,10.2158,0.00442934],[4.1898,6.47877,0.002707],[3.4064,8.47637,0.0057416],[5.67081,8.11123,0.00883293],[4.1898,6.47877,0.002707],[1.88441,6.05941,6.86646e-005],[3.4064,8.47637,0.0057416],[-0.422206,4.54623,-0.00112867],[1.88441,6.05941,6.86646e-005],[1.48197,3.33202,-0.000977039],[-0.580478,2.24255,-0.000468731],[1.48197,3.33202,-0.000977039],[1.06931,1.00755,0.00131893],[2.52264,-0.393682,0.00452566],[0.62164,-1.08569,0.00553703],[1.06931,1.00755,0.00131893],[3.91089,-1.8065,0.00873804],[2.52264,-0.393682,0.00452566],[4.51586,0.34786,0.00431204],[3.69457,4.31086,-0.000101566],[5.24684,2.71839,0.00185728],[3.08506,1.86481,0.000208378],[7.56972,3.36291,0.00865269],[5.24684,2.71839,0.00185728],[6.16601,5.53608,0.00562239],[9.83994,3.93163,0.0128937],[9.1004,1.41025,0.0105939],[7.56972,3.36291,0.00865269],[4.51586,0.34786,0.00431204],[6.62119,1.00928,0.00734806],[5.91535,-1.11562,0.0103064],[10.073,-3.48833,-0.0517697],[9.72961,-5.96985,-0.112599],[7.78914,-4.95326,-0.0494237],[8.15632,-6.76973,-0.113928],[7.78914,-4.95326,-0.0494237],[9.72961,-5.96985,-0.112599],[9.39194,-7.79644,-0.0522432],[8.15632,-6.76973,-0.113928],[9.72961,-5.96985,-0.112599],[9.72961,-5.96985,-0.112599],[11.1471,-7.22617,-0.0620766],[9.39194,-7.79644,-0.0522432],[9.39194,-7.79644,-0.0522432],[11.1471,-7.22617,-0.0620766],[10.6626,-8.70638,0.522761],[11.9114,-8.1306,0.265824],[10.6626,-8.70638,0.522761],[11.1471,-7.22617,-0.0620766],[11.9114,-8.1306,0.265824],[11.1471,-7.22617,-0.0620766],[13.0276,-6.72689,-0.0922604],[12.8899,-7.85573,0.341959],[11.9114,-8.1306,0.265824],[13.0276,-6.72689,-0.0922604],[13.6848,-7.35049,0.179087],[12.8899,-7.85573,0.341959],[13.0276,-6.72689,-0.0922604],[13.0276,-6.72689,-0.0922604],[14.5917,-6.33193,0.0725751],[13.6848,-7.35049,0.179087],[13.6848,-7.35049,0.179087],[14.5917,-6.33193,0.0725751],[14.2059,-7.20936,0.353688],[14.1189,-7.33515,1.20536],[13.6848,-7.35049,0.179087],[14.2059,-7.20936,0.353688],[13.9396,-4.9041,-0.183686],[14.5917,-6.33193,0.0725751],[13.0276,-6.72689,-0.0922604],[13.0276,-6.72689,-0.0922604],[11.8087,-5.29316,-0.149217],[13.9396,-4.9041,-0.183686],[13.9396,-4.9041,-0.183686],[11.8087,-5.29316,-0.149217],[12.6815,-3.18514,-0.110082],[10.073,-3.48833,-0.0517697],[12.6815,-3.18514,-0.110082],[11.8087,-5.29316,-0.149217],[13.9396,-4.9041,-0.183686],[15.8023,-4.64877,-0.143644],[14.5917,-6.33193,0.0725751],[15.8023,-4.64877,-0.143644],[13.9396,-4.9041,-0.183686],[15.0963,-2.92765,-0.136261],[14.1189,-7.33515,1.20536],[12.8899,-7.85573,0.341959],[13.6848,-7.35049,0.179087],[14.1189,-7.33515,1.20536],[12.0851,-8.55142,1.27478],[12.8899,-7.85573,0.341959],[13.1479,-7.97998,3.07938],[12.0851,-8.55142,1.27478],[14.1189,-7.33515,1.20536],[12.0851,-8.55142,1.27478],[11.9114,-8.1306,0.265824],[12.8899,-7.85573,0.341959],[11.8087,-5.29316,-0.149217],[13.0276,-6.72689,-0.0922604],[11.1471,-7.22617,-0.0620766],[12.0851,-8.55142,1.27478],[10.6626,-8.70638,0.522761],[11.9114,-8.1306,0.265824],[9.72961,-5.96985,-0.112599],[11.8087,-5.29316,-0.149217],[11.1471,-7.22617,-0.0620766],[8.15632,-6.76973,-0.113928],[9.39194,-7.79644,-0.0522432],[7.35186,-8.25656,-0.123348],[9.39194,-7.79644,-0.0522432],[9.19678,-9.03571,0.268233],[7.35186,-8.25656,-0.123348],[10.073,-3.48833,-0.0517697],[11.8087,-5.29316,-0.149217],[9.72961,-5.96985,-0.112599],[5.3847,-3.27968,0.00213814],[5.91535,-1.11562,0.0103064],[7.6743,-2.38519,0.00241995],[7.78914,-4.95326,-0.0494237],[8.15632,-6.76973,-0.113928],[6.56714,-6.57742,-0.0934243],[4.0121,-5.75187,-0.0600772],[5.3847,-3.27968,0.00213814],[5.91639,-5.1537,-0.0285039],[8.15632,-6.76973,-0.113928],[7.35186,-8.25656,-0.123348],[6.56714,-6.57742,-0.0934243],[2.50552,-7.62814,-0.130185],[4.0121,-5.75187,-0.0600772],[5.0114,-8.00616,-0.145271],[1.51419,-5.03983,-0.0479002],[2.50552,-7.62814,-0.130185],[-0.013553,-7.37942,-0.138295],[-1.1976,-9.5166,-0.122993],[1.00248,-9.57705,-0.0792117],[0.349629,-10.6374,0.172029],[1.51419,-5.03983,-0.0479002],[-0.013553,-7.37942,-0.138295],[-1.13517,-5.0911,-0.0503325],[-2.34129,-2.9879,0.00421858],[-1.13517,-5.0911,-0.0503325],[-3.12694,-4.89199,-0.0325365],[-4.83332,-5.687,-0.0678959],[-4.56444,-3.56603,0.00114155],[-3.12694,-4.89199,-0.0325365],[-6.78258,-6.62394,-0.134675],[-4.83332,-5.687,-0.0678959],[-5.01368,-7.51991,-0.158027],[-4.31953,-9.27676,-0.127886],[-2.80013,-7.10195,-0.131535],[-1.1976,-9.5166,-0.122993],[-4.31953,-9.27676,-0.127886],[-1.1976,-9.5166,-0.122993],[-3.28672,-10.5487,0.154369],[-6.78258,-6.62394,-0.134675],[-5.01368,-7.51991,-0.158027],[-6.33237,-8.65155,-0.152785],[-8.6267,-7.83358,-0.150611],[-6.78258,-6.62394,-0.134675],[-6.33237,-8.65155,-0.152785],[-10.3144,-6.92091,-0.155144],[-9.0053,-5.54405,-0.13757],[-8.6267,-7.83358,-0.150611],[-10.3144,-6.92091,-0.155144],[-11.0956,-5.34538,-0.178078],[-9.0053,-5.54405,-0.13757],[-9.0053,-5.54405,-0.13757],[-11.0956,-5.34538,-0.178078],[-11.7891,-3.55766,-0.127288],[-13.7932,-6.30848,0.375235],[-14.7662,-5.01662,0.160693],[-13.1608,-5.19169,-0.0920229],[-11.7891,-3.55766,-0.127288],[-14.1532,-3.60318,-0.150682],[-13.2935,-1.79149,-0.111659],[-12.4657,-0.058319,-0.0399399],[-13.2935,-1.79149,-0.111659],[-14.4541,0.040713,-0.106695],[-15.4956,2.05399,-0.122144],[-14.4541,0.040713,-0.106695],[-16.5709,0.0905385,-0.124577],[-15.4956,2.05399,-0.122144],[-16.5709,0.0905385,-0.124577],[-17.4982,2.11551,-0.156209],[-15.4956,2.05399,-0.122144],[-17.4982,2.11551,-0.156209],[-16.536,3.66263,-0.147642],[-14.5602,4.36133,-0.0541415],[-16.536,3.66263,-0.147642],[-16.5222,5.50812,-0.124578],[-18.0993,6.66331,-0.133357],[-16.3227,7.62421,-0.113996],[-16.5222,5.50812,-0.124578],[-18.2367,4.27003,-0.0904455],[-19.5651,3.84335,0.755346],[-19.5347,5.72845,0.27676],[-19.3871,7.9291,0.10824],[-19.5347,5.72845,0.27676],[-20.2407,6.8884,0.261184],[-16.3227,7.62421,-0.113996],[-18.0993,6.66331,-0.133357],[-17.8526,8.85697,-0.129089],[-16.3227,7.62421,-0.113996],[-17.8526,8.85697,-0.129089],[-15.8223,10.076,-0.119552],[-17.6561,10.7839,-0.129026],[-19.11,9.85245,0.195959],[-18.2262,12.5134,0.111021],[-16.5911,12.41,-0.137444],[-14.3544,12.3461,-0.112801],[-15.8223,10.076,-0.119552],[-15.3783,14.5744,-0.139026],[-13.284,16.7524,-0.135509],[-12.9063,14.4142,-0.126758],[-15.3783,14.5744,-0.139026],[-14.8012,16.1935,-0.183921],[-13.284,16.7524,-0.135509],[-14.3464,17.4455,0.105163],[-13.284,16.7524,-0.135509],[-14.8012,16.1935,-0.183921],[-14.3464,17.4455,0.105163],[-14.8012,16.1935,-0.183921],[-15.9848,15.7681,0.0944061],[-15.3783,14.5744,-0.139026],[-15.9848,15.7681,0.0944061],[-14.8012,16.1935,-0.183921],[-13.1493,10.1552,-0.0342097],[-14.3544,12.3461,-0.112801],[-11.9059,12.2313,-0.0390191],[-11.9059,12.2313,-0.0390191],[-10.5412,14.2082,-0.0606518],[-9.96072,12.1331,-0.000797749],[-12.9063,14.4142,-0.126758],[-13.284,16.7524,-0.135509],[-11.6605,15.9914,-0.14459],[-13.284,16.7524,-0.135509],[-11.4352,17.8281,-0.077064],[-11.6605,15.9914,-0.14459],[-13.284,16.7524,-0.135509],[-12.5875,18.4237,0.302785],[-11.4352,17.8281,-0.077064],[-10.7048,19.7188,0.338424],[-9.11683,18.5798,-0.0811],[-11.4352,17.8281,-0.077064],[-11.9438,19.1308,0.421574],[-10.7048,19.7188,0.338424],[-11.4352,17.8281,-0.077064],[-8.65245,14.8975,-0.0545053],[-10.5412,14.2082,-0.0606518],[-9.89033,16.4249,-0.122206],[-6.55101,13.9632,-0.0203829],[-8.52872,13.0654,-0.00448561],[-8.65245,14.8975,-0.0545053],[-6.55101,13.9632,-0.0203829],[-5.00346,15.7033,-0.0637565],[-3.82676,13.5572,-0.00525427],[-7.60618,16.675,-0.108955],[-9.11683,18.5798,-0.0811],[-6.57654,19.0222,-0.105626],[-8.37942,20.2043,0.259103],[-6.57654,19.0222,-0.105626],[-9.11683,18.5798,-0.0811],[-8.37942,20.2043,0.259103],[-9.11683,18.5798,-0.0811],[-9.70807,20.0025,0.310037],[-5.00346,15.7033,-0.0637565],[-5.8481,17.284,-0.123564],[-4.07544,17.6296,-0.141421],[-2.04493,17.0428,-0.121233],[-3.3497,15.6754,-0.0609956],[-4.07544,17.6296,-0.141421],[-2.04493,17.0428,-0.121233],[-0.459767,18.4527,-0.145045],[-0.392316,16.395,-0.0941887],[-1.57926,14.589,-0.0321898],[-0.392316,16.395,-0.0941887],[0.616554,14.7109,-0.0372596],[1.77012,12.5134,-0.00319767],[0.616554,14.7109,-0.0372596],[2.38561,14.7876,-0.0443635],[4.60815,17.8752,-0.103858],[5.9736,17.9483,-0.118965],[5.59694,16.7369,-0.142292],[4.11291,16.0444,-0.0913177],[3.94239,13.4931,-0.0234752],[2.38561,14.7876,-0.0443635],[5.60757,11.9844,-0.00603867],[3.63791,11.0047,0.00614309],[3.94239,13.4931,-0.0234752],[5.60757,11.9844,-0.00603867],[7.86151,12.6829,-0.0506263],[6.88118,10.2158,0.00442934],[6.05938,14.6933,-0.0775499],[5.59694,16.7369,-0.142292],[7.20252,16.6975,-0.142704],[7.86151,12.6829,-0.0506263],[7.89699,14.9427,-0.124448],[9.22841,14.2868,-0.139126],[8.97779,16.0749,-0.167452],[10.0303,16.9359,0.13429],[10.7538,15.3161,-0.0987163],[11.4658,16.3325,0.355148],[10.7538,15.3161,-0.0987163],[10.0303,16.9359,0.13429],[12.7865,14.9109,0.289086],[10.7538,15.3161,-0.0987163],[11.4658,16.3325,0.355148],[10.3626,11.9428,-0.10092],[7.86151,12.6829,-0.0506263],[9.22841,14.2868,-0.139126],[10.7538,15.3161,-0.0987163],[12.7865,14.9109,0.289086],[13.036,12.6112,-0.128174],[12.7865,14.9109,0.289086],[14.2656,13.4943,0.110023],[13.036,12.6112,-0.128174],[13.036,12.6112,-0.128174],[14.2656,13.4943,0.110023],[15.0753,12.5626,0.147018],[14.2656,13.4943,0.110023],[12.7865,14.9109,0.289086],[13.8814,14.5182,0.647804],[14.2656,13.4943,0.110023],[13.8814,14.5182,0.647804],[14.5656,13.8679,0.620345],[15.1029,13.2074,0.840397],[14.2656,13.4943,0.110023],[14.5656,13.8679,0.620345],[14.5656,13.8679,0.620345],[13.8814,14.5182,0.647804],[14.3693,14.2087,0.922786],[14.4696,14.0689,1.86927],[14.5656,13.8679,0.620345],[14.3693,14.2087,0.922786],[14.3693,14.2087,0.922786],[13.8814,14.5182,0.647804],[14.4696,14.0689,1.86927],[13.4438,15.0427,1.23229],[14.4696,14.0689,1.86927],[13.8814,14.5182,0.647804],[10.2593,9.39073,-0.0385604],[10.3626,11.9428,-0.10092],[12.4681,10.1946,-0.130444],[13.036,12.6112,-0.128174],[15.0753,12.5626,0.147018],[14.7481,10.642,-0.122787],[10.2593,9.39073,-0.0385604],[12.4681,10.1946,-0.130444],[11.7697,7.90829,-0.0518703],[12.7536,6.12396,-0.0538812],[10.7706,5.93493,-0.000195026],[11.7697,7.90829,-0.0518703],[12.7536,6.12396,-0.0538812],[14.7647,5.88237,-0.130192],[13.2765,4.172,-0.0571508],[16.1907,7.51198,-0.0972013],[14.187,8.26997,-0.141776],[15.9853,9.33116,-0.062943],[16.1907,7.51198,-0.0972013],[15.9853,9.33116,-0.062943],[17.0051,8.76659,0.304437],[14.7647,5.88237,-0.130192],[16.7844,5.26781,-0.119704],[15.0933,3.96218,-0.135667],[16.7844,5.26781,-0.119704],[16.4735,2.71952,-0.155439],[15.0933,3.96218,-0.135667],[15.0933,3.96218,-0.135667],[13.2765,4.172,-0.0571508],[14.7647,5.88237,-0.130192],[11.6067,4.56398,-0.00301218],[13.2765,4.172,-0.0571508],[11.4943,2.71706,-0.00912905],[9.83994,3.93163,0.0128937],[11.4943,2.71706,-0.00912905],[9.1004,1.41025,0.0105939],[7.6999,-0.430349,0.0129595],[9.1004,1.41025,0.0105939],[9.51315,-1.01341,0.00398922],[9.51315,-1.01341,0.00398922],[11.43,-1.61875,-0.0302262],[10.073,-3.48833,-0.0517697],[11.4633,0.418872,-0.0174398],[13.943,1.87722,-0.0885887],[13.4962,-0.887837,-0.0845737],[10.073,-3.48833,-0.0517697],[11.43,-1.61875,-0.0302262],[12.6815,-3.18514,-0.110082],[13.9396,-4.9041,-0.183686],[12.6815,-3.18514,-0.110082],[15.0963,-2.92765,-0.136261],[13.943,1.87722,-0.0885887],[16.151,0.0978757,-0.117207],[13.4962,-0.887837,-0.0845737],[18.0993,1.3248,0.082305],[18.0028,-1.09934,0.162481],[16.151,0.0978757,-0.117207],[16.6834,-3.25455,0.224312],[15.0963,-2.92765,-0.136261],[16.5877,-1.84564,-0.0839601],[15.0963,-2.92765,-0.136261],[16.6834,-3.25455,0.224312],[15.8023,-4.64877,-0.143644],[17.5253,-3.53106,1.57669],[16.4541,-5.14537,2.09954],[16.6912,-4.90929,0.727811],[16.2255,-5.27845,0.00175619],[15.8023,-4.64877,-0.143644],[16.4806,-4.93984,-0.0250258],[15.6552,-5.87341,0.0636201],[15.8023,-4.64877,-0.143644],[16.2255,-5.27845,0.00175619],[14.5917,-6.33193,0.0725751],[15.8023,-4.64877,-0.143644],[15.6552,-5.87341,0.0636201],[14.2059,-7.20936,0.353688],[14.5917,-6.33193,0.0725751],[14.1189,-7.33515,1.20536],[13.1479,-7.97998,3.07938],[14.1189,-7.33515,1.20536],[15.0043,-6.59043,2.64666],[14.2154,-7.06373,4.91157],[13.1479,-7.97998,3.07938],[15.0043,-6.59043,2.64666],[16.6912,-4.90929,0.727811],[16.4541,-5.14537,2.09954],[15.5113,-6.14875,0.925729],[16.1586,-5.34235,4.16241],[14.2154,-7.06373,4.91157],[15.0043,-6.59043,2.64666],[16.1586,-5.34235,4.16241],[15.5305,-5.57689,7.42765],[14.2154,-7.06373,4.91157],[15.5305,-5.57689,7.42765],[14.2069,-6.892,6.83033],[14.2154,-7.06373,4.91157],[14.2154,-7.06373,4.91157],[14.2069,-6.892,6.83033],[13.0683,-7.66714,6.62482],[15.5305,-5.57689,7.42765],[13.6897,-6.98183,8.28531],[14.2069,-6.892,6.83033],[16.1586,-5.34235,4.16241],[16.6423,-4.63517,6.01822],[15.5305,-5.57689,7.42765],[17.2717,-4.00805,3.24179],[16.4541,-5.14537,2.09954],[17.5253,-3.53106,1.57669],[17.5253,-3.53106,1.57669],[17.9821,-2.89232,2.69768],[17.2717,-4.00805,3.24179],[16.6423,-4.63517,6.01822],[16.1586,-5.34235,4.16241],[17.1627,-4.0822,4.8125],[16.6423,-4.63517,6.01822],[17.1627,-4.0822,4.8125],[17.493,-3.34049,6.31362],[16.6719,-4.33926,7.4458],[16.6423,-4.63517,6.01822],[17.493,-3.34049,6.31362],[17.7893,-2.27214,8.72709],[17.6432,-2.23607,9.6201],[17.0518,-3.17128,9.73949],[17.493,-3.34049,6.31362],[17.2379,-3.33576,8.17232],[16.6719,-4.33926,7.4458],[16.6423,-4.63517,6.01822],[16.6719,-4.33926,7.4458],[15.5305,-5.57689,7.42765],[15.5305,-5.57689,7.42765],[14.7552,-5.8614,9.56179],[13.6897,-6.98183,8.28531],[16.1656,-4.5008,9.27791],[15.976,-4.36568,10.7448],[15.3143,-5.10939,10.5858],[13.2335,-6.88337,10.1449],[14.7552,-5.8614,9.56179],[14.2389,-5.82055,11.4303],[13.2335,-6.88337,10.1449],[14.2389,-5.82055,11.4303],[12.7706,-6.74895,11.9199],[14.2389,-5.82055,11.4303],[13.4874,-5.92906,13.0233],[12.7706,-6.74895,11.9199],[13.4874,-5.92906,13.0233],[12.3226,-6.6277,13.3137],[12.7706,-6.74895,11.9199],[12.3226,-6.6277,13.3137],[11.2906,-7.41908,12.5171],[12.7706,-6.74895,11.9199],[12.7706,-6.74895,11.9199],[11.2906,-7.41908,12.5171],[11.7838,-7.56643,10.8842],[12.3226,-6.6277,13.3137],[11.0529,-6.96762,14.4965],[11.2906,-7.41908,12.5171],[10.2283,-7.77708,13.1255],[11.2906,-7.41908,12.5171],[11.0529,-6.96762,14.4965],[11.0529,-6.96762,14.4965],[8.91116,-8.01208,14.287],[10.2283,-7.77708,13.1255],[8.91116,-8.01208,14.287],[9.58077,-8.4713,11.1331],[10.2283,-7.77708,13.1255],[9.58077,-8.4713,11.1331],[8.91116,-8.01208,14.287],[6.75905,-9.17313,12.4989],[8.91116,-8.01208,14.287],[7.01345,-8.5887,14.9368],[6.75905,-9.17313,12.4989],[7.01345,-8.5887,14.9368],[5.67477,-9.16123,14.2689],[6.75905,-9.17313,12.4989],[4.46691,-9.67354,12.8488],[6.75905,-9.17313,12.4989],[5.67477,-9.16123,14.2689],[4.55258,-9.25217,15.0489],[4.46691,-9.67354,12.8488],[5.67477,-9.16123,14.2689],[4.55258,-9.25217,15.0489],[5.67477,-9.16123,14.2689],[5.66669,-8.80594,15.8047],[4.38515,-8.89731,16.6382],[4.55258,-9.25217,15.0489],[5.66669,-8.80594,15.8047],[5.57015,-8.462,17.1958],[4.38515,-8.89731,16.6382],[5.66669,-8.80594,15.8047],[5.57015,-8.462,17.1958],[5.66669,-8.80594,15.8047],[6.82147,-8.22267,16.6476],[6.46272,-7.8875,18.2438],[5.57015,-8.462,17.1958],[6.82147,-8.22267,16.6476],[6.46272,-7.8875,18.2438],[6.82147,-8.22267,16.6476],[7.89594,-7.57885,17.5438],[7.89594,-7.57885,17.5438],[7.74327,-7.19098,19.0603],[6.46272,-7.8875,18.2438],[7.74327,-7.19098,19.0603],[6.19999,-7.38764,20.3318],[6.46272,-7.8875,18.2438],[4.47768,-8.33824,18.6188],[6.46272,-7.8875,18.2438],[6.19999,-7.38764,20.3318],[4.47768,-8.33824,18.6188],[6.19999,-7.38764,20.3318],[4.49889,-7.83674,20.5741],[4.47768,-8.33824,18.6188],[4.49889,-7.83674,20.5741],[2.98498,-8.22868,20.2824],[5.04191,-7.40943,21.6633],[4.49889,-7.83674,20.5741],[6.19999,-7.38764,20.3318],[5.04191,-7.40943,21.6633],[6.19999,-7.38764,20.3318],[6.05169,-6.90046,22.345],[5.04191,-7.40943,21.6633],[6.05169,-6.90046,22.345],[4.67114,-7.13382,23.0487],[4.67114,-7.13382,23.0487],[3.70107,-7.6837,21.8776],[5.04191,-7.40943,21.6633],[6.05169,-6.90046,22.345],[5.78462,-6.53087,23.9899],[4.67114,-7.13382,23.0487],[4.67114,-7.13382,23.0487],[5.78462,-6.53087,23.9899],[4.30712,-6.78117,24.6723],[3.08219,-7.36762,23.5277],[4.67114,-7.13382,23.0487],[4.30712,-6.78117,24.6723],[4.30712,-6.78117,24.6723],[5.78462,-6.53087,23.9899],[5.555,-6.1667,25.5646],[4.30712,-6.78117,24.6723],[5.555,-6.1667,25.5646],[4.16137,-6.39704,26.2559],[2.53594,-6.95617,25.4488],[4.30712,-6.78117,24.6723],[4.16137,-6.39704,26.2559],[2.53594,-6.95617,25.4488],[4.16137,-6.39704,26.2559],[2.869,-6.45128,27.215],[2.869,-6.45128,27.215],[1.12276,-6.74967,27.023],[2.53594,-6.95617,25.4488],[2.869,-6.45128,27.215],[1.97278,-6.38999,28.1658],[1.12276,-6.74967,27.023],[1.12276,-6.74967,27.023],[1.97278,-6.38999,28.1658],[0.919953,-6.42095,28.5419],[-0.636895,-6.52679,28.1992],[1.12276,-6.74967,27.023],[0.919953,-6.42095,28.5419],[0.321203,-6.12314,29.9304],[-0.636895,-6.52679,28.1992],[0.919953,-6.42095,28.5419],[0.321203,-6.12314,29.9304],[0.919953,-6.42095,28.5419],[1.87646,-6.08973,29.4017],[0.321203,-6.12314,29.9304],[1.87646,-6.08973,29.4017],[1.77475,-5.70176,31.044],[1.77475,-5.70176,31.044],[0.425707,-5.76337,31.4813],[0.321203,-6.12314,29.9304],[-0.778542,-5.8588,31.1345],[0.321203,-6.12314,29.9304],[0.425707,-5.76337,31.4813],[-0.315108,-5.3985,32.8366],[-0.778542,-5.8588,31.1345],[0.425707,-5.76337,31.4813],[0.425707,-5.76337,31.4813],[1.20981,-5.43346,32.4881],[-0.315108,-5.3985,32.8366],[1.20981,-5.43346,32.4881],[0.945318,-5.01213,33.9419],[-0.315108,-5.3985,32.8366],[-0.245211,-4.8944,34.4548],[-0.315108,-5.3985,32.8366],[0.945318,-5.01213,33.9419],[0.945318,-5.01213,33.9419],[0.674985,-4.44785,35.4237],[-0.245211,-4.8944,34.4548],[-0.245211,-4.8944,34.4548],[0.674985,-4.44785,35.4237],[-0.711182,-4.33457,35.6754],[-0.245211,-4.8944,34.4548],[-0.711182,-4.33457,35.6754],[-1.77597,-4.7819,34.2882],[-1.77597,-4.7819,34.2882],[-0.711182,-4.33457,35.6754],[-2.09451,-3.93764,35.9846],[-1.77597,-4.7819,34.2882],[-2.09451,-3.93764,35.9846],[-3.08949,-4.20093,35.0577],[-3.08949,-4.20093,35.0577],[-3.12653,-4.67156,33.9569],[-1.77597,-4.7819,34.2882],[-3.12653,-4.67156,33.9569],[-2.80489,-5.06834,33.0119],[-1.77597,-4.7819,34.2882],[-1.77597,-4.7819,34.2882],[-2.80489,-5.06834,33.0119],[-1.86446,-5.50058,32.0729],[-0.315108,-5.3985,32.8366],[-1.77597,-4.7819,34.2882],[-1.86446,-5.50058,32.0729],[-3.38524,-5.30646,31.6437],[-1.86446,-5.50058,32.0729],[-2.80489,-5.06834,33.0119],[-3.92211,-4.72166,33.1166],[-3.38524,-5.30646,31.6437],[-2.80489,-5.06834,33.0119],[-3.92211,-4.72166,33.1166],[-5.20882,-4.56059,32.1468],[-3.38524,-5.30646,31.6437],[-5.20882,-4.56059,32.1468],[-4.7462,-5.34042,30.1782],[-3.38524,-5.30646,31.6437],[-4.7462,-5.34042,30.1782],[-2.77386,-6.13446,28.9966],[-3.38524,-5.30646,31.6437],[-2.02619,-5.85077,30.7099],[-3.38524,-5.30646,31.6437],[-2.77386,-6.13446,28.9966],[-2.02619,-5.85077,30.7099],[-2.77386,-6.13446,28.9966],[-1.19532,-6.15131,29.792],[-2.02619,-5.85077,30.7099],[-1.19532,-6.15131,29.792],[-0.778542,-5.8588,31.1345],[-1.86446,-5.50058,32.0729],[-2.02619,-5.85077,30.7099],[-0.778542,-5.8588,31.1345],[-2.77386,-6.13446,28.9966],[-0.636895,-6.52679,28.1992],[-1.19532,-6.15131,29.792],[-2.77386,-6.13446,28.9966],[-2.23511,-6.76609,26.9283],[-0.636895,-6.52679,28.1992],[-0.636895,-6.52679,28.1992],[-2.23511,-6.76609,26.9283],[-0.552567,-7.05835,26.1292],[-1.95358,-7.28651,25.0935],[-0.552567,-7.05835,26.1292],[-2.23511,-6.76609,26.9283],[-2.23511,-6.76609,26.9283],[-3.71882,-6.905,25.6877],[-1.95358,-7.28651,25.0935],[-1.95358,-7.28651,25.0935],[-3.71882,-6.905,25.6877],[-2.9727,-7.49327,24.0602],[-1.8446,-7.69541,23.6551],[-1.95358,-7.28651,25.0935],[-2.9727,-7.49327,24.0602],[-3.71882,-6.905,25.6877],[-4.62004,-7.4492,23.2942],[-2.9727,-7.49327,24.0602],[-2.9727,-7.49327,24.0602],[-4.62004,-7.4492,23.2942],[-2.77706,-7.89067,22.6268],[-2.77706,-7.89067,22.6268],[-4.62004,-7.4492,23.2942],[-4.88128,-8.18012,20.1763],[-4.62004,-7.4492,23.2942],[-5.92635,-7.49201,22.0643],[-4.88128,-8.18012,20.1763],[-5.92635,-7.49201,22.0643],[-8.00405,-6.90171,21.4844],[-4.88128,-8.18012,20.1763],[-4.88128,-8.18012,20.1763],[-8.00405,-6.90171,21.4844],[-7.69715,-8.02606,17.7067],[-8.00405,-6.90171,21.4844],[-10.6299,-6.49709,18.4167],[-7.69715,-8.02606,17.7067],[-10.6299,-6.49709,18.4167],[-9.81551,-7.85065,15.1209],[-7.69715,-8.02606,17.7067],[-7.46812,-8.9142,14.5856],[-7.69715,-8.02606,17.7067],[-9.81551,-7.85065,15.1209],[-7.46812,-8.9142,14.5856],[-9.81551,-7.85065,15.1209],[-9.23009,-8.78251,12.1896],[-9.23009,-8.78251,12.1896],[-9.81551,-7.85065,15.1209],[-11.1631,-7.8048,12.6492],[-11.1631,-7.8048,12.6492],[-10.8796,-8.28425,10.9449],[-9.23009,-8.78251,12.1896],[-10.8796,-8.28425,10.9449],[-9.79233,-8.96842,9.68742],[-9.23009,-8.78251,12.1896],[-9.23009,-8.78251,12.1896],[-9.79233,-8.96842,9.68742],[-8.07727,-9.55835,10.1166],[-6.97458,-9.55547,12.1518],[-9.23009,-8.78251,12.1896],[-8.07727,-9.55835,10.1166],[-8.07727,-9.55835,10.1166],[-9.79233,-8.96842,9.68742],[-8.71569,-9.55939,8.3857],[-7.22028,-10.0347,8.27352],[-8.07727,-9.55835,10.1166],[-8.71569,-9.55939,8.3857],[-9.79233,-8.96842,9.68742],[-10.1453,-9.05083,7.37584],[-8.71569,-9.55939,8.3857],[-10.1453,-9.05083,7.37584],[-8.27634,-9.87817,6.50611],[-8.71569,-9.55939,8.3857],[-8.27634,-9.87817,6.50611],[-10.1453,-9.05083,7.37584],[-9.62693,-9.45206,5.54217],[-8.38564,-10.0185,3.95039],[-8.27634,-9.87817,6.50611],[-9.62693,-9.45206,5.54217],[-9.62693,-9.45206,5.54217],[-10.1453,-9.05083,7.37584],[-10.8364,-8.88655,5.68832],[-10.3538,-9.21482,4.20488],[-9.62693,-9.45206,5.54217],[-10.8364,-8.88655,5.68832],[-11.7749,-8.43966,4.62969],[-10.3538,-9.21482,4.20488],[-10.8364,-8.88655,5.68832],[-11.7749,-8.43966,4.62969],[-10.8364,-8.88655,5.68832],[-12.0924,-8.06292,6.74637],[-10.1453,-9.05083,7.37584],[-12.0924,-8.06292,6.74637],[-10.8364,-8.88655,5.68832],[-12.0924,-8.06292,6.74637],[-10.1453,-9.05083,7.37584],[-11.48,-8.19027,9.09736],[-13.1766,-7.10021,8.72388],[-12.0924,-8.06292,6.74637],[-11.48,-8.19027,9.09736],[-13.1766,-7.10021,8.72388],[-11.48,-8.19027,9.09736],[-12.4313,-7.33028,11.0654],[-14.213,-5.92761,10.6265],[-13.1766,-7.10021,8.72388],[-12.4313,-7.33028,11.0654],[-12.4313,-7.33028,11.0654],[-13.2154,-6.50448,12.422],[-14.213,-5.92761,10.6265],[-13.2154,-6.50448,12.422],[-14.1047,-5.37091,13.734],[-14.213,-5.92761,10.6265],[-14.1047,-5.37091,13.734],[-15.6386,-4.13826,12.0966],[-14.213,-5.92761,10.6265],[-15.6386,-4.13826,12.0966],[-15.5454,-4.75017,9.80707],[-14.213,-5.92761,10.6265],[-15.5454,-4.75017,9.80707],[-14.8306,-5.77039,7.99155],[-14.213,-5.92761,10.6265],[-14.8306,-5.77039,7.99155],[-15.5454,-4.75017,9.80707],[-16.0832,-4.39715,8.2824],[-16.0662,-4.68566,6.08742],[-14.8306,-5.77039,7.99155],[-16.0832,-4.39715,8.2824],[-16.0662,-4.68566,6.08742],[-14.6296,-6.23657,5.5213],[-14.8306,-5.77039,7.99155],[-14.6296,-6.23657,5.5213],[-13.6474,-6.97739,6.78682],[-14.8306,-5.77039,7.99155],[-13.6474,-6.97739,6.78682],[-13.1766,-7.10021,8.72388],[-14.8306,-5.77039,7.99155],[-16.0832,-4.39715,8.2824],[-15.5454,-4.75017,9.80707],[-16.6807,-3.3117,9.89412],[-16.994,-3.2943,7.57535],[-16.0832,-4.39715,8.2824],[-16.6807,-3.3117,9.89412],[-17.6117,-2.1257,8.78072],[-16.994,-3.2943,7.57535],[-16.6807,-3.3117,9.89412],[-17.6117,-2.1257,8.78072],[-16.6807,-3.3117,9.89412],[-17.6873,-1.60008,10.6572],[-18.4711,-0.438442,8.91471],[-17.6117,-2.1257,8.78072],[-17.6873,-1.60008,10.6572],[-18.5824,0.337966,11.5425],[-18.4711,-0.438442,8.91471],[-17.6873,-1.60008,10.6572],[-18.5824,0.337966,11.5425],[-17.6873,-1.60008,10.6572],[-17.6111,-1.28221,12.8019],[-17.6873,-1.60008,10.6572],[-16.871,-2.62967,11.871],[-17.6111,-1.28221,12.8019],[-16.4953,-2.72569,13.6468],[-17.6111,-1.28221,12.8019],[-16.871,-2.62967,11.871],[-16.4953,-2.72569,13.6468],[-16.871,-2.62967,11.871],[-15.6386,-4.13826,12.0966],[-15.1394,-4.11844,14.6408],[-16.4953,-2.72569,13.6468],[-15.6386,-4.13826,12.0966],[-16.4953,-2.72569,13.6468],[-15.1394,-4.11844,14.6408],[-16.0552,-2.78162,15.7913],[-16.9027,-1.36979,16.8841],[-16.4953,-2.72569,13.6468],[-16.0552,-2.78162,15.7913],[-15.5458,-2.76201,17.8526],[-16.9027,-1.36979,16.8841],[-16.0552,-2.78162,15.7913],[-16.4953,-2.72569,13.6468],[-16.9027,-1.36979,16.8841],[-17.4625,-1.12929,14.7224],[-16.0552,-2.78162,15.7913],[-15.1394,-4.11844,14.6408],[-15.5458,-2.76201,17.8526],[-15.1394,-4.11844,14.6408],[-14.4148,-4.26126,16.9203],[-15.5458,-2.76201,17.8526],[-14.4148,-4.26126,16.9203],[-14.1398,-3.95012,18.6951],[-15.5458,-2.76201,17.8526],[-14.1398,-3.95012,18.6951],[-15.1053,-2.7056,19.5593],[-15.5458,-2.76201,17.8526],[-16.496,-1.3168,18.9029],[-15.5458,-2.76201,17.8526],[-15.1053,-2.7056,19.5593],[-16.496,-1.3168,18.9029],[-15.1053,-2.7056,19.5593],[-15.8858,-1.36569,21.1746],[-13.991,-2.97861,21.9272],[-15.8858,-1.36569,21.1746],[-15.1053,-2.7056,19.5593],[-13.9786,-3.66319,20.044],[-13.991,-2.97861,21.9272],[-15.1053,-2.7056,19.5593],[-13.991,-2.97861,21.9272],[-13.9786,-3.66319,20.044],[-12.5923,-4.78446,19.9813],[-12.209,-4.27531,22.431],[-13.991,-2.97861,21.9272],[-12.5923,-4.78446,19.9813],[-10.575,-5.57716,21.6862],[-12.209,-4.27531,22.431],[-12.5923,-4.78446,19.9813],[-10.6299,-6.49709,18.4167],[-10.575,-5.57716,21.6862],[-12.5923,-4.78446,19.9813],[-10.6299,-6.49709,18.4167],[-12.5923,-4.78446,19.9813],[-13.1032,-5.13808,17.6979],[-13.1032,-5.13808,17.6979],[-12.307,-6.4688,15.024],[-10.6299,-6.49709,18.4167],[-13.1032,-5.13808,17.6979],[-13.8655,-5.12381,15.6691],[-12.307,-6.4688,15.024],[-13.8655,-5.12381,15.6691],[-14.1047,-5.37091,13.734],[-12.307,-6.4688,15.024],[-15.1394,-4.11844,14.6408],[-14.1047,-5.37091,13.734],[-13.8655,-5.12381,15.6691],[-14.4148,-4.26126,16.9203],[-13.8655,-5.12381,15.6691],[-13.1032,-5.13808,17.6979],[-14.1398,-3.95012,18.6951],[-13.1032,-5.13808,17.6979],[-12.5923,-4.78446,19.9813],[-10.575,-5.57716,21.6862],[-10.8881,-4.64525,24.0209],[-12.209,-4.27531,22.431],[-12.209,-4.27531,22.431],[-10.8881,-4.64525,24.0209],[-12.9131,-3.10058,24.4332],[-12.9131,-3.10058,24.4332],[-10.8881,-4.64525,24.0209],[-11.0789,-3.80373,26.297],[-12.7373,-2.67162,26.5904],[-12.9131,-3.10058,24.4332],[-11.0789,-3.80373,26.297],[-11.8182,-2.8512,28.1878],[-12.7373,-2.67162,26.5904],[-11.0789,-3.80373,26.297],[-11.0789,-3.80373,26.297],[-10.1904,-3.76116,28.145],[-11.8182,-2.8512,28.1878],[-10.1904,-3.76116,28.145],[-10.5989,-3.08488,29.7239],[-11.8182,-2.8512,28.1878],[-11.8182,-2.8512,28.1878],[-10.5989,-3.08488,29.7239],[-11.967,-2.19517,30.4423],[-12.8014,-2.08384,29.1339],[-11.8182,-2.8512,28.1878],[-11.967,-2.19517,30.4423],[-11.967,-2.19517,30.4423],[-14.0078,-1.23309,29.9255],[-12.8014,-2.08384,29.1339],[-12.8014,-2.08384,29.1339],[-14.0078,-1.23309,29.9255],[-13.42,-1.97285,27.8409],[-15.0743,-0.94294,28.0607],[-13.42,-1.97285,27.8409],[-14.0078,-1.23309,29.9255],[-15.0743,-0.94294,28.0607],[-14.0078,-1.23309,29.9255],[-15.7777,-0.339635,29.7552],[-15.0743,-0.94294,28.0607],[-15.7777,-0.339635,29.7552],[-16.5478,-0.104099,28.1966],[-16.5478,-0.104099,28.1966],[-16.2506,-0.360604,26.5287],[-15.0743,-0.94294,28.0607],[-15.0743,-0.94294,28.0607],[-16.2506,-0.360604,26.5287],[-14.4866,-1.60564,25.992],[-14.4866,-1.60564,25.992],[-16.2506,-0.360604,26.5287],[-16.0424,-0.591992,24.7935],[-15.0517,-1.58558,23.5525],[-14.4866,-1.60564,25.992],[-16.0424,-0.591992,24.7935],[-17.0244,0.0185684,22.8812],[-15.0517,-1.58558,23.5525],[-16.0424,-0.591992,24.7935],[-17.0244,0.0185684,22.8812],[-16.0424,-0.591992,24.7935],[-17.5196,0.413726,24.9946],[-15.0517,-1.58558,23.5525],[-17.0244,0.0185684,22.8812],[-15.8858,-1.36569,21.1746],[-14.4866,-1.60564,25.992],[-15.0517,-1.58558,23.5525],[-12.9131,-3.10058,24.4332],[-13.991,-2.97861,21.9272],[-12.9131,-3.10058,24.4332],[-15.0517,-1.58558,23.5525],[-17.5196,0.413726,24.9946],[-16.0424,-0.591992,24.7935],[-16.2506,-0.360604,26.5287],[-16.2506,-0.360604,26.5287],[-17.9006,0.553585,27.0994],[-17.5196,0.413726,24.9946],[-17.5196,0.413726,24.9946],[-17.9006,0.553585,27.0994],[-19.3288,1.31679,25.1214],[-19.3288,1.31679,25.1214],[-18.749,1.25441,23.5065],[-17.5196,0.413726,24.9946],[-19.3288,1.31679,25.1214],[-17.9006,0.553585,27.0994],[-19.6126,1.29043,26.5585],[-19.6126,1.29043,26.5585],[-20.9401,1.72702,25.6678],[-19.3288,1.31679,25.1214],[-19.3288,1.31679,25.1214],[-20.9401,1.72702,25.6678],[-20.6694,1.98692,23.8104],[-20.6694,1.98692,23.8104],[-20.9401,1.72702,25.6678],[-22.7758,2.12327,24.7056],[-22.3219,2.53275,22.9487],[-20.6694,1.98692,23.8104],[-22.7758,2.12327,24.7056],[-22.3219,2.53275,22.9487],[-22.7758,2.12327,24.7056],[-24.1898,2.52923,23.1838],[-24.1898,2.52923,23.1838],[-23.4337,3.00754,21.8792],[-22.3219,2.53275,22.9487],[-23.4337,3.00754,21.8792],[-21.9614,3.0464,21.7405],[-22.3219,2.53275,22.9487],[-22.3219,2.53275,22.9487],[-21.9614,3.0464,21.7405],[-21.0284,2.56973,22.439],[-21.9614,3.0464,21.7405],[-23.4337,3.00754,21.8792],[-22.8279,3.51929,21.0805],[-21.6589,3.75607,20.8017],[-21.9614,3.0464,21.7405],[-22.8279,3.51929,21.0805],[-21.6589,3.75607,20.8017],[-22.8279,3.51929,21.0805],[-22.9893,4.35517,20.3587],[-22.9893,4.35517,20.3587],[-22.8279,3.51929,21.0805],[-24.167,3.65383,20.8378],[-24.167,3.65383,20.8378],[-24.4917,4.45075,20.0978],[-22.9893,4.35517,20.3587],[-23.3615,5.45653,19.8851],[-22.9893,4.35517,20.3587],[-24.4917,4.45075,20.0978],[-23.3615,5.45653,19.8851],[-24.4917,4.45075,20.0978],[-26.0589,5.12986,19.5881],[-23.3615,5.45653,19.8851],[-26.0589,5.12986,19.5881],[-24.6586,6.11671,19.5704],[-24.6586,6.11671,19.5704],[-23.4444,6.54551,19.8153],[-23.3615,5.45653,19.8851],[-22.6212,6.01597,19.8965],[-23.3615,5.45653,19.8851],[-23.4444,6.54551,19.8153],[-22.2669,6.8787,20.0112],[-22.6212,6.01597,19.8965],[-23.4444,6.54551,19.8153],[-23.4444,6.54551,19.8153],[-23.2581,7.67656,20.164],[-22.2669,6.8787,20.0112],[-21.6238,8.28782,20.3667],[-22.2669,6.8787,20.0112],[-23.2581,7.67656,20.164],[-23.2581,7.67656,20.164],[-23.265,9.00428,20.9192],[-21.6238,8.28782,20.3667],[-21.6238,8.28782,20.3667],[-23.265,9.00428,20.9192],[-21.5511,9.99329,21.345],[-21.5511,9.99329,21.345],[-20.1096,9.72801,20.3483],[-21.6238,8.28782,20.3667],[-21.6238,8.28782,20.3667],[-20.1096,9.72801,20.3483],[-20.2148,8.01165,19.6068],[-21.6238,8.28782,20.3667],[-20.2148,8.01165,19.6068],[-21.0699,6.86899,19.861],[-20.1074,6.40058,19.1106],[-21.0699,6.86899,19.861],[-20.2148,8.01165,19.6068],[-19.5385,7.81998,18.3357],[-20.1074,6.40058,19.1106],[-20.2148,8.01165,19.6068],[-19.4515,9.15559,19.0997],[-19.5385,7.81998,18.3357],[-20.2148,8.01165,19.6068],[-20.8351,5.80832,19.7599],[-21.0699,6.86899,19.861],[-20.1074,6.40058,19.1106],[-21.7158,5.94913,19.9556],[-21.0699,6.86899,19.861],[-20.8351,5.80832,19.7599],[-21.7158,5.94913,19.9556],[-20.8351,5.80832,19.7599],[-21.3062,4.88882,20.081],[-21.3062,4.88882,20.081],[-22.3812,5.31227,20.0013],[-21.7158,5.94913,19.9556],[-21.7158,5.94913,19.9556],[-22.3812,5.31227,20.0013],[-22.6212,6.01597,19.8965],[-22.9893,4.35517,20.3587],[-22.3812,5.31227,20.0013],[-21.3062,4.88882,20.081],[-22.2669,6.8787,20.0112],[-21.0699,6.86899,19.861],[-21.7158,5.94913,19.9556],[-20.2148,8.01165,19.6068],[-20.1096,9.72801,20.3483],[-19.4515,9.15559,19.0997],[-20.1096,9.72801,20.3483],[-18.9113,10.8414,19.3577],[-19.4515,9.15559,19.0997],[-18.9737,9.52115,17.581],[-19.4515,9.15559,19.0997],[-18.9113,10.8414,19.3577],[-18.3315,11.4952,17.6839],[-18.9737,9.52115,17.581],[-18.9113,10.8414,19.3577],[-18.137,12.3769,19.0484],[-18.3315,11.4952,17.6839],[-18.9113,10.8414,19.3577],[-18.9737,9.52115,17.581],[-18.3315,11.4952,17.6839],[-18.5711,10.6784,16.0656],[-17.9771,12.3582,16.1692],[-18.5711,10.6784,16.0656],[-18.3315,11.4952,17.6839],[-20.1096,9.72801,20.3483],[-19.383,11.1533,20.7755],[-18.9113,10.8414,19.3577],[-18.9113,10.8414,19.3577],[-19.383,11.1533,20.7755],[-18.5044,12.5057,20.6366],[-19.383,11.1533,20.7755],[-19.5606,12.0015,21.7868],[-18.5044,12.5057,20.6366],[-19.5606,12.0015,21.7868],[-18.7295,13.2821,22.2055],[-18.5044,12.5057,20.6366],[-19.8606,12.7705,22.9543],[-18.7295,13.2821,22.2055],[-19.5606,12.0015,21.7868],[-20.9896,11.5315,22.3745],[-19.8606,12.7705,22.9543],[-19.5606,12.0015,21.7868],[-20.9896,11.5315,22.3745],[-19.5606,12.0015,21.7868],[-20.2386,10.8513,21.4054],[-20.2386,10.8513,21.4054],[-21.5511,9.99329,21.345],[-20.9896,11.5315,22.3745],[-20.9896,11.5315,22.3745],[-21.5511,9.99329,21.345],[-23.4296,10.6454,22.257],[-20.9896,11.5315,22.3745],[-23.4296,10.6454,22.257],[-22.5116,12.3653,23.9163],[-20.8599,12.5332,23.3934],[-20.9896,11.5315,22.3745],[-22.5116,12.3653,23.9163],[-22.5116,12.3653,23.9163],[-20.2658,13.4487,24.0831],[-20.8599,12.5332,23.3934],[-20.2658,13.4487,24.0831],[-19.8606,12.7705,22.9543],[-20.8599,12.5332,23.3934],[-20.2658,13.4487,24.0831],[-18.9525,13.953,23.5072],[-19.8606,12.7705,22.9543],[-18.9525,13.953,23.5072],[-20.2658,13.4487,24.0831],[-19.299,14.6898,25.0813],[-18.9525,13.953,23.5072],[-19.299,14.6898,25.0813],[-17.7609,15.1869,23.758],[-18.9525,13.953,23.5072],[-17.7609,15.1869,23.758],[-18.0551,14.3382,22.6681],[-18.7295,13.2821,22.2055],[-18.9525,13.953,23.5072],[-18.0551,14.3382,22.6681],[-18.7295,13.2821,22.2055],[-18.0551,14.3382,22.6681],[-17.7125,14.1358,21.3895],[-18.0551,14.3382,22.6681],[-17.7609,15.1869,23.758],[-17.2721,15.1015,22.2926],[-21.5013,13.7886,25.3784],[-19.299,14.6898,25.0813],[-20.2658,13.4487,24.0831],[-20.4799,14.8509,26.8068],[-19.299,14.6898,25.0813],[-21.5013,13.7886,25.3784],[-20.4799,14.8509,26.8068],[-21.5013,13.7886,25.3784],[-22.6186,14.0899,26.8689],[-20.4799,14.8509,26.8068],[-22.6186,14.0899,26.8689],[-21.7023,14.8303,28.4459],[-19.3581,15.6979,28.317],[-20.4799,14.8509,26.8068],[-21.7023,14.8303,28.4459],[-19.3581,15.6979,28.317],[-21.7023,14.8303,28.4459],[-20.0296,15.6073,30.1909],[-20.0296,15.6073,30.1909],[-18.029,16.3648,29.8535],[-19.3581,15.6979,28.317],[-17.4011,16.4907,27.9243],[-19.3581,15.6979,28.317],[-18.029,16.3648,29.8535],[-18.029,16.3648,29.8535],[-16.3348,17.0268,29.2296],[-17.4011,16.4907,27.9243],[-15.3926,17.3111,27.3695],[-17.4011,16.4907,27.9243],[-16.3348,17.0268,29.2296],[-16.7162,16.8716,30.4717],[-16.3348,17.0268,29.2296],[-18.029,16.3648,29.8535],[-16.7162,16.8716,30.4717],[-18.029,16.3648,29.8535],[-17.403,16.5035,31.4151],[-16.0516,16.9573,31.4598],[-16.7162,16.8716,30.4717],[-17.403,16.5035,31.4151],[-16.0516,16.9573,31.4598],[-17.403,16.5035,31.4151],[-16.6575,16.5506,32.4488],[-16.0516,16.9573,31.4598],[-16.6575,16.5506,32.4488],[-15.2338,16.8324,32.7722],[-15.2338,16.8324,32.7722],[-14.5029,17.3912,31.1439],[-16.0516,16.9573,31.4598],[-16.0516,16.9573,31.4598],[-14.5029,17.3912,31.1439],[-15.6804,17.2188,30.3438],[-14.5029,17.3912,31.1439],[-15.2338,16.8324,32.7722],[-13.8163,17.244,32.464],[-13.8426,16.8003,33.7018],[-13.8163,17.244,32.464],[-15.2338,16.8324,32.7722],[-15.0919,16.2529,34.298],[-13.8426,16.8003,33.7018],[-15.2338,16.8324,32.7722],[-15.2338,16.8324,32.7722],[-16.513,16.1491,33.6189],[-15.0919,16.2529,34.298],[-16.3367,15.3345,35.1199],[-15.0919,16.2529,34.298],[-16.513,16.1491,33.6189],[-17.5909,15.5649,34.0628],[-16.3367,15.3345,35.1199],[-16.513,16.1491,33.6189],[-16.513,16.1491,33.6189],[-17.9597,15.9759,32.7709],[-17.5909,15.5649,34.0628],[-18.8358,15.2599,33.713],[-17.5909,15.5649,34.0628],[-17.9597,15.9759,32.7709],[-18.8358,15.2599,33.713],[-17.9597,15.9759,32.7709],[-19.6431,15.4236,32.509],[-20.1277,14.8049,33.5348],[-18.8358,15.2599,33.713],[-19.6431,15.4236,32.509],[-20.6289,14.9814,32.707],[-20.1277,14.8049,33.5348],[-19.6431,15.4236,32.509],[-20.7762,15.1484,31.9656],[-20.6289,14.9814,32.707],[-19.6431,15.4236,32.509],[-20.1212,15.5016,31.4072],[-20.7762,15.1484,31.9656],[-19.6431,15.4236,32.509],[-19.6431,15.4236,32.509],[-18.8926,15.9458,31.365],[-20.1212,15.5016,31.4072],[-18.8926,15.9458,31.365],[-20.0296,15.6073,30.1909],[-20.1212,15.5016,31.4072],[-20.0296,15.6073,30.1909],[-21.1467,15.1659,31.0006],[-20.1212,15.5016,31.4072],[-21.7298,14.9946,30.0016],[-21.1467,15.1659,31.0006],[-20.0296,15.6073,30.1909],[-22.3652,14.7111,30.7878],[-21.1467,15.1659,31.0006],[-21.7298,14.9946,30.0016],[-22.3652,14.7111,30.7878],[-21.7298,14.9946,30.0016],[-23.374,14.3805,29.5755],[-23.374,14.3805,29.5755],[-23.5199,14.2334,30.901],[-22.3652,14.7111,30.7878],[-23.5199,14.2334,30.901],[-22.6627,14.4483,31.5514],[-22.3652,14.7111,30.7878],[-22.6627,14.4483,31.5514],[-21.7341,14.8033,31.7117],[-22.3652,14.7111,30.7878],[-22.6627,14.4483,31.5514],[-22.0516,14.3683,32.5675],[-21.7341,14.8033,31.7117],[-21.7341,14.8033,31.7117],[-22.0516,14.3683,32.5675],[-21.298,14.7997,32.41],[-21.298,14.7997,32.41],[-20.7762,15.1484,31.9656],[-21.7341,14.8033,31.7117],[-20.7762,15.1484,31.9656],[-21.1467,15.1659,31.0006],[-21.7341,14.8033,31.7117],[-21.298,14.7997,32.41],[-22.0516,14.3683,32.5675],[-21.1818,14.5552,33.0944],[-21.1818,14.5552,33.0944],[-20.6289,14.9814,32.707],[-21.298,14.7997,32.41],[-21.1818,14.5552,33.0944],[-22.0516,14.3683,32.5675],[-21.8713,13.9901,33.4461],[-21.8713,13.9901,33.4461],[-20.9839,14.1886,33.8743],[-21.1818,14.5552,33.0944],[-21.1818,14.5552,33.0944],[-20.9839,14.1886,33.8743],[-20.1277,14.8049,33.5348],[-20.9839,14.1886,33.8743],[-20.1508,14.2413,34.4031],[-20.1277,14.8049,33.5348],[-20.1508,14.2413,34.4031],[-19.3353,14.7005,34.3328],[-20.1277,14.8049,33.5348],[-19.3353,14.7005,34.3328],[-20.1508,14.2413,34.4031],[-19.3005,14.1775,35.0066],[-19.3353,14.7005,34.3328],[-19.3005,14.1775,35.0066],[-18.179,14.821,34.8487],[-18.8358,15.2599,33.713],[-19.3353,14.7005,34.3328],[-18.179,14.821,34.8487],[-19.3005,14.1775,35.0066],[-18.4336,13.9524,35.677],[-18.179,14.821,34.8487],[-18.179,14.821,34.8487],[-18.4336,13.9524,35.677],[-17.3562,14.4081,35.7424],[-18.179,14.821,34.8487],[-17.3562,14.4081,35.7424],[-16.3367,15.3345,35.1199],[-16.3367,15.3345,35.1199],[-17.3562,14.4081,35.7424],[-16.2254,14.3227,36.3407],[-16.3367,15.3345,35.1199],[-16.2254,14.3227,36.3407],[-14.8502,14.9859,36.2179],[-14.6565,15.7455,35.3695],[-16.3367,15.3345,35.1199],[-14.8502,14.9859,36.2179],[-13.0846,15.6107,36.011],[-14.6565,15.7455,35.3695],[-14.8502,14.9859,36.2179],[-13.0846,15.6107,36.011],[-14.8502,14.9859,36.2179],[-13.665,14.473,37.1391],[-13.0846,15.6107,36.011],[-13.665,14.473,37.1391],[-12.085,14.7652,37.2698],[-12.085,14.7652,37.2698],[-11.5394,15.5142,36.5438],[-13.0846,15.6107,36.011],[-13.0846,15.6107,36.011],[-11.5394,15.5142,36.5438],[-11.5259,16.0718,35.645],[-13.0846,15.6107,36.011],[-11.5259,16.0718,35.645],[-12.345,16.5775,34.5317],[-13.8341,16.2648,34.8425],[-13.0846,15.6107,36.011],[-12.345,16.5775,34.5317],[-13.8341,16.2648,34.8425],[-12.345,16.5775,34.5317],[-13.8426,16.8003,33.7018],[-13.8426,16.8003,33.7018],[-12.345,16.5775,34.5317],[-12.5836,17.221,32.9998],[-12.5836,17.221,32.9998],[-12.345,16.5775,34.5317],[-11.2466,17.1089,33.4458],[-11.2942,17.5694,32.103],[-12.5836,17.221,32.9998],[-11.2466,17.1089,33.4458],[-11.2942,17.5694,32.103],[-12.806,17.612,31.5471],[-12.5836,17.221,32.9998],[-13.8163,17.244,32.464],[-12.5836,17.221,32.9998],[-12.806,17.612,31.5471],[-11.2466,17.1089,33.4458],[-12.345,16.5775,34.5317],[-10.1806,16.5598,34.6459],[-9.70063,17.3037,32.7654],[-11.2466,17.1089,33.4458],[-10.1806,16.5598,34.6459],[-8.39223,16.8193,33.68],[-9.70063,17.3037,32.7654],[-10.1806,16.5598,34.6459],[-8.39223,16.8193,33.68],[-10.1806,16.5598,34.6459],[-8.51222,16.3403,34.8727],[-8.39223,16.8193,33.68],[-8.51222,16.3403,34.8727],[-7.35338,16.3921,34.3518],[-8.39223,16.8193,33.68],[-7.35338,16.3921,34.3518],[-6.50792,16.8645,32.8358],[-6.50792,16.8645,32.8358],[-8.13025,17.2704,32.4653],[-8.39223,16.8193,33.68],[-7.36066,17.5755,31.3476],[-8.13025,17.2704,32.4653],[-6.50792,16.8645,32.8358],[-5.83758,17.4349,31.1067],[-7.36066,17.5755,31.3476],[-6.50792,16.8645,32.8358],[-6.50792,16.8645,32.8358],[-4.61751,16.9472,31.8098],[-5.83758,17.4349,31.1067],[-4.61751,16.9472,31.8098],[-4.18551,17.6221,29.9358],[-5.83758,17.4349,31.1067],[-6.73974,18.0935,29.5954],[-5.83758,17.4349,31.1067],[-4.18551,17.6221,29.9358],[-4.97649,18.1781,28.7751],[-6.73974,18.0935,29.5954],[-4.18551,17.6221,29.9358],[-3.84817,18.1908,28.3173],[-4.97649,18.1781,28.7751],[-4.18551,17.6221,29.9358],[-4.18551,17.6221,29.9358],[-2.60949,17.7771,28.912],[-3.84817,18.1908,28.3173],[-2.60949,17.7771,28.912],[-2.6508,18.1904,27.861],[-3.84817,18.1908,28.3173],[-2.6508,18.1904,27.861],[-3.50059,18.6064,27.0507],[-3.84817,18.1908,28.3173],[-3.84817,18.1908,28.3173],[-3.50059,18.6064,27.0507],[-5.25387,18.7367,27.2122],[-4.17428,19.0127,26.1235],[-5.25387,18.7367,27.2122],[-3.50059,18.6064,27.0507],[-3.50059,18.6064,27.0507],[-2.92937,18.9639,25.7707],[-4.17428,19.0127,26.1235],[-3.97107,19.3296,25.0669],[-4.17428,19.0127,26.1235],[-2.92937,18.9639,25.7707],[-3.97107,19.3296,25.0669],[-2.92937,18.9639,25.7707],[-2.81775,19.4968,24.0171],[-3.97107,19.3296,25.0669],[-2.81775,19.4968,24.0171],[-4.67752,19.727,23.9291],[-5.22428,19.329,25.4007],[-3.97107,19.3296,25.0669],[-4.67752,19.727,23.9291],[-5.22428,19.329,25.4007],[-4.67752,19.727,23.9291],[-6.33416,19.7367,24.0941],[-6.33416,19.7367,24.0941],[-6.85281,19.2632,25.7818],[-5.22428,19.329,25.4007],[-6.85281,19.2632,25.7818],[-5.25387,18.7367,27.2122],[-5.22428,19.329,25.4007],[-5.25387,18.7367,27.2122],[-6.85281,19.2632,25.7818],[-7.67124,18.7388,27.6568],[-7.67124,18.7388,27.6568],[-6.73974,18.0935,29.5954],[-5.25387,18.7367,27.2122],[-7.81055,19.6117,24.374],[-6.85281,19.2632,25.7818],[-6.33416,19.7367,24.0941],[-7.81055,19.6117,24.374],[-6.33416,19.7367,24.0941],[-7.53734,20.0779,22.447],[-7.81055,19.6117,24.374],[-7.53734,20.0779,22.447],[-9.43743,19.538,23.663],[-9.43743,19.538,23.663],[-8.74086,19.2066,25.6957],[-7.81055,19.6117,24.374],[-9.2471,20.0266,21.3063],[-9.43743,19.538,23.663],[-7.53734,20.0779,22.447],[-9.2471,20.0266,21.3063],[-7.53734,20.0779,22.447],[-7.76198,20.5399,20.2437],[-9.02469,20.4177,19.5067],[-9.2471,20.0266,21.3063],[-7.76198,20.5399,20.2437],[-7.88006,20.8652,18.3049],[-9.02469,20.4177,19.5067],[-7.76198,20.5399,20.2437],[-7.88006,20.8652,18.3049],[-7.76198,20.5399,20.2437],[-6.41624,20.9541,19.0161],[-7.88006,20.8652,18.3049],[-6.41624,20.9541,19.0161],[-6.40497,21.2714,17.2038],[-7.88006,20.8652,18.3049],[-6.40497,21.2714,17.2038],[-7.95,21.1456,15.9654],[-7.95,21.1456,15.9654],[-9.48898,20.5129,17.8225],[-7.88006,20.8652,18.3049],[-10.3037,20.4742,15.4265],[-9.48898,20.5129,17.8225],[-7.95,21.1456,15.9654],[-10.3037,20.4742,15.4265],[-7.95,21.1456,15.9654],[-8.57104,21.2508,13.7491],[-9.80152,20.9212,13.0728],[-10.3037,20.4742,15.4265],[-8.57104,21.2508,13.7491],[-8.78443,21.3346,12.0722],[-9.80152,20.9212,13.0728],[-8.57104,21.2508,13.7491],[-7.51111,21.6386,12.1334],[-8.78443,21.3346,12.0722],[-8.57104,21.2508,13.7491],[-7.51111,21.6386,12.1334],[-8.57104,21.2508,13.7491],[-6.91301,21.6143,13.815],[-7.51111,21.6386,12.1334],[-6.91301,21.6143,13.815],[-6.1612,21.8586,12.2723],[-6.1612,21.8586,12.2723],[-6.38274,21.8853,10.6912],[-7.51111,21.6386,12.1334],[-6.38274,21.8853,10.6912],[-8.11301,21.5437,10.2672],[-7.51111,21.6386,12.1334],[-6.60831,21.87,8.88868],[-8.11301,21.5437,10.2672],[-6.38274,21.8853,10.6912],[-5.10743,22.0483,9.40063],[-6.60831,21.87,8.88868],[-6.38274,21.8853,10.6912],[-4.73148,22.0155,11.3613],[-5.10743,22.0483,9.40063],[-6.38274,21.8853,10.6912],[-5.10743,22.0483,9.40063],[-4.73148,22.0155,11.3613],[-3.77868,22.1074,9.85869],[-5.10743,22.0483,9.40063],[-3.77868,22.1074,9.85869],[-3.813,22.1012,8.20945],[-3.813,22.1012,8.20945],[-5.32494,22.0023,7.5634],[-5.10743,22.0483,9.40063],[-5.32494,22.0023,7.5634],[-3.813,22.1012,8.20945],[-3.76953,22.0108,5.84253],[-3.76953,22.0108,5.84253],[-5.83503,21.874,5.99768],[-5.32494,22.0023,7.5634],[-3.76953,22.0108,5.84253],[-3.813,22.1012,8.20945],[-2.60681,22.0842,7.55363],[-3.76953,22.0108,5.84253],[-2.60681,22.0842,7.55363],[-1.68074,21.9878,6.38352],[-2.60681,22.0842,7.55363],[-1.40364,22.0055,8.01901],[-1.68074,21.9878,6.38352],[-1.68074,21.9878,6.38352],[-1.40364,22.0055,8.01901],[-0.112776,21.8076,7.3168],[-1.68074,21.9878,6.38352],[-0.112776,21.8076,7.3168],[-0.244586,21.776,5.08359],[-1.40364,22.0055,8.01901],[-0.340846,21.8179,9.54964],[-0.112776,21.8076,7.3168],[-0.112776,21.8076,7.3168],[-0.340846,21.8179,9.54964],[1.5115,21.4473,8.50097],[-0.112776,21.8076,7.3168],[1.5115,21.4473,8.50097],[1.47998,21.4639,6.21526],[1.5115,21.4473,8.50097],[3.20292,20.9698,7.31085],[1.47998,21.4639,6.21526],[3.20292,20.9698,7.31085],[1.5115,21.4473,8.50097],[3.28876,20.8892,9.75431],[3.20292,20.9698,7.31085],[3.28876,20.8892,9.75431],[4.772,20.4005,8.22972],[4.92681,20.3527,5.91892],[3.20292,20.9698,7.31085],[4.772,20.4005,8.22972],[6.03658,19.881,7.33221],[4.92681,20.3527,5.91892],[4.772,20.4005,8.22972],[6.03658,19.881,7.33221],[4.772,20.4005,8.22972],[6.10606,19.8047,9.03572],[7.36629,19.2173,7.70545],[6.03658,19.881,7.33221],[6.10606,19.8047,9.03572],[6.03658,19.881,7.33221],[7.36629,19.2173,7.70545],[6.83355,19.5188,5.72366],[4.89565,20.3014,9.9296],[6.10606,19.8047,9.03572],[4.772,20.4005,8.22972],[4.89565,20.3014,9.9296],[5.84785,19.8078,10.9926],[6.10606,19.8047,9.03572],[7.44454,19.0777,9.89165],[6.10606,19.8047,9.03572],[5.84785,19.8078,10.9926],[3.09713,21.0066,5.01064],[3.20292,20.9698,7.31085],[4.92681,20.3527,5.91892],[3.28876,20.8892,9.75431],[4.89565,20.3014,9.9296],[4.772,20.4005,8.22972],[3.28876,20.8892,9.75431],[4.28859,20.4252,11.5189],[4.89565,20.3014,9.9296],[2.68971,20.9649,11.8922],[4.28859,20.4252,11.5189],[3.28876,20.8892,9.75431],[1.42399,21.4029,10.7011],[2.68971,20.9649,11.8922],[3.28876,20.8892,9.75431],[1.37195,21.3134,12.3845],[2.68971,20.9649,11.8922],[1.42399,21.4029,10.7011],[-0.119727,21.6566,11.9721],[1.37195,21.3134,12.3845],[1.42399,21.4029,10.7011],[1.42399,21.4029,10.7011],[-0.340846,21.8179,9.54964],[-0.119727,21.6566,11.9721],[-0.340846,21.8179,9.54964],[-1.49221,21.9462,10.8994],[-0.119727,21.6566,11.9721],[-1.86902,21.8624,12.5569],[-0.119727,21.6566,11.9721],[-1.49221,21.9462,10.8994],[-2.93161,22.0428,11.1297],[-1.86902,21.8624,12.5569],[-1.49221,21.9462,10.8994],[-1.49221,21.9462,10.8994],[-2.32565,22.0665,9.30636],[-2.93161,22.0428,11.1297],[-3.77868,22.1074,9.85869],[-2.93161,22.0428,11.1297],[-2.32565,22.0665,9.30636],[-2.93161,22.0428,11.1297],[-3.55566,21.9263,12.9355],[-1.86902,21.8624,12.5569],[-1.86902,21.8624,12.5569],[-3.55566,21.9263,12.9355],[-2.46691,21.7011,14.4328],[-2.46691,21.7011,14.4328],[-0.804607,21.5556,14.0072],[-1.86902,21.8624,12.5569],[-0.804607,21.5556,14.0072],[-2.46691,21.7011,14.4328],[-1.31787,21.2861,16.1182],[0.124624,21.2083,15.1925],[-0.804607,21.5556,14.0072],[-1.31787,21.2861,16.1182],[-1.31787,21.2861,16.1182],[0.586964,20.7509,16.9414],[0.124624,21.2083,15.1925],[0.124624,21.2083,15.1925],[0.586964,20.7509,16.9414],[1.42082,20.9076,15.1394],[1.42082,20.9076,15.1394],[0.686589,21.317,13.7171],[0.124624,21.2083,15.1925],[1.42082,20.9076,15.1394],[2.10009,20.9668,13.5693],[0.686589,21.317,13.7171],[1.37195,21.3134,12.3845],[0.686589,21.317,13.7171],[2.10009,20.9668,13.5693],[2.84708,20.5316,14.8814],[2.10009,20.9668,13.5693],[1.42082,20.9076,15.1394],[1.42082,20.9076,15.1394],[2.29263,20.423,16.4071],[2.84708,20.5316,14.8814],[2.84708,20.5316,14.8814],[2.29263,20.423,16.4071],[3.51741,20.1212,15.9626],[2.84708,20.5316,14.8814],[3.51741,20.1212,15.9626],[4.27003,20.0439,14.7589],[2.29263,20.423,16.4071],[3.43459,19.8832,17.3072],[3.51741,20.1212,15.9626],[3.43459,19.8832,17.3072],[4.85028,19.5429,16.3554],[3.51741,20.1212,15.9626],[4.55933,19.345,17.9935],[4.85028,19.5429,16.3554],[3.43459,19.8832,17.3072],[3.43027,19.5395,18.9127],[4.55933,19.345,17.9935],[3.43459,19.8832,17.3072],[2.06835,20.1259,18.1086],[3.43027,19.5395,18.9127],[3.43459,19.8832,17.3072],[3.43027,19.5395,18.9127],[2.06835,20.1259,18.1086],[2.11538,19.6927,19.9095],[3.43027,19.5395,18.9127],[2.11538,19.6927,19.9095],[3.53822,19.1228,20.552],[3.43027,19.5395,18.9127],[3.53822,19.1228,20.552],[4.93672,18.8797,19.5169],[4.60973,18.6845,20.9947],[4.93672,18.8797,19.5169],[3.53822,19.1228,20.552],[4.60973,18.6845,20.9947],[3.53822,19.1228,20.552],[3.86683,18.6557,22.0585],[3.86683,18.6557,22.0585],[5.13054,18.2501,22.0699],[4.60973,18.6845,20.9947],[5.13054,18.2501,22.0699],[5.56378,18.3794,20.8254],[4.60973,18.6845,20.9947],[6.44041,17.7626,22.088],[5.56378,18.3794,20.8254],[5.13054,18.2501,22.0699],[5.13054,18.2501,22.0699],[5.79149,17.796,23.0147],[6.44041,17.7626,22.088],[5.79149,17.796,23.0147],[6.83339,17.3713,23.1891],[6.44041,17.7626,22.088],[5.13054,18.2501,22.0699],[4.5416,18.0418,23.6075],[5.79149,17.796,23.0147],[4.5416,18.0418,23.6075],[6.03191,17.3934,24.3161],[5.79149,17.796,23.0147],[6.03191,17.3934,24.3161],[4.5416,18.0418,23.6075],[4.82794,17.4957,25.3536],[6.19045,16.7389,26.7476],[6.03191,17.3934,24.3161],[4.82794,17.4957,25.3536],[4.82794,17.4957,25.3536],[4.22157,17.2213,26.8724],[6.19045,16.7389,26.7476],[6.19045,16.7389,26.7476],[4.22157,17.2213,26.8724],[4.97368,16.6204,28.3116],[4.97368,16.6204,28.3116],[6.57687,16.1335,28.7409],[6.19045,16.7389,26.7476],[6.57687,16.1335,28.7409],[7.76636,16.0919,27.6088],[6.19045,16.7389,26.7476],[7.83017,16.3793,26.1081],[6.19045,16.7389,26.7476],[7.76636,16.0919,27.6088],[7.76636,16.0919,27.6088],[8.82912,15.8837,26.9346],[7.83017,16.3793,26.1081],[7.76636,16.0919,27.6088],[9.11873,15.5628,28.2203],[8.82912,15.8837,26.9346],[9.11873,15.5628,28.2203],[10.2373,15.3412,26.9761],[8.82912,15.8837,26.9346],[10.2373,15.3412,26.9761],[9.15341,15.9692,25.6991],[8.82912,15.8837,26.9346],[10.2373,15.3412,26.9761],[9.11873,15.5628,28.2203],[10.3985,15.128,28.3576],[11.5782,14.7274,27.9035],[10.2373,15.3412,26.9761],[10.3985,15.128,28.3576],[11.1693,14.7735,29.1783],[11.5782,14.7274,27.9035],[10.3985,15.128,28.3576],[9.8899,15.1532,29.3577],[11.1693,14.7735,29.1783],[10.3985,15.128,28.3576],[9.8899,15.1532,29.3577],[10.7353,14.737,30.4021],[11.1693,14.7735,29.1783],[12.1286,14.3487,30.0174],[11.1693,14.7735,29.1783],[10.7353,14.737,30.4021],[11.7265,14.2951,31.2336],[12.1286,14.3487,30.0174],[10.7353,14.737,30.4021],[10.386,14.4759,31.9904],[11.7265,14.2951,31.2336],[10.7353,14.737,30.4021],[9.19483,15.0935,30.5092],[10.386,14.4759,31.9904],[10.7353,14.737,30.4021],[10.386,14.4759,31.9904],[9.19483,15.0935,30.5092],[6.65459,15.2424,31.7533],[10.386,14.4759,31.9904],[6.65459,15.2424,31.7533],[8.38484,14.5182,33.2467],[10.0387,13.9989,33.8826],[10.386,14.4759,31.9904],[8.38484,14.5182,33.2467],[8.43085,14.1336,34.3631],[10.0387,13.9989,33.8826],[8.38484,14.5182,33.2467],[8.43085,14.1336,34.3631],[8.38484,14.5182,33.2467],[7.37214,14.3483,34.1822],[7.38538,13.8863,35.2654],[8.43085,14.1336,34.3631],[7.37214,14.3483,34.1822],[6.36061,14.2836,34.6169],[7.38538,13.8863,35.2654],[7.37214,14.3483,34.1822],[6.23838,14.714,33.5228],[6.36061,14.2836,34.6169],[7.37214,14.3483,34.1822],[6.36061,14.2836,34.6169],[6.23838,14.714,33.5228],[4.8905,14.4801,34.4607],[5.81807,13.8749,35.6414],[6.36061,14.2836,34.6169],[4.8905,14.4801,34.4607],[5.81807,13.8749,35.6414],[4.8905,14.4801,34.4607],[4.15366,13.8727,35.9724],[5.81807,13.8749,35.6414],[4.15366,13.8727,35.9724],[5.2979,13.2151,37.011],[5.81807,13.8749,35.6414],[5.2979,13.2151,37.011],[6.69652,13.4047,36.3921],[7.38538,13.8863,35.2654],[5.81807,13.8749,35.6414],[6.69652,13.4047,36.3921],[7.38538,13.8863,35.2654],[6.69652,13.4047,36.3921],[8.05524,13.2344,36.3562],[7.38538,13.8863,35.2654],[8.05524,13.2344,36.3562],[8.96033,13.6917,35.2016],[8.05524,13.2344,36.3562],[9.60314,13.0664,36.1899],[8.96033,13.6917,35.2016],[9.60314,13.0664,36.1899],[10.3074,13.4747,35.1408],[8.96033,13.6917,35.2016],[10.3074,13.4747,35.1408],[10.0387,13.9989,33.8826],[8.96033,13.6917,35.2016],[10.0387,13.9989,33.8826],[10.3074,13.4747,35.1408],[11.7951,13.3588,34.4732],[10.0387,13.9989,33.8826],[11.7951,13.3588,34.4732],[12.0662,13.8405,32.6791],[13.1594,13.2406,33.6274],[12.0662,13.8405,32.6791],[11.7951,13.3588,34.4732],[13.1594,13.2406,33.6274],[11.7951,13.3588,34.4732],[13.2523,12.8556,34.5093],[13.1594,13.2406,33.6274],[13.2523,12.8556,34.5093],[14.5616,12.5425,33.7886],[14.0338,13.2033,32.4649],[13.1594,13.2406,33.6274],[14.5616,12.5425,33.7886],[14.0338,13.2033,32.4649],[14.5616,12.5425,33.7886],[15.618,12.4819,32.5367],[15.3805,12.8958,31.0335],[14.0338,13.2033,32.4649],[15.618,12.4819,32.5367],[15.618,12.4819,32.5367],[16.7804,12.1201,31.6013],[15.3805,12.8958,31.0335],[16.7804,12.1201,31.6013],[16.7882,12.332,30.4498],[15.3805,12.8958,31.0335],[15.3805,12.8958,31.0335],[16.7882,12.332,30.4498],[16.2061,12.6772,29.3039],[14.6788,13.3452,29.8214],[15.3805,12.8958,31.0335],[16.2061,12.6772,29.3039],[16.2061,12.6772,29.3039],[14.8002,13.3274,28.4001],[14.6788,13.3452,29.8214],[14.6788,13.3452,29.8214],[14.8002,13.3274,28.4001],[13.4497,13.8947,29.3027],[13.3701,13.7457,30.9698],[14.6788,13.3452,29.8214],[13.4497,13.8947,29.3027],[12.1286,14.3487,30.0174],[13.3701,13.7457,30.9698],[13.4497,13.8947,29.3027],[12.3269,14.3801,28.837],[12.1286,14.3487,30.0174],[13.4497,13.8947,29.3027],[13.4497,13.8947,29.3027],[13.2289,14.0315,27.6671],[12.3269,14.3801,28.837],[11.5782,14.7274,27.9035],[12.3269,14.3801,28.837],[13.2289,14.0315,27.6671],[11.5782,14.7274,27.9035],[13.2289,14.0315,27.6671],[11.9929,14.6319,26.2478],[13.4623,13.8979,26.1986],[11.9929,14.6319,26.2478],[13.2289,14.0315,27.6671],[13.4623,13.8979,26.1986],[13.2289,14.0315,27.6671],[14.7565,13.2772,26.7526],[14.315,13.3723,25.1387],[13.4623,13.8979,26.1986],[14.7565,13.2772,26.7526],[14.7565,13.2772,26.7526],[16.3253,12.3918,25.6526],[14.315,13.3723,25.1387],[15.7416,12.2286,23.5129],[14.315,13.3723,25.1387],[16.3253,12.3918,25.6526],[15.7416,12.2286,23.5129],[16.3253,12.3918,25.6526],[17.2348,11.6475,24.1393],[16.7212,11.4842,22.8424],[15.7416,12.2286,23.5129],[17.2348,11.6475,24.1393],[16.3253,12.3918,25.6526],[18.3129,11.5141,25.7136],[17.2348,11.6475,24.1393],[17.2348,11.6475,24.1393],[18.3129,11.5141,25.7136],[18.4225,11.1446,24.0479],[17.8134,11.0768,23.0206],[17.2348,11.6475,24.1393],[18.4225,11.1446,24.0479],[18.4225,11.1446,24.0479],[18.843,10.7698,23.2372],[17.8134,11.0768,23.0206],[19.7426,10.591,24.0988],[18.843,10.7698,23.2372],[18.4225,11.1446,24.0479],[19.7426,10.591,24.0988],[19.6111,10.3173,22.7379],[18.843,10.7698,23.2372],[18.843,10.7698,23.2372],[19.6111,10.3173,22.7379],[18.5446,10.5379,22.2204],[20.6973,9.92506,23.1435],[19.6111,10.3173,22.7379],[19.7426,10.591,24.0988],[21.2487,9.9024,24.6942],[20.6973,9.92506,23.1435],[19.7426,10.591,24.0988],[19.7426,10.591,24.0988],[20.1177,10.6829,25.9275],[21.2487,9.9024,24.6942],[20.1177,10.6829,25.9275],[21.4291,9.88205,26.6041],[21.2487,9.9024,24.6942],[22.1692,9.37008,25.4298],[21.2487,9.9024,24.6942],[21.4291,9.88205,26.6041],[22.6766,8.81526,26.5066],[22.1692,9.37008,25.4298],[21.4291,9.88205,26.6041],[21.924,9.25004,28.1867],[22.6766,8.81526,26.5066],[21.4291,9.88205,26.6041],[21.924,9.25004,28.1867],[21.4291,9.88205,26.6041],[21.0254,10.1348,28.0399],[21.0254,10.1348,28.0399],[20.9503,9.9416,29.244],[21.924,9.25004,28.1867],[21.5816,9.18255,29.6345],[21.924,9.25004,28.1867],[20.9503,9.9416,29.244],[20.7161,9.62866,30.6984],[21.5816,9.18255,29.6345],[20.9503,9.9416,29.244],[20.9503,9.9416,29.244],[19.8913,10.5683,30.0372],[20.7161,9.62866,30.6984],[20.7161,9.62866,30.6984],[19.8913,10.5683,30.0372],[19.4925,10.4233,31.4284],[20.7161,9.62866,30.6984],[19.4925,10.4233,31.4284],[20.1218,9.51653,32.0783],[20.1218,9.51653,32.0783],[21.0033,8.83862,31.5457],[20.7161,9.62866,30.6984],[21.0033,8.83862,31.5457],[21.6544,8.62003,30.5532],[20.7161,9.62866,30.6984],[21.6544,8.62003,30.5532],[21.0033,8.83862,31.5457],[21.6356,7.89968,31.4872],[21.6544,8.62003,30.5532],[21.6356,7.89968,31.4872],[22.2845,7.70571,30.4228],[22.4261,8.2384,29.2796],[21.6544,8.62003,30.5532],[22.2845,7.70571,30.4228],[22.4261,8.2384,29.2796],[22.2845,7.70571,30.4228],[23.0345,6.94016,29.4996],[22.4261,8.2384,29.2796],[23.0345,6.94016,29.4996],[23.1823,7.51615,28.5156],[22.9342,8.21119,27.8272],[22.4261,8.2384,29.2796],[23.1823,7.51615,28.5156],[23.1823,7.51615,28.5156],[23.5935,7.29771,27.5003],[22.9342,8.21119,27.8272],[23.3992,7.91973,26.7567],[22.9342,8.21119,27.8272],[23.5935,7.29771,27.5003],[23.3992,7.91973,26.7567],[23.5935,7.29771,27.5003],[23.9615,7.06549,26.169],[23.4661,8.00603,25.6344],[23.3992,7.91973,26.7567],[23.9615,7.06549,26.169],[23.9407,7.32497,25.0057],[23.4661,8.00603,25.6344],[23.9615,7.06549,26.169],[23.9407,7.32497,25.0057],[23.9615,7.06549,26.169],[24.2795,6.61639,25.0419],[24.2795,6.61639,25.0419],[24.1041,6.89014,23.8048],[23.9407,7.32497,25.0057],[24.1041,6.89014,23.8048],[23.5129,7.91259,24.3263],[23.9407,7.32497,25.0057],[23.4531,7.68047,22.9194],[23.5129,7.91259,24.3263],[24.1041,6.89014,23.8048],[23.982,6.85723,22.4541],[23.4531,7.68047,22.9194],[24.1041,6.89014,23.8048],[24.1041,6.89014,23.8048],[24.465,5.90863,22.5647],[23.982,6.85723,22.4541],[24.465,5.90863,22.5647],[24.0882,6.36626,21.4354],[23.982,6.85723,22.4541],[24.0882,6.36626,21.4354],[23.5297,7.21735,21.6394],[23.982,6.85723,22.4541],[24.0882,6.36626,21.4354],[24.465,5.90863,22.5647],[24.4471,5.62165,21.2849],[24.1508,5.82651,20.388],[24.0882,6.36626,21.4354],[24.4471,5.62165,21.2849],[24.5816,4.95706,20.5031],[24.1508,5.82651,20.388],[24.4471,5.62165,21.2849],[24.5816,4.95706,20.5031],[24.4471,5.62165,21.2849],[24.773,4.90156,21.6723],[24.931,4.00211,20.8096],[24.5816,4.95706,20.5031],[24.773,4.90156,21.6723],[24.931,4.00211,20.8096],[24.773,4.90156,21.6723],[25.0406,3.99703,22.0275],[24.931,4.00211,20.8096],[25.0406,3.99703,22.0275],[25.165,2.69467,21.2607],[24.931,4.00211,20.8096],[25.165,2.69467,21.2607],[24.9872,3.23758,19.9337],[24.9872,3.23758,19.9337],[24.7182,4.23853,19.8393],[24.931,4.00211,20.8096],[24.9872,3.23758,19.9337],[24.6127,3.91714,18.9316],[24.7182,4.23853,19.8393],[24.2474,5.07222,19.4049],[24.7182,4.23853,19.8393],[24.6127,3.91714,18.9316],[24.2556,3.64126,17.3709],[24.2474,5.07222,19.4049],[24.6127,3.91714,18.9316],[24.6127,3.91714,18.9316],[24.5334,2.48746,17.0037],[24.2556,3.64126,17.3709],[24.2556,3.64126,17.3709],[24.5334,2.48746,17.0037],[24.0576,3.17199,16.2682],[23.5953,4.27118,16.5387],[24.2556,3.64126,17.3709],[24.0576,3.17199,16.2682],[23.4581,3.69905,15.5048],[23.5953,4.27118,16.5387],[24.0576,3.17199,16.2682],[23.4581,3.69905,15.5048],[24.0576,3.17199,16.2682],[23.8349,2.68609,15.1265],[24.0576,3.17199,16.2682],[24.3145,2.05614,15.8435],[23.8349,2.68609,15.1265],[23.8349,2.68609,15.1265],[24.3145,2.05614,15.8435],[24.0006,1.69636,14.5496],[24.4419,0.883531,15.2913],[24.0006,1.69636,14.5496],[24.3145,2.05614,15.8435],[24.739,1.26703,16.7118],[24.4419,0.883531,15.2913],[24.3145,2.05614,15.8435],[24.5334,2.48746,17.0037],[24.739,1.26703,16.7118],[24.3145,2.05614,15.8435],[24.5334,2.48746,17.0037],[24.9736,1.61647,18.0461],[24.739,1.26703,16.7118],[24.9736,1.61647,18.0461],[25.0495,0.586718,17.8137],[24.739,1.26703,16.7118],[25.0495,0.586718,17.8137],[24.8103,-0.197476,16.0921],[24.739,1.26703,16.7118],[25.0173,-0.571839,17.305],[24.8103,-0.197476,16.0921],[25.0495,0.586718,17.8137],[25.1514,-0.180612,18.8033],[25.0173,-0.571839,17.305],[25.0495,0.586718,17.8137],[25.1514,-0.180612,18.8033],[25.0495,0.586718,17.8137],[25.1899,1.00998,18.9662],[25.1899,1.00998,18.9662],[25.2626,0.882615,20.2658],[25.1514,-0.180612,18.8033],[25.19,-0.377145,20.3487],[25.1514,-0.180612,18.8033],[25.2626,0.882615,20.2658],[25.2626,0.882615,20.2658],[25.2601,0.289304,21.3308],[25.19,-0.377145,20.3487],[25.19,-0.377145,20.3487],[25.2601,0.289304,21.3308],[25.108,-0.60993,21.6074],[25.108,-0.60993,21.6074],[25.0196,-1.32936,20.6241],[25.19,-0.377145,20.3487],[25.19,-0.377145,20.3487],[25.0196,-1.32936,20.6241],[25.0305,-1.42534,19.4941],[25.0196,-1.32936,20.6241],[24.7197,-2.5326,20.0719],[25.0305,-1.42534,19.4941],[25.0305,-1.42534,19.4941],[24.7197,-2.5326,20.0719],[24.8348,-2.5311,18.7006],[24.9388,-1.92793,17.3625],[25.0305,-1.42534,19.4941],[24.8348,-2.5311,18.7006],[24.7218,-3.24957,17.6695],[24.9388,-1.92793,17.3625],[24.8348,-2.5311,18.7006],[24.8348,-2.5311,18.7006],[24.5279,-3.54209,18.9631],[24.7218,-3.24957,17.6695],[24.5279,-3.54209,18.9631],[24.3847,-4.3857,17.857],[24.7218,-3.24957,17.6695],[24.3847,-4.3857,17.857],[24.5914,-4.03592,16.7984],[24.7218,-3.24957,17.6695],[24.5914,-4.03592,16.7984],[24.7934,-3.05372,16.4183],[24.7218,-3.24957,17.6695],[24.5884,-4.18123,15.5394],[24.7934,-3.05372,16.4183],[24.5914,-4.03592,16.7984],[24.2214,-5.27496,16.5862],[24.5884,-4.18123,15.5394],[24.5914,-4.03592,16.7984],[24.2214,-5.27496,16.5862],[24.2676,-5.72737,14.6453],[24.5884,-4.18123,15.5394],[24.2676,-5.72737,14.6453],[24.554,-4.10773,13.7609],[24.5884,-4.18123,15.5394],[24.554,-4.10773,13.7609],[24.7498,-2.88482,15.1356],[24.5884,-4.18123,15.5394],[24.554,-4.10773,13.7609],[24.6221,-2.42877,13.9596],[24.7498,-2.88482,15.1356],[24.7498,-2.88482,15.1356],[24.6221,-2.42877,13.9596],[24.7674,-1.49667,15.2034],[24.7674,-1.49667,15.2034],[24.8752,-2.103,16.0992],[24.7498,-2.88482,15.1356],[24.8752,-2.103,16.0992],[24.7934,-3.05372,16.4183],[24.7498,-2.88482,15.1356],[24.7934,-3.05372,16.4183],[24.8752,-2.103,16.0992],[24.9388,-1.92793,17.3625],[24.9181,-1.2379,16.4017],[24.9388,-1.92793,17.3625],[24.8752,-2.103,16.0992],[24.9181,-1.2379,16.4017],[25.0173,-0.571839,17.305],[24.9388,-1.92793,17.3625],[24.7674,-1.49667,15.2034],[24.9181,-1.2379,16.4017],[24.8752,-2.103,16.0992],[24.7674,-1.49667,15.2034],[24.8103,-0.197476,16.0921],[24.9181,-1.2379,16.4017],[24.7674,-1.49667,15.2034],[24.5886,-0.52019,14.7697],[24.8103,-0.197476,16.0921],[24.5886,-0.52019,14.7697],[24.4419,0.883531,15.2913],[24.8103,-0.197476,16.0921],[24.5886,-0.52019,14.7697],[24.2664,-0.643577,13.3672],[24.4419,0.883531,15.2913],[24.4419,0.883531,15.2913],[24.2664,-0.643577,13.3672],[23.979,0.7238,13.6118],[24.5886,-0.52019,14.7697],[24.5531,-1.34797,14.0372],[24.2664,-0.643577,13.3672],[24.7674,-1.49667,15.2034],[24.5531,-1.34797,14.0372],[24.5886,-0.52019,14.7697],[24.5531,-1.34797,14.0372],[24.7674,-1.49667,15.2034],[24.6221,-2.42877,13.9596],[24.5531,-1.34797,14.0372],[24.6221,-2.42877,13.9596],[24.3757,-1.81422,12.9403],[24.6221,-2.42877,13.9596],[24.4637,-3.10709,12.7266],[24.3757,-1.81422,12.9403],[24.4637,-3.10709,12.7266],[24.6221,-2.42877,13.9596],[24.554,-4.10773,13.7609],[24.4637,-3.10709,12.7266],[24.554,-4.10773,13.7609],[24.3693,-4.62207,11.7339],[24.4637,-3.10709,12.7266],[24.3693,-4.62207,11.7339],[24.0992,-2.68164,11.3815],[24.554,-4.10773,13.7609],[24.3318,-5.89865,12.8478],[24.3693,-4.62207,11.7339],[24.3693,-4.62207,11.7339],[24.3318,-5.89865,12.8478],[24.3216,-6.35058,11.3032],[24.3216,-6.35058,11.3032],[24.2351,-5.9308,10.3667],[24.3693,-4.62207,11.7339],[24.3693,-4.62207,11.7339],[24.2351,-5.9308,10.3667],[23.9971,-4.34019,10.0674],[24.1373,-7.48531,10.2116],[24.2351,-5.9308,10.3667],[24.3216,-6.35058,11.3032],[24.0786,-7.80332,11.5967],[24.1373,-7.48531,10.2116],[24.3216,-6.35058,11.3032],[24.1373,-7.48531,10.2116],[24.0786,-7.80332,11.5967],[23.8684,-9.02719,10.4669],[24.1373,-7.48531,10.2116],[23.8684,-9.02719,10.4669],[23.8396,-8.80885,9.02084],[24.1373,-7.48531,10.2116],[23.8396,-8.80885,9.02084],[23.8516,-6.92389,8.71464],[23.8516,-6.92389,8.71464],[23.8396,-8.80885,9.02084],[23.4773,-8.86764,7.36621],[23.5178,-10.0673,8.18382],[23.4773,-8.86764,7.36621],[23.8396,-8.80885,9.02084],[23.5178,-10.0673,8.18382],[23.8396,-8.80885,9.02084],[23.5044,-10.3173,9.41115],[23.5178,-10.0673,8.18382],[23.5044,-10.3173,9.41115],[22.9265,-11.6062,8.10694],[23.5178,-10.0673,8.18382],[22.9265,-11.6062,8.10694],[23.2359,-10.4492,7.20168],[23.2359,-10.4492,7.20168],[22.9265,-11.6062,8.10694],[22.6742,-11.4198,6.46059],[22.6742,-11.4198,6.46059],[22.8942,-10.0501,6.12024],[23.2359,-10.4492,7.20168],[23.2359,-10.4492,7.20168],[22.8942,-10.0501,6.12024],[23.4773,-8.86764,7.36621],[22.8942,-10.0501,6.12024],[22.9763,-8.60202,6.01251],[23.4773,-8.86764,7.36621],[23.4773,-8.86764,7.36621],[22.9763,-8.60202,6.01251],[23.159,-6.94583,6.71179],[23.159,-6.94583,6.71179],[22.9763,-8.60202,6.01251],[22.4326,-7.62534,5.2433],[22.4326,-7.62534,5.2433],[22.4101,-5.83374,5.71522],[23.159,-6.94583,6.71179],[22.4326,-7.62534,5.2433],[22.9763,-8.60202,6.01251],[22.2701,-9.38094,4.97122],[21.3643,-8.32483,3.9873],[22.4326,-7.62534,5.2433],[22.2701,-9.38094,4.97122],[21.2439,-10.1702,3.90226],[21.3643,-8.32483,3.9873],[22.2701,-9.38094,4.97122],[21.2439,-10.1702,3.90226],[22.2701,-9.38094,4.97122],[21.9185,-11.2254,5.05737],[21.2439,-10.1702,3.90226],[21.9185,-11.2254,5.05737],[20.7007,-11.5438,3.75031],[20.063,-10.8123,3.07853],[21.2439,-10.1702,3.90226],[20.7007,-11.5438,3.75031],[19.4413,-12.1875,3.1344],[20.063,-10.8123,3.07853],[20.7007,-11.5438,3.75031],[20.153,-12.9552,4.05302],[19.4413,-12.1875,3.1344],[20.7007,-11.5438,3.75031],[18.6846,-13.6312,3.51496],[19.4413,-12.1875,3.1344],[20.153,-12.9552,4.05302],[20.153,-12.9552,4.05302],[19.5545,-14.1561,4.46619],[18.6846,-13.6312,3.51496],[20.153,-12.9552,4.05302],[20.8021,-13.6809,5.45084],[19.5545,-14.1561,4.46619],[19.5545,-14.1561,4.46619],[20.8021,-13.6809,5.45084],[19.3818,-15.003,5.47693],[19.5545,-14.1561,4.46619],[19.3818,-15.003,5.47693],[18.1256,-14.9836,4.33086],[20.4862,-14.6126,6.51861],[19.3818,-15.003,5.47693],[20.8021,-13.6809,5.45084],[21.7546,-13.3392,6.9881],[20.4862,-14.6126,6.51861],[20.8021,-13.6809,5.45084],[21.7546,-13.3392,6.9881],[20.8021,-13.6809,5.45084],[21.9654,-12.4938,5.89223],[21.9654,-12.4938,5.89223],[22.6742,-11.4198,6.46059],[21.7546,-13.3392,6.9881],[22.6742,-11.4198,6.46059],[21.9654,-12.4938,5.89223],[21.9185,-11.2254,5.05737],[20.8021,-13.6809,5.45084],[21.9185,-11.2254,5.05737],[21.9654,-12.4938,5.89223],[20.4862,-14.6126,6.51861],[21.7546,-13.3392,6.9881],[20.7369,-14.6382,7.85881],[20.7369,-14.6382,7.85881],[18.9301,-15.7768,7.0764],[20.4862,-14.6126,6.51861],[19.4424,-15.4705,8.9052],[18.9301,-15.7768,7.0764],[20.7369,-14.6382,7.85881],[19.4424,-15.4705,8.9052],[20.7369,-14.6382,7.85881],[20.9113,-14.4659,9.21871],[20.9113,-14.4659,9.21871],[20.06,-14.6191,10.3641],[19.4424,-15.4705,8.9052],[20.06,-14.6191,10.3641],[17.9542,-15.5864,10.3203],[19.4424,-15.4705,8.9052],[20.06,-14.6191,10.3641],[20.9113,-14.4659,9.21871],[21.5299,-13.4623,10.2727],[20.7094,-13.5262,11.4899],[20.06,-14.6191,10.3641],[21.5299,-13.4623,10.2727],[21.8656,-12.2654,11.6854],[20.7094,-13.5262,11.4899],[21.5299,-13.4623,10.2727],[21.8656,-12.2654,11.6854],[21.5299,-13.4623,10.2727],[22.7341,-11.8017,10.1007],[21.8656,-12.2654,11.6854],[22.7341,-11.8017,10.1007],[22.9151,-10.7597,11.8245],[22.0944,-10.9977,13.2305],[21.8656,-12.2654,11.6854],[22.9151,-10.7597,11.8245],[23.0794,-9.58006,13.3085],[22.0944,-10.9977,13.2305],[22.9151,-10.7597,11.8245],[23.0794,-9.58006,13.3085],[22.9151,-10.7597,11.8245],[23.624,-9.23198,11.9269],[23.8177,-7.72886,13.5516],[23.0794,-9.58006,13.3085],[23.624,-9.23198,11.9269],[24.0786,-7.80332,11.5967],[23.8177,-7.72886,13.5516],[23.624,-9.23198,11.9269],[24.0786,-7.80332,11.5967],[24.3318,-5.89865,12.8478],[23.8177,-7.72886,13.5516],[23.8177,-7.72886,13.5516],[24.3318,-5.89865,12.8478],[24.2676,-5.72737,14.6453],[23.6599,-7.04305,15.6918],[23.8177,-7.72886,13.5516],[24.2676,-5.72737,14.6453],[23.0929,-8.61903,14.8634],[23.8177,-7.72886,13.5516],[23.6599,-7.04305,15.6918],[22.884,-8.07698,16.4184],[23.0929,-8.61903,14.8634],[23.6599,-7.04305,15.6918],[23.2381,-7.14011,17.2019],[22.884,-8.07698,16.4184],[23.6599,-7.04305,15.6918],[23.6644,-6.15784,17.6245],[23.2381,-7.14011,17.2019],[23.6599,-7.04305,15.6918],[23.6644,-6.15784,17.6245],[23.6599,-7.04305,15.6918],[24.2214,-5.27496,16.5862],[23.6644,-6.15784,17.6245],[24.2214,-5.27496,16.5862],[24.0063,-5.28995,18.013],[24.0063,-5.28995,18.013],[23.5351,-5.82071,18.8391],[23.6644,-6.15784,17.6245],[23.6644,-6.15784,17.6245],[23.5351,-5.82071,18.8391],[23.0905,-6.75849,18.4031],[23.5351,-5.82071,18.8391],[22.8165,-6.35733,19.8623],[23.0905,-6.75849,18.4031],[22.8165,-6.35733,19.8623],[22.4452,-7.28951,18.9671],[23.0905,-6.75849,18.4031],[23.0905,-6.75849,18.4031],[22.4452,-7.28951,18.9671],[22.6418,-7.7058,17.7497],[23.2381,-7.14011,17.2019],[23.0905,-6.75849,18.4031],[22.6418,-7.7058,17.7497],[22.6418,-7.7058,17.7497],[22.4452,-7.28951,18.9671],[21.8141,-8.31984,18.2331],[22.6418,-7.7058,17.7497],[21.8141,-8.31984,18.2331],[22.1158,-8.66897,17.0898],[22.6418,-7.7058,17.7497],[22.1158,-8.66897,17.0898],[22.884,-8.07698,16.4184],[22.1158,-8.66897,17.0898],[22.2514,-9.2745,15.7381],[22.884,-8.07698,16.4184],[22.1158,-8.66897,17.0898],[21.4204,-9.61833,16.5421],[22.2514,-9.2745,15.7381],[21.4204,-9.61833,16.5421],[21.2788,-10.6483,14.9227],[22.2514,-9.2745,15.7381],[22.2514,-9.2745,15.7381],[21.2788,-10.6483,14.9227],[22.4342,-9.86889,14.4237],[22.4342,-9.86889,14.4237],[23.0929,-8.61903,14.8634],[22.2514,-9.2745,15.7381],[23.0929,-8.61903,14.8634],[22.4342,-9.86889,14.4237],[23.0794,-9.58006,13.3085],[21.2788,-10.6483,14.9227],[22.0944,-10.9977,13.2305],[22.4342,-9.86889,14.4237],[22.0944,-10.9977,13.2305],[21.2788,-10.6483,14.9227],[20.4515,-12.423,13.1147],[21.2788,-10.6483,14.9227],[19.4061,-11.477,15.0479],[20.4515,-12.423,13.1147],[21.2788,-10.6483,14.9227],[20.3646,-10.4427,16.2163],[19.4061,-11.477,15.0479],[20.3646,-10.4427,16.2163],[19.3536,-10.6103,16.5311],[19.4061,-11.477,15.0479],[19.3536,-10.6103,16.5311],[20.3646,-10.4427,16.2163],[19.9867,-10.0381,17.2645],[19.9867,-10.0381,17.2645],[19.3817,-10.036,17.5356],[19.3536,-10.6103,16.5311],[19.3536,-10.6103,16.5311],[19.3817,-10.036,17.5356],[18.3122,-10.3439,17.0243],[18.3122,-10.3439,17.0243],[18.4191,-10.9983,15.9771],[19.3536,-10.6103,16.5311],[19.3817,-10.036,17.5356],[19.1349,-9.57099,18.4443],[18.3122,-10.3439,17.0243],[18.3122,-10.3439,17.0243],[19.1349,-9.57099,18.4443],[18.2747,-9.22933,19.1302],[17.8065,-9.70684,18.1547],[18.3122,-10.3439,17.0243],[18.2747,-9.22933,19.1302],[17.8065,-9.70684,18.1547],[18.2747,-9.22933,19.1302],[17.3895,-9.18337,18.9667],[17.1072,-9.87193,17.3916],[17.8065,-9.70684,18.1547],[17.3895,-9.18337,18.9667],[17.3895,-9.18337,18.9667],[16.4486,-8.89679,18.6771],[17.1072,-9.87193,17.3916],[17.1072,-9.87193,17.3916],[16.4486,-8.89679,18.6771],[16.1351,-9.4637,17.1436],[17.1072,-9.87193,17.3916],[16.1351,-9.4637,17.1436],[16.4205,-10.1516,16.279],[16.4205,-10.1516,16.279],[17.4004,-10.6927,16.189],[17.1072,-9.87193,17.3916],[17.4004,-10.6927,16.189],[18.3122,-10.3439,17.0243],[17.1072,-9.87193,17.3916],[16.1351,-9.4637,17.1436],[15.7574,-9.63515,16.294],[16.4205,-10.1516,16.279],[15.5577,-10.2396,15.2051],[16.4205,-10.1516,16.279],[15.7574,-9.63515,16.294],[15.5577,-10.2396,15.2051],[15.7574,-9.63515,16.294],[15.1598,-9.21798,15.8612],[15.4728,-8.96359,16.9576],[15.1598,-9.21798,15.8612],[15.7574,-9.63515,16.294],[15.4728,-8.96359,16.9576],[14.9052,-8.38689,16.6264],[15.1598,-9.21798,15.8612],[14.6583,-8.59564,15.5809],[15.1598,-9.21798,15.8612],[14.9052,-8.38689,16.6264],[14.9052,-8.38689,16.6264],[14.4023,-7.72071,16.1003],[14.6583,-8.59564,15.5809],[14.6583,-8.59564,15.5809],[14.4023,-7.72071,16.1003],[14.2143,-8.12687,14.8246],[14.2143,-8.12687,14.8246],[14.5444,-9.39398,14.5437],[14.6583,-8.59564,15.5809],[14.5444,-9.39398,14.5437],[14.2143,-8.12687,14.8246],[13.7164,-8.7815,13.4166],[14.2143,-8.12687,14.8246],[13.8658,-7.14777,13.9949],[13.7164,-8.7815,13.4166],[13.7164,-8.7815,13.4166],[13.8658,-7.14777,13.9949],[13.6377,-7.78606,12.929],[13.7164,-8.7815,13.4166],[13.6377,-7.78606,12.929],[13.2205,-8.0991,12.0037],[13.7164,-8.7815,13.4166],[13.2205,-8.0991,12.0037],[12.5519,-9.59162,12.0819],[13.2205,-8.0991,12.0037],[12.4355,-8.40207,10.8059],[12.5519,-9.59162,12.0819],[13.2205,-8.0991,12.0037],[13.3069,-7.2319,11.2215],[12.4355,-8.40207,10.8059],[13.6022,-7.02574,12.359],[13.2205,-8.0991,12.0037],[13.6377,-7.78606,12.929],[13.8658,-7.14777,13.9949],[14.2143,-8.12687,14.8246],[14.0266,-6.9671,15.3779],[14.2143,-8.12687,14.8246],[14.4023,-7.72071,16.1003],[14.0266,-6.9671,15.3779],[14.0266,-6.9671,15.3779],[14.4023,-7.72071,16.1003],[14.0972,-6.59764,16.8148],[13.8592,-6.00496,15.8415],[14.0266,-6.9671,15.3779],[14.0972,-6.59764,16.8148],[14.0972,-6.59764,16.8148],[14.4023,-7.72071,16.1003],[14.5831,-7.48134,17.3966],[14.2755,-6.63382,18.0602],[14.0972,-6.59764,16.8148],[14.5831,-7.48134,17.3966],[14.2755,-6.63382,18.0602],[14.5831,-7.48134,17.3966],[14.7731,-7.20883,18.7758],[14.7731,-7.20883,18.7758],[14.1648,-5.96128,19.1559],[14.2755,-6.63382,18.0602],[14.2755,-6.63382,18.0602],[14.1648,-5.96128,19.1559],[13.9774,-5.90423,17.9518],[13.9774,-5.90423,17.9518],[14.1648,-5.96128,19.1559],[13.7839,-4.91395,18.6863],[13.7817,-5.30118,16.8767],[13.9774,-5.90423,17.9518],[13.7839,-4.91395,18.6863],[13.6502,-4.10374,17.6944],[13.7817,-5.30118,16.8767],[13.7839,-4.91395,18.6863],[13.6502,-4.10374,17.6944],[13.7839,-4.91395,18.6863],[13.6273,-3.67844,19.1958],[13.7839,-4.91395,18.6863],[13.8389,-4.72263,20.1054],[13.6273,-3.67844,19.1958],[13.5857,-3.39983,20.7298],[13.6273,-3.67844,19.1958],[13.8389,-4.72263,20.1054],[13.5857,-3.39983,20.7298],[13.8389,-4.72263,20.1054],[13.6244,-3.64623,22.3539],[13.5857,-3.39983,20.7298],[13.6244,-3.64623,22.3539],[13.5055,-3.10367,21.9333],[13.5842,-2.78799,21.0475],[13.5857,-3.39983,20.7298],[13.5055,-3.10367,21.9333],[13.5857,-3.39983,20.7298],[13.5842,-2.78799,21.0475],[13.6035,-2.87975,20.1704],[13.6244,-3.64623,22.3539],[13.3683,-3.14884,22.4286],[13.5055,-3.10367,21.9333],[13.4637,-2.85268,21.7435],[13.5055,-3.10367,21.9333],[13.3683,-3.14884,22.4286],[13.5093,-3.53449,23.0049],[13.3683,-3.14884,22.4286],[13.6244,-3.64623,22.3539],[13.5093,-3.53449,23.0049],[13.6244,-3.64623,22.3539],[13.922,-4.32183,22.9328],[13.7437,-3.99869,24.0535],[13.5093,-3.53449,23.0049],[13.922,-4.32183,22.9328],[13.7437,-3.99869,24.0535],[13.922,-4.32183,22.9328],[14.3217,-4.67866,24.0197],[14.3217,-4.67866,24.0197],[13.9026,-4.10673,25.1936],[13.7437,-3.99869,24.0535],[13.9026,-4.10673,25.1936],[13.1384,-3.61122,25.1645],[13.7437,-3.99869,24.0535],[13.9026,-4.10673,25.1936],[13.2638,-3.69029,26.2257],[13.1384,-3.61122,25.1645],[13.1384,-3.61122,25.1645],[13.2638,-3.69029,26.2257],[12.3672,-3.48447,25.8016],[13.1384,-3.61122,25.1645],[12.3672,-3.48447,25.8016],[12.5207,-3.38663,24.7877],[12.671,-3.29454,23.8571],[13.1384,-3.61122,25.1645],[12.5207,-3.38663,24.7877],[11.8318,-3.67274,24.291],[12.671,-3.29454,23.8571],[12.5207,-3.38663,24.7877],[12.671,-3.29454,23.8571],[11.8318,-3.67274,24.291],[12.6114,-3.35695,23.0126],[13.0386,-3.15757,23.1335],[12.671,-3.29454,23.8571],[12.6114,-3.35695,23.0126],[13.0194,-3.1106,22.7575],[13.0386,-3.15757,23.1335],[12.6114,-3.35695,23.0126],[13.067,-3.28451,21.7347],[13.0194,-3.1106,22.7575],[12.6114,-3.35695,23.0126],[12.6114,-3.35695,23.0126],[12.3217,-3.78634,22.1109],[13.067,-3.28451,21.7347],[12.3217,-3.78634,22.1109],[12.3998,-4.13031,20.6934],[13.067,-3.28451,21.7347],[12.3998,-4.13031,20.6934],[12.3217,-3.78634,22.1109],[11.4422,-4.41178,22.0285],[12.3998,-4.13031,20.6934],[11.4422,-4.41178,22.0285],[11.1736,-4.93872,20.8141],[11.6259,-5.14617,19.1752],[12.3998,-4.13031,20.6934],[11.1736,-4.93872,20.8141],[11.6259,-5.14617,19.1752],[11.1736,-4.93872,20.8141],[10.1788,-5.69886,20.21],[11.6259,-5.14617,19.1752],[10.1788,-5.69886,20.21],[10.2062,-6.16137,18.6509],[8.98719,-6.49577,19.5921],[10.2062,-6.16137,18.6509],[10.1788,-5.69886,20.21],[8.84851,-6.12609,21.0617],[8.98719,-6.49577,19.5921],[10.1788,-5.69886,20.21],[8.84851,-6.12609,21.0617],[10.1788,-5.69886,20.21],[10.0388,-5.2644,21.945],[8.84851,-6.12609,21.0617],[10.0388,-5.2644,21.945],[8.51851,-5.8433,22.5724],[7.44114,-6.56465,21.6659],[8.84851,-6.12609,21.0617],[8.51851,-5.8433,22.5724],[7.15979,-6.22762,23.2709],[7.44114,-6.56465,21.6659],[8.51851,-5.8433,22.5724],[7.15979,-6.22762,23.2709],[8.51851,-5.8433,22.5724],[8.2309,-5.55485,24.0575],[8.2309,-5.55485,24.0575],[6.93679,-5.86469,24.8609],[7.15979,-6.22762,23.2709],[5.78462,-6.53087,23.9899],[7.15979,-6.22762,23.2709],[6.93679,-5.86469,24.8609],[8.12958,-5.17821,25.5508],[6.93679,-5.86469,24.8609],[8.2309,-5.55485,24.0575],[9.31445,-4.88008,24.6712],[8.12958,-5.17821,25.5508],[8.2309,-5.55485,24.0575],[8.2309,-5.55485,24.0575],[9.34705,-5.22677,23.362],[9.31445,-4.88008,24.6712],[10.6133,-4.50421,23.5474],[9.31445,-4.88008,24.6712],[9.34705,-5.22677,23.362],[9.34705,-5.22677,23.362],[10.0388,-5.2644,21.945],[10.6133,-4.50421,23.5474],[10.0388,-5.2644,21.945],[11.4422,-4.41178,22.0285],[10.6133,-4.50421,23.5474],[11.4422,-4.41178,22.0285],[11.8071,-3.91549,23.0041],[10.6133,-4.50421,23.5474],[10.6133,-4.50421,23.5474],[11.8071,-3.91549,23.0041],[11.8318,-3.67274,24.291],[10.6133,-4.50421,23.5474],[11.8318,-3.67274,24.291],[10.3448,-4.18196,25.5115],[11.8318,-3.67274,24.291],[11.3995,-3.69572,25.5774],[10.3448,-4.18196,25.5115],[10.3448,-4.18196,25.5115],[11.3995,-3.69572,25.5774],[11.0276,-3.71029,26.7233],[11.0276,-3.71029,26.7233],[9.76009,-4.09024,27.0684],[10.3448,-4.18196,25.5115],[9.18187,-4.60092,25.9774],[10.3448,-4.18196,25.5115],[9.76009,-4.09024,27.0684],[8.34382,-4.67567,27.0555],[9.18187,-4.60092,25.9774],[9.76009,-4.09024,27.0684],[8.34382,-4.67567,27.0555],[9.76009,-4.09024,27.0684],[8.9366,-3.99512,28.7363],[7.24556,-4.75936,28.3413],[8.34382,-4.67567,27.0555],[8.9366,-3.99512,28.7363],[7.24556,-4.75936,28.3413],[8.9366,-3.99512,28.7363],[7.56696,-4.15544,29.9849],[7.56696,-4.15544,29.9849],[6.05943,-4.8459,29.6076],[7.24556,-4.75936,28.3413],[5.7244,-5.42075,28.0383],[7.24556,-4.75936,28.3413],[6.05943,-4.8459,29.6076],[5.7244,-5.42075,28.0383],[6.05943,-4.8459,29.6076],[4.54648,-5.49559,29.1727],[5.7244,-5.42075,28.0383],[4.54648,-5.49559,29.1727],[4.30827,-5.97665,27.6929],[5.31792,-5.89884,26.8402],[5.7244,-5.42075,28.0383],[4.30827,-5.97665,27.6929],[4.16137,-6.39704,26.2559],[5.31792,-5.89884,26.8402],[4.30827,-5.97665,27.6929],[6.75833,-5.43645,26.6161],[5.7244,-5.42075,28.0383],[5.31792,-5.89884,26.8402],[6.75833,-5.43645,26.6161],[5.31792,-5.89884,26.8402],[5.555,-6.1667,25.5646],[6.93679,-5.86469,24.8609],[6.75833,-5.43645,26.6161],[5.555,-6.1667,25.5646],[4.54648,-5.49559,29.1727],[3.13205,-6.03851,28.6281],[4.30827,-5.97665,27.6929],[4.30827,-5.97665,27.6929],[3.13205,-6.03851,28.6281],[2.869,-6.45128,27.215],[4.54648,-5.49559,29.1727],[3.21643,-5.61351,30.1349],[3.13205,-6.03851,28.6281],[3.13205,-6.03851,28.6281],[3.21643,-5.61351,30.1349],[1.87646,-6.08973,29.4017],[1.87646,-6.08973,29.4017],[1.97278,-6.38999,28.1658],[3.13205,-6.03851,28.6281],[3.21643,-5.61351,30.1349],[4.54648,-5.49559,29.1727],[4.74927,-4.91887,30.9649],[3.21643,-5.61351,30.1349],[4.74927,-4.91887,30.9649],[3.19611,-5.2397,31.631],[3.21643,-5.61351,30.1349],[3.19611,-5.2397,31.631],[1.77475,-5.70176,31.044],[3.19611,-5.2397,31.631],[2.27381,-5.32815,32.2628],[1.77475,-5.70176,31.044],[1.20981,-5.43346,32.4881],[1.77475,-5.70176,31.044],[2.27381,-5.32815,32.2628],[2.27381,-5.32815,32.2628],[2.17235,-5.01439,33.3822],[1.20981,-5.43346,32.4881],[2.17235,-5.01439,33.3822],[2.27381,-5.32815,32.2628],[3.03125,-5.00373,32.7475],[2.17235,-5.01439,33.3822],[3.03125,-5.00373,32.7475],[3.36043,-4.54193,33.8091],[2.23994,-4.3833,34.9518],[2.17235,-5.01439,33.3822],[3.36043,-4.54193,33.8091],[2.23994,-4.3833,34.9518],[3.36043,-4.54193,33.8091],[3.69315,-3.97044,34.9856],[3.22382,-3.52187,36.1697],[2.23994,-4.3833,34.9518],[3.69315,-3.97044,34.9856],[3.22382,-3.52187,36.1697],[3.69315,-3.97044,34.9856],[4.74514,-3.17521,35.7568],[3.22382,-3.52187,36.1697],[4.74514,-3.17521,35.7568],[4.1309,-2.61414,37.0444],[3.22382,-3.52187,36.1697],[4.1309,-2.61414,37.0444],[2.87554,-2.89408,37.2897],[3.22382,-3.52187,36.1697],[2.87554,-2.89408,37.2897],[1.64167,-3.59279,36.6655],[1.64167,-3.59279,36.6655],[2.87554,-2.89408,37.2897],[1.88862,-2.42916,38.1221],[1.64167,-3.59279,36.6655],[1.88862,-2.42916,38.1221],[0.41015,-3.04969,37.66],[0.205753,-3.87771,36.5637],[1.64167,-3.59279,36.6655],[0.41015,-3.04969,37.66],[-0.949767,-3.4847,37.0259],[0.205753,-3.87771,36.5637],[0.41015,-3.04969,37.66],[-0.949767,-3.4847,37.0259],[0.41015,-3.04969,37.66],[-0.756087,-2.45294,38.3901],[-2.7102,-2.84493,37.3651],[-0.949767,-3.4847,37.0259],[-0.756087,-2.45294,38.3901],[-2.7102,-2.84493,37.3651],[-0.756087,-2.45294,38.3901],[-1.93175,-2.14622,38.543],[-3.18584,-1.45431,38.9042],[-2.7102,-2.84493,37.3651],[-1.93175,-2.14622,38.543],[-1.93175,-2.14622,38.543],[-1.24099,-1.90318,39.1929],[-3.18584,-1.45431,38.9042],[-3.18584,-1.45431,38.9042],[-1.24099,-1.90318,39.1929],[-2.62201,-1.34341,39.6798],[-3.18584,-1.45431,38.9042],[-2.62201,-1.34341,39.6798],[-3.21667,-0.894329,39.6299],[-3.21667,-0.894329,39.6299],[-3.85374,-0.580356,39.5257],[-3.18584,-1.45431,38.9042],[-3.85374,-0.580356,39.5257],[-4.74201,-0.631294,38.9798],[-3.18584,-1.45431,38.9042],[-3.18584,-1.45431,38.9042],[-4.74201,-0.631294,38.9798],[-4.2678,-1.79133,37.9771],[-4.2678,-1.79133,37.9771],[-4.74201,-0.631294,38.9798],[-5.44441,-1.14095,38.1308],[-6.236,-1.80219,36.8611],[-4.2678,-1.79133,37.9771],[-5.44441,-1.14095,38.1308],[-5.44441,-1.14095,38.1308],[-6.58565,-0.217304,38.4744],[-6.236,-1.80219,36.8611],[-7.78914,-0.581546,37.4762],[-6.236,-1.80219,36.8611],[-6.58565,-0.217304,38.4744],[-6.58565,-0.217304,38.4744],[-7.7534,0.257896,38.402],[-7.78914,-0.581546,37.4762],[-9.36986,1.04273,38.2817],[-7.78914,-0.581546,37.4762],[-7.7534,0.257896,38.402],[-7.31241,0.987485,39.1498],[-9.36986,1.04273,38.2817],[-7.7534,0.257896,38.402],[-9.36986,1.04273,38.2817],[-7.31241,0.987485,39.1498],[-8.51378,2.27656,39.5245],[-10.1286,2.61354,39.1169],[-9.36986,1.04273,38.2817],[-8.51378,2.27656,39.5245],[-10.1286,2.61354,39.1169],[-8.51378,2.27656,39.5245],[-9.31721,3.43963,39.8701],[-9.31721,3.43963,39.8701],[-10.7161,4.16062,39.6759],[-10.1286,2.61354,39.1169],[-10.7161,4.16062,39.6759],[-11.5624,3.16164,38.8603],[-10.1286,2.61354,39.1169],[-11.3868,1.85434,38.0359],[-10.1286,2.61354,39.1169],[-11.5624,3.16164,38.8603],[-11.5624,3.16164,38.8603],[-13.0319,3.00419,38.0809],[-11.3868,1.85434,38.0359],[-12.891,1.86794,37.2963],[-11.3868,1.85434,38.0359],[-13.0319,3.00419,38.0809],[-14.3539,2.4432,36.9744],[-12.891,1.86794,37.2963],[-13.0319,3.00419,38.0809],[-13.0319,3.00419,38.0809],[-14.4285,3.40679,37.6919],[-14.3539,2.4432,36.9744],[-14.3539,2.4432,36.9744],[-14.4285,3.40679,37.6919],[-15.4626,3.35567,37.1302],[-15.4626,3.35567,37.1302],[-15.8855,2.65109,36.3057],[-14.3539,2.4432,36.9744],[-14.3539,2.4432,36.9744],[-15.8855,2.65109,36.3057],[-15.0206,1.6578,35.748],[-14.3539,2.4432,36.9744],[-15.0206,1.6578,35.748],[-13.5295,1.26874,36.283],[-13.5295,1.26874,36.283],[-15.0206,1.6578,35.748],[-14.1303,0.657799,34.9885],[-12.5935,0.25983,35.5849],[-13.5295,1.26874,36.283],[-14.1303,0.657799,34.9885],[-13.1063,-0.30564,34.1558],[-12.5935,0.25983,35.5849],[-14.1303,0.657799,34.9885],[-13.1063,-0.30564,34.1558],[-14.1303,0.657799,34.9885],[-14.773,0.167973,33.4233],[-13.522,-0.686132,32.8261],[-13.1063,-0.30564,34.1558],[-14.773,0.167973,33.4233],[-14.7746,-0.449215,31.608],[-13.522,-0.686132,32.8261],[-14.773,0.167973,33.4233],[-14.773,0.167973,33.4233],[-15.8865,0.281222,32.3462],[-14.7746,-0.449215,31.608],[-16.5009,0.247692,31.0914],[-14.7746,-0.449215,31.608],[-15.8865,0.281222,32.3462],[-16.5009,0.247692,31.0914],[-15.8865,0.281222,32.3462],[-17.0904,0.7809,32.1613],[-16.5009,0.247692,31.0914],[-17.0904,0.7809,32.1613],[-17.8307,0.838601,31.0981],[-16.5009,0.247692,31.0914],[-17.8307,0.838601,31.0981],[-17.7615,0.565959,29.492],[-16.5009,0.247692,31.0914],[-17.7615,0.565959,29.492],[-15.7777,-0.339635,29.7552],[-17.7615,0.565959,29.492],[-17.8307,0.838601,31.0981],[-19.5157,1.42625,30.6985],[-20.3073,1.40358,28.3974],[-17.7615,0.565959,29.492],[-19.5157,1.42625,30.6985],[-19.5157,1.42625,30.6985],[-21.4628,1.84481,29.9725],[-20.3073,1.40358,28.3974],[-20.3073,1.40358,28.3974],[-21.4628,1.84481,29.9725],[-23.1044,2.01927,29.0268],[-22.7679,1.89057,26.8481],[-20.3073,1.40358,28.3974],[-23.1044,2.01927,29.0268],[-22.7679,1.89057,26.8481],[-23.1044,2.01927,29.0268],[-25.035,2.05045,27.3934],[-24.4165,2.06027,25.9194],[-22.7679,1.89057,26.8481],[-25.035,2.05045,27.3934],[-24.4165,2.06027,25.9194],[-25.035,2.05045,27.3934],[-25.8547,2.08497,26.1222],[-24.4165,2.06027,25.9194],[-25.8547,2.08497,26.1222],[-25.5363,2.21112,24.6556],[-22.7758,2.12327,24.7056],[-24.4165,2.06027,25.9194],[-25.5363,2.21112,24.6556],[-27.1446,2.11256,25.4478],[-25.5363,2.21112,24.6556],[-25.8547,2.08497,26.1222],[-27.1446,2.11256,25.4478],[-25.8547,2.08497,26.1222],[-27.0381,2.09739,27.2893],[-27.1446,2.11256,25.4478],[-27.0381,2.09739,27.2893],[-28.6614,2.02149,26.0269],[-28.6105,2.14297,24.6705],[-27.1446,2.11256,25.4478],[-28.6614,2.02149,26.0269],[-30.1289,1.96046,25.4974],[-28.6105,2.14297,24.6705],[-28.6614,2.02149,26.0269],[-30.1289,1.96046,25.4974],[-28.6614,2.02149,26.0269],[-30.3931,1.91354,27.2289],[-31.9635,1.73175,26.4431],[-30.1289,1.96046,25.4974],[-30.3931,1.91354,27.2289],[-32.0125,1.79578,28.4445],[-31.9635,1.73175,26.4431],[-30.3931,1.91354,27.2289],[-32.0125,1.79578,28.4445],[-30.3931,1.91354,27.2289],[-30.2393,2.07459,28.844],[-31.3899,2.18932,29.9687],[-32.0125,1.79578,28.4445],[-30.2393,2.07459,28.844],[-31.3899,2.18932,29.9687],[-30.2393,2.07459,28.844],[-29.606,2.46567,30.2356],[-29.606,2.46567,30.2356],[-30.7976,2.76254,31.1973],[-31.3899,2.18932,29.9687],[-30.7976,2.76254,31.1973],[-32.6159,2.33978,31.0373],[-31.3899,2.18932,29.9687],[-32.6159,2.33978,31.0373],[-33.0389,1.83757,29.898],[-31.3899,2.18932,29.9687],[-33.8708,1.89922,30.8466],[-33.0389,1.83757,29.898],[-32.6159,2.33978,31.0373],[-33.8708,1.89922,30.8466],[-32.6159,2.33978,31.0373],[-34.0182,2.34273,31.8834],[-34.9319,1.6481,31.2133],[-33.8708,1.89922,30.8466],[-34.0182,2.34273,31.8834],[-35.5465,2.03319,32.6885],[-34.9319,1.6481,31.2133],[-34.0182,2.34273,31.8834],[-34.8481,2.66735,32.8955],[-35.5465,2.03319,32.6885],[-34.0182,2.34273,31.8834],[-34.8481,2.66735,32.8955],[-34.0182,2.34273,31.8834],[-33.6295,3.07465,32.6325],[-35.3296,3.3179,33.659],[-34.8481,2.66735,32.8955],[-33.6295,3.07465,32.6325],[-35.3296,3.3179,33.659],[-33.6295,3.07465,32.6325],[-32.5102,3.96204,32.9107],[-35.3296,3.3179,33.659],[-32.5102,3.96204,32.9107],[-34.1694,4.67567,33.6406],[-36.2727,3.87345,34.3753],[-35.3296,3.3179,33.659],[-34.1694,4.67567,33.6406],[-35.2681,5.07682,34.1141],[-36.2727,3.87345,34.3753],[-34.1694,4.67567,33.6406],[-35.2681,5.07682,34.1141],[-34.1694,4.67567,33.6406],[-34.1612,5.67945,33.7875],[-35.0925,5.97128,33.9577],[-35.2681,5.07682,34.1141],[-34.1612,5.67945,33.7875],[-34.1612,5.67945,33.7875],[-33.3198,6.80999,33.5471],[-35.0925,5.97128,33.9577],[-34.9224,6.78963,33.7595],[-35.0925,5.97128,33.9577],[-33.3198,6.80999,33.5471],[-34.0617,7.71839,33.3011],[-34.9224,6.78963,33.7595],[-33.3198,6.80999,33.5471],[-33.3198,6.80999,33.5471],[-32.3419,7.88719,33.2658],[-34.0617,7.71839,33.3011],[-32.7352,9.03285,32.6628],[-34.0617,7.71839,33.3011],[-32.3419,7.88719,33.2658],[-31.3495,8.92222,32.9916],[-32.7352,9.03285,32.6628],[-32.3419,7.88719,33.2658],[-32.3419,7.88719,33.2658],[-30.6685,7.96848,33.4438],[-31.3495,8.92222,32.9916],[-30.6685,7.96848,33.4438],[-29.4867,9.03513,33.3511],[-31.3495,8.92222,32.9916],[-31.3495,8.92222,32.9916],[-29.4867,9.03513,33.3511],[-30.2032,9.76568,32.8425],[-31.3495,8.92222,32.9916],[-30.2032,9.76568,32.8425],[-31.4798,9.86494,32.4235],[-31.4798,9.86494,32.4235],[-30.2032,9.76568,32.8425],[-30.0462,10.6278,32.2607],[-31.4798,9.86494,32.4235],[-30.0462,10.6278,32.2607],[-31.5421,10.6652,31.6653],[-31.5421,10.6652,31.6653],[-32.7076,9.9935,31.9665],[-31.4798,9.86494,32.4235],[-32.7352,9.03285,32.6628],[-31.4798,9.86494,32.4235],[-32.7076,9.9935,31.9665],[-34.4823,9.55378,31.9218],[-32.7352,9.03285,32.6628],[-32.7076,9.9935,31.9665],[-33.0167,10.6274,30.989],[-34.4823,9.55378,31.9218],[-32.7076,9.9935,31.9665],[-33.0167,10.6274,30.989],[-34.5289,10.1374,31.1541],[-34.4823,9.55378,31.9218],[-34.5289,10.1374,31.1541],[-36.1481,9.47952,31.4034],[-34.4823,9.55378,31.9218],[-34.4823,9.55378,31.9218],[-36.1481,9.47952,31.4034],[-36.1718,8.90915,32.2864],[-35.946,8.09986,33.0389],[-34.4823,9.55378,31.9218],[-36.1718,8.90915,32.2864],[-35.946,8.09986,33.0389],[-36.1718,8.90915,32.2864],[-37.1212,8.25246,32.8041],[-36.7229,7.62801,33.424],[-35.946,8.09986,33.0389],[-37.1212,8.25246,32.8041],[-37.1212,8.25246,32.8041],[-38.2349,7.43292,33.5112],[-36.7229,7.62801,33.424],[-38.2349,7.43292,33.5112],[-39.0804,5.99725,34.763],[-36.7229,7.62801,33.424],[-36.7586,6.76881,34.0432],[-36.7229,7.62801,33.424],[-39.0804,5.99725,34.763],[-39.0804,5.99725,34.763],[-37.6046,5.8398,34.6466],[-36.7586,6.76881,34.0432],[-37.6046,5.8398,34.6466],[-36.0522,6.32419,34.1147],[-36.7586,6.76881,34.0432],[-36.7586,6.76881,34.0432],[-36.0522,6.32419,34.1147],[-35.9041,7.20922,33.6743],[-35.9041,7.20922,33.6743],[-36.0522,6.32419,34.1147],[-34.9224,6.78963,33.7595],[-37.0314,4.99462,34.7346],[-36.0522,6.32419,34.1147],[-37.6046,5.8398,34.6466],[-38.4317,5.08122,35.1866],[-37.0314,4.99462,34.7346],[-37.6046,5.8398,34.6466],[-38.2093,4.30589,35.3852],[-37.0314,4.99462,34.7346],[-38.4317,5.08122,35.1866],[-39.4326,3.64838,36.0425],[-38.2093,4.30589,35.3852],[-38.4317,5.08122,35.1866],[-39.4326,3.64838,36.0425],[-38.4317,5.08122,35.1866],[-40.117,4.79222,35.7972],[-39.4326,3.64838,36.0425],[-40.117,4.79222,35.7972],[-41.233,3.40686,36.9772],[-41.233,3.40686,36.9772],[-40.3955,2.50158,36.8249],[-39.4326,3.64838,36.0425],[-40.3955,2.50158,36.8249],[-39.1098,2.67947,35.93],[-39.4326,3.64838,36.0425],[-38.1799,3.33301,35.3866],[-39.4326,3.64838,36.0425],[-39.1098,2.67947,35.93],[-39.1098,2.67947,35.93],[-38.4854,2.10041,35.3526],[-38.1799,3.33301,35.3866],[-37.4143,2.71567,34.8188],[-38.1799,3.33301,35.3866],[-38.4854,2.10041,35.3526],[-37.4143,2.71567,34.8188],[-38.4854,2.10041,35.3526],[-37.6329,1.82111,34.46],[-37.4143,2.71567,34.8188],[-37.6329,1.82111,34.46],[-36.2159,2.99249,34.1073],[-36.2159,2.99249,34.1073],[-36.2727,3.87345,34.3753],[-37.4143,2.71567,34.8188],[-36.2159,2.99249,34.1073],[-37.6329,1.82111,34.46],[-35.6469,2.56399,33.3745],[-35.3296,3.3179,33.659],[-36.2159,2.99249,34.1073],[-35.6469,2.56399,33.3745],[-37.6329,1.82111,34.46],[-36.674,1.7193,33.4476],[-35.6469,2.56399,33.3745],[-35.6469,2.56399,33.3745],[-36.674,1.7193,33.4476],[-35.5465,2.03319,32.6885],[-36.674,1.7193,33.4476],[-37.271,0.897232,32.7204],[-35.5465,2.03319,32.6885],[-38.2898,0.880219,34.161],[-37.271,0.897232,32.7204],[-36.674,1.7193,33.4476],[-37.271,0.897232,32.7204],[-38.2898,0.880219,34.161],[-38.2089,0.38471,33.0779],[-37.271,0.897232,32.7204],[-38.2089,0.38471,33.0779],[-37.7523,0.351829,31.986],[-37.7523,0.351829,31.986],[-36.6921,0.805745,31.4853],[-37.271,0.897232,32.7204],[-34.9319,1.6481,31.2133],[-37.271,0.897232,32.7204],[-36.6921,0.805745,31.4853],[-34.9319,1.6481,31.2133],[-36.6921,0.805745,31.4853],[-35.7543,1.04775,30.4845],[-34.4842,1.46042,30.07],[-34.9319,1.6481,31.2133],[-35.7543,1.04775,30.4845],[-34.4842,1.46042,30.07],[-35.7543,1.04775,30.4845],[-35.4535,0.980528,28.9706],[-33.6642,1.48523,29.0021],[-34.4842,1.46042,30.07],[-35.4535,0.980528,28.9706],[-33.6642,1.48523,29.0021],[-35.4535,0.980528,28.9706],[-33.3322,1.47809,27.7765],[-33.3322,1.47809,27.7765],[-32.0125,1.79578,28.4445],[-33.6642,1.48523,29.0021],[-33.0389,1.83757,29.898],[-33.6642,1.48523,29.0021],[-32.0125,1.79578,28.4445],[-35.4535,0.980528,28.9706],[-34.641,1.27265,26.694],[-33.3322,1.47809,27.7765],[-34.641,1.27265,26.694],[-31.9635,1.73175,26.4431],[-33.3322,1.47809,27.7765],[-33.3487,1.69624,25.0487],[-31.9635,1.73175,26.4431],[-34.641,1.27265,26.694],[-33.3487,1.69624,25.0487],[-34.641,1.27265,26.694],[-35.4357,1.44971,25.0959],[-34.3386,1.75744,24.2088],[-33.3487,1.69624,25.0487],[-35.4357,1.44971,25.0959],[-35.2494,2.00865,23.6776],[-34.3386,1.75744,24.2088],[-35.4357,1.44971,25.0959],[-36.505,1.78741,24.2727],[-35.2494,2.00865,23.6776],[-35.4357,1.44971,25.0959],[-36.505,1.78741,24.2727],[-35.4357,1.44971,25.0959],[-36.82,1.11073,25.737],[-36.505,1.78741,24.2727],[-36.82,1.11073,25.737],[-38.8685,0.828613,26.5289],[-38.6781,1.49317,25.2042],[-36.505,1.78741,24.2727],[-38.8685,0.828613,26.5289],[-38.8685,0.828613,26.5289],[-39.7349,1.22335,26.1183],[-38.6781,1.49317,25.2042],[-38.6781,1.49317,25.2042],[-39.7349,1.22335,26.1183],[-39.0832,2.09241,24.7345],[-38.6781,1.49317,25.2042],[-39.0832,2.09241,24.7345],[-37.8621,2.09472,24.1105],[-37.8621,2.09472,24.1105],[-39.0832,2.09241,24.7345],[-38.259,2.82141,23.7043],[-36.585,2.66355,23.1185],[-37.8621,2.09472,24.1105],[-38.259,2.82141,23.7043],[-36.585,2.66355,23.1185],[-38.259,2.82141,23.7043],[-37.2604,3.81791,22.6197],[-36.585,2.66355,23.1185],[-37.2604,3.81791,22.6197],[-35.2468,3.89074,21.6278],[-34.2194,2.77046,22.2963],[-36.585,2.66355,23.1185],[-35.2468,3.89074,21.6278],[-34.2194,2.77046,22.2963],[-35.2468,3.89074,21.6278],[-33.6483,3.58554,21.1167],[-33.6483,3.58554,21.1167],[-31.8209,3.6748,20.7249],[-34.2194,2.77046,22.2963],[-32.0033,2.80361,21.9265],[-34.2194,2.77046,22.2963],[-31.8209,3.6748,20.7249],[-29.7856,3.34954,21.1206],[-32.0033,2.80361,21.9265],[-31.8209,3.6748,20.7249],[-29.7856,3.34954,21.1206],[-31.8209,3.6748,20.7249],[-30.3812,4.59306,19.8658],[-29.7856,3.34954,21.1206],[-30.3812,4.59306,19.8658],[-28.7195,4.46406,19.8158],[-27.8669,3.79121,20.3609],[-29.7856,3.34954,21.1206],[-28.7195,4.46406,19.8158],[-27.2658,4.50407,19.7427],[-27.8669,3.79121,20.3609],[-28.7195,4.46406,19.8158],[-27.6395,5.57329,19.3149],[-27.2658,4.50407,19.7427],[-28.7195,4.46406,19.8158],[-29.2787,5.33281,19.3422],[-27.6395,5.57329,19.3149],[-28.7195,4.46406,19.8158],[-27.6395,5.57329,19.3149],[-29.2787,5.33281,19.3422],[-28.9147,6.42742,19.2551],[-28.9147,6.42742,19.2551],[-27.4312,6.84525,19.3586],[-27.6395,5.57329,19.3149],[-27.4312,6.84525,19.3586],[-26.0065,6.44186,19.4246],[-27.6395,5.57329,19.3149],[-26.0589,5.12986,19.5881],[-27.6395,5.57329,19.3149],[-26.0065,6.44186,19.4246],[-27.4312,6.84525,19.3586],[-25.7784,7.79649,19.9588],[-26.0065,6.44186,19.4246],[-25.7784,7.79649,19.9588],[-24.5907,7.14125,19.7688],[-26.0065,6.44186,19.4246],[-24.6586,6.11671,19.5704],[-26.0065,6.44186,19.4246],[-24.5907,7.14125,19.7688],[-24.4444,8.19303,20.3171],[-24.5907,7.14125,19.7688],[-25.7784,7.79649,19.9588],[-24.4444,8.19303,20.3171],[-25.7784,7.79649,19.9588],[-25.339,9.25407,21.0645],[-23.265,9.00428,20.9192],[-24.4444,8.19303,20.3171],[-25.339,9.25407,21.0645],[-25.339,9.25407,21.0645],[-23.4296,10.6454,22.257],[-23.265,9.00428,20.9192],[-23.4296,10.6454,22.257],[-25.339,9.25407,21.0645],[-25.8266,10.5751,22.4431],[-23.4296,10.6454,22.257],[-25.8266,10.5751,22.4431],[-24.6897,11.7033,23.7107],[-25.8266,10.5751,22.4431],[-26.3982,11.336,23.527],[-24.6897,11.7033,23.7107],[-26.0511,12.145,24.7389],[-24.6897,11.7033,23.7107],[-26.3982,11.336,23.527],[-26.3982,11.336,23.527],[-27.7564,11.4608,24.1001],[-26.0511,12.145,24.7389],[-27.7564,11.4608,24.1001],[-27.7177,12.2353,25.7198],[-26.0511,12.145,24.7389],[-27.7177,12.2353,25.7198],[-25.8023,12.8411,25.9965],[-26.0511,12.145,24.7389],[-25.8023,12.8411,25.9965],[-23.9655,12.9798,25.383],[-26.0511,12.145,24.7389],[-23.9655,12.9798,25.383],[-25.8023,12.8411,25.9965],[-24.6032,13.5422,26.9925],[-24.6032,13.5422,26.9925],[-22.6186,14.0899,26.8689],[-23.9655,12.9798,25.383],[-24.6032,13.5422,26.9925],[-23.4902,14.1803,28.0694],[-22.6186,14.0899,26.8689],[-23.4902,14.1803,28.0694],[-24.6032,13.5422,26.9925],[-25.1479,13.7176,28.3713],[-23.374,14.3805,29.5755],[-23.4902,14.1803,28.0694],[-25.1479,13.7176,28.3713],[-25.7481,13.5924,29.6014],[-23.374,14.3805,29.5755],[-25.1479,13.7176,28.3713],[-25.1479,13.7176,28.3713],[-26.9896,13.1687,28.6345],[-25.7481,13.5924,29.6014],[-26.9896,13.1687,28.6345],[-27.1465,13.0426,29.9768],[-25.7481,13.5924,29.6014],[-27.1465,13.0426,29.9768],[-25.8678,13.3973,30.6004],[-25.7481,13.5924,29.6014],[-24.6171,13.9141,30.3853],[-25.7481,13.5924,29.6014],[-25.8678,13.3973,30.6004],[-24.6171,13.9141,30.3853],[-25.8678,13.3973,30.6004],[-24.6034,13.6941,31.271],[-23.5199,14.2334,30.901],[-24.6171,13.9141,30.3853],[-24.6034,13.6941,31.271],[-23.561,13.99,31.7438],[-23.5199,14.2334,30.901],[-24.6034,13.6941,31.271],[-23.561,13.99,31.7438],[-24.6034,13.6941,31.271],[-25.2563,12.9365,32.208],[-23.965,13.4226,32.5535],[-23.561,13.99,31.7438],[-25.2563,12.9365,32.208],[-25.2563,12.9365,32.208],[-24.3669,12.79,33.1087],[-23.965,13.4226,32.5535],[-23.965,13.4226,32.5535],[-24.3669,12.79,33.1087],[-23.4387,13.2534,33.2664],[-22.5985,13.8098,33.1236],[-23.965,13.4226,32.5535],[-23.4387,13.2534,33.2664],[-22.6054,13.288,33.8041],[-22.5985,13.8098,33.1236],[-23.4387,13.2534,33.2664],[-23.5668,12.7734,33.6891],[-22.6054,13.288,33.8041],[-23.4387,13.2534,33.2664],[-22.6054,13.288,33.8041],[-23.5668,12.7734,33.6891],[-22.911,12.4012,34.3946],[-22.6054,13.288,33.8041],[-22.911,12.4012,34.3946],[-22.0774,12.9789,34.4689],[-22.6054,13.288,33.8041],[-22.0774,12.9789,34.4689],[-21.6188,13.5808,34.1786],[-22.6054,13.288,33.8041],[-21.6188,13.5808,34.1786],[-21.8713,13.9901,33.4461],[-21.1984,13.1073,34.8926],[-21.6188,13.5808,34.1786],[-22.0774,12.9789,34.4689],[-21.9764,12.4103,34.9582],[-21.1984,13.1073,34.8926],[-22.0774,12.9789,34.4689],[-21.1984,13.1073,34.8926],[-21.9764,12.4103,34.9582],[-21.2055,12.4034,35.3879],[-21.2055,12.4034,35.3879],[-20.395,12.8329,35.5414],[-21.1984,13.1073,34.8926],[-20.395,12.8329,35.5414],[-20.2248,13.632,35.0165],[-21.1984,13.1073,34.8926],[-21.1984,13.1073,34.8926],[-20.2248,13.632,35.0165],[-20.8456,13.7754,34.4969],[-20.8456,13.7754,34.4969],[-20.2248,13.632,35.0165],[-20.1508,14.2413,34.4031],[-20.395,12.8329,35.5414],[-19.3673,13.5435,35.5812],[-20.2248,13.632,35.0165],[-19.3005,14.1775,35.0066],[-20.2248,13.632,35.0165],[-19.3673,13.5435,35.5812],[-19.5245,13.0098,35.9096],[-19.3673,13.5435,35.5812],[-20.395,12.8329,35.5414],[-19.5287,12.3463,36.2792],[-19.5245,13.0098,35.9096],[-20.395,12.8329,35.5414],[-19.5287,12.3463,36.2792],[-20.395,12.8329,35.5414],[-20.6773,11.8445,35.9438],[-20.6773,11.8445,35.9438],[-19.8156,11.6021,36.4793],[-19.5287,12.3463,36.2792],[-19.8156,11.6021,36.4793],[-18.9218,11.8738,36.7848],[-19.5287,12.3463,36.2792],[-18.5156,12.6379,36.5916],[-19.5287,12.3463,36.2792],[-18.9218,11.8738,36.7848],[-18.5156,12.6379,36.5916],[-18.9218,11.8738,36.7848],[-17.7696,12.19,37.134],[-17.4864,13.414,36.5355],[-18.5156,12.6379,36.5916],[-17.7696,12.19,37.134],[-17.4864,13.414,36.5355],[-17.7696,12.19,37.134],[-16.5441,12.7625,37.3667],[-16.5441,12.7625,37.3667],[-16.156,13.5732,37.0277],[-17.4864,13.414,36.5355],[-16.156,13.5732,37.0277],[-16.2254,14.3227,36.3407],[-17.4864,13.414,36.5355],[-16.2254,14.3227,36.3407],[-16.156,13.5732,37.0277],[-15.0788,14.04,37.0762],[-15.0788,14.04,37.0762],[-16.156,13.5732,37.0277],[-15.382,13.161,37.6059],[-14.1679,13.4728,37.8067],[-15.0788,14.04,37.0762],[-15.382,13.161,37.6059],[-14.6925,12.6922,38.113],[-14.1679,13.4728,37.8067],[-15.382,13.161,37.6059],[-15.6801,12.2541,37.9585],[-14.6925,12.6922,38.113],[-15.382,13.161,37.6059],[-15.6801,12.2541,37.9585],[-15.382,13.161,37.6059],[-16.5441,12.7625,37.3667],[-16.7806,11.8107,37.7165],[-15.6801,12.2541,37.9585],[-16.5441,12.7625,37.3667],[-15.6801,12.2541,37.9585],[-16.7806,11.8107,37.7165],[-15.9623,11.102,38.2594],[-15.9623,11.102,38.2594],[-14.7373,11.8717,38.442],[-15.6801,12.2541,37.9585],[-15.9623,11.102,38.2594],[-14.563,11.0029,38.8145],[-14.7373,11.8717,38.442],[-13.2215,11.1623,39.1563],[-14.7373,11.8717,38.442],[-14.563,11.0029,38.8145],[-14.563,11.0029,38.8145],[-14.3735,10.3683,39.0389],[-13.2215,11.1623,39.1563],[-14.3735,10.3683,39.0389],[-13.7016,9.95061,39.3203],[-13.2215,11.1623,39.1563],[-13.2215,11.1623,39.1563],[-13.7016,9.95061,39.3203],[-12.4248,10.1652,39.7047],[-12.4248,10.1652,39.7047],[-11.6037,10.9938,39.7156],[-13.2215,11.1623,39.1563],[-11.5494,12.4963,39.0529],[-13.2215,11.1623,39.1563],[-11.6037,10.9938,39.7156],[-11.6037,10.9938,39.7156],[-10.2936,11.5359,39.8696],[-11.5494,12.4963,39.0529],[-11.5494,12.4963,39.0529],[-10.2936,11.5359,39.8696],[-9.9343,12.5008,39.4942],[-10.0645,13.2773,38.9224],[-11.5494,12.4963,39.0529],[-9.9343,12.5008,39.4942],[-9.9343,12.5008,39.4942],[-8.80326,13.045,39.3051],[-10.0645,13.2773,38.9224],[-8.98948,14.2187,38.1931],[-10.0645,13.2773,38.9224],[-8.80326,13.045,39.3051],[-8.98948,14.2187,38.1931],[-8.80326,13.045,39.3051],[-7.59892,13.5924,38.9354],[-7.35329,14.2566,38.2245],[-8.98948,14.2187,38.1931],[-7.59892,13.5924,38.9354],[-6.42729,13.8863,38.6029],[-7.35329,14.2566,38.2245],[-7.59892,13.5924,38.9354],[-5.69797,13.0094,39.3575],[-6.42729,13.8863,38.6029],[-7.59892,13.5924,38.9354],[-7.37808,12.4524,39.8318],[-5.69797,13.0094,39.3575],[-7.59892,13.5924,38.9354],[-5.69797,13.0094,39.3575],[-7.37808,12.4524,39.8318],[-5.82934,11.6407,40.4015],[-3.95259,12.2719,39.9234],[-5.69797,13.0094,39.3575],[-5.82934,11.6407,40.4015],[-3.73124,11.1172,40.8557],[-3.95259,12.2719,39.9234],[-5.82934,11.6407,40.4015],[-5.11647,10.5656,41.0435],[-3.73124,11.1172,40.8557],[-5.82934,11.6407,40.4015],[-6.4063,10.3425,40.9828],[-5.11647,10.5656,41.0435],[-5.82934,11.6407,40.4015],[-5.82934,11.6407,40.4015],[-7.55247,11.1608,40.5146],[-6.4063,10.3425,40.9828],[-7.7287,9.81066,40.9316],[-6.4063,10.3425,40.9828],[-7.55247,11.1608,40.5146],[-9.17837,10.5534,40.4653],[-7.7287,9.81066,40.9316],[-7.55247,11.1608,40.5146],[-8.85854,11.9184,39.9891],[-9.17837,10.5534,40.4653],[-7.55247,11.1608,40.5146],[-7.55247,11.1608,40.5146],[-7.37808,12.4524,39.8318],[-8.85854,11.9184,39.9891],[-7.37808,12.4524,39.8318],[-8.80326,13.045,39.3051],[-8.85854,11.9184,39.9891],[-8.85854,11.9184,39.9891],[-10.2936,11.5359,39.8696],[-9.17837,10.5534,40.4653],[-9.17837,10.5534,40.4653],[-10.2936,11.5359,39.8696],[-10.5546,10.52,40.1741],[-10.5546,10.52,40.1741],[-10.2123,9.46716,40.5025],[-9.17837,10.5534,40.4653],[-9.17837,10.5534,40.4653],[-10.2123,9.46716,40.5025],[-9.00259,9.23785,40.8291],[-9.00259,9.23785,40.8291],[-10.2123,9.46716,40.5025],[-9.64024,8.616,40.7879],[-9.64024,8.616,40.7879],[-8.89693,8.20524,40.9733],[-9.00259,9.23785,40.8291],[-9.00259,9.23785,40.8291],[-8.89693,8.20524,40.9733],[-7.56388,8.19186,41.171],[-9.00259,9.23785,40.8291],[-7.56388,8.19186,41.171],[-7.7287,9.81066,40.9316],[-7.7287,9.81066,40.9316],[-7.56388,8.19186,41.171],[-6.68963,9.26577,41.2234],[-6.68963,9.26577,41.2234],[-7.56388,8.19186,41.171],[-6.23713,8.52611,41.4002],[-5.58585,9.47704,41.3472],[-6.68963,9.26577,41.2234],[-6.23713,8.52611,41.4002],[-6.23713,8.52611,41.4002],[-5.339,8.58671,41.632],[-5.58585,9.47704,41.3472],[-5.58585,9.47704,41.3472],[-5.339,8.58671,41.632],[-4.57021,9.41443,41.5672],[-5.58585,9.47704,41.3472],[-4.57021,9.41443,41.5672],[-4.13804,10.1376,41.3514],[-5.11647,10.5656,41.0435],[-5.58585,9.47704,41.3472],[-4.13804,10.1376,41.3514],[-4.57021,9.41443,41.5672],[-3.7979,9.73757,41.7383],[-4.13804,10.1376,41.3514],[-3.7979,9.73757,41.7383],[-2.91339,10.4494,41.4358],[-4.13804,10.1376,41.3514],[-4.13804,10.1376,41.3514],[-2.91339,10.4494,41.4358],[-3.73124,11.1172,40.8557],[-3.73124,11.1172,40.8557],[-2.91339,10.4494,41.4358],[-2.48451,11.1504,40.8852],[-3.73124,11.1172,40.8557],[-2.48451,11.1504,40.8852],[-2.76667,11.7373,40.4037],[-2.48451,11.1504,40.8852],[-1.35313,11.603,40.41],[-2.76667,11.7373,40.4037],[-2.76667,11.7373,40.4037],[-1.35313,11.603,40.41],[-2.41985,12.3784,39.6993],[-3.95259,12.2719,39.9234],[-2.76667,11.7373,40.4037],[-2.41985,12.3784,39.6993],[-3.95259,12.2719,39.9234],[-2.41985,12.3784,39.6993],[-3.37747,13.4308,38.4747],[-0.673748,12.6053,39.0825],[-3.37747,13.4308,38.4747],[-2.41985,12.3784,39.6993],[-3.37747,13.4308,38.4747],[-0.673748,12.6053,39.0825],[-1.22463,13.669,37.5582],[-2.89999,14.312,36.88],[-3.37747,13.4308,38.4747],[-1.22463,13.669,37.5582],[-1.22463,13.669,37.5582],[-1.19442,14.3588,36.2199],[-2.89999,14.312,36.88],[-2.89999,14.312,36.88],[-1.19442,14.3588,36.2199],[-2.53877,14.9854,35.3672],[-2.89999,14.312,36.88],[-2.53877,14.9854,35.3672],[-4.34161,14.9664,36.1524],[-4.69072,14.3694,37.4311],[-2.89999,14.312,36.88],[-4.34161,14.9664,36.1524],[-4.34161,14.9664,36.1524],[-5.96435,15.007,36.7012],[-4.69072,14.3694,37.4311],[-6.20608,14.4272,37.8111],[-4.69072,14.3694,37.4311],[-5.96435,15.007,36.7012],[-7.49804,14.8626,37.3071],[-6.20608,14.4272,37.8111],[-5.96435,15.007,36.7012],[-7.49804,14.8626,37.3071],[-5.96435,15.007,36.7012],[-7.38872,15.722,35.7659],[-7.49804,14.8626,37.3071],[-7.38872,15.722,35.7659],[-8.99194,15.3264,36.7867],[-8.98948,14.2187,38.1931],[-7.49804,14.8626,37.3071],[-8.99194,15.3264,36.7867],[-10.5104,14.9888,37.2755],[-8.98948,14.2187,38.1931],[-8.99194,15.3264,36.7867],[-10.5104,14.9888,37.2755],[-8.99194,15.3264,36.7867],[-10.3376,15.8062,36.1641],[-10.5104,14.9888,37.2755],[-10.3376,15.8062,36.1641],[-11.5394,15.5142,36.5438],[-8.99194,15.3264,36.7867],[-9.09337,16.0055,35.6932],[-10.3376,15.8062,36.1641],[-9.09337,16.0055,35.6932],[-10.1806,16.5598,34.6459],[-10.3376,15.8062,36.1641],[-10.1806,16.5598,34.6459],[-11.5259,16.0718,35.645],[-10.3376,15.8062,36.1641],[-10.5104,14.9888,37.2755],[-10.9754,13.9515,38.2019],[-8.98948,14.2187,38.1931],[-12.085,14.7652,37.2698],[-10.9754,13.9515,38.2019],[-10.5104,14.9888,37.2755],[-10.9754,13.9515,38.2019],[-12.085,14.7652,37.2698],[-12.6695,13.668,38.0625],[-12.6695,13.668,38.0625],[-11.5494,12.4963,39.0529],[-10.9754,13.9515,38.2019],[-12.6695,13.668,38.0625],[-13.5098,12.5933,38.4954],[-11.5494,12.4963,39.0529],[-13.5098,12.5933,38.4954],[-12.6695,13.668,38.0625],[-14.1679,13.4728,37.8067],[-14.1679,13.4728,37.8067],[-12.6695,13.668,38.0625],[-13.665,14.473,37.1391],[-8.99194,15.3264,36.7867],[-7.38872,15.722,35.7659],[-9.09337,16.0055,35.6932],[-7.38872,15.722,35.7659],[-8.51222,16.3403,34.8727],[-9.09337,16.0055,35.6932],[-5.96435,15.007,36.7012],[-5.60171,15.4815,35.6129],[-7.38872,15.722,35.7659],[-5.95564,16.0583,34.4929],[-7.38872,15.722,35.7659],[-5.60171,15.4815,35.6129],[-5.60171,15.4815,35.6129],[-4.30386,15.5647,34.8554],[-5.95564,16.0583,34.4929],[-4.30386,15.5647,34.8554],[-4.61784,16.2764,33.3833],[-5.95564,16.0583,34.4929],[-4.61784,16.2764,33.3833],[-6.50792,16.8645,32.8358],[-5.95564,16.0583,34.4929],[-2.83181,15.6331,34.0646],[-4.61784,16.2764,33.3833],[-4.30386,15.5647,34.8554],[-2.83181,15.6331,34.0646],[-4.30386,15.5647,34.8554],[-2.53877,14.9854,35.3672],[-1.23688,15.2991,34.1955],[-2.83181,15.6331,34.0646],[-2.53877,14.9854,35.3672],[-2.53877,14.9854,35.3672],[-0.938974,14.7942,35.2003],[-1.23688,15.2991,34.1955],[-0.938974,14.7942,35.2003],[0.0178522,14.9503,34.5688],[-1.23688,15.2991,34.1955],[-1.23688,15.2991,34.1955],[0.0178522,14.9503,34.5688],[0.345376,15.495,33.262],[-1.45733,16.0304,32.6365],[-1.23688,15.2991,34.1955],[0.345376,15.495,33.262],[-0.0135276,16.3806,31.3175],[-1.45733,16.0304,32.6365],[0.345376,15.495,33.262],[-0.0135276,16.3806,31.3175],[0.345376,15.495,33.262],[2.34901,16.012,31.4042],[-0.0135276,16.3806,31.3175],[2.34901,16.012,31.4042],[1.25858,16.7633,29.8938],[-0.0135276,16.3806,31.3175],[1.25858,16.7633,29.8938],[-0.289986,17.074,29.7266],[-2.16061,16.8968,30.894],[-0.0135276,16.3806,31.3175],[-0.289986,17.074,29.7266],[-1.56677,17.4119,29.3981],[-2.16061,16.8968,30.894],[-0.289986,17.074,29.7266],[-1.56677,17.4119,29.3981],[-0.289986,17.074,29.7266],[-1.20857,17.8838,28.0262],[-2.60949,17.7771,28.912],[-1.56677,17.4119,29.3981],[-1.20857,17.8838,28.0262],[-1.20857,17.8838,28.0262],[-0.289986,17.074,29.7266],[0.667327,17.4045,28.4706],[-1.20857,17.8838,28.0262],[0.667327,17.4045,28.4706],[0.528811,17.9867,26.9113],[-0.981342,18.765,25.3932],[-1.20857,17.8838,28.0262],[0.528811,17.9867,26.9113],[0.528811,17.9867,26.9113],[1.12048,18.3894,25.3487],[-0.981342,18.765,25.3932],[1.12048,18.3894,25.3487],[0.344385,18.9457,24.1051],[-0.981342,18.765,25.3932],[0.344385,18.9457,24.1051],[-0.939964,19.4271,23.3162],[-0.981342,18.765,25.3932],[-2.81775,19.4968,24.0171],[-0.981342,18.765,25.3932],[-0.939964,19.4271,23.3162],[-0.939964,19.4271,23.3162],[-2.26526,20.0105,22.0804],[-2.81775,19.4968,24.0171],[-2.26526,20.0105,22.0804],[-3.96245,20.108,22.4168],[-2.81775,19.4968,24.0171],[-2.26526,20.0105,22.0804],[-3.43568,20.5151,20.7753],[-3.96245,20.108,22.4168],[-3.43568,20.5151,20.7753],[-4.82799,20.5017,21.2004],[-3.96245,20.108,22.4168],[-4.82799,20.5017,21.2004],[-5.63145,20.1671,22.4869],[-3.96245,20.108,22.4168],[-3.96245,20.108,22.4168],[-5.63145,20.1671,22.4869],[-4.67752,19.727,23.9291],[-6.19377,20.5753,20.823],[-5.63145,20.1671,22.4869],[-4.82799,20.5017,21.2004],[-4.74396,20.8984,19.5272],[-6.19377,20.5753,20.823],[-4.82799,20.5017,21.2004],[-6.19377,20.5753,20.823],[-4.74396,20.8984,19.5272],[-6.41624,20.9541,19.0161],[-6.41624,20.9541,19.0161],[-4.74396,20.8984,19.5272],[-5.28506,21.2316,18.0212],[-4.74396,20.8984,19.5272],[-3.92307,21.254,17.8232],[-5.28506,21.2316,18.0212],[-3.92307,21.254,17.8232],[-4.8341,21.4884,16.5573],[-5.28506,21.2316,18.0212],[-5.28506,21.2316,18.0212],[-4.8341,21.4884,16.5573],[-6.40497,21.2714,17.2038],[-4.8341,21.4884,16.5573],[-5.93468,21.5791,15.2907],[-6.40497,21.2714,17.2038],[-5.93468,21.5791,15.2907],[-4.8341,21.4884,16.5573],[-4.19728,21.7347,14.7995],[-5.24616,21.8484,13.3953],[-5.93468,21.5791,15.2907],[-4.19728,21.7347,14.7995],[-5.24616,21.8484,13.3953],[-4.19728,21.7347,14.7995],[-3.55566,21.9263,12.9355],[-4.73148,22.0155,11.3613],[-5.24616,21.8484,13.3953],[-3.55566,21.9263,12.9355],[-4.73148,22.0155,11.3613],[-6.1612,21.8586,12.2723],[-5.24616,21.8484,13.3953],[-6.91301,21.6143,13.815],[-5.93468,21.5791,15.2907],[-5.24616,21.8484,13.3953],[-6.91301,21.6143,13.815],[-7.95,21.1456,15.9654],[-5.93468,21.5791,15.2907],[-4.8341,21.4884,16.5573],[-3.19672,21.4987,16.2139],[-4.19728,21.7347,14.7995],[-4.19728,21.7347,14.7995],[-3.19672,21.4987,16.2139],[-2.46691,21.7011,14.4328],[-4.8341,21.4884,16.5573],[-3.92307,21.254,17.8232],[-3.19672,21.4987,16.2139],[-3.19672,21.4987,16.2139],[-3.92307,21.254,17.8232],[-2.48232,21.1896,17.541],[-2.48232,21.1896,17.541],[-1.31787,21.2861,16.1182],[-3.19672,21.4987,16.2139],[-1.09343,20.7655,18.4576],[-1.31787,21.2861,16.1182],[-2.48232,21.1896,17.541],[-2.48232,21.1896,17.541],[-2.91441,20.8884,19.0775],[-1.09343,20.7655,18.4576],[-2.91441,20.8884,19.0775],[-1.78245,20.4257,20.3414],[-1.09343,20.7655,18.4576],[-1.09343,20.7655,18.4576],[-1.78245,20.4257,20.3414],[-0.413861,20.2608,20.0701],[0.666761,20.2627,19.0739],[-1.09343,20.7655,18.4576],[-0.413861,20.2608,20.0701],[-0.413861,20.2608,20.0701],[0.772399,19.7934,20.8543],[0.666761,20.2627,19.0739],[2.11538,19.6927,19.9095],[0.666761,20.2627,19.0739],[0.772399,19.7934,20.8543],[2.11538,19.6927,19.9095],[0.772399,19.7934,20.8543],[2.26083,19.1482,21.8703],[0.613693,19.3433,22.5947],[2.26083,19.1482,21.8703],[0.772399,19.7934,20.8543],[0.772399,19.7934,20.8543],[-0.656973,19.9022,21.5572],[0.613693,19.3433,22.5947],[-0.656973,19.9022,21.5572],[-0.939964,19.4271,23.3162],[0.613693,19.3433,22.5947],[1.7831,18.7373,23.7604],[2.26083,19.1482,21.8703],[0.613693,19.3433,22.5947],[1.7831,18.7373,23.7604],[0.613693,19.3433,22.5947],[0.344385,18.9457,24.1051],[2.26083,19.1482,21.8703],[1.7831,18.7373,23.7604],[3.10257,18.5347,23.3168],[3.86683,18.6557,22.0585],[2.26083,19.1482,21.8703],[3.10257,18.5347,23.3168],[4.5416,18.0418,23.6075],[3.86683,18.6557,22.0585],[3.10257,18.5347,23.3168],[3.04471,17.9828,25.2572],[4.5416,18.0418,23.6075],[3.10257,18.5347,23.3168],[1.7831,18.7373,23.7604],[3.04471,17.9828,25.2572],[3.10257,18.5347,23.3168],[1.7831,18.7373,23.7604],[1.12048,18.3894,25.3487],[3.04471,17.9828,25.2572],[1.12048,18.3894,25.3487],[1.83299,17.8829,26.4834],[3.04471,17.9828,25.2572],[3.04471,17.9828,25.2572],[1.83299,17.8829,26.4834],[2.72761,17.4622,27.1897],[3.04471,17.9828,25.2572],[2.72761,17.4622,27.1897],[4.22157,17.2213,26.8724],[2.72761,17.4622,27.1897],[3.5001,16.9216,28.3523],[4.22157,17.2213,26.8724],[3.5001,16.9216,28.3523],[2.72761,17.4622,27.1897],[2.0992,17.1228,28.5508],[2.0992,17.1228,28.5508],[2.85935,16.5751,29.7039],[3.5001,16.9216,28.3523],[2.85935,16.5751,29.7039],[4.08888,16.4865,29.3396],[3.5001,16.9216,28.3523],[4.97368,16.6204,28.3116],[3.5001,16.9216,28.3523],[4.08888,16.4865,29.3396],[4.97368,16.6204,28.3116],[4.08888,16.4865,29.3396],[5.18216,16.1516,29.7237],[5.18216,16.1516,29.7237],[4.08888,16.4865,29.3396],[3.92158,16.1138,30.515],[5.14523,15.7131,31.1102],[5.18216,16.1516,29.7237],[3.92158,16.1138,30.515],[3.92044,15.7059,31.6629],[5.14523,15.7131,31.1102],[3.92158,16.1138,30.515],[3.92158,16.1138,30.515],[2.34901,16.012,31.4042],[3.92044,15.7059,31.6629],[3.35045,15.449,32.5194],[3.92044,15.7059,31.6629],[2.34901,16.012,31.4042],[3.35045,15.449,32.5194],[2.34901,16.012,31.4042],[2.21547,15.3422,33.0903],[2.21547,15.3422,33.0903],[3.37793,14.9438,33.7279],[3.35045,15.449,32.5194],[3.37793,14.9438,33.7279],[4.82101,15.1915,32.6831],[3.35045,15.449,32.5194],[3.37793,14.9438,33.7279],[4.8905,14.4801,34.4607],[4.82101,15.1915,32.6831],[3.37793,14.9438,33.7279],[3.25273,14.3932,35.0282],[4.8905,14.4801,34.4607],[3.37793,14.9438,33.7279],[1.65768,14.7747,34.5346],[3.25273,14.3932,35.0282],[1.65768,14.7747,34.5346],[2.05447,13.8712,36.3786],[3.25273,14.3932,35.0282],[2.05447,13.8712,36.3786],[4.15366,13.8727,35.9724],[3.25273,14.3932,35.0282],[2.05447,13.8712,36.3786],[3.65719,13.334,37.1245],[4.15366,13.8727,35.9724],[3.65719,13.334,37.1245],[2.05447,13.8712,36.3786],[2.5073,12.9093,38.0087],[3.65719,13.334,37.1245],[2.5073,12.9093,38.0087],[4.18584,12.693,38.0441],[3.65719,13.334,37.1245],[4.18584,12.693,38.0441],[5.2979,13.2151,37.011],[4.18584,12.693,38.0441],[5.55923,12.553,37.9755],[5.2979,13.2151,37.011],[6.95192,12.671,37.4772],[5.2979,13.2151,37.011],[5.55923,12.553,37.9755],[5.82932,11.4692,39.1068],[6.95192,12.671,37.4772],[5.55923,12.553,37.9755],[7.99646,11.4621,38.6417],[6.95192,12.671,37.4772],[5.82932,11.4692,39.1068],[7.0535,10.4904,39.6423],[7.99646,11.4621,38.6417],[5.82932,11.4692,39.1068],[7.0535,10.4904,39.6423],[5.82932,11.4692,39.1068],[5.64435,10.3291,40.0624],[6.64033,9.62656,40.2038],[7.0535,10.4904,39.6423],[5.64435,10.3291,40.0624],[5.59252,9.31807,40.5903],[6.64033,9.62656,40.2038],[5.64435,10.3291,40.0624],[5.64435,10.3291,40.0624],[4.55568,9.97903,40.5646],[5.59252,9.31807,40.5903],[4.75533,9.05084,41.1038],[5.59252,9.31807,40.5903],[4.55568,9.97903,40.5646],[3.96792,9.5253,41.2529],[4.75533,9.05084,41.1038],[4.55568,9.97903,40.5646],[2.43295,10.5088,40.9919],[3.96792,9.5253,41.2529],[4.55568,9.97903,40.5646],[2.43295,10.5088,40.9919],[4.55568,9.97903,40.5646],[3.23986,10.8884,40.2547],[2.43295,10.5088,40.9919],[3.23986,10.8884,40.2547],[1.74545,11.2965,40.2557],[2.43295,10.5088,40.9919],[1.74545,11.2965,40.2557],[1.27195,10.7759,41.0954],[1.88692,10.4431,41.5727],[2.43295,10.5088,40.9919],[1.27195,10.7759,41.0954],[1.27195,10.7759,41.0954],[0.294143,10.7428,41.6965],[1.88692,10.4431,41.5727],[0.294143,10.7428,41.6965],[1.64891,10.9656,42.4017],[1.88692,10.4431,41.5727],[2.78857,10.1384,41.6419],[1.88692,10.4431,41.5727],[1.64891,10.9656,42.4017],[3.71255,10.1862,42.3419],[2.78857,10.1384,41.6419],[1.64891,10.9656,42.4017],[3.36901,11.3421,42.9888],[3.71255,10.1862,42.3419],[1.64891,10.9656,42.4017],[3.36901,11.3421,42.9888],[1.64891,10.9656,42.4017],[1.86132,11.9699,43.1744],[3.36901,11.3421,42.9888],[1.86132,11.9699,43.1744],[2.99127,12.6081,43.7456],[3.36901,11.3421,42.9888],[2.99127,12.6081,43.7456],[4.50218,12.175,43.76],[3.36901,11.3421,42.9888],[4.50218,12.175,43.76],[5.45978,10.8308,43.2481],[4.45031,10.4786,42.7337],[3.36901,11.3421,42.9888],[5.45978,10.8308,43.2481],[5.33385,9.4998,42.509],[4.45031,10.4786,42.7337],[5.45978,10.8308,43.2481],[6.63688,9.62832,43.1229],[5.33385,9.4998,42.509],[5.45978,10.8308,43.2481],[6.63688,9.62832,43.1229],[5.45978,10.8308,43.2481],[6.91303,10.8475,43.8929],[8.19732,9.4303,43.9408],[6.63688,9.62832,43.1229],[6.91303,10.8475,43.8929],[8.06525,10.9496,44.6798],[8.19732,9.4303,43.9408],[6.91303,10.8475,43.8929],[7.0775,11.9813,44.7689],[8.06525,10.9496,44.6798],[6.91303,10.8475,43.8929],[7.0775,11.9813,44.7689],[6.91303,10.8475,43.8929],[5.86913,11.987,44.108],[7.0775,11.9813,44.7689],[5.86913,11.987,44.108],[6.05688,13.0122,45.1921],[6.05688,13.0122,45.1921],[7.269,12.7784,45.7213],[7.0775,11.9813,44.7689],[7.269,12.7784,45.7213],[8.13584,11.9137,45.538],[7.0775,11.9813,44.7689],[8.13584,11.9137,45.538],[7.269,12.7784,45.7213],[8.17603,12.7673,46.6423],[9.12852,11.6073,46.3719],[8.13584,11.9137,45.538],[8.17603,12.7673,46.6423],[9.12852,11.6073,46.3719],[8.17603,12.7673,46.6423],[9.30441,12.383,47.6239],[9.12852,11.6073,46.3719],[9.30441,12.383,47.6239],[10.1657,11.0586,47.3314],[9.83083,10.2,45.9962],[9.12852,11.6073,46.3719],[10.1657,11.0586,47.3314],[9.83083,10.2,45.9962],[10.1657,11.0586,47.3314],[10.7944,9.76703,47.0854],[9.83083,10.2,45.9962],[10.7944,9.76703,47.0854],[10.8247,8.45832,46.199],[9.83083,10.2,45.9962],[10.8247,8.45832,46.199],[9.60316,9.00652,44.9432],[8.96572,10.1795,44.9447],[9.83083,10.2,45.9962],[9.60316,9.00652,44.9432],[8.96572,10.1795,44.9447],[9.60316,9.00652,44.9432],[8.19732,9.4303,43.9408],[8.19732,9.4303,43.9408],[9.60316,9.00652,44.9432],[9.23108,8.12455,44.1044],[8.4116,7.77913,43.3422],[8.19732,9.4303,43.9408],[9.23108,8.12455,44.1044],[9.42897,6.79618,43.7628],[8.4116,7.77913,43.3422],[9.23108,8.12455,44.1044],[10.2397,7.39973,44.8275],[9.42897,6.79618,43.7628],[9.23108,8.12455,44.1044],[9.42897,6.79618,43.7628],[10.2397,7.39973,44.8275],[10.2235,6.00361,44.2213],[9.42897,6.79618,43.7628],[10.2235,6.00361,44.2213],[9.63139,5.1566,43.4663],[9.63139,5.1566,43.4663],[8.48557,6.24838,42.9161],[9.42897,6.79618,43.7628],[8.43735,4.62104,42.4942],[8.48557,6.24838,42.9161],[9.63139,5.1566,43.4663],[8.43735,4.62104,42.4942],[9.63139,5.1566,43.4663],[9.50898,3.36924,43.0009],[8.25808,3.0463,42.0887],[8.43735,4.62104,42.4942],[9.50898,3.36924,43.0009],[9.04964,2.12492,42.4739],[8.25808,3.0463,42.0887],[9.50898,3.36924,43.0009],[9.8878,1.99184,43.1693],[9.04964,2.12492,42.4739],[9.50898,3.36924,43.0009],[9.8878,1.99184,43.1693],[9.50898,3.36924,43.0009],[10.4367,2.7374,43.77],[10.8725,1.13695,44.3546],[9.8878,1.99184,43.1693],[10.4367,2.7374,43.77],[10.4367,2.7374,43.77],[11.1043,3.2952,44.6652],[10.8725,1.13695,44.3546],[11.1043,3.2952,44.6652],[11.9616,2.43501,45.9612],[10.8725,1.13695,44.3546],[11.9616,2.43501,45.9612],[12.0667,0.546593,46.1387],[10.8725,1.13695,44.3546],[12.0667,0.546593,46.1387],[11.0319,-1.12298,44.8923],[10.8725,1.13695,44.3546],[11.0319,-1.12298,44.8923],[10.0118,-0.461633,43.4658],[10.8725,1.13695,44.3546],[10.0118,-0.461633,43.4658],[9.17236,0.723252,42.5954],[10.8725,1.13695,44.3546],[8.8117,-1.0132,42.4832],[9.17236,0.723252,42.5954],[10.0118,-0.461633,43.4658],[10.0118,-0.461633,43.4658],[9.72684,-1.9118,43.4799],[8.8117,-1.0132,42.4832],[8.8117,-1.0132,42.4832],[9.72684,-1.9118,43.4799],[8.46916,-2.58741,42.577],[7.23354,-1.70945,41.6157],[8.8117,-1.0132,42.4832],[8.46916,-2.58741,42.577],[8.46916,-2.58741,42.577],[7.13671,-3.47895,41.9796],[7.23354,-1.70945,41.6157],[7.23354,-1.70945,41.6157],[7.13671,-3.47895,41.9796],[5.74317,-2.92408,41.1242],[7.23354,-1.70945,41.6157],[5.74317,-2.92408,41.1242],[5.75308,-1.38416,40.868],[6.64556,-0.410289,41.1542],[7.23354,-1.70945,41.6157],[5.75308,-1.38416,40.868],[5.75308,-1.38416,40.868],[5.66554,1.7585e-005,40.6974],[6.64556,-0.410289,41.1542],[6.73091,1.01821,41.1426],[6.64556,-0.410289,41.1542],[5.66554,1.7585e-005,40.6974],[5.72919,1.21786,40.5545],[6.73091,1.01821,41.1426],[5.66554,1.7585e-005,40.6974],[4.92674,0.339371,40.1456],[5.72919,1.21786,40.5545],[5.66554,1.7585e-005,40.6974],[4.53852,-1.00453,40.3683],[4.92674,0.339371,40.1456],[5.66554,1.7585e-005,40.6974],[4.53852,-1.00453,40.3683],[3.93717,-0.483045,39.9558],[4.92674,0.339371,40.1456],[3.93717,-0.483045,39.9558],[4.2869,-0.131021,39.6493],[4.92674,0.339371,40.1456],[4.2869,-0.131021,39.6493],[4.95479,0.271113,39.4974],[4.92674,0.339371,40.1456],[5.65256,1.31502,39.9293],[4.92674,0.339371,40.1456],[4.95479,0.271113,39.4974],[5.64848,0.693542,39.3853],[5.65256,1.31502,39.9293],[4.95479,0.271113,39.4974],[5.43464,-0.187226,38.8125],[5.64848,0.693542,39.3853],[4.95479,0.271113,39.4974],[4.19699,-0.83221,38.8921],[5.43464,-0.187226,38.8125],[4.95479,0.271113,39.4974],[5.43464,-0.187226,38.8125],[4.19699,-0.83221,38.8921],[5.12043,-1.45115,37.8332],[5.43464,-0.187226,38.8125],[5.12043,-1.45115,37.8332],[6.9407,-0.338748,37.9583],[6.69711,1.27555,39.2699],[5.43464,-0.187226,38.8125],[6.9407,-0.338748,37.9583],[8.33732,1.02299,38.542],[6.69711,1.27555,39.2699],[6.9407,-0.338748,37.9583],[8.33732,1.02299,38.542],[6.9407,-0.338748,37.9583],[8.83702,-0.0576925,37.436],[8.33732,1.02299,38.542],[8.83702,-0.0576925,37.436],[9.89243,0.981092,38.0548],[9.51899,2.0033,38.8629],[8.33732,1.02299,38.542],[9.89243,0.981092,38.0548],[10.6441,1.7763,38.452],[9.51899,2.0033,38.8629],[9.89243,0.981092,38.0548],[9.89243,0.981092,38.0548],[11.5015,1.13287,37.7028],[10.6441,1.7763,38.452],[10.6441,1.7763,38.452],[11.5015,1.13287,37.7028],[11.5971,2.1656,38.4159],[10.6441,1.7763,38.452],[11.5971,2.1656,38.4159],[10.6646,2.72156,38.9557],[10.6646,2.72156,38.9557],[11.5971,2.1656,38.4159],[12.0246,3.22135,38.7487],[10.711,4.04819,39.3867],[10.6646,2.72156,38.9557],[12.0246,3.22135,38.7487],[10.711,4.04819,39.3867],[12.0246,3.22135,38.7487],[12.3295,4.83014,39.053],[10.6563,5.56106,39.6845],[10.711,4.04819,39.3867],[12.3295,4.83014,39.053],[10.6563,5.56106,39.6845],[12.3295,4.83014,39.053],[11.8156,6.41664,39.3627],[10.49,7.00382,39.7909],[10.6563,5.56106,39.6845],[11.8156,6.41664,39.3627],[11.8156,6.41664,39.3627],[11.3681,7.59253,39.45],[10.49,7.00382,39.7909],[10.1856,8.52188,39.6484],[10.49,7.00382,39.7909],[11.3681,7.59253,39.45],[11.3681,7.59253,39.45],[11.6811,8.54617,39.112],[10.1856,8.52188,39.6484],[11.6811,8.54617,39.112],[10.9789,9.60092,38.9996],[10.1856,8.52188,39.6484],[10.9789,9.60092,38.9996],[9.73616,9.92834,39.2923],[10.1856,8.52188,39.6484],[9.73616,9.92834,39.2923],[9.0041,9.37047,39.7648],[10.1856,8.52188,39.6484],[10.1856,8.52188,39.6484],[9.0041,9.37047,39.7648],[8.67606,8.47542,40.1074],[10.1856,8.52188,39.6484],[8.67606,8.47542,40.1074],[9.40728,7.55643,40.0731],[8.67606,8.47542,40.1074],[8.28408,7.34613,40.3474],[9.40728,7.55643,40.0731],[9.40728,7.55643,40.0731],[8.28408,7.34613,40.3474],[9.32395,6.39623,40.1093],[10.49,7.00382,39.7909],[9.40728,7.55643,40.0731],[9.32395,6.39623,40.1093],[9.32395,6.39623,40.1093],[8.28408,7.34613,40.3474],[7.9739,6.08452,40.3928],[9.32395,6.39623,40.1093],[7.9739,6.08452,40.3928],[9.08471,4.80807,39.9565],[9.32395,6.39623,40.1093],[9.08471,4.80807,39.9565],[10.6563,5.56106,39.6845],[7.9739,6.08452,40.3928],[7.40739,4.67269,40.3584],[9.08471,4.80807,39.9565],[8.18646,3.63931,39.8778],[9.08471,4.80807,39.9565],[7.40739,4.67269,40.3584],[7.05179,3.06184,40.0008],[8.18646,3.63931,39.8778],[7.40739,4.67269,40.3584],[7.40739,4.67269,40.3584],[6.55046,3.69517,40.5081],[7.05179,3.06184,40.0008],[6.55046,3.69517,40.5081],[6.23282,2.87554,40.3341],[7.05179,3.06184,40.0008],[6.12229,2.09539,39.9767],[7.05179,3.06184,40.0008],[6.23282,2.87554,40.3341],[5.8738,2.10143,40.39],[6.12229,2.09539,39.9767],[6.23282,2.87554,40.3341],[6.39164,2.9944,40.8549],[5.8738,2.10143,40.39],[6.23282,2.87554,40.3341],[5.8738,2.10143,40.39],[6.39164,2.9944,40.8549],[6.27382,2.01706,40.87],[5.8738,2.10143,40.39],[6.27382,2.01706,40.87],[5.72919,1.21786,40.5545],[5.65256,1.31502,39.9293],[5.8738,2.10143,40.39],[5.72919,1.21786,40.5545],[6.39164,2.9944,40.8549],[7.11078,2.48996,41.3785],[6.27382,2.01706,40.87],[7.11078,2.48996,41.3785],[6.73091,1.01821,41.1426],[6.27382,2.01706,40.87],[7.11078,2.48996,41.3785],[8.06176,1.56905,41.8427],[6.73091,1.01821,41.1426],[8.06176,1.56905,41.8427],[7.8192,0.0155829,41.7318],[6.73091,1.01821,41.1426],[7.8192,0.0155829,41.7318],[8.06176,1.56905,41.8427],[9.17236,0.723252,42.5954],[9.17236,0.723252,42.5954],[8.06176,1.56905,41.8427],[9.04964,2.12492,42.4739],[8.06176,1.56905,41.8427],[7.11078,2.48996,41.3785],[8.25808,3.0463,42.0887],[7.23705,4.17568,41.6526],[8.25808,3.0463,42.0887],[7.11078,2.48996,41.3785],[7.11078,2.48996,41.3785],[6.39164,2.9944,40.8549],[7.23705,4.17568,41.6526],[6.39164,2.9944,40.8549],[6.53185,4.23011,41.0251],[7.23705,4.17568,41.6526],[6.53185,4.23011,41.0251],[6.56475,5.45155,41.382],[7.23705,4.17568,41.6526],[6.56475,5.45155,41.382],[7.39004,5.79125,42.13],[7.23705,4.17568,41.6526],[7.39004,5.79125,42.13],[8.43735,4.62104,42.4942],[7.23705,4.17568,41.6526],[7.39004,5.79125,42.13],[6.56475,5.45155,41.382],[6.39682,7.06386,41.9706],[7.39004,5.79125,42.13],[6.39682,7.06386,41.9706],[7.42466,7.31114,42.5966],[7.42466,7.31114,42.5966],[8.48557,6.24838,42.9161],[7.39004,5.79125,42.13],[7.42466,7.31114,42.5966],[8.4116,7.77913,43.3422],[8.48557,6.24838,42.9161],[7.42466,7.31114,42.5966],[7.43882,8.54047,43.0364],[8.4116,7.77913,43.3422],[6.4165,8.40661,42.492],[7.43882,8.54047,43.0364],[7.42466,7.31114,42.5966],[6.63688,9.62832,43.1229],[7.43882,8.54047,43.0364],[6.4165,8.40661,42.492],[6.39682,7.06386,41.9706],[6.4165,8.40661,42.492],[7.42466,7.31114,42.5966],[5.40672,8.36321,41.9751],[6.4165,8.40661,42.492],[6.39682,7.06386,41.9706],[5.59928,7.49122,41.6365],[5.40672,8.36321,41.9751],[6.39682,7.06386,41.9706],[5.90187,6.80848,41.4739],[5.59928,7.49122,41.6365],[6.39682,7.06386,41.9706],[5.59928,7.49122,41.6365],[5.90187,6.80848,41.4739],[5.67698,7.40426,41.2511],[5.12917,8.23183,41.4622],[5.59928,7.49122,41.6365],[5.67698,7.40426,41.2511],[5.87279,8.12048,40.9223],[5.12917,8.23183,41.4622],[5.67698,7.40426,41.2511],[6.34204,6.77141,40.8852],[5.87279,8.12048,40.9223],[5.67698,7.40426,41.2511],[6.32847,6.02924,41.0231],[6.34204,6.77141,40.8852],[5.67698,7.40426,41.2511],[6.34204,6.77141,40.8852],[6.32847,6.02924,41.0231],[6.81215,6.14358,40.7175],[7.13657,7.05882,40.62],[6.34204,6.77141,40.8852],[6.81215,6.14358,40.7175],[7.9739,6.08452,40.3928],[7.13657,7.05882,40.62],[6.81215,6.14358,40.7175],[6.32847,6.02924,41.0231],[6.52235,5.51323,40.8662],[6.81215,6.14358,40.7175],[7.40739,4.67269,40.3584],[6.81215,6.14358,40.7175],[6.52235,5.51323,40.8662],[6.5951,4.76661,40.7604],[7.40739,4.67269,40.3584],[6.52235,5.51323,40.8662],[6.56475,5.45155,41.382],[6.5951,4.76661,40.7604],[6.52235,5.51323,40.8662],[6.32847,6.02924,41.0231],[6.56475,5.45155,41.382],[6.52235,5.51323,40.8662],[6.56475,5.45155,41.382],[6.32847,6.02924,41.0231],[5.90187,6.80848,41.4739],[7.13657,7.05882,40.62],[5.87279,8.12048,40.9223],[6.34204,6.77141,40.8852],[5.87279,8.12048,40.9223],[7.13657,7.05882,40.62],[7.24237,8.43374,40.4343],[5.87279,8.12048,40.9223],[7.24237,8.43374,40.4343],[5.59252,9.31807,40.5903],[7.24237,8.43374,40.4343],[7.13657,7.05882,40.62],[8.28408,7.34613,40.3474],[5.12917,8.23183,41.4622],[5.87279,8.12048,40.9223],[4.75533,9.05084,41.1038],[5.12917,8.23183,41.4622],[4.75533,9.05084,41.1038],[4.62973,9.01772,41.7846],[5.40672,8.36321,41.9751],[5.12917,8.23183,41.4622],[4.62973,9.01772,41.7846],[5.33385,9.4998,42.509],[5.40672,8.36321,41.9751],[4.62973,9.01772,41.7846],[3.71255,10.1862,42.3419],[5.33385,9.4998,42.509],[4.62973,9.01772,41.7846],[6.32847,6.02924,41.0231],[5.67698,7.40426,41.2511],[5.90187,6.80848,41.4739],[5.12917,8.23183,41.4622],[5.40672,8.36321,41.9751],[5.59928,7.49122,41.6365],[6.4165,8.40661,42.492],[5.40672,8.36321,41.9751],[5.33385,9.4998,42.509],[6.56475,5.45155,41.382],[5.90187,6.80848,41.4739],[6.39682,7.06386,41.9706],[6.5951,4.76661,40.7604],[6.56475,5.45155,41.382],[6.53185,4.23011,41.0251],[6.5951,4.76661,40.7604],[6.53185,4.23011,41.0251],[6.55046,3.69517,40.5081],[6.53185,4.23011,41.0251],[6.39164,2.9944,40.8549],[6.55046,3.69517,40.5081],[5.8738,2.10143,40.39],[5.65256,1.31502,39.9293],[6.12229,2.09539,39.9767],[5.65256,1.31502,39.9293],[6.69711,1.27555,39.2699],[6.12229,2.09539,39.9767],[6.69711,1.27555,39.2699],[7.05179,3.06184,40.0008],[6.12229,2.09539,39.9767],[6.69711,1.27555,39.2699],[8.16905,2.37369,39.3878],[7.05179,3.06184,40.0008],[6.55046,3.69517,40.5081],[6.39164,2.9944,40.8549],[6.23282,2.87554,40.3341],[7.40739,4.67269,40.3584],[6.5951,4.76661,40.7604],[6.55046,3.69517,40.5081],[8.16905,2.37369,39.3878],[8.18646,3.63931,39.8778],[7.05179,3.06184,40.0008],[8.16905,2.37369,39.3878],[9.38744,3.25688,39.4656],[8.18646,3.63931,39.8778],[8.16905,2.37369,39.3878],[9.51899,2.0033,38.8629],[9.38744,3.25688,39.4656],[9.51899,2.0033,38.8629],[10.6646,2.72156,38.9557],[9.38744,3.25688,39.4656],[8.18646,3.63931,39.8778],[9.38744,3.25688,39.4656],[9.08471,4.80807,39.9565],[10.711,4.04819,39.3867],[9.08471,4.80807,39.9565],[9.38744,3.25688,39.4656],[7.40739,4.67269,40.3584],[7.9739,6.08452,40.3928],[6.81215,6.14358,40.7175],[8.28408,7.34613,40.3474],[7.13657,7.05882,40.62],[7.9739,6.08452,40.3928],[7.24237,8.43374,40.4343],[8.28408,7.34613,40.3474],[8.67606,8.47542,40.1074],[8.67606,8.47542,40.1074],[7.8462,9.48095,39.9945],[7.24237,8.43374,40.4343],[7.24237,8.43374,40.4343],[7.8462,9.48095,39.9945],[6.64033,9.62656,40.2038],[7.8462,9.48095,39.9945],[8.67606,8.47542,40.1074],[9.0041,9.37047,39.7648],[8.49148,10.3138,39.4347],[7.8462,9.48095,39.9945],[9.0041,9.37047,39.7648],[7.0535,10.4904,39.6423],[7.8462,9.48095,39.9945],[8.49148,10.3138,39.4347],[8.49148,10.3138,39.4347],[9.0041,9.37047,39.7648],[9.73616,9.92834,39.2923],[9.27229,10.8552,38.8793],[8.49148,10.3138,39.4347],[9.73616,9.92834,39.2923],[9.27229,10.8552,38.8793],[9.73616,9.92834,39.2923],[10.4319,10.6714,38.6065],[9.27229,10.8552,38.8793],[10.4319,10.6714,38.6065],[9.66489,11.5797,38.1015],[9.27229,10.8552,38.8793],[9.66489,11.5797,38.1015],[7.99646,11.4621,38.6417],[9.66489,11.5797,38.1015],[8.77364,12.4434,37.3535],[7.99646,11.4621,38.6417],[8.77364,12.4434,37.3535],[9.66489,11.5797,38.1015],[10.3769,12.297,37.0211],[9.60314,13.0664,36.1899],[8.77364,12.4434,37.3535],[10.3769,12.297,37.0211],[9.60314,13.0664,36.1899],[10.3769,12.297,37.0211],[11.1066,12.8781,35.8549],[10.3769,12.297,37.0211],[11.9018,12.0139,36.6378],[11.1066,12.8781,35.8549],[11.1066,12.8781,35.8549],[11.9018,12.0139,36.6378],[12.6044,12.5599,35.4868],[11.7951,13.3588,34.4732],[11.1066,12.8781,35.8549],[12.6044,12.5599,35.4868],[11.9018,12.0139,36.6378],[13.3642,11.6495,36.183],[12.6044,12.5599,35.4868],[13.3642,11.6495,36.183],[14.0434,12.1183,35.0817],[12.6044,12.5599,35.4868],[13.2523,12.8556,34.5093],[12.6044,12.5599,35.4868],[14.0434,12.1183,35.0817],[14.6149,11.273,35.7049],[14.0434,12.1183,35.0817],[13.3642,11.6495,36.183],[14.1628,10.6589,36.619],[14.6149,11.273,35.7049],[13.3642,11.6495,36.183],[14.1628,10.6589,36.619],[13.3642,11.6495,36.183],[12.7016,10.8872,37.3177],[14.1628,10.6589,36.619],[12.7016,10.8872,37.3177],[13.6762,10.0393,37.4079],[14.1628,10.6589,36.619],[13.6762,10.0393,37.4079],[14.737,9.62319,36.9971],[15.7031,10.2296,35.8326],[14.1628,10.6589,36.619],[14.737,9.62319,36.9971],[14.737,9.62319,36.9971],[15.9325,8.92923,36.6031],[15.7031,10.2296,35.8326],[15.9325,8.92923,36.6031],[17.2235,9.08355,35.5514],[15.7031,10.2296,35.8326],[17.2235,9.08355,35.5514],[17.252,10.3398,34.4462],[15.7031,10.2296,35.8326],[15.7031,10.2296,35.8326],[17.252,10.3398,34.4462],[15.648,11.4402,34.5746],[15.7031,10.2296,35.8326],[15.648,11.4402,34.5746],[14.6149,11.273,35.7049],[17.0101,11.274,33.459],[15.648,11.4402,34.5746],[17.252,10.3398,34.4462],[18.0663,10.619,33.3137],[17.0101,11.274,33.459],[17.252,10.3398,34.4462],[18.0663,10.619,33.3137],[17.252,10.3398,34.4462],[18.5877,9.92697,33.6631],[18.5877,9.92697,33.6631],[19.0382,10.2208,32.6724],[18.0663,10.619,33.3137],[18.0663,10.619,33.3137],[19.0382,10.2208,32.6724],[18.0436,11.2014,32.1052],[19.0382,10.2208,32.6724],[19.4925,10.4233,31.4284],[18.0436,11.2014,32.1052],[18.8751,11.1002,30.7258],[18.0436,11.2014,32.1052],[19.4925,10.4233,31.4284],[18.8751,11.1002,30.7258],[17.8639,11.729,30.6327],[18.0436,11.2014,32.1052],[18.0436,11.2014,32.1052],[17.8639,11.729,30.6327],[16.7804,12.1201,31.6013],[16.7362,11.8497,32.6653],[18.0436,11.2014,32.1052],[16.7804,12.1201,31.6013],[16.7362,11.8497,32.6653],[17.0101,11.274,33.459],[18.0436,11.2014,32.1052],[17.0101,11.274,33.459],[16.7362,11.8497,32.6653],[15.9629,11.9665,33.4468],[15.9629,11.9665,33.4468],[16.7362,11.8497,32.6653],[15.618,12.4819,32.5367],[18.8751,11.1002,30.7258],[18.8438,11.3811,29.2528],[17.8639,11.729,30.6327],[17.8639,11.729,30.6327],[18.8438,11.3811,29.2528],[17.517,12.0562,29.5844],[17.8639,11.729,30.6327],[17.517,12.0562,29.5844],[16.7882,12.332,30.4498],[18.8438,11.3811,29.2528],[17.6778,12.0151,28.2327],[17.517,12.0562,29.5844],[16.2061,12.6772,29.3039],[17.517,12.0562,29.5844],[17.6778,12.0151,28.2327],[17.6778,12.0151,28.2327],[16.2439,12.6285,27.519],[16.2061,12.6772,29.3039],[16.2439,12.6285,27.519],[17.6778,12.0151,28.2327],[17.4355,12.052,26.8425],[16.3253,12.3918,25.6526],[16.2439,12.6285,27.519],[17.4355,12.052,26.8425],[18.3559,11.6846,27.1483],[17.4355,12.052,26.8425],[17.6778,12.0151,28.2327],[18.8029,11.5123,27.9474],[18.3559,11.6846,27.1483],[17.6778,12.0151,28.2327],[18.3559,11.6846,27.1483],[18.8029,11.5123,27.9474],[19.2991,11.2337,27.0308],[18.3129,11.5141,25.7136],[18.3559,11.6846,27.1483],[19.2991,11.2337,27.0308],[19.2991,11.2337,27.0308],[20.1177,10.6829,25.9275],[18.3129,11.5141,25.7136],[20.1177,10.6829,25.9275],[19.2991,11.2337,27.0308],[20.3326,10.6674,27.4065],[19.2991,11.2337,27.0308],[19.5396,11.1332,28.079],[20.3326,10.6674,27.4065],[20.1488,10.685,28.6877],[20.3326,10.6674,27.4065],[19.5396,11.1332,28.079],[18.8438,11.3811,29.2528],[20.1488,10.685,28.6877],[19.5396,11.1332,28.079],[18.8029,11.5123,27.9474],[18.8438,11.3811,29.2528],[19.5396,11.1332,28.079],[18.8438,11.3811,29.2528],[19.8913,10.5683,30.0372],[20.1488,10.685,28.6877],[20.1488,10.685,28.6877],[21.0254,10.1348,28.0399],[20.3326,10.6674,27.4065],[19.5396,11.1332,28.079],[19.2991,11.2337,27.0308],[18.8029,11.5123,27.9474],[17.4355,12.052,26.8425],[18.3559,11.6846,27.1483],[18.3129,11.5141,25.7136],[18.8438,11.3811,29.2528],[18.8029,11.5123,27.9474],[17.6778,12.0151,28.2327],[18.8438,11.3811,29.2528],[18.8751,11.1002,30.7258],[19.8913,10.5683,30.0372],[19.0382,10.2208,32.6724],[18.5877,9.92697,33.6631],[19.5076,9.38639,33.1677],[19.0382,10.2208,32.6724],[19.5076,9.38639,33.1677],[20.1218,9.51653,32.0783],[19.5076,9.38639,33.1677],[20.706,8.31216,32.593],[20.1218,9.51653,32.0783],[20.706,8.31216,32.593],[19.5076,9.38639,33.1677],[18.7121,8.86397,34.4681],[20.706,8.31216,32.593],[18.7121,8.86397,34.4681],[19.8976,8.11638,33.8473],[19.8976,8.11638,33.8473],[20.568,7.26419,33.5716],[20.706,8.31216,32.593],[20.568,7.26419,33.5716],[21.5235,7.04038,32.3491],[20.706,8.31216,32.593],[21.6356,7.89968,31.4872],[20.706,8.31216,32.593],[21.5235,7.04038,32.3491],[21.6356,7.89968,31.4872],[21.5235,7.04038,32.3491],[22.4169,6.67598,31.0159],[21.5235,7.04038,32.3491],[22.0939,5.93224,31.9997],[22.4169,6.67598,31.0159],[22.4169,6.67598,31.0159],[22.0939,5.93224,31.9997],[22.7925,5.09071,30.9608],[22.4169,6.67598,31.0159],[22.7925,5.09071,30.9608],[23.172,5.87158,29.9771],[23.172,5.87158,29.9771],[23.0345,6.94016,29.4996],[22.4169,6.67598,31.0159],[23.7352,5.74062,28.6779],[23.0345,6.94016,29.4996],[23.172,5.87158,29.9771],[23.7352,5.74062,28.6779],[23.172,5.87158,29.9771],[23.5307,4.78253,29.5578],[24.0054,4.58263,28.4864],[23.7352,5.74062,28.6779],[23.5307,4.78253,29.5578],[23.5307,4.78253,29.5578],[23.833,3.63281,28.9062],[24.0054,4.58263,28.4864],[23.833,3.63281,28.9062],[24.3067,3.79519,27.7128],[24.0054,4.58263,28.4864],[24.0054,4.58263,28.4864],[24.3067,3.79519,27.7128],[24.285,4.94551,27.5394],[24.3067,3.79519,27.7128],[24.6472,4.17345,26.5109],[24.285,4.94551,27.5394],[24.285,4.94551,27.5394],[24.6472,4.17345,26.5109],[24.5234,5.21296,26.5227],[24.0888,6.14798,27.2441],[24.285,4.94551,27.5394],[24.5234,5.21296,26.5227],[24.4468,5.93623,25.8063],[24.0888,6.14798,27.2441],[24.5234,5.21296,26.5227],[24.5234,5.21296,26.5227],[24.7693,4.81678,25.4371],[24.4468,5.93623,25.8063],[24.7693,4.81678,25.4371],[24.6278,5.65884,24.3],[24.4468,5.93623,25.8063],[24.6278,5.65884,24.3],[24.2795,6.61639,25.0419],[24.4468,5.93623,25.8063],[24.9465,4.47294,24.2772],[24.6278,5.65884,24.3],[24.7693,4.81678,25.4371],[24.7693,4.81678,25.4371],[24.9417,3.39289,25.0884],[24.9465,4.47294,24.2772],[24.9417,3.39289,25.0884],[25.0827,3.63936,23.4521],[24.9465,4.47294,24.2772],[25.0827,3.63936,23.4521],[24.8923,4.78886,23.049],[24.9465,4.47294,24.2772],[25.0406,3.99703,22.0275],[24.8923,4.78886,23.049],[25.0827,3.63936,23.4521],[25.0998,1.93389,23.7888],[25.0827,3.63936,23.4521],[24.9417,3.39289,25.0884],[24.8425,1.80389,25.3772],[25.0998,1.93389,23.7888],[24.9417,3.39289,25.0884],[24.5799,2.88189,26.7101],[24.8425,1.80389,25.3772],[24.9417,3.39289,25.0884],[24.6472,4.17345,26.5109],[24.5799,2.88189,26.7101],[24.9417,3.39289,25.0884],[24.8425,1.80389,25.3772],[24.5799,2.88189,26.7101],[24.5875,1.7295,26.4156],[24.4787,0.873446,26.142],[24.8425,1.80389,25.3772],[24.5875,1.7295,26.4156],[24.1646,1.35777,27.3364],[24.4787,0.873446,26.142],[24.5875,1.7295,26.4156],[23.8399,0.0218869,27.115],[24.4787,0.873446,26.142],[24.1646,1.35777,27.3364],[23.6956,0.708938,28.0405],[23.8399,0.0218869,27.115],[24.1646,1.35777,27.3364],[23.7619,1.53447,28.391],[23.6956,0.708938,28.0405],[24.1646,1.35777,27.3364],[24.0752,2.57636,28.0827],[23.7619,1.53447,28.391],[24.1646,1.35777,27.3364],[24.1646,1.35777,27.3364],[24.5799,2.88189,26.7101],[24.0752,2.57636,28.0827],[24.5799,2.88189,26.7101],[24.3067,3.79519,27.7128],[24.0752,2.57636,28.0827],[23.7619,1.53447,28.391],[24.0752,2.57636,28.0827],[23.4437,2.32163,29.3687],[23.7619,1.53447,28.391],[23.4437,2.32163,29.3687],[23.1842,0.787426,29.0403],[23.4437,2.32163,29.3687],[22.7634,1.44993,30.2209],[23.1842,0.787426,29.0403],[22.3387,0.191268,29.9937],[23.1842,0.787426,29.0403],[22.7634,1.44993,30.2209],[22.0541,0.968879,31.0149],[22.3387,0.191268,29.9937],[22.7634,1.44993,30.2209],[22.4219,1.91614,31.0956],[22.0541,0.968879,31.0149],[22.7634,1.44993,30.2209],[22.8561,2.631,30.6673],[22.4219,1.91614,31.0956],[22.7634,1.44993,30.2209],[22.4219,1.91614,31.0956],[22.8561,2.631,30.6673],[22.333,2.68065,31.5531],[21.8324,1.89537,31.8534],[22.4219,1.91614,31.0956],[22.333,2.68065,31.5531],[21.6583,3.24282,32.5337],[21.8324,1.89537,31.8534],[22.333,2.68065,31.5531],[22.5561,3.69803,31.4083],[21.6583,3.24282,32.5337],[22.333,2.68065,31.5531],[22.5561,3.69803,31.4083],[21.9942,4.77955,32.3074],[21.6583,3.24282,32.5337],[21.9942,4.77955,32.3074],[20.9926,4.59654,33.5508],[21.6583,3.24282,32.5337],[20.4071,3.10223,33.8931],[21.6583,3.24282,32.5337],[20.9926,4.59654,33.5508],[20.4071,3.10223,33.8931],[20.9926,4.59654,33.5508],[19.7172,4.70307,34.8666],[20.4071,3.10223,33.8931],[19.7172,4.70307,34.8666],[19.5005,3.49417,34.9154],[19.5005,3.49417,34.9154],[19.4824,2.68523,34.6738],[20.4071,3.10223,33.8931],[19.4824,2.68523,34.6738],[19.7251,1.93093,34.0892],[20.4071,3.10223,33.8931],[20.4071,3.10223,33.8931],[19.7251,1.93093,34.0892],[20.9244,1.86016,32.8453],[19.7251,1.93093,34.0892],[20.0379,1.19817,33.4102],[20.9244,1.86016,32.8453],[20.0379,1.19817,33.4102],[20.2017,0.237469,32.5596],[20.9244,1.86016,32.8453],[20.9244,1.86016,32.8453],[20.2017,0.237469,32.5596],[21.2449,0.714314,31.8448],[21.8324,1.89537,31.8534],[20.9244,1.86016,32.8453],[21.2449,0.714314,31.8448],[21.2449,0.714314,31.8448],[22.0541,0.968879,31.0149],[21.8324,1.89537,31.8534],[21.2449,0.714314,31.8448],[21.4689,-0.182316,30.8851],[22.0541,0.968879,31.0149],[21.2449,0.714314,31.8448],[20.7253,-0.294893,31.6625],[21.4689,-0.182316,30.8851],[21.4689,-0.182316,30.8851],[20.7253,-0.294893,31.6625],[20.5726,-1.21338,30.888],[20.5726,-1.21338,30.888],[21.6897,-1.11079,29.7147],[21.4689,-0.182316,30.8851],[21.4689,-0.182316,30.8851],[21.6897,-1.11079,29.7147],[22.3387,0.191268,29.9937],[22.6563,-0.444718,28.9855],[22.3387,0.191268,29.9937],[21.6897,-1.11079,29.7147],[22.6563,-0.444718,28.9855],[21.6897,-1.11079,29.7147],[22.3955,-1.29447,28.6285],[22.3955,-1.29447,28.6285],[23.0128,-1.24905,27.5926],[22.6563,-0.444718,28.9855],[22.6563,-0.444718,28.9855],[23.0128,-1.24905,27.5926],[23.3194,-0.0595121,28.1841],[23.1842,0.787426,29.0403],[22.6563,-0.444718,28.9855],[23.3194,-0.0595121,28.1841],[23.6956,0.708938,28.0405],[23.1842,0.787426,29.0403],[23.3194,-0.0595121,28.1841],[23.8399,0.0218869,27.115],[23.3194,-0.0595121,28.1841],[23.0128,-1.24905,27.5926],[23.8399,0.0218869,27.115],[23.0128,-1.24905,27.5926],[23.6731,-1.06247,26.4753],[24.253,-0.327763,25.7323],[23.8399,0.0218869,27.115],[23.6731,-1.06247,26.4753],[23.875,-1.6502,25.2701],[24.253,-0.327763,25.7323],[23.6731,-1.06247,26.4753],[23.875,-1.6502,25.2701],[23.6731,-1.06247,26.4753],[23.1657,-2.02711,26.4433],[23.1657,-2.02711,26.4433],[23.2421,-2.69446,25.3916],[23.875,-1.6502,25.2701],[23.2421,-2.69446,25.3916],[23.6728,-2.77449,24.2315],[23.875,-1.6502,25.2701],[24.2826,-1.83416,23.8534],[23.875,-1.6502,25.2701],[23.6728,-2.77449,24.2315],[23.6728,-2.77449,24.2315],[24.0589,-2.82549,23.0014],[24.2826,-1.83416,23.8534],[24.0589,-2.82549,23.0014],[24.5621,-1.91767,22.6451],[24.2826,-1.83416,23.8534],[24.7473,-1.02287,23.3189],[24.2826,-1.83416,23.8534],[24.5621,-1.91767,22.6451],[24.8953,-1.11822,22.3913],[24.7473,-1.02287,23.3189],[24.5621,-1.91767,22.6451],[24.5621,-1.91767,22.6451],[24.8189,-1.67812,21.6163],[24.8953,-1.11822,22.3913],[24.8189,-1.67812,21.6163],[25.108,-0.60993,21.6074],[24.8953,-1.11822,22.3913],[25.108,-0.60993,21.6074],[25.0451,-0.344257,22.7419],[24.8953,-1.11822,22.3913],[25.108,-0.60993,21.6074],[25.2089,0.220023,22.2245],[25.0451,-0.344257,22.7419],[25.2089,0.220023,22.2245],[25.1171,0.571286,23.231],[25.0451,-0.344257,22.7419],[25.1171,0.571286,23.231],[24.9077,-0.177568,23.7003],[25.0451,-0.344257,22.7419],[25.0451,-0.344257,22.7419],[24.9077,-0.177568,23.7003],[24.7473,-1.02287,23.3189],[24.7473,-1.02287,23.3189],[24.9077,-0.177568,23.7003],[24.5333,-0.734664,24.4531],[24.5333,-0.734664,24.4531],[24.9077,-0.177568,23.7003],[24.814,0.576734,24.6586],[24.253,-0.327763,25.7323],[24.5333,-0.734664,24.4531],[24.814,0.576734,24.6586],[24.4787,0.873446,26.142],[24.253,-0.327763,25.7323],[24.814,0.576734,24.6586],[24.814,0.576734,24.6586],[24.9077,-0.177568,23.7003],[25.1171,0.571286,23.231],[25.0998,1.93389,23.7888],[24.814,0.576734,24.6586],[25.1171,0.571286,23.231],[25.2475,1.13369,22.1989],[25.0998,1.93389,23.7888],[25.1171,0.571286,23.231],[25.0998,1.93389,23.7888],[25.2475,1.13369,22.1989],[25.165,2.69467,21.2607],[25.165,2.69467,21.2607],[25.2475,1.13369,22.1989],[25.2626,0.882615,20.2658],[25.165,2.69467,21.2607],[25.2626,0.882615,20.2658],[25.202,1.94551,19.8749],[25.2475,1.13369,22.1989],[25.1171,0.571286,23.231],[25.2089,0.220023,22.2245],[25.2089,0.220023,22.2245],[25.2601,0.289304,21.3308],[25.2475,1.13369,22.1989],[24.3404,-2.92529,21.6266],[24.8189,-1.67812,21.6163],[24.5621,-1.91767,22.6451],[24.3404,-2.92529,21.6266],[24.7197,-2.5326,20.0719],[24.8189,-1.67812,21.6163],[24.3404,-2.92529,21.6266],[24.2327,-3.75631,20.329],[24.7197,-2.5326,20.0719],[24.7197,-2.5326,20.0719],[24.2327,-3.75631,20.329],[24.5279,-3.54209,18.9631],[24.5279,-3.54209,18.9631],[24.2327,-3.75631,20.329],[24.0064,-4.73448,19.2226],[24.2327,-3.75631,20.329],[23.6795,-4.69597,20.6645],[24.0064,-4.73448,19.2226],[24.0064,-4.73448,19.2226],[23.6795,-4.69597,20.6645],[23.438,-5.45887,19.9282],[23.5351,-5.82071,18.8391],[24.0064,-4.73448,19.2226],[23.438,-5.45887,19.9282],[23.438,-5.45887,19.9282],[23.6795,-4.69597,20.6645],[23.0208,-5.51613,21.0294],[22.8165,-6.35733,19.8623],[23.438,-5.45887,19.9282],[23.0208,-5.51613,21.0294],[22.8165,-6.35733,19.8623],[23.0208,-5.51613,21.0294],[22.214,-6.27993,21.3401],[21.7548,-7.1489,20.4578],[22.8165,-6.35733,19.8623],[22.214,-6.27993,21.3401],[21.7548,-7.1489,20.4578],[22.214,-6.27993,21.3401],[21.1754,-6.81589,21.947],[21.7548,-7.1489,20.4578],[21.1754,-6.81589,21.947],[20.634,-7.82896,20.6882],[20.634,-7.82896,20.6882],[21.123,-8.19971,19.494],[21.7548,-7.1489,20.4578],[21.8141,-8.31984,18.2331],[21.7548,-7.1489,20.4578],[21.123,-8.19971,19.494],[21.8141,-8.31984,18.2331],[21.123,-8.19971,19.494],[20.9216,-8.87959,18.4849],[20.9216,-8.87959,18.4849],[21.4378,-9.01099,17.6123],[21.8141,-8.31984,18.2331],[20.7454,-9.51117,17.5452],[21.4378,-9.01099,17.6123],[20.9216,-8.87959,18.4849],[19.9758,-9.43373,18.3239],[20.7454,-9.51117,17.5452],[20.9216,-8.87959,18.4849],[20.9216,-8.87959,18.4849],[20.2749,-8.67332,19.4957],[19.9758,-9.43373,18.3239],[19.2947,-9.03063,19.379],[19.9758,-9.43373,18.3239],[20.2749,-8.67332,19.4957],[20.2749,-8.67332,19.4957],[19.5589,-8.37811,20.4704],[19.2947,-9.03063,19.379],[19.2947,-9.03063,19.379],[19.5589,-8.37811,20.4704],[18.4909,-8.53414,20.4492],[18.2747,-9.22933,19.1302],[19.2947,-9.03063,19.379],[18.4909,-8.53414,20.4492],[18.4909,-8.53414,20.4492],[17.6876,-8.8238,19.8094],[18.2747,-9.22933,19.1302],[17.405,-8.22764,20.7948],[17.6876,-8.8238,19.8094],[18.4909,-8.53414,20.4492],[18.1906,-7.98485,21.5082],[17.405,-8.22764,20.7948],[18.4909,-8.53414,20.4492],[18.8966,-7.98345,21.4489],[18.1906,-7.98485,21.5082],[18.4909,-8.53414,20.4492],[18.8966,-7.98345,21.4489],[18.4588,-7.35909,22.6191],[18.1906,-7.98485,21.5082],[18.1906,-7.98485,21.5082],[18.4588,-7.35909,22.6191],[17.6105,-7.53617,22.1935],[18.4588,-7.35909,22.6191],[17.311,-6.93557,23.2034],[17.6105,-7.53617,22.1935],[17.6105,-7.53617,22.1935],[17.311,-6.93557,23.2034],[16.6523,-7.2969,22.0567],[17.6105,-7.53617,22.1935],[16.6523,-7.2969,22.0567],[17.405,-8.22764,20.7948],[16.6523,-7.2969,22.0567],[16.5971,-8.08856,20.5415],[17.405,-8.22764,20.7948],[16.9332,-8.62702,19.7595],[17.405,-8.22764,20.7948],[16.5971,-8.08856,20.5415],[16.9332,-8.62702,19.7595],[16.5971,-8.08856,20.5415],[16.1344,-8.21676,19.6921],[16.4486,-8.89679,18.6771],[16.9332,-8.62702,19.7595],[16.1344,-8.21676,19.6921],[16.4486,-8.89679,18.6771],[16.1344,-8.21676,19.6921],[15.5747,-8.14671,18.825],[16.4486,-8.89679,18.6771],[15.5747,-8.14671,18.825],[15.7495,-8.76372,17.9181],[15.7495,-8.76372,17.9181],[15.5747,-8.14671,18.825],[15.1584,-8.18204,17.7889],[15.1584,-8.18204,17.7889],[15.4728,-8.96359,16.9576],[15.7495,-8.76372,17.9181],[15.4728,-8.96359,16.9576],[16.1351,-9.4637,17.1436],[15.7495,-8.76372,17.9181],[14.7731,-7.20883,18.7758],[15.1584,-8.18204,17.7889],[15.5747,-8.14671,18.825],[15.3258,-7.45965,19.7905],[14.7731,-7.20883,18.7758],[15.5747,-8.14671,18.825],[14.6035,-6.49712,20.0557],[14.7731,-7.20883,18.7758],[15.3258,-7.45965,19.7905],[14.6035,-6.49712,20.0557],[15.3258,-7.45965,19.7905],[14.7404,-6.16865,21.303],[14.7404,-6.16865,21.303],[14.2685,-5.57641,20.9805],[14.6035,-6.49712,20.0557],[14.2685,-5.57641,20.9805],[14.1648,-5.96128,19.1559],[14.6035,-6.49712,20.0557],[13.8389,-4.72263,20.1054],[14.1648,-5.96128,19.1559],[14.2685,-5.57641,20.9805],[13.9712,-4.71588,21.7584],[13.8389,-4.72263,20.1054],[14.2685,-5.57641,20.9805],[13.9712,-4.71588,21.7584],[14.2685,-5.57641,20.9805],[14.5356,-5.46164,22.2796],[14.5356,-5.46164,22.2796],[13.922,-4.32183,22.9328],[13.9712,-4.71588,21.7584],[14.5356,-5.46164,22.2796],[14.2685,-5.57641,20.9805],[14.7404,-6.16865,21.303],[15.52,-6.4457,22.3073],[14.5356,-5.46164,22.2796],[14.7404,-6.16865,21.303],[15.52,-6.4457,22.3073],[15.2549,-5.80483,23.2995],[14.5356,-5.46164,22.2796],[14.3217,-4.67866,24.0197],[14.5356,-5.46164,22.2796],[15.2549,-5.80483,23.2995],[15.2549,-5.80483,23.2995],[14.8306,-4.7313,25.4335],[14.3217,-4.67866,24.0197],[15.8141,-5.71319,24.5639],[14.8306,-4.7313,25.4335],[15.2549,-5.80483,23.2995],[15.8141,-5.71319,24.5639],[15.2549,-5.80483,23.2995],[16.2182,-6.44072,23.3778],[16.2182,-6.44072,23.3778],[16.9187,-6.11524,24.6881],[15.8141,-5.71319,24.5639],[16.0218,-5.2496,25.9467],[15.8141,-5.71319,24.5639],[16.9187,-6.11524,24.6881],[16.9187,-6.11524,24.6881],[17.2169,-5.49795,26.148],[16.0218,-5.2496,25.9467],[17.2169,-5.49795,26.148],[16.4539,-4.7568,27.3979],[16.0218,-5.2496,25.9467],[14.9987,-4.34535,27.2553],[16.0218,-5.2496,25.9467],[16.4539,-4.7568,27.3979],[16.4539,-4.7568,27.3979],[15.5495,-4.02449,28.6863],[14.9987,-4.34535,27.2553],[14.343,-3.79869,28.4287],[14.9987,-4.34535,27.2553],[15.5495,-4.02449,28.6863],[15.5495,-4.02449,28.6863],[14.3575,-3.39498,29.8334],[14.343,-3.79869,28.4287],[13.1964,-3.42683,28.7116],[14.343,-3.79869,28.4287],[14.3575,-3.39498,29.8334],[13.1964,-3.42683,28.7116],[14.3575,-3.39498,29.8334],[12.1647,-2.87457,30.8611],[13.1964,-3.42683,28.7116],[12.1647,-2.87457,30.8611],[11.8664,-3.22249,29.0801],[13.1964,-3.42683,28.7116],[11.8664,-3.22249,29.0801],[12.2963,-3.46448,27.4949],[12.2963,-3.46448,27.4949],[13.6984,-3.77181,27.4327],[13.1964,-3.42683,28.7116],[12.2963,-3.46448,27.4949],[13.2638,-3.69029,26.2257],[13.6984,-3.77181,27.4327],[14.1391,-4.11116,26.3125],[13.6984,-3.77181,27.4327],[13.2638,-3.69029,26.2257],[14.9987,-4.34535,27.2553],[13.6984,-3.77181,27.4327],[14.1391,-4.11116,26.3125],[14.1391,-4.11116,26.3125],[14.8306,-4.7313,25.4335],[14.9987,-4.34535,27.2553],[13.9026,-4.10673,25.1936],[14.8306,-4.7313,25.4335],[14.1391,-4.11116,26.3125],[12.2963,-3.46448,27.4949],[11.8664,-3.22249,29.0801],[10.6917,-3.52768,28.3911],[11.0276,-3.71029,26.7233],[12.2963,-3.46448,27.4949],[10.6917,-3.52768,28.3911],[11.0276,-3.71029,26.7233],[12.3672,-3.48447,25.8016],[12.2963,-3.46448,27.4949],[11.8664,-3.22249,29.0801],[10.9913,-3.16822,29.7995],[10.6917,-3.52768,28.3911],[10.6917,-3.52768,28.3911],[10.9913,-3.16822,29.7995],[9.97214,-3.40523,29.6902],[10.6917,-3.52768,28.3911],[9.97214,-3.40523,29.6902],[8.9366,-3.99512,28.7363],[9.97214,-3.40523,29.6902],[8.93267,-3.50882,30.4988],[8.9366,-3.99512,28.7363],[9.97214,-3.40523,29.6902],[10.3118,-3.02804,30.9432],[8.93267,-3.50882,30.4988],[8.93267,-3.50882,30.4988],[10.3118,-3.02804,30.9432],[9.06884,-2.9895,32.0587],[8.93267,-3.50882,30.4988],[9.06884,-2.9895,32.0587],[7.74776,-3.61269,31.5139],[8.93267,-3.50882,30.4988],[7.74776,-3.61269,31.5139],[7.56696,-4.15544,29.9849],[6.42386,-4.24176,31.1536],[7.56696,-4.15544,29.9849],[7.74776,-3.61269,31.5139],[6.78294,-3.71591,32.3341],[6.42386,-4.24176,31.1536],[7.74776,-3.61269,31.5139],[7.73476,-3.12486,32.9337],[6.78294,-3.71591,32.3341],[7.74776,-3.61269,31.5139],[6.41735,-3.43147,33.5334],[6.78294,-3.71591,32.3341],[7.73476,-3.12486,32.9337],[7.73476,-3.12486,32.9337],[7.45986,-2.64882,34.3609],[6.41735,-3.43147,33.5334],[7.45986,-2.64882,34.3609],[6.0728,-2.98976,34.9454],[6.41735,-3.43147,33.5334],[6.0728,-2.98976,34.9454],[4.86292,-3.88469,34.0441],[6.41735,-3.43147,33.5334],[4.86292,-3.88469,34.0441],[5.57349,-4.15984,32.4526],[6.41735,-3.43147,33.5334],[4.13538,-4.66043,32.6182],[5.57349,-4.15984,32.4526],[4.86292,-3.88469,34.0441],[4.13538,-4.66043,32.6182],[4.86292,-3.88469,34.0441],[3.36043,-4.54193,33.8091],[5.57349,-4.15984,32.4526],[4.13538,-4.66043,32.6182],[4.74927,-4.91887,30.9649],[5.57349,-4.15984,32.4526],[4.74927,-4.91887,30.9649],[6.42386,-4.24176,31.1536],[6.05943,-4.8459,29.6076],[6.42386,-4.24176,31.1536],[4.74927,-4.91887,30.9649],[4.74514,-3.17521,35.7568],[4.86292,-3.88469,34.0441],[6.0728,-2.98976,34.9454],[4.74514,-3.17521,35.7568],[6.0728,-2.98976,34.9454],[5.89878,-2.50587,36.0493],[5.26268,-2.33801,36.7549],[4.74514,-3.17521,35.7568],[5.89878,-2.50587,36.0493],[5.26268,-2.33801,36.7549],[5.89878,-2.50587,36.0493],[6.35823,-1.68851,36.8635],[6.35823,-1.68851,36.8635],[5.12043,-1.45115,37.8332],[5.26268,-2.33801,36.7549],[4.1309,-2.61414,37.0444],[5.26268,-2.33801,36.7549],[5.12043,-1.45115,37.8332],[4.1309,-2.61414,37.0444],[5.12043,-1.45115,37.8332],[3.46829,-1.98218,38.0792],[7.03344,-2.14803,35.7044],[6.35823,-1.68851,36.8635],[5.89878,-2.50587,36.0493],[6.35823,-1.68851,36.8635],[7.03344,-2.14803,35.7044],[7.87453,-1.16075,36.5933],[6.9407,-0.338748,37.9583],[6.35823,-1.68851,36.8635],[7.87453,-1.16075,36.5933],[7.03344,-2.14803,35.7044],[8.54239,-1.79433,35.2188],[7.87453,-1.16075,36.5933],[8.54239,-1.79433,35.2188],[9.53573,-0.851044,36.1732],[7.87453,-1.16075,36.5933],[7.87453,-1.16075,36.5933],[9.53573,-0.851044,36.1732],[8.83702,-0.0576925,37.436],[10.4493,0.113588,37.0441],[8.83702,-0.0576925,37.436],[9.53573,-0.851044,36.1732],[10.4493,0.113588,37.0441],[9.53573,-0.851044,36.1732],[11.1466,-0.608515,35.9359],[11.7848,0.178795,36.7331],[10.4493,0.113588,37.0441],[11.1466,-0.608515,35.9359],[12.8024,-0.3653,35.8223],[11.7848,0.178795,36.7331],[11.1466,-0.608515,35.9359],[12.8024,-0.3653,35.8223],[11.1466,-0.608515,35.9359],[11.8993,-1.10252,34.9971],[11.8993,-1.10252,34.9971],[13.1771,-1.19747,34.577],[12.8024,-0.3653,35.8223],[12.8024,-0.3653,35.8223],[13.1771,-1.19747,34.577],[14.2956,-0.640281,35.128],[14.3119,0.246858,36.0829],[12.8024,-0.3653,35.8223],[14.2956,-0.640281,35.128],[14.2956,-0.640281,35.128],[15.5249,-0.128647,35.2842],[14.3119,0.246858,36.0829],[15.5249,-0.128647,35.2842],[15.5477,0.736372,36.0417],[14.3119,0.246858,36.0829],[15.5477,0.736372,36.0417],[14.5697,1.3671,36.8691],[14.3119,0.246858,36.0829],[14.5697,1.3671,36.8691],[13.0142,0.745914,36.9206],[14.3119,0.246858,36.0829],[14.5697,1.3671,36.8691],[13.0652,2.11616,37.8624],[13.0142,0.745914,36.9206],[13.0652,2.11616,37.8624],[11.5015,1.13287,37.7028],[13.0142,0.745914,36.9206],[11.5015,1.13287,37.7028],[11.7848,0.178795,36.7331],[13.0142,0.745914,36.9206],[13.0652,2.11616,37.8624],[14.5697,1.3671,36.8691],[14.9526,2.748,37.4286],[14.9526,2.748,37.4286],[13.6174,3.68031,38.3348],[13.0652,2.11616,37.8624],[12.0246,3.22135,38.7487],[13.0652,2.11616,37.8624],[13.6174,3.68031,38.3348],[14.9526,2.748,37.4286],[15.1633,4.35571,37.8246],[13.6174,3.68031,38.3348],[15.1633,4.35571,37.8246],[13.8953,4.95066,38.5034],[13.6174,3.68031,38.3348],[13.8953,4.95066,38.5034],[12.3295,4.83014,39.053],[13.6174,3.68031,38.3348],[13.8953,4.95066,38.5034],[13.3153,6.16703,38.7553],[12.3295,4.83014,39.053],[13.3153,6.16703,38.7553],[13.8953,4.95066,38.5034],[14.8402,5.87463,38.0838],[14.2409,7.57993,38.1082],[13.3153,6.16703,38.7553],[14.8402,5.87463,38.0838],[14.2409,7.57993,38.1082],[14.8402,5.87463,38.0838],[15.616,6.88479,37.5764],[15.616,6.88479,37.5764],[15.7511,7.84535,37.2147],[14.2409,7.57993,38.1082],[15.7511,7.84535,37.2147],[14.9296,8.62726,37.4009],[14.2409,7.57993,38.1082],[14.9296,8.62726,37.4009],[13.8869,9.06764,37.8064],[14.2409,7.57993,38.1082],[14.2409,7.57993,38.1082],[13.8869,9.06764,37.8064],[12.8824,8.64589,38.5178],[14.2409,7.57993,38.1082],[12.8824,8.64589,38.5178],[12.5745,7.48575,38.9569],[11.6811,8.54617,39.112],[12.5745,7.48575,38.9569],[12.8824,8.64589,38.5178],[11.6811,8.54617,39.112],[12.8824,8.64589,38.5178],[12.0249,9.40439,38.6575],[12.8824,8.64589,38.5178],[12.8192,9.76311,38.0529],[12.0249,9.40439,38.6575],[12.8192,9.76311,38.0529],[11.7004,10.332,38.2814],[12.0249,9.40439,38.6575],[11.7004,10.332,38.2814],[10.9789,9.60092,38.9996],[12.0249,9.40439,38.6575],[11.7004,10.332,38.2814],[10.4319,10.6714,38.6065],[10.9789,9.60092,38.9996],[11.1473,11.3642,37.7134],[10.4319,10.6714,38.6065],[11.7004,10.332,38.2814],[11.1473,11.3642,37.7134],[11.7004,10.332,38.2814],[12.7016,10.8872,37.3177],[11.1473,11.3642,37.7134],[12.7016,10.8872,37.3177],[11.9018,12.0139,36.6378],[12.8192,9.76311,38.0529],[12.7016,10.8872,37.3177],[11.7004,10.332,38.2814],[12.8192,9.76311,38.0529],[12.8824,8.64589,38.5178],[13.8869,9.06764,37.8064],[12.8192,9.76311,38.0529],[13.8869,9.06764,37.8064],[13.6762,10.0393,37.4079],[14.737,9.62319,36.9971],[13.8869,9.06764,37.8064],[14.9296,8.62726,37.4009],[15.7511,7.84535,37.2147],[15.9325,8.92923,36.6031],[14.9296,8.62726,37.4009],[15.9325,8.92923,36.6031],[15.7511,7.84535,37.2147],[17.0166,8.00056,36.3322],[15.7511,7.84535,37.2147],[16.7293,7.00287,36.8869],[17.0166,8.00056,36.3322],[17.0166,8.00056,36.3322],[16.7293,7.00287,36.8869],[17.8958,7.05949,36.0791],[17.0166,8.00056,36.3322],[17.8958,7.05949,36.0791],[18.2767,7.96451,35.4171],[17.2235,9.08355,35.5514],[17.0166,8.00056,36.3322],[18.2767,7.96451,35.4171],[17.2235,9.08355,35.5514],[18.2767,7.96451,35.4171],[18.7121,8.86397,34.4681],[18.7121,8.86397,34.4681],[18.2767,7.96451,35.4171],[19.3759,7.70308,34.6258],[18.9752,6.95088,35.2921],[19.3759,7.70308,34.6258],[18.2767,7.96451,35.4171],[19.3759,7.70308,34.6258],[18.9752,6.95088,35.2921],[19.959,6.69513,34.5069],[19.3759,7.70308,34.6258],[19.959,6.69513,34.5069],[20.568,7.26419,33.5716],[20.628,6.42749,33.9171],[20.568,7.26419,33.5716],[19.959,6.69513,34.5069],[19.959,6.69513,34.5069],[20.3226,5.72327,34.3208],[20.628,6.42749,33.9171],[20.628,6.42749,33.9171],[20.3226,5.72327,34.3208],[21.3653,5.90671,33.0579],[20.9926,4.59654,33.5508],[21.3653,5.90671,33.0579],[20.3226,5.72327,34.3208],[19.4072,5.93082,35.1456],[20.3226,5.72327,34.3208],[19.959,6.69513,34.5069],[20.3226,5.72327,34.3208],[19.4072,5.93082,35.1456],[19.7172,4.70307,34.8666],[19.7172,4.70307,34.8666],[19.4072,5.93082,35.1456],[18.5467,5.18307,35.8583],[18.7793,3.99445,35.6121],[19.7172,4.70307,34.8666],[18.5467,5.18307,35.8583],[18.5467,5.18307,35.8583],[17.8461,4.17952,36.3069],[18.7793,3.99445,35.6121],[17.8461,4.17952,36.3069],[18.0054,3.40221,36.0531],[18.7793,3.99445,35.6121],[18.0054,3.40221,36.0531],[18.7515,2.98495,35.383],[18.7793,3.99445,35.6121],[18.7793,3.99445,35.6121],[18.7515,2.98495,35.383],[19.5005,3.49417,34.9154],[18.0054,3.40221,36.0531],[17.729,2.48559,35.8771],[18.7515,2.98495,35.383],[18.6892,1.90052,34.9322],[18.7515,2.98495,35.383],[17.729,2.48559,35.8771],[17.729,2.48559,35.8771],[17.5806,1.52706,35.4919],[18.6892,1.90052,34.9322],[17.5806,1.52706,35.4919],[18.0706,0.947509,34.8011],[18.6892,1.90052,34.9322],[19.0563,0.835755,33.9723],[18.6892,1.90052,34.9322],[18.0706,0.947509,34.8011],[19.0563,0.835755,33.9723],[18.0706,0.947509,34.8011],[17.9244,0.01515,34.1499],[19.0563,0.835755,33.9723],[17.9244,0.01515,34.1499],[18.8998,-0.597252,32.9082],[20.2017,0.237469,32.5596],[19.0563,0.835755,33.9723],[18.8998,-0.597252,32.9082],[18.8998,-0.597252,32.9082],[19.9479,-0.774825,31.9451],[20.2017,0.237469,32.5596],[20.2017,0.237469,32.5596],[19.9479,-0.774825,31.9451],[20.7253,-0.294893,31.6625],[19.9479,-0.774825,31.9451],[18.8998,-0.597252,32.9082],[19.0878,-1.76467,31.5324],[19.0878,-1.76467,31.5324],[20.5726,-1.21338,30.888],[19.9479,-0.774825,31.9451],[20.5726,-1.21338,30.888],[19.0878,-1.76467,31.5324],[19.6491,-2.71514,29.9257],[19.6491,-2.71514,29.9257],[20.7262,-2.03237,29.853],[20.5726,-1.21338,30.888],[20.7262,-2.03237,29.853],[19.6491,-2.71514,29.9257],[20.8314,-2.82126,28.7441],[20.7262,-2.03237,29.853],[20.8314,-2.82126,28.7441],[21.6897,-1.11079,29.7147],[22.0877,-2.1325,28.0893],[21.6897,-1.11079,29.7147],[20.8314,-2.82126,28.7441],[22.0877,-2.1325,28.0893],[20.8314,-2.82126,28.7441],[21.6062,-3.20836,27.388],[22.5008,-2.36104,27.231],[22.0877,-2.1325,28.0893],[21.6062,-3.20836,27.388],[21.6062,-3.20836,27.388],[22.4315,-3.04975,26.4363],[22.5008,-2.36104,27.231],[23.1657,-2.02711,26.4433],[22.5008,-2.36104,27.231],[22.4315,-3.04975,26.4363],[23.0128,-1.24905,27.5926],[22.5008,-2.36104,27.231],[23.1657,-2.02711,26.4433],[21.6062,-3.20836,27.388],[21.7204,-3.8755,26.3434],[22.4315,-3.04975,26.4363],[21.7204,-3.8755,26.3434],[22.1533,-4.03151,25.4625],[22.4315,-3.04975,26.4363],[22.1533,-4.03151,25.4625],[22.9137,-3.80956,24.3606],[22.4315,-3.04975,26.4363],[22.9137,-3.80956,24.3606],[23.2421,-2.69446,25.3916],[22.4315,-3.04975,26.4363],[22.9137,-3.80956,24.3606],[22.1533,-4.03151,25.4625],[22.0635,-4.72806,24.4302],[22.9137,-3.80956,24.3606],[22.0635,-4.72806,24.4302],[22.7214,-4.66416,23.3176],[23.4474,-3.74186,23.2387],[22.9137,-3.80956,24.3606],[22.7214,-4.66416,23.3176],[23.3276,-4.55839,22.0508],[23.4474,-3.74186,23.2387],[22.7214,-4.66416,23.3176],[22.7214,-4.66416,23.3176],[22.5249,-5.47632,22.2709],[23.3276,-4.55839,22.0508],[23.3276,-4.55839,22.0508],[22.5249,-5.47632,22.2709],[23.0208,-5.51613,21.0294],[22.7214,-4.66416,23.3176],[21.9468,-5.48418,23.3336],[22.5249,-5.47632,22.2709],[21.9468,-5.48418,23.3336],[21.8544,-6.08359,22.4203],[22.5249,-5.47632,22.2709],[22.5249,-5.47632,22.2709],[21.8544,-6.08359,22.4203],[22.214,-6.27993,21.3401],[21.8544,-6.08359,22.4203],[21.9468,-5.48418,23.3336],[21.3248,-6.14051,23.0897],[21.3248,-6.14051,23.0897],[21.1754,-6.81589,21.947],[21.8544,-6.08359,22.4203],[21.1754,-6.81589,21.947],[21.3248,-6.14051,23.0897],[20.4783,-6.47266,23.3224],[20.4783,-6.47266,23.3224],[19.817,-7.34727,22.1646],[21.1754,-6.81589,21.947],[19.817,-7.34727,22.1646],[20.4783,-6.47266,23.3224],[19.2906,-6.7006,23.6562],[19.817,-7.34727,22.1646],[19.2906,-6.7006,23.6562],[18.4588,-7.35909,22.6191],[19.2906,-6.7006,23.6562],[18.1133,-6.59819,24.0758],[18.4588,-7.35909,22.6191],[18.8377,-6.10675,24.9634],[18.1133,-6.59819,24.0758],[19.2906,-6.7006,23.6562],[18.8377,-6.10675,24.9634],[19.2906,-6.7006,23.6562],[19.9494,-5.96455,24.6597],[19.4285,-5.48413,25.8622],[18.8377,-6.10675,24.9634],[19.9494,-5.96455,24.6597],[20.4651,-5.16684,25.6553],[19.4285,-5.48413,25.8622],[19.9494,-5.96455,24.6597],[20.4651,-5.16684,25.6553],[19.9494,-5.96455,24.6597],[21.1097,-5.55786,24.3224],[21.4116,-4.64123,25.531],[20.4651,-5.16684,25.6553],[21.1097,-5.55786,24.3224],[21.1097,-5.55786,24.3224],[22.0635,-4.72806,24.4302],[21.4116,-4.64123,25.531],[21.9468,-5.48418,23.3336],[22.0635,-4.72806,24.4302],[21.1097,-5.55786,24.3224],[21.4116,-4.64123,25.531],[20.8198,-4.28559,26.7355],[20.4651,-5.16684,25.6553],[20.8198,-4.28559,26.7355],[19.9182,-4.88272,26.5907],[20.4651,-5.16684,25.6553],[20.8198,-4.28559,26.7355],[19.8067,-4.33029,27.5367],[19.9182,-4.88272,26.5907],[19.9182,-4.88272,26.5907],[19.8067,-4.33029,27.5367],[19.0053,-4.9649,26.9688],[19.9182,-4.88272,26.5907],[19.0053,-4.9649,26.9688],[19.4285,-5.48413,25.8622],[19.0053,-4.9649,26.9688],[18.3582,-5.55629,26.1145],[19.4285,-5.48413,25.8622],[18.3582,-5.55629,26.1145],[19.0053,-4.9649,26.9688],[17.8112,-4.93115,27.3103],[17.8112,-4.93115,27.3103],[17.2169,-5.49795,26.148],[18.3582,-5.55629,26.1145],[18.3582,-5.55629,26.1145],[17.2169,-5.49795,26.148],[17.8799,-6.02775,25.2267],[18.8377,-6.10675,24.9634],[18.3582,-5.55629,26.1145],[17.8799,-6.02775,25.2267],[17.8112,-4.93115,27.3103],[19.0053,-4.9649,26.9688],[18.682,-4.31348,28.1566],[17.2172,-4.13078,28.7843],[17.8112,-4.93115,27.3103],[18.682,-4.31348,28.1566],[18.5197,-3.56453,29.4167],[17.2172,-4.13078,28.7843],[18.682,-4.31348,28.1566],[18.682,-4.31348,28.1566],[19.7075,-3.62178,28.6506],[18.5197,-3.56453,29.4167],[18.5197,-3.56453,29.4167],[19.7075,-3.62178,28.6506],[19.6491,-2.71514,29.9257],[19.6491,-2.71514,29.9257],[18.3232,-2.82465,30.6532],[18.5197,-3.56453,29.4167],[18.5197,-3.56453,29.4167],[18.3232,-2.82465,30.6532],[17.4613,-3.42902,30.0561],[18.3232,-2.82465,30.6532],[17.1041,-2.84194,31.1247],[17.4613,-3.42902,30.0561],[17.1041,-2.84194,31.1247],[16.0918,-3.457,30.1007],[17.4613,-3.42902,30.0561],[16.0918,-3.457,30.1007],[17.2172,-4.13078,28.7843],[17.4613,-3.42902,30.0561],[17.2172,-4.13078,28.7843],[16.0918,-3.457,30.1007],[15.5495,-4.02449,28.6863],[16.0918,-3.457,30.1007],[17.1041,-2.84194,31.1247],[15.7311,-2.5406,31.8951],[16.0918,-3.457,30.1007],[15.7311,-2.5406,31.8951],[15.0383,-3.0193,30.9839],[16.0918,-3.457,30.1007],[15.0383,-3.0193,30.9839],[14.3575,-3.39498,29.8334],[14.3575,-3.39498,29.8334],[15.0383,-3.0193,30.9839],[14.0113,-2.51382,31.9685],[15.0383,-3.0193,30.9839],[15.7311,-2.5406,31.8951],[14.0113,-2.51382,31.9685],[15.7311,-2.5406,31.8951],[14.9563,-1.97987,32.9951],[14.0113,-2.51382,31.9685],[14.9563,-1.97987,32.9951],[13.5267,-1.86733,33.3585],[14.0113,-2.51382,31.9685],[12.491,-2.27947,32.5499],[14.0113,-2.51382,31.9685],[13.5267,-1.86733,33.3585],[13.5267,-1.86733,33.3585],[12.0278,-1.73655,33.8272],[12.491,-2.27947,32.5499],[12.491,-2.27947,32.5499],[12.0278,-1.73655,33.8272],[10.7705,-2.38929,32.6647],[12.1647,-2.87457,30.8611],[12.491,-2.27947,32.5499],[10.7705,-2.38929,32.6647],[12.1647,-2.87457,30.8611],[10.7705,-2.38929,32.6647],[10.3118,-3.02804,30.9432],[10.9913,-3.16822,29.7995],[12.1647,-2.87457,30.8611],[10.3118,-3.02804,30.9432],[10.4023,-1.54908,34.6607],[10.7705,-2.38929,32.6647],[12.0278,-1.73655,33.8272],[10.4023,-1.54908,34.6607],[12.0278,-1.73655,33.8272],[11.8993,-1.10252,34.9971],[10.7705,-2.38929,32.6647],[10.4023,-1.54908,34.6607],[8.98386,-2.4033,33.6711],[9.06884,-2.9895,32.0587],[10.7705,-2.38929,32.6647],[8.98386,-2.4033,33.6711],[7.73476,-3.12486,32.9337],[9.06884,-2.9895,32.0587],[8.98386,-2.4033,33.6711],[8.54239,-1.79433,35.2188],[8.98386,-2.4033,33.6711],[10.4023,-1.54908,34.6607],[8.98386,-2.4033,33.6711],[8.54239,-1.79433,35.2188],[7.45986,-2.64882,34.3609],[12.0278,-1.73655,33.8272],[13.5267,-1.86733,33.3585],[13.1771,-1.19747,34.577],[13.1771,-1.19747,34.577],[13.5267,-1.86733,33.3585],[14.5276,-1.35686,34.091],[14.0113,-2.51382,31.9685],[12.491,-2.27947,32.5499],[12.1647,-2.87457,30.8611],[14.5276,-1.35686,34.091],[13.5267,-1.86733,33.3585],[14.9563,-1.97987,32.9951],[15.7679,-1.41026,33.6924],[14.5276,-1.35686,34.091],[14.9563,-1.97987,32.9951],[16.0923,-1.95758,32.8262],[15.7679,-1.41026,33.6924],[14.9563,-1.97987,32.9951],[15.7679,-1.41026,33.6924],[16.0923,-1.95758,32.8262],[16.8994,-1.47378,33.1994],[16.8994,-1.47378,33.1994],[16.6175,-0.626015,34.2765],[15.7679,-1.41026,33.6924],[15.7679,-1.41026,33.6924],[16.6175,-0.626015,34.2765],[15.3699,-0.862403,34.5484],[16.6175,-0.626015,34.2765],[15.5249,-0.128647,35.2842],[15.3699,-0.862403,34.5484],[16.6175,-0.626015,34.2765],[16.8466,0.585523,35.2557],[15.5249,-0.128647,35.2842],[17.9244,0.01515,34.1499],[16.8466,0.585523,35.2557],[16.6175,-0.626015,34.2765],[17.9244,0.01515,34.1499],[16.6175,-0.626015,34.2765],[17.7094,-0.885291,33.4525],[17.7094,-0.885291,33.4525],[16.6175,-0.626015,34.2765],[16.8994,-1.47378,33.1994],[17.9702,-1.57287,32.5201],[17.7094,-0.885291,33.4525],[16.8994,-1.47378,33.1994],[16.9857,-2.16231,32.2224],[17.9702,-1.57287,32.5201],[16.8994,-1.47378,33.1994],[17.9702,-1.57287,32.5201],[16.9857,-2.16231,32.2224],[17.9315,-2.28796,31.639],[19.0878,-1.76467,31.5324],[17.9702,-1.57287,32.5201],[17.9315,-2.28796,31.639],[19.0878,-1.76467,31.5324],[17.9315,-2.28796,31.639],[18.3232,-2.82465,30.6532],[17.1041,-2.84194,31.1247],[17.9315,-2.28796,31.639],[16.9857,-2.16231,32.2224],[17.7094,-0.885291,33.4525],[17.9702,-1.57287,32.5201],[18.8998,-0.597252,32.9082],[16.9857,-2.16231,32.2224],[16.8994,-1.47378,33.1994],[16.0923,-1.95758,32.8262],[16.9857,-2.16231,32.2224],[16.0923,-1.95758,32.8262],[15.7311,-2.5406,31.8951],[14.5276,-1.35686,34.091],[15.7679,-1.41026,33.6924],[15.3699,-0.862403,34.5484],[15.3699,-0.862403,34.5484],[14.2956,-0.640281,35.128],[14.5276,-1.35686,34.091],[14.9563,-1.97987,32.9951],[15.7311,-2.5406,31.8951],[16.0923,-1.95758,32.8262],[15.7311,-2.5406,31.8951],[17.1041,-2.84194,31.1247],[16.9857,-2.16231,32.2224],[18.3232,-2.82465,30.6532],[17.9315,-2.28796,31.639],[17.1041,-2.84194,31.1247],[19.7075,-3.62178,28.6506],[18.682,-4.31348,28.1566],[19.8067,-4.33029,27.5367],[20.5892,-3.69268,27.8517],[19.7075,-3.62178,28.6506],[19.8067,-4.33029,27.5367],[19.7075,-3.62178,28.6506],[20.5892,-3.69268,27.8517],[20.8314,-2.82126,28.7441],[17.4613,-3.42902,30.0561],[17.2172,-4.13078,28.7843],[18.5197,-3.56453,29.4167],[17.2172,-4.13078,28.7843],[16.4539,-4.7568,27.3979],[17.8112,-4.93115,27.3103],[19.8067,-4.33029,27.5367],[18.682,-4.31348,28.1566],[19.0053,-4.9649,26.9688],[19.8067,-4.33029,27.5367],[20.8198,-4.28559,26.7355],[20.5892,-3.69268,27.8517],[20.5892,-3.69268,27.8517],[20.8198,-4.28559,26.7355],[21.6062,-3.20836,27.388],[21.7204,-3.8755,26.3434],[20.8198,-4.28559,26.7355],[21.4116,-4.64123,25.531],[20.4783,-6.47266,23.3224],[21.1097,-5.55786,24.3224],[19.9494,-5.96455,24.6597],[19.9182,-4.88272,26.5907],[19.4285,-5.48413,25.8622],[20.4651,-5.16684,25.6553],[18.3582,-5.55629,26.1145],[18.8377,-6.10675,24.9634],[19.4285,-5.48413,25.8622],[17.8799,-6.02775,25.2267],[18.1133,-6.59819,24.0758],[18.8377,-6.10675,24.9634],[16.9187,-6.11524,24.6881],[18.1133,-6.59819,24.0758],[17.8799,-6.02775,25.2267],[17.311,-6.93557,23.2034],[18.1133,-6.59819,24.0758],[16.9187,-6.11524,24.6881],[19.2906,-6.7006,23.6562],[20.4783,-6.47266,23.3224],[19.9494,-5.96455,24.6597],[21.3248,-6.14051,23.0897],[21.1097,-5.55786,24.3224],[20.4783,-6.47266,23.3224],[21.1097,-5.55786,24.3224],[21.3248,-6.14051,23.0897],[21.9468,-5.48418,23.3336],[23.4474,-3.74186,23.2387],[23.3276,-4.55839,22.0508],[23.8413,-3.63009,22.2836],[23.4474,-3.74186,23.2387],[23.8413,-3.63009,22.2836],[24.0589,-2.82549,23.0014],[23.8413,-3.63009,22.2836],[24.3404,-2.92529,21.6266],[24.0589,-2.82549,23.0014],[23.8413,-3.63009,22.2836],[23.9103,-3.94376,21.3994],[24.3404,-2.92529,21.6266],[23.9103,-3.94376,21.3994],[23.8413,-3.63009,22.2836],[23.3276,-4.55839,22.0508],[23.6795,-4.69597,20.6645],[23.9103,-3.94376,21.3994],[23.3276,-4.55839,22.0508],[23.4474,-3.74186,23.2387],[23.6728,-2.77449,24.2315],[22.9137,-3.80956,24.3606],[22.0635,-4.72806,24.4302],[21.9468,-5.48418,23.3336],[22.7214,-4.66416,23.3176],[22.0635,-4.72806,24.4302],[22.1533,-4.03151,25.4625],[21.4116,-4.64123,25.531],[22.1533,-4.03151,25.4625],[21.7204,-3.8755,26.3434],[21.4116,-4.64123,25.531],[21.7204,-3.8755,26.3434],[21.6062,-3.20836,27.388],[20.8198,-4.28559,26.7355],[22.5008,-2.36104,27.231],[23.0128,-1.24905,27.5926],[22.0877,-2.1325,28.0893],[20.5892,-3.69268,27.8517],[21.6062,-3.20836,27.388],[20.8314,-2.82126,28.7441],[19.6491,-2.71514,29.9257],[19.7075,-3.62178,28.6506],[20.8314,-2.82126,28.7441],[19.6491,-2.71514,29.9257],[19.0878,-1.76467,31.5324],[18.3232,-2.82465,30.6532],[19.0878,-1.76467,31.5324],[18.8998,-0.597252,32.9082],[17.9702,-1.57287,32.5201],[18.8998,-0.597252,32.9082],[17.9244,0.01515,34.1499],[17.7094,-0.885291,33.4525],[16.8466,0.585523,35.2557],[17.9244,0.01515,34.1499],[18.0706,0.947509,34.8011],[19.7251,1.93093,34.0892],[18.6892,1.90052,34.9322],[19.0563,0.835755,33.9723],[16.8466,0.585523,35.2557],[18.0706,0.947509,34.8011],[17.5806,1.52706,35.4919],[16.3163,1.80085,36.3268],[16.8466,0.585523,35.2557],[17.5806,1.52706,35.4919],[16.3163,1.80085,36.3268],[15.5477,0.736372,36.0417],[16.8466,0.585523,35.2557],[16.3163,1.80085,36.3268],[17.5806,1.52706,35.4919],[17.729,2.48559,35.8771],[16.3163,1.80085,36.3268],[17.729,2.48559,35.8771],[16.7514,3.40422,36.7654],[16.3163,1.80085,36.3268],[16.7514,3.40422,36.7654],[14.9526,2.748,37.4286],[19.4824,2.68523,34.6738],[18.7515,2.98495,35.383],[18.6892,1.90052,34.9322],[17.729,2.48559,35.8771],[18.0054,3.40221,36.0531],[16.7514,3.40422,36.7654],[16.7514,3.40422,36.7654],[18.0054,3.40221,36.0531],[17.8461,4.17952,36.3069],[16.7514,3.40422,36.7654],[17.8461,4.17952,36.3069],[16.9347,4.97112,36.9477],[16.7514,3.40422,36.7654],[16.9347,4.97112,36.9477],[15.1633,4.35571,37.8246],[15.8843,5.29792,37.6105],[15.1633,4.35571,37.8246],[16.9347,4.97112,36.9477],[16.4044,6.03227,37.2693],[15.8843,5.29792,37.6105],[16.9347,4.97112,36.9477],[16.4044,6.03227,37.2693],[16.9347,4.97112,36.9477],[17.5394,6.08812,36.531],[16.7293,7.00287,36.8869],[16.4044,6.03227,37.2693],[17.5394,6.08812,36.531],[16.4044,6.03227,37.2693],[16.7293,7.00287,36.8869],[15.616,6.88479,37.5764],[16.9347,4.97112,36.9477],[18.5467,5.18307,35.8583],[17.5394,6.08812,36.531],[18.5227,6.25292,35.8191],[17.5394,6.08812,36.531],[18.5467,5.18307,35.8583],[17.8958,7.05949,36.0791],[17.5394,6.08812,36.531],[18.5227,6.25292,35.8191],[18.5227,6.25292,35.8191],[18.9752,6.95088,35.2921],[17.8958,7.05949,36.0791],[18.5227,6.25292,35.8191],[19.4072,5.93082,35.1456],[18.9752,6.95088,35.2921],[16.4044,6.03227,37.2693],[14.8402,5.87463,38.0838],[15.8843,5.29792,37.6105],[14.8402,5.87463,38.0838],[15.1633,4.35571,37.8246],[15.8843,5.29792,37.6105],[18.5467,5.18307,35.8583],[16.9347,4.97112,36.9477],[17.8461,4.17952,36.3069],[18.5227,6.25292,35.8191],[18.5467,5.18307,35.8583],[19.4072,5.93082,35.1456],[20.568,7.26419,33.5716],[20.628,6.42749,33.9171],[21.3653,5.90671,33.0579],[18.9752,6.95088,35.2921],[19.4072,5.93082,35.1456],[19.959,6.69513,34.5069],[17.8958,7.05949,36.0791],[18.9752,6.95088,35.2921],[18.2767,7.96451,35.4171],[16.7293,7.00287,36.8869],[17.5394,6.08812,36.531],[17.8958,7.05949,36.0791],[15.616,6.88479,37.5764],[16.7293,7.00287,36.8869],[15.7511,7.84535,37.2147],[14.8402,5.87463,38.0838],[16.4044,6.03227,37.2693],[15.616,6.88479,37.5764],[13.3153,6.16703,38.7553],[14.2409,7.57993,38.1082],[12.5745,7.48575,38.9569],[11.8156,6.41664,39.3627],[13.3153,6.16703,38.7553],[12.5745,7.48575,38.9569],[13.8953,4.95066,38.5034],[15.1633,4.35571,37.8246],[14.8402,5.87463,38.0838],[15.1633,4.35571,37.8246],[14.9526,2.748,37.4286],[16.7514,3.40422,36.7654],[14.5697,1.3671,36.8691],[16.3163,1.80085,36.3268],[14.9526,2.748,37.4286],[15.5477,0.736372,36.0417],[16.3163,1.80085,36.3268],[14.5697,1.3671,36.8691],[16.8466,0.585523,35.2557],[15.5477,0.736372,36.0417],[15.5249,-0.128647,35.2842],[15.3699,-0.862403,34.5484],[15.5249,-0.128647,35.2842],[14.2956,-0.640281,35.128],[13.0142,0.745914,36.9206],[12.8024,-0.3653,35.8223],[14.3119,0.246858,36.0829],[14.2956,-0.640281,35.128],[13.1771,-1.19747,34.577],[14.5276,-1.35686,34.091],[11.8993,-1.10252,34.9971],[12.0278,-1.73655,33.8272],[13.1771,-1.19747,34.577],[11.8993,-1.10252,34.9971],[11.1466,-0.608515,35.9359],[10.4023,-1.54908,34.6607],[11.7848,0.178795,36.7331],[12.8024,-0.3653,35.8223],[13.0142,0.745914,36.9206],[11.5015,1.13287,37.7028],[10.4493,0.113588,37.0441],[11.7848,0.178795,36.7331],[11.1466,-0.608515,35.9359],[9.53573,-0.851044,36.1732],[10.4023,-1.54908,34.6607],[10.4023,-1.54908,34.6607],[9.53573,-0.851044,36.1732],[8.54239,-1.79433,35.2188],[7.03344,-2.14803,35.7044],[7.45986,-2.64882,34.3609],[8.54239,-1.79433,35.2188],[5.89878,-2.50587,36.0493],[6.0728,-2.98976,34.9454],[7.03344,-2.14803,35.7044],[6.0728,-2.98976,34.9454],[7.45986,-2.64882,34.3609],[7.03344,-2.14803,35.7044],[7.45986,-2.64882,34.3609],[7.73476,-3.12486,32.9337],[8.98386,-2.4033,33.6711],[6.41735,-3.43147,33.5334],[5.57349,-4.15984,32.4526],[6.78294,-3.71591,32.3341],[6.78294,-3.71591,32.3341],[5.57349,-4.15984,32.4526],[6.42386,-4.24176,31.1536],[7.73476,-3.12486,32.9337],[7.74776,-3.61269,31.5139],[9.06884,-2.9895,32.0587],[10.7705,-2.38929,32.6647],[9.06884,-2.9895,32.0587],[10.3118,-3.02804,30.9432],[10.9913,-3.16822,29.7995],[10.3118,-3.02804,30.9432],[9.97214,-3.40523,29.6902],[11.8664,-3.22249,29.0801],[12.1647,-2.87457,30.8611],[10.9913,-3.16822,29.7995],[14.0113,-2.51382,31.9685],[12.1647,-2.87457,30.8611],[14.3575,-3.39498,29.8334],[13.1964,-3.42683,28.7116],[13.6984,-3.77181,27.4327],[14.343,-3.79869,28.4287],[15.5495,-4.02449,28.6863],[16.0918,-3.457,30.1007],[14.3575,-3.39498,29.8334],[14.343,-3.79869,28.4287],[13.6984,-3.77181,27.4327],[14.9987,-4.34535,27.2553],[16.4539,-4.7568,27.3979],[17.2172,-4.13078,28.7843],[15.5495,-4.02449,28.6863],[16.0218,-5.2496,25.9467],[14.9987,-4.34535,27.2553],[14.8306,-4.7313,25.4335],[17.2169,-5.49795,26.148],[17.8112,-4.93115,27.3103],[16.4539,-4.7568,27.3979],[17.8799,-6.02775,25.2267],[17.2169,-5.49795,26.148],[16.9187,-6.11524,24.6881],[16.2182,-6.44072,23.3778],[17.311,-6.93557,23.2034],[16.9187,-6.11524,24.6881],[14.8306,-4.7313,25.4335],[15.8141,-5.71319,24.5639],[16.0218,-5.2496,25.9467],[16.2182,-6.44072,23.3778],[15.2549,-5.80483,23.2995],[15.52,-6.4457,22.3073],[16.2182,-6.44072,23.3778],[15.52,-6.4457,22.3073],[16.6523,-7.2969,22.0567],[16.6523,-7.2969,22.0567],[15.52,-6.4457,22.3073],[15.975,-7.44708,21.0428],[15.52,-6.4457,22.3073],[15.3258,-7.45965,19.7905],[15.975,-7.44708,21.0428],[15.975,-7.44708,21.0428],[15.3258,-7.45965,19.7905],[16.1344,-8.21676,19.6921],[15.52,-6.4457,22.3073],[14.7404,-6.16865,21.303],[15.3258,-7.45965,19.7905],[15.3258,-7.45965,19.7905],[15.5747,-8.14671,18.825],[16.1344,-8.21676,19.6921],[16.5971,-8.08856,20.5415],[15.975,-7.44708,21.0428],[16.1344,-8.21676,19.6921],[16.6523,-7.2969,22.0567],[15.975,-7.44708,21.0428],[16.5971,-8.08856,20.5415],[16.6523,-7.2969,22.0567],[17.311,-6.93557,23.2034],[16.2182,-6.44072,23.3778],[18.4588,-7.35909,22.6191],[18.1133,-6.59819,24.0758],[17.311,-6.93557,23.2034],[18.8966,-7.98345,21.4489],[19.817,-7.34727,22.1646],[18.4588,-7.35909,22.6191],[19.5589,-8.37811,20.4704],[19.817,-7.34727,22.1646],[18.8966,-7.98345,21.4489],[19.5589,-8.37811,20.4704],[20.634,-7.82896,20.6882],[19.817,-7.34727,22.1646],[18.1906,-7.98485,21.5082],[17.6105,-7.53617,22.1935],[17.405,-8.22764,20.7948],[17.6876,-8.8238,19.8094],[17.405,-8.22764,20.7948],[16.9332,-8.62702,19.7595],[17.6876,-8.8238,19.8094],[16.9332,-8.62702,19.7595],[17.3895,-9.18337,18.9667],[19.5589,-8.37811,20.4704],[18.8966,-7.98345,21.4489],[18.4909,-8.53414,20.4492],[20.634,-7.82896,20.6882],[19.5589,-8.37811,20.4704],[20.2749,-8.67332,19.4957],[19.9758,-9.43373,18.3239],[19.2947,-9.03063,19.379],[19.1349,-9.57099,18.4443],[20.7454,-9.51117,17.5452],[19.9758,-9.43373,18.3239],[19.9867,-10.0381,17.2645],[21.4378,-9.01099,17.6123],[20.7454,-9.51117,17.5452],[21.4204,-9.61833,16.5421],[20.3646,-10.4427,16.2163],[21.4204,-9.61833,16.5421],[20.7454,-9.51117,17.5452],[20.9216,-8.87959,18.4849],[21.123,-8.19971,19.494],[20.2749,-8.67332,19.4957],[21.123,-8.19971,19.494],[20.634,-7.82896,20.6882],[20.2749,-8.67332,19.4957],[20.634,-7.82896,20.6882],[21.1754,-6.81589,21.947],[19.817,-7.34727,22.1646],[22.214,-6.27993,21.3401],[21.8544,-6.08359,22.4203],[21.1754,-6.81589,21.947],[23.0208,-5.51613,21.0294],[22.5249,-5.47632,22.2709],[22.214,-6.27993,21.3401],[23.6795,-4.69597,20.6645],[23.3276,-4.55839,22.0508],[23.0208,-5.51613,21.0294],[24.2327,-3.75631,20.329],[23.9103,-3.94376,21.3994],[23.6795,-4.69597,20.6645],[23.9103,-3.94376,21.3994],[24.2327,-3.75631,20.329],[24.3404,-2.92529,21.6266],[24.8953,-1.11822,22.3913],[25.0451,-0.344257,22.7419],[24.7473,-1.02287,23.3189],[24.7473,-1.02287,23.3189],[24.5333,-0.734664,24.4531],[24.2826,-1.83416,23.8534],[24.3404,-2.92529,21.6266],[24.5621,-1.91767,22.6451],[24.0589,-2.82549,23.0014],[23.4474,-3.74186,23.2387],[24.0589,-2.82549,23.0014],[23.6728,-2.77449,24.2315],[24.2826,-1.83416,23.8534],[24.5333,-0.734664,24.4531],[23.875,-1.6502,25.2701],[23.2421,-2.69446,25.3916],[22.9137,-3.80956,24.3606],[23.6728,-2.77449,24.2315],[23.1657,-2.02711,26.4433],[22.4315,-3.04975,26.4363],[23.2421,-2.69446,25.3916],[24.253,-0.327763,25.7323],[23.875,-1.6502,25.2701],[24.5333,-0.734664,24.4531],[23.0128,-1.24905,27.5926],[23.1657,-2.02711,26.4433],[23.6731,-1.06247,26.4753],[23.0128,-1.24905,27.5926],[22.3955,-1.29447,28.6285],[22.0877,-2.1325,28.0893],[22.3955,-1.29447,28.6285],[21.6897,-1.11079,29.7147],[22.0877,-2.1325,28.0893],[20.5726,-1.21338,30.888],[20.7262,-2.03237,29.853],[21.6897,-1.11079,29.7147],[20.7253,-0.294893,31.6625],[19.9479,-0.774825,31.9451],[20.5726,-1.21338,30.888],[20.2017,0.237469,32.5596],[20.7253,-0.294893,31.6625],[21.2449,0.714314,31.8448],[19.0563,0.835755,33.9723],[20.2017,0.237469,32.5596],[20.0379,1.19817,33.4102],[20.0379,1.19817,33.4102],[19.7251,1.93093,34.0892],[19.0563,0.835755,33.9723],[18.6892,1.90052,34.9322],[19.7251,1.93093,34.0892],[19.4824,2.68523,34.6738],[18.7515,2.98495,35.383],[19.4824,2.68523,34.6738],[19.5005,3.49417,34.9154],[19.7172,4.70307,34.8666],[18.7793,3.99445,35.6121],[19.5005,3.49417,34.9154],[19.7172,4.70307,34.8666],[20.9926,4.59654,33.5508],[20.3226,5.72327,34.3208],[20.9244,1.86016,32.8453],[21.6583,3.24282,32.5337],[20.4071,3.10223,33.8931],[21.3653,5.90671,33.0579],[20.9926,4.59654,33.5508],[21.9942,4.77955,32.3074],[22.0939,5.93224,31.9997],[21.3653,5.90671,33.0579],[21.9942,4.77955,32.3074],[21.9942,4.77955,32.3074],[22.5561,3.69803,31.4083],[22.7925,5.09071,30.9608],[23.2386,3.70387,30.1704],[22.7925,5.09071,30.9608],[22.5561,3.69803,31.4083],[22.5561,3.69803,31.4083],[22.8561,2.631,30.6673],[23.2386,3.70387,30.1704],[22.8561,2.631,30.6673],[23.4437,2.32163,29.3687],[23.2386,3.70387,30.1704],[23.2386,3.70387,30.1704],[23.4437,2.32163,29.3687],[23.833,3.63281,28.9062],[23.2386,3.70387,30.1704],[23.5307,4.78253,29.5578],[22.7925,5.09071,30.9608],[20.9244,1.86016,32.8453],[21.8324,1.89537,31.8534],[21.6583,3.24282,32.5337],[22.333,2.68065,31.5531],[22.8561,2.631,30.6673],[22.5561,3.69803,31.4083],[22.4219,1.91614,31.0956],[21.8324,1.89537,31.8534],[22.0541,0.968879,31.0149],[22.0541,0.968879,31.0149],[21.4689,-0.182316,30.8851],[22.3387,0.191268,29.9937],[22.3387,0.191268,29.9937],[22.6563,-0.444718,28.9855],[23.1842,0.787426,29.0403],[22.7634,1.44993,30.2209],[23.4437,2.32163,29.3687],[22.8561,2.631,30.6673],[24.0752,2.57636,28.0827],[23.833,3.63281,28.9062],[23.4437,2.32163,29.3687],[23.1842,0.787426,29.0403],[23.6956,0.708938,28.0405],[23.7619,1.53447,28.391],[23.8399,0.0218869,27.115],[23.6956,0.708938,28.0405],[23.3194,-0.0595121,28.1841],[24.253,-0.327763,25.7323],[24.4787,0.873446,26.142],[23.8399,0.0218869,27.115],[24.4787,0.873446,26.142],[24.814,0.576734,24.6586],[24.8425,1.80389,25.3772],[24.5799,2.88189,26.7101],[24.1646,1.35777,27.3364],[24.5875,1.7295,26.4156],[24.814,0.576734,24.6586],[25.0998,1.93389,23.7888],[24.8425,1.80389,25.3772],[25.0827,3.63936,23.4521],[25.0998,1.93389,23.7888],[25.165,2.69467,21.2607],[24.7693,4.81678,25.4371],[24.6472,4.17345,26.5109],[24.9417,3.39289,25.0884],[24.8923,4.78886,23.049],[24.6278,5.65884,24.3],[24.9465,4.47294,24.2772],[24.6278,5.65884,24.3],[24.8923,4.78886,23.049],[24.465,5.90863,22.5647],[24.465,5.90863,22.5647],[24.8923,4.78886,23.049],[24.773,4.90156,21.6723],[24.0888,6.14798,27.2441],[24.4468,5.93623,25.8063],[23.9615,7.06549,26.169],[24.285,4.94551,27.5394],[24.0888,6.14798,27.2441],[23.7352,5.74062,28.6779],[23.7352,5.74062,28.6779],[24.0888,6.14798,27.2441],[23.59,6.74693,28.3232],[23.59,6.74693,28.3232],[24.0888,6.14798,27.2441],[23.5935,7.29771,27.5003],[24.5234,5.21296,26.5227],[24.6472,4.17345,26.5109],[24.7693,4.81678,25.4371],[24.3067,3.79519,27.7128],[24.5799,2.88189,26.7101],[24.6472,4.17345,26.5109],[24.3067,3.79519,27.7128],[23.833,3.63281,28.9062],[24.0752,2.57636,28.0827],[23.2386,3.70387,30.1704],[23.833,3.63281,28.9062],[23.5307,4.78253,29.5578],[24.0054,4.58263,28.4864],[24.285,4.94551,27.5394],[23.7352,5.74062,28.6779],[23.7352,5.74062,28.6779],[23.59,6.74693,28.3232],[23.0345,6.94016,29.4996],[23.5307,4.78253,29.5578],[23.172,5.87158,29.9771],[22.7925,5.09071,30.9608],[22.7925,5.09071,30.9608],[22.0939,5.93224,31.9997],[21.9942,4.77955,32.3074],[21.3653,5.90671,33.0579],[22.0939,5.93224,31.9997],[21.5235,7.04038,32.3491],[20.568,7.26419,33.5716],[21.3653,5.90671,33.0579],[21.5235,7.04038,32.3491],[20.568,7.26419,33.5716],[19.8976,8.11638,33.8473],[19.3759,7.70308,34.6258],[19.3759,7.70308,34.6258],[19.8976,8.11638,33.8473],[18.7121,8.86397,34.4681],[18.7121,8.86397,34.4681],[19.5076,9.38639,33.1677],[18.5877,9.92697,33.6631],[18.7121,8.86397,34.4681],[18.5877,9.92697,33.6631],[17.252,10.3398,34.4462],[18.0436,11.2014,32.1052],[17.0101,11.274,33.459],[18.0663,10.619,33.3137],[15.9629,11.9665,33.4468],[15.648,11.4402,34.5746],[17.0101,11.274,33.459],[15.648,11.4402,34.5746],[15.9629,11.9665,33.4468],[14.5616,12.5425,33.7886],[14.0434,12.1183,35.0817],[15.648,11.4402,34.5746],[14.5616,12.5425,33.7886],[17.2235,9.08355,35.5514],[18.7121,8.86397,34.4681],[17.252,10.3398,34.4462],[17.2235,9.08355,35.5514],[15.9325,8.92923,36.6031],[17.0166,8.00056,36.3322],[15.9325,8.92923,36.6031],[14.737,9.62319,36.9971],[14.9296,8.62726,37.4009],[13.8869,9.06764,37.8064],[14.737,9.62319,36.9971],[13.6762,10.0393,37.4079],[13.6762,10.0393,37.4079],[12.7016,10.8872,37.3177],[12.8192,9.76311,38.0529],[15.7031,10.2296,35.8326],[14.6149,11.273,35.7049],[14.1628,10.6589,36.619],[15.648,11.4402,34.5746],[14.0434,12.1183,35.0817],[14.6149,11.273,35.7049],[12.7016,10.8872,37.3177],[13.3642,11.6495,36.183],[11.9018,12.0139,36.6378],[11.9018,12.0139,36.6378],[10.3769,12.297,37.0211],[11.1473,11.3642,37.7134],[10.3769,12.297,37.0211],[9.66489,11.5797,38.1015],[11.1473,11.3642,37.7134],[9.66489,11.5797,38.1015],[10.4319,10.6714,38.6065],[11.1473,11.3642,37.7134],[8.49148,10.3138,39.4347],[9.27229,10.8552,38.8793],[7.99646,11.4621,38.6417],[10.9789,9.60092,38.9996],[10.4319,10.6714,38.6065],[9.73616,9.92834,39.2923],[11.6811,8.54617,39.112],[12.0249,9.40439,38.6575],[10.9789,9.60092,38.9996],[11.6811,8.54617,39.112],[11.3681,7.59253,39.45],[12.5745,7.48575,38.9569],[9.40728,7.55643,40.0731],[10.49,7.00382,39.7909],[10.1856,8.52188,39.6484],[11.8156,6.41664,39.3627],[12.5745,7.48575,38.9569],[11.3681,7.59253,39.45],[9.32395,6.39623,40.1093],[10.6563,5.56106,39.6845],[10.49,7.00382,39.7909],[12.3295,4.83014,39.053],[13.3153,6.16703,38.7553],[11.8156,6.41664,39.3627],[9.08471,4.80807,39.9565],[10.711,4.04819,39.3867],[10.6563,5.56106,39.6845],[12.3295,4.83014,39.053],[12.0246,3.22135,38.7487],[13.6174,3.68031,38.3348],[10.711,4.04819,39.3867],[9.38744,3.25688,39.4656],[10.6646,2.72156,38.9557],[11.5971,2.1656,38.4159],[13.0652,2.11616,37.8624],[12.0246,3.22135,38.7487],[11.5015,1.13287,37.7028],[13.0652,2.11616,37.8624],[11.5971,2.1656,38.4159],[9.89243,0.981092,38.0548],[10.4493,0.113588,37.0441],[11.5015,1.13287,37.7028],[9.51899,2.0033,38.8629],[10.6441,1.7763,38.452],[10.6646,2.72156,38.9557],[9.51899,2.0033,38.8629],[8.16905,2.37369,39.3878],[8.33732,1.02299,38.542],[9.89243,0.981092,38.0548],[8.83702,-0.0576925,37.436],[10.4493,0.113588,37.0441],[6.9407,-0.338748,37.9583],[7.87453,-1.16075,36.5933],[8.83702,-0.0576925,37.436],[6.69711,1.27555,39.2699],[8.33732,1.02299,38.542],[8.16905,2.37369,39.3878],[6.9407,-0.338748,37.9583],[5.12043,-1.45115,37.8332],[6.35823,-1.68851,36.8635],[5.12043,-1.45115,37.8332],[4.19699,-0.83221,38.8921],[3.46829,-1.98218,38.0792],[4.19699,-0.83221,38.8921],[2.64813,-1.55969,38.8549],[3.46829,-1.98218,38.0792],[2.64813,-1.55969,38.8549],[1.88862,-2.42916,38.1221],[3.46829,-1.98218,38.0792],[2.64813,-1.55969,38.8549],[1.68087,-1.67129,39.1382],[1.88862,-2.42916,38.1221],[1.68087,-1.67129,39.1382],[0.467357,-2.20833,38.6568],[1.88862,-2.42916,38.1221],[0.467357,-2.20833,38.6568],[1.68087,-1.67129,39.1382],[0.543007,-1.73065,39.2937],[0.543007,-1.73065,39.2937],[-0.288354,-1.91322,39.1536],[0.467357,-2.20833,38.6568],[-0.288354,-1.91322,39.1536],[-0.756087,-2.45294,38.3901],[0.467357,-2.20833,38.6568],[-0.288354,-1.91322,39.1536],[-1.24099,-1.90318,39.1929],[-0.756087,-2.45294,38.3901],[-0.769642,-1.89568,39.6466],[-1.24099,-1.90318,39.1929],[-0.288354,-1.91322,39.1536],[0.00982301,-1.74348,39.5848],[-0.769642,-1.89568,39.6466],[-0.288354,-1.91322,39.1536],[0.00982301,-1.74348,39.5848],[0.180614,-2.33035,39.8661],[-0.769642,-1.89568,39.6466],[-0.769642,-1.89568,39.6466],[0.180614,-2.33035,39.8661],[-1.09321,-2.80218,40.0465],[-1.66746,-1.85607,39.7888],[-0.769642,-1.89568,39.6466],[-1.09321,-2.80218,40.0465],[-1.66746,-1.85607,39.7888],[-1.09321,-2.80218,40.0465],[-2.81881,-1.98239,40.1136],[-2.81881,-1.98239,40.1136],[-2.62201,-1.34341,39.6798],[-1.66746,-1.85607,39.7888],[-2.81881,-1.98239,40.1136],[-3.21722,-1.09545,39.9738],[-2.62201,-1.34341,39.6798],[-4.10797,-1.10572,40.3174],[-3.21722,-1.09545,39.9738],[-2.81881,-1.98239,40.1136],[-4.19624,-2.44935,40.5942],[-4.10797,-1.10572,40.3174],[-2.81881,-1.98239,40.1136],[-2.85829,-3.63486,40.5468],[-4.19624,-2.44935,40.5942],[-2.81881,-1.98239,40.1136],[-4.19624,-2.44935,40.5942],[-2.85829,-3.63486,40.5468],[-4.63529,-3.76028,41.0698],[-5.40196,-2.7323,41.0679],[-4.19624,-2.44935,40.5942],[-4.63529,-3.76028,41.0698],[-5.40196,-2.7323,41.0679],[-4.63529,-3.76028,41.0698],[-6.14235,-3.69177,41.7301],[-6.14235,-3.69177,41.7301],[-6.5505,-2.17288,41.5308],[-5.40196,-2.7323,41.0679],[-6.5505,-2.17288,41.5308],[-5.40834,-1.51943,40.888],[-5.40196,-2.7323,41.0679],[-6.5505,-2.17288,41.5308],[-6.8066,-0.52342,41.4642],[-5.40834,-1.51943,40.888],[-5.40834,-1.51943,40.888],[-6.8066,-0.52342,41.4642],[-5.44064,-0.195705,40.7335],[-4.10797,-1.10572,40.3174],[-5.40834,-1.51943,40.888],[-5.44064,-0.195705,40.7335],[-4.30452,-0.309461,40.1818],[-4.10797,-1.10572,40.3174],[-5.44064,-0.195705,40.7335],[-5.44064,-0.195705,40.7335],[-4.836,0.180419,40.2729],[-4.30452,-0.309461,40.1818],[-4.836,0.180419,40.2729],[-4.43409,-0.125311,39.7859],[-4.30452,-0.309461,40.1818],[-4.30452,-0.309461,40.1818],[-4.43409,-0.125311,39.7859],[-3.71276,-0.606815,39.937],[-3.71276,-0.606815,39.937],[-4.43409,-0.125311,39.7859],[-3.85374,-0.580356,39.5257],[-5.31379,0.726856,40.1338],[-4.43409,-0.125311,39.7859],[-4.836,0.180419,40.2729],[-5.31379,0.726856,40.1338],[-4.836,0.180419,40.2729],[-5.61885,0.804386,40.608],[-5.61885,0.804386,40.608],[-5.79813,1.26333,40.2763],[-5.31379,0.726856,40.1338],[-5.31379,0.726856,40.1338],[-5.79813,1.26333,40.2763],[-5.83056,0.565109,39.519],[-5.83056,0.565109,39.519],[-5.79813,1.26333,40.2763],[-7.04392,2.31491,40.1016],[-5.83056,0.565109,39.519],[-7.04392,2.31491,40.1016],[-7.31241,0.987485,39.1498],[-5.83056,0.565109,39.519],[-7.31241,0.987485,39.1498],[-6.58565,-0.217304,38.4744],[-4.74201,-0.631294,38.9798],[-5.83056,0.565109,39.519],[-6.58565,-0.217304,38.4744],[-4.74201,-0.631294,38.9798],[-4.43409,-0.125311,39.7859],[-5.83056,0.565109,39.519],[-7.04392,2.31491,40.1016],[-5.79813,1.26333,40.2763],[-6.40601,2.45774,40.6746],[-7.04392,2.31491,40.1016],[-6.40601,2.45774,40.6746],[-6.62134,3.07459,40.7146],[-6.62134,3.07459,40.7146],[-7.02639,3.74093,40.7173],[-7.04392,2.31491,40.1016],[-7.04392,2.31491,40.1016],[-7.02639,3.74093,40.7173],[-8.10741,3.54894,40.2793],[-8.51378,2.27656,39.5245],[-7.04392,2.31491,40.1016],[-8.10741,3.54894,40.2793],[-7.02639,3.74093,40.7173],[-7.78434,4.91037,40.8029],[-8.10741,3.54894,40.2793],[-8.10741,3.54894,40.2793],[-7.78434,4.91037,40.8029],[-9.22507,4.81333,40.3916],[-9.22507,4.81333,40.3916],[-9.31721,3.43963,39.8701],[-8.10741,3.54894,40.2793],[-8.55645,5.96227,40.845],[-9.22507,4.81333,40.3916],[-7.78434,4.91037,40.8029],[-7.78434,4.91037,40.8029],[-7.50395,6.57922,41.1421],[-8.55645,5.96227,40.845],[-8.55645,5.96227,40.845],[-7.50395,6.57922,41.1421],[-8.63793,7.17759,40.9824],[-8.55645,5.96227,40.845],[-8.63793,7.17759,40.9824],[-9.73035,6.41119,40.6235],[-8.63793,7.17759,40.9824],[-9.64868,7.70583,40.796],[-9.73035,6.41119,40.6235],[-9.73035,6.41119,40.6235],[-9.64868,7.70583,40.796],[-10.5907,7.40805,40.5039],[-10.5907,7.40805,40.5039],[-11.0504,6.45519,40.2341],[-9.73035,6.41119,40.6235],[-9.73035,6.41119,40.6235],[-11.0504,6.45519,40.2341],[-10.5004,5.451,40.1977],[-9.22507,4.81333,40.3916],[-9.73035,6.41119,40.6235],[-10.5004,5.451,40.1977],[-10.5004,5.451,40.1977],[-10.7161,4.16062,39.6759],[-9.22507,4.81333,40.3916],[-11.7937,5.47471,39.7462],[-10.7161,4.16062,39.6759],[-10.5004,5.451,40.1977],[-12.5118,4.33284,39.0486],[-10.7161,4.16062,39.6759],[-11.7937,5.47471,39.7462],[-12.5118,4.33284,39.0486],[-11.7937,5.47471,39.7462],[-12.8455,5.35763,39.3268],[-12.5118,4.33284,39.0486],[-12.8455,5.35763,39.3268],[-13.5645,5.00256,38.9038],[-13.5645,5.00256,38.9038],[-13.9497,4.1913,38.3692],[-12.5118,4.33284,39.0486],[-13.9497,4.1913,38.3692],[-13.0319,3.00419,38.0809],[-12.5118,4.33284,39.0486],[-14.3272,4.94494,38.5586],[-13.9497,4.1913,38.3692],[-13.5645,5.00256,38.9038],[-14.6287,5.65793,38.6561],[-14.3272,4.94494,38.5586],[-13.5645,5.00256,38.9038],[-13.5645,5.00256,38.9038],[-13.5626,5.92597,39.1855],[-14.6287,5.65793,38.6561],[-14.6287,5.65793,38.6561],[-13.5626,5.92597,39.1855],[-14.3432,6.76641,39.0209],[-14.6287,5.65793,38.6561],[-14.3432,6.76641,39.0209],[-15.3746,6.2461,38.5007],[-14.6287,5.65793,38.6561],[-15.3746,6.2461,38.5007],[-15.4622,5.50141,38.2453],[-15.0559,4.9529,38.221],[-14.6287,5.65793,38.6561],[-15.4622,5.50141,38.2453],[-16.0367,4.90761,37.7363],[-15.0559,4.9529,38.221],[-15.4622,5.50141,38.2453],[-16.0367,4.90761,37.7363],[-15.4622,5.50141,38.2453],[-16.189,5.85003,38.0341],[-17.1986,5.5398,37.4555],[-16.0367,4.90761,37.7363],[-16.189,5.85003,38.0341],[-17.1986,5.5398,37.4555],[-16.189,5.85003,38.0341],[-16.843,6.33342,37.8988],[-17.7366,6.65996,37.5805],[-17.1986,5.5398,37.4555],[-16.843,6.33342,37.8988],[-17.7366,6.65996,37.5805],[-16.843,6.33342,37.8988],[-16.9201,6.97519,38.0255],[-16.9201,6.97519,38.0255],[-17.3899,7.59892,37.924],[-17.7366,6.65996,37.5805],[-17.3899,7.59892,37.924],[-18.2014,7.48123,37.5585],[-17.7366,6.65996,37.5805],[-18.9876,6.97485,37.1162],[-17.7366,6.65996,37.5805],[-18.2014,7.48123,37.5585],[-18.9876,6.97485,37.1162],[-18.2014,7.48123,37.5585],[-18.8093,7.84081,37.3467],[-18.8093,7.84081,37.3467],[-19.6119,7.7924,36.9871],[-18.9876,6.97485,37.1162],[-19.6119,7.7924,36.9871],[-20.0208,7.06248,36.7044],[-18.9876,6.97485,37.1162],[-19.7958,6.34072,36.5979],[-18.9876,6.97485,37.1162],[-20.0208,7.06248,36.7044],[-20.0208,7.06248,36.7044],[-20.7548,6.74359,36.3048],[-19.7958,6.34072,36.5979],[-21.0384,5.82397,35.8267],[-19.7958,6.34072,36.5979],[-20.7548,6.74359,36.3048],[-20.7548,6.74359,36.3048],[-21.9178,7.00484,35.856],[-21.0384,5.82397,35.8267],[-21.9178,7.00484,35.856],[-23.226,6.21577,35.0899],[-21.0384,5.82397,35.8267],[-23.226,6.21577,35.0899],[-21.5671,4.63801,34.8922],[-21.0384,5.82397,35.8267],[-21.0384,5.82397,35.8267],[-21.5671,4.63801,34.8922],[-20.3063,4.77295,35.6319],[-20.3063,4.77295,35.6319],[-19.7707,5.50957,36.2864],[-21.0384,5.82397,35.8267],[-19.7707,5.50957,36.2864],[-20.3063,4.77295,35.6319],[-18.8738,4.81562,36.3453],[-18.8738,4.81562,36.3453],[-18.6265,5.79675,36.9082],[-19.7707,5.50957,36.2864],[-18.6265,5.79675,36.9082],[-19.7958,6.34072,36.5979],[-19.7707,5.50957,36.2864],[-17.9309,4.90267,36.8337],[-18.6265,5.79675,36.9082],[-18.8738,4.81562,36.3453],[-17.9198,4.00332,36.3165],[-17.9309,4.90267,36.8337],[-18.8738,4.81562,36.3453],[-19.2022,4.01551,35.6856],[-17.9198,4.00332,36.3165],[-18.8738,4.81562,36.3453],[-18.3802,3.3944,35.6241],[-17.9198,4.00332,36.3165],[-19.2022,4.01551,35.6856],[-18.3802,3.3944,35.6241],[-19.2022,4.01551,35.6856],[-19.2338,3.3003,35.0549],[-18.3802,3.3944,35.6241],[-19.2338,3.3003,35.0549],[-18.1956,2.7397,35.082],[-18.1956,2.7397,35.082],[-17.2735,3.04737,35.9042],[-18.3802,3.3944,35.6241],[-17.2735,3.04737,35.9042],[-18.1956,2.7397,35.082],[-17.4104,2.46698,35.2568],[-16.4122,1.98112,35.2397],[-17.2735,3.04737,35.9042],[-17.4104,2.46698,35.2568],[-17.6642,2.22068,34.7649],[-16.4122,1.98112,35.2397],[-17.4104,2.46698,35.2568],[-17.6642,2.22068,34.7649],[-17.0291,1.57237,34.1601],[-16.4122,1.98112,35.2397],[-16.4122,1.98112,35.2397],[-17.0291,1.57237,34.1601],[-15.6326,1.11471,34.5075],[-15.6326,1.11471,34.5075],[-15.0206,1.6578,35.748],[-16.4122,1.98112,35.2397],[-16.3516,0.846156,33.3021],[-15.6326,1.11471,34.5075],[-17.0291,1.57237,34.1601],[-17.0291,1.57237,34.1601],[-17.7778,1.38673,33.0373],[-16.3516,0.846156,33.3021],[-16.3516,0.846156,33.3021],[-17.7778,1.38673,33.0373],[-17.0904,0.7809,32.1613],[-17.0904,0.7809,32.1613],[-17.7778,1.38673,33.0373],[-18.3244,1.25406,31.9285],[-19.549,1.95991,32.562],[-18.3244,1.25406,31.9285],[-17.7778,1.38673,33.0373],[-19.549,1.95991,32.562],[-17.7778,1.38673,33.0373],[-18.3343,2.0476,33.9426],[-19.549,1.95991,32.562],[-18.3343,2.0476,33.9426],[-19.2998,2.32714,33.6532],[-19.549,1.95991,32.562],[-19.2998,2.32714,33.6532],[-20.311,2.76504,33.6271],[-19.549,1.95991,32.562],[-20.311,2.76504,33.6271],[-21.9632,2.97266,32.8829],[-19.549,1.95991,32.562],[-21.9632,2.97266,32.8829],[-21.497,2.17631,31.364],[-21.497,2.17631,31.364],[-19.5157,1.42625,30.6985],[-19.549,1.95991,32.562],[-23.5392,2.72293,31.563],[-21.497,2.17631,31.364],[-21.9632,2.97266,32.8829],[-23.691,3.40294,32.7696],[-23.5392,2.72293,31.563],[-21.9632,2.97266,32.8829],[-22.4242,3.80626,33.7795],[-23.691,3.40294,32.7696],[-21.9632,2.97266,32.8829],[-21.1708,3.54263,34.1301],[-22.4242,3.80626,33.7795],[-21.9632,2.97266,32.8829],[-22.4242,3.80626,33.7795],[-21.1708,3.54263,34.1301],[-21.5671,4.63801,34.8922],[-24.0332,4.5285,33.8892],[-22.4242,3.80626,33.7795],[-21.5671,4.63801,34.8922],[-21.5671,4.63801,34.8922],[-25.1432,5.43769,34.1049],[-24.0332,4.5285,33.8892],[-24.0332,4.5285,33.8892],[-25.1432,5.43769,34.1049],[-25.286,4.20824,33.1981],[-25.1432,5.43769,34.1049],[-26.6503,4.6171,33.3297],[-25.286,4.20824,33.1981],[-25.286,4.20824,33.1981],[-26.6503,4.6171,33.3297],[-26.5921,3.91053,32.7083],[-26.5921,3.91053,32.7083],[-25.1018,3.29374,32.1376],[-25.286,4.20824,33.1981],[-25.286,4.20824,33.1981],[-25.1018,3.29374,32.1376],[-23.691,3.40294,32.7696],[-26.5921,3.91053,32.7083],[-28.0561,3.36098,31.8715],[-25.1018,3.29374,32.1376],[-25.1018,3.29374,32.1376],[-28.0561,3.36098,31.8715],[-26.6301,2.92455,31.2756],[-25.2583,2.74109,31.0833],[-25.1018,3.29374,32.1376],[-26.6301,2.92455,31.2756],[-26.5996,2.53036,30.2227],[-25.2583,2.74109,31.0833],[-26.6301,2.92455,31.2756],[-28.0253,2.72394,30.7202],[-26.5996,2.53036,30.2227],[-26.6301,2.92455,31.2756],[-26.5996,2.53036,30.2227],[-28.0253,2.72394,30.7202],[-27.9337,2.29543,29.1985],[-26.1225,2.20587,28.7122],[-26.5996,2.53036,30.2227],[-27.9337,2.29543,29.1985],[-26.1225,2.20587,28.7122],[-27.9337,2.29543,29.1985],[-27.0381,2.09739,27.2893],[-25.035,2.05045,27.3934],[-26.1225,2.20587,28.7122],[-27.0381,2.09739,27.2893],[-24.6546,2.13584,28.7977],[-26.1225,2.20587,28.7122],[-25.035,2.05045,27.3934],[-24.2904,2.35422,30.0751],[-26.1225,2.20587,28.7122],[-24.6546,2.13584,28.7977],[-24.2904,2.35422,30.0751],[-24.6546,2.13584,28.7977],[-23.1044,2.01927,29.0268],[-22.7953,2.21773,30.4072],[-24.2904,2.35422,30.0751],[-23.1044,2.01927,29.0268],[-24.2904,2.35422,30.0751],[-22.7953,2.21773,30.4072],[-23.5392,2.72293,31.563],[-25.2583,2.74109,31.0833],[-24.2904,2.35422,30.0751],[-23.5392,2.72293,31.563],[-27.9337,2.29543,29.1985],[-28.9214,2.06257,28.1082],[-27.0381,2.09739,27.2893],[-28.9214,2.06257,28.1082],[-30.3931,1.91354,27.2289],[-27.0381,2.09739,27.2893],[-27.9337,2.29543,29.1985],[-30.2393,2.07459,28.844],[-28.9214,2.06257,28.1082],[-26.1225,2.20587,28.7122],[-24.2904,2.35422,30.0751],[-26.5996,2.53036,30.2227],[-27.9337,2.29543,29.1985],[-28.0253,2.72394,30.7202],[-29.606,2.46567,30.2356],[-28.0253,2.72394,30.7202],[-29.2059,2.9488,31.2851],[-29.606,2.46567,30.2356],[-28.0253,2.72394,30.7202],[-28.0561,3.36098,31.8715],[-29.2059,2.9488,31.2851],[-29.2059,2.9488,31.2851],[-28.0561,3.36098,31.8715],[-29.4742,3.56509,32.1434],[-29.2059,2.9488,31.2851],[-29.4742,3.56509,32.1434],[-30.7976,2.76254,31.1973],[-30.7976,2.76254,31.1973],[-29.4742,3.56509,32.1434],[-32.3953,3.1457,32.1537],[-31.1364,4.07649,32.7786],[-32.3953,3.1457,32.1537],[-29.4742,3.56509,32.1434],[-29.2565,4.41558,32.9463],[-31.1364,4.07649,32.7786],[-29.4742,3.56509,32.1434],[-27.9265,4.21969,32.8442],[-29.2565,4.41558,32.9463],[-29.4742,3.56509,32.1434],[-27.9265,4.21969,32.8442],[-28.3166,5.2319,33.4351],[-29.2565,4.41558,32.9463],[-30.3189,4.86639,33.1895],[-29.2565,4.41558,32.9463],[-28.3166,5.2319,33.4351],[-30.1145,6.06304,33.5098],[-30.3189,4.86639,33.1895],[-28.3166,5.2319,33.4351],[-30.1145,6.06304,33.5098],[-28.3166,5.2319,33.4351],[-28.7923,6.42025,33.7532],[-28.7923,6.42025,33.7532],[-30.114,7.05022,33.6088],[-30.1145,6.06304,33.5098],[-31.6143,6.90527,33.5051],[-30.1145,6.06304,33.5098],[-30.114,7.05022,33.6088],[-30.6685,7.96848,33.4438],[-31.6143,6.90527,33.5051],[-30.114,7.05022,33.6088],[-30.114,7.05022,33.6088],[-28.9095,8.1002,33.7507],[-30.6685,7.96848,33.4438],[-27.5836,7.39048,34.0798],[-28.9095,8.1002,33.7507],[-30.114,7.05022,33.6088],[-27.5152,8.23393,34.0694],[-28.9095,8.1002,33.7507],[-27.5836,7.39048,34.0798],[-27.5836,7.39048,34.0798],[-26.4084,7.75505,34.3783],[-27.5152,8.23393,34.0694],[-26.4084,7.75505,34.3783],[-26.6541,8.98213,34.1851],[-27.5152,8.23393,34.0694],[-28.0073,9.11321,33.7207],[-27.5152,8.23393,34.0694],[-26.6541,8.98213,34.1851],[-26.9277,10.1251,33.6844],[-28.0073,9.11321,33.7207],[-26.6541,8.98213,34.1851],[-25.3605,9.84364,34.4465],[-26.9277,10.1251,33.6844],[-26.6541,8.98213,34.1851],[-24.589,8.91152,34.932],[-25.3605,9.84364,34.4465],[-26.6541,8.98213,34.1851],[-25.3605,9.84364,34.4465],[-24.589,8.91152,34.932],[-23.9541,10.2107,34.9202],[-24.6103,10.9541,34.3157],[-25.3605,9.84364,34.4465],[-23.9541,10.2107,34.9202],[-24.6103,10.9541,34.3157],[-23.9541,10.2107,34.9202],[-23.6396,11.3644,34.6189],[-24.6103,10.9541,34.3157],[-23.6396,11.3644,34.6189],[-24.4679,11.9473,33.8009],[-25.6959,11.3002,33.6038],[-24.6103,10.9541,34.3157],[-24.4679,11.9473,33.8009],[-24.4679,11.9473,33.8009],[-25.5552,12.1083,33.0318],[-25.6959,11.3002,33.6038],[-25.5552,12.1083,33.0318],[-26.9231,11.303,32.9766],[-25.6959,11.3002,33.6038],[-25.6959,11.3002,33.6038],[-26.9231,11.303,32.9766],[-26.9277,10.1251,33.6844],[-26.9277,10.1251,33.6844],[-26.9231,11.303,32.9766],[-28.5635,10.2482,33.0155],[-28.5635,10.2482,33.0155],[-26.9231,11.303,32.9766],[-28.2354,11.5941,32.0117],[-28.5635,10.2482,33.0155],[-28.2354,11.5941,32.0117],[-30.0462,10.6278,32.2607],[-30.0462,10.6278,32.2607],[-28.2354,11.5941,32.0117],[-30.0528,11.3453,31.4693],[-30.0528,11.3453,31.4693],[-28.2354,11.5941,32.0117],[-28.5158,12.3228,30.6148],[-31.6311,11.2155,30.7266],[-30.0528,11.3453,31.4693],[-28.5158,12.3228,30.6148],[-31.6311,11.2155,30.7266],[-28.5158,12.3228,30.6148],[-30.4689,11.9676,29.7343],[-31.6311,11.2155,30.7266],[-30.4689,11.9676,29.7343],[-32.327,11.3619,29.522],[-33.0167,10.6274,30.989],[-31.6311,11.2155,30.7266],[-32.327,11.3619,29.522],[-34.2793,10.5928,30.1416],[-33.0167,10.6274,30.989],[-32.327,11.3619,29.522],[-34.2793,10.5928,30.1416],[-32.327,11.3619,29.522],[-35.6434,10.2936,28.8824],[-34.2793,10.5928,30.1416],[-35.6434,10.2936,28.8824],[-35.9137,10.0276,30.2337],[-35.9137,10.0276,30.2337],[-36.1481,9.47952,31.4034],[-34.2793,10.5928,30.1416],[-35.9137,10.0276,30.2337],[-37.3917,9.404,30.3358],[-36.1481,9.47952,31.4034],[-36.1481,9.47952,31.4034],[-37.3917,9.404,30.3358],[-37.8415,8.8969,31.5184],[-37.1946,8.82416,32.0828],[-36.1481,9.47952,31.4034],[-37.8415,8.8969,31.5184],[-37.1946,8.82416,32.0828],[-37.8415,8.8969,31.5184],[-38.5265,8.19977,32.3629],[-37.1212,8.25246,32.8041],[-37.1946,8.82416,32.0828],[-38.5265,8.19977,32.3629],[-37.8415,8.8969,31.5184],[-39.0158,8.52921,31.2173],[-38.5265,8.19977,32.3629],[-38.5265,8.19977,32.3629],[-39.0158,8.52921,31.2173],[-40.0051,7.89715,31.8416],[-40.7816,7.11067,32.8894],[-38.5265,8.19977,32.3629],[-40.0051,7.89715,31.8416],[-41.2675,7.29528,31.7158],[-40.7816,7.11067,32.8894],[-40.0051,7.89715,31.8416],[-40.0051,7.89715,31.8416],[-40.2151,8.06173,30.8294],[-41.2675,7.29528,31.7158],[-41.2675,7.29528,31.7158],[-40.2151,8.06173,30.8294],[-41.3153,7.40623,30.4888],[-41.3153,7.40623,30.4888],[-42.3905,6.58294,31.3158],[-41.2675,7.29528,31.7158],[-42.3905,6.58294,31.3158],[-42.4681,6.36044,32.7386],[-41.2675,7.29528,31.7158],[-42.3905,6.58294,31.3158],[-43.481,5.67204,32.0708],[-42.4681,6.36044,32.7386],[-43.481,5.67204,32.0708],[-43.6374,5.48606,33.6815],[-42.4681,6.36044,32.7386],[-43.6374,5.48606,33.6815],[-42.9461,5.63229,34.4476],[-42.4681,6.36044,32.7386],[-42.4681,6.36044,32.7386],[-42.9461,5.63229,34.4476],[-40.7816,7.11067,32.8894],[-40.7816,7.11067,32.8894],[-42.9461,5.63229,34.4476],[-41.3532,6.21414,34.3687],[-39.9196,6.73209,34.0142],[-40.7816,7.11067,32.8894],[-41.3532,6.21414,34.3687],[-39.9196,6.73209,34.0142],[-41.3532,6.21414,34.3687],[-40.6784,5.77875,35.0486],[-39.0804,5.99725,34.763],[-39.9196,6.73209,34.0142],[-40.6784,5.77875,35.0486],[-40.117,4.79222,35.7972],[-39.0804,5.99725,34.763],[-40.6784,5.77875,35.0486],[-40.6784,5.77875,35.0486],[-41.9983,4.44346,36.4041],[-40.117,4.79222,35.7972],[-41.9983,4.44346,36.4041],[-40.6784,5.77875,35.0486],[-42.2144,5.42628,35.2862],[-42.2144,5.42628,35.2862],[-43.4636,4.5025,36.2949],[-41.9983,4.44346,36.4041],[-41.9983,4.44346,36.4041],[-43.4636,4.5025,36.2949],[-43.6817,3.78841,37.2175],[-42.7338,3.37596,37.5472],[-41.9983,4.44346,36.4041],[-43.6817,3.78841,37.2175],[-42.7338,3.37596,37.5472],[-43.6817,3.78841,37.2175],[-43.8099,3.11122,38.0274],[-42.7338,3.37596,37.5472],[-43.8099,3.11122,38.0274],[-43.2572,2.63558,38.4294],[-42.3248,2.73786,37.9302],[-42.7338,3.37596,37.5472],[-43.2572,2.63558,38.4294],[-42.3248,2.73786,37.9302],[-43.2572,2.63558,38.4294],[-42.6507,2.06743,38.6405],[-42.3248,2.73786,37.9302],[-42.6507,2.06743,38.6405],[-41.7363,2.09088,37.9395],[-42.3248,2.73786,37.9302],[-41.7363,2.09088,37.9395],[-41.233,3.40686,36.9772],[-41.7363,2.09088,37.9395],[-42.6507,2.06743,38.6405],[-42.118,1.30136,38.8449],[-41.5063,1.07072,38.1111],[-41.7363,2.09088,37.9395],[-42.118,1.30136,38.8449],[-42.118,1.30136,38.8449],[-41.6685,0.297873,39.0728],[-41.5063,1.07072,38.1111],[-41.6685,0.297873,39.0728],[-41.1589,-0.0940558,37.7358],[-41.5063,1.07072,38.1111],[-41.1589,-0.0940558,37.7358],[-40.5998,1.19187,37.0397],[-41.5063,1.07072,38.1111],[-40.5998,1.19187,37.0397],[-41.0838,1.72337,37.4909],[-41.5063,1.07072,38.1111],[-40.3955,2.50158,36.8249],[-41.0838,1.72337,37.4909],[-40.5998,1.19187,37.0397],[-40.3955,2.50158,36.8249],[-41.7363,2.09088,37.9395],[-41.0838,1.72337,37.4909],[-40.5998,1.19187,37.0397],[-41.1589,-0.0940558,37.7358],[-40.2236,0.563977,36.3854],[-40.5998,1.19187,37.0397],[-40.2236,0.563977,36.3854],[-39.4915,1.53024,36.0402],[-39.1098,2.67947,35.93],[-40.5998,1.19187,37.0397],[-39.4915,1.53024,36.0402],[-39.1606,1.00546,35.3655],[-39.4915,1.53024,36.0402],[-40.2236,0.563977,36.3854],[-40.1316,0.00513541,35.6875],[-39.1606,1.00546,35.3655],[-40.2236,0.563977,36.3854],[-40.7678,-0.299246,36.5561],[-40.1316,0.00513541,35.6875],[-40.2236,0.563977,36.3854],[-40.1316,0.00513541,35.6875],[-40.7678,-0.299246,36.5561],[-40.9259,-0.898311,35.9993],[-40.9259,-0.898311,35.9993],[-40.2998,-0.56876,34.9591],[-40.1316,0.00513541,35.6875],[-40.2998,-0.56876,34.9591],[-39.3658,0.256111,34.8081],[-40.1316,0.00513541,35.6875],[-40.2998,-0.56876,34.9591],[-39.0657,0.0381535,33.7746],[-39.3658,0.256111,34.8081],[-39.3658,0.256111,34.8081],[-39.0657,0.0381535,33.7746],[-38.2898,0.880219,34.161],[-39.3658,0.256111,34.8081],[-38.2898,0.880219,34.161],[-39.1606,1.00546,35.3655],[-38.2898,0.880219,34.161],[-38.3375,1.449,34.8588],[-39.1606,1.00546,35.3655],[-38.3375,1.449,34.8588],[-38.4854,2.10041,35.3526],[-39.1606,1.00546,35.3655],[-38.3375,1.449,34.8588],[-38.2898,0.880219,34.161],[-37.6329,1.82111,34.46],[-39.0657,0.0381535,33.7746],[-40.2998,-0.56876,34.9591],[-40.1147,-0.748129,33.4488],[-38.8093,-0.124013,32.5943],[-39.0657,0.0381535,33.7746],[-40.1147,-0.748129,33.4488],[-40.1147,-0.748129,33.4488],[-39.7178,-0.66146,32.304],[-38.8093,-0.124013,32.5943],[-38.8093,-0.124013,32.5943],[-39.7178,-0.66146,32.304],[-38.6373,-0.17697,31.2146],[-38.8093,-0.124013,32.5943],[-38.6373,-0.17697,31.2146],[-37.7523,0.351829,31.986],[-38.6373,-0.17697,31.2146],[-37.1068,0.46875,30.7542],[-37.7523,0.351829,31.986],[-37.1068,0.46875,30.7542],[-38.6373,-0.17697,31.2146],[-37.6166,0.252632,29.5031],[-35.4535,0.980528,28.9706],[-37.1068,0.46875,30.7542],[-37.6166,0.252632,29.5031],[-35.4535,0.980528,28.9706],[-37.6166,0.252632,29.5031],[-36.6609,0.654294,28.0062],[-37.6166,0.252632,29.5031],[-38.6714,0.253298,28.1875],[-36.6609,0.654294,28.0062],[-36.6609,0.654294,28.0062],[-38.6714,0.253298,28.1875],[-35.8519,1.08492,26.2808],[-36.6609,0.654294,28.0062],[-35.8519,1.08492,26.2808],[-34.641,1.27265,26.694],[-35.8519,1.08492,26.2808],[-38.6714,0.253298,28.1875],[-36.82,1.11073,25.737],[-38.6714,0.253298,28.1875],[-37.6166,0.252632,29.5031],[-39.3534,-0.315999,29.9413],[-40.1611,-0.204598,29.0525],[-38.6714,0.253298,28.1875],[-39.3534,-0.315999,29.9413],[-40.1611,-0.204598,29.0525],[-39.3534,-0.315999,29.9413],[-40.8916,-0.725467,30.469],[-40.8916,-0.725467,30.469],[-41.8481,-0.345664,29.5914],[-40.1611,-0.204598,29.0525],[-40.1611,-0.204598,29.0525],[-41.8481,-0.345664,29.5914],[-39.9519,0.566905,27.3536],[-41.5597,0.4123,28.1789],[-39.9519,0.566905,27.3536],[-41.8481,-0.345664,29.5914],[-41.8481,-0.345664,29.5914],[-42.6208,0.177876,29.1277],[-41.5597,0.4123,28.1789],[-41.5597,0.4123,28.1789],[-42.6208,0.177876,29.1277],[-42.2204,1.00129,27.9884],[-40.9748,1.13128,26.9635],[-41.5597,0.4123,28.1789],[-42.2204,1.00129,27.9884],[-42.2204,1.00129,27.9884],[-41.6064,1.92569,26.8133],[-40.9748,1.13128,26.9635],[-41.6064,1.92569,26.8133],[-40.3799,1.97667,25.7463],[-40.9748,1.13128,26.9635],[-39.7349,1.22335,26.1183],[-40.9748,1.13128,26.9635],[-40.3799,1.97667,25.7463],[-40.9748,1.13128,26.9635],[-39.7349,1.22335,26.1183],[-39.9519,0.566905,27.3536],[-40.8314,2.91502,25.6343],[-40.3799,1.97667,25.7463],[-41.6064,1.92569,26.8133],[-42.0124,2.9733,26.9058],[-40.8314,2.91502,25.6343],[-41.6064,1.92569,26.8133],[-42.0124,2.9733,26.9058],[-41.6064,1.92569,26.8133],[-42.6457,1.82693,27.8935],[-42.6457,1.82693,27.8935],[-43.7412,2.58616,29.006],[-42.0124,2.9733,26.9058],[-42.0124,2.9733,26.9058],[-43.7412,2.58616,29.006],[-42.6322,4.09119,27.7177],[-42.6322,4.09119,27.7177],[-41.8014,4.32919,26.615],[-42.0124,2.9733,26.9058],[-40.8555,4.28715,25.4909],[-42.0124,2.9733,26.9058],[-41.8014,4.32919,26.615],[-41.8014,4.32919,26.615],[-41.0108,5.25556,25.9217],[-40.8555,4.28715,25.4909],[-40.8555,4.28715,25.4909],[-41.0108,5.25556,25.9217],[-40.0713,5.2776,24.791],[-39.1763,4.72744,23.802],[-40.8555,4.28715,25.4909],[-40.0713,5.2776,24.791],[-38.9947,5.89692,23.9734],[-39.1763,4.72744,23.802],[-40.0713,5.2776,24.791],[-39.9356,6.20221,25.176],[-38.9947,5.89692,23.9734],[-40.0713,5.2776,24.791],[-38.9947,5.89692,23.9734],[-39.9356,6.20221,25.176],[-38.5944,7.15194,24.4569],[-38.9947,5.89692,23.9734],[-38.5944,7.15194,24.4569],[-37.5175,7.00435,23.2133],[-38.9947,5.89692,23.9734],[-37.5175,7.00435,23.2133],[-36.641,6.24875,22.1006],[-37.9505,4.94356,22.838],[-38.9947,5.89692,23.9734],[-36.641,6.24875,22.1006],[-36.303,5.13202,21.7684],[-37.9505,4.94356,22.838],[-36.641,6.24875,22.1006],[-35.1731,6.56677,21.2949],[-36.303,5.13202,21.7684],[-36.641,6.24875,22.1006],[-36.0189,7.45211,22.3406],[-35.1731,6.56677,21.2949],[-36.641,6.24875,22.1006],[-36.0189,7.45211,22.3406],[-34.3523,7.84694,21.5453],[-35.1731,6.56677,21.2949],[-34.3523,7.84694,21.5453],[-33.3443,7.08035,20.5619],[-35.1731,6.56677,21.2949],[-33.8064,5.53977,20.4887],[-35.1731,6.56677,21.2949],[-33.3443,7.08035,20.5619],[-32.0535,6.38798,19.8173],[-33.8064,5.53977,20.4887],[-33.3443,7.08035,20.5619],[-32.0535,6.38798,19.8173],[-33.3443,7.08035,20.5619],[-31.6073,7.62656,20.1687],[-31.6073,7.62656,20.1687],[-30.4053,7.01676,19.5589],[-32.0535,6.38798,19.8173],[-30.7083,5.77859,19.4381],[-32.0535,6.38798,19.8173],[-30.4053,7.01676,19.5589],[-28.9147,6.42742,19.2551],[-30.7083,5.77859,19.4381],[-30.4053,7.01676,19.5589],[-28.917,7.67021,19.7211],[-28.9147,6.42742,19.2551],[-30.4053,7.01676,19.5589],[-30.1606,8.02138,20.0527],[-28.917,7.67021,19.7211],[-30.4053,7.01676,19.5589],[-28.917,7.67021,19.7211],[-30.1606,8.02138,20.0527],[-29.0352,8.81419,20.6569],[-28.917,7.67021,19.7211],[-29.0352,8.81419,20.6569],[-27.2871,8.68107,20.4593],[-28.917,7.67021,19.7211],[-27.2871,8.68107,20.4593],[-25.7784,7.79649,19.9588],[-27.4591,9.6644,21.4946],[-27.2871,8.68107,20.4593],[-29.0352,8.81419,20.6569],[-29.6054,9.81228,22.0309],[-27.4591,9.6644,21.4946],[-29.0352,8.81419,20.6569],[-29.0352,8.81419,20.6569],[-30.8317,8.7012,20.8849],[-29.6054,9.81228,22.0309],[-31.8828,9.31384,22.0254],[-29.6054,9.81228,22.0309],[-30.8317,8.7012,20.8849],[-31.8828,9.31384,22.0254],[-30.8317,8.7012,20.8849],[-32.6398,8.2817,21.0772],[-31.8828,9.31384,22.0254],[-32.6398,8.2817,21.0772],[-33.5027,8.77909,22.0174],[-31.8828,9.31384,22.0254],[-33.5027,8.77909,22.0174],[-33.3848,9.52404,23.1553],[-31.1737,10.3976,23.5524],[-31.8828,9.31384,22.0254],[-33.3848,9.52404,23.1553],[-31.1737,10.3976,23.5524],[-33.3848,9.52404,23.1553],[-33.3182,10.3336,24.7527],[-31.1737,10.3976,23.5524],[-33.3182,10.3336,24.7527],[-31.2181,11.2196,25.3158],[-29.4854,11.3745,24.6389],[-31.1737,10.3976,23.5524],[-31.2181,11.2196,25.3158],[-29.7678,11.8455,26.0019],[-29.4854,11.3745,24.6389],[-31.2181,11.2196,25.3158],[-29.7678,11.8455,26.0019],[-31.2181,11.2196,25.3158],[-31.7837,11.5084,26.8152],[-28.4088,12.5687,27.5304],[-29.7678,11.8455,26.0019],[-31.7837,11.5084,26.8152],[-30.7459,11.99,28.4673],[-28.4088,12.5687,27.5304],[-31.7837,11.5084,26.8152],[-31.7837,11.5084,26.8152],[-32.4474,11.4757,28.0481],[-30.7459,11.99,28.4673],[-32.4474,11.4757,28.0481],[-32.327,11.3619,29.522],[-30.7459,11.99,28.4673],[-33.8015,11.0197,28.2408],[-32.327,11.3619,29.522],[-32.4474,11.4757,28.0481],[-33.8015,11.0197,28.2408],[-32.4474,11.4757,28.0481],[-33.3303,11.1091,27.1068],[-33.3303,11.1091,27.1068],[-35.032,10.49,27.2807],[-33.8015,11.0197,28.2408],[-33.8015,11.0197,28.2408],[-35.032,10.49,27.2807],[-35.6434,10.2936,28.8824],[-36.5436,9.93369,27.8015],[-35.6434,10.2936,28.8824],[-35.032,10.49,27.2807],[-36.3696,9.82457,26.779],[-36.5436,9.93369,27.8015],[-35.032,10.49,27.2807],[-36.3696,9.82457,26.779],[-35.032,10.49,27.2807],[-35.3616,9.98836,25.8883],[-36.3696,9.82457,26.779],[-35.3616,9.98836,25.8883],[-36.9992,9.0575,25.6505],[-36.9992,9.0575,25.6505],[-37.6911,9.2467,27.3011],[-36.3696,9.82457,26.779],[-38.7887,8.30126,26.5983],[-37.6911,9.2467,27.3011],[-36.9992,9.0575,25.6505],[-38.2512,8.03963,25.1993],[-38.7887,8.30126,26.5983],[-36.9992,9.0575,25.6505],[-36.9992,9.0575,25.6505],[-36.8795,8.14512,23.8847],[-38.2512,8.03963,25.1993],[-38.5944,7.15194,24.4569],[-38.2512,8.03963,25.1993],[-36.8795,8.14512,23.8847],[-39.585,7.25389,25.8541],[-38.2512,8.03963,25.1993],[-38.5944,7.15194,24.4569],[-35.2085,9.34456,24.2844],[-36.8795,8.14512,23.8847],[-36.9992,9.0575,25.6505],[-34.9733,8.58108,22.7768],[-36.8795,8.14512,23.8847],[-35.2085,9.34456,24.2844],[-34.9733,8.58108,22.7768],[-35.2085,9.34456,24.2844],[-33.3848,9.52404,23.1553],[-36.0189,7.45211,22.3406],[-36.8795,8.14512,23.8847],[-34.9733,8.58108,22.7768],[-36.8795,8.14512,23.8847],[-36.0189,7.45211,22.3406],[-37.5175,7.00435,23.2133],[-39.585,7.25389,25.8541],[-38.7887,8.30126,26.5983],[-38.2512,8.03963,25.1993],[-39.585,7.25389,25.8541],[-40.5529,7.27066,27.5923],[-38.7887,8.30126,26.5983],[-40.5529,7.27066,27.5923],[-39.2462,8.50899,28.3575],[-38.7887,8.30126,26.5983],[-39.2462,8.50899,28.3575],[-40.5529,7.27066,27.5923],[-41.1147,7.39933,29.2362],[-39.2462,8.50899,28.3575],[-41.1147,7.39933,29.2362],[-40.2734,8.08682,29.7518],[-39.0549,8.74239,29.8897],[-39.2462,8.50899,28.3575],[-40.2734,8.08682,29.7518],[-40.2151,8.06173,30.8294],[-39.0549,8.74239,29.8897],[-40.2734,8.08682,29.7518],[-40.2151,8.06173,30.8294],[-39.0158,8.52921,31.2173],[-39.0549,8.74239,29.8897],[-39.0158,8.52921,31.2173],[-37.3917,9.404,30.3358],[-39.0549,8.74239,29.8897],[-37.3917,9.404,30.3358],[-37.8246,9.36152,28.7542],[-39.0549,8.74239,29.8897],[-37.8246,9.36152,28.7542],[-37.3917,9.404,30.3358],[-35.6434,10.2936,28.8824],[-37.8246,9.36152,28.7542],[-39.2462,8.50899,28.3575],[-39.0549,8.74239,29.8897],[-39.2462,8.50899,28.3575],[-37.8246,9.36152,28.7542],[-37.6911,9.2467,27.3011],[-36.5436,9.93369,27.8015],[-37.6911,9.2467,27.3011],[-37.8246,9.36152,28.7542],[-41.3153,7.40623,30.4888],[-40.2734,8.08682,29.7518],[-41.1147,7.39933,29.2362],[-41.1147,7.39933,29.2362],[-42.1496,6.68241,29.9976],[-41.3153,7.40623,30.4888],[-42.1496,6.68241,29.9976],[-41.1147,7.39933,29.2362],[-41.7407,6.72051,28.8115],[-41.7407,6.72051,28.8115],[-42.6395,5.92548,29.3661],[-42.1496,6.68241,29.9976],[-42.6395,5.92548,29.3661],[-43.1811,5.80441,30.7363],[-42.1496,6.68241,29.9976],[-43.1811,5.80441,30.7363],[-42.3905,6.58294,31.3158],[-42.1496,6.68241,29.9976],[-43.5619,5.09623,30.1515],[-43.1811,5.80441,30.7363],[-42.6395,5.92548,29.3661],[-42.6395,5.92548,29.3661],[-42.7584,5.04554,28.5006],[-43.5619,5.09623,30.1515],[-42.7584,5.04554,28.5006],[-44.444,4.0194,30.7413],[-43.5619,5.09623,30.1515],[-44.2893,4.75095,31.471],[-43.5619,5.09623,30.1515],[-44.444,4.0194,30.7413],[-44.2893,4.75095,31.471],[-44.444,4.0194,30.7413],[-45.0278,3.75455,31.6315],[-44.2893,4.75095,31.471],[-45.0278,3.75455,31.6315],[-45.0725,4.14257,32.2805],[-45.0725,4.14257,32.2805],[-44.7449,4.59627,32.7126],[-44.2893,4.75095,31.471],[-43.481,5.67204,32.0708],[-44.2893,4.75095,31.471],[-44.7449,4.59627,32.7126],[-44.7449,4.59627,32.7126],[-44.9071,4.51166,34.2404],[-43.481,5.67204,32.0708],[-44.7449,4.59627,32.7126],[-45.5426,3.95247,33.7649],[-44.9071,4.51166,34.2404],[-45.5426,3.95247,33.7649],[-45.5603,3.98022,34.3809],[-44.9071,4.51166,34.2404],[-45.5603,3.98022,34.3809],[-45.3896,4.11988,34.8183],[-44.9071,4.51166,34.2404],[-44.9071,4.51166,34.2404],[-45.3896,4.11988,34.8183],[-44.9598,4.36792,35.1546],[-44.0633,4.98612,34.8214],[-44.9071,4.51166,34.2404],[-44.9598,4.36792,35.1546],[-44.9598,4.36792,35.1546],[-44.3312,4.47649,35.8552],[-44.0633,4.98612,34.8214],[-44.3312,4.47649,35.8552],[-43.4366,5.0674,35.3886],[-44.0633,4.98612,34.8214],[-43.4366,5.0674,35.3886],[-42.9461,5.63229,34.4476],[-44.0633,4.98612,34.8214],[-42.2144,5.42628,35.2862],[-42.9461,5.63229,34.4476],[-43.4366,5.0674,35.3886],[-43.4636,4.5025,36.2949],[-43.4366,5.0674,35.3886],[-44.3312,4.47649,35.8552],[-44.2969,4.0295,36.7809],[-43.4636,4.5025,36.2949],[-44.3312,4.47649,35.8552],[-44.7651,3.96449,36.6253],[-44.2969,4.0295,36.7809],[-44.3312,4.47649,35.8552],[-45.5112,3.59477,36.567],[-44.7651,3.96449,36.6253],[-44.3312,4.47649,35.8552],[-45.5112,3.59477,36.567],[-44.3312,4.47649,35.8552],[-45.3084,3.97504,35.7949],[-45.5214,3.70288,36.2905],[-45.5112,3.59477,36.567],[-45.3084,3.97504,35.7949],[-45.5214,3.70288,36.2905],[-45.3084,3.97504,35.7949],[-45.6944,3.54907,36.339],[-45.3084,3.97504,35.7949],[-45.8747,3.52796,35.8873],[-45.6944,3.54907,36.339],[-46.0151,3.25592,36.4298],[-45.6944,3.54907,36.339],[-45.8747,3.52796,35.8873],[-46.3822,3.03243,35.9771],[-46.0151,3.25592,36.4298],[-45.8747,3.52796,35.8873],[-46.3822,3.03243,35.9771],[-45.8747,3.52796,35.8873],[-46.1887,3.29791,35.6143],[-46.5068,2.96254,35.4654],[-46.3822,3.03243,35.9771],[-46.1887,3.29791,35.6143],[-46.1571,3.36647,35.2702],[-46.5068,2.96254,35.4654],[-46.1887,3.29791,35.6143],[-45.9452,3.56654,35.4318],[-46.1571,3.36647,35.2702],[-46.1887,3.29791,35.6143],[-45.8528,3.68877,34.9939],[-46.1571,3.36647,35.2702],[-45.9452,3.56654,35.4318],[-45.8528,3.68877,34.9939],[-45.9452,3.56654,35.4318],[-45.5467,3.9268,35.3119],[-45.3896,4.11988,34.8183],[-45.8528,3.68877,34.9939],[-45.5467,3.9268,35.3119],[-45.9452,3.56654,35.4318],[-45.8747,3.52796,35.8873],[-45.5467,3.9268,35.3119],[-46.2053,3.31028,34.7878],[-46.1571,3.36647,35.2702],[-45.8528,3.68877,34.9939],[-46.2053,3.31028,34.7878],[-45.8528,3.68877,34.9939],[-45.8836,3.66954,34.549],[-46.0665,3.46498,34.4606],[-46.2053,3.31028,34.7878],[-45.8836,3.66954,34.549],[-45.8628,3.67483,34.2146],[-46.0665,3.46498,34.4606],[-45.8836,3.66954,34.549],[-45.8628,3.67483,34.2146],[-45.8836,3.66954,34.549],[-45.5603,3.98022,34.3809],[-46.0665,3.46498,34.4606],[-45.8628,3.67483,34.2146],[-46.1101,3.38871,34.2186],[-46.2366,3.259,34.4723],[-46.0665,3.46498,34.4606],[-46.1101,3.38871,34.2186],[-46.2366,3.259,34.4723],[-46.1101,3.38871,34.2186],[-46.3249,3.10589,34.2562],[-46.4333,3.01513,34.5938],[-46.2366,3.259,34.4723],[-46.3249,3.10589,34.2562],[-46.4333,3.01513,34.5938],[-46.3249,3.10589,34.2562],[-46.5456,2.79351,34.3173],[-46.6712,2.69943,34.6887],[-46.4333,3.01513,34.5938],[-46.5456,2.79351,34.3173],[-46.6712,2.69943,34.6887],[-46.5456,2.79351,34.3173],[-46.7679,2.43699,34.3777],[-46.8816,2.39463,34.8239],[-46.6712,2.69943,34.6887],[-46.7679,2.43699,34.3777],[-46.7679,2.43699,34.3777],[-46.9787,2.11814,34.5992],[-46.8816,2.39463,34.8239],[-47.0932,2.0355,34.9915],[-46.8816,2.39463,34.8239],[-46.9787,2.11814,34.5992],[-47.1955,1.61157,34.6732],[-47.0932,2.0355,34.9915],[-46.9787,2.11814,34.5992],[-46.872,2.08359,34.15],[-47.1955,1.61157,34.6732],[-46.9787,2.11814,34.5992],[-47.0402,1.65597,34.2027],[-47.1955,1.61157,34.6732],[-46.872,2.08359,34.15],[-47.0402,1.65597,34.2027],[-46.872,2.08359,34.15],[-46.891,1.80404,33.9143],[-47.0402,1.65597,34.2027],[-46.891,1.80404,33.9143],[-47.0093,1.36706,33.9605],[-47.1529,1.37083,34.3165],[-47.0402,1.65597,34.2027],[-47.0093,1.36706,33.9605],[-47.0093,1.36706,33.9605],[-47.1852,0.960114,34.2367],[-47.1529,1.37083,34.3165],[-47.1852,0.960114,34.2367],[-47.2672,1.2331,34.5447],[-47.1529,1.37083,34.3165],[-47.1955,1.61157,34.6732],[-47.1529,1.37083,34.3165],[-47.2672,1.2331,34.5447],[-47.3877,1.23153,34.913],[-47.1955,1.61157,34.6732],[-47.2672,1.2331,34.5447],[-47.3566,0.974756,34.6347],[-47.3877,1.23153,34.913],[-47.2672,1.2331,34.5447],[-47.3877,1.23153,34.913],[-47.3566,0.974756,34.6347],[-47.5034,0.762305,34.9378],[-47.3877,1.23153,34.913],[-47.5034,0.762305,34.9378],[-47.6172,0.897397,35.4153],[-47.3877,1.23153,34.913],[-47.6172,0.897397,35.4153],[-47.4781,1.31216,35.3135],[-47.3168,1.62351,35.1638],[-47.3877,1.23153,34.913],[-47.4781,1.31216,35.3135],[-47.4463,1.48065,35.4454],[-47.3168,1.62351,35.1638],[-47.4781,1.31216,35.3135],[-47.4463,1.48065,35.4454],[-47.4781,1.31216,35.3135],[-47.5561,1.27432,35.6477],[-47.3791,1.68514,35.6825],[-47.4463,1.48065,35.4454],[-47.5561,1.27432,35.6477],[-47.3791,1.68514,35.6825],[-47.5561,1.27432,35.6477],[-47.513,1.47084,35.9551],[-47.3864,1.72569,35.9854],[-47.3791,1.68514,35.6825],[-47.513,1.47084,35.9551],[-47.3864,1.72569,35.9854],[-47.513,1.47084,35.9551],[-47.4452,1.62219,36.2786],[-47.2972,1.87723,36.1553],[-47.3864,1.72569,35.9854],[-47.4452,1.62219,36.2786],[-47.2507,1.915,36.5061],[-47.2972,1.87723,36.1553],[-47.4452,1.62219,36.2786],[-47.4836,1.54237,36.6763],[-47.2507,1.915,36.5061],[-47.4452,1.62219,36.2786],[-47.4836,1.54237,36.6763],[-47.4452,1.62219,36.2786],[-47.6676,1.19745,36.4246],[-47.4836,1.54237,36.6763],[-47.6676,1.19745,36.4246],[-47.6436,1.275,36.7919],[-47.4836,1.54237,36.6763],[-47.6436,1.275,36.7919],[-47.6145,1.29613,37.191],[-47.4836,1.54237,36.6763],[-47.6145,1.29613,37.191],[-47.3226,1.73008,37.1232],[-47.44,1.52309,37.4572],[-47.3226,1.73008,37.1232],[-47.6145,1.29613,37.191],[-47.5831,1.29988,37.5819],[-47.44,1.52309,37.4572],[-47.6145,1.29613,37.191],[-47.7244,1.08135,37.5136],[-47.5831,1.29988,37.5819],[-47.6145,1.29613,37.191],[-47.7244,1.08135,37.5136],[-47.6145,1.29613,37.191],[-47.8257,0.909439,37.2387],[-47.7244,1.08135,37.5136],[-47.8257,0.909439,37.2387],[-47.8895,0.753082,37.6326],[-47.6707,1.09069,37.9289],[-47.7244,1.08135,37.5136],[-47.8895,0.753082,37.6326],[-47.6707,1.09069,37.9289],[-47.8895,0.753082,37.6326],[-47.9523,0.601373,38.0593],[-47.9423,0.542367,38.6342],[-47.6707,1.09069,37.9289],[-47.9523,0.601373,38.0593],[-47.9523,0.601373,38.0593],[-48.119,0.214038,38.3511],[-47.9423,0.542367,38.6342],[-48.1184,0.0725888,39.2173],[-47.9423,0.542367,38.6342],[-48.119,0.214038,38.3511],[-48.1184,0.0725888,39.2173],[-48.119,0.214038,38.3511],[-48.4465,-0.770047,38.6449],[-48.5049,-0.762704,39.7067],[-48.1184,0.0725888,39.2173],[-48.4465,-0.770047,38.6449],[-48.6791,-1.36327,39.3829],[-48.5049,-0.762704,39.7067],[-48.4465,-0.770047,38.6449],[-48.4465,-0.770047,38.6449],[-48.6595,-1.82974,38.6436],[-48.6791,-1.36327,39.3829],[-48.8435,-2.10554,39.7583],[-48.6791,-1.36327,39.3829],[-48.6595,-1.82974,38.6436],[-48.8435,-2.10554,39.7583],[-48.6595,-1.82974,38.6436],[-48.845,-2.69239,39.2576],[-48.9315,-2.93787,40.122],[-48.8435,-2.10554,39.7583],[-48.845,-2.69239,39.2576],[-48.9315,-2.93787,40.122],[-48.845,-2.69239,39.2576],[-48.8451,-3.61339,39.6627],[-48.9315,-2.93787,40.122],[-48.8451,-3.61339,39.6627],[-48.8308,-3.84822,40.9927],[-48.9315,-2.93787,40.122],[-48.8308,-3.84822,40.9927],[-48.8584,-2.38729,40.9837],[-48.8308,-3.84822,40.9927],[-48.8119,-3.01911,42.0897],[-48.8584,-2.38729,40.9837],[-48.8584,-2.38729,40.9837],[-48.8119,-3.01911,42.0897],[-48.6366,-2.01865,42.3475],[-48.8584,-2.38729,40.9837],[-48.6366,-2.01865,42.3475],[-48.6535,-1.37959,41.2508],[-48.7319,-1.45919,40.2662],[-48.8584,-2.38729,40.9837],[-48.6535,-1.37959,41.2508],[-48.5472,-0.877677,40.5361],[-48.7319,-1.45919,40.2662],[-48.6535,-1.37959,41.2508],[-48.5472,-0.877677,40.5361],[-48.6535,-1.37959,41.2508],[-48.3127,-0.580979,41.1868],[-48.3127,-0.580979,41.1868],[-48.2894,-0.334754,40.2711],[-48.5472,-0.877677,40.5361],[-48.5472,-0.877677,40.5361],[-48.2894,-0.334754,40.2711],[-48.5049,-0.762704,39.7067],[-48.2894,-0.334754,40.2711],[-48.3127,-0.580979,41.1868],[-47.7598,0.281211,40.6864],[-48.2894,-0.334754,40.2711],[-47.7598,0.281211,40.6864],[-48.1184,0.0725888,39.2173],[-47.7598,0.281211,40.6864],[-47.4194,1.00398,39.5354],[-48.1184,0.0725888,39.2173],[-47.4194,1.00398,39.5354],[-47.7501,0.763252,38.9617],[-48.1184,0.0725888,39.2173],[-47.7501,0.763252,38.9617],[-47.4194,1.00398,39.5354],[-47.5234,1.09572,38.886],[-47.6756,0.978032,38.5574],[-47.7501,0.763252,38.9617],[-47.5234,1.09572,38.886],[-47.4177,1.32253,38.4257],[-47.6756,0.978032,38.5574],[-47.5234,1.09572,38.886],[-47.334,1.28084,38.9561],[-47.4177,1.32253,38.4257],[-47.5234,1.09572,38.886],[-47.4177,1.32253,38.4257],[-47.334,1.28084,38.9561],[-47.0828,1.56832,38.7432],[-47.1487,1.69776,38.0973],[-47.4177,1.32253,38.4257],[-47.0828,1.56832,38.7432],[-46.6943,2.00234,38.3786],[-47.1487,1.69776,38.0973],[-47.0828,1.56832,38.7432],[-46.7772,1.79284,38.8155],[-46.6943,2.00234,38.3786],[-47.0828,1.56832,38.7432],[-46.7772,1.79284,38.8155],[-47.0828,1.56832,38.7432],[-46.834,1.64201,39.1534],[-46.47,1.93092,38.9985],[-46.7772,1.79284,38.8155],[-46.834,1.64201,39.1534],[-46.47,1.93092,38.9985],[-46.834,1.64201,39.1534],[-46.5836,1.69736,39.5009],[-46.3104,1.83891,39.5273],[-46.47,1.93092,38.9985],[-46.5836,1.69736,39.5009],[-46.4155,1.55877,40.1452],[-46.3104,1.83891,39.5273],[-46.5836,1.69736,39.5009],[-46.9178,1.40695,39.6797],[-46.4155,1.55877,40.1452],[-46.5836,1.69736,39.5009],[-46.4155,1.55877,40.1452],[-46.9178,1.40695,39.6797],[-47.0463,1.01797,40.5638],[-47.0463,1.01797,40.5638],[-46.3936,1.11028,41.564],[-46.4155,1.55877,40.1452],[-46.3936,1.11028,41.564],[-45.8688,1.5464,40.8427],[-46.4155,1.55877,40.1452],[-46.4155,1.55877,40.1452],[-45.8688,1.5464,40.8427],[-45.7085,1.80672,40.2091],[-45.9774,1.85469,39.8599],[-46.4155,1.55877,40.1452],[-45.7085,1.80672,40.2091],[-45.7559,2.00697,39.6339],[-45.9774,1.85469,39.8599],[-45.7085,1.80672,40.2091],[-45.3871,1.99739,39.8732],[-45.7559,2.00697,39.6339],[-45.7085,1.80672,40.2091],[-45.2026,1.75782,40.5886],[-45.3871,1.99739,39.8732],[-45.7085,1.80672,40.2091],[-44.9296,2.012,39.9222],[-45.3871,1.99739,39.8732],[-45.2026,1.75782,40.5886],[-44.4272,1.77809,40.4387],[-44.9296,2.012,39.9222],[-45.2026,1.75782,40.5886],[-44.4272,1.77809,40.4387],[-45.2026,1.75782,40.5886],[-44.6873,1.44186,41.7133],[-44.6873,1.44186,41.7133],[-44.0211,1.49746,41.1665],[-44.4272,1.77809,40.4387],[-43.6951,1.60128,40.4119],[-44.4272,1.77809,40.4387],[-44.0211,1.49746,41.1665],[-44.0211,1.49746,41.1665],[-43.394,1.28999,41.253],[-43.6951,1.60128,40.4119],[-43.6951,1.60128,40.4119],[-43.394,1.28999,41.253],[-42.9284,1.22045,40.3927],[-42.9284,1.22045,40.3927],[-43.2344,1.65193,39.7517],[-43.6951,1.60128,40.4119],[-43.2344,1.65193,39.7517],[-43.7163,1.99249,39.5318],[-43.6951,1.60128,40.4119],[-43.7163,1.99249,39.5318],[-44.0851,1.93204,39.8782],[-43.6951,1.60128,40.4119],[-44.0851,1.93204,39.8782],[-43.7163,1.99249,39.5318],[-44.0821,2.1402,39.4442],[-44.4472,2.124,39.6023],[-44.0851,1.93204,39.8782],[-44.0821,2.1402,39.4442],[-44.3019,2.35326,39.1299],[-44.4472,2.124,39.6023],[-44.0821,2.1402,39.4442],[-43.7957,2.31358,39.0462],[-44.3019,2.35326,39.1299],[-44.0821,2.1402,39.4442],[-44.0598,2.64378,38.6437],[-44.3019,2.35326,39.1299],[-43.7957,2.31358,39.0462],[-44.0598,2.64378,38.6437],[-43.7957,2.31358,39.0462],[-43.2572,2.63558,38.4294],[-43.7957,2.31358,39.0462],[-43.2917,2.11228,39.0539],[-43.2572,2.63558,38.4294],[-43.7163,1.99249,39.5318],[-43.2917,2.11228,39.0539],[-43.7957,2.31358,39.0462],[-44.3019,2.35326,39.1299],[-44.0598,2.64378,38.6437],[-44.5454,2.56129,38.8131],[-44.8024,2.33649,39.1973],[-44.3019,2.35326,39.1299],[-44.5454,2.56129,38.8131],[-44.8024,2.33649,39.1973],[-44.5454,2.56129,38.8131],[-44.9377,2.58447,38.7311],[-45.2531,2.35837,39.058],[-44.8024,2.33649,39.1973],[-44.9377,2.58447,38.7311],[-45.3687,2.55603,38.6202],[-45.2531,2.35837,39.058],[-44.9377,2.58447,38.7311],[-45.0666,2.77645,38.3643],[-45.3687,2.55603,38.6202],[-44.9377,2.58447,38.7311],[-44.5556,2.8656,38.3491],[-45.0666,2.77645,38.3643],[-44.9377,2.58447,38.7311],[-45.0666,2.77645,38.3643],[-44.5556,2.8656,38.3491],[-44.95,3.04182,37.9982],[-45.0666,2.77645,38.3643],[-44.95,3.04182,37.9982],[-45.4768,2.78584,38.1327],[-44.95,3.04182,37.9982],[-45.3989,3.13118,37.5872],[-45.4768,2.78584,38.1327],[-45.3989,3.13118,37.5872],[-45.8056,2.83437,37.7581],[-45.4768,2.78584,38.1327],[-45.9577,2.58455,38.1037],[-45.4768,2.78584,38.1327],[-45.8056,2.83437,37.7581],[-45.9577,2.58455,38.1037],[-45.8056,2.83437,37.7581],[-46.0708,2.68929,37.7426],[-46.2616,2.494,37.9113],[-45.9577,2.58455,38.1037],[-46.0708,2.68929,37.7426],[-46.2616,2.494,37.9113],[-46.0708,2.68929,37.7426],[-46.3298,2.60851,37.5099],[-46.4935,2.38848,37.7691],[-46.2616,2.494,37.9113],[-46.3298,2.60851,37.5099],[-46.4935,2.38848,37.7691],[-46.3298,2.60851,37.5099],[-46.6791,2.36674,37.3913],[-46.6992,2.18203,37.889],[-46.4935,2.38848,37.7691],[-46.6791,2.36674,37.3913],[-46.929,2.04938,37.668],[-46.6992,2.18203,37.889],[-46.6791,2.36674,37.3913],[-47.0257,2.05352,37.2803],[-46.929,2.04938,37.668],[-46.6791,2.36674,37.3913],[-46.7958,2.374,37.0094],[-47.0257,2.05352,37.2803],[-46.6791,2.36674,37.3913],[-46.7958,2.374,37.0094],[-46.6791,2.36674,37.3913],[-46.6322,2.52554,37.0626],[-46.6655,2.57944,36.7405],[-46.7958,2.374,37.0094],[-46.6322,2.52554,37.0626],[-46.4953,2.67749,36.9718],[-46.6655,2.57944,36.7405],[-46.6322,2.52554,37.0626],[-46.4953,2.67749,36.9718],[-46.6322,2.52554,37.0626],[-46.49,2.60147,37.2093],[-46.2891,2.79053,37.1239],[-46.4953,2.67749,36.9718],[-46.49,2.60147,37.2093],[-46.3298,2.60851,37.5099],[-46.2891,2.79053,37.1239],[-46.49,2.60147,37.2093],[-46.2891,2.79053,37.1239],[-46.3298,2.60851,37.5099],[-46.0031,2.88014,37.4053],[-46.0101,3.07767,36.9215],[-46.2891,2.79053,37.1239],[-46.0031,2.88014,37.4053],[-46.0101,3.07767,36.9215],[-46.0031,2.88014,37.4053],[-45.6234,3.24297,37.1432],[-45.7245,3.38406,36.7023],[-46.0101,3.07767,36.9215],[-45.6234,3.24297,37.1432],[-45.4974,3.49815,36.8124],[-45.7245,3.38406,36.7023],[-45.6234,3.24297,37.1432],[-45.4048,3.4621,37.0004],[-45.4974,3.49815,36.8124],[-45.6234,3.24297,37.1432],[-45.4048,3.4621,37.0004],[-45.6234,3.24297,37.1432],[-45.1978,3.43057,37.2517],[-45.3026,3.61905,36.8039],[-45.4048,3.4621,37.0004],[-45.1978,3.43057,37.2517],[-45.3026,3.61905,36.8039],[-45.1978,3.43057,37.2517],[-44.7651,3.96449,36.6253],[-45.1978,3.43057,37.2517],[-44.7667,3.70462,37.1112],[-44.7651,3.96449,36.6253],[-44.7667,3.70462,37.1112],[-45.1978,3.43057,37.2517],[-44.8811,3.47085,37.4222],[-44.7667,3.70462,37.1112],[-44.8811,3.47085,37.4222],[-44.5104,3.63644,37.3213],[-44.7667,3.70462,37.1112],[-44.5104,3.63644,37.3213],[-44.2969,4.0295,36.7809],[-44.5104,3.63644,37.3213],[-43.6817,3.78841,37.2175],[-44.2969,4.0295,36.7809],[-44.5104,3.63644,37.3213],[-44.4487,3.24135,37.8611],[-43.6817,3.78841,37.2175],[-44.4487,3.24135,37.8611],[-44.5104,3.63644,37.3213],[-44.7614,3.3716,37.6248],[-44.7614,3.3716,37.6248],[-44.95,3.04182,37.9982],[-44.4487,3.24135,37.8611],[-44.7614,3.3716,37.6248],[-45.01,3.26492,37.6608],[-44.95,3.04182,37.9982],[-44.8811,3.47085,37.4222],[-45.01,3.26492,37.6608],[-44.7614,3.3716,37.6248],[-45.3989,3.13118,37.5872],[-45.01,3.26492,37.6608],[-44.8811,3.47085,37.4222],[-44.8811,3.47085,37.4222],[-44.7614,3.3716,37.6248],[-44.5104,3.63644,37.3213],[-45.3989,3.13118,37.5872],[-44.8811,3.47085,37.4222],[-45.1978,3.43057,37.2517],[-45.6234,3.24297,37.1432],[-45.3989,3.13118,37.5872],[-45.1978,3.43057,37.2517],[-45.6234,3.24297,37.1432],[-45.7044,3.03619,37.475],[-45.3989,3.13118,37.5872],[-45.4974,3.49815,36.8124],[-45.4048,3.4621,37.0004],[-45.3026,3.61905,36.8039],[-45.4974,3.49815,36.8124],[-45.3026,3.61905,36.8039],[-45.5112,3.59477,36.567],[-45.7245,3.38406,36.7023],[-45.4974,3.49815,36.8124],[-45.5112,3.59477,36.567],[-45.6944,3.54907,36.339],[-45.7245,3.38406,36.7023],[-45.5112,3.59477,36.567],[-45.7245,3.38406,36.7023],[-46.0151,3.25592,36.4298],[-46.0101,3.07767,36.9215],[-46.0151,3.25592,36.4298],[-46.3772,2.84994,36.732],[-46.0101,3.07767,36.9215],[-46.0151,3.25592,36.4298],[-46.3512,2.97784,36.3894],[-46.3772,2.84994,36.732],[-46.3772,2.84994,36.732],[-46.3512,2.97784,36.3894],[-46.582,2.74148,36.4168],[-46.6655,2.57944,36.7405],[-46.3772,2.84994,36.732],[-46.582,2.74148,36.4168],[-46.786,2.52847,36.4145],[-46.6655,2.57944,36.7405],[-46.582,2.74148,36.4168],[-46.786,2.52847,36.4145],[-46.582,2.74148,36.4168],[-46.7807,2.58454,36.041],[-46.7807,2.58454,36.041],[-46.9121,2.40055,36.3005],[-46.786,2.52847,36.4145],[-46.786,2.52847,36.4145],[-46.9121,2.40055,36.3005],[-46.9442,2.30275,36.5905],[-46.9121,2.40055,36.3005],[-47.1077,2.15069,36.1457],[-46.9442,2.30275,36.5905],[-47.1077,2.15069,36.1457],[-47.2507,1.915,36.5061],[-46.9442,2.30275,36.5905],[-47.1437,2.01155,36.8737],[-46.9442,2.30275,36.5905],[-47.2507,1.915,36.5061],[-47.1437,2.01155,36.8737],[-47.2507,1.915,36.5061],[-47.3226,1.73008,37.1232],[-47.0257,2.05352,37.2803],[-47.1437,2.01155,36.8737],[-47.3226,1.73008,37.1232],[-47.2219,1.76523,37.5713],[-47.0257,2.05352,37.2803],[-47.3226,1.73008,37.1232],[-47.1437,2.01155,36.8737],[-47.0257,2.05352,37.2803],[-46.9442,2.30275,36.5905],[-47.1077,2.15069,36.1457],[-46.9121,2.40055,36.3005],[-46.7807,2.58454,36.041],[-47.1077,2.15069,36.1457],[-46.7807,2.58454,36.041],[-47.0095,2.29881,35.7243],[-47.0095,2.29881,35.7243],[-47.2376,1.96108,35.8569],[-47.1077,2.15069,36.1457],[-47.2376,1.96108,35.8569],[-47.2972,1.87723,36.1553],[-47.1077,2.15069,36.1457],[-47.0095,2.29881,35.7243],[-47.174,2.00791,35.4452],[-47.2376,1.96108,35.8569],[-47.2376,1.96108,35.8569],[-47.174,2.00791,35.4452],[-47.3791,1.68514,35.6825],[-47.3168,1.62351,35.1638],[-47.3791,1.68514,35.6825],[-47.174,2.00791,35.4452],[-47.0932,2.0355,34.9915],[-47.3168,1.62351,35.1638],[-47.174,2.00791,35.4452],[-47.0932,2.0355,34.9915],[-47.174,2.00791,35.4452],[-46.9268,2.3981,35.2642],[-47.174,2.00791,35.4452],[-47.0095,2.29881,35.7243],[-46.9268,2.3981,35.2642],[-47.0095,2.29881,35.7243],[-46.7656,2.64153,35.5894],[-46.9268,2.3981,35.2642],[-46.7656,2.64153,35.5894],[-46.7149,2.7124,35.2627],[-46.9268,2.3981,35.2642],[-46.9268,2.3981,35.2642],[-46.7149,2.7124,35.2627],[-46.7637,2.62679,35.0096],[-46.9268,2.3981,35.2642],[-46.7637,2.62679,35.0096],[-46.8816,2.39463,34.8239],[-46.7149,2.7124,35.2627],[-46.5583,2.89572,34.9808],[-46.7637,2.62679,35.0096],[-46.5583,2.89572,34.9808],[-46.6712,2.69943,34.6887],[-46.7637,2.62679,35.0096],[-46.5583,2.89572,34.9808],[-46.7149,2.7124,35.2627],[-46.5068,2.96254,35.4654],[-46.5583,2.89572,34.9808],[-46.5068,2.96254,35.4654],[-46.2053,3.31028,34.7878],[-46.4333,3.01513,34.5938],[-46.5583,2.89572,34.9808],[-46.2053,3.31028,34.7878],[-46.5068,2.96254,35.4654],[-46.7149,2.7124,35.2627],[-46.7656,2.64153,35.5894],[-46.6188,2.81503,35.7688],[-46.5068,2.96254,35.4654],[-46.7656,2.64153,35.5894],[-46.7807,2.58454,36.041],[-46.6188,2.81503,35.7688],[-46.7656,2.64153,35.5894],[-46.3822,3.03243,35.9771],[-46.6188,2.81503,35.7688],[-46.7807,2.58454,36.041],[-46.7807,2.58454,36.041],[-46.7656,2.64153,35.5894],[-47.0095,2.29881,35.7243],[-46.3822,3.03243,35.9771],[-46.7807,2.58454,36.041],[-46.582,2.74148,36.4168],[-46.786,2.52847,36.4145],[-46.9442,2.30275,36.5905],[-46.6655,2.57944,36.7405],[-46.3512,2.97784,36.3894],[-46.3822,3.03243,35.9771],[-46.582,2.74148,36.4168],[-46.0031,2.88014,37.4053],[-45.7044,3.03619,37.475],[-45.6234,3.24297,37.1432],[-45.8056,2.83437,37.7581],[-45.7044,3.03619,37.475],[-46.0031,2.88014,37.4053],[-46.2891,2.79053,37.1239],[-46.0101,3.07767,36.9215],[-46.3772,2.84994,36.732],[-46.4953,2.67749,36.9718],[-46.2891,2.79053,37.1239],[-46.3772,2.84994,36.732],[-46.6655,2.57944,36.7405],[-46.4953,2.67749,36.9718],[-46.3772,2.84994,36.732],[-46.7958,2.374,37.0094],[-46.6655,2.57944,36.7405],[-46.9442,2.30275,36.5905],[-46.6322,2.52554,37.0626],[-46.6791,2.36674,37.3913],[-46.49,2.60147,37.2093],[-47.0257,2.05352,37.2803],[-46.7958,2.374,37.0094],[-46.9442,2.30275,36.5905],[-47.0257,2.05352,37.2803],[-47.2219,1.76523,37.5713],[-46.929,2.04938,37.668],[-46.929,2.04938,37.668],[-47.2219,1.76523,37.5713],[-47.1487,1.69776,38.0973],[-46.8763,1.9914,38.0032],[-46.929,2.04938,37.668],[-47.1487,1.69776,38.0973],[-47.2219,1.76523,37.5713],[-47.4212,1.46232,37.8397],[-47.1487,1.69776,38.0973],[-47.2219,1.76523,37.5713],[-47.44,1.52309,37.4572],[-47.4212,1.46232,37.8397],[-46.8763,1.9914,38.0032],[-46.6992,2.18203,37.889],[-46.929,2.04938,37.668],[-46.6992,2.18203,37.889],[-46.8763,1.9914,38.0032],[-46.6943,2.00234,38.3786],[-46.6992,2.18203,37.889],[-46.6943,2.00234,38.3786],[-46.4596,2.27868,38.1135],[-46.6943,2.00234,38.3786],[-46.338,2.20013,38.4963],[-46.4596,2.27868,38.1135],[-46.4596,2.27868,38.1135],[-46.338,2.20013,38.4963],[-46.2245,2.38873,38.2162],[-46.2616,2.494,37.9113],[-46.4596,2.27868,38.1135],[-46.2245,2.38873,38.2162],[-46.074,2.37654,38.432],[-46.2245,2.38873,38.2162],[-46.338,2.20013,38.4963],[-46.0517,2.20665,38.8379],[-46.074,2.37654,38.432],[-46.338,2.20013,38.4963],[-46.47,1.93092,38.9985],[-46.0517,2.20665,38.8379],[-46.338,2.20013,38.4963],[-46.0517,2.20665,38.8379],[-46.47,1.93092,38.9985],[-46.1463,2.01682,39.2284],[-45.8633,2.11406,39.2584],[-46.0517,2.20665,38.8379],[-46.1463,2.01682,39.2284],[-46.0077,1.97791,39.494],[-45.8633,2.11406,39.2584],[-46.1463,2.01682,39.2284],[-46.3104,1.83891,39.5273],[-46.0077,1.97791,39.494],[-46.1463,2.01682,39.2284],[-45.7559,2.00697,39.6339],[-45.8633,2.11406,39.2584],[-46.0077,1.97791,39.494],[-45.8633,2.11406,39.2584],[-45.7559,2.00697,39.6339],[-45.5203,2.16376,39.38],[-45.6457,2.31497,38.9445],[-45.8633,2.11406,39.2584],[-45.5203,2.16376,39.38],[-45.2531,2.35837,39.058],[-45.6457,2.31497,38.9445],[-45.5203,2.16376,39.38],[-45.184,2.17794,39.4843],[-45.2531,2.35837,39.058],[-45.5203,2.16376,39.38],[-45.184,2.17794,39.4843],[-45.5203,2.16376,39.38],[-45.3871,1.99739,39.8732],[-45.6457,2.31497,38.9445],[-46.0517,2.20665,38.8379],[-45.8633,2.11406,39.2584],[-46.0517,2.20665,38.8379],[-45.6457,2.31497,38.9445],[-45.772,2.47631,38.5103],[-45.6457,2.31497,38.9445],[-45.3687,2.55603,38.6202],[-45.772,2.47631,38.5103],[-45.4768,2.78584,38.1327],[-45.772,2.47631,38.5103],[-45.3687,2.55603,38.6202],[-46.074,2.37654,38.432],[-46.0517,2.20665,38.8379],[-45.772,2.47631,38.5103],[-45.9577,2.58455,38.1037],[-46.074,2.37654,38.432],[-45.772,2.47631,38.5103],[-46.074,2.37654,38.432],[-45.9577,2.58455,38.1037],[-46.2245,2.38873,38.2162],[-46.47,1.93092,38.9985],[-46.338,2.20013,38.4963],[-46.6943,2.00234,38.3786],[-46.4935,2.38848,37.7691],[-46.6992,2.18203,37.889],[-46.4596,2.27868,38.1135],[-46.3298,2.60851,37.5099],[-46.49,2.60147,37.2093],[-46.6791,2.36674,37.3913],[-46.2616,2.494,37.9113],[-46.4935,2.38848,37.7691],[-46.4596,2.27868,38.1135],[-46.0708,2.68929,37.7426],[-46.0031,2.88014,37.4053],[-46.3298,2.60851,37.5099],[-45.9577,2.58455,38.1037],[-46.2616,2.494,37.9113],[-46.2245,2.38873,38.2162],[-45.8056,2.83437,37.7581],[-46.0031,2.88014,37.4053],[-46.0708,2.68929,37.7426],[-45.4768,2.78584,38.1327],[-45.9577,2.58455,38.1037],[-45.772,2.47631,38.5103],[-45.3989,3.13118,37.5872],[-45.7044,3.03619,37.475],[-45.8056,2.83437,37.7581],[-44.95,3.04182,37.9982],[-45.01,3.26492,37.6608],[-45.3989,3.13118,37.5872],[-44.5556,2.8656,38.3491],[-44.4487,3.24135,37.8611],[-44.95,3.04182,37.9982],[-44.5556,2.8656,38.3491],[-43.8099,3.11122,38.0274],[-44.4487,3.24135,37.8611],[-44.0598,2.64378,38.6437],[-43.8099,3.11122,38.0274],[-44.5556,2.8656,38.3491],[-45.0666,2.77645,38.3643],[-45.4768,2.78584,38.1327],[-45.3687,2.55603,38.6202],[-45.6457,2.31497,38.9445],[-45.2531,2.35837,39.058],[-45.3687,2.55603,38.6202],[-44.8024,2.33649,39.1973],[-45.2531,2.35837,39.058],[-45.184,2.17794,39.4843],[-44.8024,2.33649,39.1973],[-45.184,2.17794,39.4843],[-44.9296,2.012,39.9222],[-44.4472,2.124,39.6023],[-44.8024,2.33649,39.1973],[-44.9296,2.012,39.9222],[-44.5556,2.8656,38.3491],[-44.9377,2.58447,38.7311],[-44.5454,2.56129,38.8131],[-44.0598,2.64378,38.6437],[-44.5556,2.8656,38.3491],[-44.5454,2.56129,38.8131],[-44.4472,2.124,39.6023],[-44.3019,2.35326,39.1299],[-44.8024,2.33649,39.1973],[-44.4472,2.124,39.6023],[-44.4272,1.77809,40.4387],[-44.0851,1.93204,39.8782],[-44.0821,2.1402,39.4442],[-43.7163,1.99249,39.5318],[-43.7957,2.31358,39.0462],[-43.7163,1.99249,39.5318],[-43.2344,1.65193,39.7517],[-43.2917,2.11228,39.0539],[-42.991,1.80449,39.2413],[-43.2917,2.11228,39.0539],[-43.2344,1.65193,39.7517],[-42.7344,1.42721,39.5325],[-42.991,1.80449,39.2413],[-43.2344,1.65193,39.7517],[-42.6507,2.06743,38.6405],[-42.991,1.80449,39.2413],[-42.7344,1.42721,39.5325],[-42.991,1.80449,39.2413],[-42.6507,2.06743,38.6405],[-43.2917,2.11228,39.0539],[-42.7344,1.42721,39.5325],[-43.2344,1.65193,39.7517],[-42.9284,1.22045,40.3927],[-42.9284,1.22045,40.3927],[-42.2988,0.870503,39.797],[-42.7344,1.42721,39.5325],[-42.118,1.30136,38.8449],[-42.7344,1.42721,39.5325],[-42.2988,0.870503,39.797],[-42.3663,0.75868,40.6419],[-42.2988,0.870503,39.797],[-42.9284,1.22045,40.3927],[-42.6997,0.951646,41.3434],[-42.3663,0.75868,40.6419],[-42.9284,1.22045,40.3927],[-42.0216,0.489319,41.3276],[-42.3663,0.75868,40.6419],[-42.6997,0.951646,41.3434],[-42.352,0.772353,42.239],[-42.0216,0.489319,41.3276],[-42.6997,0.951646,41.3434],[-42.6997,0.951646,41.3434],[-43.1148,1.09255,42.1602],[-42.352,0.772353,42.239],[-43.1148,1.09255,42.1602],[-42.7984,0.960662,43.0797],[-42.352,0.772353,42.239],[-42.352,0.772353,42.239],[-42.7984,0.960662,43.0797],[-41.9364,0.621391,43.2404],[-42.352,0.772353,42.239],[-41.9364,0.621391,43.2404],[-41.6037,0.317164,42.1796],[-41.9364,0.621391,43.2404],[-41.1472,0.152652,42.9021],[-41.6037,0.317164,42.1796],[-41.6037,0.317164,42.1796],[-41.1472,0.152652,42.9021],[-41.0011,-0.134793,42.1257],[-41.6037,0.317164,42.1796],[-41.0011,-0.134793,42.1257],[-41.2777,-0.205764,41.1884],[-41.6037,0.317164,42.1796],[-41.2777,-0.205764,41.1884],[-42.0216,0.489319,41.3276],[-41.83,0.279477,40.3252],[-42.0216,0.489319,41.3276],[-41.2777,-0.205764,41.1884],[-41.2953,-0.536683,39.9182],[-41.83,0.279477,40.3252],[-41.2777,-0.205764,41.1884],[-40.7141,-1.18673,40.6698],[-41.2953,-0.536683,39.9182],[-41.2777,-0.205764,41.1884],[-40.7141,-1.18673,40.6698],[-41.2777,-0.205764,41.1884],[-40.5698,-0.773807,41.7432],[-40.0904,-1.7111,41.4251],[-40.7141,-1.18673,40.6698],[-40.5698,-0.773807,41.7432],[-40.5698,-0.773807,41.7432],[-40.0401,-1.21132,42.4738],[-40.0904,-1.7111,41.4251],[-40.0904,-1.7111,41.4251],[-40.0401,-1.21132,42.4738],[-39.6431,-2.17625,42.1495],[-39.6431,-2.17625,42.1495],[-39.6895,-2.78787,41.1953],[-40.0904,-1.7111,41.4251],[-40.0904,-1.7111,41.4251],[-39.6895,-2.78787,41.1953],[-40.2703,-2.25407,40.3875],[-40.2703,-2.25407,40.3875],[-39.6895,-2.78787,41.1953],[-39.9558,-3.14139,40.3079],[-40.5174,-3.00085,39.4155],[-40.2703,-2.25407,40.3875],[-39.9558,-3.14139,40.3079],[-39.9558,-3.14139,40.3079],[-40.0005,-3.91773,39.9035],[-40.5174,-3.00085,39.4155],[-40.0005,-3.91773,39.9035],[-40.5712,-4.08031,39.0234],[-40.5174,-3.00085,39.4155],[-40.9806,-3.37022,38.5358],[-40.5174,-3.00085,39.4155],[-40.5712,-4.08031,39.0234],[-40.5712,-4.08031,39.0234],[-41.2959,-4.12743,38.0566],[-40.9806,-3.37022,38.5358],[-40.9806,-3.37022,38.5358],[-41.2959,-4.12743,38.0566],[-41.4212,-3.08414,37.7712],[-41.4212,-3.08414,37.7712],[-41.1047,-2.4538,38.4544],[-40.9806,-3.37022,38.5358],[-41.4212,-3.08414,37.7712],[-41.427,-2.10615,37.4532],[-41.1047,-2.4538,38.4544],[-41.2245,-1.35997,38.1559],[-41.1047,-2.4538,38.4544],[-41.427,-2.10615,37.4532],[-41.2245,-1.35997,38.1559],[-41.427,-2.10615,37.4532],[-41.2275,-1.09917,37.0412],[-41.1589,-0.0940558,37.7358],[-41.2245,-1.35997,38.1559],[-41.2275,-1.09917,37.0412],[-40.7678,-0.299246,36.5561],[-41.1589,-0.0940558,37.7358],[-41.2275,-1.09917,37.0412],[-41.1589,-0.0940558,37.7358],[-41.2821,-0.687316,38.85],[-41.2245,-1.35997,38.1559],[-40.9238,-1.65811,39.402],[-41.2245,-1.35997,38.1559],[-41.2821,-0.687316,38.85],[-41.2953,-0.536683,39.9182],[-40.9238,-1.65811,39.402],[-41.2821,-0.687316,38.85],[-41.6685,0.297873,39.0728],[-41.2953,-0.536683,39.9182],[-41.2821,-0.687316,38.85],[-41.2275,-1.09917,37.0412],[-41.427,-2.10615,37.4532],[-41.5123,-1.82375,36.4321],[-41.2275,-1.09917,37.0412],[-41.5123,-1.82375,36.4321],[-40.9259,-0.898311,35.9993],[-41.4462,-1.61439,35.3615],[-40.9259,-0.898311,35.9993],[-41.5123,-1.82375,36.4321],[-41.5123,-1.82375,36.4321],[-42.0021,-2.49311,35.9139],[-41.4462,-1.61439,35.3615],[-42.0021,-2.49311,35.9139],[-42.2712,-2.29353,34.7661],[-41.4462,-1.61439,35.3615],[-42.2712,-2.29353,34.7661],[-41.376,-1.54147,33.9507],[-41.4462,-1.61439,35.3615],[-41.4462,-1.61439,35.3615],[-41.376,-1.54147,33.9507],[-40.1147,-0.748129,33.4488],[-40.8439,-1.18882,32.7607],[-40.1147,-0.748129,33.4488],[-41.376,-1.54147,33.9507],[-41.376,-1.54147,33.9507],[-42.1445,-1.79726,33.3268],[-40.8439,-1.18882,32.7607],[-41.3755,-1.28335,32.085],[-40.8439,-1.18882,32.7607],[-42.1445,-1.79726,33.3268],[-42.6821,-1.57977,32.4298],[-41.3755,-1.28335,32.085],[-42.1445,-1.79726,33.3268],[-42.1445,-1.79726,33.3268],[-43.3066,-2.00058,33.2116],[-42.6821,-1.57977,32.4298],[-42.6821,-1.57977,32.4298],[-43.3066,-2.00058,33.2116],[-43.5495,-1.48871,32.2294],[-43.5495,-1.48871,32.2294],[-42.7389,-1.02468,31.1576],[-42.6821,-1.57977,32.4298],[-42.6821,-1.57977,32.4298],[-42.7389,-1.02468,31.1576],[-40.8916,-0.725467,30.469],[-43.5495,-1.48871,32.2294],[-43.7794,-0.739034,31.1296],[-42.7389,-1.02468,31.1576],[-43.0242,-0.475907,30.2487],[-42.7389,-1.02468,31.1576],[-43.7794,-0.739034,31.1296],[-43.0242,-0.475907,30.2487],[-43.7794,-0.739034,31.1296],[-43.7574,-0.0461139,30.2516],[-43.7574,-0.0461139,30.2516],[-42.6208,0.177876,29.1277],[-43.0242,-0.475907,30.2487],[-43.3861,0.829518,29.188],[-42.6208,0.177876,29.1277],[-43.7574,-0.0461139,30.2516],[-43.7574,-0.0461139,30.2516],[-44.2703,0.600717,30.2503],[-43.3861,0.829518,29.188],[-44.2703,0.600717,30.2503],[-44.275,1.68812,29.8217],[-43.3861,0.829518,29.188],[-43.3861,0.829518,29.188],[-44.275,1.68812,29.8217],[-42.6457,1.82693,27.8935],[-43.3861,0.829518,29.188],[-42.6457,1.82693,27.8935],[-42.2204,1.00129,27.9884],[-44.275,1.68812,29.8217],[-44.2703,0.600717,30.2503],[-45.3087,0.958784,31.2837],[-44.275,1.68812,29.8217],[-45.3087,0.958784,31.2837],[-45.1157,1.9194,30.8732],[-44.5147,2.4532,30.0255],[-44.275,1.68812,29.8217],[-45.1157,1.9194,30.8732],[-45.1157,1.9194,30.8732],[-45.1305,2.88183,31.161],[-44.5147,2.4532,30.0255],[-44.5147,2.4532,30.0255],[-45.1305,2.88183,31.161],[-43.5197,3.82535,28.953],[-44.5147,2.4532,30.0255],[-43.5197,3.82535,28.953],[-43.7412,2.58616,29.006],[-44.444,4.0194,30.7413],[-43.5197,3.82535,28.953],[-45.1305,2.88183,31.161],[-45.1305,2.88183,31.161],[-45.1157,1.9194,30.8732],[-45.6645,2.16875,31.7392],[-45.6645,2.16875,31.7392],[-45.6299,2.96747,32.0663],[-45.1305,2.88183,31.161],[-45.0278,3.75455,31.6315],[-45.1305,2.88183,31.161],[-45.6299,2.96747,32.0663],[-45.0278,3.75455,31.6315],[-45.6299,2.96747,32.0663],[-45.6367,3.51478,32.6712],[-45.6367,3.51478,32.6712],[-45.6299,2.96747,32.0663],[-45.9955,2.94114,32.774],[-45.9586,3.27983,33.1375],[-45.6367,3.51478,32.6712],[-45.9955,2.94114,32.774],[-46.2565,2.88076,33.3798],[-45.9586,3.27983,33.1375],[-45.9955,2.94114,32.774],[-46.2565,2.88076,33.3798],[-45.9955,2.94114,32.774],[-46.5524,2.45798,33.684],[-46.2565,2.88076,33.3798],[-46.5524,2.45798,33.684],[-46.4088,2.87469,33.9425],[-46.5524,2.45798,33.684],[-46.6097,2.58621,34.0598],[-46.4088,2.87469,33.9425],[-46.4088,2.87469,33.9425],[-46.6097,2.58621,34.0598],[-46.5456,2.79351,34.3173],[-46.5524,2.45798,33.684],[-46.7231,2.33971,34.0151],[-46.6097,2.58621,34.0598],[-46.6097,2.58621,34.0598],[-46.7231,2.33971,34.0151],[-46.7679,2.43699,34.3777],[-46.7231,2.33971,34.0151],[-46.872,2.08359,34.15],[-46.7679,2.43699,34.3777],[-46.872,2.08359,34.15],[-46.7231,2.33971,34.0151],[-46.7571,2.11067,33.8301],[-46.7231,2.33971,34.0151],[-46.5524,2.45798,33.684],[-46.7571,2.11067,33.8301],[-46.5753,2.06846,33.344],[-46.7571,2.11067,33.8301],[-46.5524,2.45798,33.684],[-46.343,2.40684,33.0574],[-46.5753,2.06846,33.344],[-46.5524,2.45798,33.684],[-46.5753,2.06846,33.344],[-46.343,2.40684,33.0574],[-46.3998,2.07175,32.9511],[-46.5753,2.06846,33.344],[-46.3998,2.07175,32.9511],[-46.555,1.7417,33.1257],[-46.7494,1.61447,33.4817],[-46.5753,2.06846,33.344],[-46.555,1.7417,33.1257],[-46.7494,1.61447,33.4817],[-46.555,1.7417,33.1257],[-46.6508,1.31193,33.2132],[-46.7494,1.61447,33.4817],[-46.6508,1.31193,33.2132],[-46.8535,1.31567,33.5957],[-47.0093,1.36706,33.9605],[-46.7494,1.61447,33.4817],[-46.8535,1.31567,33.5957],[-46.9553,0.975092,33.7604],[-47.0093,1.36706,33.9605],[-46.8535,1.31567,33.5957],[-46.8535,1.31567,33.5957],[-46.6508,1.31193,33.2132],[-46.9553,0.975092,33.7604],[-46.9553,0.975092,33.7604],[-46.6508,1.31193,33.2132],[-46.754,0.988842,33.3697],[-46.7909,0.664861,33.465],[-46.9553,0.975092,33.7604],[-46.754,0.988842,33.3697],[-46.5776,0.976537,33.0654],[-46.7909,0.664861,33.465],[-46.754,0.988842,33.3697],[-46.7909,0.664861,33.465],[-46.5776,0.976537,33.0654],[-46.5426,0.671655,33.0529],[-46.7909,0.664861,33.465],[-46.5426,0.671655,33.0529],[-46.6613,0.33306,33.3233],[-46.8699,0.247826,33.6723],[-46.7909,0.664861,33.465],[-46.6613,0.33306,33.3233],[-46.6403,0.00417488,33.4004],[-46.8699,0.247826,33.6723],[-46.6613,0.33306,33.3233],[-46.4274,0.0823161,33.0617],[-46.6403,0.00417488,33.4004],[-46.6613,0.33306,33.3233],[-46.4274,0.0823161,33.0617],[-46.6613,0.33306,33.3233],[-46.2785,0.541018,32.6958],[-46.2191,0.13504,32.7465],[-46.4274,0.0823161,33.0617],[-46.2785,0.541018,32.6958],[-45.9424,0.29878,32.3101],[-46.2191,0.13504,32.7465],[-46.2785,0.541018,32.6958],[-45.725,0.766633,31.856],[-45.9424,0.29878,32.3101],[-46.2785,0.541018,32.6958],[-46.2014,0.951497,32.4809],[-45.725,0.766633,31.856],[-46.2785,0.541018,32.6958],[-46.2014,0.951497,32.4809],[-46.2785,0.541018,32.6958],[-46.4024,0.865768,32.7951],[-46.3853,1.20874,32.7385],[-46.2014,0.951497,32.4809],[-46.4024,0.865768,32.7951],[-46.5776,0.976537,33.0654],[-46.3853,1.20874,32.7385],[-46.4024,0.865768,32.7951],[-46.3853,1.20874,32.7385],[-46.5776,0.976537,33.0654],[-46.6508,1.31193,33.2132],[-46.6508,1.31193,33.2132],[-46.3081,1.68933,32.661],[-46.3853,1.20874,32.7385],[-46.0737,1.47933,32.2474],[-46.3853,1.20874,32.7385],[-46.3081,1.68933,32.661],[-45.6645,2.16875,31.7392],[-46.0737,1.47933,32.2474],[-46.3081,1.68933,32.661],[-45.6645,2.16875,31.7392],[-46.3081,1.68933,32.661],[-46.3998,2.07175,32.9511],[-46.0528,2.49276,32.5155],[-45.6645,2.16875,31.7392],[-46.3998,2.07175,32.9511],[-45.6645,2.16875,31.7392],[-45.6002,1.45189,31.5568],[-46.0737,1.47933,32.2474],[-45.6002,1.45189,31.5568],[-46.2014,0.951497,32.4809],[-46.0737,1.47933,32.2474],[-46.2014,0.951497,32.4809],[-46.3853,1.20874,32.7385],[-46.0737,1.47933,32.2474],[-46.4024,0.865768,32.7951],[-46.2785,0.541018,32.6958],[-46.5426,0.671655,33.0529],[-45.725,0.766633,31.856],[-46.2014,0.951497,32.4809],[-45.6002,1.45189,31.5568],[-45.3087,0.958784,31.2837],[-45.725,0.766633,31.856],[-45.6002,1.45189,31.5568],[-45.5053,0.281345,31.8127],[-45.725,0.766633,31.856],[-45.3087,0.958784,31.2837],[-45.9424,0.29878,32.3101],[-45.725,0.766633,31.856],[-45.5053,0.281345,31.8127],[-45.9424,0.29878,32.3101],[-45.5053,0.281345,31.8127],[-45.9309,-0.210657,32.5717],[-45.9424,0.29878,32.3101],[-45.9309,-0.210657,32.5717],[-46.0853,0.0142969,32.6175],[-46.2311,-0.130325,32.891],[-46.0853,0.0142969,32.6175],[-45.9309,-0.210657,32.5717],[-46.0463,-0.455627,32.8655],[-46.2311,-0.130325,32.891],[-45.9309,-0.210657,32.5717],[-45.6912,-0.631999,32.6242],[-46.0463,-0.455627,32.8655],[-45.9309,-0.210657,32.5717],[-46.0463,-0.455627,32.8655],[-45.6912,-0.631999,32.6242],[-45.9276,-0.778127,32.9516],[-46.0463,-0.455627,32.8655],[-45.9276,-0.778127,32.9516],[-46.3049,-0.760452,33.3718],[-46.3303,-0.374653,33.1577],[-46.0463,-0.455627,32.8655],[-46.3049,-0.760452,33.3718],[-46.6083,-0.394685,33.5355],[-46.3303,-0.374653,33.1577],[-46.3049,-0.760452,33.3718],[-46.6083,-0.394685,33.5355],[-46.3049,-0.760452,33.3718],[-46.5832,-0.760828,33.6972],[-46.7778,-0.629996,33.8691],[-46.6083,-0.394685,33.5355],[-46.5832,-0.760828,33.6972],[-46.7778,-0.629996,33.8691],[-46.5832,-0.760828,33.6972],[-46.7349,-0.940538,33.9914],[-46.9913,-0.684327,34.1882],[-46.7778,-0.629996,33.8691],[-46.7349,-0.940538,33.9914],[-46.9913,-0.684327,34.1882],[-46.7349,-0.940538,33.9914],[-46.9549,-1.11839,34.3684],[-47.2338,-0.878308,34.6142],[-46.9913,-0.684327,34.1882],[-46.9549,-1.11839,34.3684],[-47.2338,-0.878308,34.6142],[-46.9549,-1.11839,34.3684],[-47.1715,-1.16628,34.6608],[-47.1715,-1.16628,34.6608],[-47.3337,-1.19456,34.9096],[-47.2338,-0.878308,34.6142],[-47.3337,-1.19456,34.9096],[-47.4625,-0.856908,34.9583],[-47.2338,-0.878308,34.6142],[-47.3638,-0.542407,34.6743],[-47.2338,-0.878308,34.6142],[-47.4625,-0.856908,34.9583],[-47.4901,-0.571098,34.8906],[-47.3638,-0.542407,34.6743],[-47.4625,-0.856908,34.9583],[-47.4901,-0.571098,34.8906],[-47.4625,-0.856908,34.9583],[-47.6151,-0.486998,35.1241],[-47.4901,-0.571098,34.8906],[-47.6151,-0.486998,35.1241],[-47.4779,-0.388129,34.819],[-47.6151,-0.486998,35.1241],[-47.5494,-0.167296,34.9231],[-47.4779,-0.388129,34.819],[-47.5494,-0.167296,34.9231],[-47.3864,-0.203816,34.6261],[-47.4779,-0.388129,34.819],[-47.4779,-0.388129,34.819],[-47.3864,-0.203816,34.6261],[-47.3638,-0.542407,34.6743],[-47.1559,-0.329142,34.2854],[-47.3638,-0.542407,34.6743],[-47.3864,-0.203816,34.6261],[-47.1559,-0.329142,34.2854],[-47.3864,-0.203816,34.6261],[-47.2364,0.0543142,34.3182],[-47.0233,-0.0367939,33.9852],[-47.1559,-0.329142,34.2854],[-47.2364,0.0543142,34.3182],[-47.0883,0.263273,34.0234],[-47.0233,-0.0367939,33.9852],[-47.2364,0.0543142,34.3182],[-47.2394,0.455702,34.2874],[-47.0883,0.263273,34.0234],[-47.2364,0.0543142,34.3182],[-47.4519,0.174338,34.7047],[-47.2394,0.455702,34.2874],[-47.2364,0.0543142,34.3182],[-47.2394,0.455702,34.2874],[-47.4519,0.174338,34.7047],[-47.3755,0.685136,34.585],[-47.1852,0.960114,34.2367],[-47.2394,0.455702,34.2874],[-47.3755,0.685136,34.585],[-47.3566,0.974756,34.6347],[-47.1852,0.960114,34.2367],[-47.3755,0.685136,34.585],[-47.0289,0.597067,33.8945],[-47.2394,0.455702,34.2874],[-47.1852,0.960114,34.2367],[-47.0289,0.597067,33.8945],[-47.1852,0.960114,34.2367],[-46.9553,0.975092,33.7604],[-47.4519,0.174338,34.7047],[-47.4919,0.481967,34.8034],[-47.3755,0.685136,34.585],[-47.4919,0.481967,34.8034],[-47.5034,0.762305,34.9378],[-47.3755,0.685136,34.585],[-47.5034,0.762305,34.9378],[-47.4919,0.481967,34.8034],[-47.586,0.314835,35.0003],[-47.6625,0.487684,35.2777],[-47.5034,0.762305,34.9378],[-47.586,0.314835,35.0003],[-47.6867,0.153359,35.2343],[-47.6625,0.487684,35.2777],[-47.586,0.314835,35.0003],[-47.6053,0.062498,35.0198],[-47.6867,0.153359,35.2343],[-47.586,0.314835,35.0003],[-47.4519,0.174338,34.7047],[-47.6053,0.062498,35.0198],[-47.586,0.314835,35.0003],[-47.5494,-0.167296,34.9231],[-47.6053,0.062498,35.0198],[-47.4519,0.174338,34.7047],[-47.6898,-0.160942,35.2452],[-47.6053,0.062498,35.0198],[-47.5494,-0.167296,34.9231],[-47.6053,0.062498,35.0198],[-47.6898,-0.160942,35.2452],[-47.6867,0.153359,35.2343],[-47.6898,-0.160942,35.2452],[-47.8148,0.0368927,35.6355],[-47.6867,0.153359,35.2343],[-47.8148,0.0368927,35.6355],[-47.6898,-0.160942,35.2452],[-47.7832,-0.561271,35.5402],[-47.8148,0.0368927,35.6355],[-47.7832,-0.561271,35.5402],[-47.9591,-0.394588,36.0116],[-47.939,0.0821074,36.0716],[-47.8148,0.0368927,35.6355],[-47.9591,-0.394588,36.0116],[-48.0712,-0.260412,36.4245],[-47.939,0.0821074,36.0716],[-47.9591,-0.394588,36.0116],[-48.0712,-0.260412,36.4245],[-47.9591,-0.394588,36.0116],[-48.1171,-0.703955,36.4586],[-48.1705,-0.410318,36.7552],[-48.0712,-0.260412,36.4245],[-48.1171,-0.703955,36.4586],[-48.2529,-0.765696,36.913],[-48.1705,-0.410318,36.7552],[-48.1171,-0.703955,36.4586],[-48.294,-1.19659,36.9743],[-48.2529,-0.765696,36.913],[-48.1171,-0.703955,36.4586],[-48.294,-1.19659,36.9743],[-48.1171,-0.703955,36.4586],[-48.1131,-1.38036,36.4234],[-48.4347,-1.82944,37.5458],[-48.294,-1.19659,36.9743],[-48.1131,-1.38036,36.4234],[-48.1632,-1.95792,36.6932],[-48.4347,-1.82944,37.5458],[-48.1131,-1.38036,36.4234],[-48.1131,-1.38036,36.4234],[-47.9706,-1.69401,36.1736],[-48.1632,-1.95792,36.6932],[-47.9465,-2.28899,36.358],[-48.1632,-1.95792,36.6932],[-47.9706,-1.69401,36.1736],[-47.7916,-2.00862,35.9638],[-47.9465,-2.28899,36.358],[-47.9706,-1.69401,36.1736],[-47.7309,-1.62062,35.7301],[-47.7916,-2.00862,35.9638],[-47.9706,-1.69401,36.1736],[-47.8947,-1.33618,35.9186],[-47.7309,-1.62062,35.7301],[-47.9706,-1.69401,36.1736],[-48.0125,-1.2897,36.1478],[-47.8947,-1.33618,35.9186],[-47.9706,-1.69401,36.1736],[-48.0125,-1.2897,36.1478],[-47.9398,-0.95284,35.9523],[-47.8947,-1.33618,35.9186],[-47.7355,-1.1052,35.5625],[-47.8947,-1.33618,35.9186],[-47.9398,-0.95284,35.9523],[-47.7832,-0.561271,35.5402],[-47.7355,-1.1052,35.5625],[-47.9398,-0.95284,35.9523],[-47.7832,-0.561271,35.5402],[-47.6352,-0.830397,35.2664],[-47.7355,-1.1052,35.5625],[-47.7355,-1.1052,35.5625],[-47.6352,-0.830397,35.2664],[-47.5228,-1.10856,35.1708],[-47.7355,-1.1052,35.5625],[-47.5228,-1.10856,35.1708],[-47.3884,-1.52096,35.1698],[-47.7309,-1.62062,35.7301],[-47.7355,-1.1052,35.5625],[-47.3884,-1.52096,35.1698],[-47.5233,-2.09176,35.6215],[-47.7309,-1.62062,35.7301],[-47.3884,-1.52096,35.1698],[-47.2876,-1.92981,35.2402],[-47.5233,-2.09176,35.6215],[-47.3884,-1.52096,35.1698],[-47.2876,-1.92981,35.2402],[-47.3884,-1.52096,35.1698],[-47.0717,-1.75467,34.8878],[-47.2876,-1.92981,35.2402],[-47.0717,-1.75467,34.8878],[-47.1512,-2.37393,35.3374],[-47.0717,-1.75467,34.8878],[-46.8959,-2.10036,34.9036],[-47.1512,-2.37393,35.3374],[-46.8959,-2.10036,34.9036],[-46.7519,-2.39181,34.963],[-47.1512,-2.37393,35.3374],[-46.7519,-2.39181,34.963],[-46.8396,-2.69104,35.2346],[-47.1512,-2.37393,35.3374],[-46.8396,-2.69104,35.2346],[-47.2505,-2.83908,35.7023],[-47.1512,-2.37393,35.3374],[-47.2505,-2.83908,35.7023],[-47.4784,-2.55081,35.7851],[-47.1512,-2.37393,35.3374],[-47.4784,-2.55081,35.7851],[-47.5233,-2.09176,35.6215],[-47.1512,-2.37393,35.3374],[-47.5233,-2.09176,35.6215],[-47.4784,-2.55081,35.7851],[-47.6993,-2.39533,35.9912],[-47.5233,-2.09176,35.6215],[-47.6993,-2.39533,35.9912],[-47.7916,-2.00862,35.9638],[-47.6993,-2.39533,35.9912],[-47.4784,-2.55081,35.7851],[-47.6926,-3.0665,36.3679],[-47.6993,-2.39533,35.9912],[-47.6926,-3.0665,36.3679],[-47.9465,-2.28899,36.358],[-47.9465,-2.28899,36.358],[-47.6926,-3.0665,36.3679],[-48.2021,-2.66192,37.0829],[-47.6926,-3.0665,36.3679],[-48.1453,-3.90072,37.5481],[-48.2021,-2.66192,37.0829],[-48.5688,-2.91882,38.2175],[-48.2021,-2.66192,37.0829],[-48.1453,-3.90072,37.5481],[-48.1453,-3.90072,37.5481],[-48.5715,-4.23111,38.7653],[-48.5688,-2.91882,38.2175],[-48.8451,-3.61339,39.6627],[-48.5688,-2.91882,38.2175],[-48.5715,-4.23111,38.7653],[-48.8451,-3.61339,39.6627],[-48.5715,-4.23111,38.7653],[-48.7073,-4.65688,39.9208],[-48.4167,-5.24647,39.1343],[-48.7073,-4.65688,39.9208],[-48.5715,-4.23111,38.7653],[-48.5715,-4.23111,38.7653],[-48.2547,-4.86813,38.2761],[-48.4167,-5.24647,39.1343],[-48.4167,-5.24647,39.1343],[-48.2547,-4.86813,38.2761],[-47.9699,-5.70589,38.4864],[-48.0559,-6.136,39.4239],[-48.4167,-5.24647,39.1343],[-47.9699,-5.70589,38.4864],[-47.5378,-6.51745,38.7551],[-48.0559,-6.136,39.4239],[-47.9699,-5.70589,38.4864],[-47.3501,-6.05752,37.9142],[-47.5378,-6.51745,38.7551],[-47.9699,-5.70589,38.4864],[-47.3501,-6.05752,37.9142],[-47.9699,-5.70589,38.4864],[-47.7794,-5.07742,37.6392],[-47.3501,-6.05752,37.9142],[-47.7794,-5.07742,37.6392],[-47.0401,-5.37223,37.0331],[-47.0401,-5.37223,37.0331],[-46.6118,-6.35035,37.4916],[-47.3501,-6.05752,37.9142],[-47.3501,-6.05752,37.9142],[-46.6118,-6.35035,37.4916],[-46.822,-6.9499,38.3966],[-46.822,-6.9499,38.3966],[-46.6118,-6.35035,37.4916],[-45.9888,-7.12483,37.9276],[-45.9754,-7.75109,38.8473],[-46.822,-6.9499,38.3966],[-45.9888,-7.12483,37.9276],[-45.3386,-7.67722,38.3343],[-45.9754,-7.75109,38.8473],[-45.9888,-7.12483,37.9276],[-45.3386,-7.67722,38.3343],[-45.9888,-7.12483,37.9276],[-45.0749,-7.07289,37.6028],[-44.4458,-7.83291,38.4099],[-45.3386,-7.67722,38.3343],[-45.0749,-7.07289,37.6028],[-45.0749,-7.07289,37.6028],[-44.2158,-7.13945,37.6838],[-44.4458,-7.83291,38.4099],[-44.4458,-7.83291,38.4099],[-44.2158,-7.13945,37.6838],[-43.5205,-7.55753,38.2341],[-44.4458,-7.83291,38.4099],[-43.5205,-7.55753,38.2341],[-43.6531,-8.17973,38.8351],[-44.4458,-7.83291,38.4099],[-43.6531,-8.17973,38.8351],[-44.1131,-8.5063,39.3482],[-44.4458,-7.83291,38.4099],[-44.1131,-8.5063,39.3482],[-45.0698,-8.24208,39.1674],[-44.6682,-8.83257,40.3958],[-45.0698,-8.24208,39.1674],[-44.1131,-8.5063,39.3482],[-44.6682,-8.83257,40.3958],[-44.1131,-8.5063,39.3482],[-43.484,-8.91497,40.1014],[-44.6682,-8.83257,40.3958],[-43.484,-8.91497,40.1014],[-43.5645,-9.24181,41.0561],[-44.3387,-9.19186,41.6693],[-44.6682,-8.83257,40.3958],[-43.5645,-9.24181,41.0561],[-43.5645,-9.24181,41.0561],[-43.4507,-9.40299,42.0474],[-44.3387,-9.19186,41.6693],[-44.0777,-9.23944,42.6709],[-44.3387,-9.19186,41.6693],[-43.4507,-9.40299,42.0474],[-43.4507,-9.40299,42.0474],[-43.3413,-9.34797,42.8449],[-44.0777,-9.23944,42.6709],[-43.7254,-9.02112,43.6039],[-44.0777,-9.23944,42.6709],[-43.3413,-9.34797,42.8449],[-43.3413,-9.34797,42.8449],[-42.6654,-9.12487,43.341],[-43.7254,-9.02112,43.6039],[-43.0414,-8.68672,44.2931],[-43.7254,-9.02112,43.6039],[-42.6654,-9.12487,43.341],[-43.0414,-8.68672,44.2931],[-42.6654,-9.12487,43.341],[-42.161,-8.64594,44.1358],[-42.5122,-8.05969,44.9696],[-43.0414,-8.68672,44.2931],[-42.161,-8.64594,44.1358],[-41.7216,-8.12827,44.6075],[-42.5122,-8.05969,44.9696],[-42.161,-8.64594,44.1358],[-42.161,-8.64594,44.1358],[-41.35,-8.38138,43.9428],[-41.7216,-8.12827,44.6075],[-41.7216,-8.12827,44.6075],[-41.35,-8.38138,43.9428],[-41.1374,-7.78239,44.5046],[-41.7216,-8.12827,44.6075],[-41.1374,-7.78239,44.5046],[-41.6503,-7.3605,45.2267],[-41.1374,-7.78239,44.5046],[-40.7404,-6.99714,44.7872],[-41.6503,-7.3605,45.2267],[-41.6503,-7.3605,45.2267],[-40.7404,-6.99714,44.7872],[-41.1652,-6.42104,45.5861],[-42.0503,-6.4359,46.0373],[-41.6503,-7.3605,45.2267],[-41.1652,-6.42104,45.5861],[-41.1652,-6.42104,45.5861],[-41.42,-5.77581,46.1435],[-42.0503,-6.4359,46.0373],[-41.7368,-5.00928,46.5945],[-42.0503,-6.4359,46.0373],[-41.42,-5.77581,46.1435],[-40.9481,-5.07529,46.0971],[-41.7368,-5.00928,46.5945],[-41.42,-5.77581,46.1435],[-41.7368,-5.00928,46.5945],[-40.9481,-5.07529,46.0971],[-41.1946,-4.30661,46.4932],[-41.8607,-3.99849,46.9083],[-41.7368,-5.00928,46.5945],[-41.1946,-4.30661,46.4932],[-41.1946,-4.30661,46.4932],[-41.2031,-3.23524,46.5594],[-41.8607,-3.99849,46.9083],[-41.8607,-3.99849,46.9083],[-41.2031,-3.23524,46.5594],[-42.1406,-2.98027,47.0937],[-41.8607,-3.99849,46.9083],[-42.1406,-2.98027,47.0937],[-42.7894,-3.7512,47.249],[-41.8607,-3.99849,46.9083],[-42.7894,-3.7512,47.249],[-42.4141,-4.59762,47.0084],[-43.0314,-4.63792,47.1458],[-42.4141,-4.59762,47.0084],[-42.7894,-3.7512,47.249],[-43.6473,-4.22564,47.2681],[-43.0314,-4.63792,47.1458],[-42.7894,-3.7512,47.249],[-43.6893,-3.005,47.3577],[-43.6473,-4.22564,47.2681],[-42.7894,-3.7512,47.249],[-43.6893,-3.005,47.3577],[-42.7894,-3.7512,47.249],[-42.8934,-2.79687,47.3353],[-43.3323,-2.23077,47.3142],[-43.6893,-3.005,47.3577],[-42.8934,-2.79687,47.3353],[-42.6003,-2.09596,47.1656],[-43.3323,-2.23077,47.3142],[-42.8934,-2.79687,47.3353],[-42.6003,-2.09596,47.1656],[-42.8934,-2.79687,47.3353],[-42.1406,-2.98027,47.0937],[-42.6003,-2.09596,47.1656],[-42.1406,-2.98027,47.0937],[-41.7432,-2.1053,46.7834],[-41.7432,-2.1053,46.7834],[-42.3549,-1.29072,46.8473],[-42.6003,-2.09596,47.1656],[-42.3549,-1.29072,46.8473],[-43.284,-1.37463,47.0422],[-42.6003,-2.09596,47.1656],[-42.8275,-0.753016,46.7577],[-43.284,-1.37463,47.0422],[-42.3549,-1.29072,46.8473],[-42.8275,-0.753016,46.7577],[-42.3549,-1.29072,46.8473],[-42.2914,-0.639195,46.5106],[-42.8275,-0.753016,46.7577],[-42.2914,-0.639195,46.5106],[-42.819,-0.22335,46.3415],[-43.4702,-0.536555,46.6251],[-42.8275,-0.753016,46.7577],[-42.819,-0.22335,46.3415],[-43.4702,-0.536555,46.6251],[-42.819,-0.22335,46.3415],[-43.4728,0.022436,46.1176],[-44.2047,-0.236069,46.2148],[-43.4702,-0.536555,46.6251],[-43.4728,0.022436,46.1176],[-44.2047,-0.236069,46.2148],[-43.4728,0.022436,46.1176],[-43.9625,0.435411,45.359],[-44.2047,-0.236069,46.2148],[-43.9625,0.435411,45.359],[-44.8996,0.0291477,45.6789],[-44.8996,0.0291477,45.6789],[-45.1265,-0.73252,46.2798],[-44.2047,-0.236069,46.2148],[-44.2047,-0.236069,46.2148],[-45.1265,-0.73252,46.2798],[-44.2207,-1.01652,46.7815],[-45.1265,-0.73252,46.2798],[-44.9132,-1.46334,46.8345],[-44.2207,-1.01652,46.7815],[-44.2207,-1.01652,46.7815],[-44.9132,-1.46334,46.8345],[-44.2106,-2.01728,47.1689],[-43.284,-1.37463,47.0422],[-44.2207,-1.01652,46.7815],[-44.2106,-2.01728,47.1689],[-43.284,-1.37463,47.0422],[-44.2106,-2.01728,47.1689],[-43.3323,-2.23077,47.3142],[-44.2207,-1.01652,46.7815],[-43.284,-1.37463,47.0422],[-43.4702,-0.536555,46.6251],[-45.2121,-2.18004,46.9722],[-44.2106,-2.01728,47.1689],[-44.9132,-1.46334,46.8345],[-45.2121,-2.18004,46.9722],[-44.9132,-1.46334,46.8345],[-45.6601,-1.5278,46.5175],[-45.9898,-2.27432,46.6221],[-45.2121,-2.18004,46.9722],[-45.6601,-1.5278,46.5175],[-45.6601,-1.5278,46.5175],[-46.3245,-1.7331,46.1769],[-45.9898,-2.27432,46.6221],[-46.3245,-1.7331,46.1769],[-46.5843,-2.29982,46.1658],[-45.9898,-2.27432,46.6221],[-46.3068,-3.11246,46.4722],[-45.9898,-2.27432,46.6221],[-46.5843,-2.29982,46.1658],[-46.5843,-2.29982,46.1658],[-47.0501,-2.75036,45.7579],[-46.3068,-3.11246,46.4722],[-46.9091,-3.72156,45.9171],[-46.3068,-3.11246,46.4722],[-47.0501,-2.75036,45.7579],[-47.0501,-2.75036,45.7579],[-47.5781,-3.36505,45.1506],[-46.9091,-3.72156,45.9171],[-47.2854,-4.24965,45.3922],[-46.9091,-3.72156,45.9171],[-47.5781,-3.36505,45.1506],[-47.5781,-3.36505,45.1506],[-47.7942,-4.28642,44.618],[-47.2854,-4.24965,45.3922],[-47.1524,-5.16283,45.1024],[-47.2854,-4.24965,45.3922],[-47.7942,-4.28642,44.618],[-47.7942,-4.28642,44.618],[-47.8029,-5.15809,44.0713],[-47.1524,-5.16283,45.1024],[-47.1627,-6.06463,44.3377],[-47.1524,-5.16283,45.1024],[-47.8029,-5.15809,44.0713],[-47.1627,-6.06463,44.3377],[-47.8029,-5.15809,44.0713],[-47.7666,-6.02464,43.0612],[-47.1627,-6.06463,44.3377],[-47.7666,-6.02464,43.0612],[-47.0061,-6.79651,43.7448],[-46.4256,-6.88103,44.5365],[-47.1627,-6.06463,44.3377],[-47.0061,-6.79651,43.7448],[-46.4256,-6.88103,44.5365],[-47.0061,-6.79651,43.7448],[-46.3655,-7.51814,43.7468],[-45.5775,-7.67469,44.4987],[-46.4256,-6.88103,44.5365],[-46.3655,-7.51814,43.7468],[-45.5775,-7.67469,44.4987],[-46.3655,-7.51814,43.7468],[-45.7537,-8.10668,43.6838],[-45.092,-8.40981,43.9167],[-45.5775,-7.67469,44.4987],[-45.7537,-8.10668,43.6838],[-45.4161,-8.56656,43.1129],[-45.092,-8.40981,43.9167],[-45.7537,-8.10668,43.6838],[-45.4161,-8.56656,43.1129],[-45.7537,-8.10668,43.6838],[-46.1867,-8.04859,42.9581],[-45.4161,-8.56656,43.1129],[-46.1867,-8.04859,42.9581],[-45.7722,-8.53319,42.2176],[-44.9332,-8.96816,42.4215],[-45.4161,-8.56656,43.1129],[-45.7722,-8.53319,42.2176],[-44.9332,-8.96816,42.4215],[-45.7722,-8.53319,42.2176],[-45.2578,-8.84131,41.4414],[-45.2578,-8.84131,41.4414],[-44.3387,-9.19186,41.6693],[-44.9332,-8.96816,42.4215],[-45.2578,-8.84131,41.4414],[-45.7722,-8.53319,42.2176],[-46.0985,-8.38042,41.28],[-45.6271,-8.60841,40.6713],[-45.2578,-8.84131,41.4414],[-46.0985,-8.38042,41.28],[-46.0985,-8.38042,41.28],[-46.2424,-8.22334,40.469],[-45.6271,-8.60841,40.6713],[-45.6271,-8.60841,40.6713],[-46.2424,-8.22334,40.469],[-45.7327,-8.31911,39.8514],[-45.7327,-8.31911,39.8514],[-44.6682,-8.83257,40.3958],[-45.6271,-8.60841,40.6713],[-45.7327,-8.31911,39.8514],[-46.2424,-8.22334,40.469],[-46.6539,-7.70819,39.7369],[-46.6539,-7.70819,39.7369],[-45.9754,-7.75109,38.8473],[-45.7327,-8.31911,39.8514],[-45.0698,-8.24208,39.1674],[-45.7327,-8.31911,39.8514],[-45.9754,-7.75109,38.8473],[-46.6539,-7.70819,39.7369],[-46.2424,-8.22334,40.469],[-46.9118,-7.69018,40.896],[-47.5014,-6.99632,39.9723],[-46.6539,-7.70819,39.7369],[-46.9118,-7.69018,40.896],[-47.5014,-6.99632,39.9723],[-46.9118,-7.69018,40.896],[-47.7528,-6.78186,41.0769],[-47.5014,-6.99632,39.9723],[-47.7528,-6.78186,41.0769],[-48.0734,-6.36282,40.2622],[-48.0734,-6.36282,40.2622],[-48.0559,-6.136,39.4239],[-47.5014,-6.99632,39.9723],[-48.4348,-5.64412,40.0748],[-48.0559,-6.136,39.4239],[-48.0734,-6.36282,40.2622],[-48.2772,-6.03634,40.8132],[-48.4348,-5.64412,40.0748],[-48.0734,-6.36282,40.2622],[-48.4348,-5.64412,40.0748],[-48.2772,-6.03634,40.8132],[-48.5735,-5.22217,40.9571],[-48.4348,-5.64412,40.0748],[-48.5735,-5.22217,40.9571],[-48.7073,-4.65688,39.9208],[-48.5735,-5.22217,40.9571],[-48.8308,-3.84822,40.9927],[-48.7073,-4.65688,39.9208],[-48.8308,-3.84822,40.9927],[-48.5735,-5.22217,40.9571],[-48.4543,-5.00396,42.1759],[-48.8308,-3.84822,40.9927],[-48.4543,-5.00396,42.1759],[-48.5818,-3.92724,42.912],[-48.2611,-4.90947,43.2425],[-48.5818,-3.92724,42.912],[-48.4543,-5.00396,42.1759],[-48.4543,-5.00396,42.1759],[-47.7666,-6.02464,43.0612],[-48.2611,-4.90947,43.2425],[-48.162,-5.9973,41.7171],[-47.7666,-6.02464,43.0612],[-48.4543,-5.00396,42.1759],[-48.162,-5.9973,41.7171],[-47.6566,-6.72442,42.1094],[-47.7666,-6.02464,43.0612],[-47.0265,-7.24549,42.8076],[-47.7666,-6.02464,43.0612],[-47.6566,-6.72442,42.1094],[-47.0265,-7.24549,42.8076],[-47.6566,-6.72442,42.1094],[-47.2411,-7.32899,41.7914],[-47.2411,-7.32899,41.7914],[-46.5803,-7.93389,42.0026],[-47.0265,-7.24549,42.8076],[-47.0265,-7.24549,42.8076],[-46.5803,-7.93389,42.0026],[-46.1867,-8.04859,42.9581],[-46.3655,-7.51814,43.7468],[-47.0265,-7.24549,42.8076],[-46.1867,-8.04859,42.9581],[-47.2411,-7.32899,41.7914],[-46.9118,-7.69018,40.896],[-46.5803,-7.93389,42.0026],[-46.9118,-7.69018,40.896],[-46.0985,-8.38042,41.28],[-46.5803,-7.93389,42.0026],[-47.6566,-6.72442,42.1094],[-47.7528,-6.78186,41.0769],[-47.2411,-7.32899,41.7914],[-47.6566,-6.72442,42.1094],[-48.162,-5.9973,41.7171],[-47.7528,-6.78186,41.0769],[-47.7528,-6.78186,41.0769],[-48.162,-5.9973,41.7171],[-48.2772,-6.03634,40.8132],[-48.2361,-4.34722,43.792],[-48.5818,-3.92724,42.912],[-48.2611,-4.90947,43.2425],[-47.8029,-5.15809,44.0713],[-48.2361,-4.34722,43.792],[-48.2611,-4.90947,43.2425],[-48.5818,-3.92724,42.912],[-48.2361,-4.34722,43.792],[-48.2956,-3.41146,43.9015],[-48.5818,-3.92724,42.912],[-48.2956,-3.41146,43.9015],[-48.628,-2.91169,43.0298],[-48.8119,-3.01911,42.0897],[-48.5818,-3.92724,42.912],[-48.628,-2.91169,43.0298],[-48.628,-2.91169,43.0298],[-48.2956,-3.41146,43.9015],[-48.2878,-2.28933,43.6715],[-48.6366,-2.01865,42.3475],[-48.628,-2.91169,43.0298],[-48.2878,-2.28933,43.6715],[-48.6366,-2.01865,42.3475],[-48.2878,-2.28933,43.6715],[-48.1456,-1.24048,43.0956],[-48.4098,-1.07466,42.0508],[-48.6366,-2.01865,42.3475],[-48.1456,-1.24048,43.0956],[-48.4098,-1.07466,42.0508],[-48.1456,-1.24048,43.0956],[-47.8862,-0.350177,42.2163],[-47.8862,-0.350177,42.2163],[-48.3127,-0.580979,41.1868],[-48.4098,-1.07466,42.0508],[-47.8862,-0.350177,42.2163],[-48.1456,-1.24048,43.0956],[-47.4414,-0.553375,43.6762],[-47.8862,-0.350177,42.2163],[-47.4414,-0.553375,43.6762],[-47.2113,0.142085,42.8466],[-47.2017,0.527196,41.7584],[-47.8862,-0.350177,42.2163],[-47.2113,0.142085,42.8466],[-47.2017,0.527196,41.7584],[-47.2113,0.142085,42.8466],[-46.6016,0.693893,42.5615],[-47.2017,0.527196,41.7584],[-46.6016,0.693893,42.5615],[-46.3936,1.11028,41.564],[-46.3936,1.11028,41.564],[-46.6016,0.693893,42.5615],[-45.9177,1.03669,42.5187],[-46.3936,1.11028,41.564],[-45.9177,1.03669,42.5187],[-45.5769,1.34544,41.7396],[-45.9177,1.03669,42.5187],[-45.1731,1.19225,42.5959],[-45.5769,1.34544,41.7396],[-45.1731,1.19225,42.5959],[-44.6873,1.44186,41.7133],[-45.5769,1.34544,41.7396],[-45.1731,1.19225,42.5959],[-44.3876,1.21505,42.7552],[-44.6873,1.44186,41.7133],[-44.6873,1.44186,41.7133],[-44.3876,1.21505,42.7552],[-43.8653,1.29779,42.0084],[-43.8653,1.29779,42.0084],[-44.3876,1.21505,42.7552],[-43.5867,1.13593,42.9435],[-43.5867,1.13593,42.9435],[-43.1148,1.09255,42.1602],[-43.8653,1.29779,42.0084],[-43.8653,1.29779,42.0084],[-43.1148,1.09255,42.1602],[-43.394,1.28999,41.253],[-44.0816,1.04188,43.6876],[-43.5867,1.13593,42.9435],[-44.3876,1.21505,42.7552],[-44.0816,1.04188,43.6876],[-44.3876,1.21505,42.7552],[-44.8972,0.987343,43.5141],[-44.8972,0.987343,43.5141],[-44.5379,0.772354,44.4312],[-44.0816,1.04188,43.6876],[-44.5379,0.772354,44.4312],[-43.7663,0.860954,44.461],[-44.0816,1.04188,43.6876],[-44.0816,1.04188,43.6876],[-43.7663,0.860954,44.461],[-43.2826,0.987965,43.8429],[-43.2826,0.987965,43.8429],[-43.7663,0.860954,44.461],[-42.95,0.706135,44.7529],[-43.2826,0.987965,43.8429],[-42.95,0.706135,44.7529],[-42.5688,0.843102,43.8998],[-43.2826,0.987965,43.8429],[-42.5688,0.843102,43.8998],[-42.7984,0.960662,43.0797],[-43.5867,1.13593,42.9435],[-43.2826,0.987965,43.8429],[-42.7984,0.960662,43.0797],[-42.95,0.706135,44.7529],[-41.9571,0.543984,44.4071],[-42.5688,0.843102,43.8998],[-41.9364,0.621391,43.2404],[-42.5688,0.843102,43.8998],[-41.9571,0.543984,44.4071],[-41.2723,0.287665,43.8007],[-41.9364,0.621391,43.2404],[-41.9571,0.543984,44.4071],[-41.9571,0.543984,44.4071],[-41.2806,0.209088,44.5254],[-41.2723,0.287665,43.8007],[-41.2806,0.209088,44.5254],[-40.7928,-0.126286,44.1956],[-41.2723,0.287665,43.8007],[-40.7928,-0.126286,44.1956],[-40.6879,-0.165618,43.4165],[-41.2723,0.287665,43.8007],[-40.6879,-0.165618,43.4165],[-41.1472,0.152652,42.9021],[-41.2723,0.287665,43.8007],[-41.1472,0.152652,42.9021],[-40.6879,-0.165618,43.4165],[-40.5712,-0.414203,42.6282],[-40.2592,-0.672489,43.1363],[-40.5712,-0.414203,42.6282],[-40.6879,-0.165618,43.4165],[-40.3141,-0.629313,43.8208],[-40.2592,-0.672489,43.1363],[-40.6879,-0.165618,43.4165],[-40.2592,-0.672489,43.1363],[-40.3141,-0.629313,43.8208],[-39.9369,-1.20889,43.3686],[-40.0401,-1.21132,42.4738],[-40.2592,-0.672489,43.1363],[-39.9369,-1.20889,43.3686],[-39.6675,-1.8101,42.9233],[-40.0401,-1.21132,42.4738],[-39.9369,-1.20889,43.3686],[-39.6601,-1.9411,43.6584],[-39.6675,-1.8101,42.9233],[-39.9369,-1.20889,43.3686],[-39.6601,-1.9411,43.6584],[-39.9369,-1.20889,43.3686],[-40.0198,-1.26138,44.1709],[-39.8261,-2.04066,44.5063],[-39.6601,-1.9411,43.6584],[-40.0198,-1.26138,44.1709],[-39.8261,-2.04066,44.5063],[-40.0198,-1.26138,44.1709],[-40.263,-1.32429,44.9613],[-40.2212,-2.20129,45.3755],[-39.8261,-2.04066,44.5063],[-40.263,-1.32429,44.9613],[-40.7472,-1.28295,45.6679],[-40.2212,-2.20129,45.3755],[-40.263,-1.32429,44.9613],[-40.263,-1.32429,44.9613],[-40.674,-0.73989,45.1918],[-40.7472,-1.28295,45.6679],[-40.674,-0.73989,45.1918],[-41.2162,-0.493974,45.5862],[-40.7472,-1.28295,45.6679],[-41.5705,-1.09913,46.2953],[-40.7472,-1.28295,45.6679],[-41.2162,-0.493974,45.5862],[-42.0598,-0.162244,45.9025],[-41.5705,-1.09913,46.2953],[-41.2162,-0.493974,45.5862],[-41.2162,-0.493974,45.5862],[-41.5906,0.131258,45.1471],[-42.0598,-0.162244,45.9025],[-41.5906,0.131258,45.1471],[-42.2651,0.392295,45.2379],[-42.0598,-0.162244,45.9025],[-42.0598,-0.162244,45.9025],[-42.2651,0.392295,45.2379],[-42.9087,0.279056,45.6842],[-42.0598,-0.162244,45.9025],[-42.9087,0.279056,45.6842],[-42.819,-0.22335,46.3415],[-42.9087,0.279056,45.6842],[-42.2651,0.392295,45.2379],[-42.95,0.706135,44.7529],[-42.9087,0.279056,45.6842],[-42.95,0.706135,44.7529],[-43.9625,0.435411,45.359],[-41.9571,0.543984,44.4071],[-42.2651,0.392295,45.2379],[-41.5906,0.131258,45.1471],[-41.5906,0.131258,45.1471],[-41.2162,-0.493974,45.5862],[-40.9608,-0.211038,44.912],[-40.9608,-0.211038,44.912],[-41.2806,0.209088,44.5254],[-41.5906,0.131258,45.1471],[-41.5705,-1.09913,46.2953],[-42.0598,-0.162244,45.9025],[-42.2914,-0.639195,46.5106],[-40.9276,-2.12818,46.1863],[-40.7472,-1.28295,45.6679],[-41.5705,-1.09913,46.2953],[-40.9276,-2.12818,46.1863],[-41.5705,-1.09913,46.2953],[-41.7432,-2.1053,46.7834],[-40.9276,-2.12818,46.1863],[-41.7432,-2.1053,46.7834],[-41.2031,-3.23524,46.5594],[-40.9276,-2.12818,46.1863],[-41.2031,-3.23524,46.5594],[-40.487,-3.04508,45.9257],[-40.487,-3.04508,45.9257],[-40.2212,-2.20129,45.3755],[-40.9276,-2.12818,46.1863],[-40.487,-3.04508,45.9257],[-39.9154,-3.58621,45.1717],[-40.2212,-2.20129,45.3755],[-39.9154,-3.58621,45.1717],[-39.7145,-2.84038,44.7143],[-40.2212,-2.20129,45.3755],[-39.7145,-2.84038,44.7143],[-39.9154,-3.58621,45.1717],[-39.4842,-3.61414,44.3267],[-39.7145,-2.84038,44.7143],[-39.4842,-3.61414,44.3267],[-39.4926,-2.8123,43.9503],[-39.7145,-2.84038,44.7143],[-39.4926,-2.8123,43.9503],[-39.8261,-2.04066,44.5063],[-39.4926,-2.8123,43.9503],[-39.4842,-3.61414,44.3267],[-39.2778,-3.83553,43.3798],[-39.4926,-2.8123,43.9503],[-39.2778,-3.83553,43.3798],[-39.4269,-2.67912,42.9546],[-39.6601,-1.9411,43.6584],[-39.4926,-2.8123,43.9503],[-39.4269,-2.67912,42.9546],[-39.2442,-3.94467,42.1678],[-39.4269,-2.67912,42.9546],[-39.2778,-3.83553,43.3798],[-39.2442,-3.94467,42.1678],[-39.2778,-3.83553,43.3798],[-39.1882,-4.73993,42.6955],[-39.2319,-4.8855,41.8023],[-39.2442,-3.94467,42.1678],[-39.1882,-4.73993,42.6955],[-39.2546,-5.56442,42.2402],[-39.2319,-4.8855,41.8023],[-39.1882,-4.73993,42.6955],[-39.2546,-5.56442,42.2402],[-39.1882,-4.73993,42.6955],[-39.2757,-5.42814,43.0126],[-39.4909,-6.33021,42.6739],[-39.2546,-5.56442,42.2402],[-39.2757,-5.42814,43.0126],[-39.2757,-5.42814,43.0126],[-39.5693,-5.64684,43.8772],[-39.4909,-6.33021,42.6739],[-39.4909,-6.33021,42.6739],[-39.5693,-5.64684,43.8772],[-39.8288,-6.75868,43.4768],[-39.8288,-6.75868,43.4768],[-39.9845,-7.4173,42.6624],[-39.4909,-6.33021,42.6739],[-39.9845,-7.4173,42.6624],[-39.8308,-7.11602,41.5154],[-39.4909,-6.33021,42.6739],[-39.8308,-7.11602,41.5154],[-39.424,-6.25056,41.7839],[-39.4909,-6.33021,42.6739],[-39.6006,-6.36266,41.0767],[-39.424,-6.25056,41.7839],[-39.8308,-7.11602,41.5154],[-39.8308,-7.11602,41.5154],[-40.0636,-6.87804,40.4164],[-39.6006,-6.36266,41.0767],[-40.0636,-6.87804,40.4164],[-39.7594,-5.70964,40.3622],[-39.6006,-6.36266,41.0767],[-39.6006,-6.36266,41.0767],[-39.7594,-5.70964,40.3622],[-39.373,-5.65885,41.375],[-39.3971,-5.05388,41.0425],[-39.373,-5.65885,41.375],[-39.7594,-5.70964,40.3622],[-39.7594,-5.70964,40.3622],[-39.6261,-4.61595,40.4704],[-39.3971,-5.05388,41.0425],[-39.6261,-4.61595,40.4704],[-39.345,-4.29975,41.2741],[-39.3971,-5.05388,41.0425],[-39.345,-4.29975,41.2741],[-39.2319,-4.8855,41.8023],[-39.3971,-5.05388,41.0425],[-39.5974,-3.71897,40.7492],[-39.345,-4.29975,41.2741],[-39.6261,-4.61595,40.4704],[-40.0005,-3.91773,39.9035],[-39.5974,-3.71897,40.7492],[-39.6261,-4.61595,40.4704],[-39.6261,-4.61595,40.4704],[-40.1003,-4.86989,39.6254],[-40.0005,-3.91773,39.9035],[-39.345,-4.29975,41.2741],[-39.5974,-3.71897,40.7492],[-39.3833,-3.54814,41.4633],[-39.345,-4.29975,41.2741],[-39.3833,-3.54814,41.4633],[-39.2442,-3.94467,42.1678],[-39.2442,-3.94467,42.1678],[-39.3833,-3.54814,41.4633],[-39.3987,-3.01954,41.9861],[-39.6895,-2.78787,41.1953],[-39.3987,-3.01954,41.9861],[-39.3833,-3.54814,41.4633],[-39.5974,-3.71897,40.7492],[-39.6895,-2.78787,41.1953],[-39.3833,-3.54814,41.4633],[-39.7594,-5.70964,40.3622],[-40.1003,-4.86989,39.6254],[-39.6261,-4.61595,40.4704],[-39.7594,-5.70964,40.3622],[-40.2905,-5.65242,39.4272],[-40.1003,-4.86989,39.6254],[-40.2905,-5.65242,39.4272],[-40.7535,-5.05575,38.781],[-40.1003,-4.86989,39.6254],[-40.7535,-5.05575,38.781],[-40.5712,-4.08031,39.0234],[-40.1003,-4.86989,39.6254],[-40.2905,-5.65242,39.4272],[-40.9329,-6.14369,38.8675],[-40.7535,-5.05575,38.781],[-41.6376,-5.29061,37.9194],[-40.7535,-5.05575,38.781],[-40.9329,-6.14369,38.8675],[-40.9329,-6.14369,38.8675],[-41.8686,-6.35525,38.1635],[-41.6376,-5.29061,37.9194],[-41.8686,-6.35525,38.1635],[-42.3047,-5.78277,37.5361],[-41.6376,-5.29061,37.9194],[-42.3047,-5.78277,37.5361],[-42.4615,-5.02681,37.0867],[-41.6376,-5.29061,37.9194],[-42.4615,-5.02681,37.0867],[-42.0046,-4.29633,37.2137],[-41.6376,-5.29061,37.9194],[-42.0046,-4.29633,37.2137],[-41.2959,-4.12743,38.0566],[-41.6376,-5.29061,37.9194],[-41.7687,-3.55924,37.2807],[-41.2959,-4.12743,38.0566],[-42.0046,-4.29633,37.2137],[-41.7687,-3.55924,37.2807],[-42.0046,-4.29633,37.2137],[-42.2506,-3.45078,36.4875],[-42.2506,-3.45078,36.4875],[-41.773,-2.75564,36.8874],[-41.7687,-3.55924,37.2807],[-41.773,-2.75564,36.8874],[-41.4212,-3.08414,37.7712],[-41.7687,-3.55924,37.2807],[-42.2506,-3.45078,36.4875],[-42.0021,-2.49311,35.9139],[-41.773,-2.75564,36.8874],[-42.2506,-3.45078,36.4875],[-42.5254,-3.00932,35.6318],[-42.0021,-2.49311,35.9139],[-42.5254,-3.00932,35.6318],[-42.2506,-3.45078,36.4875],[-42.912,-3.74189,35.9425],[-42.5254,-3.00932,35.6318],[-42.912,-3.74189,35.9425],[-43.0827,-3.10305,35.1244],[-42.5254,-3.00932,35.6318],[-43.0827,-3.10305,35.1244],[-42.2712,-2.29353,34.7661],[-42.2712,-2.29353,34.7661],[-43.0827,-3.10305,35.1244],[-43.1265,-2.49014,34.1566],[-42.2712,-2.29353,34.7661],[-43.1265,-2.49014,34.1566],[-42.1445,-1.79726,33.3268],[-43.965,-3.18583,34.7448],[-43.1265,-2.49014,34.1566],[-43.0827,-3.10305,35.1244],[-43.965,-3.18583,34.7448],[-43.0827,-3.10305,35.1244],[-43.6115,-3.91198,35.5629],[-44.4064,-4.04313,35.4005],[-43.965,-3.18583,34.7448],[-43.6115,-3.91198,35.5629],[-43.6115,-3.91198,35.5629],[-43.9935,-4.63377,35.931],[-44.4064,-4.04313,35.4005],[-43.9935,-4.63377,35.931],[-44.6808,-4.86474,35.9514],[-44.4064,-4.04313,35.4005],[-44.6808,-4.86474,35.9514],[-45.3047,-4.16881,35.4956],[-44.4064,-4.04313,35.4005],[-44.4064,-4.04313,35.4005],[-45.3047,-4.16881,35.4956],[-44.8104,-3.46707,34.9304],[-45.3047,-4.16881,35.4956],[-45.3412,-3.52817,35.0226],[-44.8104,-3.46707,34.9304],[-45.3412,-3.52817,35.0226],[-45.2045,-3.13547,34.6933],[-44.8104,-3.46707,34.9304],[-44.7187,-2.76512,34.2781],[-44.8104,-3.46707,34.9304],[-45.2045,-3.13547,34.6933],[-45.2045,-3.13547,34.6933],[-45.4742,-2.72409,34.4289],[-44.7187,-2.76512,34.2781],[-45.0723,-2.3326,33.8776],[-44.7187,-2.76512,34.2781],[-45.4742,-2.72409,34.4289],[-45.7023,-2.27159,34.1229],[-45.0723,-2.3326,33.8776],[-45.4742,-2.72409,34.4289],[-46.0065,-2.41394,34.4324],[-45.7023,-2.27159,34.1229],[-45.4742,-2.72409,34.4289],[-46.0065,-2.41394,34.4324],[-45.4742,-2.72409,34.4289],[-45.9249,-2.94823,34.8004],[-46.186,-2.79342,34.8229],[-46.0065,-2.41394,34.4324],[-45.9249,-2.94823,34.8004],[-46.186,-2.79342,34.8229],[-45.9249,-2.94823,34.8004],[-46.2469,-3.03609,35.0302],[-46.2469,-3.03609,35.0302],[-46.513,-2.74817,35.0087],[-46.186,-2.79342,34.8229],[-46.2469,-3.03609,35.0302],[-46.5399,-3.11634,35.2596],[-46.513,-2.74817,35.0087],[-46.5399,-3.11634,35.2596],[-46.8396,-2.69104,35.2346],[-46.513,-2.74817,35.0087],[-46.8396,-2.69104,35.2346],[-46.5399,-3.11634,35.2596],[-47.0175,-3.60433,35.948],[-47.0175,-3.60433,35.948],[-46.5399,-3.11634,35.2596],[-46.5197,-3.54949,35.5168],[-46.1827,-4.22551,35.7824],[-47.0175,-3.60433,35.948],[-46.5197,-3.54949,35.5168],[-46.5197,-3.54949,35.5168],[-46.305,-3.32946,35.247],[-46.1827,-4.22551,35.7824],[-46.1827,-4.22551,35.7824],[-46.305,-3.32946,35.247],[-45.9742,-3.22231,35.0187],[-46.1827,-4.22551,35.7824],[-45.9742,-3.22231,35.0187],[-45.7073,-3.6519,35.2059],[-45.7073,-3.6519,35.2059],[-45.3047,-4.16881,35.4956],[-46.1827,-4.22551,35.7824],[-45.3047,-4.16881,35.4956],[-45.6144,-5.01455,36.1149],[-46.1827,-4.22551,35.7824],[-46.1827,-4.22551,35.7824],[-45.6144,-5.01455,36.1149],[-46.4427,-4.95636,36.3337],[-46.4427,-4.95636,36.3337],[-46.8489,-4.41829,36.263],[-46.1827,-4.22551,35.7824],[-46.4427,-4.95636,36.3337],[-47.0401,-5.37223,37.0331],[-46.8489,-4.41829,36.263],[-46.8489,-4.41829,36.263],[-47.0401,-5.37223,37.0331],[-47.5078,-4.31506,36.8216],[-46.8489,-4.41829,36.263],[-47.5078,-4.31506,36.8216],[-47.0175,-3.60433,35.948],[-47.5078,-4.31506,36.8216],[-47.6926,-3.0665,36.3679],[-47.0175,-3.60433,35.948],[-47.2505,-2.83908,35.7023],[-47.0175,-3.60433,35.948],[-47.6926,-3.0665,36.3679],[-47.0401,-5.37223,37.0331],[-46.4427,-4.95636,36.3337],[-46.3281,-5.69435,36.7798],[-45.6144,-5.01455,36.1149],[-46.3281,-5.69435,36.7798],[-46.4427,-4.95636,36.3337],[-46.3281,-5.69435,36.7798],[-45.6144,-5.01455,36.1149],[-45.8529,-6.58725,37.2968],[-46.6118,-6.35035,37.4916],[-46.3281,-5.69435,36.7798],[-45.8529,-6.58725,37.2968],[-45.6144,-5.01455,36.1149],[-45.1291,-6.34547,36.9484],[-45.8529,-6.58725,37.2968],[-45.8529,-6.58725,37.2968],[-45.1291,-6.34547,36.9484],[-45.0749,-7.07289,37.6028],[-45.0749,-7.07289,37.6028],[-45.1291,-6.34547,36.9484],[-44.4662,-6.42547,37.0495],[-45.1291,-6.34547,36.9484],[-44.7892,-5.68014,36.4727],[-44.4662,-6.42547,37.0495],[-43.9679,-5.54244,36.5561],[-44.4662,-6.42547,37.0495],[-44.7892,-5.68014,36.4727],[-44.6808,-4.86474,35.9514],[-43.9679,-5.54244,36.5561],[-44.7892,-5.68014,36.4727],[-44.7892,-5.68014,36.4727],[-45.6144,-5.01455,36.1149],[-44.6808,-4.86474,35.9514],[-44.4662,-6.42547,37.0495],[-43.9679,-5.54244,36.5561],[-43.5398,-6.55285,37.3979],[-44.4662,-6.42547,37.0495],[-43.5398,-6.55285,37.3979],[-44.2158,-7.13945,37.6838],[-43.0149,-5.69406,37.0535],[-43.5398,-6.55285,37.3979],[-43.9679,-5.54244,36.5561],[-43.9679,-5.54244,36.5561],[-43.231,-4.70151,36.356],[-43.0149,-5.69406,37.0535],[-43.231,-4.70151,36.356],[-42.4615,-5.02681,37.0867],[-43.0149,-5.69406,37.0535],[-42.5891,-4.2549,36.6027],[-42.4615,-5.02681,37.0867],[-43.231,-4.70151,36.356],[-42.5891,-4.2549,36.6027],[-43.231,-4.70151,36.356],[-42.912,-3.74189,35.9425],[-43.6115,-3.91198,35.5629],[-42.912,-3.74189,35.9425],[-43.231,-4.70151,36.356],[-43.9679,-5.54244,36.5561],[-43.9935,-4.63377,35.931],[-43.231,-4.70151,36.356],[-43.5398,-6.55285,37.3979],[-43.0149,-5.69406,37.0535],[-42.6226,-6.36379,37.6568],[-43.5398,-6.55285,37.3979],[-42.6226,-6.36379,37.6568],[-42.4471,-7.23,38.3912],[-43.5205,-7.55753,38.2341],[-43.5398,-6.55285,37.3979],[-42.4471,-7.23,38.3912],[-42.8743,-8.08414,38.9626],[-43.5205,-7.55753,38.2341],[-42.4471,-7.23,38.3912],[-42.4471,-7.23,38.3912],[-41.9524,-7.90929,39.2281],[-42.8743,-8.08414,38.9626],[-42.4451,-8.66116,39.9035],[-42.8743,-8.08414,38.9626],[-41.9524,-7.90929,39.2281],[-41.5655,-8.2946,39.8671],[-42.4451,-8.66116,39.9035],[-41.9524,-7.90929,39.2281],[-41.5655,-8.2946,39.8671],[-41.9524,-7.90929,39.2281],[-41.1329,-7.72272,39.6093],[-40.9488,-8.15213,40.3043],[-41.5655,-8.2946,39.8671],[-41.1329,-7.72272,39.6093],[-41.1329,-7.72272,39.6093],[-40.5565,-7.55734,40.1013],[-40.9488,-8.15213,40.3043],[-40.5565,-7.55734,40.1013],[-40.3536,-7.76948,40.8487],[-40.9488,-8.15213,40.3043],[-40.3536,-7.76948,40.8487],[-40.9025,-8.47738,41.1349],[-40.9488,-8.15213,40.3043],[-40.9025,-8.47738,41.1349],[-41.574,-8.68945,40.5259],[-40.9488,-8.15213,40.3043],[-41.574,-8.68945,40.5259],[-40.9025,-8.47738,41.1349],[-41.6472,-8.99696,41.4035],[-42.1923,-9.05557,40.7757],[-41.574,-8.68945,40.5259],[-41.6472,-8.99696,41.4035],[-42.6018,-9.30713,41.5457],[-42.1923,-9.05557,40.7757],[-41.6472,-8.99696,41.4035],[-42.6018,-9.30713,41.5457],[-41.6472,-8.99696,41.4035],[-41.9081,-9.11658,42.4798],[-42.6018,-9.30713,41.5457],[-41.9081,-9.11658,42.4798],[-42.7795,-9.38153,42.4626],[-42.6018,-9.30713,41.5457],[-42.7795,-9.38153,42.4626],[-43.4507,-9.40299,42.0474],[-42.7795,-9.38153,42.4626],[-41.9081,-9.11658,42.4798],[-42.6654,-9.12487,43.341],[-42.6654,-9.12487,43.341],[-41.9081,-9.11658,42.4798],[-41.799,-8.89159,43.4188],[-41.799,-8.89159,43.4188],[-41.9081,-9.11658,42.4798],[-41.1112,-8.58702,43.072],[-41.1112,-8.58702,43.072],[-41.35,-8.38138,43.9428],[-41.799,-8.89159,43.4188],[-40.5075,-7.65982,43.7099],[-41.35,-8.38138,43.9428],[-41.1112,-8.58702,43.072],[-40.5075,-7.65982,43.7099],[-41.1112,-8.58702,43.072],[-40.4972,-8.17526,42.6862],[-39.9845,-7.4173,42.6624],[-40.5075,-7.65982,43.7099],[-40.4972,-8.17526,42.6862],[-40.4972,-8.17526,42.6862],[-40.3327,-8.02796,41.8144],[-39.9845,-7.4173,42.6624],[-40.4972,-8.17526,42.6862],[-40.9941,-8.67836,42.0911],[-40.3327,-8.02796,41.8144],[-40.3327,-8.02796,41.8144],[-40.9941,-8.67836,42.0911],[-40.9025,-8.47738,41.1349],[-41.1112,-8.58702,43.072],[-40.9941,-8.67836,42.0911],[-40.4972,-8.17526,42.6862],[-41.1112,-8.58702,43.072],[-41.9081,-9.11658,42.4798],[-40.9941,-8.67836,42.0911],[-41.6472,-8.99696,41.4035],[-40.9941,-8.67836,42.0911],[-41.9081,-9.11658,42.4798],[-42.6018,-9.30713,41.5457],[-42.8341,-9.1382,40.6556],[-42.1923,-9.05557,40.7757],[-42.8341,-9.1382,40.6556],[-42.4451,-8.66116,39.9035],[-42.1923,-9.05557,40.7757],[-42.8341,-9.1382,40.6556],[-43.484,-8.91497,40.1014],[-42.4451,-8.66116,39.9035],[-43.3053,-8.55101,39.397],[-42.4451,-8.66116,39.9035],[-43.484,-8.91497,40.1014],[-43.5645,-9.24181,41.0561],[-42.8341,-9.1382,40.6556],[-42.6018,-9.30713,41.5457],[-42.1923,-9.05557,40.7757],[-42.4451,-8.66116,39.9035],[-41.574,-8.68945,40.5259],[-40.9025,-8.47738,41.1349],[-40.9941,-8.67836,42.0911],[-41.6472,-8.99696,41.4035],[-40.3536,-7.76948,40.8487],[-40.3327,-8.02796,41.8144],[-40.9025,-8.47738,41.1349],[-39.8308,-7.11602,41.5154],[-40.3327,-8.02796,41.8144],[-40.3536,-7.76948,40.8487],[-40.0636,-6.87804,40.4164],[-40.3536,-7.76948,40.8487],[-40.5565,-7.55734,40.1013],[-40.0636,-6.87804,40.4164],[-40.5565,-7.55734,40.1013],[-40.6634,-6.99305,39.5535],[-40.6634,-6.99305,39.5535],[-40.2703,-6.30778,39.6776],[-40.0636,-6.87804,40.4164],[-40.6634,-6.99305,39.5535],[-40.9329,-6.14369,38.8675],[-40.2703,-6.30778,39.6776],[-41.4519,-7.10643,38.9153],[-40.9329,-6.14369,38.8675],[-40.6634,-6.99305,39.5535],[-40.6634,-6.99305,39.5535],[-41.1329,-7.72272,39.6093],[-41.4519,-7.10643,38.9153],[-40.5565,-7.55734,40.1013],[-41.1329,-7.72272,39.6093],[-40.6634,-6.99305,39.5535],[-40.9488,-8.15213,40.3043],[-41.574,-8.68945,40.5259],[-41.5655,-8.2946,39.8671],[-41.4519,-7.10643,38.9153],[-41.1329,-7.72272,39.6093],[-41.9524,-7.90929,39.2281],[-41.5655,-8.2946,39.8671],[-41.574,-8.68945,40.5259],[-42.4451,-8.66116,39.9035],[-43.3053,-8.55101,39.397],[-42.8743,-8.08414,38.9626],[-42.4451,-8.66116,39.9035],[-43.6531,-8.17973,38.8351],[-42.8743,-8.08414,38.9626],[-43.3053,-8.55101,39.397],[-41.4519,-7.10643,38.9153],[-41.9524,-7.90929,39.2281],[-42.4471,-7.23,38.3912],[-41.8686,-6.35525,38.1635],[-41.4519,-7.10643,38.9153],[-42.4471,-7.23,38.3912],[-42.6226,-6.36379,37.6568],[-41.8686,-6.35525,38.1635],[-42.4471,-7.23,38.3912],[-42.3047,-5.78277,37.5361],[-42.6226,-6.36379,37.6568],[-43.0149,-5.69406,37.0535],[-44.7892,-5.68014,36.4727],[-45.1291,-6.34547,36.9484],[-45.6144,-5.01455,36.1149],[-45.9742,-3.22231,35.0187],[-45.6209,-3.20061,34.8537],[-45.7073,-3.6519,35.2059],[-45.6209,-3.20061,34.8537],[-45.3412,-3.52817,35.0226],[-45.7073,-3.6519,35.2059],[-45.9249,-2.94823,34.8004],[-45.6209,-3.20061,34.8537],[-45.9742,-3.22231,35.0187],[-46.305,-3.32946,35.247],[-46.2469,-3.03609,35.0302],[-45.9742,-3.22231,35.0187],[-47.0175,-3.60433,35.948],[-46.1827,-4.22551,35.7824],[-46.8489,-4.41829,36.263],[-46.5197,-3.54949,35.5168],[-46.5399,-3.11634,35.2596],[-46.305,-3.32946,35.247],[-46.305,-3.32946,35.247],[-46.5399,-3.11634,35.2596],[-46.2469,-3.03609,35.0302],[-45.9249,-2.94823,34.8004],[-45.9742,-3.22231,35.0187],[-46.2469,-3.03609,35.0302],[-46.0065,-2.41394,34.4324],[-46.186,-2.79342,34.8229],[-46.513,-2.74817,35.0087],[-46.4489,-2.35446,34.6858],[-46.0065,-2.41394,34.4324],[-46.513,-2.74817,35.0087],[-46.7519,-2.39181,34.963],[-46.4489,-2.35446,34.6858],[-46.513,-2.74817,35.0087],[-46.6494,-2.10083,34.6684],[-46.4489,-2.35446,34.6858],[-46.7519,-2.39181,34.963],[-46.4489,-2.35446,34.6858],[-46.6494,-2.10083,34.6684],[-46.329,-2.07179,34.3788],[-46.6494,-2.10083,34.6684],[-46.6284,-1.76463,34.415],[-46.329,-2.07179,34.3788],[-46.6284,-1.76463,34.415],[-46.2207,-1.71625,33.9964],[-46.329,-2.07179,34.3788],[-46.2207,-1.71625,33.9964],[-46.0074,-2.06493,34.1244],[-46.329,-2.07179,34.3788],[-46.0074,-2.06493,34.1244],[-46.0065,-2.41394,34.4324],[-46.329,-2.07179,34.3788],[-46.2207,-1.71625,33.9964],[-45.9579,-1.8331,33.8687],[-46.0074,-2.06493,34.1244],[-45.9579,-1.8331,33.8687],[-45.843,-2.0115,33.9492],[-46.0074,-2.06493,34.1244],[-45.843,-2.0115,33.9492],[-45.7023,-2.27159,34.1229],[-46.0074,-2.06493,34.1244],[-45.7023,-2.27159,34.1229],[-45.843,-2.0115,33.9492],[-45.6763,-1.72176,33.5547],[-45.0367,-1.80697,33.2788],[-45.7023,-2.27159,34.1229],[-45.6763,-1.72176,33.5547],[-45.0367,-1.80697,33.2788],[-45.6763,-1.72176,33.5547],[-45.3495,-1.34678,32.9512],[-45.3495,-1.34678,32.9512],[-44.6751,-1.55849,32.7942],[-45.0367,-1.80697,33.2788],[-44.367,-2.06228,33.3494],[-45.0367,-1.80697,33.2788],[-44.6751,-1.55849,32.7942],[-44.367,-2.06228,33.3494],[-44.6751,-1.55849,32.7942],[-43.5495,-1.48871,32.2294],[-45.0367,-1.80697,33.2788],[-44.367,-2.06228,33.3494],[-45.0723,-2.3326,33.8776],[-44.6751,-1.55849,32.7942],[-45.3495,-1.34678,32.9512],[-44.8413,-0.936687,32.1096],[-43.7794,-0.739034,31.1296],[-44.6751,-1.55849,32.7942],[-44.8413,-0.936687,32.1096],[-44.4646,-0.206121,31.0531],[-43.7794,-0.739034,31.1296],[-44.8413,-0.936687,32.1096],[-45.6912,-0.631999,32.6242],[-44.4646,-0.206121,31.0531],[-44.8413,-0.936687,32.1096],[-45.5053,0.281345,31.8127],[-44.4646,-0.206121,31.0531],[-45.6912,-0.631999,32.6242],[-44.4646,-0.206121,31.0531],[-45.5053,0.281345,31.8127],[-44.2703,0.600717,30.2503],[-44.8413,-0.936687,32.1096],[-45.3495,-1.34678,32.9512],[-45.6912,-0.631999,32.6242],[-45.6912,-0.631999,32.6242],[-45.3495,-1.34678,32.9512],[-45.7886,-1.03711,33.0215],[-45.3495,-1.34678,32.9512],[-45.9121,-1.22424,33.2886],[-45.7886,-1.03711,33.0215],[-45.9121,-1.22424,33.2886],[-46.012,-0.985104,33.1964],[-45.7886,-1.03711,33.0215],[-45.9276,-0.778127,32.9516],[-45.7886,-1.03711,33.0215],[-46.012,-0.985104,33.1964],[-46.012,-0.985104,33.1964],[-45.9121,-1.22424,33.2886],[-46.1551,-1.13177,33.4601],[-46.012,-0.985104,33.1964],[-46.1551,-1.13177,33.4601],[-46.3049,-0.760452,33.3718],[-46.4408,-1.05805,33.7199],[-46.3049,-0.760452,33.3718],[-46.1551,-1.13177,33.4601],[-46.2498,-1.36889,33.7402],[-46.4408,-1.05805,33.7199],[-46.1551,-1.13177,33.4601],[-46.2498,-1.36889,33.7402],[-46.1551,-1.13177,33.4601],[-46.0474,-1.36057,33.5262],[-46.2498,-1.36889,33.7402],[-46.0474,-1.36057,33.5262],[-46.0696,-1.53814,33.6961],[-46.2207,-1.71625,33.9964],[-46.2498,-1.36889,33.7402],[-46.0696,-1.53814,33.6961],[-45.9716,-1.67912,33.7364],[-46.2207,-1.71625,33.9964],[-46.0696,-1.53814,33.6961],[-45.9716,-1.67912,33.7364],[-46.0696,-1.53814,33.6961],[-45.8831,-1.50592,33.504],[-45.6763,-1.72176,33.5547],[-45.9716,-1.67912,33.7364],[-45.8831,-1.50592,33.504],[-45.9716,-1.67912,33.7364],[-45.6763,-1.72176,33.5547],[-45.9579,-1.8331,33.8687],[-46.2498,-1.36889,33.7402],[-46.2207,-1.71625,33.9964],[-46.5893,-1.35854,34.0966],[-46.0474,-1.36057,33.5262],[-45.8831,-1.50592,33.504],[-46.0696,-1.53814,33.6961],[-46.0474,-1.36057,33.5262],[-45.9121,-1.22424,33.2886],[-45.8831,-1.50592,33.504],[-46.5893,-1.35854,34.0966],[-46.4408,-1.05805,33.7199],[-46.2498,-1.36889,33.7402],[-46.4408,-1.05805,33.7199],[-46.5893,-1.35854,34.0966],[-46.7349,-0.940538,33.9914],[-45.9121,-1.22424,33.2886],[-46.0474,-1.36057,33.5262],[-46.1551,-1.13177,33.4601],[-45.8831,-1.50592,33.504],[-45.9121,-1.22424,33.2886],[-45.3495,-1.34678,32.9512],[-45.6763,-1.72176,33.5547],[-45.8831,-1.50592,33.504],[-45.3495,-1.34678,32.9512],[-45.6763,-1.72176,33.5547],[-45.843,-2.0115,33.9492],[-45.9579,-1.8331,33.8687],[-46.2207,-1.71625,33.9964],[-45.9716,-1.67912,33.7364],[-45.9579,-1.8331,33.8687],[-46.5893,-1.35854,34.0966],[-46.2207,-1.71625,33.9964],[-46.6284,-1.76463,34.415],[-46.8479,-1.48248,34.4556],[-46.5893,-1.35854,34.0966],[-46.6284,-1.76463,34.415],[-46.9022,-1.67624,34.6388],[-46.8479,-1.48248,34.4556],[-46.6284,-1.76463,34.415],[-46.9022,-1.67624,34.6388],[-46.6284,-1.76463,34.415],[-46.8322,-1.88388,34.6975],[-46.9022,-1.67624,34.6388],[-46.8322,-1.88388,34.6975],[-47.0717,-1.75467,34.8878],[-46.9022,-1.67624,34.6388],[-47.0717,-1.75467,34.8878],[-47.1176,-1.44523,34.7555],[-47.1176,-1.44523,34.7555],[-46.8479,-1.48248,34.4556],[-46.9022,-1.67624,34.6388],[-46.8479,-1.48248,34.4556],[-47.1176,-1.44523,34.7555],[-46.9549,-1.11839,34.3684],[-46.5893,-1.35854,34.0966],[-46.8479,-1.48248,34.4556],[-46.9549,-1.11839,34.3684],[-46.6494,-2.10083,34.6684],[-46.8322,-1.88388,34.6975],[-46.6284,-1.76463,34.415],[-46.8322,-1.88388,34.6975],[-46.6494,-2.10083,34.6684],[-46.8959,-2.10036,34.9036],[-46.0065,-2.41394,34.4324],[-46.4489,-2.35446,34.6858],[-46.329,-2.07179,34.3788],[-45.6209,-3.20061,34.8537],[-45.9249,-2.94823,34.8004],[-45.4742,-2.72409,34.4289],[-46.0074,-2.06493,34.1244],[-45.7023,-2.27159,34.1229],[-46.0065,-2.41394,34.4324],[-45.7023,-2.27159,34.1229],[-45.0367,-1.80697,33.2788],[-45.0723,-2.3326,33.8776],[-44.367,-2.06228,33.3494],[-44.7187,-2.76512,34.2781],[-45.0723,-2.3326,33.8776],[-43.9011,-2.50632,33.9213],[-44.7187,-2.76512,34.2781],[-44.367,-2.06228,33.3494],[-44.367,-2.06228,33.3494],[-43.3066,-2.00058,33.2116],[-43.9011,-2.50632,33.9213],[-43.1265,-2.49014,34.1566],[-43.9011,-2.50632,33.9213],[-43.3066,-2.00058,33.2116],[-44.7187,-2.76512,34.2781],[-43.9011,-2.50632,33.9213],[-43.965,-3.18583,34.7448],[-45.2045,-3.13547,34.6933],[-45.6209,-3.20061,34.8537],[-45.4742,-2.72409,34.4289],[-44.8104,-3.46707,34.9304],[-44.7187,-2.76512,34.2781],[-43.965,-3.18583,34.7448],[-45.3412,-3.52817,35.0226],[-45.6209,-3.20061,34.8537],[-45.2045,-3.13547,34.6933],[-45.7073,-3.6519,35.2059],[-45.3412,-3.52817,35.0226],[-45.3047,-4.16881,35.4956],[-45.3047,-4.16881,35.4956],[-44.6808,-4.86474,35.9514],[-45.6144,-5.01455,36.1149],[-43.9679,-5.54244,36.5561],[-44.6808,-4.86474,35.9514],[-43.9935,-4.63377,35.931],[-43.9935,-4.63377,35.931],[-43.6115,-3.91198,35.5629],[-43.231,-4.70151,36.356],[-43.965,-3.18583,34.7448],[-44.4064,-4.04313,35.4005],[-44.8104,-3.46707,34.9304],[-43.965,-3.18583,34.7448],[-43.9011,-2.50632,33.9213],[-43.1265,-2.49014,34.1566],[-42.912,-3.74189,35.9425],[-43.6115,-3.91198,35.5629],[-43.0827,-3.10305,35.1244],[-42.2506,-3.45078,36.4875],[-42.5891,-4.2549,36.6027],[-42.912,-3.74189,35.9425],[-42.2506,-3.45078,36.4875],[-42.0046,-4.29633,37.2137],[-42.5891,-4.2549,36.6027],[-42.0046,-4.29633,37.2137],[-42.4615,-5.02681,37.0867],[-42.5891,-4.2549,36.6027],[-42.3047,-5.78277,37.5361],[-43.0149,-5.69406,37.0535],[-42.4615,-5.02681,37.0867],[-42.3047,-5.78277,37.5361],[-41.8686,-6.35525,38.1635],[-42.6226,-6.36379,37.6568],[-41.8686,-6.35525,38.1635],[-40.9329,-6.14369,38.8675],[-41.4519,-7.10643,38.9153],[-41.2959,-4.12743,38.0566],[-40.7535,-5.05575,38.781],[-41.6376,-5.29061,37.9194],[-40.2905,-5.65242,39.4272],[-40.2703,-6.30778,39.6776],[-40.9329,-6.14369,38.8675],[-40.2905,-5.65242,39.4272],[-39.7594,-5.70964,40.3622],[-40.2703,-6.30778,39.6776],[-39.2319,-4.8855,41.8023],[-39.373,-5.65885,41.375],[-39.3971,-5.05388,41.0425],[-40.0636,-6.87804,40.4164],[-40.2703,-6.30778,39.6776],[-39.7594,-5.70964,40.3622],[-40.0636,-6.87804,40.4164],[-39.8308,-7.11602,41.5154],[-40.3536,-7.76948,40.8487],[-39.424,-6.25056,41.7839],[-39.6006,-6.36266,41.0767],[-39.373,-5.65885,41.375],[-39.373,-5.65885,41.375],[-39.2546,-5.56442,42.2402],[-39.424,-6.25056,41.7839],[-40.3327,-8.02796,41.8144],[-39.8308,-7.11602,41.5154],[-39.9845,-7.4173,42.6624],[-39.9845,-7.4173,42.6624],[-39.8288,-6.75868,43.4768],[-40.5075,-7.65982,43.7099],[-40.0525,-6.55423,44.2302],[-40.5075,-7.65982,43.7099],[-39.8288,-6.75868,43.4768],[-40.7404,-6.99714,44.7872],[-40.5075,-7.65982,43.7099],[-40.0525,-6.55423,44.2302],[-40.3691,-5.88906,45.187],[-40.7404,-6.99714,44.7872],[-40.0525,-6.55423,44.2302],[-40.0525,-6.55423,44.2302],[-39.9106,-5.79953,44.6428],[-40.3691,-5.88906,45.187],[-39.9887,-5.06947,45.0594],[-40.3691,-5.88906,45.187],[-39.9106,-5.79953,44.6428],[-39.5693,-5.64684,43.8772],[-39.9887,-5.06947,45.0594],[-39.9106,-5.79953,44.6428],[-39.9887,-5.06947,45.0594],[-39.5693,-5.64684,43.8772],[-39.5952,-4.32282,44.576],[-39.9887,-5.06947,45.0594],[-39.5952,-4.32282,44.576],[-39.9154,-3.58621,45.1717],[-40.5741,-4.12799,45.9824],[-39.9887,-5.06947,45.0594],[-39.9154,-3.58621,45.1717],[-40.5741,-4.12799,45.9824],[-40.3899,-5.05946,45.6285],[-39.9887,-5.06947,45.0594],[-40.5741,-4.12799,45.9824],[-40.9481,-5.07529,46.0971],[-40.3899,-5.05946,45.6285],[-40.3691,-5.88906,45.187],[-40.3899,-5.05946,45.6285],[-40.9481,-5.07529,46.0971],[-41.1652,-6.42104,45.5861],[-40.3691,-5.88906,45.187],[-40.9481,-5.07529,46.0971],[-39.5693,-5.64684,43.8772],[-39.3547,-4.30277,43.9653],[-39.5952,-4.32282,44.576],[-39.3547,-4.30277,43.9653],[-39.4842,-3.61414,44.3267],[-39.5952,-4.32282,44.576],[-39.3547,-4.30277,43.9653],[-39.5693,-5.64684,43.8772],[-39.2631,-4.78427,43.4224],[-39.2778,-3.83553,43.3798],[-39.3547,-4.30277,43.9653],[-39.2631,-4.78427,43.4224],[-40.3691,-5.88906,45.187],[-39.9887,-5.06947,45.0594],[-40.3899,-5.05946,45.6285],[-40.0525,-6.55423,44.2302],[-39.5693,-5.64684,43.8772],[-39.9106,-5.79953,44.6428],[-39.5693,-5.64684,43.8772],[-40.0525,-6.55423,44.2302],[-39.8288,-6.75868,43.4768],[-39.2631,-4.78427,43.4224],[-39.5693,-5.64684,43.8772],[-39.2757,-5.42814,43.0126],[-39.2546,-5.56442,42.2402],[-39.4909,-6.33021,42.6739],[-39.424,-6.25056,41.7839],[-39.1882,-4.73993,42.6955],[-39.2631,-4.78427,43.4224],[-39.2757,-5.42814,43.0126],[-39.2546,-5.56442,42.2402],[-39.373,-5.65885,41.375],[-39.2319,-4.8855,41.8023],[-39.2319,-4.8855,41.8023],[-39.345,-4.29975,41.2741],[-39.2442,-3.94467,42.1678],[-39.2778,-3.83553,43.3798],[-39.2631,-4.78427,43.4224],[-39.1882,-4.73993,42.6955],[-39.4269,-2.67912,42.9546],[-39.2442,-3.94467,42.1678],[-39.3987,-3.01954,41.9861],[-39.6431,-2.17625,42.1495],[-39.4269,-2.67912,42.9546],[-39.3987,-3.01954,41.9861],[-39.6675,-1.8101,42.9233],[-39.4269,-2.67912,42.9546],[-39.6431,-2.17625,42.1495],[-39.3547,-4.30277,43.9653],[-39.2778,-3.83553,43.3798],[-39.4842,-3.61414,44.3267],[-39.9154,-3.58621,45.1717],[-39.5952,-4.32282,44.576],[-39.4842,-3.61414,44.3267],[-39.9154,-3.58621,45.1717],[-40.487,-3.04508,45.9257],[-40.5741,-4.12799,45.9824],[-40.487,-3.04508,45.9257],[-41.2031,-3.23524,46.5594],[-40.5741,-4.12799,45.9824],[-40.674,-0.73989,45.1918],[-40.9608,-0.211038,44.912],[-41.2162,-0.493974,45.5862],[-40.674,-0.73989,45.1918],[-40.4582,-0.662411,44.5731],[-40.9608,-0.211038,44.912],[-40.9608,-0.211038,44.912],[-40.4582,-0.662411,44.5731],[-40.7928,-0.126286,44.1956],[-40.7928,-0.126286,44.1956],[-40.4582,-0.662411,44.5731],[-40.3141,-0.629313,43.8208],[-40.0198,-1.26138,44.1709],[-40.3141,-0.629313,43.8208],[-40.4582,-0.662411,44.5731],[-40.674,-0.73989,45.1918],[-40.263,-1.32429,44.9613],[-40.4582,-0.662411,44.5731],[-40.7472,-1.28295,45.6679],[-40.9276,-2.12818,46.1863],[-40.2212,-2.20129,45.3755],[-39.8261,-2.04066,44.5063],[-40.2212,-2.20129,45.3755],[-39.7145,-2.84038,44.7143],[-40.263,-1.32429,44.9613],[-40.0198,-1.26138,44.1709],[-40.4582,-0.662411,44.5731],[-39.4926,-2.8123,43.9503],[-39.6601,-1.9411,43.6584],[-39.8261,-2.04066,44.5063],[-39.6601,-1.9411,43.6584],[-39.4269,-2.67912,42.9546],[-39.6675,-1.8101,42.9233],[-40.3141,-0.629313,43.8208],[-40.0198,-1.26138,44.1709],[-39.9369,-1.20889,43.3686],[-40.0401,-1.21132,42.4738],[-40.5712,-0.414203,42.6282],[-40.2592,-0.672489,43.1363],[-40.7928,-0.126286,44.1956],[-40.3141,-0.629313,43.8208],[-40.6879,-0.165618,43.4165],[-41.2806,0.209088,44.5254],[-40.9608,-0.211038,44.912],[-40.7928,-0.126286,44.1956],[-41.5906,0.131258,45.1471],[-41.2806,0.209088,44.5254],[-41.9571,0.543984,44.4071],[-41.9571,0.543984,44.4071],[-42.95,0.706135,44.7529],[-42.2651,0.392295,45.2379],[-43.9625,0.435411,45.359],[-42.95,0.706135,44.7529],[-43.7663,0.860954,44.461],[-44.5379,0.772354,44.4312],[-43.9625,0.435411,45.359],[-43.7663,0.860954,44.461],[-44.9073,0.450819,45.0224],[-43.9625,0.435411,45.359],[-44.5379,0.772354,44.4312],[-45.5464,0.546842,44.2338],[-44.9073,0.450819,45.0224],[-44.5379,0.772354,44.4312],[-44.9073,0.450819,45.0224],[-45.5464,0.546842,44.2338],[-45.4408,0.177683,45.1558],[-45.4408,0.177683,45.1558],[-44.8996,0.0291477,45.6789],[-44.9073,0.450819,45.0224],[-44.8996,0.0291477,45.6789],[-45.4408,0.177683,45.1558],[-45.5865,-0.272975,45.6285],[-46.0849,-0.14167,44.953],[-45.5865,-0.272975,45.6285],[-45.4408,0.177683,45.1558],[-46.0849,-0.14167,44.953],[-46.1441,-0.943096,45.7465],[-45.5865,-0.272975,45.6285],[-46.1441,-0.943096,45.7465],[-45.1265,-0.73252,46.2798],[-45.5865,-0.272975,45.6285],[-45.1265,-0.73252,46.2798],[-46.1441,-0.943096,45.7465],[-45.6601,-1.5278,46.5175],[-46.1441,-0.943096,45.7465],[-46.0849,-0.14167,44.953],[-46.8899,-0.733751,44.7328],[-46.8899,-0.733751,44.7328],[-46.9667,-1.72356,45.4728],[-46.1441,-0.943096,45.7465],[-46.3245,-1.7331,46.1769],[-46.1441,-0.943096,45.7465],[-46.9667,-1.72356,45.4728],[-47.6494,-1.44311,44.3277],[-46.9667,-1.72356,45.4728],[-46.8899,-0.733751,44.7328],[-46.8899,-0.733751,44.7328],[-47.4414,-0.553375,43.6762],[-47.6494,-1.44311,44.3277],[-47.4414,-0.553375,43.6762],[-46.8899,-0.733751,44.7328],[-46.6041,0.102204,43.8912],[-47.6494,-1.44311,44.3277],[-47.6081,-2.39258,44.9737],[-46.9667,-1.72356,45.4728],[-47.6081,-2.39258,44.9737],[-47.0501,-2.75036,45.7579],[-46.9667,-1.72356,45.4728],[-48.2878,-2.28933,43.6715],[-47.6081,-2.39258,44.9737],[-47.6494,-1.44311,44.3277],[-47.6081,-2.39258,44.9737],[-48.2878,-2.28933,43.6715],[-48.0288,-2.8408,44.4816],[-47.6081,-2.39258,44.9737],[-48.0288,-2.8408,44.4816],[-47.5781,-3.36505,45.1506],[-48.2956,-3.41146,43.9015],[-47.5781,-3.36505,45.1506],[-48.0288,-2.8408,44.4816],[-46.8899,-0.733751,44.7328],[-46.0849,-0.14167,44.953],[-46.6041,0.102204,43.8912],[-46.6041,0.102204,43.8912],[-46.0849,-0.14167,44.953],[-45.5464,0.546842,44.2338],[-46.6041,0.102204,43.8912],[-45.5464,0.546842,44.2338],[-46.0702,0.712728,43.3153],[-46.6041,0.102204,43.8912],[-46.0702,0.712728,43.3153],[-46.6016,0.693893,42.5615],[-46.0702,0.712728,43.3153],[-45.5464,0.546842,44.2338],[-45.5466,0.929421,43.2616],[-45.5466,0.929421,43.2616],[-45.9177,1.03669,42.5187],[-46.0702,0.712728,43.3153],[-45.5464,0.546842,44.2338],[-44.8972,0.987343,43.5141],[-45.5466,0.929421,43.2616],[-45.5466,0.929421,43.2616],[-44.8972,0.987343,43.5141],[-45.1731,1.19225,42.5959],[-46.0849,-0.14167,44.953],[-45.4408,0.177683,45.1558],[-45.5464,0.546842,44.2338],[-45.5464,0.546842,44.2338],[-44.5379,0.772354,44.4312],[-44.8972,0.987343,43.5141],[-43.5867,1.13593,42.9435],[-44.0816,1.04188,43.6876],[-43.2826,0.987965,43.8429],[-45.1731,1.19225,42.5959],[-44.8972,0.987343,43.5141],[-44.3876,1.21505,42.7552],[-45.1731,1.19225,42.5959],[-45.9177,1.03669,42.5187],[-45.5466,0.929421,43.2616],[-46.6016,0.693893,42.5615],[-46.0702,0.712728,43.3153],[-45.9177,1.03669,42.5187],[-46.6041,0.102204,43.8912],[-46.6016,0.693893,42.5615],[-47.2113,0.142085,42.8466],[-47.7598,0.281211,40.6864],[-47.8862,-0.350177,42.2163],[-47.2017,0.527196,41.7584],[-47.0463,1.01797,40.5638],[-47.7598,0.281211,40.6864],[-47.2017,0.527196,41.7584],[-46.6041,0.102204,43.8912],[-47.2113,0.142085,42.8466],[-47.4414,-0.553375,43.6762],[-47.6494,-1.44311,44.3277],[-47.4414,-0.553375,43.6762],[-48.1456,-1.24048,43.0956],[-47.6494,-1.44311,44.3277],[-48.1456,-1.24048,43.0956],[-48.2878,-2.28933,43.6715],[-48.2878,-2.28933,43.6715],[-48.2956,-3.41146,43.9015],[-48.0288,-2.8408,44.4816],[-47.7942,-4.28642,44.618],[-48.2956,-3.41146,43.9015],[-48.2361,-4.34722,43.792],[-48.5735,-5.22217,40.9571],[-48.162,-5.9973,41.7171],[-48.4543,-5.00396,42.1759],[-48.2772,-6.03634,40.8132],[-48.162,-5.9973,41.7171],[-48.5735,-5.22217,40.9571],[-48.2772,-6.03634,40.8132],[-48.0734,-6.36282,40.2622],[-47.7528,-6.78186,41.0769],[-47.7528,-6.78186,41.0769],[-46.9118,-7.69018,40.896],[-47.2411,-7.32899,41.7914],[-46.6539,-7.70819,39.7369],[-47.5014,-6.99632,39.9723],[-47.1826,-7.12396,39.1677],[-46.822,-6.9499,38.3966],[-46.6539,-7.70819,39.7369],[-47.1826,-7.12396,39.1677],[-47.1826,-7.12396,39.1677],[-47.5378,-6.51745,38.7551],[-46.822,-6.9499,38.3966],[-47.5378,-6.51745,38.7551],[-47.1826,-7.12396,39.1677],[-47.5014,-6.99632,39.9723],[-46.9118,-7.69018,40.896],[-46.2424,-8.22334,40.469],[-46.0985,-8.38042,41.28],[-45.2578,-8.84131,41.4414],[-45.6271,-8.60841,40.6713],[-44.6682,-8.83257,40.3958],[-46.0985,-8.38042,41.28],[-45.7722,-8.53319,42.2176],[-46.5803,-7.93389,42.0026],[-44.9332,-8.96816,42.4215],[-44.6239,-8.89594,43.3221],[-45.4161,-8.56656,43.1129],[-44.6239,-8.89594,43.3221],[-44.9332,-8.96816,42.4215],[-44.0777,-9.23944,42.6709],[-45.7722,-8.53319,42.2176],[-46.1867,-8.04859,42.9581],[-46.5803,-7.93389,42.0026],[-45.4161,-8.56656,43.1129],[-44.6239,-8.89594,43.3221],[-45.092,-8.40981,43.9167],[-45.092,-8.40981,43.9167],[-44.6239,-8.89594,43.3221],[-44.4081,-8.67454,44.0324],[-44.4081,-8.67454,44.0324],[-44.6574,-8.15969,44.624],[-45.092,-8.40981,43.9167],[-44.6574,-8.15969,44.624],[-44.4081,-8.67454,44.0324],[-43.8774,-8.51656,44.4939],[-44.0281,-7.89184,45.1914],[-44.6574,-8.15969,44.624],[-43.8774,-8.51656,44.4939],[-43.8774,-8.51656,44.4939],[-43.346,-8.21879,44.9551],[-44.0281,-7.89184,45.1914],[-43.346,-8.21879,44.9551],[-43.2739,-7.57783,45.5448],[-44.0281,-7.89184,45.1914],[-44.0989,-7.09207,45.8576],[-44.0281,-7.89184,45.1914],[-43.2739,-7.57783,45.5448],[-44.0989,-7.09207,45.8576],[-43.2739,-7.57783,45.5448],[-43.2059,-6.59609,46.2278],[-44.0989,-7.09207,45.8576],[-43.2059,-6.59609,46.2278],[-44.2021,-6.20443,46.4528],[-44.9751,-6.5474,45.9834],[-44.0989,-7.09207,45.8576],[-44.2021,-6.20443,46.4528],[-44.2021,-6.20443,46.4528],[-45.0509,-5.51967,46.5634],[-44.9751,-6.5474,45.9834],[-44.9751,-6.5474,45.9834],[-45.0509,-5.51967,46.5634],[-45.8088,-5.96016,45.9356],[-45.8088,-5.96016,45.9356],[-45.7167,-6.81579,45.3152],[-44.9751,-6.5474,45.9834],[-44.8608,-7.41754,45.3098],[-44.9751,-6.5474,45.9834],[-45.7167,-6.81579,45.3152],[-44.8608,-7.41754,45.3098],[-45.7167,-6.81579,45.3152],[-45.5775,-7.67469,44.4987],[-44.6574,-8.15969,44.624],[-44.8608,-7.41754,45.3098],[-45.5775,-7.67469,44.4987],[-45.8088,-5.96016,45.9356],[-46.4926,-6.09392,45.2305],[-45.7167,-6.81579,45.3152],[-46.4926,-6.09392,45.2305],[-46.4256,-6.88103,44.5365],[-45.7167,-6.81579,45.3152],[-46.4926,-6.09392,45.2305],[-45.8088,-5.96016,45.9356],[-46.4669,-5.43078,45.7604],[-47.1524,-5.16283,45.1024],[-46.4926,-6.09392,45.2305],[-46.4669,-5.43078,45.7604],[-46.7075,-4.66102,45.8893],[-47.1524,-5.16283,45.1024],[-46.4669,-5.43078,45.7604],[-46.4669,-5.43078,45.7604],[-45.983,-5.09197,46.3059],[-46.7075,-4.66102,45.8893],[-45.983,-5.09197,46.3059],[-46.1911,-4.17121,46.4558],[-46.7075,-4.66102,45.8893],[-46.1911,-4.17121,46.4558],[-46.9091,-3.72156,45.9171],[-46.7075,-4.66102,45.8893],[-45.4894,-4.6302,46.7486],[-46.1911,-4.17121,46.4558],[-45.983,-5.09197,46.3059],[-45.0509,-5.51967,46.5634],[-45.4894,-4.6302,46.7486],[-45.983,-5.09197,46.3059],[-45.0509,-5.51967,46.5634],[-44.5618,-4.53474,47.0606],[-45.4894,-4.6302,46.7486],[-44.5618,-4.53474,47.0606],[-45.5067,-3.72829,46.9033],[-45.4894,-4.6302,46.7486],[-44.5618,-4.53474,47.0606],[-44.7363,-3.02637,47.2002],[-45.5067,-3.72829,46.9033],[-44.7363,-3.02637,47.2002],[-45.5873,-2.86134,46.928],[-45.5067,-3.72829,46.9033],[-45.5873,-2.86134,46.928],[-46.3068,-3.11246,46.4722],[-45.5067,-3.72829,46.9033],[-46.3068,-3.11246,46.4722],[-46.1911,-4.17121,46.4558],[-45.5067,-3.72829,46.9033],[-45.2121,-2.18004,46.9722],[-45.5873,-2.86134,46.928],[-44.7363,-3.02637,47.2002],[-44.5618,-4.53474,47.0606],[-44.181,-3.70552,47.3186],[-44.7363,-3.02637,47.2002],[-44.181,-3.70552,47.3186],[-43.6893,-3.005,47.3577],[-44.7363,-3.02637,47.2002],[-43.6893,-3.005,47.3577],[-44.2106,-2.01728,47.1689],[-44.7363,-3.02637,47.2002],[-44.181,-3.70552,47.3186],[-44.5618,-4.53474,47.0606],[-43.6473,-4.22564,47.2681],[-43.6473,-4.22564,47.2681],[-44.5618,-4.53474,47.0606],[-43.6407,-5.04151,47.0518],[-44.5618,-4.53474,47.0606],[-44.2238,-5.44879,46.8596],[-43.6407,-5.04151,47.0518],[-43.6407,-5.04151,47.0518],[-44.2238,-5.44879,46.8596],[-43.6064,-5.79174,46.7497],[-42.787,-5.48101,46.7608],[-43.6407,-5.04151,47.0518],[-43.6064,-5.79174,46.7497],[-43.2059,-6.59609,46.2278],[-42.787,-5.48101,46.7608],[-43.6064,-5.79174,46.7497],[-43.2059,-6.59609,46.2278],[-42.0503,-6.4359,46.0373],[-42.787,-5.48101,46.7608],[-43.2059,-6.59609,46.2278],[-42.518,-7.26729,45.667],[-42.0503,-6.4359,46.0373],[-42.787,-5.48101,46.7608],[-43.0314,-4.63792,47.1458],[-43.6407,-5.04151,47.0518],[-44.2238,-5.44879,46.8596],[-44.2021,-6.20443,46.4528],[-43.6064,-5.79174,46.7497],[-44.2238,-5.44879,46.8596],[-44.5618,-4.53474,47.0606],[-45.0509,-5.51967,46.5634],[-45.5067,-3.72829,46.9033],[-46.1911,-4.17121,46.4558],[-45.4894,-4.6302,46.7486],[-45.8088,-5.96016,45.9356],[-45.983,-5.09197,46.3059],[-46.4669,-5.43078,45.7604],[-45.0509,-5.51967,46.5634],[-45.983,-5.09197,46.3059],[-45.8088,-5.96016,45.9356],[-44.2238,-5.44879,46.8596],[-45.0509,-5.51967,46.5634],[-44.2021,-6.20443,46.4528],[-44.0989,-7.09207,45.8576],[-44.9751,-6.5474,45.9834],[-44.8608,-7.41754,45.3098],[-43.2059,-6.59609,46.2278],[-43.6064,-5.79174,46.7497],[-44.2021,-6.20443,46.4528],[-43.2739,-7.57783,45.5448],[-42.518,-7.26729,45.667],[-43.2059,-6.59609,46.2278],[-42.518,-7.26729,45.667],[-43.2739,-7.57783,45.5448],[-42.5122,-8.05969,44.9696],[-41.6503,-7.3605,45.2267],[-42.518,-7.26729,45.667],[-42.5122,-8.05969,44.9696],[-44.0281,-7.89184,45.1914],[-44.0989,-7.09207,45.8576],[-44.8608,-7.41754,45.3098],[-43.346,-8.21879,44.9551],[-42.5122,-8.05969,44.9696],[-43.2739,-7.57783,45.5448],[-43.8774,-8.51656,44.4939],[-43.0414,-8.68672,44.2931],[-43.346,-8.21879,44.9551],[-44.0281,-7.89184,45.1914],[-44.8608,-7.41754,45.3098],[-44.6574,-8.15969,44.624],[-44.4081,-8.67454,44.0324],[-43.7254,-9.02112,43.6039],[-43.8774,-8.51656,44.4939],[-44.6239,-8.89594,43.3221],[-43.7254,-9.02112,43.6039],[-44.4081,-8.67454,44.0324],[-44.6574,-8.15969,44.624],[-45.5775,-7.67469,44.4987],[-45.092,-8.40981,43.9167],[-46.3655,-7.51814,43.7468],[-46.1867,-8.04859,42.9581],[-45.7537,-8.10668,43.6838],[-46.4256,-6.88103,44.5365],[-45.5775,-7.67469,44.4987],[-45.7167,-6.81579,45.3152],[-47.0061,-6.79651,43.7448],[-47.0265,-7.24549,42.8076],[-46.3655,-7.51814,43.7468],[-46.4926,-6.09392,45.2305],[-47.1627,-6.06463,44.3377],[-46.4256,-6.88103,44.5365],[-47.7666,-6.02464,43.0612],[-47.0265,-7.24549,42.8076],[-47.0061,-6.79651,43.7448],[-47.7666,-6.02464,43.0612],[-47.8029,-5.15809,44.0713],[-48.2611,-4.90947,43.2425],[-47.1524,-5.16283,45.1024],[-47.1627,-6.06463,44.3377],[-46.4926,-6.09392,45.2305],[-47.7942,-4.28642,44.618],[-48.2361,-4.34722,43.792],[-47.8029,-5.15809,44.0713],[-47.1524,-5.16283,45.1024],[-46.7075,-4.66102,45.8893],[-47.2854,-4.24965,45.3922],[-47.7942,-4.28642,44.618],[-47.5781,-3.36505,45.1506],[-48.2956,-3.41146,43.9015],[-47.2854,-4.24965,45.3922],[-46.7075,-4.66102,45.8893],[-46.9091,-3.72156,45.9171],[-47.5781,-3.36505,45.1506],[-47.0501,-2.75036,45.7579],[-47.6081,-2.39258,44.9737],[-46.9091,-3.72156,45.9171],[-46.1911,-4.17121,46.4558],[-46.3068,-3.11246,46.4722],[-46.9667,-1.72356,45.4728],[-47.0501,-2.75036,45.7579],[-46.5843,-2.29982,46.1658],[-45.9898,-2.27432,46.6221],[-46.3068,-3.11246,46.4722],[-45.5873,-2.86134,46.928],[-46.9667,-1.72356,45.4728],[-46.5843,-2.29982,46.1658],[-46.3245,-1.7331,46.1769],[-46.1441,-0.943096,45.7465],[-46.3245,-1.7331,46.1769],[-45.6601,-1.5278,46.5175],[-45.9898,-2.27432,46.6221],[-45.5873,-2.86134,46.928],[-45.2121,-2.18004,46.9722],[-45.2121,-2.18004,46.9722],[-44.7363,-3.02637,47.2002],[-44.2106,-2.01728,47.1689],[-45.6601,-1.5278,46.5175],[-44.9132,-1.46334,46.8345],[-45.1265,-0.73252,46.2798],[-45.1265,-0.73252,46.2798],[-44.8996,0.0291477,45.6789],[-45.5865,-0.272975,45.6285],[-44.8996,0.0291477,45.6789],[-43.9625,0.435411,45.359],[-44.9073,0.450819,45.0224],[-42.9087,0.279056,45.6842],[-43.9625,0.435411,45.359],[-43.4728,0.022436,46.1176],[-44.2207,-1.01652,46.7815],[-43.4702,-0.536555,46.6251],[-44.2047,-0.236069,46.2148],[-42.9087,0.279056,45.6842],[-43.4728,0.022436,46.1176],[-42.819,-0.22335,46.3415],[-42.2914,-0.639195,46.5106],[-42.0598,-0.162244,45.9025],[-42.819,-0.22335,46.3415],[-42.3549,-1.29072,46.8473],[-41.5705,-1.09913,46.2953],[-42.2914,-0.639195,46.5106],[-42.8275,-0.753016,46.7577],[-43.4702,-0.536555,46.6251],[-43.284,-1.37463,47.0422],[-42.3549,-1.29072,46.8473],[-41.7432,-2.1053,46.7834],[-41.5705,-1.09913,46.2953],[-43.284,-1.37463,47.0422],[-43.3323,-2.23077,47.3142],[-42.6003,-2.09596,47.1656],[-43.3323,-2.23077,47.3142],[-44.2106,-2.01728,47.1689],[-43.6893,-3.005,47.3577],[-44.181,-3.70552,47.3186],[-43.6473,-4.22564,47.2681],[-43.6893,-3.005,47.3577],[-43.6473,-4.22564,47.2681],[-43.6407,-5.04151,47.0518],[-43.0314,-4.63792,47.1458],[-42.787,-5.48101,46.7608],[-42.4141,-4.59762,47.0084],[-43.0314,-4.63792,47.1458],[-42.787,-5.48101,46.7608],[-41.7368,-5.00928,46.5945],[-42.4141,-4.59762,47.0084],[-42.1406,-2.98027,47.0937],[-42.8934,-2.79687,47.3353],[-42.7894,-3.7512,47.249],[-41.2031,-3.23524,46.5594],[-41.7432,-2.1053,46.7834],[-42.1406,-2.98027,47.0937],[-41.2031,-3.23524,46.5594],[-41.1946,-4.30661,46.4932],[-40.5741,-4.12799,45.9824],[-41.7368,-5.00928,46.5945],[-41.8607,-3.99849,46.9083],[-42.4141,-4.59762,47.0084],[-41.1946,-4.30661,46.4932],[-40.9481,-5.07529,46.0971],[-40.5741,-4.12799,45.9824],[-42.787,-5.48101,46.7608],[-42.0503,-6.4359,46.0373],[-41.7368,-5.00928,46.5945],[-41.42,-5.77581,46.1435],[-41.1652,-6.42104,45.5861],[-40.9481,-5.07529,46.0971],[-42.518,-7.26729,45.667],[-41.6503,-7.3605,45.2267],[-42.0503,-6.4359,46.0373],[-40.7404,-6.99714,44.7872],[-40.3691,-5.88906,45.187],[-41.1652,-6.42104,45.5861],[-40.5075,-7.65982,43.7099],[-40.7404,-6.99714,44.7872],[-41.1374,-7.78239,44.5046],[-40.5075,-7.65982,43.7099],[-41.1374,-7.78239,44.5046],[-41.35,-8.38138,43.9428],[-41.799,-8.89159,43.4188],[-41.35,-8.38138,43.9428],[-42.161,-8.64594,44.1358],[-42.5122,-8.05969,44.9696],[-41.7216,-8.12827,44.6075],[-41.6503,-7.3605,45.2267],[-43.346,-8.21879,44.9551],[-43.0414,-8.68672,44.2931],[-42.5122,-8.05969,44.9696],[-42.6654,-9.12487,43.341],[-41.799,-8.89159,43.4188],[-42.161,-8.64594,44.1358],[-43.0414,-8.68672,44.2931],[-43.8774,-8.51656,44.4939],[-43.7254,-9.02112,43.6039],[-42.6654,-9.12487,43.341],[-43.3413,-9.34797,42.8449],[-42.7795,-9.38153,42.4626],[-44.6239,-8.89594,43.3221],[-44.0777,-9.23944,42.6709],[-43.7254,-9.02112,43.6039],[-43.3413,-9.34797,42.8449],[-43.4507,-9.40299,42.0474],[-42.7795,-9.38153,42.4626],[-44.9332,-8.96816,42.4215],[-44.3387,-9.19186,41.6693],[-44.0777,-9.23944,42.6709],[-43.5645,-9.24181,41.0561],[-42.6018,-9.30713,41.5457],[-43.4507,-9.40299,42.0474],[-44.6682,-8.83257,40.3958],[-44.3387,-9.19186,41.6693],[-45.2578,-8.84131,41.4414],[-42.8341,-9.1382,40.6556],[-43.5645,-9.24181,41.0561],[-43.484,-8.91497,40.1014],[-43.484,-8.91497,40.1014],[-44.1131,-8.5063,39.3482],[-43.3053,-8.55101,39.397],[-45.0698,-8.24208,39.1674],[-44.6682,-8.83257,40.3958],[-45.7327,-8.31911,39.8514],[-44.1131,-8.5063,39.3482],[-43.6531,-8.17973,38.8351],[-43.3053,-8.55101,39.397],[-43.5205,-7.55753,38.2341],[-42.8743,-8.08414,38.9626],[-43.6531,-8.17973,38.8351],[-43.5398,-6.55285,37.3979],[-43.5205,-7.55753,38.2341],[-44.2158,-7.13945,37.6838],[-44.2158,-7.13945,37.6838],[-45.0749,-7.07289,37.6028],[-44.4662,-6.42547,37.0495],[-45.0698,-8.24208,39.1674],[-45.3386,-7.67722,38.3343],[-44.4458,-7.83291,38.4099],[-45.9888,-7.12483,37.9276],[-45.8529,-6.58725,37.2968],[-45.0749,-7.07289,37.6028],[-45.0698,-8.24208,39.1674],[-45.9754,-7.75109,38.8473],[-45.3386,-7.67722,38.3343],[-46.822,-6.9499,38.3966],[-45.9754,-7.75109,38.8473],[-46.6539,-7.70819,39.7369],[-45.8529,-6.58725,37.2968],[-45.9888,-7.12483,37.9276],[-46.6118,-6.35035,37.4916],[-46.6118,-6.35035,37.4916],[-47.0401,-5.37223,37.0331],[-46.3281,-5.69435,36.7798],[-47.0401,-5.37223,37.0331],[-47.7794,-5.07742,37.6392],[-47.5078,-4.31506,36.8216],[-47.7794,-5.07742,37.6392],[-48.1453,-3.90072,37.5481],[-47.5078,-4.31506,36.8216],[-48.1453,-3.90072,37.5481],[-47.7794,-5.07742,37.6392],[-48.2547,-4.86813,38.2761],[-46.822,-6.9499,38.3966],[-47.5378,-6.51745,38.7551],[-47.3501,-6.05752,37.9142],[-48.0559,-6.136,39.4239],[-47.5378,-6.51745,38.7551],[-47.5014,-6.99632,39.9723],[-48.0559,-6.136,39.4239],[-48.4348,-5.64412,40.0748],[-48.4167,-5.24647,39.1343],[-47.7794,-5.07742,37.6392],[-47.9699,-5.70589,38.4864],[-48.2547,-4.86813,38.2761],[-48.4167,-5.24647,39.1343],[-48.4348,-5.64412,40.0748],[-48.7073,-4.65688,39.9208],[-48.2547,-4.86813,38.2761],[-48.5715,-4.23111,38.7653],[-48.1453,-3.90072,37.5481],[-48.2021,-2.66192,37.0829],[-48.5688,-2.91882,38.2175],[-48.4347,-1.82944,37.5458],[-48.4347,-1.82944,37.5458],[-48.5688,-2.91882,38.2175],[-48.6595,-1.82974,38.6436],[-48.4816,-1.21613,37.9344],[-48.4347,-1.82944,37.5458],[-48.6595,-1.82974,38.6436],[-48.4816,-1.21613,37.9344],[-48.3654,-1.03126,37.332],[-48.4347,-1.82944,37.5458],[-48.4816,-1.21613,37.9344],[-48.3782,-0.724474,37.719],[-48.3654,-1.03126,37.332],[-48.3782,-0.724474,37.719],[-48.2605,-0.504428,37.1295],[-48.3654,-1.03126,37.332],[-48.3654,-1.03126,37.332],[-48.2605,-0.504428,37.1295],[-48.2529,-0.765696,36.913],[-48.3782,-0.724474,37.719],[-48.2743,-0.357133,37.3971],[-48.2605,-0.504428,37.1295],[-48.2743,-0.357133,37.3971],[-48.2083,-0.167841,37.216],[-48.2605,-0.504428,37.1295],[-48.2083,-0.167841,37.216],[-48.1821,-0.22436,36.9543],[-48.2605,-0.504428,37.1295],[-48.1821,-0.22436,36.9543],[-48.1705,-0.410318,36.7552],[-48.2605,-0.504428,37.1295],[-48.0953,-0.0348074,36.6893],[-48.1705,-0.410318,36.7552],[-48.1821,-0.22436,36.9543],[-48.1477,-0.0215423,37.0102],[-48.0953,-0.0348074,36.6893],[-48.1821,-0.22436,36.9543],[-48.0953,-0.0348074,36.6893],[-48.1477,-0.0215423,37.0102],[-48.0802,0.242576,37.0616],[-48.0953,-0.0348074,36.6893],[-48.0802,0.242576,37.0616],[-47.9438,0.543888,36.6327],[-48.0057,0.255717,36.4963],[-48.0953,-0.0348074,36.6893],[-47.9438,0.543888,36.6327],[-48.0057,0.255717,36.4963],[-47.9438,0.543888,36.6327],[-47.9113,0.4525,36.2469],[-48.0246,0.0647995,36.4004],[-48.0057,0.255717,36.4963],[-47.9113,0.4525,36.2469],[-48.0246,0.0647995,36.4004],[-47.9113,0.4525,36.2469],[-47.939,0.0821074,36.0716],[-47.9113,0.4525,36.2469],[-47.8503,0.385832,35.9036],[-47.939,0.0821074,36.0716],[-47.8503,0.385832,35.9036],[-47.9113,0.4525,36.2469],[-47.7655,0.768788,35.9195],[-47.8503,0.385832,35.9036],[-47.7655,0.768788,35.9195],[-47.7564,0.525383,35.6327],[-47.8148,0.0368927,35.6355],[-47.8503,0.385832,35.9036],[-47.7564,0.525383,35.6327],[-47.6625,0.487684,35.2777],[-47.8148,0.0368927,35.6355],[-47.7564,0.525383,35.6327],[-47.6172,0.897397,35.4153],[-47.6625,0.487684,35.2777],[-47.7564,0.525383,35.6327],[-47.7655,0.768788,35.9195],[-47.6172,0.897397,35.4153],[-47.7564,0.525383,35.6327],[-47.5561,1.27432,35.6477],[-47.6172,0.897397,35.4153],[-47.7655,0.768788,35.9195],[-47.5561,1.27432,35.6477],[-47.7655,0.768788,35.9195],[-47.641,1.18455,35.9776],[-47.7655,0.768788,35.9195],[-47.6676,1.19745,36.4246],[-47.641,1.18455,35.9776],[-47.6676,1.19745,36.4246],[-47.513,1.47084,35.9551],[-47.641,1.18455,35.9776],[-47.6676,1.19745,36.4246],[-47.7655,0.768788,35.9195],[-47.8394,0.770507,36.3699],[-47.8394,0.770507,36.3699],[-47.836,0.859932,36.6359],[-47.6676,1.19745,36.4246],[-47.836,0.859932,36.6359],[-47.764,1.04147,36.8948],[-47.6676,1.19745,36.4246],[-47.836,0.859932,36.6359],[-47.895,0.750059,36.9085],[-47.764,1.04147,36.8948],[-47.895,0.750059,36.9085],[-47.8257,0.909439,37.2387],[-47.764,1.04147,36.8948],[-47.895,0.750059,36.9085],[-48.0076,0.494883,37.309],[-47.8257,0.909439,37.2387],[-48.0076,0.494883,37.309],[-47.895,0.750059,36.9085],[-47.9922,0.506987,36.9733],[-47.9922,0.506987,36.9733],[-48.0802,0.242576,37.0616],[-48.0076,0.494883,37.309],[-48.1324,0.159887,37.3848],[-48.0076,0.494883,37.309],[-48.0802,0.242576,37.0616],[-48.1515,0.0475168,37.1659],[-48.1324,0.159887,37.3848],[-48.0802,0.242576,37.0616],[-48.1324,0.159887,37.3848],[-48.1515,0.0475168,37.1659],[-48.2083,-0.167841,37.216],[-48.1324,0.159887,37.3848],[-48.2083,-0.167841,37.216],[-48.2084,-0.0580906,37.549],[-48.0921,0.304873,37.758],[-48.1324,0.159887,37.3848],[-48.2084,-0.0580906,37.549],[-48.2331,-0.0622069,38.0416],[-48.0921,0.304873,37.758],[-48.2084,-0.0580906,37.549],[-48.4465,-0.770047,38.6449],[-48.2331,-0.0622069,38.0416],[-48.2084,-0.0580906,37.549],[-48.2084,-0.0580906,37.549],[-48.3782,-0.724474,37.719],[-48.4465,-0.770047,38.6449],[-48.119,0.214038,38.3511],[-48.0921,0.304873,37.758],[-48.2331,-0.0622069,38.0416],[-48.1477,-0.0215423,37.0102],[-48.2083,-0.167841,37.216],[-48.1515,0.0475168,37.1659],[-48.0921,0.304873,37.758],[-48.0076,0.494883,37.309],[-48.1324,0.159887,37.3848],[-48.0076,0.494883,37.309],[-48.0921,0.304873,37.758],[-47.8895,0.753082,37.6326],[-47.9438,0.543888,36.6327],[-47.9922,0.506987,36.9733],[-47.895,0.750059,36.9085],[-47.836,0.859932,36.6359],[-47.9438,0.543888,36.6327],[-47.895,0.750059,36.9085],[-47.9438,0.543888,36.6327],[-47.836,0.859932,36.6359],[-47.8394,0.770507,36.3699],[-47.9113,0.4525,36.2469],[-47.8394,0.770507,36.3699],[-47.7655,0.768788,35.9195],[-47.9438,0.543888,36.6327],[-47.8394,0.770507,36.3699],[-47.9113,0.4525,36.2469],[-48.0953,-0.0348074,36.6893],[-48.0057,0.255717,36.4963],[-48.0246,0.0647995,36.4004],[-48.0953,-0.0348074,36.6893],[-48.0246,0.0647995,36.4004],[-48.0712,-0.260412,36.4245],[-48.0802,0.242576,37.0616],[-47.9922,0.506987,36.9733],[-47.9438,0.543888,36.6327],[-48.1477,-0.0215423,37.0102],[-48.1515,0.0475168,37.1659],[-48.0802,0.242576,37.0616],[-48.2083,-0.167841,37.216],[-48.1477,-0.0215423,37.0102],[-48.1821,-0.22436,36.9543],[-48.2083,-0.167841,37.216],[-48.2743,-0.357133,37.3971],[-48.2084,-0.0580906,37.549],[-48.2084,-0.0580906,37.549],[-48.2743,-0.357133,37.3971],[-48.3782,-0.724474,37.719],[-48.4816,-1.21613,37.9344],[-48.4465,-0.770047,38.6449],[-48.3782,-0.724474,37.719],[-47.6926,-3.0665,36.3679],[-47.5078,-4.31506,36.8216],[-48.1453,-3.90072,37.5481],[-47.4784,-2.55081,35.7851],[-47.2505,-2.83908,35.7023],[-47.6926,-3.0665,36.3679],[-47.2505,-2.83908,35.7023],[-46.8396,-2.69104,35.2346],[-47.0175,-3.60433,35.948],[-46.7519,-2.39181,34.963],[-46.513,-2.74817,35.0087],[-46.8396,-2.69104,35.2346],[-46.6494,-2.10083,34.6684],[-46.7519,-2.39181,34.963],[-46.8959,-2.10036,34.9036],[-47.0717,-1.75467,34.8878],[-46.8322,-1.88388,34.6975],[-46.8959,-2.10036,34.9036],[-47.3884,-1.52096,35.1698],[-47.1176,-1.44523,34.7555],[-47.0717,-1.75467,34.8878],[-47.3884,-1.52096,35.1698],[-47.3337,-1.19456,34.9096],[-47.1176,-1.44523,34.7555],[-47.5233,-2.09176,35.6215],[-47.2876,-1.92981,35.2402],[-47.1512,-2.37393,35.3374],[-47.3337,-1.19456,34.9096],[-47.3884,-1.52096,35.1698],[-47.5228,-1.10856,35.1708],[-47.5228,-1.10856,35.1708],[-47.6352,-0.830397,35.2664],[-47.4625,-0.856908,34.9583],[-47.7832,-0.561271,35.5402],[-47.6151,-0.486998,35.1241],[-47.6352,-0.830397,35.2664],[-48.0125,-1.2897,36.1478],[-48.0637,-1.09307,36.2542],[-47.9398,-0.95284,35.9523],[-47.9398,-0.95284,35.9523],[-48.0637,-1.09307,36.2542],[-48.1171,-0.703955,36.4586],[-48.0125,-1.2897,36.1478],[-48.1131,-1.38036,36.4234],[-48.0637,-1.09307,36.2542],[-47.7355,-1.1052,35.5625],[-47.7309,-1.62062,35.7301],[-47.8947,-1.33618,35.9186],[-47.7309,-1.62062,35.7301],[-47.5233,-2.09176,35.6215],[-47.7916,-2.00862,35.9638],[-47.6993,-2.39533,35.9912],[-47.9465,-2.28899,36.358],[-47.7916,-2.00862,35.9638],[-48.2021,-2.66192,37.0829],[-48.1632,-1.95792,36.6932],[-47.9465,-2.28899,36.358],[-48.1131,-1.38036,36.4234],[-48.0125,-1.2897,36.1478],[-47.9706,-1.69401,36.1736],[-48.1632,-1.95792,36.6932],[-48.2021,-2.66192,37.0829],[-48.4347,-1.82944,37.5458],[-48.3654,-1.03126,37.332],[-48.294,-1.19659,36.9743],[-48.4347,-1.82944,37.5458],[-48.1171,-0.703955,36.4586],[-48.0637,-1.09307,36.2542],[-48.1131,-1.38036,36.4234],[-48.3654,-1.03126,37.332],[-48.2529,-0.765696,36.913],[-48.294,-1.19659,36.9743],[-48.1705,-0.410318,36.7552],[-48.2529,-0.765696,36.913],[-48.2605,-0.504428,37.1295],[-48.0953,-0.0348074,36.6893],[-48.0712,-0.260412,36.4245],[-48.1705,-0.410318,36.7552],[-47.9591,-0.394588,36.0116],[-47.9398,-0.95284,35.9523],[-48.1171,-0.703955,36.4586],[-47.939,0.0821074,36.0716],[-48.0712,-0.260412,36.4245],[-48.0246,0.0647995,36.4004],[-47.8148,0.0368927,35.6355],[-47.939,0.0821074,36.0716],[-47.8503,0.385832,35.9036],[-47.7832,-0.561271,35.5402],[-47.9398,-0.95284,35.9523],[-47.9591,-0.394588,36.0116],[-47.7832,-0.561271,35.5402],[-47.6898,-0.160942,35.2452],[-47.6151,-0.486998,35.1241],[-47.6867,0.153359,35.2343],[-47.8148,0.0368927,35.6355],[-47.6625,0.487684,35.2777],[-47.4919,0.481967,34.8034],[-47.4519,0.174338,34.7047],[-47.586,0.314835,35.0003],[-47.0883,0.263273,34.0234],[-47.2394,0.455702,34.2874],[-47.0289,0.597067,33.8945],[-47.0883,0.263273,34.0234],[-47.0289,0.597067,33.8945],[-46.8699,0.247826,33.6723],[-47.0233,-0.0367939,33.9852],[-47.0883,0.263273,34.0234],[-46.8699,0.247826,33.6723],[-46.8177,-0.108255,33.6999],[-47.0233,-0.0367939,33.9852],[-46.8699,0.247826,33.6723],[-46.9056,-0.368069,33.9277],[-47.0233,-0.0367939,33.9852],[-46.8177,-0.108255,33.6999],[-46.9056,-0.368069,33.9277],[-46.8177,-0.108255,33.6999],[-46.6083,-0.394685,33.5355],[-46.8177,-0.108255,33.6999],[-46.6403,0.00417488,33.4004],[-46.6083,-0.394685,33.5355],[-46.6083,-0.394685,33.5355],[-46.6403,0.00417488,33.4004],[-46.4463,-0.164123,33.1941],[-47.0233,-0.0367939,33.9852],[-46.9056,-0.368069,33.9277],[-47.1559,-0.329142,34.2854],[-46.9056,-0.368069,33.9277],[-46.9913,-0.684327,34.1882],[-47.1559,-0.329142,34.2854],[-46.9913,-0.684327,34.1882],[-47.2017,-0.613675,34.4473],[-47.1559,-0.329142,34.2854],[-47.2364,0.0543142,34.3182],[-47.3864,-0.203816,34.6261],[-47.4519,0.174338,34.7047],[-47.1559,-0.329142,34.2854],[-47.2017,-0.613675,34.4473],[-47.3638,-0.542407,34.6743],[-47.3864,-0.203816,34.6261],[-47.5494,-0.167296,34.9231],[-47.4519,0.174338,34.7047],[-47.6151,-0.486998,35.1241],[-47.6898,-0.160942,35.2452],[-47.5494,-0.167296,34.9231],[-47.4625,-0.856908,34.9583],[-47.6352,-0.830397,35.2664],[-47.6151,-0.486998,35.1241],[-47.3638,-0.542407,34.6743],[-47.4901,-0.571098,34.8906],[-47.4779,-0.388129,34.819],[-47.2017,-0.613675,34.4473],[-47.2338,-0.878308,34.6142],[-47.3638,-0.542407,34.6743],[-47.5228,-1.10856,35.1708],[-47.4625,-0.856908,34.9583],[-47.3337,-1.19456,34.9096],[-47.1176,-1.44523,34.7555],[-47.3337,-1.19456,34.9096],[-47.1715,-1.16628,34.6608],[-47.1176,-1.44523,34.7555],[-47.1715,-1.16628,34.6608],[-46.9549,-1.11839,34.3684],[-46.9913,-0.684327,34.1882],[-47.2338,-0.878308,34.6142],[-47.2017,-0.613675,34.4473],[-46.7349,-0.940538,33.9914],[-46.5893,-1.35854,34.0966],[-46.9549,-1.11839,34.3684],[-46.9056,-0.368069,33.9277],[-46.7778,-0.629996,33.8691],[-46.9913,-0.684327,34.1882],[-46.5832,-0.760828,33.6972],[-46.4408,-1.05805,33.7199],[-46.7349,-0.940538,33.9914],[-46.7778,-0.629996,33.8691],[-46.9056,-0.368069,33.9277],[-46.6083,-0.394685,33.5355],[-46.4408,-1.05805,33.7199],[-46.5832,-0.760828,33.6972],[-46.3049,-0.760452,33.3718],[-46.3303,-0.374653,33.1577],[-46.6083,-0.394685,33.5355],[-46.4463,-0.164123,33.1941],[-46.2311,-0.130325,32.891],[-46.3303,-0.374653,33.1577],[-46.4463,-0.164123,33.1941],[-46.4274,0.0823161,33.0617],[-46.2311,-0.130325,32.891],[-46.4463,-0.164123,33.1941],[-46.3049,-0.760452,33.3718],[-45.9276,-0.778127,32.9516],[-46.012,-0.985104,33.1964],[-45.9276,-0.778127,32.9516],[-45.6912,-0.631999,32.6242],[-45.7886,-1.03711,33.0215],[-46.0463,-0.455627,32.8655],[-46.3303,-0.374653,33.1577],[-46.2311,-0.130325,32.891],[-46.2191,0.13504,32.7465],[-46.0853,0.0142969,32.6175],[-46.2311,-0.130325,32.891],[-45.9309,-0.210657,32.5717],[-45.5053,0.281345,31.8127],[-45.6912,-0.631999,32.6242],[-46.2191,0.13504,32.7465],[-45.9424,0.29878,32.3101],[-46.0853,0.0142969,32.6175],[-46.4274,0.0823161,33.0617],[-46.2191,0.13504,32.7465],[-46.2311,-0.130325,32.891],[-46.6403,0.00417488,33.4004],[-46.4274,0.0823161,33.0617],[-46.4463,-0.164123,33.1941],[-46.6403,0.00417488,33.4004],[-46.8177,-0.108255,33.6999],[-46.8699,0.247826,33.6723],[-47.0289,0.597067,33.8945],[-46.7909,0.664861,33.465],[-46.8699,0.247826,33.6723],[-46.5426,0.671655,33.0529],[-46.2785,0.541018,32.6958],[-46.6613,0.33306,33.3233],[-46.5776,0.976537,33.0654],[-46.4024,0.865768,32.7951],[-46.5426,0.671655,33.0529],[-46.7909,0.664861,33.465],[-47.0289,0.597067,33.8945],[-46.9553,0.975092,33.7604],[-46.5776,0.976537,33.0654],[-46.754,0.988842,33.3697],[-46.6508,1.31193,33.2132],[-46.6508,1.31193,33.2132],[-46.555,1.7417,33.1257],[-46.3081,1.68933,32.661],[-46.7494,1.61447,33.4817],[-46.7589,1.89805,33.6423],[-46.5753,2.06846,33.344],[-46.891,1.80404,33.9143],[-46.7589,1.89805,33.6423],[-46.7494,1.61447,33.4817],[-46.7589,1.89805,33.6423],[-46.891,1.80404,33.9143],[-46.7571,2.11067,33.8301],[-46.3081,1.68933,32.661],[-46.555,1.7417,33.1257],[-46.3998,2.07175,32.9511],[-46.343,2.40684,33.0574],[-46.0528,2.49276,32.5155],[-46.3998,2.07175,32.9511],[-46.343,2.40684,33.0574],[-45.9955,2.94114,32.774],[-46.0528,2.49276,32.5155],[-46.5753,2.06846,33.344],[-46.7589,1.89805,33.6423],[-46.7571,2.11067,33.8301],[-45.9955,2.94114,32.774],[-46.343,2.40684,33.0574],[-46.5524,2.45798,33.684],[-45.9586,3.27983,33.1375],[-46.2565,2.88076,33.3798],[-46.4088,2.87469,33.9425],[-45.9586,3.27983,33.1375],[-46.4088,2.87469,33.9425],[-46.0295,3.37373,33.6201],[-45.7695,3.61657,33.3001],[-45.9586,3.27983,33.1375],[-46.0295,3.37373,33.6201],[-45.9445,3.54412,33.9062],[-45.7695,3.61657,33.3001],[-46.0295,3.37373,33.6201],[-46.0295,3.37373,33.6201],[-46.1741,3.26172,33.9831],[-45.9445,3.54412,33.9062],[-46.1741,3.26172,33.9831],[-46.1101,3.38871,34.2186],[-45.9445,3.54412,33.9062],[-45.7695,3.61657,33.3001],[-45.9445,3.54412,33.9062],[-45.5426,3.95247,33.7649],[-45.3953,3.9857,32.9677],[-45.7695,3.61657,33.3001],[-45.5426,3.95247,33.7649],[-45.3953,3.9857,32.9677],[-45.6367,3.51478,32.6712],[-45.7695,3.61657,33.3001],[-45.6367,3.51478,32.6712],[-45.3953,3.9857,32.9677],[-45.0725,4.14257,32.2805],[-45.5426,3.95247,33.7649],[-45.9445,3.54412,33.9062],[-45.8628,3.67483,34.2146],[-46.1741,3.26172,33.9831],[-46.0295,3.37373,33.6201],[-46.4088,2.87469,33.9425],[-46.3249,3.10589,34.2562],[-46.1741,3.26172,33.9831],[-46.4088,2.87469,33.9425],[-45.7695,3.61657,33.3001],[-45.6367,3.51478,32.6712],[-45.9586,3.27983,33.1375],[-45.9955,2.94114,32.774],[-45.6299,2.96747,32.0663],[-46.0528,2.49276,32.5155],[-45.6645,2.16875,31.7392],[-46.0528,2.49276,32.5155],[-45.6299,2.96747,32.0663],[-45.6645,2.16875,31.7392],[-45.1157,1.9194,30.8732],[-45.6002,1.45189,31.5568],[-44.275,1.68812,29.8217],[-44.5147,2.4532,30.0255],[-43.7412,2.58616,29.006],[-45.1157,1.9194,30.8732],[-45.3087,0.958784,31.2837],[-45.6002,1.45189,31.5568],[-45.3087,0.958784,31.2837],[-44.2703,0.600717,30.2503],[-45.5053,0.281345,31.8127],[-43.7574,-0.0461139,30.2516],[-44.4646,-0.206121,31.0531],[-44.2703,0.600717,30.2503],[-43.7794,-0.739034,31.1296],[-44.4646,-0.206121,31.0531],[-43.7574,-0.0461139,30.2516],[-43.0242,-0.475907,30.2487],[-41.8481,-0.345664,29.5914],[-42.7389,-1.02468,31.1576],[-43.5495,-1.48871,32.2294],[-44.6751,-1.55849,32.7942],[-43.7794,-0.739034,31.1296],[-43.3066,-2.00058,33.2116],[-44.367,-2.06228,33.3494],[-43.5495,-1.48871,32.2294],[-43.1265,-2.49014,34.1566],[-43.3066,-2.00058,33.2116],[-42.1445,-1.79726,33.3268],[-42.6821,-1.57977,32.4298],[-40.8916,-0.725467,30.469],[-41.3755,-1.28335,32.085],[-40.144,-0.797443,31.4742],[-41.3755,-1.28335,32.085],[-40.8916,-0.725467,30.469],[-41.3755,-1.28335,32.085],[-40.144,-0.797443,31.4742],[-40.8439,-1.18882,32.7607],[-40.8439,-1.18882,32.7607],[-40.144,-0.797443,31.4742],[-39.7178,-0.66146,32.304],[-42.1445,-1.79726,33.3268],[-41.376,-1.54147,33.9507],[-42.2712,-2.29353,34.7661],[-42.5254,-3.00932,35.6318],[-42.2712,-2.29353,34.7661],[-42.0021,-2.49311,35.9139],[-41.773,-2.75564,36.8874],[-42.0021,-2.49311,35.9139],[-41.5123,-1.82375,36.4321],[-41.427,-2.10615,37.4532],[-41.773,-2.75564,36.8874],[-41.5123,-1.82375,36.4321],[-41.1047,-2.4538,38.4544],[-41.2245,-1.35997,38.1559],[-40.9238,-1.65811,39.402],[-40.9238,-1.65811,39.402],[-40.5174,-3.00085,39.4155],[-41.1047,-2.4538,38.4544],[-41.773,-2.75564,36.8874],[-41.427,-2.10615,37.4532],[-41.4212,-3.08414,37.7712],[-41.2959,-4.12743,38.0566],[-41.7687,-3.55924,37.2807],[-41.4212,-3.08414,37.7712],[-40.5712,-4.08031,39.0234],[-40.7535,-5.05575,38.781],[-41.2959,-4.12743,38.0566],[-40.5174,-3.00085,39.4155],[-40.9806,-3.37022,38.5358],[-41.1047,-2.4538,38.4544],[-40.1003,-4.86989,39.6254],[-40.5712,-4.08031,39.0234],[-40.0005,-3.91773,39.9035],[-39.5974,-3.71897,40.7492],[-40.0005,-3.91773,39.9035],[-39.9558,-3.14139,40.3079],[-40.2703,-2.25407,40.3875],[-40.5174,-3.00085,39.4155],[-40.9238,-1.65811,39.402],[-40.9238,-1.65811,39.402],[-40.7141,-1.18673,40.6698],[-40.2703,-2.25407,40.3875],[-39.9558,-3.14139,40.3079],[-39.6895,-2.78787,41.1953],[-39.5974,-3.71897,40.7492],[-39.6895,-2.78787,41.1953],[-39.6431,-2.17625,42.1495],[-39.3987,-3.01954,41.9861],[-40.0401,-1.21132,42.4738],[-39.6675,-1.8101,42.9233],[-39.6431,-2.17625,42.1495],[-40.5712,-0.414203,42.6282],[-40.0401,-1.21132,42.4738],[-40.5698,-0.773807,41.7432],[-41.0011,-0.134793,42.1257],[-40.5712,-0.414203,42.6282],[-40.5698,-0.773807,41.7432],[-40.7141,-1.18673,40.6698],[-40.0904,-1.7111,41.4251],[-40.2703,-2.25407,40.3875],[-40.7141,-1.18673,40.6698],[-40.9238,-1.65811,39.402],[-41.2953,-0.536683,39.9182],[-41.6685,0.297873,39.0728],[-41.83,0.279477,40.3252],[-41.2953,-0.536683,39.9182],[-41.6685,0.297873,39.0728],[-42.2988,0.870503,39.797],[-41.83,0.279477,40.3252],[-41.2777,-0.205764,41.1884],[-41.0011,-0.134793,42.1257],[-40.5698,-0.773807,41.7432],[-41.1472,0.152652,42.9021],[-40.5712,-0.414203,42.6282],[-41.0011,-0.134793,42.1257],[-41.9364,0.621391,43.2404],[-41.2723,0.287665,43.8007],[-41.1472,0.152652,42.9021],[-42.7984,0.960662,43.0797],[-42.5688,0.843102,43.8998],[-41.9364,0.621391,43.2404],[-42.7984,0.960662,43.0797],[-43.1148,1.09255,42.1602],[-43.5867,1.13593,42.9435],[-43.394,1.28999,41.253],[-43.1148,1.09255,42.1602],[-42.6997,0.951646,41.3434],[-42.352,0.772353,42.239],[-41.6037,0.317164,42.1796],[-42.0216,0.489319,41.3276],[-42.3663,0.75868,40.6419],[-42.0216,0.489319,41.3276],[-41.83,0.279477,40.3252],[-41.83,0.279477,40.3252],[-42.2988,0.870503,39.797],[-42.3663,0.75868,40.6419],[-43.394,1.28999,41.253],[-42.6997,0.951646,41.3434],[-42.9284,1.22045,40.3927],[-43.8653,1.29779,42.0084],[-43.394,1.28999,41.253],[-44.0211,1.49746,41.1665],[-44.0851,1.93204,39.8782],[-44.4272,1.77809,40.4387],[-43.6951,1.60128,40.4119],[-44.6873,1.44186,41.7133],[-43.8653,1.29779,42.0084],[-44.0211,1.49746,41.1665],[-45.2026,1.75782,40.5886],[-45.5769,1.34544,41.7396],[-44.6873,1.44186,41.7133],[-45.5769,1.34544,41.7396],[-45.2026,1.75782,40.5886],[-45.8688,1.5464,40.8427],[-44.4272,1.77809,40.4387],[-44.4472,2.124,39.6023],[-44.9296,2.012,39.9222],[-44.9296,2.012,39.9222],[-45.184,2.17794,39.4843],[-45.3871,1.99739,39.8732],[-45.7559,2.00697,39.6339],[-45.3871,1.99739,39.8732],[-45.5203,2.16376,39.38],[-45.7559,2.00697,39.6339],[-46.0077,1.97791,39.494],[-45.9774,1.85469,39.8599],[-46.0077,1.97791,39.494],[-46.4155,1.55877,40.1452],[-45.9774,1.85469,39.8599],[-45.2026,1.75782,40.5886],[-45.7085,1.80672,40.2091],[-45.8688,1.5464,40.8427],[-46.3936,1.11028,41.564],[-45.5769,1.34544,41.7396],[-45.8688,1.5464,40.8427],[-47.0463,1.01797,40.5638],[-47.2017,0.527196,41.7584],[-46.3936,1.11028,41.564],[-46.9178,1.40695,39.6797],[-47.4194,1.00398,39.5354],[-47.0463,1.01797,40.5638],[-46.9178,1.40695,39.6797],[-47.1303,1.3949,39.2016],[-47.4194,1.00398,39.5354],[-47.334,1.28084,38.9561],[-47.4194,1.00398,39.5354],[-47.1303,1.3949,39.2016],[-47.1303,1.3949,39.2016],[-46.9178,1.40695,39.6797],[-46.834,1.64201,39.1534],[-46.0077,1.97791,39.494],[-46.3104,1.83891,39.5273],[-46.4155,1.55877,40.1452],[-46.47,1.93092,38.9985],[-46.3104,1.83891,39.5273],[-46.1463,2.01682,39.2284],[-46.834,1.64201,39.1534],[-46.9178,1.40695,39.6797],[-46.5836,1.69736,39.5009],[-47.0828,1.56832,38.7432],[-47.1303,1.3949,39.2016],[-46.834,1.64201,39.1534],[-46.7772,1.79284,38.8155],[-46.47,1.93092,38.9985],[-46.6943,2.00234,38.3786],[-46.6943,2.00234,38.3786],[-46.8763,1.9914,38.0032],[-47.1487,1.69776,38.0973],[-47.4177,1.32253,38.4257],[-47.1487,1.69776,38.0973],[-47.4212,1.46232,37.8397],[-47.4177,1.32253,38.4257],[-47.4212,1.46232,37.8397],[-47.6707,1.09069,37.9289],[-47.4212,1.46232,37.8397],[-47.5831,1.29988,37.5819],[-47.6707,1.09069,37.9289],[-47.0828,1.56832,38.7432],[-47.334,1.28084,38.9561],[-47.1303,1.3949,39.2016],[-47.6756,0.978032,38.5574],[-47.4177,1.32253,38.4257],[-47.6707,1.09069,37.9289],[-47.6756,0.978032,38.5574],[-47.9423,0.542367,38.6342],[-47.7501,0.763252,38.9617],[-47.4194,1.00398,39.5354],[-47.334,1.28084,38.9561],[-47.5234,1.09572,38.886],[-47.4194,1.00398,39.5354],[-47.7598,0.281211,40.6864],[-47.0463,1.01797,40.5638],[-48.3127,-0.580979,41.1868],[-47.8862,-0.350177,42.2163],[-47.7598,0.281211,40.6864],[-48.3127,-0.580979,41.1868],[-48.6535,-1.37959,41.2508],[-48.4098,-1.07466,42.0508],[-48.5049,-0.762704,39.7067],[-48.7319,-1.45919,40.2662],[-48.5472,-0.877677,40.5361],[-48.7319,-1.45919,40.2662],[-48.8435,-2.10554,39.7583],[-48.8584,-2.38729,40.9837],[-48.6366,-2.01865,42.3475],[-48.4098,-1.07466,42.0508],[-48.6535,-1.37959,41.2508],[-48.6366,-2.01865,42.3475],[-48.8119,-3.01911,42.0897],[-48.628,-2.91169,43.0298],[-48.8308,-3.84822,40.9927],[-48.5818,-3.92724,42.912],[-48.8119,-3.01911,42.0897],[-48.8308,-3.84822,40.9927],[-48.8451,-3.61339,39.6627],[-48.7073,-4.65688,39.9208],[-48.845,-2.69239,39.2576],[-48.5688,-2.91882,38.2175],[-48.8451,-3.61339,39.6627],[-48.8584,-2.38729,40.9837],[-48.8435,-2.10554,39.7583],[-48.9315,-2.93787,40.122],[-48.5688,-2.91882,38.2175],[-48.845,-2.69239,39.2576],[-48.6595,-1.82974,38.6436],[-48.7319,-1.45919,40.2662],[-48.6791,-1.36327,39.3829],[-48.8435,-2.10554,39.7583],[-48.4465,-0.770047,38.6449],[-48.4816,-1.21613,37.9344],[-48.6595,-1.82974,38.6436],[-48.7319,-1.45919,40.2662],[-48.5049,-0.762704,39.7067],[-48.6791,-1.36327,39.3829],[-48.2894,-0.334754,40.2711],[-48.1184,0.0725888,39.2173],[-48.5049,-0.762704,39.7067],[-48.119,0.214038,38.3511],[-48.2331,-0.0622069,38.0416],[-48.4465,-0.770047,38.6449],[-47.7501,0.763252,38.9617],[-47.9423,0.542367,38.6342],[-48.1184,0.0725888,39.2173],[-48.0921,0.304873,37.758],[-48.119,0.214038,38.3511],[-47.9523,0.601373,38.0593],[-47.9423,0.542367,38.6342],[-47.6756,0.978032,38.5574],[-47.6707,1.09069,37.9289],[-48.0921,0.304873,37.758],[-47.9523,0.601373,38.0593],[-47.8895,0.753082,37.6326],[-47.8257,0.909439,37.2387],[-48.0076,0.494883,37.309],[-47.8895,0.753082,37.6326],[-47.6145,1.29613,37.191],[-47.764,1.04147,36.8948],[-47.8257,0.909439,37.2387],[-47.7244,1.08135,37.5136],[-47.6707,1.09069,37.9289],[-47.5831,1.29988,37.5819],[-47.4212,1.46232,37.8397],[-47.44,1.52309,37.4572],[-47.5831,1.29988,37.5819],[-47.44,1.52309,37.4572],[-47.2219,1.76523,37.5713],[-47.3226,1.73008,37.1232],[-47.6145,1.29613,37.191],[-47.6436,1.275,36.7919],[-47.764,1.04147,36.8948],[-47.764,1.04147,36.8948],[-47.6436,1.275,36.7919],[-47.6676,1.19745,36.4246],[-47.2507,1.915,36.5061],[-47.4836,1.54237,36.6763],[-47.3226,1.73008,37.1232],[-47.2972,1.87723,36.1553],[-47.2507,1.915,36.5061],[-47.1077,2.15069,36.1457],[-47.2376,1.96108,35.8569],[-47.3864,1.72569,35.9854],[-47.2972,1.87723,36.1553],[-47.513,1.47084,35.9551],[-47.6676,1.19745,36.4246],[-47.4452,1.62219,36.2786],[-47.3791,1.68514,35.6825],[-47.3864,1.72569,35.9854],[-47.2376,1.96108,35.8569],[-47.513,1.47084,35.9551],[-47.5561,1.27432,35.6477],[-47.641,1.18455,35.9776],[-47.3168,1.62351,35.1638],[-47.4463,1.48065,35.4454],[-47.3791,1.68514,35.6825],[-47.4781,1.31216,35.3135],[-47.6172,0.897397,35.4153],[-47.5561,1.27432,35.6477],[-47.5034,0.762305,34.9378],[-47.6625,0.487684,35.2777],[-47.6172,0.897397,35.4153],[-47.5034,0.762305,34.9378],[-47.3566,0.974756,34.6347],[-47.3755,0.685136,34.585],[-47.3168,1.62351,35.1638],[-47.1955,1.61157,34.6732],[-47.3877,1.23153,34.913],[-47.1852,0.960114,34.2367],[-47.3566,0.974756,34.6347],[-47.2672,1.2331,34.5447],[-47.0093,1.36706,33.9605],[-46.9553,0.975092,33.7604],[-47.1852,0.960114,34.2367],[-46.891,1.80404,33.9143],[-46.7494,1.61447,33.4817],[-47.0093,1.36706,33.9605],[-46.872,2.08359,34.15],[-46.7571,2.11067,33.8301],[-46.891,1.80404,33.9143],[-47.1529,1.37083,34.3165],[-47.1955,1.61157,34.6732],[-47.0402,1.65597,34.2027],[-47.0932,2.0355,34.9915],[-47.1955,1.61157,34.6732],[-47.3168,1.62351,35.1638],[-47.0932,2.0355,34.9915],[-46.9268,2.3981,35.2642],[-46.8816,2.39463,34.8239],[-46.872,2.08359,34.15],[-46.9787,2.11814,34.5992],[-46.7679,2.43699,34.3777],[-46.6712,2.69943,34.6887],[-46.8816,2.39463,34.8239],[-46.7637,2.62679,35.0096],[-46.6097,2.58621,34.0598],[-46.7679,2.43699,34.3777],[-46.5456,2.79351,34.3173],[-46.5583,2.89572,34.9808],[-46.4333,3.01513,34.5938],[-46.6712,2.69943,34.6887],[-46.3249,3.10589,34.2562],[-46.4088,2.87469,33.9425],[-46.5456,2.79351,34.3173],[-46.2366,3.259,34.4723],[-46.4333,3.01513,34.5938],[-46.2053,3.31028,34.7878],[-46.3249,3.10589,34.2562],[-46.1101,3.38871,34.2186],[-46.1741,3.26172,33.9831],[-45.8628,3.67483,34.2146],[-45.9445,3.54412,33.9062],[-46.1101,3.38871,34.2186],[-46.0665,3.46498,34.4606],[-46.2366,3.259,34.4723],[-46.2053,3.31028,34.7878],[-45.8528,3.68877,34.9939],[-45.5603,3.98022,34.3809],[-45.8836,3.66954,34.549],[-46.5068,2.96254,35.4654],[-46.1571,3.36647,35.2702],[-46.2053,3.31028,34.7878],[-46.5068,2.96254,35.4654],[-46.6188,2.81503,35.7688],[-46.3822,3.03243,35.9771],[-45.8747,3.52796,35.8873],[-45.9452,3.56654,35.4318],[-46.1887,3.29791,35.6143],[-46.3822,3.03243,35.9771],[-46.3512,2.97784,36.3894],[-46.0151,3.25592,36.4298],[-45.7245,3.38406,36.7023],[-45.6944,3.54907,36.339],[-46.0151,3.25592,36.4298],[-45.8747,3.52796,35.8873],[-45.3084,3.97504,35.7949],[-45.5467,3.9268,35.3119],[-44.9598,4.36792,35.1546],[-45.5467,3.9268,35.3119],[-45.3084,3.97504,35.7949],[-45.5214,3.70288,36.2905],[-45.6944,3.54907,36.339],[-45.5112,3.59477,36.567],[-44.7651,3.96449,36.6253],[-45.5112,3.59477,36.567],[-45.3026,3.61905,36.8039],[-44.2969,4.0295,36.7809],[-44.7651,3.96449,36.6253],[-44.7667,3.70462,37.1112],[-44.3312,4.47649,35.8552],[-44.9598,4.36792,35.1546],[-45.3084,3.97504,35.7949],[-43.6374,5.48606,33.6815],[-44.9071,4.51166,34.2404],[-44.0633,4.98612,34.8214],[-44.9598,4.36792,35.1546],[-45.3896,4.11988,34.8183],[-45.5467,3.9268,35.3119],[-45.8528,3.68877,34.9939],[-45.3896,4.11988,34.8183],[-45.5603,3.98022,34.3809],[-45.5426,3.95247,33.7649],[-45.8628,3.67483,34.2146],[-45.5603,3.98022,34.3809],[-44.7449,4.59627,32.7126],[-45.3953,3.9857,32.9677],[-45.5426,3.95247,33.7649],[-44.2893,4.75095,31.471],[-43.481,5.67204,32.0708],[-43.1811,5.80441,30.7363],[-45.0725,4.14257,32.2805],[-45.3953,3.9857,32.9677],[-44.7449,4.59627,32.7126],[-45.0278,3.75455,31.6315],[-45.6367,3.51478,32.6712],[-45.0725,4.14257,32.2805],[-45.0278,3.75455,31.6315],[-44.444,4.0194,30.7413],[-45.1305,2.88183,31.161],[-42.7584,5.04554,28.5006],[-43.5197,3.82535,28.953],[-44.444,4.0194,30.7413],[-42.7584,5.04554,28.5006],[-42.6322,4.09119,27.7177],[-43.5197,3.82535,28.953],[-42.6322,4.09119,27.7177],[-42.7584,5.04554,28.5006],[-41.9395,5.16023,27.1977],[-41.8574,6.08527,28.0049],[-41.9395,5.16023,27.1977],[-42.7584,5.04554,28.5006],[-40.9064,6.22892,26.5695],[-41.9395,5.16023,27.1977],[-41.8574,6.08527,28.0049],[-40.9064,6.22892,26.5695],[-41.8574,6.08527,28.0049],[-40.5529,7.27066,27.5923],[-41.8574,6.08527,28.0049],[-41.7407,6.72051,28.8115],[-40.5529,7.27066,27.5923],[-41.0108,5.25556,25.9217],[-41.9395,5.16023,27.1977],[-40.9064,6.22892,26.5695],[-40.9064,6.22892,26.5695],[-39.9356,6.20221,25.176],[-41.0108,5.25556,25.9217],[-39.585,7.25389,25.8541],[-39.9356,6.20221,25.176],[-40.9064,6.22892,26.5695],[-42.7584,5.04554,28.5006],[-42.6395,5.92548,29.3661],[-41.8574,6.08527,28.0049],[-43.1811,5.80441,30.7363],[-43.5619,5.09623,30.1515],[-44.2893,4.75095,31.471],[-41.7407,6.72051,28.8115],[-41.8574,6.08527,28.0049],[-42.6395,5.92548,29.3661],[-41.7407,6.72051,28.8115],[-41.1147,7.39933,29.2362],[-40.5529,7.27066,27.5923],[-40.9064,6.22892,26.5695],[-40.5529,7.27066,27.5923],[-39.585,7.25389,25.8541],[-39.2462,8.50899,28.3575],[-37.6911,9.2467,27.3011],[-38.7887,8.30126,26.5983],[-36.9992,9.0575,25.6505],[-35.3616,9.98836,25.8883],[-35.2085,9.34456,24.2844],[-35.2085,9.34456,24.2844],[-35.3616,9.98836,25.8883],[-33.3182,10.3336,24.7527],[-33.9747,10.6681,26.1906],[-33.3182,10.3336,24.7527],[-35.3616,9.98836,25.8883],[-33.3182,10.3336,24.7527],[-33.9747,10.6681,26.1906],[-32.7381,11.042,26.0135],[-33.9747,10.6681,26.1906],[-33.3303,11.1091,27.1068],[-32.7381,11.042,26.0135],[-31.7837,11.5084,26.8152],[-32.7381,11.042,26.0135],[-33.3303,11.1091,27.1068],[-35.032,10.49,27.2807],[-33.9747,10.6681,26.1906],[-35.3616,9.98836,25.8883],[-36.5436,9.93369,27.8015],[-36.3696,9.82457,26.779],[-37.6911,9.2467,27.3011],[-36.5436,9.93369,27.8015],[-37.8246,9.36152,28.7542],[-35.6434,10.2936,28.8824],[-33.3303,11.1091,27.1068],[-33.9747,10.6681,26.1906],[-35.032,10.49,27.2807],[-32.4474,11.4757,28.0481],[-31.7837,11.5084,26.8152],[-33.3303,11.1091,27.1068],[-28.7608,12.5984,29.1543],[-28.4088,12.5687,27.5304],[-30.7459,11.99,28.4673],[-28.7608,12.5984,29.1543],[-30.7459,11.99,28.4673],[-30.4689,11.9676,29.7343],[-28.7608,12.5984,29.1543],[-26.9896,13.1687,28.6345],[-28.4088,12.5687,27.5304],[-28.4088,12.5687,27.5304],[-26.9896,13.1687,28.6345],[-26.4837,13.0693,27.1939],[-26.4837,13.0693,27.1939],[-27.7177,12.2353,25.7198],[-28.4088,12.5687,27.5304],[-28.4088,12.5687,27.5304],[-27.7177,12.2353,25.7198],[-29.7678,11.8455,26.0019],[-31.7837,11.5084,26.8152],[-31.2181,11.2196,25.3158],[-32.7381,11.042,26.0135],[-29.7678,11.8455,26.0019],[-27.7177,12.2353,25.7198],[-29.4854,11.3745,24.6389],[-29.1549,10.7856,23.3735],[-31.1737,10.3976,23.5524],[-29.4854,11.3745,24.6389],[-27.7564,11.4608,24.1001],[-29.1549,10.7856,23.3735],[-29.4854,11.3745,24.6389],[-29.1549,10.7856,23.3735],[-27.7564,11.4608,24.1001],[-27.7035,10.6353,22.7702],[-29.6054,9.81228,22.0309],[-29.1549,10.7856,23.3735],[-27.7035,10.6353,22.7702],[-29.6054,9.81228,22.0309],[-31.1737,10.3976,23.5524],[-29.1549,10.7856,23.3735],[-33.3182,10.3336,24.7527],[-32.7381,11.042,26.0135],[-31.2181,11.2196,25.3158],[-35.2085,9.34456,24.2844],[-33.3182,10.3336,24.7527],[-33.3848,9.52404,23.1553],[-34.9733,8.58108,22.7768],[-33.3848,9.52404,23.1553],[-33.5027,8.77909,22.0174],[-33.5027,8.77909,22.0174],[-34.3523,7.84694,21.5453],[-34.9733,8.58108,22.7768],[-32.6398,8.2817,21.0772],[-34.3523,7.84694,21.5453],[-33.5027,8.77909,22.0174],[-30.8317,8.7012,20.8849],[-31.6073,7.62656,20.1687],[-32.6398,8.2817,21.0772],[-31.6073,7.62656,20.1687],[-30.8317,8.7012,20.8849],[-30.1606,8.02138,20.0527],[-31.1737,10.3976,23.5524],[-29.6054,9.81228,22.0309],[-31.8828,9.31384,22.0254],[-27.7035,10.6353,22.7702],[-27.4591,9.6644,21.4946],[-29.6054,9.81228,22.0309],[-27.7035,10.6353,22.7702],[-25.8266,10.5751,22.4431],[-27.4591,9.6644,21.4946],[-27.2871,8.68107,20.4593],[-27.4591,9.6644,21.4946],[-25.339,9.25407,21.0645],[-30.1606,8.02138,20.0527],[-30.8317,8.7012,20.8849],[-29.0352,8.81419,20.6569],[-32.1112,5.29181,19.8302],[-32.0535,6.38798,19.8173],[-30.7083,5.77859,19.4381],[-32.1112,5.29181,19.8302],[-30.7083,5.77859,19.4381],[-30.3812,4.59306,19.8658],[-32.1112,5.29181,19.8302],[-30.3812,4.59306,19.8658],[-33.2535,4.38253,20.5039],[-33.2535,4.38253,20.5039],[-33.8064,5.53977,20.4887],[-32.1112,5.29181,19.8302],[-33.8064,5.53977,20.4887],[-33.2535,4.38253,20.5039],[-35.2468,3.89074,21.6278],[-36.303,5.13202,21.7684],[-33.8064,5.53977,20.4887],[-35.2468,3.89074,21.6278],[-30.3812,4.59306,19.8658],[-30.7083,5.77859,19.4381],[-29.2787,5.33281,19.3422],[-31.6073,7.62656,20.1687],[-30.1606,8.02138,20.0527],[-30.4053,7.01676,19.5589],[-32.6398,8.2817,21.0772],[-31.6073,7.62656,20.1687],[-33.3443,7.08035,20.5619],[-33.8064,5.53977,20.4887],[-32.0535,6.38798,19.8173],[-32.1112,5.29181,19.8302],[-34.3523,7.84694,21.5453],[-32.6398,8.2817,21.0772],[-33.3443,7.08035,20.5619],[-36.0189,7.45211,22.3406],[-34.9733,8.58108,22.7768],[-34.3523,7.84694,21.5453],[-36.303,5.13202,21.7684],[-35.1731,6.56677,21.2949],[-33.8064,5.53977,20.4887],[-36.303,5.13202,21.7684],[-37.2604,3.81791,22.6197],[-37.9505,4.94356,22.838],[-37.9505,4.94356,22.838],[-37.2604,3.81791,22.6197],[-38.7799,3.77633,23.5829],[-39.1763,4.72744,23.802],[-37.9505,4.94356,22.838],[-38.7799,3.77633,23.5829],[-39.1763,4.72744,23.802],[-38.7799,3.77633,23.5829],[-39.9389,3.68804,24.5515],[-39.9389,3.68804,24.5515],[-38.7799,3.77633,23.5829],[-39.6176,2.84661,24.5916],[-39.6176,2.84661,24.5916],[-40.8314,2.91502,25.6343],[-39.9389,3.68804,24.5515],[-39.9389,3.68804,24.5515],[-40.8314,2.91502,25.6343],[-40.8555,4.28715,25.4909],[-38.7799,3.77633,23.5829],[-38.259,2.82141,23.7043],[-39.6176,2.84661,24.5916],[-37.5175,7.00435,23.2133],[-36.0189,7.45211,22.3406],[-36.641,6.24875,22.1006],[-38.5944,7.15194,24.4569],[-36.8795,8.14512,23.8847],[-37.5175,7.00435,23.2133],[-39.585,7.25389,25.8541],[-38.5944,7.15194,24.4569],[-39.9356,6.20221,25.176],[-37.9505,4.94356,22.838],[-39.1763,4.72744,23.802],[-38.9947,5.89692,23.9734],[-39.9389,3.68804,24.5515],[-40.8555,4.28715,25.4909],[-39.1763,4.72744,23.802],[-39.9356,6.20221,25.176],[-40.0713,5.2776,24.791],[-41.0108,5.25556,25.9217],[-41.0108,5.25556,25.9217],[-41.8014,4.32919,26.615],[-41.9395,5.16023,27.1977],[-41.8014,4.32919,26.615],[-42.6322,4.09119,27.7177],[-41.9395,5.16023,27.1977],[-43.7412,2.58616,29.006],[-43.5197,3.82535,28.953],[-42.6322,4.09119,27.7177],[-42.6457,1.82693,27.8935],[-44.275,1.68812,29.8217],[-43.7412,2.58616,29.006],[-42.0124,2.9733,26.9058],[-40.8555,4.28715,25.4909],[-40.8314,2.91502,25.6343],[-39.6176,2.84661,24.5916],[-40.3799,1.97667,25.7463],[-40.8314,2.91502,25.6343],[-39.6176,2.84661,24.5916],[-39.0832,2.09241,24.7345],[-40.3799,1.97667,25.7463],[-41.6064,1.92569,26.8133],[-42.2204,1.00129,27.9884],[-42.6457,1.82693,27.8935],[-42.6208,0.177876,29.1277],[-43.3861,0.829518,29.188],[-42.2204,1.00129,27.9884],[-43.0242,-0.475907,30.2487],[-42.6208,0.177876,29.1277],[-41.8481,-0.345664,29.5914],[-40.9748,1.13128,26.9635],[-39.9519,0.566905,27.3536],[-41.5597,0.4123,28.1789],[-42.7389,-1.02468,31.1576],[-41.8481,-0.345664,29.5914],[-40.8916,-0.725467,30.469],[-39.3534,-0.315999,29.9413],[-40.144,-0.797443,31.4742],[-40.8916,-0.725467,30.469],[-39.3534,-0.315999,29.9413],[-38.6373,-0.17697,31.2146],[-40.144,-0.797443,31.4742],[-39.9519,0.566905,27.3536],[-38.6714,0.253298,28.1875],[-40.1611,-0.204598,29.0525],[-38.6714,0.253298,28.1875],[-39.9519,0.566905,27.3536],[-38.8685,0.828613,26.5289],[-38.6373,-0.17697,31.2146],[-39.3534,-0.315999,29.9413],[-37.6166,0.252632,29.5031],[-38.6373,-0.17697,31.2146],[-39.7178,-0.66146,32.304],[-40.144,-0.797443,31.4742],[-40.1147,-0.748129,33.4488],[-40.8439,-1.18882,32.7607],[-39.7178,-0.66146,32.304],[-39.0657,0.0381535,33.7746],[-38.8093,-0.124013,32.5943],[-38.2089,0.38471,33.0779],[-40.1147,-0.748129,33.4488],[-40.2998,-0.56876,34.9591],[-41.4462,-1.61439,35.3615],[-40.2998,-0.56876,34.9591],[-40.9259,-0.898311,35.9993],[-41.4462,-1.61439,35.3615],[-40.9259,-0.898311,35.9993],[-40.7678,-0.299246,36.5561],[-41.2275,-1.09917,37.0412],[-39.3658,0.256111,34.8081],[-39.1606,1.00546,35.3655],[-40.1316,0.00513541,35.6875],[-39.1606,1.00546,35.3655],[-38.4854,2.10041,35.3526],[-39.4915,1.53024,36.0402],[-41.1589,-0.0940558,37.7358],[-40.7678,-0.299246,36.5561],[-40.2236,0.563977,36.3854],[-41.1589,-0.0940558,37.7358],[-41.6685,0.297873,39.0728],[-41.2821,-0.687316,38.85],[-42.2988,0.870503,39.797],[-41.6685,0.297873,39.0728],[-42.118,1.30136,38.8449],[-41.5063,1.07072,38.1111],[-41.0838,1.72337,37.4909],[-41.7363,2.09088,37.9395],[-42.6507,2.06743,38.6405],[-42.7344,1.42721,39.5325],[-42.118,1.30136,38.8449],[-43.2572,2.63558,38.4294],[-43.2917,2.11228,39.0539],[-42.6507,2.06743,38.6405],[-42.7338,3.37596,37.5472],[-42.3248,2.73786,37.9302],[-41.233,3.40686,36.9772],[-43.2572,2.63558,38.4294],[-43.8099,3.11122,38.0274],[-44.0598,2.64378,38.6437],[-43.8099,3.11122,38.0274],[-43.6817,3.78841,37.2175],[-44.4487,3.24135,37.8611],[-42.7338,3.37596,37.5472],[-41.233,3.40686,36.9772],[-41.9983,4.44346,36.4041],[-43.4636,4.5025,36.2949],[-44.2969,4.0295,36.7809],[-43.6817,3.78841,37.2175],[-42.2144,5.42628,35.2862],[-43.4366,5.0674,35.3886],[-43.4636,4.5025,36.2949],[-40.6784,5.77875,35.0486],[-41.3532,6.21414,34.3687],[-42.2144,5.42628,35.2862],[-42.2144,5.42628,35.2862],[-41.3532,6.21414,34.3687],[-42.9461,5.63229,34.4476],[-42.9461,5.63229,34.4476],[-43.6374,5.48606,33.6815],[-44.0633,4.98612,34.8214],[-43.481,5.67204,32.0708],[-44.9071,4.51166,34.2404],[-43.6374,5.48606,33.6815],[-43.481,5.67204,32.0708],[-42.3905,6.58294,31.3158],[-43.1811,5.80441,30.7363],[-42.3905,6.58294,31.3158],[-41.3153,7.40623,30.4888],[-42.1496,6.68241,29.9976],[-40.2734,8.08682,29.7518],[-41.3153,7.40623,30.4888],[-40.2151,8.06173,30.8294],[-42.4681,6.36044,32.7386],[-40.7816,7.11067,32.8894],[-41.2675,7.29528,31.7158],[-40.7816,7.11067,32.8894],[-39.9196,6.73209,34.0142],[-38.5265,8.19977,32.3629],[-39.9196,6.73209,34.0142],[-38.2349,7.43292,33.5112],[-38.5265,8.19977,32.3629],[-40.2151,8.06173,30.8294],[-40.0051,7.89715,31.8416],[-39.0158,8.52921,31.2173],[-37.8415,8.8969,31.5184],[-37.3917,9.404,30.3358],[-39.0158,8.52921,31.2173],[-35.9137,10.0276,30.2337],[-35.6434,10.2936,28.8824],[-37.3917,9.404,30.3358],[-35.6434,10.2936,28.8824],[-32.327,11.3619,29.522],[-33.8015,11.0197,28.2408],[-33.0167,10.6274,30.989],[-31.5421,10.6652,31.6653],[-31.6311,11.2155,30.7266],[-30.4689,11.9676,29.7343],[-30.7459,11.99,28.4673],[-32.327,11.3619,29.522],[-28.5158,12.3228,30.6148],[-28.7608,12.5984,29.1543],[-30.4689,11.9676,29.7343],[-28.7608,12.5984,29.1543],[-28.5158,12.3228,30.6148],[-27.1465,13.0426,29.9768],[-27.1465,13.0426,29.9768],[-28.5158,12.3228,30.6148],[-26.8676,12.7151,31.2453],[-31.6311,11.2155,30.7266],[-31.5421,10.6652,31.6653],[-30.0528,11.3453,31.4693],[-28.5158,12.3228,30.6148],[-28.2354,11.5941,32.0117],[-26.8676,12.7151,31.2453],[-28.2354,11.5941,32.0117],[-26.5734,12.1897,32.314],[-26.8676,12.7151,31.2453],[-26.8676,12.7151,31.2453],[-26.5734,12.1897,32.314],[-25.2563,12.9365,32.208],[-26.8676,12.7151,31.2453],[-25.2563,12.9365,32.208],[-25.6405,13.2426,31.3473],[-26.8676,12.7151,31.2453],[-25.6405,13.2426,31.3473],[-25.8678,13.3973,30.6004],[-26.5734,12.1897,32.314],[-25.5552,12.1083,33.0318],[-25.2563,12.9365,32.208],[-26.5734,12.1897,32.314],[-28.2354,11.5941,32.0117],[-26.9231,11.303,32.9766],[-25.5552,12.1083,33.0318],[-26.5734,12.1897,32.314],[-26.9231,11.303,32.9766],[-24.3669,12.79,33.1087],[-25.5552,12.1083,33.0318],[-24.4679,11.9473,33.8009],[-23.5668,12.7734,33.6891],[-24.3669,12.79,33.1087],[-24.4679,11.9473,33.8009],[-25.6959,11.3002,33.6038],[-26.9277,10.1251,33.6844],[-24.6103,10.9541,34.3157],[-24.4679,11.9473,33.8009],[-23.6396,11.3644,34.6189],[-22.911,12.4012,34.3946],[-23.6396,11.3644,34.6189],[-22.6374,11.6821,35.0245],[-22.911,12.4012,34.3946],[-21.9764,12.4103,34.9582],[-22.911,12.4012,34.3946],[-22.6374,11.6821,35.0245],[-22.6374,11.6821,35.0245],[-21.7326,11.7681,35.463],[-21.9764,12.4103,34.9582],[-21.7326,11.7681,35.463],[-22.6374,11.6821,35.0245],[-22.3208,11.1718,35.4327],[-21.4942,11.0661,35.8583],[-21.7326,11.7681,35.463],[-22.3208,11.1718,35.4327],[-22.3208,11.1718,35.4327],[-22.5393,10.4087,35.5515],[-21.4942,11.0661,35.8583],[-21.5997,10.0517,36.0649],[-21.4942,11.0661,35.8583],[-22.5393,10.4087,35.5515],[-22.8337,9.2071,35.6071],[-21.5997,10.0517,36.0649],[-22.5393,10.4087,35.5515],[-22.8337,9.2071,35.6071],[-22.5393,10.4087,35.5515],[-23.9541,10.2107,34.9202],[-23.0538,10.9589,35.1376],[-23.9541,10.2107,34.9202],[-22.5393,10.4087,35.5515],[-21.4926,9.15538,36.2221],[-21.5997,10.0517,36.0649],[-22.8337,9.2071,35.6071],[-22.129,8.09954,35.9207],[-21.4926,9.15538,36.2221],[-22.8337,9.2071,35.6071],[-22.129,8.09954,35.9207],[-22.8337,9.2071,35.6071],[-23.252,7.67741,35.4082],[-22.129,8.09954,35.9207],[-23.252,7.67741,35.4082],[-21.9178,7.00484,35.856],[-21.9178,7.00484,35.856],[-20.8792,7.54646,36.4106],[-22.129,8.09954,35.9207],[-20.8792,7.54646,36.4106],[-20.1939,8.7372,36.7872],[-22.129,8.09954,35.9207],[-19.6119,7.7924,36.9871],[-20.1939,8.7372,36.7872],[-20.8792,7.54646,36.4106],[-20.1939,8.7372,36.7872],[-19.6119,7.7924,36.9871],[-19.117,8.62691,37.2596],[-19.511,9.56715,37.0625],[-20.1939,8.7372,36.7872],[-19.117,8.62691,37.2596],[-19.511,9.56715,37.0625],[-19.117,8.62691,37.2596],[-18.4529,9.49343,37.5163],[-19.511,9.56715,37.0625],[-18.4529,9.49343,37.5163],[-18.9204,10.4125,37.2103],[-19.511,9.56715,37.0625],[-18.9204,10.4125,37.2103],[-19.7901,10.3295,36.8484],[-20.5377,9.76855,36.5896],[-19.511,9.56715,37.0625],[-19.7901,10.3295,36.8484],[-20.4942,10.8167,36.4028],[-20.5377,9.76855,36.5896],[-19.7901,10.3295,36.8484],[-20.4942,10.8167,36.4028],[-19.7901,10.3295,36.8484],[-19.4209,11.0655,36.8428],[-20.4942,10.8167,36.4028],[-19.4209,11.0655,36.8428],[-19.8156,11.6021,36.4793],[-20.5377,9.76855,36.5896],[-20.4942,10.8167,36.4028],[-21.5997,10.0517,36.0649],[-19.4209,11.0655,36.8428],[-19.7901,10.3295,36.8484],[-18.9204,10.4125,37.2103],[-18.9204,10.4125,37.2103],[-18.4352,11.2892,37.2076],[-19.4209,11.0655,36.8428],[-19.4209,11.0655,36.8428],[-18.4352,11.2892,37.2076],[-18.9218,11.8738,36.7848],[-18.9204,10.4125,37.2103],[-17.8931,10.6522,37.6044],[-18.4352,11.2892,37.2076],[-18.4352,11.2892,37.2076],[-17.8931,10.6522,37.6044],[-17.596,11.4165,37.5333],[-17.7696,12.19,37.134],[-18.4352,11.2892,37.2076],[-17.596,11.4165,37.5333],[-16.7806,11.8107,37.7165],[-17.7696,12.19,37.134],[-17.596,11.4165,37.5333],[-16.7806,11.8107,37.7165],[-17.596,11.4165,37.5333],[-17.0441,11.0457,37.8683],[-17.596,11.4165,37.5333],[-17.8931,10.6522,37.6044],[-17.0441,11.0457,37.8683],[-17.8931,10.6522,37.6044],[-16.8534,10.215,38.1114],[-17.0441,11.0457,37.8683],[-16.8534,10.215,38.1114],[-15.9623,11.102,38.2594],[-17.0441,11.0457,37.8683],[-15.924,10.0268,38.5318],[-15.9623,11.102,38.2594],[-16.8534,10.215,38.1114],[-16.5505,9.29461,38.3585],[-15.924,10.0268,38.5318],[-16.8534,10.215,38.1114],[-16.5505,9.29461,38.3585],[-16.8534,10.215,38.1114],[-17.3955,9.18567,38.0008],[-17.3955,9.18567,38.0008],[-17.0208,8.46898,38.1657],[-16.5505,9.29461,38.3585],[-16.5505,9.29461,38.3585],[-17.0208,8.46898,38.1657],[-16.2472,8.65193,38.4993],[-16.2472,8.65193,38.4993],[-15.7133,9.23969,38.7069],[-16.5505,9.29461,38.3585],[-16.2472,8.65193,38.4993],[-15.4763,8.61622,38.7987],[-15.7133,9.23969,38.7069],[-15.4763,8.61622,38.7987],[-14.8835,9.03784,39.0165],[-15.7133,9.23969,38.7069],[-15.7133,9.23969,38.7069],[-14.8835,9.03784,39.0165],[-15.0982,9.81044,38.8882],[-15.7133,9.23969,38.7069],[-15.0982,9.81044,38.8882],[-15.924,10.0268,38.5318],[-15.1931,10.4812,38.7371],[-15.924,10.0268,38.5318],[-15.0982,9.81044,38.8882],[-15.1931,10.4812,38.7371],[-15.0982,9.81044,38.8882],[-14.3735,10.3683,39.0389],[-14.3735,10.3683,39.0389],[-15.0982,9.81044,38.8882],[-14.4068,9.62359,39.1497],[-14.8835,9.03784,39.0165],[-14.4068,9.62359,39.1497],[-15.0982,9.81044,38.8882],[-14.4068,9.62359,39.1497],[-14.8835,9.03784,39.0165],[-13.9174,8.89887,39.3462],[-13.9174,8.89887,39.3462],[-13.7016,9.95061,39.3203],[-14.4068,9.62359,39.1497],[-13.0661,9.5471,39.6103],[-13.7016,9.95061,39.3203],[-13.9174,8.89887,39.3462],[-13.0661,9.5471,39.6103],[-13.9174,8.89887,39.3462],[-12.1304,9.20435,39.9565],[-13.0661,9.5471,39.6103],[-12.1304,9.20435,39.9565],[-12.4248,10.1652,39.7047],[-12.1304,9.20435,39.9565],[-11.3822,9.89483,40.0906],[-12.4248,10.1652,39.7047],[-11.3822,9.89483,40.0906],[-12.1304,9.20435,39.9565],[-11.2202,8.89179,40.29],[-11.3822,9.89483,40.0906],[-11.2202,8.89179,40.29],[-10.2123,9.46716,40.5025],[-10.2123,9.46716,40.5025],[-11.2202,8.89179,40.29],[-10.4142,8.3762,40.5781],[-10.4142,8.3762,40.5781],[-11.2202,8.89179,40.29],[-11.1508,8.07281,40.3564],[-10.4142,8.3762,40.5781],[-11.1508,8.07281,40.3564],[-10.5907,7.40805,40.5039],[-11.1508,8.07281,40.3564],[-11.5701,7.39024,40.1773],[-10.5907,7.40805,40.5039],[-11.9233,8.24356,40.0828],[-11.5701,7.39024,40.1773],[-11.1508,8.07281,40.3564],[-12.5479,7.51207,39.8273],[-11.5701,7.39024,40.1773],[-11.9233,8.24356,40.0828],[-12.5479,7.51207,39.8273],[-11.9233,8.24356,40.0828],[-12.8343,8.33251,39.7529],[-13.5761,7.71494,39.4412],[-12.5479,7.51207,39.8273],[-12.8343,8.33251,39.7529],[-13.5761,7.71494,39.4412],[-12.8343,8.33251,39.7529],[-13.9174,8.89887,39.3462],[-14.5882,8.02897,39.0763],[-13.5761,7.71494,39.4412],[-13.9174,8.89887,39.3462],[-13.5761,7.71494,39.4412],[-14.5882,8.02897,39.0763],[-14.3432,6.76641,39.0209],[-14.3432,6.76641,39.0209],[-13.1627,6.75562,39.5051],[-13.5761,7.71494,39.4412],[-14.3432,6.76641,39.0209],[-14.5882,8.02897,39.0763],[-15.4084,7.07927,38.658],[-15.4084,7.07927,38.658],[-14.5882,8.02897,39.0763],[-16.4783,7.63905,38.3131],[-16.4783,7.63905,38.3131],[-16.196,6.68271,38.2657],[-15.4084,7.07927,38.658],[-15.3746,6.2461,38.5007],[-15.4084,7.07927,38.658],[-16.196,6.68271,38.2657],[-16.189,5.85003,38.0341],[-15.3746,6.2461,38.5007],[-16.196,6.68271,38.2657],[-16.196,6.68271,38.2657],[-16.4783,7.63905,38.3131],[-16.9201,6.97519,38.0255],[-15.4763,8.61622,38.7987],[-16.4783,7.63905,38.3131],[-14.5882,8.02897,39.0763],[-13.5761,7.71494,39.4412],[-13.1627,6.75562,39.5051],[-12.5479,7.51207,39.8273],[-12.5479,7.51207,39.8273],[-13.1627,6.75562,39.5051],[-12.149,6.60095,39.8702],[-12.149,6.60095,39.8702],[-13.1627,6.75562,39.5051],[-12.7165,6.01919,39.5553],[-12.7165,6.01919,39.5553],[-11.7937,5.47471,39.7462],[-12.149,6.60095,39.8702],[-11.0504,6.45519,40.2341],[-12.149,6.60095,39.8702],[-11.7937,5.47471,39.7462],[-11.5701,7.39024,40.1773],[-12.149,6.60095,39.8702],[-11.0504,6.45519,40.2341],[-13.1627,6.75562,39.5051],[-13.5626,5.92597,39.1855],[-12.7165,6.01919,39.5553],[-12.7165,6.01919,39.5553],[-13.5626,5.92597,39.1855],[-12.8455,5.35763,39.3268],[-12.8343,8.33251,39.7529],[-11.9233,8.24356,40.0828],[-12.1304,9.20435,39.9565],[-12.5479,7.51207,39.8273],[-12.149,6.60095,39.8702],[-11.5701,7.39024,40.1773],[-11.1508,8.07281,40.3564],[-11.2202,8.89179,40.29],[-11.9233,8.24356,40.0828],[-12.1304,9.20435,39.9565],[-11.9233,8.24356,40.0828],[-11.2202,8.89179,40.29],[-13.9174,8.89887,39.3462],[-12.8343,8.33251,39.7529],[-12.1304,9.20435,39.9565],[-14.8835,9.03784,39.0165],[-14.5882,8.02897,39.0763],[-13.9174,8.89887,39.3462],[-14.8835,9.03784,39.0165],[-15.4763,8.61622,38.7987],[-14.5882,8.02897,39.0763],[-15.4763,8.61622,38.7987],[-16.2472,8.65193,38.4993],[-16.4783,7.63905,38.3131],[-16.4783,7.63905,38.3131],[-16.2472,8.65193,38.4993],[-17.0208,8.46898,38.1657],[-16.4783,7.63905,38.3131],[-17.0208,8.46898,38.1657],[-17.3899,7.59892,37.924],[-17.3899,7.59892,37.924],[-17.0208,8.46898,38.1657],[-18.0505,8.38816,37.7141],[-18.0505,8.38816,37.7141],[-17.0208,8.46898,38.1657],[-17.3955,9.18567,38.0008],[-17.3955,9.18567,38.0008],[-18.4529,9.49343,37.5163],[-18.0505,8.38816,37.7141],[-16.8534,10.215,38.1114],[-18.4529,9.49343,37.5163],[-17.3955,9.18567,38.0008],[-16.5505,9.29461,38.3585],[-15.7133,9.23969,38.7069],[-15.924,10.0268,38.5318],[-15.1931,10.4812,38.7371],[-15.9623,11.102,38.2594],[-15.924,10.0268,38.5318],[-16.8534,10.215,38.1114],[-17.8931,10.6522,37.6044],[-18.4529,9.49343,37.5163],[-18.4529,9.49343,37.5163],[-17.8931,10.6522,37.6044],[-18.9204,10.4125,37.2103],[-18.0505,8.38816,37.7141],[-18.4529,9.49343,37.5163],[-19.117,8.62691,37.2596],[-18.8093,7.84081,37.3467],[-18.0505,8.38816,37.7141],[-19.117,8.62691,37.2596],[-20.5377,9.76855,36.5896],[-20.1939,8.7372,36.7872],[-19.511,9.56715,37.0625],[-21.4926,9.15538,36.2221],[-20.1939,8.7372,36.7872],[-20.5377,9.76855,36.5896],[-22.8337,9.2071,35.6071],[-24.589,8.91152,34.932],[-23.252,7.67741,35.4082],[-23.252,7.67741,35.4082],[-24.589,8.91152,34.932],[-26.4084,7.75505,34.3783],[-23.252,7.67741,35.4082],[-26.4084,7.75505,34.3783],[-24.9794,6.70944,34.682],[-23.226,6.21577,35.0899],[-23.252,7.67741,35.4082],[-24.9794,6.70944,34.682],[-24.9794,6.70944,34.682],[-25.1432,5.43769,34.1049],[-23.226,6.21577,35.0899],[-26.6865,6.45532,34.1541],[-25.1432,5.43769,34.1049],[-24.9794,6.70944,34.682],[-26.6865,6.45532,34.1541],[-28.3166,5.2319,33.4351],[-25.1432,5.43769,34.1049],[-26.6865,6.45532,34.1541],[-24.9794,6.70944,34.682],[-26.4084,7.75505,34.3783],[-20.1939,8.7372,36.7872],[-21.4926,9.15538,36.2221],[-22.129,8.09954,35.9207],[-21.5997,10.0517,36.0649],[-21.4926,9.15538,36.2221],[-20.5377,9.76855,36.5896],[-20.4942,10.8167,36.4028],[-21.4942,11.0661,35.8583],[-21.5997,10.0517,36.0649],[-21.4942,11.0661,35.8583],[-20.4942,10.8167,36.4028],[-20.6773,11.8445,35.9438],[-22.3208,11.1718,35.4327],[-23.0538,10.9589,35.1376],[-22.5393,10.4087,35.5515],[-20.6773,11.8445,35.9438],[-21.7326,11.7681,35.463],[-21.4942,11.0661,35.8583],[-21.2055,12.4034,35.3879],[-21.7326,11.7681,35.463],[-20.6773,11.8445,35.9438],[-23.0538,10.9589,35.1376],[-22.3208,11.1718,35.4327],[-22.6374,11.6821,35.0245],[-22.6374,11.6821,35.0245],[-23.6396,11.3644,34.6189],[-23.0538,10.9589,35.1376],[-23.0538,10.9589,35.1376],[-23.6396,11.3644,34.6189],[-23.9541,10.2107,34.9202],[-24.589,8.91152,34.932],[-22.8337,9.2071,35.6071],[-23.9541,10.2107,34.9202],[-25.3605,9.84364,34.4465],[-24.6103,10.9541,34.3157],[-26.9277,10.1251,33.6844],[-28.0073,9.11321,33.7207],[-26.9277,10.1251,33.6844],[-28.5635,10.2482,33.0155],[-29.4867,9.03513,33.3511],[-28.0073,9.11321,33.7207],[-28.5635,10.2482,33.0155],[-29.4867,9.03513,33.3511],[-28.9095,8.1002,33.7507],[-28.0073,9.11321,33.7207],[-24.589,8.91152,34.932],[-26.6541,8.98213,34.1851],[-26.4084,7.75505,34.3783],[-27.5836,7.39048,34.0798],[-26.6865,6.45532,34.1541],[-26.4084,7.75505,34.3783],[-27.5836,7.39048,34.0798],[-28.7923,6.42025,33.7532],[-26.6865,6.45532,34.1541],[-28.0073,9.11321,33.7207],[-28.9095,8.1002,33.7507],[-27.5152,8.23393,34.0694],[-30.1145,6.06304,33.5098],[-31.6143,6.90527,33.5051],[-32.8954,5.90582,33.5489],[-30.1145,6.06304,33.5098],[-32.8954,5.90582,33.5489],[-31.5435,4.82138,33.182],[-32.8954,5.90582,33.5489],[-34.1694,4.67567,33.6406],[-31.5435,4.82138,33.182],[-32.8954,5.90582,33.5489],[-31.6143,6.90527,33.5051],[-33.3198,6.80999,33.5471],[-27.5836,7.39048,34.0798],[-30.114,7.05022,33.6088],[-28.7923,6.42025,33.7532],[-28.7923,6.42025,33.7532],[-28.3166,5.2319,33.4351],[-26.6865,6.45532,34.1541],[-31.5435,4.82138,33.182],[-30.3189,4.86639,33.1895],[-30.1145,6.06304,33.5098],[-30.3189,4.86639,33.1895],[-31.5435,4.82138,33.182],[-31.1364,4.07649,32.7786],[-31.1364,4.07649,32.7786],[-31.5435,4.82138,33.182],[-32.5102,3.96204,32.9107],[-26.6503,4.6171,33.3297],[-28.3166,5.2319,33.4351],[-27.9265,4.21969,32.8442],[-29.2565,4.41558,32.9463],[-30.3189,4.86639,33.1895],[-31.1364,4.07649,32.7786],[-31.1364,4.07649,32.7786],[-32.5102,3.96204,32.9107],[-32.3953,3.1457,32.1537],[-27.9265,4.21969,32.8442],[-29.4742,3.56509,32.1434],[-28.0561,3.36098,31.8715],[-25.2583,2.74109,31.0833],[-26.5996,2.53036,30.2227],[-24.2904,2.35422,30.0751],[-23.5392,2.72293,31.563],[-25.1018,3.29374,32.1376],[-25.2583,2.74109,31.0833],[-28.0253,2.72394,30.7202],[-26.6301,2.92455,31.2756],[-28.0561,3.36098,31.8715],[-28.0561,3.36098,31.8715],[-26.5921,3.91053,32.7083],[-27.9265,4.21969,32.8442],[-26.5921,3.91053,32.7083],[-26.6503,4.6171,33.3297],[-27.9265,4.21969,32.8442],[-25.1432,5.43769,34.1049],[-28.3166,5.2319,33.4351],[-26.6503,4.6171,33.3297],[-25.286,4.20824,33.1981],[-22.4242,3.80626,33.7795],[-24.0332,4.5285,33.8892],[-21.5671,4.63801,34.8922],[-21.1708,3.54263,34.1301],[-20.3195,3.9042,34.9987],[-20.063,3.21432,34.4574],[-20.3195,3.9042,34.9987],[-21.1708,3.54263,34.1301],[-20.311,2.76504,33.6271],[-20.063,3.21432,34.4574],[-21.1708,3.54263,34.1301],[-20.311,2.76504,33.6271],[-19.0894,2.64048,34.3454],[-20.063,3.21432,34.4574],[-19.2338,3.3003,35.0549],[-20.063,3.21432,34.4574],[-19.0894,2.64048,34.3454],[-20.3195,3.9042,34.9987],[-20.063,3.21432,34.4574],[-19.2338,3.3003,35.0549],[-22.4242,3.80626,33.7795],[-25.286,4.20824,33.1981],[-23.691,3.40294,32.7696],[-23.691,3.40294,32.7696],[-25.1018,3.29374,32.1376],[-23.5392,2.72293,31.563],[-23.5392,2.72293,31.563],[-22.7953,2.21773,30.4072],[-21.497,2.17631,31.364],[-22.7953,2.21773,30.4072],[-21.4628,1.84481,29.9725],[-21.497,2.17631,31.364],[-21.1708,3.54263,34.1301],[-21.9632,2.97266,32.8829],[-20.311,2.76504,33.6271],[-19.2998,2.32714,33.6532],[-19.0894,2.64048,34.3454],[-20.311,2.76504,33.6271],[-19.2998,2.32714,33.6532],[-18.3343,2.0476,33.9426],[-19.0894,2.64048,34.3454],[-18.313,2.3854,34.5569],[-19.0894,2.64048,34.3454],[-18.3343,2.0476,33.9426],[-18.313,2.3854,34.5569],[-18.3343,2.0476,33.9426],[-17.6642,2.22068,34.7649],[-17.6642,2.22068,34.7649],[-18.1956,2.7397,35.082],[-18.313,2.3854,34.5569],[-19.0894,2.64048,34.3454],[-18.313,2.3854,34.5569],[-18.1956,2.7397,35.082],[-19.5157,1.42625,30.6985],[-18.3244,1.25406,31.9285],[-19.549,1.95991,32.562],[-17.0291,1.57237,34.1601],[-18.3343,2.0476,33.9426],[-17.7778,1.38673,33.0373],[-14.773,0.167973,33.4233],[-15.6326,1.11471,34.5075],[-16.3516,0.846156,33.3021],[-17.6642,2.22068,34.7649],[-18.3343,2.0476,33.9426],[-17.0291,1.57237,34.1601],[-16.4122,1.98112,35.2397],[-15.8855,2.65109,36.3057],[-17.2735,3.04737,35.9042],[-17.2735,3.04737,35.9042],[-15.8855,2.65109,36.3057],[-16.6249,3.57361,36.6812],[-17.2735,3.04737,35.9042],[-16.6249,3.57361,36.6812],[-17.9198,4.00332,36.3165],[-16.6249,3.57361,36.6812],[-16.9766,4.46977,37.0616],[-17.9198,4.00332,36.3165],[-16.0795,4.06559,37.285],[-16.9766,4.46977,37.0616],[-16.6249,3.57361,36.6812],[-15.4626,3.35567,37.1302],[-16.0795,4.06559,37.285],[-16.6249,3.57361,36.6812],[-16.0795,4.06559,37.285],[-15.4626,3.35567,37.1302],[-15.1905,4.1357,37.7611],[-16.0367,4.90761,37.7363],[-16.0795,4.06559,37.285],[-15.1905,4.1357,37.7611],[-16.0367,4.90761,37.7363],[-16.9766,4.46977,37.0616],[-16.0795,4.06559,37.285],[-18.1956,2.7397,35.082],[-17.6642,2.22068,34.7649],[-17.4104,2.46698,35.2568],[-19.0894,2.64048,34.3454],[-18.1956,2.7397,35.082],[-19.2338,3.3003,35.0549],[-19.2022,4.01551,35.6856],[-20.3195,3.9042,34.9987],[-19.2338,3.3003,35.0549],[-19.2022,4.01551,35.6856],[-20.3063,4.77295,35.6319],[-20.3195,3.9042,34.9987],[-18.3802,3.3944,35.6241],[-17.2735,3.04737,35.9042],[-17.9198,4.00332,36.3165],[-17.9309,4.90267,36.8337],[-17.9198,4.00332,36.3165],[-16.9766,4.46977,37.0616],[-17.1986,5.5398,37.4555],[-17.9309,4.90267,36.8337],[-16.9766,4.46977,37.0616],[-18.6265,5.79675,36.9082],[-17.9309,4.90267,36.8337],[-17.1986,5.5398,37.4555],[-20.3063,4.77295,35.6319],[-19.2022,4.01551,35.6856],[-18.8738,4.81562,36.3453],[-21.5671,4.63801,34.8922],[-20.3195,3.9042,34.9987],[-20.3063,4.77295,35.6319],[-25.1432,5.43769,34.1049],[-21.5671,4.63801,34.8922],[-23.226,6.21577,35.0899],[-21.9178,7.00484,35.856],[-23.252,7.67741,35.4082],[-23.226,6.21577,35.0899],[-21.9178,7.00484,35.856],[-20.7548,6.74359,36.3048],[-20.8792,7.54646,36.4106],[-19.7707,5.50957,36.2864],[-19.7958,6.34072,36.5979],[-21.0384,5.82397,35.8267],[-20.7548,6.74359,36.3048],[-20.0208,7.06248,36.7044],[-20.8792,7.54646,36.4106],[-18.9876,6.97485,37.1162],[-19.7958,6.34072,36.5979],[-18.6265,5.79675,36.9082],[-20.0208,7.06248,36.7044],[-19.6119,7.7924,36.9871],[-20.8792,7.54646,36.4106],[-19.6119,7.7924,36.9871],[-18.8093,7.84081,37.3467],[-19.117,8.62691,37.2596],[-18.8093,7.84081,37.3467],[-18.2014,7.48123,37.5585],[-18.0505,8.38816,37.7141],[-17.7366,6.65996,37.5805],[-18.9876,6.97485,37.1162],[-18.6265,5.79675,36.9082],[-18.2014,7.48123,37.5585],[-17.3899,7.59892,37.924],[-18.0505,8.38816,37.7141],[-17.3899,7.59892,37.924],[-16.9201,6.97519,38.0255],[-16.4783,7.63905,38.3131],[-16.843,6.33342,37.8988],[-16.196,6.68271,38.2657],[-16.9201,6.97519,38.0255],[-17.7366,6.65996,37.5805],[-18.6265,5.79675,36.9082],[-17.1986,5.5398,37.4555],[-16.843,6.33342,37.8988],[-16.189,5.85003,38.0341],[-16.196,6.68271,38.2657],[-16.9766,4.46977,37.0616],[-16.0367,4.90761,37.7363],[-17.1986,5.5398,37.4555],[-15.0559,4.9529,38.221],[-16.0367,4.90761,37.7363],[-15.1905,4.1357,37.7611],[-15.0559,4.9529,38.221],[-15.1905,4.1357,37.7611],[-13.9497,4.1913,38.3692],[-13.9497,4.1913,38.3692],[-15.1905,4.1357,37.7611],[-14.4285,3.40679,37.6919],[-15.4622,5.50141,38.2453],[-15.3746,6.2461,38.5007],[-16.189,5.85003,38.0341],[-15.3746,6.2461,38.5007],[-14.3432,6.76641,39.0209],[-15.4084,7.07927,38.658],[-14.3432,6.76641,39.0209],[-13.5626,5.92597,39.1855],[-13.1627,6.75562,39.5051],[-14.3272,4.94494,38.5586],[-14.6287,5.65793,38.6561],[-15.0559,4.9529,38.221],[-15.0559,4.9529,38.221],[-13.9497,4.1913,38.3692],[-14.3272,4.94494,38.5586],[-12.8455,5.35763,39.3268],[-13.5626,5.92597,39.1855],[-13.5645,5.00256,38.9038],[-12.7165,6.01919,39.5553],[-12.8455,5.35763,39.3268],[-11.7937,5.47471,39.7462],[-10.5004,5.451,40.1977],[-11.0504,6.45519,40.2341],[-11.7937,5.47471,39.7462],[-11.0504,6.45519,40.2341],[-10.5907,7.40805,40.5039],[-11.5701,7.39024,40.1773],[-9.64868,7.70583,40.796],[-10.4142,8.3762,40.5781],[-10.5907,7.40805,40.5039],[-9.64024,8.616,40.7879],[-10.4142,8.3762,40.5781],[-9.64868,7.70583,40.796],[-9.64868,7.70583,40.796],[-8.63793,7.17759,40.9824],[-8.89693,8.20524,40.9733],[-7.56388,8.19186,41.171],[-8.63793,7.17759,40.9824],[-7.50395,6.57922,41.1421],[-7.56388,8.19186,41.171],[-7.50395,6.57922,41.1421],[-6.71539,7.31159,41.3605],[-7.50395,6.57922,41.1421],[-6.68374,6.13197,41.3625],[-6.71539,7.31159,41.3605],[-6.68374,6.13197,41.3625],[-6.29866,6.80471,41.5505],[-6.71539,7.31159,41.3605],[-5.99684,7.71597,41.5328],[-6.71539,7.31159,41.3605],[-6.29866,6.80471,41.5505],[-5.42561,7.99219,41.8632],[-5.99684,7.71597,41.5328],[-6.29866,6.80471,41.5505],[-5.79481,7.47101,41.977],[-5.42561,7.99219,41.8632],[-6.29866,6.80471,41.5505],[-6.29866,6.80471,41.5505],[-6.54004,5.96491,41.7445],[-5.79481,7.47101,41.977],[-5.79481,7.47101,41.977],[-6.54004,5.96491,41.7445],[-6.42076,7.02806,42.2785],[-5.66786,7.92598,42.2194],[-5.79481,7.47101,41.977],[-6.42076,7.02806,42.2785],[-6.32614,7.95295,42.6421],[-5.66786,7.92598,42.2194],[-6.42076,7.02806,42.2785],[-7.22982,7.09233,42.8193],[-6.32614,7.95295,42.6421],[-6.42076,7.02806,42.2785],[-7.22982,7.09233,42.8193],[-6.42076,7.02806,42.2785],[-7.19526,5.71784,42.2985],[-8.46744,5.74719,43.1578],[-7.22982,7.09233,42.8193],[-7.19526,5.71784,42.2985],[-7.82032,4.45575,42.3787],[-8.46744,5.74719,43.1578],[-7.19526,5.71784,42.2985],[-7.82032,4.45575,42.3787],[-7.19526,5.71784,42.2985],[-6.96084,4.39938,41.7927],[-7.25343,3.38155,41.7958],[-7.82032,4.45575,42.3787],[-6.96084,4.39938,41.7927],[-7.25343,3.38155,41.7958],[-6.96084,4.39938,41.7927],[-6.69276,3.82116,41.445],[-6.59227,3.025,41.1767],[-7.25343,3.38155,41.7958],[-6.69276,3.82116,41.445],[-6.58531,3.80431,41.0658],[-6.59227,3.025,41.1767],[-6.69276,3.82116,41.445],[-6.58531,3.80431,41.0658],[-6.69276,3.82116,41.445],[-6.58279,4.53361,41.3985],[-6.83288,4.62666,41.0644],[-6.58531,3.80431,41.0658],[-6.58279,4.53361,41.3985],[-6.59022,5.33309,41.381],[-6.83288,4.62666,41.0644],[-6.58279,4.53361,41.3985],[-6.59022,5.33309,41.381],[-6.58279,4.53361,41.3985],[-6.6788,5.19647,41.7296],[-6.54004,5.96491,41.7445],[-6.59022,5.33309,41.381],[-6.6788,5.19647,41.7296],[-7.19526,5.71784,42.2985],[-6.54004,5.96491,41.7445],[-6.6788,5.19647,41.7296],[-6.59022,5.33309,41.381],[-6.54004,5.96491,41.7445],[-6.68374,6.13197,41.3625],[-7.02024,5.51362,41.1429],[-6.59022,5.33309,41.381],[-6.68374,6.13197,41.3625],[-6.6788,5.19647,41.7296],[-6.58279,4.53361,41.3985],[-6.96084,4.39938,41.7927],[-7.02024,5.51362,41.1429],[-6.83288,4.62666,41.0644],[-6.59022,5.33309,41.381],[-7.78434,4.91037,40.8029],[-6.83288,4.62666,41.0644],[-7.02024,5.51362,41.1429],[-6.58531,3.80431,41.0658],[-6.83288,4.62666,41.0644],[-7.02639,3.74093,40.7173],[-6.62134,3.07459,40.7146],[-6.59227,3.025,41.1767],[-6.58531,3.80431,41.0658],[-7.25343,3.38155,41.7958],[-6.59227,3.025,41.1767],[-6.97198,2.10782,41.4867],[-6.97198,2.10782,41.4867],[-7.83388,2.4666,42.0495],[-7.25343,3.38155,41.7958],[-7.83388,2.4666,42.0495],[-8.18167,3.37948,42.3836],[-7.25343,3.38155,41.7958],[-8.99895,2.51294,42.8892],[-8.18167,3.37948,42.3836],[-7.83388,2.4666,42.0495],[-7.67845,1.01947,41.9039],[-8.99895,2.51294,42.8892],[-7.83388,2.4666,42.0495],[-7.67845,1.01947,41.9039],[-9.10491,0.701737,42.8938],[-8.99895,2.51294,42.8892],[-8.99895,2.51294,42.8892],[-9.10491,0.701737,42.8938],[-10.2467,1.65224,43.941],[-10.0898,3.5135,43.9261],[-8.99895,2.51294,42.8892],[-10.2467,1.65224,43.941],[-10.0898,3.5135,43.9261],[-10.2467,1.65224,43.941],[-11.0085,2.78093,44.8088],[-10.9715,3.9813,44.9065],[-10.0898,3.5135,43.9261],[-11.0085,2.78093,44.8088],[-11.5063,3.45272,45.5351],[-10.9715,3.9813,44.9065],[-11.0085,2.78093,44.8088],[-11.0085,2.78093,44.8088],[-11.6927,2.48886,45.7731],[-11.5063,3.45272,45.5351],[-11.5063,3.45272,45.5351],[-11.6927,2.48886,45.7731],[-12.0614,3.60108,46.5225],[-11.5299,4.4111,45.7727],[-11.5063,3.45272,45.5351],[-12.0614,3.60108,46.5225],[-11.981,4.91396,46.6953],[-11.5299,4.4111,45.7727],[-12.0614,3.60108,46.5225],[-11.981,4.91396,46.6953],[-12.0614,3.60108,46.5225],[-12.5242,4.24231,47.5657],[-11.981,4.91396,46.6953],[-12.5242,4.24231,47.5657],[-12.4277,5.60267,47.8511],[-11.981,4.91396,46.6953],[-12.4277,5.60267,47.8511],[-11.6714,6.12821,46.6473],[-11.434,5.39153,45.9324],[-11.981,4.91396,46.6953],[-11.6714,6.12821,46.6473],[-11.6714,6.12821,46.6473],[-10.8358,6.34391,45.5178],[-11.434,5.39153,45.9324],[-10.9511,5.08694,45.1579],[-11.434,5.39153,45.9324],[-10.8358,6.34391,45.5178],[-10.2272,5.68433,44.5407],[-10.9511,5.08694,45.1579],[-10.8358,6.34391,45.5178],[-10.8358,6.34391,45.5178],[-9.80388,6.93611,44.5981],[-10.2272,5.68433,44.5407],[-9.45891,6.05194,43.9532],[-10.2272,5.68433,44.5407],[-9.80388,6.93611,44.5981],[-9.00287,6.84071,43.8602],[-9.45891,6.05194,43.9532],[-9.80388,6.93611,44.5981],[-9.80388,6.93611,44.5981],[-9.03433,7.66506,44.1974],[-9.00287,6.84071,43.8602],[-9.00287,6.84071,43.8602],[-9.03433,7.66506,44.1974],[-8.19315,7.72082,43.62],[-8.19315,7.72082,43.62],[-8.46744,5.74719,43.1578],[-9.00287,6.84071,43.8602],[-9.03433,7.66506,44.1974],[-8.56892,8.49461,44.1963],[-8.19315,7.72082,43.62],[-8.56892,8.49461,44.1963],[-7.90489,8.69199,43.7976],[-8.19315,7.72082,43.62],[-7.90489,8.69199,43.7976],[-7.36761,8.72112,43.4829],[-8.19315,7.72082,43.62],[-6.88786,8.34252,43.0906],[-8.19315,7.72082,43.62],[-7.36761,8.72112,43.4829],[-6.8305,9.18815,43.4077],[-6.88786,8.34252,43.0906],[-7.36761,8.72112,43.4829],[-6.8305,9.18815,43.4077],[-7.36761,8.72112,43.4829],[-7.443,9.14451,43.7126],[-6.8305,9.18815,43.4077],[-7.443,9.14451,43.7126],[-7.11641,9.77218,43.8543],[-6.09044,10.099,43.5087],[-6.8305,9.18815,43.4077],[-7.11641,9.77218,43.8543],[-6.7894,10.625,44.1594],[-6.09044,10.099,43.5087],[-7.11641,9.77218,43.8543],[-6.7894,10.625,44.1594],[-7.11641,9.77218,43.8543],[-7.53285,10.176,44.3394],[-6.7894,10.625,44.1594],[-7.53285,10.176,44.3394],[-7.47942,10.9342,44.8204],[-6.60051,11.4446,44.601],[-6.7894,10.625,44.1594],[-7.47942,10.9342,44.8204],[-6.60051,11.4446,44.601],[-7.47942,10.9342,44.8204],[-7.0908,11.6741,45.1253],[-6.48158,12.1033,45.0763],[-6.60051,11.4446,44.601],[-7.0908,11.6741,45.1253],[-7.129,12.2997,45.7879],[-6.48158,12.1033,45.0763],[-7.0908,11.6741,45.1253],[-7.6999,11.4973,45.4599],[-7.129,12.2997,45.7879],[-7.0908,11.6741,45.1253],[-8.46515,11.557,46.2566],[-7.129,12.2997,45.7879],[-7.6999,11.4973,45.4599],[-8.26901,10.8729,45.4153],[-8.46515,11.557,46.2566],[-7.6999,11.4973,45.4599],[-7.6999,11.4973,45.4599],[-7.47942,10.9342,44.8204],[-8.26901,10.8729,45.4153],[-8.26901,10.8729,45.4153],[-7.47942,10.9342,44.8204],[-8.25428,10.1005,44.8405],[-8.8261,10.2783,45.4562],[-8.26901,10.8729,45.4153],[-8.25428,10.1005,44.8405],[-8.25428,10.1005,44.8405],[-9.4005,9.41455,45.4739],[-8.8261,10.2783,45.4562],[-8.8261,10.2783,45.4562],[-9.4005,9.41455,45.4739],[-9.27918,10.6114,46.2335],[-9.4005,9.41455,45.4739],[-10.0989,9.70941,46.498],[-9.27918,10.6114,46.2335],[-10.0989,9.70941,46.498],[-9.89703,10.5563,46.9187],[-9.27918,10.6114,46.2335],[-9.89703,10.5563,46.9187],[-9.36367,11.2727,46.9494],[-9.27918,10.6114,46.2335],[-9.27918,10.6114,46.2335],[-9.36367,11.2727,46.9494],[-8.46515,11.557,46.2566],[-8.46515,11.557,46.2566],[-9.36367,11.2727,46.9494],[-8.81351,12.0704,47.1885],[-8.46515,11.557,46.2566],[-8.81351,12.0704,47.1885],[-7.93093,12.4779,46.7037],[-8.32315,12.8007,47.52],[-7.93093,12.4779,46.7037],[-8.81351,12.0704,47.1885],[-9.08324,12.4681,48.069],[-8.32315,12.8007,47.52],[-8.81351,12.0704,47.1885],[-9.60426,11.6909,47.7741],[-9.08324,12.4681,48.069],[-8.81351,12.0704,47.1885],[-9.956,12.0469,48.9161],[-9.08324,12.4681,48.069],[-9.60426,11.6909,47.7741],[-9.956,12.0469,48.9161],[-9.60426,11.6909,47.7741],[-10.2684,11.1607,48.1916],[-10.984,11.0401,49.4821],[-9.956,12.0469,48.9161],[-10.2684,11.1607,48.1916],[-10.2684,11.1607,48.1916],[-10.5993,10.0469,47.517],[-10.984,11.0401,49.4821],[-10.984,11.0401,49.4821],[-10.5993,10.0469,47.517],[-11.2949,9.88552,48.6412],[-10.984,11.0401,49.4821],[-11.2949,9.88552,48.6412],[-11.9369,9.32137,49.5706],[-10.984,11.0401,49.4821],[-11.9369,9.32137,49.5706],[-11.6716,10.6057,50.4726],[-11.6716,10.6057,50.4726],[-11.253,11.3533,50.5067],[-10.984,11.0401,49.4821],[-10.984,11.0401,49.4821],[-11.253,11.3533,50.5067],[-10.624,12.0074,50.1865],[-11.0837,12.0096,51.3807],[-10.624,12.0074,50.1865],[-11.253,11.3533,50.5067],[-11.253,11.3533,50.5067],[-11.651,11.1198,51.2539],[-11.0837,12.0096,51.3807],[-11.0837,12.0096,51.3807],[-11.651,11.1198,51.2539],[-11.7407,11.4207,52.3994],[-11.7407,11.4207,52.3994],[-11.056,12.5673,52.819],[-11.0837,12.0096,51.3807],[-11.0837,12.0096,51.3807],[-11.056,12.5673,52.819],[-10.5179,12.9161,51.8031],[-11.0837,12.0096,51.3807],[-10.5179,12.9161,51.8031],[-10.4374,12.634,50.9095],[-10.5179,12.9161,51.8031],[-10.0241,13.2211,51.1594],[-10.4374,12.634,50.9095],[-10.0241,13.2211,51.1594],[-9.78274,12.9568,50.1283],[-10.4374,12.634,50.9095],[-10.4374,12.634,50.9095],[-9.78274,12.9568,50.1283],[-10.624,12.0074,50.1865],[-9.78274,12.9568,50.1283],[-9.956,12.0469,48.9161],[-10.624,12.0074,50.1865],[-9.956,12.0469,48.9161],[-9.78274,12.9568,50.1283],[-9.13079,12.9273,48.8383],[-9.13079,12.9273,48.8383],[-9.78274,12.9568,50.1283],[-9.03286,13.3925,49.4861],[-8.63567,13.4499,48.9314],[-9.13079,12.9273,48.8383],[-9.03286,13.3925,49.4861],[-8.63567,13.4499,48.9314],[-9.03286,13.3925,49.4861],[-8.46797,13.8692,49.4965],[-7.9223,13.8203,48.6404],[-8.63567,13.4499,48.9314],[-8.46797,13.8692,49.4965],[-7.70556,14.4795,49.6367],[-7.9223,13.8203,48.6404],[-8.46797,13.8692,49.4965],[-8.38559,14.2791,50.2619],[-7.70556,14.4795,49.6367],[-8.46797,13.8692,49.4965],[-9.02493,13.7209,50.172],[-8.38559,14.2791,50.2619],[-8.46797,13.8692,49.4965],[-8.89703,14.1517,50.9487],[-8.38559,14.2791,50.2619],[-9.02493,13.7209,50.172],[-8.89703,14.1517,50.9487],[-9.02493,13.7209,50.172],[-9.48238,13.6284,50.8744],[-9.32553,13.9971,51.4619],[-8.89703,14.1517,50.9487],[-9.48238,13.6284,50.8744],[-9.32553,13.9971,51.4619],[-9.48238,13.6284,50.8744],[-9.72211,13.6638,51.4834],[-9.32553,13.9971,51.4619],[-9.72211,13.6638,51.4834],[-9.6276,13.9302,52.0959],[-8.81038,14.5491,51.9685],[-9.32553,13.9971,51.4619],[-9.6276,13.9302,52.0959],[-9.46377,14.3088,53.1003],[-8.81038,14.5491,51.9685],[-9.6276,13.9302,52.0959],[-10.2531,13.4924,52.7325],[-9.46377,14.3088,53.1003],[-9.6276,13.9302,52.0959],[-9.6276,13.9302,52.0959],[-10.0557,13.4612,51.8511],[-10.2531,13.4924,52.7325],[-10.2531,13.4924,52.7325],[-10.0557,13.4612,51.8511],[-10.5179,12.9161,51.8031],[-10.1356,13.857,53.8062],[-9.46377,14.3088,53.1003],[-10.2531,13.4924,52.7325],[-10.6772,13.2588,53.6154],[-10.1356,13.857,53.8062],[-10.2531,13.4924,52.7325],[-10.2531,13.4924,52.7325],[-11.056,12.5673,52.819],[-10.6772,13.2588,53.6154],[-11.056,12.5673,52.819],[-11.1134,12.7961,54.0036],[-10.6772,13.2588,53.6154],[-11.1134,12.7961,54.0036],[-10.6142,13.4636,54.6304],[-10.6772,13.2588,53.6154],[-11.3417,12.6001,55.1274],[-10.6142,13.4636,54.6304],[-11.1134,12.7961,54.0036],[-11.3417,12.6001,55.1274],[-11.1134,12.7961,54.0036],[-11.6811,11.9292,53.8378],[-11.3417,12.6001,55.1274],[-11.6811,11.9292,53.8378],[-12.1582,11.3671,55.1689],[-12.1582,11.3671,55.1689],[-11.6794,12.1433,56.2717],[-11.3417,12.6001,55.1274],[-11.3417,12.6001,55.1274],[-11.6794,12.1433,56.2717],[-11.1481,12.8848,56.2097],[-10.7104,13.4026,55.7459],[-11.3417,12.6001,55.1274],[-11.1481,12.8848,56.2097],[-10.7104,13.4026,55.7459],[-11.1481,12.8848,56.2097],[-10.6581,13.4021,56.7321],[-10.7104,13.4026,55.7459],[-10.6581,13.4021,56.7321],[-10.2087,13.8936,56.2703],[-10.2087,13.8936,56.2703],[-10.0784,14.0313,55.4241],[-10.7104,13.4026,55.7459],[-10.0784,14.0313,55.4241],[-10.6142,13.4636,54.6304],[-10.7104,13.4026,55.7459],[-9.98783,14.1001,54.5915],[-10.6142,13.4636,54.6304],[-10.0784,14.0313,55.4241],[-9.98783,14.1001,54.5915],[-10.0784,14.0313,55.4241],[-9.3484,14.6441,54.9543],[-9.3484,14.6441,54.9543],[-9.61198,14.3753,54.089],[-9.98783,14.1001,54.5915],[-9.61198,14.3753,54.089],[-10.1356,13.857,53.8062],[-9.98783,14.1001,54.5915],[-9.3484,14.6441,54.9543],[-8.99197,14.843,53.9351],[-9.61198,14.3753,54.089],[-8.99197,14.843,53.9351],[-9.46377,14.3088,53.1003],[-9.61198,14.3753,54.089],[-9.46377,14.3088,53.1003],[-8.99197,14.843,53.9351],[-8.65876,14.9473,53.0385],[-8.99197,14.843,53.9351],[-8.37518,15.2819,53.7132],[-8.65876,14.9473,53.0385],[-8.37518,15.2819,53.7132],[-8.00543,15.4325,53.0845],[-8.65876,14.9473,53.0385],[-8.65876,14.9473,53.0385],[-8.00543,15.4325,53.0845],[-8.21159,15.1398,52.4389],[-8.81038,14.5491,51.9685],[-8.65876,14.9473,53.0385],[-8.21159,15.1398,52.4389],[-7.89339,15.1427,51.6861],[-8.81038,14.5491,51.9685],[-8.21159,15.1398,52.4389],[-7.63222,15.5292,52.4186],[-7.89339,15.1427,51.6861],[-8.21159,15.1398,52.4389],[-7.89339,15.1427,51.6861],[-7.63222,15.5292,52.4186],[-7.28851,15.5986,51.8737],[-7.23029,15.4115,51.1895],[-7.89339,15.1427,51.6861],[-7.28851,15.5986,51.8737],[-7.23029,15.4115,51.1895],[-7.28851,15.5986,51.8737],[-6.60553,15.9223,51.6964],[-6.48732,15.6079,50.5798],[-7.23029,15.4115,51.1895],[-6.60553,15.9223,51.6964],[-5.94394,16.0991,51.1535],[-6.48732,15.6079,50.5798],[-6.60553,15.9223,51.6964],[-5.86236,16.3339,51.8385],[-5.94394,16.0991,51.1535],[-6.60553,15.9223,51.6964],[-6.3175,16.3208,52.8184],[-5.86236,16.3339,51.8385],[-6.60553,15.9223,51.6964],[-6.3175,16.3208,52.8184],[-6.60553,15.9223,51.6964],[-7.03916,15.8741,52.3738],[-7.30401,15.8611,53.0598],[-6.3175,16.3208,52.8184],[-7.03916,15.8741,52.3738],[-7.63222,15.5292,52.4186],[-7.30401,15.8611,53.0598],[-7.03916,15.8741,52.3738],[-7.30401,15.8611,53.0598],[-7.63222,15.5292,52.4186],[-8.00543,15.4325,53.0845],[-7.78639,15.687,53.8155],[-7.30401,15.8611,53.0598],[-8.00543,15.4325,53.0845],[-7.30401,15.8611,53.0598],[-7.78639,15.687,53.8155],[-7.0146,16.1359,53.8436],[-7.78639,15.687,53.8155],[-7.56473,15.888,54.4681],[-7.0146,16.1359,53.8436],[-7.0146,16.1359,53.8436],[-7.56473,15.888,54.4681],[-6.93826,16.248,54.7895],[-6.1091,16.6115,54.1534],[-7.0146,16.1359,53.8436],[-6.93826,16.248,54.7895],[-6.34221,16.5599,55.1193],[-6.1091,16.6115,54.1534],[-6.93826,16.248,54.7895],[-6.90397,16.2408,55.9217],[-6.34221,16.5599,55.1193],[-6.93826,16.248,54.7895],[-7.64086,15.8618,55.2444],[-6.90397,16.2408,55.9217],[-6.93826,16.248,54.7895],[-7.75312,15.7805,56.0165],[-6.90397,16.2408,55.9217],[-7.64086,15.8618,55.2444],[-7.75312,15.7805,56.0165],[-7.64086,15.8618,55.2444],[-8.21646,15.5074,55.6084],[-8.21132,15.4966,56.188],[-7.75312,15.7805,56.0165],[-8.21646,15.5074,55.6084],[-8.21132,15.4966,56.188],[-8.21646,15.5074,55.6084],[-8.64672,15.1667,56.3347],[-8.21132,15.4966,56.188],[-8.64672,15.1667,56.3347],[-8.16137,15.4456,56.783],[-8.64672,15.1667,56.3347],[-8.71728,15.0004,57.1368],[-8.16137,15.4456,56.783],[-8.71728,15.0004,57.1368],[-7.81888,15.4613,57.8123],[-8.16137,15.4456,56.783],[-8.16137,15.4456,56.783],[-7.81888,15.4613,57.8123],[-7.49525,15.8409,56.7645],[-8.16137,15.4456,56.783],[-7.49525,15.8409,56.7645],[-7.75312,15.7805,56.0165],[-7.49525,15.8409,56.7645],[-7.81888,15.4613,57.8123],[-6.7661,16.1607,57.2472],[-6.7661,16.1607,57.2472],[-6.90397,16.2408,55.9217],[-7.49525,15.8409,56.7645],[-6.05883,16.6082,56.5014],[-6.90397,16.2408,55.9217],[-6.7661,16.1607,57.2472],[-5.91797,16.5731,57.3206],[-6.05883,16.6082,56.5014],[-6.7661,16.1607,57.2472],[-6.7661,16.1607,57.2472],[-6.17291,16.3483,57.9729],[-5.91797,16.5731,57.3206],[-6.17291,16.3483,57.9729],[-5.45986,16.6656,57.9554],[-5.91797,16.5731,57.3206],[-5.45986,16.6656,57.9554],[-5.02958,16.9877,56.8847],[-5.91797,16.5731,57.3206],[-4.79591,16.935,57.9434],[-5.02958,16.9877,56.8847],[-5.45986,16.6656,57.9554],[-4.79591,16.935,57.9434],[-5.45986,16.6656,57.9554],[-4.948,16.7213,58.7146],[-4.948,16.7213,58.7146],[-4.26491,17.0175,58.505],[-4.79591,16.935,57.9434],[-4.26491,17.0175,58.505],[-4.17984,17.1909,57.6491],[-4.79591,16.935,57.9434],[-4.26491,17.0175,58.505],[-3.53719,17.269,58.3169],[-4.17984,17.1909,57.6491],[-4.17984,17.1909,57.6491],[-3.53719,17.269,58.3169],[-3.33768,17.4593,57.479],[-4.17984,17.1909,57.6491],[-3.33768,17.4593,57.479],[-3.97037,17.3699,56.8165],[-5.02958,16.9877,56.8847],[-4.17984,17.1909,57.6491],[-3.97037,17.3699,56.8165],[-5.02958,16.9877,56.8847],[-3.97037,17.3699,56.8165],[-4.31573,17.3235,56.1854],[-4.85,17.1592,55.7099],[-5.02958,16.9877,56.8847],[-4.31573,17.3235,56.1854],[-4.85,17.1592,55.7099],[-4.31573,17.3235,56.1854],[-3.93523,17.4755,55.435],[-4.63309,17.246,54.7664],[-4.85,17.1592,55.7099],[-3.93523,17.4755,55.435],[-4.63309,17.246,54.7664],[-3.93523,17.4755,55.435],[-3.70485,17.5124,54.4728],[-4.42978,17.2424,53.8349],[-4.63309,17.246,54.7664],[-3.70485,17.5124,54.4728],[-4.42978,17.2424,53.8349],[-3.70485,17.5124,54.4728],[-3.44993,17.4783,53.5384],[-4.21306,17.1402,52.788],[-4.42978,17.2424,53.8349],[-3.44993,17.4783,53.5384],[-3.26511,17.4041,52.7773],[-4.21306,17.1402,52.788],[-3.44993,17.4783,53.5384],[-2.43616,17.634,53.1554],[-3.26511,17.4041,52.7773],[-3.44993,17.4783,53.5384],[-2.5917,17.7462,54.2982],[-2.43616,17.634,53.1554],[-3.44993,17.4783,53.5384],[-1.52691,17.865,53.8202],[-2.43616,17.634,53.1554],[-2.5917,17.7462,54.2982],[-1.49106,17.9525,54.773],[-1.52691,17.865,53.8202],[-2.5917,17.7462,54.2982],[-2.31956,17.8509,55.3126],[-1.49106,17.9525,54.773],[-2.5917,17.7462,54.2982],[-3.14153,17.6874,55.0537],[-2.31956,17.8509,55.3126],[-2.5917,17.7462,54.2982],[-3.14153,17.6874,55.0537],[-2.5917,17.7462,54.2982],[-3.70485,17.5124,54.4728],[-3.14153,17.6874,55.0537],[-3.07836,17.6928,55.8087],[-2.31956,17.8509,55.3126],[-3.07836,17.6928,55.8087],[-2.12953,17.8412,56.3286],[-2.31956,17.8509,55.3126],[-2.31956,17.8509,55.3126],[-2.12953,17.8412,56.3286],[-1.40943,17.9881,55.6713],[-1.40943,17.9881,55.6713],[-2.12953,17.8412,56.3286],[-1.20961,17.9823,56.3678],[-1.40943,17.9881,55.6713],[-1.20961,17.9823,56.3678],[-0.695953,18.0527,55.9855],[-0.605602,18.0567,55.2868],[-1.40943,17.9881,55.6713],[-0.695953,18.0527,55.9855],[0.22075,18.0772,55.9669],[-0.605602,18.0567,55.2868],[-0.695953,18.0527,55.9855],[0.22075,18.0772,55.9669],[-0.695953,18.0527,55.9855],[-0.50351,18.0099,56.6674],[0.293518,17.9925,57.0526],[0.22075,18.0772,55.9669],[-0.50351,18.0099,56.6674],[0.293518,17.9925,57.0526],[-0.50351,18.0099,56.6674],[-0.368509,17.921,57.4443],[0.361035,17.8206,58.1447],[0.293518,17.9925,57.0526],[-0.368509,17.921,57.4443],[-0.721116,17.7844,58.1114],[0.361035,17.8206,58.1447],[-0.368509,17.921,57.4443],[-0.721116,17.7844,58.1114],[-0.368509,17.921,57.4443],[-1.29744,17.8662,57.2072],[-1.71712,17.647,58.241],[-0.721116,17.7844,58.1114],[-1.29744,17.8662,57.2072],[-2.40018,17.6793,57.3397],[-1.71712,17.647,58.241],[-1.29744,17.8662,57.2072],[-2.40018,17.6793,57.3397],[-1.29744,17.8662,57.2072],[-2.12953,17.8412,56.3286],[-3.12297,17.6187,56.6405],[-2.40018,17.6793,57.3397],[-2.12953,17.8412,56.3286],[-2.40018,17.6793,57.3397],[-3.12297,17.6187,56.6405],[-3.33768,17.4593,57.479],[-2.70966,17.4885,58.1887],[-2.40018,17.6793,57.3397],[-3.33768,17.4593,57.479],[-2.70966,17.4885,58.1887],[-1.71712,17.647,58.241],[-2.40018,17.6793,57.3397],[-2.2559,17.452,58.83],[-1.71712,17.647,58.241],[-2.70966,17.4885,58.1887],[-2.2559,17.452,58.83],[-2.70966,17.4885,58.1887],[-2.9349,17.2812,58.9698],[-2.28809,17.2621,59.5506],[-2.2559,17.452,58.83],[-2.9349,17.2812,58.9698],[-2.28809,17.2621,59.5506],[-2.9349,17.2812,58.9698],[-3.04762,17.0282,59.7912],[-2.37386,17.0136,60.2858],[-2.28809,17.2621,59.5506],[-3.04762,17.0282,59.7912],[-3.04762,17.0282,59.7912],[-3.01282,16.7112,60.6924],[-2.37386,17.0136,60.2858],[-3.01282,16.7112,60.6924],[-1.98393,16.7357,61.1546],[-2.37386,17.0136,60.2858],[-1.98393,16.7357,61.1546],[-1.498,17.1816,60.1794],[-2.37386,17.0136,60.2858],[-1.498,17.1816,60.1794],[-1.98393,16.7357,61.1546],[-0.908404,16.9299,61.0341],[-0.668755,17.2179,60.345],[-1.498,17.1816,60.1794],[-0.908404,16.9299,61.0341],[0.42821,17.1762,60.5325],[-0.668755,17.2179,60.345],[-0.908404,16.9299,61.0341],[0.0539822,16.7059,61.6903],[0.42821,17.1762,60.5325],[-0.908404,16.9299,61.0341],[0.0539822,16.7059,61.6903],[-0.908404,16.9299,61.0341],[-1.10518,16.4813,62.0134],[-0.152278,16.264,62.5948],[0.0539822,16.7059,61.6903],[-1.10518,16.4813,62.0134],[-0.976816,16.0185,62.9361],[-0.152278,16.264,62.5948],[-1.10518,16.4813,62.0134],[-1.72233,16.121,62.5831],[-0.976816,16.0185,62.9361],[-1.10518,16.4813,62.0134],[-1.10518,16.4813,62.0134],[-2.04553,16.3439,62.0304],[-1.72233,16.121,62.5831],[-2.04553,16.3439,62.0304],[-2.48888,15.949,62.6026],[-1.72233,16.121,62.5831],[-2.48888,15.949,62.6026],[-1.99342,15.6511,63.2909],[-1.72233,16.121,62.5831],[-2.8476,15.4163,63.3375],[-1.99342,15.6511,63.2909],[-2.48888,15.949,62.6026],[-2.8476,15.4163,63.3375],[-2.48888,15.949,62.6026],[-3.36016,15.7061,62.5894],[-3.36016,15.7061,62.5894],[-3.68034,15.113,63.387],[-2.8476,15.4163,63.3375],[-3.68034,15.113,63.387],[-3.14708,14.9163,63.9533],[-2.8476,15.4163,63.3375],[-2.8476,15.4163,63.3375],[-3.14708,14.9163,63.9533],[-2.37412,15.0161,64.1077],[-2.37412,15.0161,64.1077],[-3.14708,14.9163,63.9533],[-2.98603,14.4401,64.6261],[-2.37412,15.0161,64.1077],[-2.98603,14.4401,64.6261],[-2.30419,14.4954,64.8012],[-2.37412,15.0161,64.1077],[-2.30419,14.4954,64.8012],[-1.77914,14.8053,64.565],[-1.77914,14.8053,64.565],[-1.47919,15.2218,64.0738],[-2.37412,15.0161,64.1077],[-1.47919,15.2218,64.0738],[-1.99342,15.6511,63.2909],[-2.37412,15.0161,64.1077],[-1.28819,15.6188,63.5473],[-1.99342,15.6511,63.2909],[-1.47919,15.2218,64.0738],[-1.28819,15.6188,63.5473],[-1.47919,15.2218,64.0738],[-0.689991,15.4574,63.8625],[-0.689991,15.4574,63.8625],[-0.976816,16.0185,62.9361],[-1.28819,15.6188,63.5473],[-0.689991,15.4574,63.8625],[-0.248561,15.881,63.2726],[-0.976816,16.0185,62.9361],[-0.689991,15.4574,63.8625],[0.077858,15.5806,63.7396],[-0.248561,15.881,63.2726],[-0.248561,15.881,63.2726],[0.077858,15.5806,63.7396],[0.495626,15.9195,63.2006],[-0.152278,16.264,62.5948],[-0.248561,15.881,63.2726],[0.495626,15.9195,63.2006],[0.845082,16.3645,62.396],[-0.152278,16.264,62.5948],[0.495626,15.9195,63.2006],[0.845082,16.3645,62.396],[0.495626,15.9195,63.2006],[1.57721,15.8788,63.1423],[0.845082,16.3645,62.396],[1.57721,15.8788,63.1423],[1.8735,16.4023,62.2008],[0.845082,16.3645,62.396],[1.8735,16.4023,62.2008],[1.20405,16.7977,61.4617],[1.20405,16.7977,61.4617],[0.0539822,16.7059,61.6903],[0.845082,16.3645,62.396],[1.8735,16.4023,62.2008],[2.48799,16.7843,61.2239],[1.20405,16.7977,61.4617],[2.48799,16.7843,61.2239],[1.5259,17.1238,60.6327],[1.20405,16.7977,61.4617],[0.42821,17.1762,60.5325],[1.20405,16.7977,61.4617],[1.5259,17.1238,60.6327],[1.26459,17.4195,59.7987],[0.42821,17.1762,60.5325],[1.5259,17.1238,60.6327],[2.28664,17.2771,60.0081],[1.26459,17.4195,59.7987],[1.5259,17.1238,60.6327],[1.26459,17.4195,59.7987],[2.28664,17.2771,60.0081],[1.82485,17.5426,59.2843],[1.26459,17.4195,59.7987],[1.82485,17.5426,59.2843],[1.19189,17.666,58.8848],[0.364817,17.5612,59.3056],[1.26459,17.4195,59.7987],[1.19189,17.666,58.8848],[0.361035,17.8206,58.1447],[0.364817,17.5612,59.3056],[1.19189,17.666,58.8848],[1.45211,17.8195,58.0377],[0.361035,17.8206,58.1447],[1.19189,17.666,58.8848],[1.45211,17.8195,58.0377],[1.19189,17.666,58.8848],[1.90769,17.6826,58.6392],[2.57378,17.7215,57.9491],[1.45211,17.8195,58.0377],[1.90769,17.6826,58.6392],[2.51653,17.5334,59.0154],[2.57378,17.7215,57.9491],[1.90769,17.6826,58.6392],[2.51653,17.5334,59.0154],[1.90769,17.6826,58.6392],[1.82485,17.5426,59.2843],[2.57378,17.7215,57.9491],[2.51653,17.5334,59.0154],[3.23602,17.5142,58.6749],[3.84138,17.4925,58.0602],[2.57378,17.7215,57.9491],[3.23602,17.5142,58.6749],[3.84138,17.4925,58.0602],[3.23602,17.5142,58.6749],[3.92392,17.3452,58.8439],[4.9045,17.0993,58.5469],[3.84138,17.4925,58.0602],[3.92392,17.3452,58.8439],[4.9045,17.0993,58.5469],[3.92392,17.3452,58.8439],[4.27939,17.1069,59.3985],[5.21196,16.6177,59.8512],[4.9045,17.0993,58.5469],[4.27939,17.1069,59.3985],[5.21196,16.6177,59.8512],[4.27939,17.1069,59.3985],[4.00965,16.9218,60.1952],[4.49363,16.4548,60.9598],[5.21196,16.6177,59.8512],[4.00965,16.9218,60.1952],[4.49363,16.4548,60.9598],[4.00965,16.9218,60.1952],[3.5498,16.7427,60.9397],[3.63303,16.2918,61.7927],[4.49363,16.4548,60.9598],[3.5498,16.7427,60.9397],[2.48799,16.7843,61.2239],[3.63303,16.2918,61.7927],[3.5498,16.7427,60.9397],[2.48799,16.7843,61.2239],[3.5498,16.7427,60.9397],[3.12883,17.0415,60.4035],[2.28664,17.2771,60.0081],[2.48799,16.7843,61.2239],[3.12883,17.0415,60.4035],[3.33241,17.2889,59.5193],[2.28664,17.2771,60.0081],[3.12883,17.0415,60.4035],[3.33241,17.2889,59.5193],[3.12883,17.0415,60.4035],[4.00965,16.9218,60.1952],[2.51653,17.5334,59.0154],[2.28664,17.2771,60.0081],[3.33241,17.2889,59.5193],[3.63303,16.2918,61.7927],[2.48799,16.7843,61.2239],[2.71383,16.3252,62.1483],[3.18043,15.9123,62.6927],[3.63303,16.2918,61.7927],[2.71383,16.3252,62.1483],[3.18043,15.9123,62.6927],[2.71383,16.3252,62.1483],[2.38954,16.0574,62.7259],[2.60055,15.5984,63.3591],[3.18043,15.9123,62.6927],[2.38954,16.0574,62.7259],[1.57721,15.8788,63.1423],[2.60055,15.5984,63.3591],[2.38954,16.0574,62.7259],[1.95968,15.222,64.0227],[2.60055,15.5984,63.3591],[1.57721,15.8788,63.1423],[1.95968,15.222,64.0227],[1.57721,15.8788,63.1423],[0.867428,15.3502,64.0037],[1.43176,14.6897,64.7842],[1.95968,15.222,64.0227],[0.867428,15.3502,64.0037],[1.43176,14.6897,64.7842],[0.867428,15.3502,64.0037],[0.576243,14.8149,64.7248],[0.713907,14.2615,65.3409],[1.43176,14.6897,64.7842],[0.576243,14.8149,64.7248],[0.713907,14.2615,65.3409],[0.576243,14.8149,64.7248],[-0.104076,14.4971,65.0919],[-0.015556,13.6553,65.9612],[0.713907,14.2615,65.3409],[-0.104076,14.4971,65.0919],[-0.919366,14.1275,65.4516],[-0.015556,13.6553,65.9612],[-0.104076,14.4971,65.0919],[-0.104076,14.4971,65.0919],[-0.968876,14.8276,64.6513],[-0.919366,14.1275,65.4516],[-0.919366,14.1275,65.4516],[-0.968876,14.8276,64.6513],[-1.71593,14.3316,65.123],[-0.919366,14.1275,65.4516],[-1.71593,14.3316,65.123],[-1.64749,13.8074,65.6969],[-1.06431,13.467,66.1062],[-0.919366,14.1275,65.4516],[-1.64749,13.8074,65.6969],[-1.64749,13.8074,65.6969],[-1.91635,13.214,66.2158],[-1.06431,13.467,66.1062],[-1.91635,13.214,66.2158],[-1.30673,12.8233,66.6667],[-1.06431,13.467,66.1062],[-1.06431,13.467,66.1062],[-1.30673,12.8233,66.6667],[-0.607323,13.0398,66.5303],[-0.607323,13.0398,66.5303],[-0.015556,13.6553,65.9612],[-1.06431,13.467,66.1062],[0.0497969,12.7611,66.7636],[-0.015556,13.6553,65.9612],[-0.607323,13.0398,66.5303],[-0.747924,12.3941,67.0543],[0.0497969,12.7611,66.7636],[-0.607323,13.0398,66.5303],[-0.747924,12.3941,67.0543],[0.012759,11.8045,67.505],[0.0497969,12.7611,66.7636],[0.0497969,12.7611,66.7636],[0.012759,11.8045,67.505],[0.819264,12.4107,67.0263],[0.0497969,12.7611,66.7636],[0.819264,12.4107,67.0263],[0.80994,13.1514,66.4099],[0.819264,12.4107,67.0263],[1.53623,12.785,66.6537],[0.80994,13.1514,66.4099],[0.80994,13.1514,66.4099],[1.53623,12.785,66.6537],[1.51636,13.4448,66.0822],[0.80994,13.1514,66.4099],[1.51636,13.4448,66.0822],[0.906047,13.733,65.8762],[-0.015556,13.6553,65.9612],[0.80994,13.1514,66.4099],[0.906047,13.733,65.8762],[0.906047,13.733,65.8762],[1.51636,13.4448,66.0822],[1.47507,14.0348,65.5133],[0.713907,14.2615,65.3409],[0.906047,13.733,65.8762],[1.47507,14.0348,65.5133],[1.47507,14.0348,65.5133],[1.51636,13.4448,66.0822],[2.09385,13.7171,65.7236],[2.18583,14.2225,65.1851],[1.47507,14.0348,65.5133],[2.09385,13.7171,65.7236],[3.02939,13.6478,65.5304],[2.18583,14.2225,65.1851],[2.09385,13.7171,65.7236],[2.25261,13.13,66.2254],[3.02939,13.6478,65.5304],[2.09385,13.7171,65.7236],[3.04885,12.6753,66.4156],[3.02939,13.6478,65.5304],[2.25261,13.13,66.2254],[3.04885,12.6753,66.4156],[2.25261,13.13,66.2254],[2.23065,12.3891,66.8603],[2.85424,11.7835,67.1763],[3.04885,12.6753,66.4156],[2.23065,12.3891,66.8603],[2.85424,11.7835,67.1763],[2.23065,12.3891,66.8603],[2.09525,11.7906,67.3534],[2.27928,11.1938,67.7265],[2.85424,11.7835,67.1763],[2.09525,11.7906,67.3534],[2.27928,11.1938,67.7265],[2.09525,11.7906,67.3534],[1.53533,11.4388,67.6797],[1.55988,10.5055,68.2529],[2.27928,11.1938,67.7265],[1.53533,11.4388,67.6797],[0.757182,11.1971,67.9084],[1.55988,10.5055,68.2529],[1.53533,11.4388,67.6797],[0.757182,11.1971,67.9084],[1.53533,11.4388,67.6797],[0.938448,11.8012,67.4866],[0.012759,11.8045,67.505],[0.757182,11.1971,67.9084],[0.938448,11.8012,67.4866],[0.757182,11.1971,67.9084],[0.012759,11.8045,67.505],[0.0444922,11.0474,68.0433],[0.757182,11.1971,67.9084],[0.0444922,11.0474,68.0433],[0.459306,10.5266,68.3483],[0.459306,10.5266,68.3483],[0.0444922,11.0474,68.0433],[-0.376265,10.5268,68.3567],[0.459306,10.5266,68.3483],[-0.376265,10.5268,68.3567],[0.0215783,9.98585,68.6664],[0.76846,9.82846,68.7141],[0.459306,10.5266,68.3483],[0.0215783,9.98585,68.6664],[0.0206383,9.18036,69.0558],[0.76846,9.82846,68.7141],[0.0215783,9.98585,68.6664],[-0.740948,9.80701,68.7275],[0.0206383,9.18036,69.0558],[0.0215783,9.98585,68.6664],[-0.930563,9.12148,69.0577],[0.0206383,9.18036,69.0558],[-0.740948,9.80701,68.7275],[-0.930563,9.12148,69.0577],[-0.740948,9.80701,68.7275],[-1.74161,9.37319,68.8425],[-1.74161,9.37319,68.8425],[-1.45538,8.67736,69.1994],[-0.930563,9.12148,69.0577],[-1.45538,8.67736,69.1994],[-0.724923,8.49901,69.3318],[-0.930563,9.12148,69.0577],[-1.45538,8.67736,69.1994],[-1.57461,7.76009,69.5174],[-0.724923,8.49901,69.3318],[-0.724923,8.49901,69.3318],[-1.57461,7.76009,69.5174],[-0.439073,7.791,69.6161],[0.0217104,8.37755,69.4128],[-0.724923,8.49901,69.3318],[-0.439073,7.791,69.6161],[0.433884,7.81077,69.6199],[0.0217104,8.37755,69.4128],[-0.439073,7.791,69.6161],[0.433884,7.81077,69.6199],[-0.439073,7.791,69.6161],[-0.00407869,7.20462,69.8268],[0.758593,7.0608,69.8519],[0.433884,7.81077,69.6199],[-0.00407869,7.20462,69.8268],[-0.00793047,6.28883,70.07],[0.758593,7.0608,69.8519],[-0.00407869,7.20462,69.8268],[-0.827041,7.00248,69.8426],[-0.00793047,6.28883,70.07],[-0.00407869,7.20462,69.8268],[-1.27259,6.07676,70.046],[-0.00793047,6.28883,70.07],[-0.827041,7.00248,69.8426],[-1.27259,6.07676,70.046],[-0.827041,7.00248,69.8426],[-1.63598,6.82508,69.8208],[-1.27259,6.07676,70.046],[-1.63598,6.82508,69.8208],[-2.05181,6.32867,69.9008],[-2.05181,6.32867,69.9008],[-2.08504,5.72656,70.0281],[-1.27259,6.07676,70.046],[-2.08504,5.72656,70.0281],[-1.56782,4.88804,70.2341],[-1.27259,6.07676,70.046],[-1.27259,6.07676,70.046],[-1.56782,4.88804,70.2341],[-0.655321,5.49836,70.2318],[-0.655321,5.49836,70.2318],[-1.56782,4.88804,70.2341],[-0.414729,4.7801,70.3754],[0.0530853,5.40506,70.2869],[-0.655321,5.49836,70.2318],[-0.414729,4.7801,70.3754],[0.528292,4.78196,70.3822],[0.0530853,5.40506,70.2869],[-0.414729,4.7801,70.3754],[0.528292,4.78196,70.3822],[-0.414729,4.7801,70.3754],[0.0550974,4.11644,70.4753],[0.907735,3.93227,70.4625],[0.528292,4.78196,70.3822],[0.0550974,4.11644,70.4753],[0.0856762,3.11213,70.518],[0.907735,3.93227,70.4625],[0.0550974,4.11644,70.4753],[-0.792614,3.92675,70.4412],[0.0856762,3.11213,70.518],[0.0550974,4.11644,70.4753],[-0.952964,3.19957,70.4796],[0.0856762,3.11213,70.518],[-0.792614,3.92675,70.4412],[-0.952964,3.19957,70.4796],[-0.792614,3.92675,70.4412],[-1.88169,3.52643,70.3257],[-1.88169,3.52643,70.3257],[-1.19102,2.22746,70.4351],[-0.952964,3.19957,70.4796],[-1.88169,3.52643,70.3257],[-2.41272,2.12754,70.2372],[-1.19102,2.22746,70.4351],[-1.19102,2.22746,70.4351],[-2.41272,2.12754,70.2372],[-1.47724,0.837426,70.2989],[-0.175608,1.67816,70.4858],[-1.19102,2.22746,70.4351],[-1.47724,0.837426,70.2989],[-0.134143,0.581937,70.4147],[-0.175608,1.67816,70.4858],[-1.47724,0.837426,70.2989],[-0.134143,0.581937,70.4147],[-1.47724,0.837426,70.2989],[-0.737939,-0.178097,70.2675],[0.197917,-0.370489,70.2765],[-0.134143,0.581937,70.4147],[-0.737939,-0.178097,70.2675],[-0.579495,-1.2411,70.0407],[0.197917,-0.370489,70.2765],[-0.737939,-0.178097,70.2675],[-1.65491,-0.665452,70.0484],[-0.579495,-1.2411,70.0407],[-0.737939,-0.178097,70.2675],[-0.579495,-1.2411,70.0407],[-1.65491,-0.665452,70.0484],[-1.66479,-2.17946,69.6445],[-1.66479,-2.17946,69.6445],[-0.326156,-2.41575,69.7051],[-0.579495,-1.2411,70.0407],[-0.579495,-1.2411,70.0407],[-0.326156,-2.41575,69.7051],[0.77971,-1.54631,69.953],[-0.326156,-2.41575,69.7051],[0.767034,-3.37683,69.3308],[0.77971,-1.54631,69.953],[0.767034,-3.37683,69.3308],[1.94973,-2.28126,69.6341],[0.77971,-1.54631,69.953],[1.94973,-2.28126,69.6341],[2.23029,-0.8239,69.9798],[0.77971,-1.54631,69.953],[0.77971,-1.54631,69.953],[2.23029,-0.8239,69.9798],[1.1727,-0.214712,70.2737],[0.77971,-1.54631,69.953],[1.1727,-0.214712,70.2737],[0.197917,-0.370489,70.2765],[1.1727,-0.214712,70.2737],[0.650968,0.360267,70.413],[0.197917,-0.370489,70.2765],[1.23542,0.613614,70.4162],[0.650968,0.360267,70.413],[1.1727,-0.214712,70.2737],[1.87018,0.407028,70.298],[1.23542,0.613614,70.4162],[1.1727,-0.214712,70.2737],[1.87018,0.407028,70.298],[1.67982,1.32876,70.4138],[1.23542,0.613614,70.4162],[1.67982,1.32876,70.4138],[0.719432,1.12984,70.481],[1.23542,0.613614,70.4162],[1.67982,1.32876,70.4138],[0.974988,2.16115,70.5001],[0.719432,1.12984,70.481],[0.974988,2.16115,70.5001],[-0.175608,1.67816,70.4858],[0.719432,1.12984,70.481],[0.974988,2.16115,70.5001],[0.0856762,3.11213,70.518],[-0.175608,1.67816,70.4858],[0.0856762,3.11213,70.518],[0.974988,2.16115,70.5001],[1.21839,3.08891,70.4899],[0.974988,2.16115,70.5001],[2.23575,2.51375,70.3515],[1.21839,3.08891,70.4899],[1.21839,3.08891,70.4899],[2.23575,2.51375,70.3515],[1.81396,3.65211,70.3959],[0.907735,3.93227,70.4625],[1.21839,3.08891,70.4899],[1.81396,3.65211,70.3959],[1.71681,4.75465,70.2731],[0.907735,3.93227,70.4625],[1.81396,3.65211,70.3959],[2.90366,3.90104,70.1618],[1.71681,4.75465,70.2731],[1.81396,3.65211,70.3959],[3.01532,5.38098,69.9391],[1.71681,4.75465,70.2731],[2.90366,3.90104,70.1618],[4.62121,4.79452,69.5915],[3.01532,5.38098,69.9391],[2.90366,3.90104,70.1618],[4.21458,3.46864,69.8994],[4.62121,4.79452,69.5915],[2.90366,3.90104,70.1618],[3.96709,2.22321,69.9753],[4.21458,3.46864,69.8994],[2.90366,3.90104,70.1618],[3.96709,2.22321,69.9753],[2.90366,3.90104,70.1618],[2.23575,2.51375,70.3515],[2.23575,2.51375,70.3515],[2.92749,1.07122,70.1577],[3.96709,2.22321,69.9753],[3.96709,2.22321,69.9753],[2.92749,1.07122,70.1577],[4.25973,0.909849,69.8281],[5.2716,1.4981,69.542],[3.96709,2.22321,69.9753],[4.25973,0.909849,69.8281],[5.22486,-0.100151,69.3633],[5.2716,1.4981,69.542],[4.25973,0.909849,69.8281],[3.79998,-0.17541,69.7906],[5.22486,-0.100151,69.3633],[4.25973,0.909849,69.8281],[3.79998,-0.17541,69.7906],[4.35649,-1.09707,69.4712],[5.22486,-0.100151,69.3633],[4.35649,-1.09707,69.4712],[4.87196,-2.01606,69.0324],[5.22486,-0.100151,69.3633],[4.87196,-2.01606,69.0324],[5.98007,-1.40727,68.7899],[5.22486,-0.100151,69.3633],[5.98007,-1.40727,68.7899],[6.67008,-0.373486,68.6974],[5.22486,-0.100151,69.3633],[6.23471,0.827217,69.1049],[5.22486,-0.100151,69.3633],[6.67008,-0.373486,68.6974],[7.29382,0.91785,68.584],[6.23471,0.827217,69.1049],[6.67008,-0.373486,68.6974],[7.29382,0.91785,68.584],[6.67008,-0.373486,68.6974],[8.13345,-0.770185,67.7347],[8.24427,0.809594,68.0219],[7.29382,0.91785,68.584],[8.13345,-0.770185,67.7347],[8.24427,0.809594,68.0219],[8.13345,-0.770185,67.7347],[9.30785,1.12737,67.3024],[8.12583,2.02181,68.1972],[8.24427,0.809594,68.0219],[9.30785,1.12737,67.3024],[9.37676,2.59713,67.3749],[8.12583,2.02181,68.1972],[9.30785,1.12737,67.3024],[9.30785,1.12737,67.3024],[10.2117,1.9424,66.6905],[9.37676,2.59713,67.3749],[10.2117,1.9424,66.6905],[10.4471,3.19139,66.4781],[9.37676,2.59713,67.3749],[9.48599,3.97297,67.2414],[9.37676,2.59713,67.3749],[10.4471,3.19139,66.4781],[10.3869,4.56134,66.4092],[9.48599,3.97297,67.2414],[10.4471,3.19139,66.4781],[10.3869,4.56134,66.4092],[10.4471,3.19139,66.4781],[11.0416,4.0305,65.8645],[11.1671,5.03315,65.5103],[10.3869,4.56134,66.4092],[11.0416,4.0305,65.8645],[11.9101,3.42273,64.8494],[11.1671,5.03315,65.5103],[11.0416,4.0305,65.8645],[11.1671,5.03315,65.5103],[11.9101,3.42273,64.8494],[12.0165,5.02032,64.4779],[11.1671,5.03315,65.5103],[12.0165,5.02032,64.4779],[11.4024,6.40229,64.7576],[10.2402,6.10418,66.1015],[11.1671,5.03315,65.5103],[11.4024,6.40229,64.7576],[10.4748,7.43128,65.3424],[10.2402,6.10418,66.1015],[11.4024,6.40229,64.7576],[11.0412,8.20173,64.2246],[10.4748,7.43128,65.3424],[11.4024,6.40229,64.7576],[11.0412,8.20173,64.2246],[11.4024,6.40229,64.7576],[11.964,7.12607,63.694],[11.9607,8.23214,62.9048],[11.0412,8.20173,64.2246],[11.964,7.12607,63.694],[11.9607,8.23214,62.9048],[11.964,7.12607,63.694],[12.6526,6.87054,62.7174],[11.9607,8.23214,62.9048],[12.6526,6.87054,62.7174],[12.7684,7.80538,61.7778],[11.8944,9.60369,61.7141],[11.9607,8.23214,62.9048],[12.7684,7.80538,61.7778],[12.7302,8.73228,60.9749],[11.8944,9.60369,61.7141],[12.7684,7.80538,61.7778],[12.7302,8.73228,60.9749],[12.7684,7.80538,61.7778],[13.2066,7.76076,60.7687],[12.7302,8.73228,60.9749],[13.2066,7.76076,60.7687],[13.0852,8.73913,59.8373],[12.7302,8.73228,60.9749],[13.0852,8.73913,59.8373],[12.4338,9.62322,60.5719],[12.4338,9.62322,60.5719],[13.0852,8.73913,59.8373],[12.4543,10.1613,59.5726],[12.4338,9.62322,60.5719],[12.4543,10.1613,59.5726],[11.7279,10.7419,60.6188],[12.4338,9.62322,60.5719],[11.7279,10.7419,60.6188],[11.8944,9.60369,61.7141],[11.7279,10.7419,60.6188],[10.7178,11.2094,61.8936],[11.8944,9.60369,61.7141],[11.0109,9.70713,63.0779],[11.8944,9.60369,61.7141],[10.7178,11.2094,61.8936],[10.7178,11.2094,61.8936],[10.1261,10.8935,63.2133],[11.0109,9.70713,63.0779],[11.0109,9.70713,63.0779],[10.1261,10.8935,63.2133],[9.96398,9.88258,64.297],[11.0109,9.70713,63.0779],[9.96398,9.88258,64.297],[11.0412,8.20173,64.2246],[11.0412,8.20173,64.2246],[9.96398,9.88258,64.297],[10.0296,8.59106,65.16],[9.03215,9.50773,65.4857],[10.0296,8.59106,65.16],[9.96398,9.88258,64.297],[9.03215,9.50773,65.4857],[9.96398,9.88258,64.297],[8.89059,10.6829,64.7849],[7.92739,10.651,65.5749],[9.03215,9.50773,65.4857],[8.89059,10.6829,64.7849],[7.92739,10.651,65.5749],[8.89059,10.6829,64.7849],[8.16144,11.7023,64.5528],[6.99126,11.7644,65.3543],[7.92739,10.651,65.5749],[8.16144,11.7023,64.5528],[6.99126,11.7644,65.3543],[8.16144,11.7023,64.5528],[7.44812,12.7532,64.1069],[6.99126,11.7644,65.3543],[7.44812,12.7532,64.1069],[6.16112,13.8521,63.7769],[6.99126,11.7644,65.3543],[6.16112,13.8521,63.7769],[5.60061,13.0006,65.0641],[5.60061,13.0006,65.0641],[4.79538,12.4886,65.9599],[6.99126,11.7644,65.3543],[5.87362,11.6462,66.1504],[6.99126,11.7644,65.3543],[4.79538,12.4886,65.9599],[5.04477,11.3522,66.7458],[5.87362,11.6462,66.1504],[4.79538,12.4886,65.9599],[3.97076,12.0179,66.658],[5.04477,11.3522,66.7458],[4.79538,12.4886,65.9599],[3.87152,12.9213,65.947],[3.97076,12.0179,66.658],[4.79538,12.4886,65.9599],[4.3765,13.5908,65.0673],[3.87152,12.9213,65.947],[4.79538,12.4886,65.9599],[4.3765,13.5908,65.0673],[3.02939,13.6478,65.5304],[3.87152,12.9213,65.947],[3.02939,13.6478,65.5304],[4.3765,13.5908,65.0673],[3.52444,14.2936,64.6882],[3.02939,13.6478,65.5304],[3.52444,14.2936,64.6882],[2.80748,14.392,64.8462],[3.52444,14.2936,64.6882],[3.01267,14.935,64.1125],[2.80748,14.392,64.8462],[2.80748,14.392,64.8462],[3.01267,14.935,64.1125],[2.27671,14.7188,64.6114],[2.18583,14.2225,65.1851],[2.80748,14.392,64.8462],[2.27671,14.7188,64.6114],[1.43176,14.6897,64.7842],[2.18583,14.2225,65.1851],[2.27671,14.7188,64.6114],[1.95968,15.222,64.0227],[2.27671,14.7188,64.6114],[3.01267,14.935,64.1125],[3.52444,14.2936,64.6882],[4.37151,14.7303,63.7449],[3.01267,14.935,64.1125],[4.37151,14.7303,63.7449],[3.48755,15.3898,63.3412],[3.01267,14.935,64.1125],[3.48755,15.3898,63.3412],[2.60055,15.5984,63.3591],[3.01267,14.935,64.1125],[4.37151,14.7303,63.7449],[4.21332,15.6032,62.6518],[3.48755,15.3898,63.3412],[3.18043,15.9123,62.6927],[3.48755,15.3898,63.3412],[4.21332,15.6032,62.6518],[4.21332,15.6032,62.6518],[4.37151,14.7303,63.7449],[5.66578,15.16,62.351],[4.76493,15.934,61.7896],[4.21332,15.6032,62.6518],[5.66578,15.16,62.351],[5.66578,15.16,62.351],[5.66837,15.933,61.0331],[4.76493,15.934,61.7896],[4.49363,16.4548,60.9598],[4.76493,15.934,61.7896],[5.66837,15.933,61.0331],[5.66837,15.933,61.0331],[5.66578,15.16,62.351],[6.79173,15.2607,61.2064],[6.8082,15.8509,59.8731],[5.66837,15.933,61.0331],[6.79173,15.2607,61.2064],[6.79173,15.2607,61.2064],[7.95963,14.8281,60.535],[6.8082,15.8509,59.8731],[6.8082,15.8509,59.8731],[7.95963,14.8281,60.535],[8.28767,15.2228,59.1183],[7.28413,16.075,58.3756],[6.8082,15.8509,59.8731],[8.28767,15.2228,59.1183],[8.32835,15.5715,57.9488],[7.28413,16.075,58.3756],[8.28767,15.2228,59.1183],[8.32835,15.5715,57.9488],[8.28767,15.2228,59.1183],[9.07096,14.9847,58.16],[8.99194,15.2286,57.1762],[8.32835,15.5715,57.9488],[9.07096,14.9847,58.16],[8.99194,15.2286,57.1762],[9.07096,14.9847,58.16],[9.69,14.5571,57.6835],[9.89103,14.4936,56.6119],[8.99194,15.2286,57.1762],[9.69,14.5571,57.6835],[10.451,13.7292,57.663],[9.89103,14.4936,56.6119],[9.69,14.5571,57.6835],[9.69,14.5571,57.6835],[9.8043,14.134,58.7005],[10.451,13.7292,57.663],[10.6253,13.2651,58.6951],[10.451,13.7292,57.663],[9.8043,14.134,58.7005],[10.2309,13.2596,59.7256],[10.6253,13.2651,58.6951],[9.8043,14.134,58.7005],[9.22146,14.1479,59.9024],[10.2309,13.2596,59.7256],[9.8043,14.134,58.7005],[8.28767,15.2228,59.1183],[9.22146,14.1479,59.9024],[9.8043,14.134,58.7005],[10.2309,13.2596,59.7256],[9.22146,14.1479,59.9024],[9.60922,12.9689,61.2453],[10.2309,13.2596,59.7256],[9.60922,12.9689,61.2453],[10.8713,12.1033,60.3808],[10.2309,13.2596,59.7256],[10.8713,12.1033,60.3808],[11.0054,12.5631,59.2581],[10.8713,12.1033,60.3808],[11.6956,11.5,59.3542],[11.0054,12.5631,59.2581],[11.6956,11.5,59.3542],[11.3919,12.4112,58.0126],[11.0054,12.5631,59.2581],[11.3919,12.4112,58.0126],[10.6253,13.2651,58.6951],[11.0054,12.5631,59.2581],[11.6956,11.5,59.3542],[12.4528,10.7183,58.1388],[11.3919,12.4112,58.0126],[12.4528,10.7183,58.1388],[12.1813,11.4963,56.695],[11.3919,12.4112,58.0126],[10.952,13.3034,56.1533],[11.3919,12.4112,58.0126],[12.1813,11.4963,56.695],[11.9184,12.0604,55.6698],[10.952,13.3034,56.1533],[12.1813,11.4963,56.695],[11.9184,12.0604,55.6698],[12.1813,11.4963,56.695],[12.4971,11.0545,55.2639],[11.9184,12.0604,55.6698],[12.4971,11.0545,55.2639],[11.7799,12.233,54.5395],[12.4971,11.0545,55.2639],[12.2765,11.4058,54.0378],[11.7799,12.233,54.5395],[11.8671,11.9744,53.3718],[11.7799,12.233,54.5395],[12.2765,11.4058,54.0378],[11.8671,11.9744,53.3718],[12.2765,11.4058,54.0378],[12.2617,11.1681,53.0364],[11.8671,11.9744,53.3718],[12.2617,11.1681,53.0364],[11.6654,11.9355,52.2867],[11.139,12.8848,52.9405],[11.8671,11.9744,53.3718],[11.6654,11.9355,52.2867],[10.8506,12.6858,51.2832],[11.139,12.8848,52.9405],[11.6654,11.9355,52.2867],[11.5456,11.6728,51.2533],[10.8506,12.6858,51.2832],[11.6654,11.9355,52.2867],[12.1152,10.9712,51.8925],[11.5456,11.6728,51.2533],[11.6654,11.9355,52.2867],[11.5456,11.6728,51.2533],[12.1152,10.9712,51.8925],[11.8646,10.7389,50.648],[11.0393,11.8609,50.2145],[11.5456,11.6728,51.2533],[11.8646,10.7389,50.648],[11.318,10.9821,49.5114],[11.0393,11.8609,50.2145],[11.8646,10.7389,50.648],[11.8682,10.0358,49.662],[11.318,10.9821,49.5114],[11.8646,10.7389,50.648],[12.4497,9.42577,50.6169],[11.8682,10.0358,49.662],[11.8646,10.7389,50.648],[11.8646,10.7389,50.648],[12.461,10.0436,51.5382],[12.4497,9.42577,50.6169],[13.0207,8.87415,51.9639],[12.4497,9.42577,50.6169],[12.461,10.0436,51.5382],[12.6783,10.1136,52.6483],[13.0207,8.87415,51.9639],[12.461,10.0436,51.5382],[12.1152,10.9712,51.8925],[12.6783,10.1136,52.6483],[12.461,10.0436,51.5382],[12.6783,10.1136,52.6483],[12.1152,10.9712,51.8925],[12.2617,11.1681,53.0364],[12.7513,10.3932,53.9658],[12.6783,10.1136,52.6483],[12.2617,11.1681,53.0364],[12.6783,10.1136,52.6483],[12.7513,10.3932,53.9658],[13.2374,9.09186,53.531],[12.7513,10.3932,53.9658],[13.3006,9.32685,55.2349],[13.2374,9.09186,53.531],[13.2374,9.09186,53.531],[13.3006,9.32685,55.2349],[13.796,7.861,54.368],[13.2374,9.09186,53.531],[13.796,7.861,54.368],[13.576,7.93164,52.9988],[13.0207,8.87415,51.9639],[13.2374,9.09186,53.531],[13.576,7.93164,52.9988],[13.576,7.93164,52.9988],[13.5054,7.34867,51.8488],[13.0207,8.87415,51.9639],[13.5054,7.34867,51.8488],[12.9478,8.08549,50.6384],[13.0207,8.87415,51.9639],[13.5054,7.34867,51.8488],[13.3269,6.73472,50.5418],[12.9478,8.08549,50.6384],[12.8417,7.44577,49.6336],[12.9478,8.08549,50.6384],[13.3269,6.73472,50.5418],[13.0044,6.31912,49.247],[12.8417,7.44577,49.6336],[13.3269,6.73472,50.5418],[13.5867,5.22034,50.2868],[13.0044,6.31912,49.247],[13.3269,6.73472,50.5418],[13.3269,6.73472,50.5418],[13.8095,5.99998,51.6115],[13.5867,5.22034,50.2868],[13.5867,5.22034,50.2868],[13.8095,5.99998,51.6115],[14.0029,4.95792,51.4374],[14.0029,4.95792,51.4374],[13.9972,3.91072,50.9169],[13.5867,5.22034,50.2868],[13.9972,3.91072,50.9169],[13.525,3.67704,49.4662],[13.5867,5.22034,50.2868],[13.525,3.67704,49.4662],[13.0426,4.96238,48.6515],[13.5867,5.22034,50.2868],[13.0426,4.96238,48.6515],[13.525,3.67704,49.4662],[12.7749,3.45896,47.6366],[13.0426,4.96238,48.6515],[12.7749,3.45896,47.6366],[12.5119,5.0055,47.4065],[12.5367,6.1396,47.9397],[13.0426,4.96238,48.6515],[12.5119,5.0055,47.4065],[12.075,5.92527,46.8686],[12.5367,6.1396,47.9397],[12.5119,5.0055,47.4065],[11.8559,4.55526,46.0998],[12.075,5.92527,46.8686],[12.5119,5.0055,47.4065],[12.075,5.92527,46.8686],[11.8559,4.55526,46.0998],[11.3252,6.70447,45.9783],[11.3252,6.70447,45.9783],[11.8608,7.22601,47.1563],[12.075,5.92527,46.8686],[11.3252,6.70447,45.9783],[10.8247,8.45832,46.199],[11.8608,7.22601,47.1563],[10.8247,8.45832,46.199],[11.6267,8.65623,47.7385],[11.8608,7.22601,47.1563],[11.8608,7.22601,47.1563],[11.6267,8.65623,47.7385],[12.4143,7.41254,48.484],[12.5367,6.1396,47.9397],[11.8608,7.22601,47.1563],[12.4143,7.41254,48.484],[12.5367,6.1396,47.9397],[12.4143,7.41254,48.484],[13.0044,6.31912,49.247],[11.6267,8.65623,47.7385],[12.3125,8.65699,49.3509],[12.4143,7.41254,48.484],[12.4143,7.41254,48.484],[12.3125,8.65699,49.3509],[12.8417,7.44577,49.6336],[11.1802,10.2891,48.3953],[12.3125,8.65699,49.3509],[11.6267,8.65623,47.7385],[11.6267,8.65623,47.7385],[10.7944,9.76703,47.0854],[11.1802,10.2891,48.3953],[11.8682,10.0358,49.662],[12.3125,8.65699,49.3509],[11.1802,10.2891,48.3953],[10.2397,7.39973,44.8275],[10.8247,8.45832,46.199],[11.3252,6.70447,45.9783],[10.2397,7.39973,44.8275],[11.3252,6.70447,45.9783],[10.9797,5.55223,44.9926],[11.8559,4.55526,46.0998],[10.9797,5.55223,44.9926],[11.3252,6.70447,45.9783],[11.8559,4.55526,46.0998],[11.0358,4.49022,44.7449],[10.9797,5.55223,44.9926],[11.0358,4.49022,44.7449],[10.5148,5.04767,44.2331],[10.9797,5.55223,44.9926],[10.5148,5.04767,44.2331],[10.2235,6.00361,44.2213],[10.9797,5.55223,44.9926],[11.0358,4.49022,44.7449],[10.4292,4.01304,43.933],[10.5148,5.04767,44.2331],[10.5148,5.04767,44.2331],[10.4292,4.01304,43.933],[9.63139,5.1566,43.4663],[10.4292,4.01304,43.933],[11.0358,4.49022,44.7449],[11.1043,3.2952,44.6652],[11.8559,4.55526,46.0998],[11.1043,3.2952,44.6652],[11.0358,4.49022,44.7449],[11.8608,7.22601,47.1563],[12.5367,6.1396,47.9397],[12.075,5.92527,46.8686],[13.0426,4.96238,48.6515],[12.5367,6.1396,47.9397],[13.0044,6.31912,49.247],[11.8559,4.55526,46.0998],[12.5119,5.0055,47.4065],[12.7749,3.45896,47.6366],[11.8559,4.55526,46.0998],[12.7749,3.45896,47.6366],[11.9616,2.43501,45.9612],[12.7749,3.45896,47.6366],[12.7037,1.73252,47.2259],[11.9616,2.43501,45.9612],[13.4268,1.88324,48.8845],[12.7037,1.73252,47.2259],[12.7749,3.45896,47.6366],[13.4268,1.88324,48.8845],[12.9561,0.446388,47.7571],[12.7037,1.73252,47.2259],[12.9561,0.446388,47.7571],[12.0667,0.546593,46.1387],[12.7037,1.73252,47.2259],[12.9561,0.446388,47.7571],[12.4056,-1.18976,47.0729],[12.0667,0.546593,46.1387],[12.4056,-1.18976,47.0729],[12.9561,0.446388,47.7571],[13.2076,-0.585196,48.4364],[13.1283,-1.80618,48.7875],[12.4056,-1.18976,47.0729],[13.2076,-0.585196,48.4364],[13.2076,-0.585196,48.4364],[13.672,-0.666138,49.7407],[13.1283,-1.80618,48.7875],[13.5772,-2.20778,50.3798],[13.1283,-1.80618,48.7875],[13.672,-0.666138,49.7407],[13.5772,-2.20778,50.3798],[13.672,-0.666138,49.7407],[14.101,-0.784621,51.2225],[13.5772,-2.20778,50.3798],[14.101,-0.784621,51.2225],[14.052,-1.97115,51.8821],[13.5772,-2.20778,50.3798],[14.052,-1.97115,51.8821],[13.6154,-3.2226,51.614],[13.006,-3.90688,50.3318],[13.5772,-2.20778,50.3798],[13.6154,-3.2226,51.614],[13.6154,-3.2226,51.614],[13.1472,-4.47646,51.8463],[13.006,-3.90688,50.3318],[12.4461,-5.3888,50.9284],[13.006,-3.90688,50.3318],[13.1472,-4.47646,51.8463],[13.1472,-4.47646,51.8463],[12.6225,-5.67178,52.5886],[12.4461,-5.3888,50.9284],[12.6225,-5.67178,52.5886],[11.7738,-6.6443,51.393],[12.4461,-5.3888,50.9284],[11.65,-6.26232,50.0154],[12.4461,-5.3888,50.9284],[11.7738,-6.6443,51.393],[11.0039,-7.31774,50.4588],[11.65,-6.26232,50.0154],[11.7738,-6.6443,51.393],[11.0039,-7.31774,50.4588],[11.7738,-6.6443,51.393],[10.8837,-7.82281,51.7551],[10.8837,-7.82281,51.7551],[10.3381,-8.10603,50.6642],[11.0039,-7.31774,50.4588],[10.2837,-7.78996,49.7279],[11.0039,-7.31774,50.4588],[10.3381,-8.10603,50.6642],[9.42486,-8.63154,49.9821],[10.2837,-7.78996,49.7279],[10.3381,-8.10603,50.6642],[9.42486,-8.63154,49.9821],[10.3381,-8.10603,50.6642],[9.86407,-8.72238,51.3914],[9.42486,-8.63154,49.9821],[9.86407,-8.72238,51.3914],[8.9187,-9.38328,51.1125],[8.18696,-9.57583,50.0504],[9.42486,-8.63154,49.9821],[8.9187,-9.38328,51.1125],[7.72654,-10.3046,51.7119],[8.18696,-9.57583,50.0504],[8.9187,-9.38328,51.1125],[9.19795,-9.44363,52.4723],[7.72654,-10.3046,51.7119],[8.9187,-9.38328,51.1125],[7.72654,-10.3046,51.7119],[9.19795,-9.44363,52.4723],[8.21697,-10.2805,53.5088],[7.72654,-10.3046,51.7119],[8.21697,-10.2805,53.5088],[7.22919,-10.8763,53.0713],[6.63002,-11.0974,52.35],[7.72654,-10.3046,51.7119],[7.22919,-10.8763,53.0713],[6.24446,-11.4321,53.4858],[6.63002,-11.0974,52.35],[7.22919,-10.8763,53.0713],[7.20997,-10.9859,54.3948],[6.24446,-11.4321,53.4858],[7.22919,-10.8763,53.0713],[7.20997,-10.9859,54.3948],[5.8439,-11.679,55.1828],[6.24446,-11.4321,53.4858],[5.8439,-11.679,55.1828],[4.8711,-11.9834,53.6348],[6.24446,-11.4321,53.4858],[5.57642,-11.573,52.3286],[6.24446,-11.4321,53.4858],[4.8711,-11.9834,53.6348],[5.57642,-11.573,52.3286],[4.8711,-11.9834,53.6348],[4.24784,-11.9915,52.1889],[5.57642,-11.573,52.3286],[4.24784,-11.9915,52.1889],[5.11121,-11.5236,51.2117],[5.57642,-11.573,52.3286],[5.11121,-11.5236,51.2117],[6.25143,-11.0254,51.2158],[5.57642,-11.573,52.3286],[6.25143,-11.0254,51.2158],[6.63002,-11.0974,52.35],[5.38667,-10.9818,49.7791],[6.25143,-11.0254,51.2158],[5.11121,-11.5236,51.2117],[3.99475,-11.7142,50.6543],[5.38667,-10.9818,49.7791],[5.11121,-11.5236,51.2117],[5.38667,-10.9818,49.7791],[3.99475,-11.7142,50.6543],[3.713,-11.2565,48.9268],[3.713,-11.2565,48.9268],[5.06974,-10.4839,48.0103],[5.38667,-10.9818,49.7791],[5.06974,-10.4839,48.0103],[6.40345,-10.1123,48.5616],[5.38667,-10.9818,49.7791],[6.40345,-10.1123,48.5616],[6.94173,-10.3277,50.0185],[5.38667,-10.9818,49.7791],[6.94173,-10.3277,50.0185],[6.40345,-10.1123,48.5616],[7.48282,-9.6688,48.9528],[8.18696,-9.57583,50.0504],[6.94173,-10.3277,50.0185],[7.48282,-9.6688,48.9528],[8.42042,-8.86055,48.6342],[8.18696,-9.57583,50.0504],[7.48282,-9.6688,48.9528],[7.48282,-9.6688,48.9528],[7.27333,-9.22802,47.6857],[8.42042,-8.86055,48.6342],[8.29303,-8.06605,46.9623],[8.42042,-8.86055,48.6342],[7.27333,-9.22802,47.6857],[6.76761,-8.69441,46.1761],[8.29303,-8.06605,46.9623],[7.27333,-9.22802,47.6857],[6.01789,-9.67693,47.1131],[6.76761,-8.69441,46.1761],[7.27333,-9.22802,47.6857],[7.27333,-9.22802,47.6857],[6.40345,-10.1123,48.5616],[6.01789,-9.67693,47.1131],[6.76761,-8.69441,46.1761],[6.01789,-9.67693,47.1131],[5.43433,-9.23702,45.7888],[5.84141,-8.12446,44.5898],[6.76761,-8.69441,46.1761],[5.43433,-9.23702,45.7888],[5.43433,-9.23702,45.7888],[4.62037,-8.90829,44.7443],[5.84141,-8.12446,44.5898],[5.84141,-8.12446,44.5898],[4.62037,-8.90829,44.7443],[4.1214,-8.00733,43.4605],[5.48537,-7.1964,43.2899],[5.84141,-8.12446,44.5898],[4.1214,-8.00733,43.4605],[5.48537,-7.1964,43.2899],[4.1214,-8.00733,43.4605],[4.43054,-6.4484,42.1755],[5.48537,-7.1964,43.2899],[4.43054,-6.4484,42.1755],[6.10481,-6.2047,42.7822],[6.82108,-6.88692,43.9272],[5.48537,-7.1964,43.2899],[6.10481,-6.2047,42.7822],[7.31709,-5.91351,43.4098],[6.82108,-6.88692,43.9272],[6.10481,-6.2047,42.7822],[6.94863,-4.98724,42.5136],[7.31709,-5.91351,43.4098],[6.10481,-6.2047,42.7822],[5.58124,-5.40192,41.9463],[6.94863,-4.98724,42.5136],[6.10481,-6.2047,42.7822],[6.94863,-4.98724,42.5136],[5.58124,-5.40192,41.9463],[5.96147,-4.36428,41.638],[5.96147,-4.36428,41.638],[7.13671,-3.47895,41.9796],[6.94863,-4.98724,42.5136],[7.13671,-3.47895,41.9796],[8.24904,-4.01377,42.9666],[6.94863,-4.98724,42.5136],[6.94863,-4.98724,42.5136],[8.24904,-4.01377,42.9666],[8.08415,-5.12602,43.4817],[9.29425,-4.4118,44.2201],[8.08415,-5.12602,43.4817],[8.24904,-4.01377,42.9666],[8.24904,-4.01377,42.9666],[9.27075,-3.20279,43.4666],[9.29425,-4.4118,44.2201],[9.27075,-3.20279,43.4666],[10.2676,-2.94908,44.4929],[9.29425,-4.4118,44.2201],[10.2676,-2.94908,44.4929],[10.5483,-4.09987,45.5213],[9.29425,-4.4118,44.2201],[10.5483,-4.09987,45.5213],[9.77362,-5.21987,45.3743],[9.29425,-4.4118,44.2201],[9.77362,-5.21987,45.3743],[8.43739,-6.08062,44.662],[9.29425,-4.4118,44.2201],[8.43739,-6.08062,44.662],[9.77362,-5.21987,45.3743],[9.62246,-6.1914,46.1449],[9.62246,-6.1914,46.1449],[8.70458,-7.03918,45.9519],[8.43739,-6.08062,44.662],[8.70458,-7.03918,45.9519],[7.51929,-7.53221,45.3142],[8.43739,-6.08062,44.662],[6.82108,-6.88692,43.9272],[8.43739,-6.08062,44.662],[7.51929,-7.53221,45.3142],[5.84141,-8.12446,44.5898],[6.82108,-6.88692,43.9272],[7.51929,-7.53221,45.3142],[8.70458,-7.03918,45.9519],[8.29303,-8.06605,46.9623],[7.51929,-7.53221,45.3142],[8.70458,-7.03918,45.9519],[9.39577,-7.11331,46.9773],[8.29303,-8.06605,46.9623],[8.29303,-8.06605,46.9623],[9.39577,-7.11331,46.9773],[9.62798,-7.72081,48.4134],[10.4763,-6.35098,47.6793],[9.62798,-7.72081,48.4134],[9.39577,-7.11331,46.9773],[9.39577,-7.11331,46.9773],[9.62246,-6.1914,46.1449],[10.4763,-6.35098,47.6793],[9.62246,-6.1914,46.1449],[10.649,-5.16833,46.5621],[10.4763,-6.35098,47.6793],[10.649,-5.16833,46.5621],[11.4708,-5.12129,47.9204],[10.4763,-6.35098,47.6793],[10.4763,-6.35098,47.6793],[11.4708,-5.12129,47.9204],[11.3714,-5.97188,48.8062],[10.7886,-6.94521,49.1705],[10.4763,-6.35098,47.6793],[11.3714,-5.97188,48.8062],[11.65,-6.26232,50.0154],[10.7886,-6.94521,49.1705],[11.3714,-5.97188,48.8062],[11.3714,-5.97188,48.8062],[12.169,-4.99182,49.3209],[11.65,-6.26232,50.0154],[12.169,-4.99182,49.3209],[11.3714,-5.97188,48.8062],[11.4708,-5.12129,47.9204],[12.1414,-4.21772,48.2513],[12.169,-4.99182,49.3209],[11.4708,-5.12129,47.9204],[11.4708,-5.12129,47.9204],[11.592,-3.90873,46.9781],[12.1414,-4.21772,48.2513],[11.592,-3.90873,46.9781],[12.4876,-3.11709,48.0858],[12.1414,-4.21772,48.2513],[12.4876,-3.11709,48.0858],[12.6365,-3.86323,49.0407],[12.1414,-4.21772,48.2513],[12.4876,-3.11709,48.0858],[13.033,-3.00184,49.2962],[12.6365,-3.86323,49.0407],[12.6365,-3.86323,49.0407],[13.033,-3.00184,49.2962],[13.006,-3.90688,50.3318],[12.169,-4.99182,49.3209],[12.6365,-3.86323,49.0407],[13.006,-3.90688,50.3318],[12.4876,-3.11709,48.0858],[13.1283,-1.80618,48.7875],[13.033,-3.00184,49.2962],[12.0166,-2.77961,46.9363],[12.4876,-3.11709,48.0858],[11.592,-3.90873,46.9781],[12.0166,-2.77961,46.9363],[11.592,-3.90873,46.9781],[11.2837,-2.84191,45.8239],[12.0166,-2.77961,46.9363],[11.2837,-2.84191,45.8239],[12.4056,-1.18976,47.0729],[12.4056,-1.18976,47.0729],[11.2837,-2.84191,45.8239],[11.0319,-1.12298,44.8923],[10.2676,-2.94908,44.4929],[11.0319,-1.12298,44.8923],[11.2837,-2.84191,45.8239],[10.2676,-2.94908,44.4929],[9.72684,-1.9118,43.4799],[11.0319,-1.12298,44.8923],[11.592,-3.90873,46.9781],[10.5483,-4.09987,45.5213],[11.2837,-2.84191,45.8239],[10.5483,-4.09987,45.5213],[11.592,-3.90873,46.9781],[10.649,-5.16833,46.5621],[12.0166,-2.77961,46.9363],[12.4056,-1.18976,47.0729],[12.4876,-3.11709,48.0858],[12.169,-4.99182,49.3209],[12.1414,-4.21772,48.2513],[12.6365,-3.86323,49.0407],[10.649,-5.16833,46.5621],[11.592,-3.90873,46.9781],[11.4708,-5.12129,47.9204],[10.4763,-6.35098,47.6793],[10.7886,-6.94521,49.1705],[9.62798,-7.72081,48.4134],[9.62798,-7.72081,48.4134],[10.7886,-6.94521,49.1705],[10.2837,-7.78996,49.7279],[8.70458,-7.03918,45.9519],[9.62246,-6.1914,46.1449],[9.39577,-7.11331,46.9773],[9.62246,-6.1914,46.1449],[9.77362,-5.21987,45.3743],[10.649,-5.16833,46.5621],[10.5483,-4.09987,45.5213],[10.649,-5.16833,46.5621],[9.77362,-5.21987,45.3743],[11.2837,-2.84191,45.8239],[10.5483,-4.09987,45.5213],[10.2676,-2.94908,44.4929],[9.27075,-3.20279,43.4666],[9.72684,-1.9118,43.4799],[10.2676,-2.94908,44.4929],[9.27075,-3.20279,43.4666],[8.24904,-4.01377,42.9666],[8.46916,-2.58741,42.577],[8.08415,-5.12602,43.4817],[9.29425,-4.4118,44.2201],[8.43739,-6.08062,44.662],[8.43739,-6.08062,44.662],[7.31709,-5.91351,43.4098],[8.08415,-5.12602,43.4817],[5.96147,-4.36428,41.638],[5.58124,-5.40192,41.9463],[4.33013,-4.71025,41.1506],[5.74317,-2.92408,41.1242],[5.96147,-4.36428,41.638],[4.33013,-4.71025,41.1506],[4.30441,-3.2062,40.6261],[5.74317,-2.92408,41.1242],[4.33013,-4.71025,41.1506],[4.33013,-4.71025,41.1506],[3.2772,-3.64553,40.4473],[4.30441,-3.2062,40.6261],[3.2772,-3.64553,40.4473],[3.38433,-2.39765,40.2529],[4.30441,-3.2062,40.6261],[3.38433,-2.39765,40.2529],[4.72896,-2.19593,40.5847],[4.30441,-3.2062,40.6261],[4.53852,-1.00453,40.3683],[4.72896,-2.19593,40.5847],[3.38433,-2.39765,40.2529],[3.38433,-2.39765,40.2529],[3.00991,-1.31883,39.9021],[4.53852,-1.00453,40.3683],[3.00991,-1.31883,39.9021],[3.38433,-2.39765,40.2529],[1.76471,-2.36481,39.9733],[1.84163,-1.54079,39.6664],[3.00991,-1.31883,39.9021],[1.76471,-2.36481,39.9733],[1.84163,-1.54079,39.6664],[1.76471,-2.36481,39.9733],[1.09122,-1.75342,39.6486],[1.68087,-1.67129,39.1382],[1.84163,-1.54079,39.6664],[1.09122,-1.75342,39.6486],[1.84163,-1.54079,39.6664],[1.68087,-1.67129,39.1382],[2.54773,-1.16996,39.4964],[0.180614,-2.33035,39.8661],[1.09122,-1.75342,39.6486],[1.76471,-2.36481,39.9733],[0.532014,-3.72588,40.2061],[0.180614,-2.33035,39.8661],[1.76471,-2.36481,39.9733],[0.532014,-3.72588,40.2061],[1.76471,-2.36481,39.9733],[2.2103,-3.29649,40.1947],[0.532014,-3.72588,40.2061],[2.2103,-3.29649,40.1947],[2.15376,-4.44287,40.4976],[2.15376,-4.44287,40.4976],[0.989587,-5.46013,40.7616],[0.532014,-3.72588,40.2061],[0.989587,-5.46013,40.7616],[-0.595938,-5.2231,40.6617],[0.532014,-3.72588,40.2061],[0.532014,-3.72588,40.2061],[-0.595938,-5.2231,40.6617],[-1.24183,-4.11155,40.3652],[-1.24183,-4.11155,40.3652],[-1.09321,-2.80218,40.0465],[0.532014,-3.72588,40.2061],[-1.09321,-2.80218,40.0465],[-1.24183,-4.11155,40.3652],[-2.85829,-3.63486,40.5468],[-1.24183,-4.11155,40.3652],[-2.12763,-5.1726,40.8678],[-2.85829,-3.63486,40.5468],[-2.85829,-3.63486,40.5468],[-2.12763,-5.1726,40.8678],[-3.85205,-5.17321,41.3769],[-2.12763,-5.1726,40.8678],[-2.63742,-6.5057,41.7275],[-3.85205,-5.17321,41.3769],[-4.21972,-6.50154,42.3083],[-3.85205,-5.17321,41.3769],[-2.63742,-6.5057,41.7275],[-3.32739,-7.57408,42.8371],[-4.21972,-6.50154,42.3083],[-2.63742,-6.5057,41.7275],[-1.88771,-7.67123,42.4503],[-3.32739,-7.57408,42.8371],[-2.63742,-6.5057,41.7275],[-1.38818,-6.94198,41.6663],[-1.88771,-7.67123,42.4503],[-2.63742,-6.5057,41.7275],[-1.41521,-6.14217,41.1523],[-1.38818,-6.94198,41.6663],[-2.63742,-6.5057,41.7275],[-1.41521,-6.14217,41.1523],[-0.155347,-6.59238,41.3389],[-1.38818,-6.94198,41.6663],[-1.38818,-6.94198,41.6663],[-0.155347,-6.59238,41.3389],[-0.697333,-7.56391,42.1172],[-0.155347,-6.59238,41.3389],[0.783486,-7.79197,42.3711],[-0.697333,-7.56391,42.1172],[-0.697333,-7.56391,42.1172],[0.783486,-7.79197,42.3711],[-0.703119,-8.56156,43.2021],[-0.697333,-7.56391,42.1172],[-0.703119,-8.56156,43.2021],[-1.88771,-7.67123,42.4503],[-1.88771,-7.67123,42.4503],[-0.703119,-8.56156,43.2021],[-2.39653,-8.55663,43.5557],[-0.703119,-8.56156,43.2021],[-1.30379,-9.47011,44.4821],[-2.39653,-8.55663,43.5557],[-2.39653,-8.55663,43.5557],[-1.30379,-9.47011,44.4821],[-3.09106,-9.23884,44.7258],[-2.39653,-8.55663,43.5557],[-3.09106,-9.23884,44.7258],[-3.90317,-8.41507,43.9861],[-2.39653,-8.55663,43.5557],[-3.90317,-8.41507,43.9861],[-3.32739,-7.57408,42.8371],[-3.32739,-7.57408,42.8371],[-3.90317,-8.41507,43.9861],[-4.72733,-7.43097,43.3366],[-4.72733,-7.43097,43.3366],[-3.90317,-8.41507,43.9861],[-5.27951,-8.13829,44.4667],[-5.27951,-8.13829,44.4667],[-5.94687,-7.18779,43.8412],[-4.72733,-7.43097,43.3366],[-5.94687,-7.18779,43.8412],[-5.51358,-6.39424,42.8716],[-4.72733,-7.43097,43.3366],[-4.72733,-7.43097,43.3366],[-5.51358,-6.39424,42.8716],[-4.21972,-6.50154,42.3083],[-5.04132,-5.62909,42.0684],[-4.21972,-6.50154,42.3083],[-5.51358,-6.39424,42.8716],[-5.04132,-5.62909,42.0684],[-5.51358,-6.39424,42.8716],[-6.23226,-5.15238,42.4745],[-5.21241,-4.72596,41.6616],[-5.04132,-5.62909,42.0684],[-6.23226,-5.15238,42.4745],[-6.23226,-5.15238,42.4745],[-6.14235,-3.69177,41.7301],[-5.21241,-4.72596,41.6616],[-7.20622,-4.16088,42.5844],[-6.14235,-3.69177,41.7301],[-6.23226,-5.15238,42.4745],[-7.51245,-5.06793,43.3607],[-7.20622,-4.16088,42.5844],[-6.23226,-5.15238,42.4745],[-7.51245,-5.06793,43.3607],[-6.23226,-5.15238,42.4745],[-6.69849,-6.1767,43.5144],[-6.69849,-6.1767,43.5144],[-7.82633,-6.06362,44.454],[-7.51245,-5.06793,43.3607],[-7.51245,-5.06793,43.3607],[-7.82633,-6.06362,44.454],[-8.44567,-4.90772,44.1098],[-7.51245,-5.06793,43.3607],[-8.44567,-4.90772,44.1098],[-8.35664,-3.82285,43.3705],[-8.44567,-4.90772,44.1098],[-9.29632,-4.11917,44.5369],[-8.35664,-3.82285,43.3705],[-8.35664,-3.82285,43.3705],[-9.29632,-4.11917,44.5369],[-9.35786,-3.05508,43.9752],[-8.75099,-2.36916,43.1099],[-8.35664,-3.82285,43.3705],[-9.35786,-3.05508,43.9752],[-9.35786,-3.05508,43.9752],[-9.82783,-1.90056,44.034],[-8.75099,-2.36916,43.1099],[-8.75099,-2.36916,43.1099],[-9.82783,-1.90056,44.034],[-9.19263,-0.852909,43.1116],[-7.87896,-1.52751,42.2226],[-8.75099,-2.36916,43.1099],[-9.19263,-0.852909,43.1116],[-8.17003,-0.247589,42.2404],[-7.87896,-1.52751,42.2226],[-9.19263,-0.852909,43.1116],[-9.19263,-0.852909,43.1116],[-9.10491,0.701737,42.8938],[-8.17003,-0.247589,42.2404],[-9.99307,0.195933,43.6965],[-9.10491,0.701737,42.8938],[-9.19263,-0.852909,43.1116],[-9.99307,0.195933,43.6965],[-9.19263,-0.852909,43.1116],[-10.2074,-0.727085,44.0913],[-10.2074,-0.727085,44.0913],[-10.8799,0.305973,44.7605],[-9.99307,0.195933,43.6965],[-10.2467,1.65224,43.941],[-9.99307,0.195933,43.6965],[-10.8799,0.305973,44.7605],[-11.1775,1.6497,45.0048],[-10.2467,1.65224,43.941],[-10.8799,0.305973,44.7605],[-10.8799,0.305973,44.7605],[-11.7387,1.04801,45.9287],[-11.1775,1.6497,45.0048],[-11.7387,1.04801,45.9287],[-11.6927,2.48886,45.7731],[-11.1775,1.6497,45.0048],[-12.3453,2.38007,46.9523],[-11.6927,2.48886,45.7731],[-11.7387,1.04801,45.9287],[-12.3619,1.26624,47.0071],[-12.3453,2.38007,46.9523],[-11.7387,1.04801,45.9287],[-12.2065,0.216576,46.8895],[-12.3619,1.26624,47.0071],[-11.7387,1.04801,45.9287],[-11.5197,-0.243762,45.8051],[-12.2065,0.216576,46.8895],[-11.7387,1.04801,45.9287],[-11.5197,-0.243762,45.8051],[-11.6774,-1.38315,46.4494],[-12.2065,0.216576,46.8895],[-11.6774,-1.38315,46.4494],[-12.3098,-0.767405,47.3581],[-12.2065,0.216576,46.8895],[-12.6289,-0.0241618,47.786],[-12.2065,0.216576,46.8895],[-12.3098,-0.767405,47.3581],[-12.6833,-0.874513,48.2299],[-12.6289,-0.0241618,47.786],[-12.3098,-0.767405,47.3581],[-12.1719,-1.75291,47.5339],[-12.6833,-0.874513,48.2299],[-12.3098,-0.767405,47.3581],[-12.5607,-2.04632,48.5792],[-12.6833,-0.874513,48.2299],[-12.1719,-1.75291,47.5339],[-11.9758,-2.86209,47.8301],[-12.5607,-2.04632,48.5792],[-12.1719,-1.75291,47.5339],[-11.5886,-2.54972,46.8549],[-11.9758,-2.86209,47.8301],[-12.1719,-1.75291,47.5339],[-11.5886,-2.54972,46.8549],[-12.1719,-1.75291,47.5339],[-11.6774,-1.38315,46.4494],[-11.5886,-2.54972,46.8549],[-11.6774,-1.38315,46.4494],[-11.1068,-2.34866,45.9402],[-10.9443,-3.3763,46.3088],[-11.5886,-2.54972,46.8549],[-11.1068,-2.34866,45.9402],[-10.2599,-2.97178,45.0826],[-10.9443,-3.3763,46.3088],[-11.1068,-2.34866,45.9402],[-10.2599,-2.97178,45.0826],[-11.1068,-2.34866,45.9402],[-10.8368,-1.34334,45.1315],[-10.8368,-1.34334,45.1315],[-9.82783,-1.90056,44.034],[-10.2599,-2.97178,45.0826],[-10.8368,-1.34334,45.1315],[-10.2074,-0.727085,44.0913],[-9.82783,-1.90056,44.034],[-10.0751,-4.50468,45.888],[-10.9443,-3.3763,46.3088],[-10.2599,-2.97178,45.0826],[-10.2599,-2.97178,45.0826],[-9.29632,-4.11917,44.5369],[-10.0751,-4.50468,45.888],[-10.0751,-4.50468,45.888],[-9.29632,-4.11917,44.5369],[-8.97423,-5.34336,45.0878],[-9.42187,-5.88943,46.2607],[-10.0751,-4.50468,45.888],[-8.97423,-5.34336,45.0878],[-9.42187,-5.88943,46.2607],[-8.97423,-5.34336,45.0878],[-8.50636,-6.38251,45.5434],[-9.42187,-5.88943,46.2607],[-8.50636,-6.38251,45.5434],[-8.63382,-7.06049,46.6321],[-9.70932,-6.48774,47.4976],[-9.42187,-5.88943,46.2607],[-8.63382,-7.06049,46.6321],[-8.91327,-7.64822,48.0407],[-9.70932,-6.48774,47.4976],[-8.63382,-7.06049,46.6321],[-8.63382,-7.06049,46.6321],[-7.52894,-8.3515,47.181],[-8.91327,-7.64822,48.0407],[-8.91327,-7.64822,48.0407],[-7.52894,-8.3515,47.181],[-8.07063,-8.83023,49.0354],[-8.07063,-8.83023,49.0354],[-9.24976,-7.93912,49.211],[-8.91327,-7.64822,48.0407],[-9.96339,-6.97476,48.7764],[-8.91327,-7.64822,48.0407],[-9.24976,-7.93912,49.211],[-9.96339,-6.97476,48.7764],[-9.24976,-7.93912,49.211],[-9.9986,-7.52331,49.9969],[-10.9189,-6.27386,49.7114],[-9.96339,-6.97476,48.7764],[-9.9986,-7.52331,49.9969],[-9.9986,-7.52331,49.9969],[-10.6856,-7.12417,50.8957],[-10.9189,-6.27386,49.7114],[-10.6856,-7.12417,50.8957],[-11.3827,-6.22493,50.8446],[-10.9189,-6.27386,49.7114],[-10.9189,-6.27386,49.7114],[-11.3827,-6.22493,50.8446],[-11.7916,-5.32499,50.2916],[-11.557,-4.84382,48.9908],[-10.9189,-6.27386,49.7114],[-11.7916,-5.32499,50.2916],[-12.2642,-4.25114,49.9831],[-11.557,-4.84382,48.9908],[-11.7916,-5.32499,50.2916],[-12.2642,-4.25114,49.9831],[-11.7916,-5.32499,50.2916],[-12.2803,-4.77082,50.8],[-12.8596,-3.89166,51.4807],[-12.2642,-4.25114,49.9831],[-12.2803,-4.77082,50.8],[-12.2803,-4.77082,50.8],[-11.9932,-5.57224,51.5608],[-12.8596,-3.89166,51.4807],[-12.8596,-3.89166,51.4807],[-11.9932,-5.57224,51.5608],[-12.6333,-4.8958,52.7817],[-12.6333,-4.8958,52.7817],[-13.155,-3.84608,52.7231],[-12.8596,-3.89166,51.4807],[-12.8596,-3.89166,51.4807],[-13.155,-3.84608,52.7231],[-13.3886,-2.97875,52.1251],[-13.3886,-2.97875,52.1251],[-13.2336,-2.80177,51.1672],[-12.8596,-3.89166,51.4807],[-12.8596,-3.89166,51.4807],[-13.2336,-2.80177,51.1672],[-12.8523,-3.07346,50.2534],[-12.8523,-3.07346,50.2534],[-13.2336,-2.80177,51.1672],[-13.3256,-1.88302,50.5767],[-12.8523,-3.07346,50.2534],[-13.3256,-1.88302,50.5767],[-12.8719,-2.29731,49.5357],[-12.8719,-2.29731,49.5357],[-12.2811,-3.34095,48.9894],[-12.8523,-3.07346,50.2534],[-12.2811,-3.34095,48.9894],[-12.2642,-4.25114,49.9831],[-12.8523,-3.07346,50.2534],[-12.8719,-2.29731,49.5357],[-12.5607,-2.04632,48.5792],[-12.2811,-3.34095,48.9894],[-13.121,-1.14813,49.4608],[-12.5607,-2.04632,48.5792],[-12.8719,-2.29731,49.5357],[-13.3256,-1.88302,50.5767],[-13.121,-1.14813,49.4608],[-12.8719,-2.29731,49.5357],[-13.3256,-1.88302,50.5767],[-13.5915,-0.549013,50.5688],[-13.121,-1.14813,49.4608],[-13.121,-1.14813,49.4608],[-13.5915,-0.549013,50.5688],[-13.4188,-0.113421,49.7846],[-13.4188,-0.113421,49.7846],[-13.0718,0.443042,48.7533],[-13.121,-1.14813,49.4608],[-12.6833,-0.874513,48.2299],[-13.121,-1.14813,49.4608],[-13.0718,0.443042,48.7533],[-13.0718,0.443042,48.7533],[-13.4188,-0.113421,49.7846],[-13.697,0.759705,50.4283],[-13.4324,1.73335,49.4891],[-13.0718,0.443042,48.7533],[-13.697,0.759705,50.4283],[-13.697,0.759705,50.4283],[-13.7823,1.90639,50.4846],[-13.4324,1.73335,49.4891],[-13.4324,1.73335,49.4891],[-13.7823,1.90639,50.4846],[-13.6029,2.91146,49.993],[-13.2048,2.67107,48.8714],[-13.4324,1.73335,49.4891],[-13.6029,2.91146,49.993],[-13.6029,2.91146,49.993],[-13.267,3.57604,49.1342],[-13.2048,2.67107,48.8714],[-13.267,3.57604,49.1342],[-12.9212,3.48427,48.2688],[-13.2048,2.67107,48.8714],[-12.9212,3.48427,48.2688],[-12.8098,2.54956,47.9191],[-13.2048,2.67107,48.8714],[-12.8098,2.54956,47.9191],[-13.0078,1.679,48.3931],[-13.2048,2.67107,48.8714],[-12.6686,1.75542,47.5962],[-13.0078,1.679,48.3931],[-12.8098,2.54956,47.9191],[-12.3453,2.38007,46.9523],[-12.6686,1.75542,47.5962],[-12.8098,2.54956,47.9191],[-12.5624,3.26454,47.4413],[-12.3453,2.38007,46.9523],[-12.8098,2.54956,47.9191],[-12.5624,3.26454,47.4413],[-12.0614,3.60108,46.5225],[-12.3453,2.38007,46.9523],[-12.6868,0.886622,47.7305],[-13.0078,1.679,48.3931],[-12.6686,1.75542,47.5962],[-12.6686,1.75542,47.5962],[-12.3619,1.26624,47.0071],[-12.6868,0.886622,47.7305],[-12.6868,0.886622,47.7305],[-13.0718,0.443042,48.7533],[-13.0078,1.679,48.3931],[-13.0718,0.443042,48.7533],[-12.6868,0.886622,47.7305],[-12.6289,-0.0241618,47.786],[-12.9212,3.48427,48.2688],[-12.5624,3.26454,47.4413],[-12.8098,2.54956,47.9191],[-12.5624,3.26454,47.4413],[-12.9212,3.48427,48.2688],[-12.5242,4.24231,47.5657],[-12.9212,3.48427,48.2688],[-12.98,4.49504,48.6779],[-12.5242,4.24231,47.5657],[-12.9212,3.48427,48.2688],[-13.267,3.57604,49.1342],[-12.98,4.49504,48.6779],[-13.447,4.23474,49.8542],[-12.98,4.49504,48.6779],[-13.267,3.57604,49.1342],[-12.98,4.49504,48.6779],[-13.447,4.23474,49.8542],[-13.0552,5.71039,49.4387],[-12.4277,5.60267,47.8511],[-12.98,4.49504,48.6779],[-13.0552,5.71039,49.4387],[-12.516,6.62912,48.5036],[-12.4277,5.60267,47.8511],[-13.0552,5.71039,49.4387],[-12.516,6.62912,48.5036],[-13.0552,5.71039,49.4387],[-12.679,7.33444,49.5012],[-12.516,6.62912,48.5036],[-12.679,7.33444,49.5012],[-12.2263,7.45526,48.3427],[-12.2263,7.45526,48.3427],[-11.9842,6.91235,47.5543],[-12.516,6.62912,48.5036],[-11.9842,6.91235,47.5543],[-12.2263,7.45526,48.3427],[-11.6785,8.02929,47.6703],[-11.6785,8.02929,47.6703],[-11.1426,7.50577,46.5098],[-11.9842,6.91235,47.5543],[-11.1426,7.50577,46.5098],[-11.6714,6.12821,46.6473],[-11.9842,6.91235,47.5543],[-10.9224,8.84868,47.0237],[-11.1426,7.50577,46.5098],[-11.6785,8.02929,47.6703],[-11.4631,9.08996,48.16],[-10.9224,8.84868,47.0237],[-11.6785,8.02929,47.6703],[-12.0526,8.25335,48.6246],[-11.4631,9.08996,48.16],[-11.6785,8.02929,47.6703],[-12.0526,8.25335,48.6246],[-11.9369,9.32137,49.5706],[-11.4631,9.08996,48.16],[-12.679,7.33444,49.5012],[-11.9369,9.32137,49.5706],[-12.0526,8.25335,48.6246],[-12.9082,8.36287,51.3783],[-11.9369,9.32137,49.5706],[-12.679,7.33444,49.5012],[-12.679,7.33444,49.5012],[-13.3661,6.50833,50.968],[-12.9082,8.36287,51.3783],[-12.9082,8.36287,51.3783],[-13.3661,6.50833,50.968],[-13.6705,6.90615,52.3904],[-12.9082,8.36287,51.3783],[-13.6705,6.90615,52.3904],[-13.4777,7.79619,52.6158],[-12.9082,8.36287,51.3783],[-13.4777,7.79619,52.6158],[-13.3705,8.47883,53.3704],[-13.3705,8.47883,53.3704],[-12.8524,9.45064,52.774],[-12.9082,8.36287,51.3783],[-12.9082,8.36287,51.3783],[-12.8524,9.45064,52.774],[-12.2389,10.2071,51.7568],[-12.8524,9.45064,52.774],[-12.4098,10.6122,53.5243],[-12.2389,10.2071,51.7568],[-12.4098,10.6122,53.5243],[-11.7407,11.4207,52.3994],[-12.2389,10.2071,51.7568],[-12.4098,10.6122,53.5243],[-11.6811,11.9292,53.8378],[-11.7407,11.4207,52.3994],[-13.0522,9.48861,53.9832],[-12.4098,10.6122,53.5243],[-12.8524,9.45064,52.774],[-12.7725,10.2521,54.915],[-12.4098,10.6122,53.5243],[-13.0522,9.48861,53.9832],[-13.2809,9.17466,55.8564],[-12.7725,10.2521,54.915],[-13.0522,9.48861,53.9832],[-13.431,8.71901,54.4749],[-13.2809,9.17466,55.8564],[-13.0522,9.48861,53.9832],[-13.0522,9.48861,53.9832],[-13.3705,8.47883,53.3704],[-13.431,8.71901,54.4749],[-13.3705,8.47883,53.3704],[-13.8146,7.59638,54.8046],[-13.431,8.71901,54.4749],[-13.7654,7.32597,53.4126],[-13.8146,7.59638,54.8046],[-13.3705,8.47883,53.3704],[-14.0739,6.52264,54.2592],[-13.8146,7.59638,54.8046],[-13.7654,7.32597,53.4126],[-13.9606,6.41828,53.2002],[-14.0739,6.52264,54.2592],[-13.7654,7.32597,53.4126],[-13.7654,7.32597,53.4126],[-13.6705,6.90615,52.3904],[-13.9606,6.41828,53.2002],[-13.6705,6.90615,52.3904],[-13.9218,5.5921,52.3452],[-13.9606,6.41828,53.2002],[-13.9606,6.41828,53.2002],[-13.9218,5.5921,52.3452],[-14.1882,5.588,53.7186],[-14.1882,5.588,53.7186],[-13.9218,5.5921,52.3452],[-14.2817,4.28578,53.3903],[-14.2817,4.28578,53.3903],[-14.3794,4.88499,54.4755],[-14.1882,5.588,53.7186],[-14.2947,5.66531,54.7633],[-14.1882,5.588,53.7186],[-14.3794,4.88499,54.4755],[-14.4428,4.87747,55.6886],[-14.2947,5.66531,54.7633],[-14.3794,4.88499,54.4755],[-14.4428,4.87747,55.6886],[-14.3794,4.88499,54.4755],[-14.4955,3.88103,54.8221],[-14.4955,3.88103,54.8221],[-14.5781,3.35073,56.1751],[-14.4428,4.87747,55.6886],[-14.4428,4.87747,55.6886],[-14.5781,3.35073,56.1751],[-14.4856,4.37535,57.0928],[-14.4428,4.87747,55.6886],[-14.4856,4.37535,57.0928],[-14.3707,5.48245,56.7197],[-14.3707,5.48245,56.7197],[-14.1898,6.33865,55.7027],[-14.4428,4.87747,55.6886],[-14.1535,6.42834,57.2126],[-14.1898,6.33865,55.7027],[-14.3707,5.48245,56.7197],[-14.1535,6.42834,57.2126],[-14.3707,5.48245,56.7197],[-14.3283,5.31592,57.8295],[-14.3283,5.31592,57.8295],[-14.0643,6.24584,58.499],[-14.1535,6.42834,57.2126],[-14.1535,6.42834,57.2126],[-14.0643,6.24584,58.499],[-13.7741,7.50663,57.9718],[-13.7741,7.50663,57.9718],[-13.8388,7.63514,56.4803],[-14.1535,6.42834,57.2126],[-13.4518,8.61935,57.3078],[-13.8388,7.63514,56.4803],[-13.7741,7.50663,57.9718],[-13.0938,8.87512,58.8821],[-13.4518,8.61935,57.3078],[-13.7741,7.50663,57.9718],[-13.7741,7.50663,57.9718],[-13.653,7.1356,59.3245],[-13.0938,8.87512,58.8821],[-13.653,7.1356,59.3245],[-13.1447,7.92646,60.303],[-13.0938,8.87512,58.8821],[-13.0938,8.87512,58.8821],[-13.1447,7.92646,60.303],[-12.566,9.10926,60.5278],[-12.566,9.10926,60.5278],[-12.3621,10.0661,59.6921],[-13.0938,8.87512,58.8821],[-12.3621,10.0661,59.6921],[-12.3357,10.6342,58.4418],[-13.0938,8.87512,58.8821],[-12.9392,9.79532,57.3082],[-13.0938,8.87512,58.8821],[-12.3357,10.6342,58.4418],[-12.3357,10.6342,58.4418],[-12.4441,10.8386,57.1704],[-12.9392,9.79532,57.3082],[-12.9392,9.79532,57.3082],[-12.4441,10.8386,57.1704],[-12.6825,10.4942,56.1402],[-12.9392,9.79532,57.3082],[-12.6825,10.4942,56.1402],[-13.2809,9.17466,55.8564],[-13.4518,8.61935,57.3078],[-12.9392,9.79532,57.3082],[-13.2809,9.17466,55.8564],[-12.6825,10.4942,56.1402],[-12.4441,10.8386,57.1704],[-12.1979,11.3543,56.4512],[-12.6825,10.4942,56.1402],[-12.1979,11.3543,56.4512],[-12.1582,11.3671,55.1689],[-12.6825,10.4942,56.1402],[-12.1582,11.3671,55.1689],[-12.7725,10.2521,54.915],[-12.1979,11.3543,56.4512],[-12.4441,10.8386,57.1704],[-11.8334,11.7445,57.511],[-11.8334,11.7445,57.511],[-11.6794,12.1433,56.2717],[-12.1979,11.3543,56.4512],[-11.1852,12.7175,57.1522],[-11.6794,12.1433,56.2717],[-11.8334,11.7445,57.511],[-11.1152,12.535,58.3139],[-11.1852,12.7175,57.1522],[-11.8334,11.7445,57.511],[-11.1152,12.535,58.3139],[-11.8334,11.7445,57.511],[-11.6206,11.7221,58.7262],[-11.6206,11.7221,58.7262],[-10.9346,12.2896,59.6061],[-11.1152,12.535,58.3139],[-10.9346,12.2896,59.6061],[-10.4386,13.1326,58.9716],[-11.1152,12.535,58.3139],[-10.4386,13.1326,58.9716],[-10.4952,13.3817,57.8481],[-11.1152,12.535,58.3139],[-10.0281,13.7092,58.5702],[-10.4952,13.3817,57.8481],[-10.4386,13.1326,58.9716],[-10.0281,13.7092,58.5702],[-10.4386,13.1326,58.9716],[-9.84734,13.5956,59.4124],[-9.73679,13.8644,59.0047],[-10.0281,13.7092,58.5702],[-9.84734,13.5956,59.4124],[-9.73679,13.8644,59.0047],[-9.84734,13.5956,59.4124],[-9.384,14.0093,59.3769],[-9.73679,13.8644,59.0047],[-9.384,14.0093,59.3769],[-9.5968,14.0862,58.6172],[-9.384,14.0093,59.3769],[-9.0247,14.4344,58.8702],[-9.5968,14.0862,58.6172],[-9.0247,14.4344,58.8702],[-9.34136,14.3756,58.2261],[-9.5968,14.0862,58.6172],[-9.5968,14.0862,58.6172],[-9.34136,14.3756,58.2261],[-9.83381,14.0155,57.9913],[-9.5968,14.0862,58.6172],[-9.83381,14.0155,57.9913],[-10.0281,13.7092,58.5702],[-9.34136,14.3756,58.2261],[-9.37537,14.4691,57.4841],[-9.83381,14.0155,57.9913],[-9.37537,14.4691,57.4841],[-10.0245,13.9722,57.111],[-9.83381,14.0155,57.9913],[-10.0245,13.9722,57.111],[-10.4952,13.3817,57.8481],[-9.83381,14.0155,57.9913],[-10.6581,13.4021,56.7321],[-10.4952,13.3817,57.8481],[-10.0245,13.9722,57.111],[-11.1852,12.7175,57.1522],[-10.4952,13.3817,57.8481],[-10.6581,13.4021,56.7321],[-9.37537,14.4691,57.4841],[-9.42791,14.5495,56.2909],[-10.0245,13.9722,57.111],[-10.0245,13.9722,57.111],[-9.42791,14.5495,56.2909],[-10.2087,13.8936,56.2703],[-8.71728,15.0004,57.1368],[-9.42791,14.5495,56.2909],[-9.37537,14.4691,57.4841],[-8.7774,14.7942,58.0913],[-8.71728,15.0004,57.1368],[-9.37537,14.4691,57.4841],[-9.34136,14.3756,58.2261],[-8.7774,14.7942,58.0913],[-9.37537,14.4691,57.4841],[-9.34136,14.3756,58.2261],[-9.0247,14.4344,58.8702],[-8.7774,14.7942,58.0913],[-9.0247,14.4344,58.8702],[-8.27456,14.9148,58.9301],[-8.7774,14.7942,58.0913],[-8.27456,14.9148,58.9301],[-7.81888,15.4613,57.8123],[-8.7774,14.7942,58.0913],[-7.42945,15.4161,59.051],[-7.81888,15.4613,57.8123],[-8.27456,14.9148,58.9301],[-7.42945,15.4161,59.051],[-8.27456,14.9148,58.9301],[-7.83114,14.9454,59.7973],[-7.08501,15.343,59.955],[-7.42945,15.4161,59.051],[-7.83114,14.9454,59.7973],[-7.45745,14.9574,60.4261],[-7.08501,15.343,59.955],[-7.83114,14.9454,59.7973],[-7.45745,14.9574,60.4261],[-7.83114,14.9454,59.7973],[-7.98092,14.6058,60.4469],[-7.61859,14.6961,60.8166],[-7.45745,14.9574,60.4261],[-7.98092,14.6058,60.4469],[-7.61859,14.6961,60.8166],[-7.98092,14.6058,60.4469],[-7.72981,14.3993,61.2335],[-7.61859,14.6961,60.8166],[-7.72981,14.3993,61.2335],[-7.24359,14.7632,61.1362],[-7.72981,14.3993,61.2335],[-7.23734,14.4283,61.748],[-7.24359,14.7632,61.1362],[-7.23734,14.4283,61.748],[-6.6633,14.9104,61.4842],[-7.24359,14.7632,61.1362],[-7.24359,14.7632,61.1362],[-6.6633,14.9104,61.4842],[-6.80146,15.1912,60.7461],[-7.24359,14.7632,61.1362],[-6.80146,15.1912,60.7461],[-7.45745,14.9574,60.4261],[-6.80146,15.1912,60.7461],[-6.6633,14.9104,61.4842],[-6.08385,15.3655,61.1649],[-6.80146,15.1912,60.7461],[-6.08385,15.3655,61.1649],[-6.26666,15.6281,60.3422],[-6.26666,15.6281,60.3422],[-7.08501,15.343,59.955],[-6.80146,15.1912,60.7461],[-6.26666,15.6281,60.3422],[-6.6817,15.7563,59.3392],[-7.08501,15.343,59.955],[-6.26666,15.6281,60.3422],[-5.80238,16.3145,58.8564],[-6.6817,15.7563,59.3392],[-6.6817,15.7563,59.3392],[-5.80238,16.3145,58.8564],[-6.7949,15.9334,58.3967],[-6.6817,15.7563,59.3392],[-6.7949,15.9334,58.3967],[-7.42945,15.4161,59.051],[-6.7949,15.9334,58.3967],[-5.80238,16.3145,58.8564],[-6.17291,16.3483,57.9729],[-5.59453,16.0952,59.9281],[-5.80238,16.3145,58.8564],[-6.26666,15.6281,60.3422],[-6.26666,15.6281,60.3422],[-5.35108,15.8591,60.7997],[-5.59453,16.0952,59.9281],[-5.59453,16.0952,59.9281],[-5.35108,15.8591,60.7997],[-4.90518,16.4631,59.6748],[-4.90518,16.4631,59.6748],[-5.35108,15.8591,60.7997],[-4.50292,16.2802,60.6266],[-4.50292,16.2802,60.6266],[-3.91118,16.6953,60.0493],[-4.90518,16.4631,59.6748],[-4.90518,16.4631,59.6748],[-3.91118,16.6953,60.0493],[-4.35492,16.8129,59.2334],[-4.35492,16.8129,59.2334],[-4.948,16.7213,58.7146],[-4.90518,16.4631,59.6748],[-4.948,16.7213,58.7146],[-5.80238,16.3145,58.8564],[-4.90518,16.4631,59.6748],[-4.35492,16.8129,59.2334],[-3.91118,16.6953,60.0493],[-3.69205,17.0407,59.1491],[-4.35492,16.8129,59.2334],[-3.69205,17.0407,59.1491],[-4.26491,17.0175,58.505],[-3.69205,17.0407,59.1491],[-3.91118,16.6953,60.0493],[-3.04762,17.0282,59.7912],[-3.78916,16.3316,61.0835],[-3.91118,16.6953,60.0493],[-4.50292,16.2802,60.6266],[-3.78916,16.3316,61.0835],[-4.50292,16.2802,60.6266],[-4.52902,15.89,61.4687],[-3.78916,16.3316,61.0835],[-4.52902,15.89,61.4687],[-3.80406,15.9433,61.892],[-3.80406,15.9433,61.892],[-2.93206,16.2758,61.7311],[-3.78916,16.3316,61.0835],[-3.78916,16.3316,61.0835],[-2.93206,16.2758,61.7311],[-3.01282,16.7112,60.6924],[-3.36016,15.7061,62.5894],[-2.93206,16.2758,61.7311],[-3.80406,15.9433,61.892],[-3.80406,15.9433,61.892],[-4.35899,15.3732,62.54],[-3.36016,15.7061,62.5894],[-4.52902,15.89,61.4687],[-4.35899,15.3732,62.54],[-3.80406,15.9433,61.892],[-5.36281,15.3717,61.8027],[-4.35899,15.3732,62.54],[-4.52902,15.89,61.4687],[-4.52902,15.89,61.4687],[-5.35108,15.8591,60.7997],[-5.36281,15.3717,61.8027],[-5.36281,15.3717,61.8027],[-5.35108,15.8591,60.7997],[-6.08385,15.3655,61.1649],[-5.36281,15.3717,61.8027],[-6.08385,15.3655,61.1649],[-6.09158,15.0265,61.8351],[-5.36281,15.3717,61.8027],[-6.09158,15.0265,61.8351],[-5.83234,14.8163,62.421],[-5.83234,14.8163,62.421],[-5.21189,14.7532,62.9818],[-5.36281,15.3717,61.8027],[-5.83234,14.8163,62.421],[-5.9978,14.2527,63.1603],[-5.21189,14.7532,62.9818],[-5.9978,14.2527,63.1603],[-5.24809,14.24,63.7117],[-5.21189,14.7532,62.9818],[-5.24809,14.24,63.7117],[-4.50877,14.6616,63.5713],[-5.21189,14.7532,62.9818],[-4.50877,14.6616,63.5713],[-4.35899,15.3732,62.54],[-5.21189,14.7532,62.9818],[-3.68034,15.113,63.387],[-4.35899,15.3732,62.54],[-4.50877,14.6616,63.5713],[-3.68034,15.113,63.387],[-4.50877,14.6616,63.5713],[-3.79486,14.4954,64.2013],[-4.50877,14.6616,63.5713],[-4.68307,13.8972,64.4879],[-3.79486,14.4954,64.2013],[-3.79486,14.4954,64.2013],[-4.68307,13.8972,64.4879],[-3.69267,13.8423,65.0366],[-3.79486,14.4954,64.2013],[-3.69267,13.8423,65.0366],[-2.98603,14.4401,64.6261],[-3.69267,13.8423,65.0366],[-2.5904,13.7768,65.49],[-2.98603,14.4401,64.6261],[-3.59086,13.1383,65.8293],[-2.5904,13.7768,65.49],[-3.69267,13.8423,65.0366],[-3.59086,13.1383,65.8293],[-3.69267,13.8423,65.0366],[-4.43044,13.2403,65.3887],[-4.2798,12.7137,65.9962],[-3.59086,13.1383,65.8293],[-4.43044,13.2403,65.3887],[-5.02564,12.6284,65.7287],[-4.2798,12.7137,65.9962],[-4.43044,13.2403,65.3887],[-4.43044,13.2403,65.3887],[-5.21219,13.1723,65.0543],[-5.02564,12.6284,65.7287],[-5.21219,13.1723,65.0543],[-6.05614,12.5048,65.2562],[-5.02564,12.6284,65.7287],[-5.02564,12.6284,65.7287],[-6.05614,12.5048,65.2562],[-5.48524,11.963,66.1111],[-5.02564,12.6284,65.7287],[-5.48524,11.963,66.1111],[-4.60087,12.1329,66.3752],[-5.48524,11.963,66.1111],[-5.05545,11.4226,66.759],[-4.60087,12.1329,66.3752],[-4.60087,12.1329,66.3752],[-5.05545,11.4226,66.759],[-4.02304,11.6224,66.9891],[-4.60087,12.1329,66.3752],[-4.02304,11.6224,66.9891],[-3.69515,12.3938,66.4804],[-4.2798,12.7137,65.9962],[-4.60087,12.1329,66.3752],[-3.69515,12.3938,66.4804],[-4.02304,11.6224,66.9891],[-2.83868,11.9031,67.1108],[-3.69515,12.3938,66.4804],[-3.69515,12.3938,66.4804],[-2.83868,11.9031,67.1108],[-2.78788,12.8257,66.3592],[-3.69515,12.3938,66.4804],[-2.78788,12.8257,66.3592],[-3.59086,13.1383,65.8293],[-2.78788,12.8257,66.3592],[-2.83868,11.9031,67.1108],[-2.04837,12.4911,66.8295],[-1.91635,13.214,66.2158],[-2.78788,12.8257,66.3592],[-2.04837,12.4911,66.8295],[-1.91635,13.214,66.2158],[-2.5904,13.7768,65.49],[-2.78788,12.8257,66.3592],[-2.04837,12.4911,66.8295],[-2.83868,11.9031,67.1108],[-1.93888,11.9239,67.2945],[-1.45074,12.2545,67.1173],[-2.04837,12.4911,66.8295],[-1.93888,11.9239,67.2945],[-1.18064,11.6355,67.5787],[-1.45074,12.2545,67.1173],[-1.93888,11.9239,67.2945],[-1.93888,11.9239,67.2945],[-2.13486,11.3632,67.6427],[-1.18064,11.6355,67.5787],[-2.13486,11.3632,67.6427],[-1.38009,10.614,68.2107],[-1.18064,11.6355,67.5787],[-1.18064,11.6355,67.5787],[-1.38009,10.614,68.2107],[-0.581614,11.1317,67.9681],[-0.581614,11.1317,67.9681],[0.012759,11.8045,67.505],[-1.18064,11.6355,67.5787],[-0.581614,11.1317,67.9681],[-1.38009,10.614,68.2107],[-0.376265,10.5268,68.3567],[-0.376265,10.5268,68.3567],[-1.38009,10.614,68.2107],[-0.740948,9.80701,68.7275],[-3.00898,10.3533,68.1029],[-1.38009,10.614,68.2107],[-2.13486,11.3632,67.6427],[-3.00898,10.3533,68.1029],[-2.13486,11.3632,67.6427],[-2.8874,11.1489,67.6516],[-2.8874,11.1489,67.6516],[-3.57196,10.9657,67.5952],[-3.00898,10.3533,68.1029],[-3.57196,10.9657,67.5952],[-3.98264,10.3318,67.8735],[-3.00898,10.3533,68.1029],[-3.00898,10.3533,68.1029],[-3.98264,10.3318,67.8735],[-3.63236,9.7825,68.2799],[-3.00898,10.3533,68.1029],[-3.63236,9.7825,68.2799],[-2.88295,9.37607,68.6439],[-2.88295,9.37607,68.6439],[-2.2589,9.94357,68.4805],[-3.00898,10.3533,68.1029],[-2.2589,9.94357,68.4805],[-2.88295,9.37607,68.6439],[-1.74161,9.37319,68.8425],[-1.74161,9.37319,68.8425],[-1.38009,10.614,68.2107],[-2.2589,9.94357,68.4805],[-1.74161,9.37319,68.8425],[-2.88295,9.37607,68.6439],[-2.29803,8.56286,69.1123],[-2.29803,8.56286,69.1123],[-2.88295,9.37607,68.6439],[-3.33909,8.42105,68.9651],[-2.78562,7.68963,69.3506],[-2.29803,8.56286,69.1123],[-3.33909,8.42105,68.9651],[-3.33909,8.42105,68.9651],[-3.76791,7.55277,69.1898],[-2.78562,7.68963,69.3506],[-2.78562,7.68963,69.3506],[-3.76791,7.55277,69.1898],[-3.28801,6.84808,69.5179],[-3.28801,6.84808,69.5179],[-2.36987,6.93017,69.6744],[-2.78562,7.68963,69.3506],[-2.36987,6.93017,69.6744],[-1.57461,7.76009,69.5174],[-2.78562,7.68963,69.3506],[-1.63598,6.82508,69.8208],[-1.57461,7.76009,69.5174],[-2.36987,6.93017,69.6744],[-3.28801,6.84808,69.5179],[-2.79262,6.09102,69.8213],[-2.36987,6.93017,69.6744],[-2.36987,6.93017,69.6744],[-2.79262,6.09102,69.8213],[-2.05181,6.32867,69.9008],[-3.67099,6.05033,69.626],[-2.79262,6.09102,69.8213],[-3.28801,6.84808,69.5179],[-4.17214,6.71325,69.3385],[-3.67099,6.05033,69.626],[-3.28801,6.84808,69.5179],[-4.17214,6.71325,69.3385],[-4.67999,5.70311,69.3878],[-3.67099,6.05033,69.626],[-3.67099,6.05033,69.626],[-4.67999,5.70311,69.3878],[-3.78426,4.60858,69.82],[-3.24516,5.51004,69.8455],[-3.67099,6.05033,69.626],[-3.78426,4.60858,69.82],[-3.24516,5.51004,69.8455],[-3.78426,4.60858,69.82],[-2.61091,5.24864,70.0194],[-2.61091,5.24864,70.0194],[-2.79262,6.09102,69.8213],[-3.24516,5.51004,69.8455],[-2.08504,5.72656,70.0281],[-2.79262,6.09102,69.8213],[-2.61091,5.24864,70.0194],[-2.61091,5.24864,70.0194],[-3.78426,4.60858,69.82],[-2.62682,4.3219,70.1339],[-2.62682,4.3219,70.1339],[-1.56782,4.88804,70.2341],[-2.61091,5.24864,70.0194],[-1.88169,3.52643,70.3257],[-1.56782,4.88804,70.2341],[-2.62682,4.3219,70.1339],[-2.62682,4.3219,70.1339],[-3.17976,3.31688,70.0719],[-1.88169,3.52643,70.3257],[-3.78426,4.60858,69.82],[-3.17976,3.31688,70.0719],[-2.62682,4.3219,70.1339],[-4.41651,3.35261,69.7343],[-3.17976,3.31688,70.0719],[-3.78426,4.60858,69.82],[-4.95779,4.4439,69.4803],[-4.41651,3.35261,69.7343],[-3.78426,4.60858,69.82],[-4.95779,4.4439,69.4803],[-5.7017,3.39582,69.2653],[-4.41651,3.35261,69.7343],[-4.41651,3.35261,69.7343],[-5.7017,3.39582,69.2653],[-4.91515,2.38685,69.5888],[-4.41651,3.35261,69.7343],[-4.91515,2.38685,69.5888],[-3.81087,1.92947,69.8916],[-3.81087,1.92947,69.8916],[-4.91515,2.38685,69.5888],[-4.75474,1.32362,69.5707],[-4.75474,1.32362,69.5707],[-3.90847,0.0897292,69.6441],[-3.81087,1.92947,69.8916],[-3.81087,1.92947,69.8916],[-3.90847,0.0897292,69.6441],[-2.85726,0.983886,70.0696],[-2.85726,0.983886,70.0696],[-2.41272,2.12754,70.2372],[-3.81087,1.92947,69.8916],[-3.81087,1.92947,69.8916],[-2.41272,2.12754,70.2372],[-3.17976,3.31688,70.0719],[-2.85726,0.983886,70.0696],[-3.90847,0.0897292,69.6441],[-2.56493,0.00621828,70.0073],[-1.47724,0.837426,70.2989],[-2.85726,0.983886,70.0696],[-2.56493,0.00621828,70.0073],[-1.65491,-0.665452,70.0484],[-1.47724,0.837426,70.2989],[-2.56493,0.00621828,70.0073],[-2.80478,-1.16667,69.7029],[-1.65491,-0.665452,70.0484],[-2.56493,0.00621828,70.0073],[-2.56493,0.00621828,70.0073],[-3.90847,0.0897292,69.6441],[-2.80478,-1.16667,69.7029],[-2.80478,-1.16667,69.7029],[-3.90847,0.0897292,69.6441],[-3.92685,-1.70921,69.2266],[-3.92685,-1.70921,69.2266],[-2.91833,-2.40521,69.3308],[-2.80478,-1.16667,69.7029],[-2.80478,-1.16667,69.7029],[-2.91833,-2.40521,69.3308],[-1.66479,-2.17946,69.6445],[-1.66479,-2.17946,69.6445],[-2.91833,-2.40521,69.3308],[-2.3293,-3.49921,69.0662],[-0.905835,-3.61444,69.2135],[-1.66479,-2.17946,69.6445],[-2.3293,-3.49921,69.0662],[-2.3293,-3.49921,69.0662],[-1.73185,-4.75587,68.6313],[-0.905835,-3.61444,69.2135],[-1.73185,-4.75587,68.6313],[-0.120027,-5.23434,68.522],[-0.905835,-3.61444,69.2135],[-0.905835,-3.61444,69.2135],[-0.120027,-5.23434,68.522],[0.767034,-3.37683,69.3308],[-0.120027,-5.23434,68.522],[1.52658,-4.83955,68.6901],[0.767034,-3.37683,69.3308],[1.52658,-4.83955,68.6901],[2.49464,-3.53759,69.0988],[0.767034,-3.37683,69.3308],[1.52658,-4.83955,68.6901],[2.93708,-4.95364,68.4009],[2.49464,-3.53759,69.0988],[2.49464,-3.53759,69.0988],[2.93708,-4.95364,68.4009],[4.25883,-3.57616,68.6562],[3.42122,-2.08388,69.4183],[2.49464,-3.53759,69.0988],[4.25883,-3.57616,68.6562],[4.87196,-2.01606,69.0324],[3.42122,-2.08388,69.4183],[4.25883,-3.57616,68.6562],[4.87196,-2.01606,69.0324],[4.25883,-3.57616,68.6562],[6.00433,-2.84105,68.2911],[4.25883,-3.57616,68.6562],[5.40441,-4.22618,68.0152],[6.00433,-2.84105,68.2911],[6.54271,-4.21994,67.4426],[6.00433,-2.84105,68.2911],[5.40441,-4.22618,68.0152],[6.54271,-4.21994,67.4426],[5.40441,-4.22618,68.0152],[5.63794,-5.1302,67.4681],[6.54271,-4.21994,67.4426],[5.63794,-5.1302,67.4681],[6.46402,-5.8087,66.571],[7.79702,-4.46392,66.497],[6.54271,-4.21994,67.4426],[6.46402,-5.8087,66.571],[7.7738,-5.69732,65.7743],[7.79702,-4.46392,66.497],[6.46402,-5.8087,66.571],[7.17466,-6.81838,65.3472],[7.7738,-5.69732,65.7743],[6.46402,-5.8087,66.571],[5.98589,-7.18221,65.8499],[7.17466,-6.81838,65.3472],[6.46402,-5.8087,66.571],[5.36997,-6.78047,66.5133],[5.98589,-7.18221,65.8499],[6.46402,-5.8087,66.571],[5.36997,-6.78047,66.5133],[6.46402,-5.8087,66.571],[5.21718,-6.04311,67.0964],[4.18878,-7.07345,66.7505],[5.36997,-6.78047,66.5133],[5.21718,-6.04311,67.0964],[4.18878,-7.07345,66.7505],[5.21718,-6.04311,67.0964],[4.39417,-5.2428,67.8523],[2.84033,-6.47726,67.5575],[4.18878,-7.07345,66.7505],[4.39417,-5.2428,67.8523],[2.93708,-4.95364,68.4009],[2.84033,-6.47726,67.5575],[4.39417,-5.2428,67.8523],[2.84033,-6.47726,67.5575],[2.93708,-4.95364,68.4009],[1.99207,-5.8075,68.1747],[1.99207,-5.8075,68.1747],[1.53286,-6.67591,67.7059],[2.84033,-6.47726,67.5575],[2.84033,-6.47726,67.5575],[1.53286,-6.67591,67.7059],[1.94565,-7.44728,67.0887],[2.84033,-6.47726,67.5575],[1.94565,-7.44728,67.0887],[2.81997,-7.85124,66.5366],[1.59838,-8.4018,66.3236],[2.81997,-7.85124,66.5366],[1.94565,-7.44728,67.0887],[0.894521,-7.59052,67.0881],[1.59838,-8.4018,66.3236],[1.94565,-7.44728,67.0887],[0.894521,-7.59052,67.0881],[0.140677,-8.70094,66.151],[1.59838,-8.4018,66.3236],[1.59838,-8.4018,66.3236],[0.140677,-8.70094,66.151],[1.23666,-9.32038,65.4896],[1.59838,-8.4018,66.3236],[1.23666,-9.32038,65.4896],[2.53066,-9.16667,65.3456],[1.50595,-10.1309,64.4989],[2.53066,-9.16667,65.3456],[1.23666,-9.32038,65.4896],[1.50595,-10.1309,64.4989],[1.23666,-9.32038,65.4896],[0.392165,-9.84937,65.0013],[0.406362,-10.6841,63.9346],[1.50595,-10.1309,64.4989],[0.392165,-9.84937,65.0013],[0.392165,-9.84937,65.0013],[-0.349342,-10.2878,64.5267],[0.406362,-10.6841,63.9346],[-0.349342,-10.2878,64.5267],[-0.733025,-10.7763,63.8171],[0.406362,-10.6841,63.9346],[-0.733025,-10.7763,63.8171],[-0.00213181,-11.5434,62.5319],[0.406362,-10.6841,63.9346],[-0.00213181,-11.5434,62.5319],[1.58682,-11.017,63.1742],[0.406362,-10.6841,63.9346],[-0.00213181,-11.5434,62.5319],[0.923625,-11.9343,61.6379],[1.58682,-11.017,63.1742],[0.923625,-11.9343,61.6379],[2.17422,-12.2283,60.3446],[1.58682,-11.017,63.1742],[2.17422,-12.2283,60.3446],[3.32518,-11.4876,61.5975],[1.58682,-11.017,63.1742],[3.15864,-10.8851,62.8882],[1.58682,-11.017,63.1742],[3.32518,-11.4876,61.5975],[4.15739,-10.9013,62.2992],[3.15864,-10.8851,62.8882],[3.32518,-11.4876,61.5975],[4.39663,-11.3362,61.1596],[4.15739,-10.9013,62.2992],[3.32518,-11.4876,61.5975],[4.39663,-11.3362,61.1596],[3.32518,-11.4876,61.5975],[3.5971,-11.8418,60.5236],[4.74874,-11.6161,59.8223],[4.39663,-11.3362,61.1596],[3.5971,-11.8418,60.5236],[3.33546,-12.2004,59.5428],[4.74874,-11.6161,59.8223],[3.5971,-11.8418,60.5236],[2.17422,-12.2283,60.3446],[3.33546,-12.2004,59.5428],[3.5971,-11.8418,60.5236],[3.33546,-12.2004,59.5428],[2.17422,-12.2283,60.3446],[2.23526,-12.5937,58.8741],[3.36889,-12.4224,58.5611],[3.33546,-12.2004,59.5428],[2.23526,-12.5937,58.8741],[3.36889,-12.4224,58.5611],[2.23526,-12.5937,58.8741],[3.48934,-12.4888,57.4373],[4.3673,-12.1079,58.3186],[3.36889,-12.4224,58.5611],[3.48934,-12.4888,57.4373],[4.3673,-12.1079,58.3186],[3.48934,-12.4888,57.4373],[4.88029,-12.0555,56.9004],[5.76331,-11.5144,58.2072],[4.3673,-12.1079,58.3186],[4.88029,-12.0555,56.9004],[6.20511,-11.484,56.7916],[5.76331,-11.5144,58.2072],[4.88029,-12.0555,56.9004],[6.20511,-11.484,56.7916],[4.88029,-12.0555,56.9004],[5.8439,-11.679,55.1828],[7.22176,-10.9811,55.9834],[6.20511,-11.484,56.7916],[5.8439,-11.679,55.1828],[6.20511,-11.484,56.7916],[7.22176,-10.9811,55.9834],[7.2,-10.8469,57.6064],[7.2,-10.8469,57.6064],[7.22176,-10.9811,55.9834],[8.3625,-10.2222,56.6738],[8.53215,-9.90355,58.0766],[7.2,-10.8469,57.6064],[8.3625,-10.2222,56.6738],[9.23669,-9.53249,57.1581],[8.53215,-9.90355,58.0766],[8.3625,-10.2222,56.6738],[9.23669,-9.53249,57.1581],[8.3625,-10.2222,56.6738],[9.4101,-9.46573,55.9287],[10.1124,-8.77678,56.8829],[9.23669,-9.53249,57.1581],[9.4101,-9.46573,55.9287],[10.7013,-8.27742,55.344],[10.1124,-8.77678,56.8829],[9.4101,-9.46573,55.9287],[9.4341,-9.42431,54.3258],[10.7013,-8.27742,55.344],[9.4101,-9.46573,55.9287],[8.3472,-10.2854,55.1435],[9.4341,-9.42431,54.3258],[9.4101,-9.46573,55.9287],[8.3472,-10.2854,55.1435],[8.21697,-10.2805,53.5088],[9.4341,-9.42431,54.3258],[7.20997,-10.9859,54.3948],[8.21697,-10.2805,53.5088],[8.3472,-10.2854,55.1435],[8.3472,-10.2854,55.1435],[7.22176,-10.9811,55.9834],[7.20997,-10.9859,54.3948],[9.4341,-9.42431,54.3258],[10.4106,-8.53594,53.6019],[10.7013,-8.27742,55.344],[10.7013,-8.27742,55.344],[10.4106,-8.53594,53.6019],[11.4441,-7.46938,53.9304],[11.8961,-6.96236,55.2399],[10.7013,-8.27742,55.344],[11.4441,-7.46938,53.9304],[11.4441,-7.46938,53.9304],[12.4319,-6.22615,54.2494],[11.8961,-6.96236,55.2399],[12.7226,-5.82746,55.3857],[11.8961,-6.96236,55.2399],[12.4319,-6.22615,54.2494],[12.7226,-5.82746,55.3857],[12.4319,-6.22615,54.2494],[13.1816,-4.99771,54.2301],[12.7226,-5.82746,55.3857],[13.1816,-4.99771,54.2301],[13.3242,-4.7912,55.6727],[12.7226,-5.82746,55.3857],[13.3242,-4.7912,55.6727],[12.9056,-5.41623,56.5663],[12.9056,-5.41623,56.5663],[12.2144,-6.45514,56.4576],[12.7226,-5.82746,55.3857],[12.374,-5.90587,57.8142],[12.2144,-6.45514,56.4576],[12.9056,-5.41623,56.5663],[12.374,-5.90587,57.8142],[12.9056,-5.41623,56.5663],[13.1178,-4.49197,58.153],[12.3391,-5.34743,59.3029],[12.374,-5.90587,57.8142],[13.1178,-4.49197,58.153],[13.1178,-4.49197,58.153],[12.9762,-3.88789,59.8044],[12.3391,-5.34743,59.3029],[12.0748,-4.74988,60.941],[12.3391,-5.34743,59.3029],[12.9762,-3.88789,59.8044],[12.6695,-3.12817,61.472],[12.0748,-4.74988,60.941],[12.9762,-3.88789,59.8044],[13.4324,-2.6498,60.177],[12.6695,-3.12817,61.472],[12.9762,-3.88789,59.8044],[13.4324,-2.6498,60.177],[12.9762,-3.88789,59.8044],[13.799,-2.71839,58.6488],[13.889,-1.74879,59.784],[13.4324,-2.6498,60.177],[13.799,-2.71839,58.6488],[14.3435,-0.879299,58.7237],[13.889,-1.74879,59.784],[13.799,-2.71839,58.6488],[14.3376,-1.84146,57.3472],[14.3435,-0.879299,58.7237],[13.799,-2.71839,58.6488],[13.799,-2.71839,58.6488],[13.9506,-3.19696,56.4915],[14.3376,-1.84146,57.3472],[14.4761,-1.70672,55.8656],[14.3376,-1.84146,57.3472],[13.9506,-3.19696,56.4915],[14.4761,-1.70672,55.8656],[13.9506,-3.19696,56.4915],[14.1655,-2.81047,54.8741],[14.1655,-2.81047,54.8741],[14.4857,-1.60589,54.363],[14.4761,-1.70672,55.8656],[14.4761,-1.70672,55.8656],[14.4857,-1.60589,54.363],[14.7657,-0.110885,55.1135],[14.4761,-1.70672,55.8656],[14.7657,-0.110885,55.1135],[14.6866,-0.465428,56.9339],[14.7657,-0.110885,55.1135],[14.9056,0.941458,56.3819],[14.6866,-0.465428,56.9339],[14.7489,0.994425,58.0887],[14.6866,-0.465428,56.9339],[14.9056,0.941458,56.3819],[14.7489,0.994425,58.0887],[14.9056,0.941458,56.3819],[14.9469,2.43851,56.6684],[14.9469,2.43851,56.6684],[14.8784,2.49711,57.9004],[14.7489,0.994425,58.0887],[14.8784,2.49711,57.9004],[14.6293,2.57401,59.1994],[14.7489,0.994425,58.0887],[14.3149,0.634972,59.9665],[14.7489,0.994425,58.0887],[14.6293,2.57401,59.1994],[14.3568,2.05842,60.3379],[14.3149,0.634972,59.9665],[14.6293,2.57401,59.1994],[14.3568,2.05842,60.3379],[14.6293,2.57401,59.1994],[14.1906,3.47667,60.6435],[13.9076,1.56213,61.4547],[14.3568,2.05842,60.3379],[14.1906,3.47667,60.6435],[13.5372,3.10289,62.3093],[13.9076,1.56213,61.4547],[14.1906,3.47667,60.6435],[13.5372,3.10289,62.3093],[14.1906,3.47667,60.6435],[13.5833,4.71466,61.8269],[12.8357,4.35518,63.3851],[13.5372,3.10289,62.3093],[13.5833,4.71466,61.8269],[12.8357,4.35518,63.3851],[13.5833,4.71466,61.8269],[13.0427,5.65932,62.6389],[12.3939,5.89977,63.6531],[12.8357,4.35518,63.3851],[13.0427,5.65932,62.6389],[13.0427,5.65932,62.6389],[12.6526,6.87054,62.7174],[12.3939,5.89977,63.6531],[13.3691,6.43776,61.4224],[12.6526,6.87054,62.7174],[13.0427,5.65932,62.6389],[12.8357,4.35518,63.3851],[12.3939,5.89977,63.6531],[12.0165,5.02032,64.4779],[13.3691,6.43776,61.4224],[13.0427,5.65932,62.6389],[13.5833,4.71466,61.8269],[14.0508,5.217,60.3132],[13.3691,6.43776,61.4224],[13.5833,4.71466,61.8269],[13.3691,6.43776,61.4224],[14.0508,5.217,60.3132],[13.7563,6.99037,59.702],[13.2066,7.76076,60.7687],[13.3691,6.43776,61.4224],[13.7563,6.99037,59.702],[14.0508,5.217,60.3132],[14.3623,5.55924,58.7634],[13.7563,6.99037,59.702],[14.1207,6.89056,58.275],[13.7563,6.99037,59.702],[14.3623,5.55924,58.7634],[14.1207,6.89056,58.275],[14.3623,5.55924,58.7634],[14.4183,6.18609,57.2785],[14.1207,6.89056,58.275],[14.4183,6.18609,57.2785],[14.06,7.46987,57.1866],[13.5999,8.27559,58.3614],[14.1207,6.89056,58.275],[14.06,7.46987,57.1866],[13.5999,8.27559,58.3614],[14.06,7.46987,57.1866],[13.5571,8.77616,56.8701],[13.1602,9.51201,57.7825],[13.5999,8.27559,58.3614],[13.5571,8.77616,56.8701],[13.1602,9.51201,57.7825],[13.5571,8.77616,56.8701],[12.9148,10.1752,56.678],[13.1602,9.51201,57.7825],[12.9148,10.1752,56.678],[12.4528,10.7183,58.1388],[13.1602,9.51201,57.7825],[12.4528,10.7183,58.1388],[13.0046,9.50817,58.7455],[12.4528,10.7183,58.1388],[12.4543,10.1613,59.5726],[13.0046,9.50817,58.7455],[13.3006,9.32685,55.2349],[12.9148,10.1752,56.678],[13.5571,8.77616,56.8701],[13.5571,8.77616,56.8701],[13.9475,7.81388,55.8986],[13.3006,9.32685,55.2349],[12.9148,10.1752,56.678],[13.3006,9.32685,55.2349],[12.4971,11.0545,55.2639],[13.5999,8.27559,58.3614],[13.1602,9.51201,57.7825],[13.0046,9.50817,58.7455],[13.0852,8.73913,59.8373],[13.5999,8.27559,58.3614],[13.0046,9.50817,58.7455],[13.7563,6.99037,59.702],[13.5999,8.27559,58.3614],[13.0852,8.73913,59.8373],[14.06,7.46987,57.1866],[13.9475,7.81388,55.8986],[13.5571,8.77616,56.8701],[14.06,7.46987,57.1866],[14.2622,6.97434,56.4056],[13.9475,7.81388,55.8986],[14.2622,6.97434,56.4056],[14.2792,6.57704,55.2153],[13.9475,7.81388,55.8986],[14.2792,6.57704,55.2153],[13.796,7.861,54.368],[13.9475,7.81388,55.8986],[14.0442,6.50144,53.2937],[13.796,7.861,54.368],[14.2792,6.57704,55.2153],[14.2792,6.57704,55.2153],[14.4821,5.2591,54.0459],[14.0442,6.50144,53.2937],[14.383,4.69615,52.8842],[14.0442,6.50144,53.2937],[14.4821,5.2591,54.0459],[14.383,4.69615,52.8842],[14.4821,5.2591,54.0459],[14.7243,4.02445,54.0568],[14.383,4.69615,52.8842],[14.7243,4.02445,54.0568],[14.6896,3.36525,53.3444],[14.383,4.69615,52.8842],[14.6896,3.36525,53.3444],[14.4093,2.59317,51.9773],[13.9972,3.91072,50.9169],[14.383,4.69615,52.8842],[14.4093,2.59317,51.9773],[13.9558,2.61841,50.4049],[13.9972,3.91072,50.9169],[14.4093,2.59317,51.9773],[14.0834,0.964166,50.7472],[13.9558,2.61841,50.4049],[14.4093,2.59317,51.9773],[14.4093,2.59317,51.9773],[14.5613,1.37357,52.4329],[14.0834,0.964166,50.7472],[14.473,0.149058,52.3143],[14.0834,0.964166,50.7472],[14.5613,1.37357,52.4329],[14.7494,0.833562,53.6509],[14.473,0.149058,52.3143],[14.5613,1.37357,52.4329],[14.5613,1.37357,52.4329],[14.7631,2.22302,53.4748],[14.7494,0.833562,53.6509],[14.7494,0.833562,53.6509],[14.7631,2.22302,53.4748],[14.9156,1.86942,55.0378],[14.7494,0.833562,53.6509],[14.9156,1.86942,55.0378],[14.7657,-0.110885,55.1135],[14.5932,-0.583521,53.4835],[14.7494,0.833562,53.6509],[14.7657,-0.110885,55.1135],[14.9156,1.86942,55.0378],[14.7631,2.22302,53.4748],[14.8615,3.05132,54.3064],[14.9156,1.86942,55.0378],[14.8615,3.05132,54.3064],[14.8799,3.5131,55.5936],[14.9469,2.43851,56.6684],[14.9156,1.86942,55.0378],[14.8799,3.5131,55.5936],[14.9469,2.43851,56.6684],[14.8799,3.5131,55.5936],[14.7778,3.95233,57.5652],[14.7778,3.95233,57.5652],[14.8799,3.5131,55.5936],[14.6813,5.06006,56.404],[14.4183,6.18609,57.2785],[14.7778,3.95233,57.5652],[14.6813,5.06006,56.404],[14.4183,6.18609,57.2785],[14.6813,5.06006,56.404],[14.2792,6.57704,55.2153],[14.8799,3.5131,55.5936],[14.2792,6.57704,55.2153],[14.6813,5.06006,56.404],[14.8615,3.05132,54.3064],[14.7243,4.02445,54.0568],[14.8799,3.5131,55.5936],[14.8615,3.05132,54.3064],[14.7631,2.22302,53.4748],[14.6896,3.36525,53.3444],[14.5932,-0.583521,53.4835],[14.473,0.149058,52.3143],[14.7494,0.833562,53.6509],[14.5932,-0.583521,53.4835],[14.3696,-0.989116,52.3825],[14.473,0.149058,52.3143],[14.473,0.149058,52.3143],[14.3696,-0.989116,52.3825],[14.101,-0.784621,51.2225],[14.5932,-0.583521,53.4835],[14.3329,-1.76355,53.0896],[14.3696,-0.989116,52.3825],[14.3696,-0.989116,52.3825],[14.3329,-1.76355,53.0896],[14.052,-1.97115,51.8821],[14.3329,-1.76355,53.0896],[13.9799,-2.84357,52.7619],[14.052,-1.97115,51.8821],[13.9799,-2.84357,52.7619],[14.3329,-1.76355,53.0896],[14.202,-2.554,53.7578],[13.7892,-3.66769,53.745],[13.9799,-2.84357,52.7619],[14.202,-2.554,53.7578],[14.1655,-2.81047,54.8741],[13.7892,-3.66769,53.745],[14.202,-2.554,53.7578],[13.7892,-3.66769,53.745],[14.1655,-2.81047,54.8741],[13.7388,-3.92551,55.0155],[13.7892,-3.66769,53.745],[13.7388,-3.92551,55.0155],[13.1816,-4.99771,54.2301],[13.3121,-4.56842,53.0031],[13.7892,-3.66769,53.745],[13.1816,-4.99771,54.2301],[12.6225,-5.67178,52.5886],[13.3121,-4.56842,53.0031],[13.1816,-4.99771,54.2301],[13.7892,-3.66769,53.745],[13.3121,-4.56842,53.0031],[13.6131,-3.78796,52.5857],[13.6131,-3.78796,52.5857],[13.3121,-4.56842,53.0031],[13.1472,-4.47646,51.8463],[13.7892,-3.66769,53.745],[13.6131,-3.78796,52.5857],[13.9799,-2.84357,52.7619],[13.6131,-3.78796,52.5857],[13.6154,-3.2226,51.614],[13.9799,-2.84357,52.7619],[14.202,-2.554,53.7578],[14.3329,-1.76355,53.0896],[14.4857,-1.60589,54.363],[14.3329,-1.76355,53.0896],[14.5932,-0.583521,53.4835],[14.4857,-1.60589,54.363],[14.0834,0.964166,50.7472],[14.473,0.149058,52.3143],[14.101,-0.784621,51.2225],[14.7631,2.22302,53.4748],[14.5613,1.37357,52.4329],[14.4093,2.59317,51.9773],[14.0834,0.964166,50.7472],[13.4268,1.88324,48.8845],[13.9558,2.61841,50.4049],[13.4268,1.88324,48.8845],[13.525,3.67704,49.4662],[13.9558,2.61841,50.4049],[13.4268,1.88324,48.8845],[14.0834,0.964166,50.7472],[13.5364,0.398115,49.078],[14.0834,0.964166,50.7472],[13.672,-0.666138,49.7407],[13.5364,0.398115,49.078],[14.4093,2.59317,51.9773],[14.6896,3.36525,53.3444],[14.7631,2.22302,53.4748],[14.8615,3.05132,54.3064],[14.6896,3.36525,53.3444],[14.7243,4.02445,54.0568],[14.4821,5.2591,54.0459],[14.8799,3.5131,55.5936],[14.7243,4.02445,54.0568],[14.383,4.69615,52.8842],[13.8095,5.99998,51.6115],[14.0442,6.50144,53.2937],[14.0442,6.50144,53.2937],[13.8095,5.99998,51.6115],[13.5054,7.34867,51.8488],[14.8799,3.5131,55.5936],[14.4821,5.2591,54.0459],[14.2792,6.57704,55.2153],[14.2792,6.57704,55.2153],[14.2622,6.97434,56.4056],[14.4183,6.18609,57.2785],[14.2622,6.97434,56.4056],[14.06,7.46987,57.1866],[14.4183,6.18609,57.2785],[14.7778,3.95233,57.5652],[14.4183,6.18609,57.2785],[14.3623,5.55924,58.7634],[14.5032,4.15286,59.3268],[14.7778,3.95233,57.5652],[14.3623,5.55924,58.7634],[14.5032,4.15286,59.3268],[14.6293,2.57401,59.1994],[14.7778,3.95233,57.5652],[13.5999,8.27559,58.3614],[13.7563,6.99037,59.702],[14.1207,6.89056,58.275],[14.0508,5.217,60.3132],[14.5032,4.15286,59.3268],[14.3623,5.55924,58.7634],[14.5032,4.15286,59.3268],[14.0508,5.217,60.3132],[14.1906,3.47667,60.6435],[12.8357,4.35518,63.3851],[12.8423,2.64012,63.6167],[13.5372,3.10289,62.3093],[13.3796,1.87247,62.7098],[13.5372,3.10289,62.3093],[12.8423,2.64012,63.6167],[12.8411,1.23646,63.5525],[13.3796,1.87247,62.7098],[12.8423,2.64012,63.6167],[12.1078,1.75129,64.6407],[12.8411,1.23646,63.5525],[12.8423,2.64012,63.6167],[12.1078,1.75129,64.6407],[12.8423,2.64012,63.6167],[11.9101,3.42273,64.8494],[11.1638,2.01585,65.7672],[12.1078,1.75129,64.6407],[11.9101,3.42273,64.8494],[11.1638,2.01585,65.7672],[11.9101,3.42273,64.8494],[10.4471,3.19139,66.4781],[12.1078,1.75129,64.6407],[11.1638,2.01585,65.7672],[11.4313,0.914133,65.3748],[12.1078,1.75129,64.6407],[11.4313,0.914133,65.3748],[12.076,0.195168,64.387],[10.9812,-0.290973,65.5448],[12.076,0.195168,64.387],[11.4313,0.914133,65.3748],[10.5245,0.869197,66.2746],[10.9812,-0.290973,65.5448],[11.4313,0.914133,65.3748],[10.5245,0.869197,66.2746],[9.75816,-0.468493,66.6255],[10.9812,-0.290973,65.5448],[9.75816,-0.468493,66.6255],[10.2727,-1.85686,65.714],[10.9812,-0.290973,65.5448],[11.4628,-1.41912,64.5642],[10.9812,-0.290973,65.5448],[10.2727,-1.85686,65.714],[10.9155,-2.62678,64.6848],[11.4628,-1.41912,64.5642],[10.2727,-1.85686,65.714],[10.9155,-2.62678,64.6848],[10.2727,-1.85686,65.714],[10.1977,-3.12146,65.245],[10.6324,-3.83627,64.2962],[10.9155,-2.62678,64.6848],[10.1977,-3.12146,65.245],[10.6324,-3.83627,64.2962],[10.1977,-3.12146,65.245],[9.78281,-4.01185,65.1508],[9.78281,-4.01185,65.1508],[9.86764,-4.76962,64.5443],[10.6324,-3.83627,64.2962],[9.86764,-4.76962,64.5443],[10.4061,-5.03007,63.6534],[10.6324,-3.83627,64.2962],[10.4061,-5.03007,63.6534],[11.1654,-4.27573,63.2178],[10.6324,-3.83627,64.2962],[10.6324,-3.83627,64.2962],[11.1654,-4.27573,63.2178],[11.782,-2.81451,63.3325],[11.782,-2.81451,63.3325],[11.1654,-4.27573,63.2178],[11.7843,-4.11449,62.3067],[11.782,-2.81451,63.3325],[11.7843,-4.11449,62.3067],[12.6695,-3.12817,61.472],[12.768,-1.84932,62.3746],[11.782,-2.81451,63.3325],[12.6695,-3.12817,61.472],[13.4654,-1.55875,61.1068],[12.768,-1.84932,62.3746],[12.6695,-3.12817,61.472],[13.1826,-0.603369,62.3465],[12.768,-1.84932,62.3746],[13.4654,-1.55875,61.1068],[13.7936,-0.000982696,61.2674],[13.1826,-0.603369,62.3465],[13.4654,-1.55875,61.1068],[14.0406,-0.736522,60.1766],[13.7936,-0.000982696,61.2674],[13.4654,-1.55875,61.1068],[13.889,-1.74879,59.784],[14.0406,-0.736522,60.1766],[13.4654,-1.55875,61.1068],[14.0406,-0.736522,60.1766],[14.3149,0.634972,59.9665],[13.7936,-0.000982696,61.2674],[13.9076,1.56213,61.4547],[13.7936,-0.000982696,61.2674],[14.3149,0.634972,59.9665],[13.9076,1.56213,61.4547],[13.3951,0.716812,62.4618],[13.7936,-0.000982696,61.2674],[13.3951,0.716812,62.4618],[13.9076,1.56213,61.4547],[13.3796,1.87247,62.7098],[14.3149,0.634972,59.9665],[14.0406,-0.736522,60.1766],[14.3435,-0.879299,58.7237],[13.7936,-0.000982696,61.2674],[13.3951,0.716812,62.4618],[13.1826,-0.603369,62.3465],[13.3951,0.716812,62.4618],[12.8479,0.114769,63.2721],[13.1826,-0.603369,62.3465],[12.4155,-1.06142,63.4231],[13.1826,-0.603369,62.3465],[12.8479,0.114769,63.2721],[12.076,0.195168,64.387],[12.4155,-1.06142,63.4231],[12.8479,0.114769,63.2721],[12.8411,1.23646,63.5525],[12.076,0.195168,64.387],[12.8479,0.114769,63.2721],[12.076,0.195168,64.387],[11.4628,-1.41912,64.5642],[12.4155,-1.06142,63.4231],[12.4155,-1.06142,63.4231],[11.4628,-1.41912,64.5642],[11.782,-2.81451,63.3325],[13.3951,0.716812,62.4618],[12.8411,1.23646,63.5525],[12.8479,0.114769,63.2721],[12.4155,-1.06142,63.4231],[12.768,-1.84932,62.3746],[13.1826,-0.603369,62.3465],[12.768,-1.84932,62.3746],[12.4155,-1.06142,63.4231],[11.782,-2.81451,63.3325],[11.7843,-4.11449,62.3067],[11.1654,-4.27573,63.2178],[10.9905,-5.36357,62.3562],[12.0748,-4.74988,60.941],[11.7843,-4.11449,62.3067],[10.9905,-5.36357,62.3562],[11.3552,-6.32097,60.1998],[12.0748,-4.74988,60.941],[10.9905,-5.36357,62.3562],[10.5929,-6.60186,61.4353],[11.3552,-6.32097,60.1998],[10.9905,-5.36357,62.3562],[10.5929,-6.60186,61.4353],[10.9905,-5.36357,62.3562],[9.53171,-6.92676,62.695],[10.2756,-7.55431,60.3804],[10.5929,-6.60186,61.4353],[9.53171,-6.92676,62.695],[10.2756,-7.55431,60.3804],[9.53171,-6.92676,62.695],[8.6429,-8.64415,61.4406],[10.2756,-7.55431,60.3804],[8.6429,-8.64415,61.4406],[9.28403,-8.68103,60.199],[9.97168,-8.38701,59.2077],[10.2756,-7.55431,60.3804],[9.28403,-8.68103,60.199],[9.97168,-8.38701,59.2077],[9.28403,-8.68103,60.199],[8.93573,-9.30044,59.2833],[9.59076,-9.05064,58.1207],[9.97168,-8.38701,59.2077],[8.93573,-9.30044,59.2833],[9.59076,-9.05064,58.1207],[8.93573,-9.30044,59.2833],[8.53215,-9.90355,58.0766],[7.67554,-10.1621,59.4437],[8.53215,-9.90355,58.0766],[8.93573,-9.30044,59.2833],[8.32362,-9.38562,60.4398],[7.67554,-10.1621,59.4437],[8.93573,-9.30044,59.2833],[8.32362,-9.38562,60.4398],[7.25664,-10.0136,60.7405],[7.67554,-10.1621,59.4437],[7.25664,-10.0136,60.7405],[6.30963,-10.8125,60.0215],[7.67554,-10.1621,59.4437],[6.76374,-10.8957,58.8392],[7.67554,-10.1621,59.4437],[6.30963,-10.8125,60.0215],[6.30963,-10.8125,60.0215],[5.76331,-11.5144,58.2072],[6.76374,-10.8957,58.8392],[5.76331,-11.5144,58.2072],[7.2,-10.8469,57.6064],[6.76374,-10.8957,58.8392],[5.76331,-11.5144,58.2072],[6.30963,-10.8125,60.0215],[4.74874,-11.6161,59.8223],[6.30963,-10.8125,60.0215],[5.36995,-11.048,60.8232],[4.74874,-11.6161,59.8223],[6.30963,-10.8125,60.0215],[6.1919,-10.4395,61.2657],[5.36995,-11.048,60.8232],[6.1919,-10.4395,61.2657],[5.17497,-10.7248,61.8022],[5.36995,-11.048,60.8232],[5.17497,-10.7248,61.8022],[4.39663,-11.3362,61.1596],[5.36995,-11.048,60.8232],[5.17497,-10.7248,61.8022],[6.1919,-10.4395,61.2657],[5.98455,-10.0253,62.3407],[5.17497,-10.7248,61.8022],[5.98455,-10.0253,62.3407],[4.96903,-10.243,62.8628],[4.15739,-10.9013,62.2992],[5.17497,-10.7248,61.8022],[4.96903,-10.243,62.8628],[3.95664,-10.3191,63.3975],[4.15739,-10.9013,62.2992],[4.96903,-10.243,62.8628],[3.95664,-10.3191,63.3975],[4.96903,-10.243,62.8628],[4.75783,-9.75023,63.7635],[3.95255,-9.48271,64.5045],[3.95664,-10.3191,63.3975],[4.75783,-9.75023,63.7635],[5.13889,-9.01886,64.4742],[3.95255,-9.48271,64.5045],[4.75783,-9.75023,63.7635],[5.13889,-9.01886,64.4742],[4.75783,-9.75023,63.7635],[5.81794,-9.40879,63.4662],[6.17656,-8.49323,64.405],[5.13889,-9.01886,64.4742],[5.81794,-9.40879,63.4662],[6.96551,-8.65383,63.5168],[6.17656,-8.49323,64.405],[5.81794,-9.40879,63.4662],[6.96551,-8.65383,63.5168],[5.81794,-9.40879,63.4662],[6.72481,-9.3576,62.7341],[7.73759,-8.82133,62.435],[6.96551,-8.65383,63.5168],[6.72481,-9.3576,62.7341],[6.98979,-9.69791,61.829],[7.73759,-8.82133,62.435],[6.72481,-9.3576,62.7341],[6.72481,-9.3576,62.7341],[5.98455,-10.0253,62.3407],[6.98979,-9.69791,61.829],[7.73759,-8.82133,62.435],[6.98979,-9.69791,61.829],[7.84276,-9.33787,61.3898],[8.6429,-8.64415,61.4406],[7.73759,-8.82133,62.435],[7.84276,-9.33787,61.3898],[8.6429,-8.64415,61.4406],[7.84276,-9.33787,61.3898],[8.32362,-9.38562,60.4398],[7.73759,-8.82133,62.435],[8.6429,-8.64415,61.4406],[8.55542,-8.09081,62.5251],[8.0298,-7.83675,63.4977],[7.73759,-8.82133,62.435],[8.55542,-8.09081,62.5251],[8.0298,-7.83675,63.4977],[8.55542,-8.09081,62.5251],[9.53171,-6.92676,62.695],[8.7016,-6.82,63.9631],[8.0298,-7.83675,63.4977],[9.53171,-6.92676,62.695],[9.44665,-5.76332,64.1583],[8.7016,-6.82,63.9631],[9.53171,-6.92676,62.695],[9.44665,-5.76332,64.1583],[9.53171,-6.92676,62.695],[10.1419,-5.82538,63.2348],[10.4061,-5.03007,63.6534],[9.44665,-5.76332,64.1583],[10.1419,-5.82538,63.2348],[10.9905,-5.36357,62.3562],[10.4061,-5.03007,63.6534],[10.1419,-5.82538,63.2348],[8.35483,-6.2431,64.8714],[8.7016,-6.82,63.9631],[9.44665,-5.76332,64.1583],[8.35483,-6.2431,64.8714],[9.44665,-5.76332,64.1583],[8.90021,-5.03327,65.2857],[7.7738,-5.69732,65.7743],[8.35483,-6.2431,64.8714],[8.90021,-5.03327,65.2857],[9.44665,-5.76332,64.1583],[9.86764,-4.76962,64.5443],[8.90021,-5.03327,65.2857],[7.92138,-7.1312,64.4553],[8.7016,-6.82,63.9631],[8.35483,-6.2431,64.8714],[7.92138,-7.1312,64.4553],[8.35483,-6.2431,64.8714],[7.17466,-6.81838,65.3472],[7.14169,-7.79687,64.4273],[7.92138,-7.1312,64.4553],[7.17466,-6.81838,65.3472],[6.41552,-7.71618,65.098],[7.14169,-7.79687,64.4273],[7.17466,-6.81838,65.3472],[6.41552,-7.71618,65.098],[6.17656,-8.49323,64.405],[7.14169,-7.79687,64.4273],[6.17656,-8.49323,64.405],[6.41552,-7.71618,65.098],[5.54195,-8.14737,65.2243],[6.41552,-7.71618,65.098],[5.98589,-7.18221,65.8499],[5.54195,-8.14737,65.2243],[4.92156,-7.70225,65.9714],[5.54195,-8.14737,65.2243],[5.98589,-7.18221,65.8499],[4.65673,-8.56488,65.2596],[5.54195,-8.14737,65.2243],[4.92156,-7.70225,65.9714],[4.92156,-7.70225,65.9714],[3.8325,-8.24108,65.8901],[4.65673,-8.56488,65.2596],[3.8325,-8.24108,65.8901],[3.95255,-9.48271,64.5045],[4.65673,-8.56488,65.2596],[3.95255,-9.48271,64.5045],[3.8325,-8.24108,65.8901],[2.53066,-9.16667,65.3456],[2.78355,-10.2484,63.9781],[3.95255,-9.48271,64.5045],[2.53066,-9.16667,65.3456],[3.8325,-8.24108,65.8901],[2.81997,-7.85124,66.5366],[2.53066,-9.16667,65.3456],[4.18878,-7.07345,66.7505],[2.81997,-7.85124,66.5366],[3.8325,-8.24108,65.8901],[4.92156,-7.70225,65.9714],[4.18878,-7.07345,66.7505],[3.8325,-8.24108,65.8901],[5.13889,-9.01886,64.4742],[5.54195,-8.14737,65.2243],[4.65673,-8.56488,65.2596],[8.0298,-7.83675,63.4977],[7.92138,-7.1312,64.4553],[7.14169,-7.79687,64.4273],[6.96551,-8.65383,63.5168],[8.0298,-7.83675,63.4977],[7.14169,-7.79687,64.4273],[8.0298,-7.83675,63.4977],[8.7016,-6.82,63.9631],[7.92138,-7.1312,64.4553],[6.98979,-9.69791,61.829],[7.25664,-10.0136,60.7405],[7.84276,-9.33787,61.3898],[6.98979,-9.69791,61.829],[6.1919,-10.4395,61.2657],[7.25664,-10.0136,60.7405],[6.96551,-8.65383,63.5168],[7.73759,-8.82133,62.435],[8.0298,-7.83675,63.4977],[5.81794,-9.40879,63.4662],[5.98455,-10.0253,62.3407],[6.72481,-9.3576,62.7341],[6.17656,-8.49323,64.405],[6.96551,-8.65383,63.5168],[7.14169,-7.79687,64.4273],[5.13889,-9.01886,64.4742],[6.17656,-8.49323,64.405],[5.54195,-8.14737,65.2243],[3.95255,-9.48271,64.5045],[5.13889,-9.01886,64.4742],[4.65673,-8.56488,65.2596],[3.95664,-10.3191,63.3975],[3.95255,-9.48271,64.5045],[2.78355,-10.2484,63.9781],[3.95664,-10.3191,63.3975],[2.78355,-10.2484,63.9781],[3.15864,-10.8851,62.8882],[4.96903,-10.243,62.8628],[5.81794,-9.40879,63.4662],[4.75783,-9.75023,63.7635],[5.98455,-10.0253,62.3407],[5.81794,-9.40879,63.4662],[4.96903,-10.243,62.8628],[5.98455,-10.0253,62.3407],[6.1919,-10.4395,61.2657],[6.98979,-9.69791,61.829],[7.2,-10.8469,57.6064],[7.67554,-10.1621,59.4437],[6.76374,-10.8957,58.8392],[7.25664,-10.0136,60.7405],[6.1919,-10.4395,61.2657],[6.30963,-10.8125,60.0215],[7.25664,-10.0136,60.7405],[8.32362,-9.38562,60.4398],[7.84276,-9.33787,61.3898],[9.97168,-8.38701,59.2077],[9.59076,-9.05064,58.1207],[10.5538,-8.14584,57.9581],[9.97168,-8.38701,59.2077],[10.5538,-8.14584,57.9581],[10.9556,-7.36098,59.0534],[11.5214,-7.12247,57.591],[10.9556,-7.36098,59.0534],[10.5538,-8.14584,57.9581],[10.9254,-7.96943,56.7913],[11.5214,-7.12247,57.591],[10.5538,-8.14584,57.9581],[10.1124,-8.77678,56.8829],[10.9254,-7.96943,56.7913],[10.5538,-8.14584,57.9581],[11.5214,-7.12247,57.591],[10.9254,-7.96943,56.7913],[11.5002,-7.38521,56.2627],[11.5214,-7.12247,57.591],[11.5002,-7.38521,56.2627],[12.2144,-6.45514,56.4576],[11.5002,-7.38521,56.2627],[11.8961,-6.96236,55.2399],[12.2144,-6.45514,56.4576],[10.9254,-7.96943,56.7913],[10.7013,-8.27742,55.344],[11.5002,-7.38521,56.2627],[10.9556,-7.36098,59.0534],[11.5214,-7.12247,57.591],[11.7633,-6.44707,58.8093],[10.9556,-7.36098,59.0534],[11.7633,-6.44707,58.8093],[11.3552,-6.32097,60.1998],[10.2756,-7.55431,60.3804],[10.9556,-7.36098,59.0534],[11.3552,-6.32097,60.1998],[11.7633,-6.44707,58.8093],[12.3391,-5.34743,59.3029],[11.3552,-6.32097,60.1998],[12.374,-5.90587,57.8142],[11.7633,-6.44707,58.8093],[11.5214,-7.12247,57.591],[9.59076,-9.05064,58.1207],[10.1124,-8.77678,56.8829],[10.5538,-8.14584,57.9581],[8.32362,-9.38562,60.4398],[8.93573,-9.30044,59.2833],[9.28403,-8.68103,60.199],[9.97168,-8.38701,59.2077],[10.9556,-7.36098,59.0534],[10.2756,-7.55431,60.3804],[8.6429,-8.64415,61.4406],[8.32362,-9.38562,60.4398],[9.28403,-8.68103,60.199],[8.6429,-8.64415,61.4406],[9.53171,-6.92676,62.695],[8.55542,-8.09081,62.5251],[10.9905,-5.36357,62.3562],[10.1419,-5.82538,63.2348],[9.53171,-6.92676,62.695],[10.5929,-6.60186,61.4353],[10.2756,-7.55431,60.3804],[11.3552,-6.32097,60.1998],[11.1654,-4.27573,63.2178],[10.4061,-5.03007,63.6534],[10.9905,-5.36357,62.3562],[9.44665,-5.76332,64.1583],[10.4061,-5.03007,63.6534],[9.86764,-4.76962,64.5443],[9.78281,-4.01185,65.1508],[8.90021,-5.03327,65.2857],[9.86764,-4.76962,64.5443],[9.78281,-4.01185,65.1508],[9.1703,-3.15918,66.1265],[8.90021,-5.03327,65.2857],[8.90021,-5.03327,65.2857],[9.1703,-3.15918,66.1265],[7.79702,-4.46392,66.497],[7.7129,-2.70864,67.3765],[7.79702,-4.46392,66.497],[9.1703,-3.15918,66.1265],[9.06129,-1.80905,66.7837],[7.7129,-2.70864,67.3765],[9.1703,-3.15918,66.1265],[10.2727,-1.85686,65.714],[9.06129,-1.80905,66.7837],[9.1703,-3.15918,66.1265],[9.06129,-1.80905,66.7837],[8.13345,-0.770185,67.7347],[7.7129,-2.70864,67.3765],[7.7129,-2.70864,67.3765],[8.13345,-0.770185,67.7347],[6.94213,-1.63393,68.2477],[6.94213,-1.63393,68.2477],[6.00433,-2.84105,68.2911],[7.7129,-2.70864,67.3765],[6.94213,-1.63393,68.2477],[5.98007,-1.40727,68.7899],[6.00433,-2.84105,68.2911],[8.13345,-0.770185,67.7347],[9.06129,-1.80905,66.7837],[9.75816,-0.468493,66.6255],[10.1977,-3.12146,65.245],[9.1703,-3.15918,66.1265],[9.78281,-4.01185,65.1508],[10.9155,-2.62678,64.6848],[10.6324,-3.83627,64.2962],[11.782,-2.81451,63.3325],[10.2727,-1.85686,65.714],[9.1703,-3.15918,66.1265],[10.1977,-3.12146,65.245],[11.4628,-1.41912,64.5642],[10.9155,-2.62678,64.6848],[11.782,-2.81451,63.3325],[9.75816,-0.468493,66.6255],[9.06129,-1.80905,66.7837],[10.2727,-1.85686,65.714],[10.5245,0.869197,66.2746],[9.30785,1.12737,67.3024],[9.75816,-0.468493,66.6255],[10.9812,-0.290973,65.5448],[11.4628,-1.41912,64.5642],[12.076,0.195168,64.387],[11.1638,2.01585,65.7672],[10.5245,0.869197,66.2746],[11.4313,0.914133,65.3748],[10.5245,0.869197,66.2746],[11.1638,2.01585,65.7672],[10.2117,1.9424,66.6905],[12.8411,1.23646,63.5525],[12.1078,1.75129,64.6407],[12.076,0.195168,64.387],[12.8411,1.23646,63.5525],[13.3951,0.716812,62.4618],[13.3796,1.87247,62.7098],[12.8423,2.64012,63.6167],[12.8357,4.35518,63.3851],[11.9101,3.42273,64.8494],[14.1906,3.47667,60.6435],[14.0508,5.217,60.3132],[13.5833,4.71466,61.8269],[13.9076,1.56213,61.4547],[13.5372,3.10289,62.3093],[13.3796,1.87247,62.7098],[14.6293,2.57401,59.1994],[14.5032,4.15286,59.3268],[14.1906,3.47667,60.6435],[14.3568,2.05842,60.3379],[13.9076,1.56213,61.4547],[14.3149,0.634972,59.9665],[14.3149,0.634972,59.9665],[14.3435,-0.879299,58.7237],[14.7489,0.994425,58.0887],[14.6293,2.57401,59.1994],[14.8784,2.49711,57.9004],[14.7778,3.95233,57.5652],[14.8784,2.49711,57.9004],[14.9469,2.43851,56.6684],[14.7778,3.95233,57.5652],[14.9056,0.941458,56.3819],[14.9156,1.86942,55.0378],[14.9469,2.43851,56.6684],[14.3435,-0.879299,58.7237],[14.6866,-0.465428,56.9339],[14.7489,0.994425,58.0887],[14.9056,0.941458,56.3819],[14.7657,-0.110885,55.1135],[14.9156,1.86942,55.0378],[14.4857,-1.60589,54.363],[14.5932,-0.583521,53.4835],[14.7657,-0.110885,55.1135],[14.4857,-1.60589,54.363],[14.1655,-2.81047,54.8741],[14.202,-2.554,53.7578],[13.9506,-3.19696,56.4915],[13.7388,-3.92551,55.0155],[14.1655,-2.81047,54.8741],[13.7388,-3.92551,55.0155],[13.9506,-3.19696,56.4915],[13.3242,-4.7912,55.6727],[13.9506,-3.19696,56.4915],[13.3966,-4.50894,56.7222],[13.3242,-4.7912,55.6727],[13.1178,-4.49197,58.153],[13.3966,-4.50894,56.7222],[13.9506,-3.19696,56.4915],[14.3376,-1.84146,57.3472],[14.4761,-1.70672,55.8656],[14.6866,-0.465428,56.9339],[13.799,-2.71839,58.6488],[13.1178,-4.49197,58.153],[13.9506,-3.19696,56.4915],[14.3435,-0.879299,58.7237],[14.3376,-1.84146,57.3472],[14.6866,-0.465428,56.9339],[14.3435,-0.879299,58.7237],[14.0406,-0.736522,60.1766],[13.889,-1.74879,59.784],[13.4324,-2.6498,60.177],[13.889,-1.74879,59.784],[13.4654,-1.55875,61.1068],[13.4324,-2.6498,60.177],[13.4654,-1.55875,61.1068],[12.6695,-3.12817,61.472],[11.7843,-4.11449,62.3067],[12.0748,-4.74988,60.941],[12.6695,-3.12817,61.472],[12.0748,-4.74988,60.941],[11.3552,-6.32097,60.1998],[12.3391,-5.34743,59.3029],[12.9762,-3.88789,59.8044],[13.1178,-4.49197,58.153],[13.799,-2.71839,58.6488],[12.374,-5.90587,57.8142],[12.3391,-5.34743,59.3029],[11.7633,-6.44707,58.8093],[13.3966,-4.50894,56.7222],[13.1178,-4.49197,58.153],[12.9056,-5.41623,56.5663],[11.5214,-7.12247,57.591],[12.2144,-6.45514,56.4576],[12.374,-5.90587,57.8142],[13.3966,-4.50894,56.7222],[12.9056,-5.41623,56.5663],[13.3242,-4.7912,55.6727],[13.1816,-4.99771,54.2301],[13.7388,-3.92551,55.0155],[13.3242,-4.7912,55.6727],[12.6225,-5.67178,52.5886],[13.1816,-4.99771,54.2301],[12.4319,-6.22615,54.2494],[11.8961,-6.96236,55.2399],[12.7226,-5.82746,55.3857],[12.2144,-6.45514,56.4576],[12.6225,-5.67178,52.5886],[12.4319,-6.22615,54.2494],[11.4441,-7.46938,53.9304],[11.7413,-6.96112,52.4113],[12.6225,-5.67178,52.5886],[11.4441,-7.46938,53.9304],[10.8837,-7.82281,51.7551],[11.7413,-6.96112,52.4113],[11.4441,-7.46938,53.9304],[10.7013,-8.27742,55.344],[11.8961,-6.96236,55.2399],[11.5002,-7.38521,56.2627],[11.4441,-7.46938,53.9304],[10.4106,-8.53594,53.6019],[10.8837,-7.82281,51.7551],[10.4106,-8.53594,53.6019],[10.1449,-8.67963,52.3007],[10.8837,-7.82281,51.7551],[10.1449,-8.67963,52.3007],[9.86407,-8.72238,51.3914],[10.8837,-7.82281,51.7551],[9.86407,-8.72238,51.3914],[10.1449,-8.67963,52.3007],[9.19795,-9.44363,52.4723],[10.4106,-8.53594,53.6019],[9.19795,-9.44363,52.4723],[10.1449,-8.67963,52.3007],[9.4341,-9.42431,54.3258],[9.19795,-9.44363,52.4723],[10.4106,-8.53594,53.6019],[10.7013,-8.27742,55.344],[10.9254,-7.96943,56.7913],[10.1124,-8.77678,56.8829],[9.23669,-9.53249,57.1581],[10.1124,-8.77678,56.8829],[9.59076,-9.05064,58.1207],[8.3472,-10.2854,55.1435],[9.4101,-9.46573,55.9287],[8.3625,-10.2222,56.6738],[9.59076,-9.05064,58.1207],[8.53215,-9.90355,58.0766],[9.23669,-9.53249,57.1581],[7.2,-10.8469,57.6064],[8.53215,-9.90355,58.0766],[7.67554,-10.1621,59.4437],[7.22176,-10.9811,55.9834],[8.3472,-10.2854,55.1435],[8.3625,-10.2222,56.6738],[4.88029,-12.0555,56.9004],[4.15191,-12.3209,55.0052],[5.8439,-11.679,55.1828],[4.88029,-12.0555,56.9004],[3.8346,-12.4731,56.2094],[4.15191,-12.3209,55.0052],[4.15191,-12.3209,55.0052],[3.8346,-12.4731,56.2094],[2.76641,-12.6918,55.4134],[4.15191,-12.3209,55.0052],[2.76641,-12.6918,55.4134],[3.08171,-12.4615,53.6111],[4.8711,-11.9834,53.6348],[4.15191,-12.3209,55.0052],[3.08171,-12.4615,53.6111],[2.76641,-12.6918,55.4134],[1.32061,-12.8223,54.504],[3.08171,-12.4615,53.6111],[1.32061,-12.8223,54.504],[1.37997,-12.5917,52.6983],[3.08171,-12.4615,53.6111],[1.37997,-12.5917,52.6983],[2.77658,-12.2356,51.734],[3.08171,-12.4615,53.6111],[2.77658,-12.2356,51.734],[4.24784,-11.9915,52.1889],[3.08171,-12.4615,53.6111],[4.24784,-11.9915,52.1889],[2.77658,-12.2356,51.734],[3.99475,-11.7142,50.6543],[2.77658,-12.2356,51.734],[2.55924,-11.8886,50.1301],[3.99475,-11.7142,50.6543],[2.77658,-12.2356,51.734],[1.32842,-12.2922,51.0794],[2.55924,-11.8886,50.1301],[1.32842,-12.2922,51.0794],[1.08543,-11.8734,49.5027],[2.55924,-11.8886,50.1301],[2.35126,-11.5687,48.9202],[2.55924,-11.8886,50.1301],[1.08543,-11.8734,49.5027],[2.35126,-11.5687,48.9202],[1.08543,-11.8734,49.5027],[1.55708,-11.3486,48.0571],[2.7374,-11.1617,47.9758],[2.35126,-11.5687,48.9202],[1.55708,-11.3486,48.0571],[2.7374,-11.1617,47.9758],[1.55708,-11.3486,48.0571],[2.19676,-10.7727,46.8782],[3.70824,-10.5497,47.1178],[2.7374,-11.1617,47.9758],[2.19676,-10.7727,46.8782],[2.83799,-10.0557,45.699],[3.70824,-10.5497,47.1178],[2.19676,-10.7727,46.8782],[1.41903,-10.2642,45.656],[2.83799,-10.0557,45.699],[2.19676,-10.7727,46.8782],[1.41903,-10.2642,45.656],[2.19676,-10.7727,46.8782],[0.753864,-10.8945,46.8621],[1.41903,-10.2642,45.656],[0.753864,-10.8945,46.8621],[-0.101808,-10.2346,45.5268],[-0.101808,-10.2346,45.5268],[0.797657,-9.75637,44.674],[1.41903,-10.2642,45.656],[0.797657,-9.75637,44.674],[1.93856,-9.51894,44.5354],[1.41903,-10.2642,45.656],[1.93856,-9.51894,44.5354],[0.797657,-9.75637,44.674],[0.830717,-8.99765,43.6645],[1.93856,-9.51894,44.5354],[0.830717,-8.99765,43.6645],[2.28828,-8.51912,43.3649],[1.93856,-9.51894,44.5354],[2.28828,-8.51912,43.3649],[3.36416,-9.17479,44.5185],[1.93856,-9.51894,44.5354],[3.36416,-9.17479,44.5185],[2.83799,-10.0557,45.699],[3.36416,-9.17479,44.5185],[4.18261,-9.71054,45.7224],[2.83799,-10.0557,45.699],[4.18261,-9.71054,45.7224],[3.36416,-9.17479,44.5185],[4.62037,-8.90829,44.7443],[4.1214,-8.00733,43.4605],[3.36416,-9.17479,44.5185],[2.28828,-8.51912,43.3649],[2.28828,-8.51912,43.3649],[2.61706,-7.28329,42.2144],[4.1214,-8.00733,43.4605],[0.783486,-7.79197,42.3711],[2.61706,-7.28329,42.2144],[2.28828,-8.51912,43.3649],[1.3777,-6.6631,41.4434],[2.61706,-7.28329,42.2144],[0.783486,-7.79197,42.3711],[1.3777,-6.6631,41.4434],[2.65487,-5.89023,41.2281],[2.61706,-7.28329,42.2144],[2.65487,-5.89023,41.2281],[4.43054,-6.4484,42.1755],[2.61706,-7.28329,42.2144],[4.43054,-6.4484,42.1755],[2.65487,-5.89023,41.2281],[4.33013,-4.71025,41.1506],[2.65487,-5.89023,41.2281],[2.15376,-4.44287,40.4976],[4.33013,-4.71025,41.1506],[0.989587,-5.46013,40.7616],[2.65487,-5.89023,41.2281],[1.3777,-6.6631,41.4434],[0.989587,-5.46013,40.7616],[1.3777,-6.6631,41.4434],[-0.155347,-6.59238,41.3389],[0.830717,-8.99765,43.6645],[0.783486,-7.79197,42.3711],[2.28828,-8.51912,43.3649],[-0.108642,-9.47025,44.2607],[0.830717,-8.99765,43.6645],[0.797657,-9.75637,44.674],[-0.108642,-9.47025,44.2607],[-0.703119,-8.56156,43.2021],[0.830717,-8.99765,43.6645],[-0.108642,-9.47025,44.2607],[0.797657,-9.75637,44.674],[-0.101808,-10.2346,45.5268],[-0.108642,-9.47025,44.2607],[-0.101808,-10.2346,45.5268],[-1.30379,-9.47011,44.4821],[-1.30379,-9.47011,44.4821],[-0.101808,-10.2346,45.5268],[-1.51941,-10.4055,46.0818],[-1.30379,-9.47011,44.4821],[-1.51941,-10.4055,46.0818],[-3.36161,-10.2113,46.5626],[-1.98451,-10.8678,47.1626],[-3.36161,-10.2113,46.5626],[-1.51941,-10.4055,46.0818],[-0.69969,-10.9395,46.9932],[-1.98451,-10.8678,47.1626],[-1.51941,-10.4055,46.0818],[-0.69969,-10.9395,46.9932],[-1.43537,-11.4308,48.3689],[-1.98451,-10.8678,47.1626],[-1.98451,-10.8678,47.1626],[-1.43537,-11.4308,48.3689],[-2.88045,-11.054,48.0956],[-2.88045,-11.054,48.0956],[-1.43537,-11.4308,48.3689],[-2.42165,-11.5735,49.1745],[-3.66008,-11.348,49.5527],[-2.88045,-11.054,48.0956],[-2.42165,-11.5735,49.1745],[-2.42165,-11.5735,49.1745],[-2.43135,-11.9116,50.3398],[-3.66008,-11.348,49.5527],[-3.66008,-11.348,49.5527],[-2.43135,-11.9116,50.3398],[-3.45886,-11.8667,51.2125],[-3.45886,-11.8667,51.2125],[-4.72504,-11.3417,50.7839],[-3.66008,-11.348,49.5527],[-4.72504,-11.3417,50.7839],[-5.20327,-10.739,49.4366],[-3.66008,-11.348,49.5527],[-5.20327,-10.739,49.4366],[-4.34699,-10.5684,48.0557],[-3.66008,-11.348,49.5527],[-5.20327,-10.739,49.4366],[-5.79321,-9.99731,48.1844],[-4.34699,-10.5684,48.0557],[-4.34699,-10.5684,48.0557],[-5.79321,-9.99731,48.1844],[-5.08792,-9.68621,46.8051],[-5.08792,-9.68621,46.8051],[-3.36161,-10.2113,46.5626],[-4.34699,-10.5684,48.0557],[-2.88045,-11.054,48.0956],[-4.34699,-10.5684,48.0557],[-3.36161,-10.2113,46.5626],[-4.47718,-9.11758,45.3305],[-3.36161,-10.2113,46.5626],[-5.08792,-9.68621,46.8051],[-5.08792,-9.68621,46.8051],[-6.10125,-8.57384,45.8412],[-4.47718,-9.11758,45.3305],[-4.47718,-9.11758,45.3305],[-6.10125,-8.57384,45.8412],[-5.27951,-8.13829,44.4667],[-5.27951,-8.13829,44.4667],[-6.10125,-8.57384,45.8412],[-6.36761,-7.69769,44.7563],[-7.44422,-7.34581,45.4932],[-6.36761,-7.69769,44.7563],[-6.10125,-8.57384,45.8412],[-6.10125,-8.57384,45.8412],[-7.52894,-8.3515,47.181],[-7.44422,-7.34581,45.4932],[-6.32328,-9.25464,47.2074],[-7.52894,-8.3515,47.181],[-6.10125,-8.57384,45.8412],[-6.92165,-9.34806,48.2164],[-7.52894,-8.3515,47.181],[-6.32328,-9.25464,47.2074],[-6.92165,-9.34806,48.2164],[-6.32328,-9.25464,47.2074],[-5.79321,-9.99731,48.1844],[-5.79321,-9.99731,48.1844],[-6.6611,-10.0303,49.603],[-6.92165,-9.34806,48.2164],[-6.92165,-9.34806,48.2164],[-6.6611,-10.0303,49.603],[-8.07063,-8.83023,49.0354],[-6.6611,-10.0303,49.603],[-7.85761,-9.62734,50.8273],[-8.07063,-8.83023,49.0354],[-8.07063,-8.83023,49.0354],[-7.85761,-9.62734,50.8273],[-9.03484,-8.54799,50.2742],[-7.85761,-9.62734,50.8273],[-8.95069,-8.9848,51.4223],[-9.03484,-8.54799,50.2742],[-9.03484,-8.54799,50.2742],[-8.95069,-8.9848,51.4223],[-9.82656,-8.12897,51.1704],[-9.9986,-7.52331,49.9969],[-9.03484,-8.54799,50.2742],[-9.82656,-8.12897,51.1704],[-9.82656,-8.12897,51.1704],[-8.95069,-8.9848,51.4223],[-9.55821,-8.6897,52.5211],[-9.55821,-8.6897,52.5211],[-10.4512,-7.69815,51.8852],[-9.82656,-8.12897,51.1704],[-9.82656,-8.12897,51.1704],[-10.4512,-7.69815,51.8852],[-10.6856,-7.12417,50.8957],[-10.6856,-7.12417,50.8957],[-10.4512,-7.69815,51.8852],[-11.2437,-6.75648,51.8597],[-11.2437,-6.75648,51.8597],[-10.4512,-7.69815,51.8852],[-10.7435,-7.61037,52.9875],[-10.7435,-7.61037,52.9875],[-11.8879,-6.19403,53.037],[-11.2437,-6.75648,51.8597],[-11.2437,-6.75648,51.8597],[-11.8879,-6.19403,53.037],[-11.9932,-5.57224,51.5608],[-11.9932,-5.57224,51.5608],[-11.3827,-6.22493,50.8446],[-11.2437,-6.75648,51.8597],[-10.7435,-7.61037,52.9875],[-11.3655,-7.08589,53.8685],[-11.8879,-6.19403,53.037],[-11.8879,-6.19403,53.037],[-11.3655,-7.08589,53.8685],[-11.8721,-6.48123,54.202],[-12.4497,-5.56084,54.0321],[-11.8879,-6.19403,53.037],[-11.8721,-6.48123,54.202],[-11.8721,-6.48123,54.202],[-12.1179,-6.19461,55.1176],[-12.4497,-5.56084,54.0321],[-12.4497,-5.56084,54.0321],[-12.1179,-6.19461,55.1176],[-12.7235,-5.2136,55.0471],[-13.1065,-4.30907,54.0173],[-12.4497,-5.56084,54.0321],[-12.7235,-5.2136,55.0471],[-13.2095,-4.24333,55.7098],[-13.1065,-4.30907,54.0173],[-12.7235,-5.2136,55.0471],[-12.408,-5.68741,56.3445],[-13.2095,-4.24333,55.7098],[-12.7235,-5.2136,55.0471],[-12.8867,-4.72386,57.3287],[-13.2095,-4.24333,55.7098],[-12.408,-5.68741,56.3445],[-12.408,-5.68741,56.3445],[-12.1479,-5.83397,57.8063],[-12.8867,-4.72386,57.3287],[-12.1479,-5.83397,57.8063],[-12.5516,-4.95045,58.5737],[-12.8867,-4.72386,57.3287],[-12.8867,-4.72386,57.3287],[-12.5516,-4.95045,58.5737],[-13.179,-3.85692,58.2724],[-12.8867,-4.72386,57.3287],[-13.179,-3.85692,58.2724],[-13.4968,-3.54516,57.1949],[-13.4968,-3.54516,57.1949],[-13.179,-3.85692,58.2724],[-13.6659,-2.86386,57.875],[-13.4968,-3.54516,57.1949],[-13.6659,-2.86386,57.875],[-13.8913,-2.55187,56.8344],[-13.8913,-2.55187,56.8344],[-13.6892,-3.23098,56.3264],[-13.4968,-3.54516,57.1949],[-13.6892,-3.23098,56.3264],[-13.2095,-4.24333,55.7098],[-13.4968,-3.54516,57.1949],[-13.2095,-4.24333,55.7098],[-13.6892,-3.23098,56.3264],[-13.91,-2.47618,55.5169],[-13.91,-2.47618,55.5169],[-13.5947,-3.26405,54.5261],[-13.2095,-4.24333,55.7098],[-13.908,-2.10803,54.0485],[-13.5947,-3.26405,54.5261],[-13.91,-2.47618,55.5169],[-13.91,-2.47618,55.5169],[-14.1979,-1.14726,54.9914],[-13.908,-2.10803,54.0485],[-13.908,-2.10803,54.0485],[-14.1979,-1.14726,54.9914],[-14.1231,-0.558852,53.2858],[-14.1231,-0.558852,53.2858],[-13.7555,-2.02048,52.6571],[-13.908,-2.10803,54.0485],[-13.908,-2.10803,54.0485],[-13.7555,-2.02048,52.6571],[-13.5343,-3.10335,53.3303],[-13.5343,-3.10335,53.3303],[-13.7555,-2.02048,52.6571],[-13.3886,-2.97875,52.1251],[-13.3886,-2.97875,52.1251],[-13.7555,-2.02048,52.6571],[-13.5348,-2.17392,51.6074],[-13.7555,-2.02048,52.6571],[-13.7596,-1.17279,51.7042],[-13.5348,-2.17392,51.6074],[-13.5348,-2.17392,51.6074],[-13.7596,-1.17279,51.7042],[-13.3256,-1.88302,50.5767],[-14.1231,-0.558852,53.2858],[-13.7596,-1.17279,51.7042],[-13.7555,-2.02048,52.6571],[-13.9533,0.17456,51.6835],[-13.7596,-1.17279,51.7042],[-14.1231,-0.558852,53.2858],[-14.2302,1.04611,52.7305],[-13.9533,0.17456,51.6835],[-14.1231,-0.558852,53.2858],[-14.2302,1.04611,52.7305],[-14.1231,-0.558852,53.2858],[-14.3824,0.682305,53.7978],[-14.3824,0.682305,53.7978],[-14.4336,1.74063,53.719],[-14.2302,1.04611,52.7305],[-14.2302,1.04611,52.7305],[-14.4336,1.74063,53.719],[-14.2037,2.74881,52.4234],[-14.2037,2.74881,52.4234],[-14.0159,1.53798,51.4599],[-14.2302,1.04611,52.7305],[-13.9384,2.54966,51.073],[-14.0159,1.53798,51.4599],[-14.2037,2.74881,52.4234],[-13.8625,3.61965,51.0461],[-13.9384,2.54966,51.073],[-14.2037,2.74881,52.4234],[-14.2037,2.74881,52.4234],[-14.0334,4.25906,52.0036],[-13.8625,3.61965,51.0461],[-14.0334,4.25906,52.0036],[-13.6624,5.00589,50.9168],[-13.8625,3.61965,51.0461],[-13.6624,5.00589,50.9168],[-13.447,4.23474,49.8542],[-13.8625,3.61965,51.0461],[-13.8625,3.61965,51.0461],[-13.447,4.23474,49.8542],[-13.6029,2.91146,49.993],[-14.0334,4.25906,52.0036],[-13.9218,5.5921,52.3452],[-13.6624,5.00589,50.9168],[-13.6624,5.00589,50.9168],[-13.9218,5.5921,52.3452],[-13.3661,6.50833,50.968],[-13.3661,6.50833,50.968],[-13.0552,5.71039,49.4387],[-13.6624,5.00589,50.9168],[-14.2037,2.74881,52.4234],[-14.2817,4.28578,53.3903],[-14.0334,4.25906,52.0036],[-14.2037,2.74881,52.4234],[-14.4687,2.91866,54.0511],[-14.2817,4.28578,53.3903],[-14.4687,2.91866,54.0511],[-14.4955,3.88103,54.8221],[-14.2817,4.28578,53.3903],[-14.585,2.85822,55.1501],[-14.4955,3.88103,54.8221],[-14.4687,2.91866,54.0511],[-14.585,2.85822,55.1501],[-14.4687,2.91866,54.0511],[-14.5625,1.96425,54.8032],[-14.585,2.85822,55.1501],[-14.5625,1.96425,54.8032],[-14.6111,2.11868,55.864],[-14.6111,2.11868,55.864],[-14.5781,3.35073,56.1751],[-14.585,2.85822,55.1501],[-14.6001,2.26514,56.8124],[-14.5781,3.35073,56.1751],[-14.6111,2.11868,55.864],[-14.6111,2.11868,55.864],[-14.5402,1.17731,56.6644],[-14.6001,2.26514,56.8124],[-14.5402,1.17731,56.6644],[-14.5104,1.66759,57.5955],[-14.6001,2.26514,56.8124],[-14.6001,2.26514,56.8124],[-14.5104,1.66759,57.5955],[-14.5098,2.96695,57.7094],[-14.5098,2.96695,57.7094],[-14.5104,1.66759,57.5955],[-14.3335,1.7281,58.7935],[-14.3335,1.7281,58.7935],[-14.326,3.1851,59.0611],[-14.5098,2.96695,57.7094],[-14.5098,2.96695,57.7094],[-14.326,3.1851,59.0611],[-14.393,4.19586,58.356],[-14.5098,2.96695,57.7094],[-14.393,4.19586,58.356],[-14.4856,4.37535,57.0928],[-14.393,4.19586,58.356],[-14.3283,5.31592,57.8295],[-14.4856,4.37535,57.0928],[-14.1942,5.12965,58.9779],[-14.3283,5.31592,57.8295],[-14.393,4.19586,58.356],[-14.1942,5.12965,58.9779],[-14.393,4.19586,58.356],[-14.2301,4.19669,59.3476],[-14.2301,4.19669,59.3476],[-13.9382,4.87796,60.16],[-14.1942,5.12965,58.9779],[-14.1942,5.12965,58.9779],[-13.9382,4.87796,60.16],[-13.934,5.92916,59.5339],[-13.934,5.92916,59.5339],[-14.0643,6.24584,58.499],[-14.1942,5.12965,58.9779],[-13.653,7.1356,59.3245],[-14.0643,6.24584,58.499],[-13.934,5.92916,59.5339],[-13.5517,6.22081,60.5897],[-13.653,7.1356,59.3245],[-13.934,5.92916,59.5339],[-13.934,5.92916,59.5339],[-13.9382,4.87796,60.16],[-13.5517,6.22081,60.5897],[-13.5517,6.22081,60.5897],[-13.9382,4.87796,60.16],[-13.5099,5.09143,61.3644],[-13.5099,5.09143,61.3644],[-12.9802,6.25329,62.0266],[-13.5517,6.22081,60.5897],[-13.5517,6.22081,60.5897],[-12.9802,6.25329,62.0266],[-13.1567,7.14515,61.1041],[-13.1567,7.14515,61.1041],[-13.1447,7.92646,60.303],[-13.5517,6.22081,60.5897],[-12.7038,8.05712,61.383],[-13.1447,7.92646,60.303],[-13.1567,7.14515,61.1041],[-13.1567,7.14515,61.1041],[-12.9802,6.25329,62.0266],[-12.7038,8.05712,61.383],[-12.7038,8.05712,61.383],[-12.9802,6.25329,62.0266],[-12.267,7.64453,62.5992],[-12.7038,8.05712,61.383],[-12.267,7.64453,62.5992],[-11.8907,9.19509,61.9648],[-11.8907,9.19509,61.9648],[-12.566,9.10926,60.5278],[-12.7038,8.05712,61.383],[-11.8094,10.3477,60.8008],[-12.566,9.10926,60.5278],[-11.8907,9.19509,61.9648],[-11.8907,9.19509,61.9648],[-11.0532,10.6647,61.9337],[-11.8094,10.3477,60.8008],[-11.8094,10.3477,60.8008],[-11.0532,10.6647,61.9337],[-10.956,11.6089,60.8427],[-10.956,11.6089,60.8427],[-11.7116,11.1629,59.6972],[-11.8094,10.3477,60.8008],[-11.8094,10.3477,60.8008],[-11.7116,11.1629,59.6972],[-12.3621,10.0661,59.6921],[-10.9346,12.2896,59.6061],[-11.7116,11.1629,59.6972],[-10.956,11.6089,60.8427],[-10.4349,12.4542,60.5591],[-10.9346,12.2896,59.6061],[-10.956,11.6089,60.8427],[-10.956,11.6089,60.8427],[-10.2359,12.2615,61.2688],[-10.4349,12.4542,60.5591],[-10.2359,12.2615,61.2688],[-9.85188,12.8368,60.9828],[-10.4349,12.4542,60.5591],[-9.85188,12.8368,60.9828],[-10.0823,13.0843,60.0266],[-10.4349,12.4542,60.5591],[-9.49611,13.3856,60.5968],[-10.0823,13.0843,60.0266],[-9.85188,12.8368,60.9828],[-9.49611,13.3856,60.5968],[-9.85188,12.8368,60.9828],[-9.24265,13.1681,61.3999],[-9.14036,13.4957,60.9972],[-9.49611,13.3856,60.5968],[-9.24265,13.1681,61.3999],[-9.14036,13.4957,60.9972],[-9.24265,13.1681,61.3999],[-8.75031,13.5856,61.3737],[-9.14036,13.4957,60.9972],[-8.75031,13.5856,61.3737],[-9.01872,13.7965,60.5615],[-8.75031,13.5856,61.3737],[-8.37426,14.0996,60.9075],[-9.01872,13.7965,60.5615],[-8.37426,14.0996,60.9075],[-8.67935,14.3287,59.8765],[-9.01872,13.7965,60.5615],[-9.01872,13.7965,60.5615],[-8.67935,14.3287,59.8765],[-9.43209,13.7159,59.9871],[-9.01872,13.7965,60.5615],[-9.43209,13.7159,59.9871],[-9.49611,13.3856,60.5968],[-9.43209,13.7159,59.9871],[-8.67935,14.3287,59.8765],[-9.384,14.0093,59.3769],[-7.98092,14.6058,60.4469],[-8.67935,14.3287,59.8765],[-8.37426,14.0996,60.9075],[-8.75031,13.5856,61.3737],[-8.01095,13.8247,61.8839],[-8.37426,14.0996,60.9075],[-8.37426,14.0996,60.9075],[-8.01095,13.8247,61.8839],[-7.72981,14.3993,61.2335],[-8.78207,13.2026,61.9601],[-8.01095,13.8247,61.8839],[-8.75031,13.5856,61.3737],[-8.30437,13.234,62.5054],[-8.01095,13.8247,61.8839],[-8.78207,13.2026,61.9601],[-8.30437,13.234,62.5054],[-8.78207,13.2026,61.9601],[-8.80565,12.8082,62.538],[-8.39473,12.8971,62.9106],[-8.30437,13.234,62.5054],[-8.80565,12.8082,62.538],[-8.39473,12.8971,62.9106],[-8.80565,12.8082,62.538],[-8.47639,12.5337,63.2829],[-8.39473,12.8971,62.9106],[-8.47639,12.5337,63.2829],[-7.98179,12.9668,63.2336],[-8.47639,12.5337,63.2829],[-7.96671,12.5278,63.7901],[-7.98179,12.9668,63.2336],[-7.96671,12.5278,63.7901],[-7.27584,13.1869,63.5974],[-7.98179,12.9668,63.2336],[-7.98179,12.9668,63.2336],[-7.27584,13.1869,63.5974],[-7.63834,13.5108,62.8035],[-7.98179,12.9668,63.2336],[-7.63834,13.5108,62.8035],[-8.30437,13.234,62.5054],[-7.63834,13.5108,62.8035],[-7.27584,13.1869,63.5974],[-7.08701,13.722,63.0516],[-7.19938,14.0324,62.4557],[-7.63834,13.5108,62.8035],[-7.08701,13.722,63.0516],[-6.68949,14.0714,62.8927],[-7.19938,14.0324,62.4557],[-7.08701,13.722,63.0516],[-7.08701,13.722,63.0516],[-6.64912,13.7158,63.4308],[-6.68949,14.0714,62.8927],[-6.64912,13.7158,63.4308],[-5.9978,14.2527,63.1603],[-6.68949,14.0714,62.8927],[-6.68949,14.0714,62.8927],[-5.9978,14.2527,63.1603],[-6.52517,14.529,62.294],[-5.78693,13.5352,64.2579],[-5.9978,14.2527,63.1603],[-6.64912,13.7158,63.4308],[-5.78693,13.5352,64.2579],[-6.64912,13.7158,63.4308],[-6.60963,13.336,63.9603],[-6.60963,13.336,63.9603],[-6.7035,12.8324,64.4878],[-5.78693,13.5352,64.2579],[-6.7035,12.8324,64.4878],[-6.05614,12.5048,65.2562],[-5.78693,13.5352,64.2579],[-6.9565,12.3284,64.8703],[-6.05614,12.5048,65.2562],[-6.7035,12.8324,64.4878],[-6.9565,12.3284,64.8703],[-6.7035,12.8324,64.4878],[-7.32804,12.57,64.3208],[-7.46989,12.1664,64.6673],[-6.9565,12.3284,64.8703],[-7.32804,12.57,64.3208],[-7.46989,12.1664,64.6673],[-7.32804,12.57,64.3208],[-7.97542,11.9847,64.4031],[-7.46989,12.1664,64.6673],[-7.97542,11.9847,64.4031],[-7.6187,11.709,64.9789],[-7.97542,11.9847,64.4031],[-8.36599,11.3126,64.6859],[-7.6187,11.709,64.9789],[-8.36599,11.3126,64.6859],[-7.63666,10.9354,65.6195],[-7.6187,11.709,64.9789],[-7.6187,11.709,64.9789],[-7.63666,10.9354,65.6195],[-6.89617,11.7486,65.4641],[-7.6187,11.709,64.9789],[-6.89617,11.7486,65.4641],[-6.9565,12.3284,64.8703],[-6.89617,11.7486,65.4641],[-7.63666,10.9354,65.6195],[-6.78881,11.2249,66.0091],[-6.28238,11.7159,65.9038],[-6.89617,11.7486,65.4641],[-6.78881,11.2249,66.0091],[-6.30315,11.284,66.2789],[-6.28238,11.7159,65.9038],[-6.78881,11.2249,66.0091],[-6.30315,11.284,66.2789],[-6.78881,11.2249,66.0091],[-6.26733,10.8468,66.6126],[-6.30315,11.284,66.2789],[-6.26733,10.8468,66.6126],[-5.81204,11.316,66.5044],[-6.26733,10.8468,66.6126],[-5.6403,10.8488,66.9198],[-5.81204,11.316,66.5044],[-5.6403,10.8488,66.9198],[-5.05545,11.4226,66.759],[-5.81204,11.316,66.5044],[-5.01638,10.8539,67.1938],[-5.05545,11.4226,66.759],[-5.6403,10.8488,66.9198],[-5.01638,10.8539,67.1938],[-5.6403,10.8488,66.9198],[-4.95638,10.2172,67.6014],[-4.95638,10.2172,67.6014],[-4.37698,10.8642,67.4156],[-5.01638,10.8539,67.1938],[-4.95638,10.2172,67.6014],[-3.98264,10.3318,67.8735],[-4.37698,10.8642,67.4156],[-4.37779,9.71227,68.0989],[-3.98264,10.3318,67.8735],[-4.95638,10.2172,67.6014],[-5.03197,9.52227,67.9813],[-4.37779,9.71227,68.0989],[-4.95638,10.2172,67.6014],[-4.95638,10.2172,67.6014],[-5.69551,9.33226,67.8111],[-5.03197,9.52227,67.9813],[-5.69551,9.33226,67.8111],[-5.09613,8.74548,68.3231],[-5.03197,9.52227,67.9813],[-5.98936,8.7354,67.9932],[-5.09613,8.74548,68.3231],[-5.69551,9.33226,67.8111],[-5.98936,8.7354,67.9932],[-5.69551,9.33226,67.8111],[-6.40868,9.13611,67.6042],[-6.51097,8.6733,67.7968],[-5.98936,8.7354,67.9932],[-6.40868,9.13611,67.6042],[-6.51097,8.6733,67.7968],[-6.40868,9.13611,67.6042],[-6.89192,8.715,67.5592],[-6.51097,8.6733,67.7968],[-6.89192,8.715,67.5592],[-6.7687,8.04468,67.8923],[-6.89192,8.715,67.5592],[-7.73627,8.41863,67.1399],[-6.7687,8.04468,67.8923],[-6.7687,8.04468,67.8923],[-7.73627,8.41863,67.1399],[-7.74883,7.07412,67.6283],[-7.74883,7.07412,67.6283],[-6.63713,7.22407,68.2362],[-6.7687,8.04468,67.8923],[-6.7687,8.04468,67.8923],[-6.63713,7.22407,68.2362],[-5.88636,7.92763,68.3512],[-6.7687,8.04468,67.8923],[-5.88636,7.92763,68.3512],[-5.98936,8.7354,67.9932],[-5.88636,7.92763,68.3512],[-6.63713,7.22407,68.2362],[-5.75998,6.80418,68.7384],[-5.13443,7.82579,68.6838],[-5.88636,7.92763,68.3512],[-5.75998,6.80418,68.7384],[-4.58563,7.3562,69.0335],[-5.13443,7.82579,68.6838],[-5.75998,6.80418,68.7384],[-4.58563,7.3562,69.0335],[-5.75998,6.80418,68.7384],[-4.82094,6.66889,69.1588],[-4.82094,6.66889,69.1588],[-4.17214,6.71325,69.3385],[-4.58563,7.3562,69.0335],[-4.17214,6.71325,69.3385],[-3.76791,7.55277,69.1898],[-4.58563,7.3562,69.0335],[-4.58563,7.3562,69.0335],[-3.76791,7.55277,69.1898],[-4.3174,8.18392,68.8138],[-5.75998,6.80418,68.7384],[-4.67999,5.70311,69.3878],[-4.82094,6.66889,69.1588],[-6.06156,5.03537,68.9572],[-4.67999,5.70311,69.3878],[-5.75998,6.80418,68.7384],[-6.06156,5.03537,68.9572],[-5.75998,6.80418,68.7384],[-6.98791,6.11145,68.3293],[-6.98791,6.11145,68.3293],[-7.4218,4.71693,68.3482],[-6.06156,5.03537,68.9572],[-6.06156,5.03537,68.9572],[-7.4218,4.71693,68.3482],[-6.77002,3.85776,68.7801],[-6.06156,5.03537,68.9572],[-6.77002,3.85776,68.7801],[-5.7017,3.39582,69.2653],[-6.77002,3.85776,68.7801],[-6.82581,2.60508,68.751],[-5.7017,3.39582,69.2653],[-5.7017,3.39582,69.2653],[-6.82581,2.60508,68.751],[-5.75087,1.8655,69.2216],[-5.75087,1.8655,69.2216],[-6.82581,2.60508,68.751],[-7.01063,0.982636,68.4794],[-7.01063,0.982636,68.4794],[-6.03833,0.708044,68.9792],[-5.75087,1.8655,69.2216],[-5.75087,1.8655,69.2216],[-6.03833,0.708044,68.9792],[-5.25116,0.330096,69.2439],[-5.75087,1.8655,69.2216],[-5.25116,0.330096,69.2439],[-4.75474,1.32362,69.5707],[-5.25116,0.330096,69.2439],[-6.03833,0.708044,68.9792],[-6.03163,-0.334353,68.7612],[-5.04886,-0.943982,69.0331],[-5.25116,0.330096,69.2439],[-6.03163,-0.334353,68.7612],[-6.03163,-0.334353,68.7612],[-6.0228,-1.58332,68.4225],[-5.04886,-0.943982,69.0331],[-4.98432,-2.38871,68.62],[-5.04886,-0.943982,69.0331],[-6.0228,-1.58332,68.4225],[-5.97102,-2.80706,68.0296],[-4.98432,-2.38871,68.62],[-6.0228,-1.58332,68.4225],[-6.0228,-1.58332,68.4225],[-6.74741,-2.10599,67.8709],[-5.97102,-2.80706,68.0296],[-5.97102,-2.80706,68.0296],[-6.74741,-2.10599,67.8709],[-6.82134,-3.06088,67.4577],[-5.97102,-2.80706,68.0296],[-6.82134,-3.06088,67.4577],[-6.10781,-3.70786,67.5775],[-6.10781,-3.70786,67.5775],[-5.03982,-3.83232,68.0162],[-5.97102,-2.80706,68.0296],[-5.8746,-4.72938,67.1478],[-5.03982,-3.83232,68.0162],[-6.10781,-3.70786,67.5775],[-6.10781,-3.70786,67.5775],[-6.73505,-3.96029,67.0836],[-5.8746,-4.72938,67.1478],[-5.8746,-4.72938,67.1478],[-6.73505,-3.96029,67.0836],[-7.17334,-4.7108,66.3484],[-6.22075,-5.73741,66.3387],[-5.8746,-4.72938,67.1478],[-7.17334,-4.7108,66.3484],[-6.22075,-5.73741,66.3387],[-7.17334,-4.7108,66.3484],[-7.24292,-5.79494,65.6031],[-6.39454,-6.58663,65.6394],[-6.22075,-5.73741,66.3387],[-7.24292,-5.79494,65.6031],[-7.21614,-6.58196,65.0293],[-6.39454,-6.58663,65.6394],[-7.24292,-5.79494,65.6031],[-7.21614,-6.58196,65.0293],[-7.24292,-5.79494,65.6031],[-8.22141,-5.88516,64.6767],[-7.52689,-7.12558,64.2079],[-7.21614,-6.58196,65.0293],[-8.22141,-5.88516,64.6767],[-8.82513,-6.5752,63.3333],[-7.52689,-7.12558,64.2079],[-8.22141,-5.88516,64.6767],[-9.56958,-5.05262,63.9252],[-8.82513,-6.5752,63.3333],[-8.22141,-5.88516,64.6767],[-9.56958,-5.05262,63.9252],[-8.22141,-5.88516,64.6767],[-8.77941,-4.76697,65.0131],[-8.77941,-4.76697,65.0131],[-9.50746,-3.6364,65.0076],[-9.56958,-5.05262,63.9252],[-10.5494,-3.78236,63.7774],[-9.56958,-5.05262,63.9252],[-9.50746,-3.6364,65.0076],[-9.50746,-3.6364,65.0076],[-10.4945,-2.69033,64.563],[-10.5494,-3.78236,63.7774],[-10.5494,-3.78236,63.7774],[-10.4945,-2.69033,64.563],[-11.4325,-2.65149,63.3997],[-10.5494,-3.78236,63.7774],[-11.4325,-2.65149,63.3997],[-11.3433,-3.86315,62.6536],[-11.3433,-3.86315,62.6536],[-10.5927,-4.73141,62.9849],[-10.5494,-3.78236,63.7774],[-10.5927,-4.73141,62.9849],[-11.3433,-3.86315,62.6536],[-11.1013,-4.99599,61.953],[-11.1013,-4.99599,61.953],[-10.0949,-5.84633,62.5052],[-10.5927,-4.73141,62.9849],[-9.56958,-5.05262,63.9252],[-10.5927,-4.73141,62.9849],[-10.0949,-5.84633,62.5052],[-11.1013,-4.99599,61.953],[-10.7176,-6.14747,61.139],[-10.0949,-5.84633,62.5052],[-10.0949,-5.84633,62.5052],[-10.7176,-6.14747,61.139],[-9.4254,-7.35315,61.522],[-10.0949,-5.84633,62.5052],[-9.4254,-7.35315,61.522],[-8.82513,-6.5752,63.3333],[-7.77472,-7.92101,63.0016],[-8.82513,-6.5752,63.3333],[-9.4254,-7.35315,61.522],[-9.4254,-7.35315,61.522],[-8.09606,-8.53846,61.714],[-7.77472,-7.92101,63.0016],[-7.77472,-7.92101,63.0016],[-8.09606,-8.53846,61.714],[-6.68949,-9.34137,62.1989],[-6.73179,-8.69426,63.2015],[-7.77472,-7.92101,63.0016],[-6.68949,-9.34137,62.1989],[-6.68949,-9.34137,62.1989],[-5.93848,-9.1279,63.3521],[-6.73179,-8.69426,63.2015],[-5.93848,-9.1279,63.3521],[-6.37531,-8.21178,64.0994],[-6.73179,-8.69426,63.2015],[-5.15866,-8.86073,64.274],[-6.37531,-8.21178,64.0994],[-5.93848,-9.1279,63.3521],[-4.85488,-9.6849,63.4411],[-5.15866,-8.86073,64.274],[-5.93848,-9.1279,63.3521],[-5.63347,-9.75453,62.7197],[-4.85488,-9.6849,63.4411],[-5.93848,-9.1279,63.3521],[-5.63347,-9.75453,62.7197],[-4.83251,-10.3296,62.46],[-4.85488,-9.6849,63.4411],[-4.83251,-10.3296,62.46],[-3.81094,-10.3589,63.1477],[-4.85488,-9.6849,63.4411],[-3.81094,-10.3589,63.1477],[-3.70052,-9.43469,64.4316],[-4.85488,-9.6849,63.4411],[-2.88879,-10.3436,63.7166],[-3.70052,-9.43469,64.4316],[-3.81094,-10.3589,63.1477],[-2.88879,-10.3436,63.7166],[-3.81094,-10.3589,63.1477],[-2.77974,-11.0101,62.7194],[-1.81832,-10.7202,63.622],[-2.88879,-10.3436,63.7166],[-2.77974,-11.0101,62.7194],[-1.66222,-11.5935,62.1294],[-1.81832,-10.7202,63.622],[-2.77974,-11.0101,62.7194],[-2.77974,-11.0101,62.7194],[-2.68192,-11.5816,61.657],[-1.66222,-11.5935,62.1294],[-2.68192,-11.5816,61.657],[-1.81521,-12.1526,60.7013],[-1.66222,-11.5935,62.1294],[-1.66222,-11.5935,62.1294],[-1.81521,-12.1526,60.7013],[-0.774117,-12.0261,61.5153],[-0.774117,-12.0261,61.5153],[-0.00213181,-11.5434,62.5319],[-1.66222,-11.5935,62.1294],[-1.66222,-11.5935,62.1294],[-0.00213181,-11.5434,62.5319],[-1.05773,-11.2293,63.0514],[0.0634468,-12.1222,61.4234],[-0.00213181,-11.5434,62.5319],[-0.774117,-12.0261,61.5153],[0.0634468,-12.1222,61.4234],[-0.774117,-12.0261,61.5153],[-0.457191,-12.38,60.6613],[0.646291,-12.3835,60.6109],[0.0634468,-12.1222,61.4234],[-0.457191,-12.38,60.6613],[0.646291,-12.3835,60.6109],[-0.457191,-12.38,60.6613],[0.0774649,-12.6266,59.8653],[1.05803,-12.6427,59.5061],[0.646291,-12.3835,60.6109],[0.0774649,-12.6266,59.8653],[0.0167946,-12.826,58.7446],[1.05803,-12.6427,59.5061],[0.0774649,-12.6266,59.8653],[-0.895994,-12.6033,59.6772],[0.0167946,-12.826,58.7446],[0.0774649,-12.6266,59.8653],[-1.32698,-12.7525,58.5278],[0.0167946,-12.826,58.7446],[-0.895994,-12.6033,59.6772],[-1.32698,-12.7525,58.5278],[-0.895994,-12.6033,59.6772],[-1.85534,-12.526,59.4459],[-1.32698,-12.7525,58.5278],[-1.85534,-12.526,59.4459],[-2.37104,-12.553,58.6312],[-2.37104,-12.553,58.6312],[-2.25326,-12.6841,57.1894],[-1.32698,-12.7525,58.5278],[-1.32698,-12.7525,58.5278],[-2.25326,-12.6841,57.1894],[-0.59464,-12.9194,57.4364],[-0.59464,-12.9194,57.4364],[-2.25326,-12.6841,57.1894],[-1.07326,-12.9051,56.0325],[-0.59464,-12.9194,57.4364],[-1.07326,-12.9051,56.0325],[0.41997,-12.9799,56.4152],[0.553395,-12.9561,57.6778],[-0.59464,-12.9194,57.4364],[0.41997,-12.9799,56.4152],[1.66618,-12.8627,57.3335],[0.553395,-12.9561,57.6778],[0.41997,-12.9799,56.4152],[1.66618,-12.8627,57.3335],[0.41997,-12.9799,56.4152],[1.56186,-12.9232,55.9319],[2.76641,-12.6918,55.4134],[1.66618,-12.8627,57.3335],[1.56186,-12.9232,55.9319],[1.66618,-12.8627,57.3335],[2.76641,-12.6918,55.4134],[3.48934,-12.4888,57.4373],[0.41997,-12.9799,56.4152],[1.32061,-12.8223,54.504],[1.56186,-12.9232,55.9319],[0.41997,-12.9799,56.4152],[-0.227792,-12.9226,54.9721],[1.32061,-12.8223,54.504],[-0.227792,-12.9226,54.9721],[-0.262058,-12.7487,53.3767],[1.32061,-12.8223,54.504],[-0.262058,-12.7487,53.3767],[-0.227792,-12.9226,54.9721],[-1.56294,-12.7625,54.5021],[-1.67501,-12.5778,52.9372],[-0.262058,-12.7487,53.3767],[-1.56294,-12.7625,54.5021],[-1.67501,-12.5778,52.9372],[-1.56294,-12.7625,54.5021],[-3.23974,-12.2366,52.9271],[-2.18086,-12.2866,51.7329],[-1.67501,-12.5778,52.9372],[-3.23974,-12.2366,52.9271],[-2.18086,-12.2866,51.7329],[-3.23974,-12.2366,52.9271],[-3.45886,-11.8667,51.2125],[-3.45886,-11.8667,51.2125],[-3.23974,-12.2366,52.9271],[-4.34833,-11.7551,51.9864],[-4.34833,-11.7551,51.9864],[-3.23974,-12.2366,52.9271],[-4.58659,-11.8304,52.964],[-4.34833,-11.7551,51.9864],[-4.58659,-11.8304,52.964],[-5.66243,-11.2134,52.0495],[-5.66243,-11.2134,52.0495],[-4.72504,-11.3417,50.7839],[-4.34833,-11.7551,51.9864],[-5.82364,-10.8116,50.575],[-4.72504,-11.3417,50.7839],[-5.66243,-11.2134,52.0495],[-5.66243,-11.2134,52.0495],[-6.63771,-10.4878,51.03],[-5.82364,-10.8116,50.575],[-5.82364,-10.8116,50.575],[-6.63771,-10.4878,51.03],[-6.6611,-10.0303,49.603],[-5.20327,-10.739,49.4366],[-5.82364,-10.8116,50.575],[-6.6611,-10.0303,49.603],[-7.09094,-10.4577,52.1118],[-6.63771,-10.4878,51.03],[-5.66243,-11.2134,52.0495],[-5.66243,-11.2134,52.0495],[-6.47891,-10.9925,53.1414],[-7.09094,-10.4577,52.1118],[-6.47891,-10.9925,53.1414],[-7.50804,-10.408,53.3805],[-7.09094,-10.4577,52.1118],[-7.09094,-10.4577,52.1118],[-7.50804,-10.408,53.3805],[-8.29728,-9.68623,52.3218],[-7.09094,-10.4577,52.1118],[-8.29728,-9.68623,52.3218],[-7.85761,-9.62734,50.8273],[-7.50804,-10.408,53.3805],[-8.6517,-9.62791,53.6557],[-8.29728,-9.68623,52.3218],[-8.29728,-9.68623,52.3218],[-8.6517,-9.62791,53.6557],[-9.55821,-8.6897,52.5211],[-9.55821,-8.6897,52.5211],[-8.6517,-9.62791,53.6557],[-9.75153,-8.76992,54.2181],[-10.7435,-7.61037,52.9875],[-9.55821,-8.6897,52.5211],[-9.75153,-8.76992,54.2181],[-10.7435,-7.61037,52.9875],[-9.75153,-8.76992,54.2181],[-10.7574,-7.81853,54.2045],[-9.75153,-8.76992,54.2181],[-10.4447,-8.18809,55.0476],[-10.7574,-7.81853,54.2045],[-10.7574,-7.81853,54.2045],[-10.4447,-8.18809,55.0476],[-11.3049,-7.25171,54.9691],[-11.3049,-7.25171,54.9691],[-11.3655,-7.08589,53.8685],[-10.7574,-7.81853,54.2045],[-11.3049,-7.25171,54.9691],[-10.4447,-8.18809,55.0476],[-10.6428,-7.94384,56.2094],[-11.3049,-7.25171,54.9691],[-10.6428,-7.94384,56.2094],[-11.6085,-6.85845,56.1618],[-11.6085,-6.85845,56.1618],[-12.1179,-6.19461,55.1176],[-11.3049,-7.25171,54.9691],[-11.6085,-6.85845,56.1618],[-12.408,-5.68741,56.3445],[-12.1179,-6.19461,55.1176],[-11.7438,-6.55729,57.1912],[-12.408,-5.68741,56.3445],[-11.6085,-6.85845,56.1618],[-11.6085,-6.85845,56.1618],[-11.1565,-7.29587,57.133],[-11.7438,-6.55729,57.1912],[-11.7438,-6.55729,57.1912],[-11.1565,-7.29587,57.133],[-11.1846,-6.89898,58.4588],[-11.7438,-6.55729,57.1912],[-11.1846,-6.89898,58.4588],[-12.1479,-5.83397,57.8063],[-11.1846,-6.89898,58.4588],[-11.9149,-5.83271,58.8839],[-12.1479,-5.83397,57.8063],[-11.3703,-6.10037,59.8436],[-11.9149,-5.83271,58.8839],[-11.1846,-6.89898,58.4588],[-11.1846,-6.89898,58.4588],[-10.418,-7.13812,60.057],[-11.3703,-6.10037,59.8436],[-10.418,-7.13812,60.057],[-10.7176,-6.14747,61.139],[-11.3703,-6.10037,59.8436],[-11.3703,-6.10037,59.8436],[-10.7176,-6.14747,61.139],[-11.641,-5.13615,60.7803],[-11.3703,-6.10037,59.8436],[-11.641,-5.13615,60.7803],[-12.1407,-5.09202,59.6685],[-11.641,-5.13615,60.7803],[-12.3751,-4.14794,60.4398],[-12.1407,-5.09202,59.6685],[-12.1407,-5.09202,59.6685],[-12.3751,-4.14794,60.4398],[-12.7992,-4.05139,59.3875],[-12.7992,-4.05139,59.3875],[-12.5516,-4.95045,58.5737],[-12.1407,-5.09202,59.6685],[-12.1407,-5.09202,59.6685],[-12.5516,-4.95045,58.5737],[-11.9149,-5.83271,58.8839],[-12.3751,-4.14794,60.4398],[-12.9273,-3.25147,60.1056],[-12.7992,-4.05139,59.3875],[-12.7992,-4.05139,59.3875],[-12.9273,-3.25147,60.1056],[-13.3962,-2.76482,59.1507],[-13.3962,-2.76482,59.1507],[-13.179,-3.85692,58.2724],[-12.7992,-4.05139,59.3875],[-13.3962,-2.76482,59.1507],[-12.9273,-3.25147,60.1056],[-13.2619,-2.05654,60.3834],[-13.2619,-2.05654,60.3834],[-13.7061,-1.58768,59.4677],[-13.3962,-2.76482,59.1507],[-13.3962,-2.76482,59.1507],[-13.7061,-1.58768,59.4677],[-13.9498,-1.45337,58.4156],[-13.3962,-2.76482,59.1507],[-13.9498,-1.45337,58.4156],[-13.6659,-2.86386,57.875],[-13.9498,-1.45337,58.4156],[-13.971,-2.04905,57.612],[-13.6659,-2.86386,57.875],[-14.1789,-1.17912,57.2496],[-13.971,-2.04905,57.612],[-13.9498,-1.45337,58.4156],[-14.1789,-1.17912,57.2496],[-13.9498,-1.45337,58.4156],[-14.3062,0.193149,57.9382],[-14.3062,0.193149,57.9382],[-14.3809,-0.210159,56.1897],[-14.1789,-1.17912,57.2496],[-14.1789,-1.17912,57.2496],[-14.3809,-0.210159,56.1897],[-14.1655,-1.54142,56.1719],[-13.8913,-2.55187,56.8344],[-14.1789,-1.17912,57.2496],[-14.1655,-1.54142,56.1719],[-14.1655,-1.54142,56.1719],[-13.91,-2.47618,55.5169],[-13.8913,-2.55187,56.8344],[-14.1655,-1.54142,56.1719],[-14.3809,-0.210159,56.1897],[-14.1979,-1.14726,54.9914],[-14.1979,-1.14726,54.9914],[-14.3809,-0.210159,56.1897],[-14.3989,0.135222,54.7119],[-14.3809,-0.210159,56.1897],[-14.5421,1.03956,55.469],[-14.3989,0.135222,54.7119],[-14.3989,0.135222,54.7119],[-14.5421,1.03956,55.469],[-14.5039,1.10357,54.5088],[-14.5039,1.10357,54.5088],[-14.3824,0.682305,53.7978],[-14.3989,0.135222,54.7119],[-14.5039,1.10357,54.5088],[-14.5421,1.03956,55.469],[-14.5625,1.96425,54.8032],[-14.5625,1.96425,54.8032],[-14.4336,1.74063,53.719],[-14.5039,1.10357,54.5088],[-14.5402,1.17731,56.6644],[-14.5421,1.03956,55.469],[-14.3809,-0.210159,56.1897],[-14.5402,1.17731,56.6644],[-14.3809,-0.210159,56.1897],[-14.3062,0.193149,57.9382],[-13.9498,-1.45337,58.4156],[-13.9975,-0.571404,59.2197],[-14.3062,0.193149,57.9382],[-13.9975,-0.571404,59.2197],[-14.1621,0.505181,59.2364],[-14.3062,0.193149,57.9382],[-14.3062,0.193149,57.9382],[-14.1621,0.505181,59.2364],[-14.3335,1.7281,58.7935],[-14.1621,0.505181,59.2364],[-14.0373,1.20748,60.0482],[-14.3335,1.7281,58.7935],[-14.3335,1.7281,58.7935],[-14.0373,1.20748,60.0482],[-14.1225,2.43302,59.9865],[-14.1225,2.43302,59.9865],[-14.0373,1.20748,60.0482],[-13.7854,1.94398,61.0141],[-14.1225,2.43302,59.9865],[-13.7854,1.94398,61.0141],[-13.8781,2.96785,60.8446],[-14.0829,3.60067,60.0939],[-14.1225,2.43302,59.9865],[-13.8781,2.96785,60.8446],[-13.8781,2.96785,60.8446],[-13.7475,3.9461,61.0802],[-14.0829,3.60067,60.0939],[-13.7475,3.9461,61.0802],[-13.9382,4.87796,60.16],[-14.0829,3.60067,60.0939],[-13.8781,2.96785,60.8446],[-13.4226,2.95696,61.9762],[-13.7475,3.9461,61.0802],[-13.7475,3.9461,61.0802],[-13.4226,2.95696,61.9762],[-13.4147,4.20734,61.9102],[-13.5099,5.09143,61.3644],[-13.7475,3.9461,61.0802],[-13.4147,4.20734,61.9102],[-13.1491,4.98466,62.2811],[-13.5099,5.09143,61.3644],[-13.4147,4.20734,61.9102],[-13.4147,4.20734,61.9102],[-13.0027,4.05363,62.7682],[-13.1491,4.98466,62.2811],[-13.0027,4.05363,62.7682],[-12.5846,5.26954,63.2285],[-13.1491,4.98466,62.2811],[-12.5846,5.26954,63.2285],[-12.9802,6.25329,62.0266],[-13.1491,4.98466,62.2811],[-12.3745,6.50883,63.133],[-12.9802,6.25329,62.0266],[-12.5846,5.26954,63.2285],[-11.9683,6.07743,63.9906],[-12.3745,6.50883,63.133],[-12.5846,5.26954,63.2285],[-11.9683,6.07743,63.9906],[-12.5846,5.26954,63.2285],[-11.9708,5.07941,64.2734],[-11.9683,6.07743,63.9906],[-11.9708,5.07941,64.2734],[-11.4868,5.65506,64.7811],[-11.9683,6.07743,63.9906],[-11.4868,5.65506,64.7811],[-11.2823,6.69596,64.654],[-11.9683,6.07743,63.9906],[-11.2823,6.69596,64.654],[-11.7957,7.22772,63.6927],[-11.2823,6.69596,64.654],[-11.0564,7.88895,64.3378],[-11.7957,7.22772,63.6927],[-11.0564,7.88895,64.3378],[-11.4901,8.49124,63.303],[-11.7957,7.22772,63.6927],[-11.7957,7.22772,63.6927],[-11.4901,8.49124,63.303],[-12.267,7.64453,62.5992],[-11.7957,7.22772,63.6927],[-12.267,7.64453,62.5992],[-12.3745,6.50883,63.133],[-10.6554,9.04795,64.0758],[-11.4901,8.49124,63.303],[-11.0564,7.88895,64.3378],[-10.6554,9.04795,64.0758],[-11.0564,7.88895,64.3378],[-10.3978,8.41439,64.8391],[-9.83982,9.29411,64.8574],[-10.6554,9.04795,64.0758],[-10.3978,8.41439,64.8391],[-10.3978,8.41439,64.8391],[-9.78402,8.40672,65.495],[-9.83982,9.29411,64.8574],[-9.78402,8.40672,65.495],[-9.00837,9.24337,65.7178],[-9.83982,9.29411,64.8574],[-9.83982,9.29411,64.8574],[-9.00837,9.24337,65.7178],[-9.01182,10.2789,64.9465],[-9.01182,10.2789,64.9465],[-9.92741,10.2757,63.972],[-9.83982,9.29411,64.8574],[-9.1411,11.0059,64.2201],[-9.92741,10.2757,63.972],[-9.01182,10.2789,64.9465],[-9.01182,10.2789,64.9465],[-8.36599,11.3126,64.6859],[-9.1411,11.0059,64.2201],[-8.36599,11.3126,64.6859],[-8.76472,11.8285,63.7876],[-9.1411,11.0059,64.2201],[-9.1411,11.0059,64.2201],[-8.76472,11.8285,63.7876],[-9.51422,11.1972,63.6342],[-9.51422,11.1972,63.6342],[-8.76472,11.8285,63.7876],[-9.48429,11.6545,63.1915],[-10.1651,11.0619,62.9188],[-9.51422,11.1972,63.6342],[-9.48429,11.6545,63.1915],[-10.1651,11.0619,62.9188],[-9.48429,11.6545,63.1915],[-9.74388,11.8607,62.6029],[-9.74388,11.8607,62.6029],[-10.3038,11.7056,61.9328],[-10.1651,11.0619,62.9188],[-10.3038,11.7056,61.9328],[-11.0532,10.6647,61.9337],[-10.1651,11.0619,62.9188],[-10.1651,11.0619,62.9188],[-11.0532,10.6647,61.9337],[-10.9155,9.82114,63.0435],[-10.9155,9.82114,63.0435],[-9.92741,10.2757,63.972],[-10.1651,11.0619,62.9188],[-10.6554,9.04795,64.0758],[-9.92741,10.2757,63.972],[-10.9155,9.82114,63.0435],[-9.74388,11.8607,62.6029],[-9.52722,12.5301,61.9654],[-10.3038,11.7056,61.9328],[-10.3038,11.7056,61.9328],[-9.52722,12.5301,61.9654],[-10.2359,12.2615,61.2688],[-9.14455,12.2203,62.9122],[-9.52722,12.5301,61.9654],[-9.74388,11.8607,62.6029],[-8.80565,12.8082,62.538],[-9.52722,12.5301,61.9654],[-9.14455,12.2203,62.9122],[-9.48429,11.6545,63.1915],[-9.14455,12.2203,62.9122],[-9.74388,11.8607,62.6029],[-10.1651,11.0619,62.9188],[-9.92741,10.2757,63.972],[-9.51422,11.1972,63.6342],[-9.48429,11.6545,63.1915],[-8.76472,11.8285,63.7876],[-9.14455,12.2203,62.9122],[-9.14455,12.2203,62.9122],[-8.76472,11.8285,63.7876],[-8.47639,12.5337,63.2829],[-9.51422,11.1972,63.6342],[-9.92741,10.2757,63.972],[-9.1411,11.0059,64.2201],[-9.01182,10.2789,64.9465],[-9.00837,9.24337,65.7178],[-8.33035,10.0469,65.7678],[-8.33035,10.0469,65.7678],[-7.63666,10.9354,65.6195],[-9.01182,10.2789,64.9465],[-7.65455,10.1727,66.2238],[-7.63666,10.9354,65.6195],[-8.33035,10.0469,65.7678],[-7.65455,10.1727,66.2238],[-8.33035,10.0469,65.7678],[-8.23929,9.46811,66.2564],[-7.74632,9.69951,66.4981],[-7.65455,10.1727,66.2238],[-8.23929,9.46811,66.2564],[-7.74632,9.69951,66.4981],[-8.23929,9.46811,66.2564],[-7.81402,9.19488,66.7288],[-7.74632,9.69951,66.4981],[-7.81402,9.19488,66.7288],[-7.21893,9.88878,66.7053],[-7.81402,9.19488,66.7288],[-7.06189,9.23915,67.1733],[-7.21893,9.88878,66.7053],[-7.06189,9.23915,67.1733],[-6.28802,10.0207,67.1248],[-7.21893,9.88878,66.7053],[-7.21893,9.88878,66.7053],[-6.28802,10.0207,67.1248],[-6.99273,10.5242,66.4007],[-7.21893,9.88878,66.7053],[-6.99273,10.5242,66.4007],[-7.65455,10.1727,66.2238],[-6.99273,10.5242,66.4007],[-6.28802,10.0207,67.1248],[-6.26733,10.8468,66.6126],[-6.40868,9.13611,67.6042],[-6.28802,10.0207,67.1248],[-7.06189,9.23915,67.1733],[-7.81402,9.19488,66.7288],[-7.73627,8.41863,67.1399],[-7.06189,9.23915,67.1733],[-8.48243,8.73039,66.4673],[-7.73627,8.41863,67.1399],[-7.81402,9.19488,66.7288],[-8.81582,7.63952,66.6912],[-7.73627,8.41863,67.1399],[-8.48243,8.73039,66.4673],[-8.81582,7.63952,66.6912],[-8.48243,8.73039,66.4673],[-9.17424,8.35313,66.1004],[-8.81582,7.63952,66.6912],[-9.17424,8.35313,66.1004],[-9.62611,7.72048,65.9999],[-9.62611,7.72048,65.9999],[-9.76303,6.80865,66.2218],[-8.81582,7.63952,66.6912],[-9.76303,6.80865,66.2218],[-8.9806,6.34864,67.0162],[-8.81582,7.63952,66.6912],[-8.81582,7.63952,66.6912],[-8.9806,6.34864,67.0162],[-7.74883,7.07412,67.6283],[-7.74883,7.07412,67.6283],[-8.9806,6.34864,67.0162],[-8.21076,5.60554,67.7268],[-7.74883,7.07412,67.6283],[-8.21076,5.60554,67.7268],[-6.98791,6.11145,68.3293],[-8.21076,5.60554,67.7268],[-8.9806,6.34864,67.0162],[-9.30246,5.12957,67.0584],[-8.21076,5.60554,67.7268],[-9.30246,5.12957,67.0584],[-8.6334,4.13354,67.6611],[-8.6334,4.13354,67.6611],[-7.4218,4.71693,68.3482],[-8.21076,5.60554,67.7268],[-7.70543,3.39233,68.295],[-7.4218,4.71693,68.3482],[-8.6334,4.13354,67.6611],[-7.70543,3.39233,68.295],[-8.6334,4.13354,67.6611],[-8.53277,2.87313,67.7771],[-8.53277,2.87313,67.7771],[-7.87601,2.03374,68.1284],[-7.70543,3.39233,68.295],[-7.87601,2.03374,68.1284],[-6.82581,2.60508,68.751],[-7.70543,3.39233,68.295],[-8.53277,2.87313,67.7771],[-8.93784,1.7139,67.3873],[-7.87601,2.03374,68.1284],[-7.87601,2.03374,68.1284],[-8.93784,1.7139,67.3873],[-8.11589,0.554791,67.739],[-7.01063,0.982636,68.4794],[-7.87601,2.03374,68.1284],[-8.11589,0.554791,67.739],[-7.01063,0.982636,68.4794],[-8.11589,0.554791,67.739],[-7.17763,-0.81077,67.9894],[-6.03163,-0.334353,68.7612],[-7.01063,0.982636,68.4794],[-7.17763,-0.81077,67.9894],[-7.17763,-0.81077,67.9894],[-8.11589,0.554791,67.739],[-8.55877,-0.93258,67.0389],[-7.6253,-2.17999,67.2657],[-7.17763,-0.81077,67.9894],[-8.55877,-0.93258,67.0389],[-8.55877,-0.93258,67.0389],[-8.73995,-2.60669,66.2444],[-7.6253,-2.17999,67.2657],[-8.73995,-2.60669,66.2444],[-7.60061,-3.4547,66.7356],[-7.6253,-2.17999,67.2657],[-7.60061,-3.4547,66.7356],[-6.82134,-3.06088,67.4577],[-7.6253,-2.17999,67.2657],[-7.60061,-3.4547,66.7356],[-6.73505,-3.96029,67.0836],[-6.82134,-3.06088,67.4577],[-7.60061,-3.4547,66.7356],[-8.73995,-2.60669,66.2444],[-8.34338,-4.06294,65.8334],[-8.34338,-4.06294,65.8334],[-7.17334,-4.7108,66.3484],[-7.60061,-3.4547,66.7356],[-8.34338,-4.06294,65.8334],[-7.99747,-5.07033,65.5132],[-7.17334,-4.7108,66.3484],[-8.77941,-4.76697,65.0131],[-7.99747,-5.07033,65.5132],[-8.34338,-4.06294,65.8334],[-8.34338,-4.06294,65.8334],[-8.73995,-2.60669,66.2444],[-9.50746,-3.6364,65.0076],[-9.50746,-3.6364,65.0076],[-8.73995,-2.60669,66.2444],[-9.74248,-2.41643,65.5037],[-8.73995,-2.60669,66.2444],[-9.53717,-1.4613,66.1158],[-9.74248,-2.41643,65.5037],[-9.74248,-2.41643,65.5037],[-9.53717,-1.4613,66.1158],[-10.2534,-1.61153,65.3925],[-10.2534,-1.61153,65.3925],[-10.4945,-2.69033,64.563],[-9.74248,-2.41643,65.5037],[-11.0884,-0.5885,64.8791],[-10.4945,-2.69033,64.563],[-10.2534,-1.61153,65.3925],[-10.2534,-1.61153,65.3925],[-10.2156,-0.747066,65.7723],[-11.0884,-0.5885,64.8791],[-10.2156,-0.747066,65.7723],[-10.5201,0.398772,65.8044],[-11.0884,-0.5885,64.8791],[-11.0884,-0.5885,64.8791],[-10.5201,0.398772,65.8044],[-11.3968,0.637693,64.9318],[-11.9503,0.0699003,64.0301],[-11.0884,-0.5885,64.8791],[-11.3968,0.637693,64.9318],[-11.3968,0.637693,64.9318],[-12.0282,1.09989,64.232],[-11.9503,0.0699003,64.0301],[-12.0282,1.09989,64.232],[-12.6495,0.94207,63.2042],[-11.9503,0.0699003,64.0301],[-11.9503,0.0699003,64.0301],[-12.6495,0.94207,63.2042],[-12.5019,-0.429095,63.0075],[-12.5019,-0.429095,63.0075],[-11.817,-1.06153,63.7622],[-11.9503,0.0699003,64.0301],[-12.3122,-1.6464,62.6995],[-11.817,-1.06153,63.7622],[-12.5019,-0.429095,63.0075],[-12.3122,-1.6464,62.6995],[-12.5019,-0.429095,63.0075],[-12.8742,-0.915608,62.1197],[-12.8742,-0.915608,62.1197],[-12.8106,-1.88738,61.6047],[-12.3122,-1.6464,62.6995],[-12.3122,-1.6464,62.6995],[-12.8106,-1.88738,61.6047],[-12.1243,-2.87289,62.1739],[-11.4325,-2.65149,63.3997],[-12.3122,-1.6464,62.6995],[-12.1243,-2.87289,62.1739],[-12.1243,-2.87289,62.1739],[-12.8106,-1.88738,61.6047],[-12.6134,-3.06802,61.0528],[-11.913,-4.04366,61.5252],[-12.1243,-2.87289,62.1739],[-12.6134,-3.06802,61.0528],[-12.3751,-4.14794,60.4398],[-11.913,-4.04366,61.5252],[-12.6134,-3.06802,61.0528],[-11.913,-4.04366,61.5252],[-11.3433,-3.86315,62.6536],[-12.1243,-2.87289,62.1739],[-12.6134,-3.06802,61.0528],[-12.8106,-1.88738,61.6047],[-13.2619,-2.05654,60.3834],[-13.2619,-2.05654,60.3834],[-12.8106,-1.88738,61.6047],[-13.3717,-0.728596,61.086],[-13.3717,-0.728596,61.086],[-13.6877,-1.00326,60.0756],[-13.2619,-2.05654,60.3834],[-13.6877,-1.00326,60.0756],[-13.3717,-0.728596,61.086],[-13.8664,0.00615642,60.1388],[-13.9975,-0.571404,59.2197],[-13.6877,-1.00326,60.0756],[-13.8664,0.00615642,60.1388],[-13.9975,-0.571404,59.2197],[-13.7061,-1.58768,59.4677],[-13.6877,-1.00326,60.0756],[-13.8664,0.00615642,60.1388],[-13.3717,-0.728596,61.086],[-13.6348,0.664743,61.0872],[-13.6348,0.664743,61.0872],[-14.0373,1.20748,60.0482],[-13.8664,0.00615642,60.1388],[-13.6348,0.664743,61.0872],[-13.3717,-0.728596,61.086],[-13.1109,0.152394,62.1099],[-13.6348,0.664743,61.0872],[-13.1109,0.152394,62.1099],[-13.3141,1.45673,62.0633],[-13.3141,1.45673,62.0633],[-13.7854,1.94398,61.0141],[-13.6348,0.664743,61.0872],[-13.3141,1.45673,62.0633],[-13.4226,2.95696,61.9762],[-13.7854,1.94398,61.0141],[-12.9688,2.11775,62.8812],[-13.4226,2.95696,61.9762],[-13.3141,1.45673,62.0633],[-13.3141,1.45673,62.0633],[-12.6495,0.94207,63.2042],[-12.9688,2.11775,62.8812],[-12.9688,2.11775,62.8812],[-12.6495,0.94207,63.2042],[-12.3288,2.23767,63.9323],[-12.8545,3.03851,63.1295],[-12.9688,2.11775,62.8812],[-12.3288,2.23767,63.9323],[-12.3288,2.23767,63.9323],[-12.2772,3.878,63.968],[-12.8545,3.03851,63.1295],[-12.2772,3.878,63.968],[-13.0027,4.05363,62.7682],[-12.8545,3.03851,63.1295],[-13.0027,4.05363,62.7682],[-13.4226,2.95696,61.9762],[-12.8545,3.03851,63.1295],[-12.2772,3.878,63.968],[-12.3288,2.23767,63.9323],[-11.548,2.93725,65.0058],[-11.548,2.93725,65.0058],[-11.289,4.49372,65.1943],[-12.2772,3.878,63.968],[-12.2772,3.878,63.968],[-11.289,4.49372,65.1943],[-11.9708,5.07941,64.2734],[-10.4709,3.15929,66.1692],[-11.289,4.49372,65.1943],[-11.548,2.93725,65.0058],[-10.4709,3.15929,66.1692],[-11.548,2.93725,65.0058],[-11.0596,2.15816,65.5873],[-10.4709,3.15929,66.1692],[-11.0596,2.15816,65.5873],[-10.4626,1.68464,66.1204],[-10.4709,3.15929,66.1692],[-10.4626,1.68464,66.1204],[-9.82086,2.11425,66.7449],[-9.82086,2.11425,66.7449],[-9.3672,3.0205,67.1561],[-10.4709,3.15929,66.1692],[-9.3672,3.0205,67.1561],[-9.64697,4.05282,66.9107],[-10.4709,3.15929,66.1692],[-10.4709,3.15929,66.1692],[-9.64697,4.05282,66.9107],[-10.2469,4.76538,66.2822],[-10.2469,4.76538,66.2822],[-9.64697,4.05282,66.9107],[-9.30246,5.12957,67.0584],[-10.2469,4.76538,66.2822],[-9.30246,5.12957,67.0584],[-9.83648,5.8008,66.48],[-10.2469,4.76538,66.2822],[-9.83648,5.8008,66.48],[-10.6676,5.9393,65.5996],[-10.6676,5.9393,65.5996],[-11.289,4.49372,65.1943],[-10.2469,4.76538,66.2822],[-11.4868,5.65506,64.7811],[-11.289,4.49372,65.1943],[-10.6676,5.9393,65.5996],[-9.83648,5.8008,66.48],[-9.76303,6.80865,66.2218],[-10.6676,5.9393,65.5996],[-9.76303,6.80865,66.2218],[-10.4157,7.40548,65.3342],[-10.6676,5.9393,65.5996],[-10.6676,5.9393,65.5996],[-10.4157,7.40548,65.3342],[-11.2823,6.69596,64.654],[-8.6334,4.13354,67.6611],[-9.64697,4.05282,66.9107],[-9.3672,3.0205,67.1561],[-9.82086,2.11425,66.7449],[-8.93784,1.7139,67.3873],[-9.3672,3.0205,67.1561],[-9.73479,0.989656,66.6589],[-8.93784,1.7139,67.3873],[-9.82086,2.11425,66.7449],[-8.99777,0.398382,67.116],[-8.93784,1.7139,67.3873],[-9.73479,0.989656,66.6589],[-8.99777,0.398382,67.116],[-9.73479,0.989656,66.6589],[-9.60491,-0.257805,66.4661],[-9.60491,-0.257805,66.4661],[-8.55877,-0.93258,67.0389],[-8.99777,0.398382,67.116],[-9.60491,-0.257805,66.4661],[-9.53717,-1.4613,66.1158],[-8.55877,-0.93258,67.0389],[-10.2156,-0.747066,65.7723],[-9.53717,-1.4613,66.1158],[-9.60491,-0.257805,66.4661],[-9.73479,0.989656,66.6589],[-10.5201,0.398772,65.8044],[-9.60491,-0.257805,66.4661],[-10.4626,1.68464,66.1204],[-10.5201,0.398772,65.8044],[-9.73479,0.989656,66.6589],[-11.0344,1.30396,65.5122],[-10.5201,0.398772,65.8044],[-10.4626,1.68464,66.1204],[-10.4626,1.68464,66.1204],[-9.73479,0.989656,66.6589],[-9.82086,2.11425,66.7449],[-11.0596,2.15816,65.5873],[-11.0344,1.30396,65.5122],[-10.4626,1.68464,66.1204],[-11.0596,2.15816,65.5873],[-11.6056,1.71864,64.9036],[-11.0344,1.30396,65.5122],[-11.0344,1.30396,65.5122],[-11.6056,1.71864,64.9036],[-11.3968,0.637693,64.9318],[-11.548,2.93725,65.0058],[-11.6056,1.71864,64.9036],[-11.0596,2.15816,65.5873],[-10.2469,4.76538,66.2822],[-11.289,4.49372,65.1943],[-10.4709,3.15929,66.1692],[-12.3288,2.23767,63.9323],[-11.6056,1.71864,64.9036],[-11.548,2.93725,65.0058],[-12.0282,1.09989,64.232],[-11.6056,1.71864,64.9036],[-12.3288,2.23767,63.9323],[-12.8545,3.03851,63.1295],[-13.4226,2.95696,61.9762],[-12.9688,2.11775,62.8812],[-13.1109,0.152394,62.1099],[-12.6495,0.94207,63.2042],[-13.3141,1.45673,62.0633],[-13.1109,0.152394,62.1099],[-13.3717,-0.728596,61.086],[-12.8742,-0.915608,62.1197],[-12.8742,-0.915608,62.1197],[-13.3717,-0.728596,61.086],[-12.8106,-1.88738,61.6047],[-12.5019,-0.429095,63.0075],[-13.1109,0.152394,62.1099],[-12.8742,-0.915608,62.1197],[-11.4325,-2.65149,63.3997],[-11.817,-1.06153,63.7622],[-12.3122,-1.6464,62.6995],[-11.244,-1.76416,64.1922],[-11.817,-1.06153,63.7622],[-11.4325,-2.65149,63.3997],[-11.0884,-0.5885,64.8791],[-11.817,-1.06153,63.7622],[-11.244,-1.76416,64.1922],[-12.5019,-0.429095,63.0075],[-12.6495,0.94207,63.2042],[-13.1109,0.152394,62.1099],[-12.3288,2.23767,63.9323],[-12.6495,0.94207,63.2042],[-12.0282,1.09989,64.232],[-11.3968,0.637693,64.9318],[-11.6056,1.71864,64.9036],[-12.0282,1.09989,64.232],[-11.9503,0.0699003,64.0301],[-11.817,-1.06153,63.7622],[-11.0884,-0.5885,64.8791],[-11.3968,0.637693,64.9318],[-10.5201,0.398772,65.8044],[-11.0344,1.30396,65.5122],[-9.60491,-0.257805,66.4661],[-10.5201,0.398772,65.8044],[-10.2156,-0.747066,65.7723],[-11.244,-1.76416,64.1922],[-10.4945,-2.69033,64.563],[-11.0884,-0.5885,64.8791],[-10.2534,-1.61153,65.3925],[-9.53717,-1.4613,66.1158],[-10.2156,-0.747066,65.7723],[-8.55877,-0.93258,67.0389],[-9.53717,-1.4613,66.1158],[-8.73995,-2.60669,66.2444],[-7.6253,-2.17999,67.2657],[-6.74741,-2.10599,67.8709],[-7.17763,-0.81077,67.9894],[-8.55877,-0.93258,67.0389],[-8.11589,0.554791,67.739],[-8.99777,0.398382,67.116],[-8.11589,0.554791,67.739],[-8.93784,1.7139,67.3873],[-8.99777,0.398382,67.116],[-9.3672,3.0205,67.1561],[-8.93784,1.7139,67.3873],[-8.53277,2.87313,67.7771],[-8.6334,4.13354,67.6611],[-9.3672,3.0205,67.1561],[-8.53277,2.87313,67.7771],[-9.30246,5.12957,67.0584],[-9.64697,4.05282,66.9107],[-8.6334,4.13354,67.6611],[-9.30246,5.12957,67.0584],[-8.9806,6.34864,67.0162],[-9.83648,5.8008,66.48],[-9.83648,5.8008,66.48],[-8.9806,6.34864,67.0162],[-9.76303,6.80865,66.2218],[-9.62611,7.72048,65.9999],[-10.4157,7.40548,65.3342],[-9.76303,6.80865,66.2218],[-9.78402,8.40672,65.495],[-10.4157,7.40548,65.3342],[-9.62611,7.72048,65.9999],[-9.17424,8.35313,66.1004],[-9.78402,8.40672,65.495],[-9.62611,7.72048,65.9999],[-8.48243,8.73039,66.4673],[-9.00837,9.24337,65.7178],[-9.17424,8.35313,66.1004],[-8.23929,9.46811,66.2564],[-9.00837,9.24337,65.7178],[-8.48243,8.73039,66.4673],[-8.23929,9.46811,66.2564],[-8.48243,8.73039,66.4673],[-7.81402,9.19488,66.7288],[-7.74632,9.69951,66.4981],[-7.21893,9.88878,66.7053],[-7.65455,10.1727,66.2238],[-6.99273,10.5242,66.4007],[-7.63666,10.9354,65.6195],[-7.65455,10.1727,66.2238],[-8.33035,10.0469,65.7678],[-9.00837,9.24337,65.7178],[-8.23929,9.46811,66.2564],[-9.17424,8.35313,66.1004],[-9.00837,9.24337,65.7178],[-9.78402,8.40672,65.495],[-10.3978,8.41439,64.8391],[-10.4157,7.40548,65.3342],[-9.78402,8.40672,65.495],[-9.83982,9.29411,64.8574],[-9.92741,10.2757,63.972],[-10.6554,9.04795,64.0758],[-11.0564,7.88895,64.3378],[-10.4157,7.40548,65.3342],[-10.3978,8.41439,64.8391],[-10.9155,9.82114,63.0435],[-11.4901,8.49124,63.303],[-10.6554,9.04795,64.0758],[-11.8907,9.19509,61.9648],[-11.4901,8.49124,63.303],[-10.9155,9.82114,63.0435],[-11.2823,6.69596,64.654],[-10.4157,7.40548,65.3342],[-11.0564,7.88895,64.3378],[-11.4868,5.65506,64.7811],[-10.6676,5.9393,65.5996],[-11.2823,6.69596,64.654],[-11.9708,5.07941,64.2734],[-11.289,4.49372,65.1943],[-11.4868,5.65506,64.7811],[-11.9708,5.07941,64.2734],[-12.5846,5.26954,63.2285],[-12.2772,3.878,63.968],[-11.9683,6.07743,63.9906],[-11.7957,7.22772,63.6927],[-12.3745,6.50883,63.133],[-12.2772,3.878,63.968],[-12.5846,5.26954,63.2285],[-13.0027,4.05363,62.7682],[-13.4147,4.20734,61.9102],[-13.4226,2.95696,61.9762],[-13.0027,4.05363,62.7682],[-14.0829,3.60067,60.0939],[-14.326,3.1851,59.0611],[-14.1225,2.43302,59.9865],[-14.2301,4.19669,59.3476],[-14.326,3.1851,59.0611],[-14.0829,3.60067,60.0939],[-13.7854,1.94398,61.0141],[-13.4226,2.95696,61.9762],[-13.8781,2.96785,60.8446],[-13.7854,1.94398,61.0141],[-14.0373,1.20748,60.0482],[-13.6348,0.664743,61.0872],[-13.8664,0.00615642,60.1388],[-14.0373,1.20748,60.0482],[-14.1621,0.505181,59.2364],[-13.8664,0.00615642,60.1388],[-14.1621,0.505181,59.2364],[-13.9975,-0.571404,59.2197],[-13.8913,-2.55187,56.8344],[-13.971,-2.04905,57.612],[-14.1789,-1.17912,57.2496],[-13.9498,-1.45337,58.4156],[-13.7061,-1.58768,59.4677],[-13.9975,-0.571404,59.2197],[-13.6877,-1.00326,60.0756],[-13.7061,-1.58768,59.4677],[-13.2619,-2.05654,60.3834],[-13.2619,-2.05654,60.3834],[-12.9273,-3.25147,60.1056],[-12.6134,-3.06802,61.0528],[-12.6134,-3.06802,61.0528],[-12.9273,-3.25147,60.1056],[-12.3751,-4.14794,60.4398],[-11.913,-4.04366,61.5252],[-12.3751,-4.14794,60.4398],[-11.641,-5.13615,60.7803],[-11.1013,-4.99599,61.953],[-11.913,-4.04366,61.5252],[-11.641,-5.13615,60.7803],[-11.1846,-6.89898,58.4588],[-10.0439,-7.9905,59.0237],[-10.418,-7.13812,60.057],[-10.0439,-7.9905,59.0237],[-9.58858,-7.99801,60.1917],[-10.418,-7.13812,60.057],[-10.418,-7.13812,60.057],[-9.58858,-7.99801,60.1917],[-9.4254,-7.35315,61.522],[-9.4254,-7.35315,61.522],[-9.58858,-7.99801,60.1917],[-8.73069,-8.57167,60.675],[-9.12917,-8.71979,59.5116],[-8.73069,-8.57167,60.675],[-9.58858,-7.99801,60.1917],[-9.12917,-8.71979,59.5116],[-8.26279,-9.30496,59.9135],[-8.73069,-8.57167,60.675],[-8.26279,-9.30496,59.9135],[-7.63101,-9.33859,60.9281],[-8.73069,-8.57167,60.675],[-7.63101,-9.33859,60.9281],[-8.09606,-8.53846,61.714],[-8.73069,-8.57167,60.675],[-8.26279,-9.30496,59.9135],[-7.41821,-9.85799,60.0667],[-7.63101,-9.33859,60.9281],[-7.41821,-9.85799,60.0667],[-6.35381,-10.2464,60.7789],[-7.63101,-9.33859,60.9281],[-6.35381,-10.2464,60.7789],[-6.68949,-9.34137,62.1989],[-7.63101,-9.33859,60.9281],[-6.68949,-9.34137,62.1989],[-6.35381,-10.2464,60.7789],[-5.73729,-10.1137,61.9523],[-5.73729,-10.1137,61.9523],[-5.63347,-9.75453,62.7197],[-6.68949,-9.34137,62.1989],[-5.73729,-10.1137,61.9523],[-6.35381,-10.2464,60.7789],[-5.07135,-10.7331,61.3949],[-5.73729,-10.1137,61.9523],[-5.07135,-10.7331,61.3949],[-4.83251,-10.3296,62.46],[-5.07135,-10.7331,61.3949],[-3.83429,-11.0686,61.8768],[-4.83251,-10.3296,62.46],[-4.33932,-11.3226,60.8252],[-3.83429,-11.0686,61.8768],[-5.07135,-10.7331,61.3949],[-4.33932,-11.3226,60.8252],[-5.07135,-10.7331,61.3949],[-5.22406,-11.0803,60.3057],[-4.20807,-11.7207,59.6902],[-4.33932,-11.3226,60.8252],[-5.22406,-11.0803,60.3057],[-4.20807,-11.7207,59.6902],[-5.22406,-11.0803,60.3057],[-5.27336,-11.3444,59.3551],[-5.27336,-11.3444,59.3551],[-4.82428,-11.7185,58.5628],[-4.20807,-11.7207,59.6902],[-4.82428,-11.7185,58.5628],[-3.55713,-12.2267,58.3206],[-4.20807,-11.7207,59.6902],[-4.20807,-11.7207,59.6902],[-3.55713,-12.2267,58.3206],[-2.85244,-12.2216,59.6054],[-4.20807,-11.7207,59.6902],[-2.85244,-12.2216,59.6054],[-3.29486,-11.7386,60.7513],[-2.85244,-12.2216,59.6054],[-1.81521,-12.1526,60.7013],[-3.29486,-11.7386,60.7513],[-1.85534,-12.526,59.4459],[-1.81521,-12.1526,60.7013],[-2.85244,-12.2216,59.6054],[-2.85244,-12.2216,59.6054],[-3.55713,-12.2267,58.3206],[-2.37104,-12.553,58.6312],[-4.51147,-11.9938,57.6987],[-3.55713,-12.2267,58.3206],[-4.82428,-11.7185,58.5628],[-4.51147,-11.9938,57.6987],[-4.82428,-11.7185,58.5628],[-5.27413,-11.6493,57.7808],[-5.01309,-11.8467,56.953],[-4.51147,-11.9938,57.6987],[-5.27413,-11.6493,57.7808],[-5.27413,-11.6493,57.7808],[-5.94841,-11.3607,57.1509],[-5.01309,-11.8467,56.953],[-5.94841,-11.3607,57.1509],[-5.66769,-11.5688,56.2649],[-5.01309,-11.8467,56.953],[-5.01309,-11.8467,56.953],[-5.66769,-11.5688,56.2649],[-4.83065,-11.9594,55.9388],[-5.01309,-11.8467,56.953],[-4.83065,-11.9594,55.9388],[-3.87242,-12.2777,56.8023],[-4.83065,-11.9594,55.9388],[-3.95832,-12.2823,55.4294],[-3.87242,-12.2777,56.8023],[-3.87242,-12.2777,56.8023],[-3.95832,-12.2823,55.4294],[-3.05204,-12.5621,55.9848],[-3.87242,-12.2777,56.8023],[-3.05204,-12.5621,55.9848],[-2.25326,-12.6841,57.1894],[-2.25326,-12.6841,57.1894],[-3.55713,-12.2267,58.3206],[-3.87242,-12.2777,56.8023],[-2.20156,-12.7484,55.7062],[-2.25326,-12.6841,57.1894],[-3.05204,-12.5621,55.9848],[-2.20156,-12.7484,55.7062],[-3.05204,-12.5621,55.9848],[-3.02655,-12.5138,54.7736],[-1.56294,-12.7625,54.5021],[-2.20156,-12.7484,55.7062],[-3.02655,-12.5138,54.7736],[-1.56294,-12.7625,54.5021],[-1.07326,-12.9051,56.0325],[-2.20156,-12.7484,55.7062],[-3.05204,-12.5621,55.9848],[-3.95832,-12.2823,55.4294],[-3.02655,-12.5138,54.7736],[-3.95832,-12.2823,55.4294],[-4.17804,-12.1187,54.1385],[-3.02655,-12.5138,54.7736],[-3.02655,-12.5138,54.7736],[-4.17804,-12.1187,54.1385],[-3.23974,-12.2366,52.9271],[-4.81718,-11.947,54.9074],[-4.17804,-12.1187,54.1385],[-3.95832,-12.2823,55.4294],[-5.43636,-11.5771,53.8132],[-4.17804,-12.1187,54.1385],[-4.81718,-11.947,54.9074],[-4.81718,-11.947,54.9074],[-5.69825,-11.5469,55.2246],[-5.43636,-11.5771,53.8132],[-5.43636,-11.5771,53.8132],[-5.69825,-11.5469,55.2246],[-6.63639,-11.0128,54.374],[-6.63639,-11.0128,54.374],[-6.47891,-10.9925,53.1414],[-5.43636,-11.5771,53.8132],[-6.83302,-10.9136,56.0098],[-6.63639,-11.0128,54.374],[-5.69825,-11.5469,55.2246],[-5.69825,-11.5469,55.2246],[-5.66769,-11.5688,56.2649],[-6.83302,-10.9136,56.0098],[-6.83302,-10.9136,56.0098],[-7.81091,-10.3095,54.6816],[-6.63639,-11.0128,54.374],[-7.81091,-10.3095,54.6816],[-7.50804,-10.408,53.3805],[-6.63639,-11.0128,54.374],[-6.83302,-10.9136,56.0098],[-8.29843,-9.97537,55.8654],[-7.81091,-10.3095,54.6816],[-7.81091,-10.3095,54.6816],[-8.29843,-9.97537,55.8654],[-8.839,-9.58808,54.8138],[-8.839,-9.58808,54.8138],[-8.6517,-9.62791,53.6557],[-7.81091,-10.3095,54.6816],[-8.29843,-9.97537,55.8654],[-9.55009,-8.99661,55.7056],[-8.839,-9.58808,54.8138],[-9.75153,-8.76992,54.2181],[-8.839,-9.58808,54.8138],[-9.55009,-8.99661,55.7056],[-8.87225,-9.47591,56.9644],[-9.55009,-8.99661,55.7056],[-8.29843,-9.97537,55.8654],[-8.87225,-9.47591,56.9644],[-8.29843,-9.97537,55.8654],[-7.75217,-10.274,57.0976],[-7.75217,-10.274,57.0976],[-8.31285,-9.74295,58.1071],[-8.87225,-9.47591,56.9644],[-8.87225,-9.47591,56.9644],[-8.31285,-9.74295,58.1071],[-9.33832,-8.8967,58.1676],[-8.87225,-9.47591,56.9644],[-9.33832,-8.8967,58.1676],[-9.79244,-8.71038,56.9276],[-9.33832,-8.8967,58.1676],[-10.3938,-8.00366,57.6458],[-9.79244,-8.71038,56.9276],[-9.79244,-8.71038,56.9276],[-10.3938,-8.00366,57.6458],[-10.6428,-7.94384,56.2094],[-9.55009,-8.99661,55.7056],[-9.79244,-8.71038,56.9276],[-10.6428,-7.94384,56.2094],[-10.6428,-7.94384,56.2094],[-10.3938,-8.00366,57.6458],[-11.1565,-7.29587,57.133],[-9.33832,-8.8967,58.1676],[-10.0439,-7.9905,59.0237],[-10.3938,-8.00366,57.6458],[-9.12917,-8.71979,59.5116],[-10.0439,-7.9905,59.0237],[-9.33832,-8.8967,58.1676],[-9.12917,-8.71979,59.5116],[-9.33832,-8.8967,58.1676],[-8.60893,-9.3346,58.9805],[-9.33832,-8.8967,58.1676],[-8.31285,-9.74295,58.1071],[-8.60893,-9.3346,58.9805],[-8.60893,-9.3346,58.9805],[-8.31285,-9.74295,58.1071],[-7.82371,-9.86892,59.1416],[-7.82371,-9.86892,59.1416],[-8.26279,-9.30496,59.9135],[-8.60893,-9.3346,58.9805],[-7.82371,-9.86892,59.1416],[-8.31285,-9.74295,58.1071],[-7.28449,-10.414,58.2769],[-7.82371,-9.86892,59.1416],[-7.28449,-10.414,58.2769],[-6.83909,-10.4218,59.4243],[-6.83909,-10.4218,59.4243],[-7.41821,-9.85799,60.0667],[-7.82371,-9.86892,59.1416],[-7.28449,-10.414,58.2769],[-6.04197,-11.1168,58.4662],[-6.83909,-10.4218,59.4243],[-6.83909,-10.4218,59.4243],[-6.04197,-11.1168,58.4662],[-5.97124,-10.874,59.682],[-5.97124,-10.874,59.682],[-6.35381,-10.2464,60.7789],[-6.83909,-10.4218,59.4243],[-5.22406,-11.0803,60.3057],[-6.35381,-10.2464,60.7789],[-5.97124,-10.874,59.682],[-5.97124,-10.874,59.682],[-6.04197,-11.1168,58.4662],[-5.27336,-11.3444,59.3551],[-6.78541,-10.8569,57.4034],[-6.04197,-11.1168,58.4662],[-7.28449,-10.414,58.2769],[-6.78541,-10.8569,57.4034],[-7.28449,-10.414,58.2769],[-7.75217,-10.274,57.0976],[-6.83302,-10.9136,56.0098],[-6.78541,-10.8569,57.4034],[-7.75217,-10.274,57.0976],[-6.83302,-10.9136,56.0098],[-5.94841,-11.3607,57.1509],[-6.78541,-10.8569,57.4034],[-5.94841,-11.3607,57.1509],[-6.04197,-11.1168,58.4662],[-6.78541,-10.8569,57.4034],[-7.28449,-10.414,58.2769],[-8.31285,-9.74295,58.1071],[-7.75217,-10.274,57.0976],[-9.79244,-8.71038,56.9276],[-9.55009,-8.99661,55.7056],[-8.87225,-9.47591,56.9644],[-7.75217,-10.274,57.0976],[-8.29843,-9.97537,55.8654],[-6.83302,-10.9136,56.0098],[-4.81718,-11.947,54.9074],[-4.83065,-11.9594,55.9388],[-5.69825,-11.5469,55.2246],[-4.58659,-11.8304,52.964],[-4.17804,-12.1187,54.1385],[-5.43636,-11.5771,53.8132],[-4.81718,-11.947,54.9074],[-3.95832,-12.2823,55.4294],[-4.83065,-11.9594,55.9388],[-4.83065,-11.9594,55.9388],[-5.66769,-11.5688,56.2649],[-5.69825,-11.5469,55.2246],[-6.83302,-10.9136,56.0098],[-5.66769,-11.5688,56.2649],[-5.94841,-11.3607,57.1509],[-5.27413,-11.6493,57.7808],[-6.04197,-11.1168,58.4662],[-5.94841,-11.3607,57.1509],[-3.87242,-12.2777,56.8023],[-4.51147,-11.9938,57.6987],[-5.01309,-11.8467,56.953],[-4.82428,-11.7185,58.5628],[-6.04197,-11.1168,58.4662],[-5.27413,-11.6493,57.7808],[-3.87242,-12.2777,56.8023],[-3.55713,-12.2267,58.3206],[-4.51147,-11.9938,57.6987],[-5.27336,-11.3444,59.3551],[-6.04197,-11.1168,58.4662],[-4.82428,-11.7185,58.5628],[-5.22406,-11.0803,60.3057],[-5.97124,-10.874,59.682],[-5.27336,-11.3444,59.3551],[-3.29486,-11.7386,60.7513],[-4.33932,-11.3226,60.8252],[-4.20807,-11.7207,59.6902],[-3.29486,-11.7386,60.7513],[-3.83429,-11.0686,61.8768],[-4.33932,-11.3226,60.8252],[-2.68192,-11.5816,61.657],[-3.83429,-11.0686,61.8768],[-3.29486,-11.7386,60.7513],[-5.07135,-10.7331,61.3949],[-6.35381,-10.2464,60.7789],[-5.22406,-11.0803,60.3057],[-6.83909,-10.4218,59.4243],[-6.35381,-10.2464,60.7789],[-7.41821,-9.85799,60.0667],[-7.41821,-9.85799,60.0667],[-8.26279,-9.30496,59.9135],[-7.82371,-9.86892,59.1416],[-8.60893,-9.3346,58.9805],[-8.26279,-9.30496,59.9135],[-9.12917,-8.71979,59.5116],[-9.58858,-7.99801,60.1917],[-10.0439,-7.9905,59.0237],[-9.12917,-8.71979,59.5116],[-10.3938,-8.00366,57.6458],[-10.0439,-7.9905,59.0237],[-11.1846,-6.89898,58.4588],[-12.1407,-5.09202,59.6685],[-11.9149,-5.83271,58.8839],[-11.3703,-6.10037,59.8436],[-10.3938,-8.00366,57.6458],[-11.1846,-6.89898,58.4588],[-11.1565,-7.29587,57.133],[-10.6428,-7.94384,56.2094],[-11.1565,-7.29587,57.133],[-11.6085,-6.85845,56.1618],[-10.6428,-7.94384,56.2094],[-10.4447,-8.18809,55.0476],[-9.55009,-8.99661,55.7056],[-9.55009,-8.99661,55.7056],[-10.4447,-8.18809,55.0476],[-9.75153,-8.76992,54.2181],[-9.75153,-8.76992,54.2181],[-8.6517,-9.62791,53.6557],[-8.839,-9.58808,54.8138],[-7.81091,-10.3095,54.6816],[-8.6517,-9.62791,53.6557],[-7.50804,-10.408,53.3805],[-7.50804,-10.408,53.3805],[-6.47891,-10.9925,53.1414],[-6.63639,-11.0128,54.374],[-5.43636,-11.5771,53.8132],[-6.47891,-10.9925,53.1414],[-5.66243,-11.2134,52.0495],[-7.85761,-9.62734,50.8273],[-6.63771,-10.4878,51.03],[-7.09094,-10.4577,52.1118],[-5.43636,-11.5771,53.8132],[-5.66243,-11.2134,52.0495],[-4.58659,-11.8304,52.964],[-3.23974,-12.2366,52.9271],[-4.17804,-12.1187,54.1385],[-4.58659,-11.8304,52.964],[-1.04998,-12.5354,52.1466],[-1.67501,-12.5778,52.9372],[-2.18086,-12.2866,51.7329],[-1.04998,-12.5354,52.1466],[-2.18086,-12.2866,51.7329],[-1.098,-12.2315,50.823],[-1.098,-12.2315,50.823],[0.0523565,-12.5051,51.7947],[-1.04998,-12.5354,52.1466],[-0.262058,-12.7487,53.3767],[-1.04998,-12.5354,52.1466],[0.0523565,-12.5051,51.7947],[1.37997,-12.5917,52.6983],[-0.262058,-12.7487,53.3767],[0.0523565,-12.5051,51.7947],[0.0523565,-12.5051,51.7947],[1.32842,-12.2922,51.0794],[1.37997,-12.5917,52.6983],[1.32842,-12.2922,51.0794],[0.0523565,-12.5051,51.7947],[0.162913,-12.2224,50.5532],[0.162913,-12.2224,50.5532],[0.0523565,-12.5051,51.7947],[-1.098,-12.2315,50.823],[-0.484332,-11.8982,49.5163],[0.162913,-12.2224,50.5532],[-1.098,-12.2315,50.823],[-0.484332,-11.8982,49.5163],[-1.098,-12.2315,50.823],[-1.59703,-11.8591,49.6309],[-0.484332,-11.8982,49.5163],[-1.59703,-11.8591,49.6309],[-1.43537,-11.4308,48.3689],[-1.43537,-11.4308,48.3689],[0.126264,-11.4535,48.2053],[-0.484332,-11.8982,49.5163],[-0.484332,-11.8982,49.5163],[0.126264,-11.4535,48.2053],[1.08543,-11.8734,49.5027],[-1.59703,-11.8591,49.6309],[-1.098,-12.2315,50.823],[-2.43135,-11.9116,50.3398],[0.162913,-12.2224,50.5532],[-0.484332,-11.8982,49.5163],[1.08543,-11.8734,49.5027],[-2.43135,-11.9116,50.3398],[-1.098,-12.2315,50.823],[-2.18086,-12.2866,51.7329],[-3.23974,-12.2366,52.9271],[-1.56294,-12.7625,54.5021],[-3.02655,-12.5138,54.7736],[-1.67501,-12.5778,52.9372],[-1.04998,-12.5354,52.1466],[-0.262058,-12.7487,53.3767],[-1.56294,-12.7625,54.5021],[-0.227792,-12.9226,54.9721],[-1.07326,-12.9051,56.0325],[0.553395,-12.9561,57.6778],[1.66618,-12.8627,57.3335],[1.13155,-12.842,58.4355],[0.0167946,-12.826,58.7446],[0.553395,-12.9561,57.6778],[1.13155,-12.842,58.4355],[1.66618,-12.8627,57.3335],[2.23526,-12.5937,58.8741],[1.13155,-12.842,58.4355],[1.05803,-12.6427,59.5061],[1.13155,-12.842,58.4355],[2.23526,-12.5937,58.8741],[0.553395,-12.9561,57.6778],[0.0167946,-12.826,58.7446],[-0.59464,-12.9194,57.4364],[-1.07326,-12.9051,56.0325],[-0.227792,-12.9226,54.9721],[0.41997,-12.9799,56.4152],[-1.07326,-12.9051,56.0325],[-2.25326,-12.6841,57.1894],[-2.20156,-12.7484,55.7062],[-2.37104,-12.553,58.6312],[-3.55713,-12.2267,58.3206],[-2.25326,-12.6841,57.1894],[-1.85534,-12.526,59.4459],[-2.85244,-12.2216,59.6054],[-2.37104,-12.553,58.6312],[-0.895994,-12.6033,59.6772],[-1.81521,-12.1526,60.7013],[-1.85534,-12.526,59.4459],[-0.457191,-12.38,60.6613],[-1.81521,-12.1526,60.7013],[-0.895994,-12.6033,59.6772],[-0.59464,-12.9194,57.4364],[0.0167946,-12.826,58.7446],[-1.32698,-12.7525,58.5278],[1.05803,-12.6427,59.5061],[0.0167946,-12.826,58.7446],[1.13155,-12.842,58.4355],[1.05803,-12.6427,59.5061],[2.17422,-12.2283,60.3446],[0.646291,-12.3835,60.6109],[-0.457191,-12.38,60.6613],[-0.895994,-12.6033,59.6772],[0.0774649,-12.6266,59.8653],[0.923625,-11.9343,61.6379],[0.0634468,-12.1222,61.4234],[0.646291,-12.3835,60.6109],[-0.774117,-12.0261,61.5153],[-1.81521,-12.1526,60.7013],[-0.457191,-12.38,60.6613],[-3.29486,-11.7386,60.7513],[-1.81521,-12.1526,60.7013],[-2.68192,-11.5816,61.657],[-2.77974,-11.0101,62.7194],[-3.83429,-11.0686,61.8768],[-2.68192,-11.5816,61.657],[-1.66222,-11.5935,62.1294],[-1.05773,-11.2293,63.0514],[-1.81832,-10.7202,63.622],[-1.81832,-10.7202,63.622],[-1.05773,-11.2293,63.0514],[-0.733025,-10.7763,63.8171],[-1.24338,-10.1825,64.5252],[-1.81832,-10.7202,63.622],[-0.733025,-10.7763,63.8171],[-1.24338,-10.1825,64.5252],[-2.32588,-9.92748,64.499],[-1.81832,-10.7202,63.622],[-2.32588,-9.92748,64.499],[-1.24338,-10.1825,64.5252],[-1.65814,-9.41527,65.2952],[-2.32588,-9.92748,64.499],[-1.65814,-9.41527,65.2952],[-2.63581,-9.15898,65.2427],[-3.70052,-9.43469,64.4316],[-2.32588,-9.92748,64.499],[-2.63581,-9.15898,65.2427],[-3.42851,-8.33847,65.6956],[-3.70052,-9.43469,64.4316],[-2.63581,-9.15898,65.2427],[-3.42851,-8.33847,65.6956],[-2.63581,-9.15898,65.2427],[-2.06656,-8.47953,66.0844],[-2.06656,-8.47953,66.0844],[-2.71959,-7.60024,66.6262],[-3.42851,-8.33847,65.6956],[-2.71959,-7.60024,66.6262],[-3.84376,-6.53265,66.9719],[-3.42851,-8.33847,65.6956],[-3.84376,-6.53265,66.9719],[-4.72809,-7.56804,65.8007],[-3.42851,-8.33847,65.6956],[-4.72809,-7.56804,65.8007],[-4.51428,-8.47687,65.0818],[-3.42851,-8.33847,65.6956],[-4.72809,-7.56804,65.8007],[-5.51471,-7.98556,64.9936],[-4.51428,-8.47687,65.0818],[-5.51471,-7.98556,64.9936],[-5.15866,-8.86073,64.274],[-4.51428,-8.47687,65.0818],[-5.15866,-8.86073,64.274],[-3.70052,-9.43469,64.4316],[-4.51428,-8.47687,65.0818],[-4.72809,-7.56804,65.8007],[-5.71236,-7.25311,65.5516],[-5.51471,-7.98556,64.9936],[-5.71236,-7.25311,65.5516],[-6.48877,-7.33181,64.9397],[-5.51471,-7.98556,64.9936],[-6.48877,-7.33181,64.9397],[-6.37531,-8.21178,64.0994],[-5.51471,-7.98556,64.9936],[-7.52689,-7.12558,64.2079],[-6.37531,-8.21178,64.0994],[-6.48877,-7.33181,64.9397],[-7.77472,-7.92101,63.0016],[-6.37531,-8.21178,64.0994],[-7.52689,-7.12558,64.2079],[-5.71236,-7.25311,65.5516],[-6.39454,-6.58663,65.6394],[-6.48877,-7.33181,64.9397],[-5.34824,-6.61222,66.2359],[-6.39454,-6.58663,65.6394],[-5.71236,-7.25311,65.5516],[-4.72809,-7.56804,65.8007],[-5.34824,-6.61222,66.2359],[-5.71236,-7.25311,65.5516],[-4.72809,-7.56804,65.8007],[-3.84376,-6.53265,66.9719],[-5.34824,-6.61222,66.2359],[-5.34824,-6.61222,66.2359],[-3.84376,-6.53265,66.9719],[-5.17164,-5.79216,66.8879],[-6.22075,-5.73741,66.3387],[-5.34824,-6.61222,66.2359],[-5.17164,-5.79216,66.8879],[-5.17164,-5.79216,66.8879],[-3.84376,-6.53265,66.9719],[-4.5499,-5.16909,67.5537],[-5.8746,-4.72938,67.1478],[-5.17164,-5.79216,66.8879],[-4.5499,-5.16909,67.5537],[-3.84376,-6.53265,66.9719],[-3.40873,-5.40281,67.8944],[-4.5499,-5.16909,67.5537],[-3.40873,-5.40281,67.8944],[-3.94102,-4.48111,68.187],[-4.5499,-5.16909,67.5537],[-3.94102,-4.48111,68.187],[-5.03982,-3.83232,68.0162],[-4.5499,-5.16909,67.5537],[-3.74257,-3.2975,68.7514],[-5.03982,-3.83232,68.0162],[-3.94102,-4.48111,68.187],[-3.94102,-4.48111,68.187],[-2.94414,-4.51014,68.4997],[-3.74257,-3.2975,68.7514],[-3.74257,-3.2975,68.7514],[-2.94414,-4.51014,68.4997],[-2.3293,-3.49921,69.0662],[-4.98432,-2.38871,68.62],[-5.03982,-3.83232,68.0162],[-3.74257,-3.2975,68.7514],[-3.92685,-1.70921,69.2266],[-4.98432,-2.38871,68.62],[-3.74257,-3.2975,68.7514],[-3.40873,-5.40281,67.8944],[-2.94414,-4.51014,68.4997],[-3.94102,-4.48111,68.187],[-2.47784,-5.39075,68.1919],[-2.94414,-4.51014,68.4997],[-3.40873,-5.40281,67.8944],[-2.47784,-5.39075,68.1919],[-3.40873,-5.40281,67.8944],[-2.72936,-6.07421,67.7105],[-1.5982,-6.02154,67.9822],[-2.47784,-5.39075,68.1919],[-2.72936,-6.07421,67.7105],[-2.72936,-6.07421,67.7105],[-2.35058,-6.85452,67.2938],[-1.5982,-6.02154,67.9822],[-2.35058,-6.85452,67.2938],[-1.28907,-7.12471,67.3412],[-1.5982,-6.02154,67.9822],[-1.5982,-6.02154,67.9822],[-1.28907,-7.12471,67.3412],[-0.56186,-6.51574,67.8191],[-0.56186,-6.51574,67.8191],[-0.120027,-5.23434,68.522],[-1.5982,-6.02154,67.9822],[0.419101,-6.58513,67.8104],[-0.120027,-5.23434,68.522],[-0.56186,-6.51574,67.8191],[0.419101,-6.58513,67.8104],[-0.56186,-6.51574,67.8191],[-0.241606,-7.47024,67.1825],[0.894521,-7.59052,67.0881],[0.419101,-6.58513,67.8104],[-0.241606,-7.47024,67.1825],[0.894521,-7.59052,67.0881],[1.53286,-6.67591,67.7059],[0.419101,-6.58513,67.8104],[1.53286,-6.67591,67.7059],[1.07473,-5.87056,68.2347],[0.419101,-6.58513,67.8104],[1.07473,-5.87056,68.2347],[-0.120027,-5.23434,68.522],[0.419101,-6.58513,67.8104],[-0.56186,-6.51574,67.8191],[-1.28907,-7.12471,67.3412],[-0.241606,-7.47024,67.1825],[-0.241606,-7.47024,67.1825],[-1.28907,-7.12471,67.3412],[-1.06876,-8.07965,66.635],[-1.06876,-8.07965,66.635],[0.140677,-8.70094,66.151],[-0.241606,-7.47024,67.1825],[0.140677,-8.70094,66.151],[-1.06876,-8.07965,66.635],[-1.05443,-8.89476,65.9267],[-0.617995,-9.60585,65.2682],[0.140677,-8.70094,66.151],[-1.05443,-8.89476,65.9267],[-0.617995,-9.60585,65.2682],[-1.05443,-8.89476,65.9267],[-1.65814,-9.41527,65.2952],[-1.05443,-8.89476,65.9267],[-2.06656,-8.47953,66.0844],[-1.65814,-9.41527,65.2952],[0.392165,-9.84937,65.0013],[0.140677,-8.70094,66.151],[-0.617995,-9.60585,65.2682],[-1.06876,-8.07965,66.635],[-2.06656,-8.47953,66.0844],[-1.05443,-8.89476,65.9267],[-2.06656,-8.47953,66.0844],[-1.06876,-8.07965,66.635],[-1.90164,-7.65355,66.8435],[-1.06876,-8.07965,66.635],[-1.28907,-7.12471,67.3412],[-1.90164,-7.65355,66.8435],[-1.90164,-7.65355,66.8435],[-1.28907,-7.12471,67.3412],[-2.35058,-6.85452,67.2938],[-1.90164,-7.65355,66.8435],[-2.35058,-6.85452,67.2938],[-2.71959,-7.60024,66.6262],[-2.72936,-6.07421,67.7105],[-3.84376,-6.53265,66.9719],[-2.35058,-6.85452,67.2938],[-1.5982,-6.02154,67.9822],[-1.73185,-4.75587,68.6313],[-2.47784,-5.39075,68.1919],[-1.73185,-4.75587,68.6313],[-2.94414,-4.51014,68.4997],[-2.47784,-5.39075,68.1919],[-3.40873,-5.40281,67.8944],[-3.84376,-6.53265,66.9719],[-2.72936,-6.07421,67.7105],[-2.35058,-6.85452,67.2938],[-3.84376,-6.53265,66.9719],[-2.71959,-7.60024,66.6262],[-2.06656,-8.47953,66.0844],[-1.90164,-7.65355,66.8435],[-2.71959,-7.60024,66.6262],[-4.51428,-8.47687,65.0818],[-3.70052,-9.43469,64.4316],[-3.42851,-8.33847,65.6956],[-1.65814,-9.41527,65.2952],[-2.06656,-8.47953,66.0844],[-2.63581,-9.15898,65.2427],[-1.24338,-10.1825,64.5252],[-0.617995,-9.60585,65.2682],[-1.65814,-9.41527,65.2952],[-0.617995,-9.60585,65.2682],[-1.24338,-10.1825,64.5252],[-0.349342,-10.2878,64.5267],[-2.32588,-9.92748,64.499],[-2.88879,-10.3436,63.7166],[-1.81832,-10.7202,63.622],[-3.81094,-10.3589,63.1477],[-3.83429,-11.0686,61.8768],[-2.77974,-11.0101,62.7194],[-2.32588,-9.92748,64.499],[-3.70052,-9.43469,64.4316],[-2.88879,-10.3436,63.7166],[-4.83251,-10.3296,62.46],[-3.83429,-11.0686,61.8768],[-3.81094,-10.3589,63.1477],[-5.63347,-9.75453,62.7197],[-5.73729,-10.1137,61.9523],[-4.83251,-10.3296,62.46],[-4.85488,-9.6849,63.4411],[-3.70052,-9.43469,64.4316],[-5.15866,-8.86073,64.274],[-5.51471,-7.98556,64.9936],[-6.37531,-8.21178,64.0994],[-5.15866,-8.86073,64.274],[-6.68949,-9.34137,62.1989],[-5.63347,-9.75453,62.7197],[-5.93848,-9.1279,63.3521],[-6.73179,-8.69426,63.2015],[-6.37531,-8.21178,64.0994],[-7.77472,-7.92101,63.0016],[-6.68949,-9.34137,62.1989],[-8.09606,-8.53846,61.714],[-7.63101,-9.33859,60.9281],[-8.73069,-8.57167,60.675],[-8.09606,-8.53846,61.714],[-9.4254,-7.35315,61.522],[-9.4254,-7.35315,61.522],[-10.7176,-6.14747,61.139],[-10.418,-7.13812,60.057],[-11.641,-5.13615,60.7803],[-10.7176,-6.14747,61.139],[-11.1013,-4.99599,61.953],[-11.1013,-4.99599,61.953],[-11.3433,-3.86315,62.6536],[-11.913,-4.04366,61.5252],[-12.1243,-2.87289,62.1739],[-11.3433,-3.86315,62.6536],[-11.4325,-2.65149,63.3997],[-11.4325,-2.65149,63.3997],[-10.4945,-2.69033,64.563],[-11.244,-1.76416,64.1922],[-9.74248,-2.41643,65.5037],[-10.4945,-2.69033,64.563],[-9.50746,-3.6364,65.0076],[-10.5494,-3.78236,63.7774],[-10.5927,-4.73141,62.9849],[-9.56958,-5.05262,63.9252],[-8.34338,-4.06294,65.8334],[-9.50746,-3.6364,65.0076],[-8.77941,-4.76697,65.0131],[-8.22141,-5.88516,64.6767],[-7.99747,-5.07033,65.5132],[-8.77941,-4.76697,65.0131],[-8.82513,-6.5752,63.3333],[-9.56958,-5.05262,63.9252],[-10.0949,-5.84633,62.5052],[-7.52689,-7.12558,64.2079],[-8.82513,-6.5752,63.3333],[-7.77472,-7.92101,63.0016],[-7.52689,-7.12558,64.2079],[-6.48877,-7.33181,64.9397],[-7.21614,-6.58196,65.0293],[-7.24292,-5.79494,65.6031],[-7.99747,-5.07033,65.5132],[-8.22141,-5.88516,64.6767],[-6.48877,-7.33181,64.9397],[-6.39454,-6.58663,65.6394],[-7.21614,-6.58196,65.0293],[-6.22075,-5.73741,66.3387],[-6.39454,-6.58663,65.6394],[-5.34824,-6.61222,66.2359],[-7.17334,-4.7108,66.3484],[-7.99747,-5.07033,65.5132],[-7.24292,-5.79494,65.6031],[-5.8746,-4.72938,67.1478],[-6.22075,-5.73741,66.3387],[-5.17164,-5.79216,66.8879],[-7.17334,-4.7108,66.3484],[-6.73505,-3.96029,67.0836],[-7.60061,-3.4547,66.7356],[-5.03982,-3.83232,68.0162],[-5.8746,-4.72938,67.1478],[-4.5499,-5.16909,67.5537],[-6.82134,-3.06088,67.4577],[-6.73505,-3.96029,67.0836],[-6.10781,-3.70786,67.5775],[-6.82134,-3.06088,67.4577],[-6.74741,-2.10599,67.8709],[-7.6253,-2.17999,67.2657],[-7.17763,-0.81077,67.9894],[-6.74741,-2.10599,67.8709],[-6.0228,-1.58332,68.4225],[-5.97102,-2.80706,68.0296],[-5.03982,-3.83232,68.0162],[-4.98432,-2.38871,68.62],[-3.92685,-1.70921,69.2266],[-5.04886,-0.943982,69.0331],[-4.98432,-2.38871,68.62],[-6.03163,-0.334353,68.7612],[-7.17763,-0.81077,67.9894],[-6.0228,-1.58332,68.4225],[-5.04886,-0.943982,69.0331],[-3.90847,0.0897292,69.6441],[-5.25116,0.330096,69.2439],[-6.03163,-0.334353,68.7612],[-6.03833,0.708044,68.9792],[-7.01063,0.982636,68.4794],[-7.01063,0.982636,68.4794],[-6.82581,2.60508,68.751],[-7.87601,2.03374,68.1284],[-7.70543,3.39233,68.295],[-6.82581,2.60508,68.751],[-6.77002,3.85776,68.7801],[-6.77002,3.85776,68.7801],[-7.4218,4.71693,68.3482],[-7.70543,3.39233,68.295],[-8.21076,5.60554,67.7268],[-7.4218,4.71693,68.3482],[-6.98791,6.11145,68.3293],[-4.95779,4.4439,69.4803],[-4.67999,5.70311,69.3878],[-6.06156,5.03537,68.9572],[-4.58563,7.3562,69.0335],[-4.3174,8.18392,68.8138],[-5.13443,7.82579,68.6838],[-4.3174,8.18392,68.8138],[-5.09613,8.74548,68.3231],[-5.13443,7.82579,68.6838],[-3.93859,9.05876,68.5439],[-5.09613,8.74548,68.3231],[-4.3174,8.18392,68.8138],[-3.33909,8.42105,68.9651],[-3.93859,9.05876,68.5439],[-4.3174,8.18392,68.8138],[-4.37779,9.71227,68.0989],[-5.09613,8.74548,68.3231],[-3.93859,9.05876,68.5439],[-4.37779,9.71227,68.0989],[-3.93859,9.05876,68.5439],[-3.63236,9.7825,68.2799],[-5.13443,7.82579,68.6838],[-5.09613,8.74548,68.3231],[-5.88636,7.92763,68.3512],[-5.75998,6.80418,68.7384],[-6.63713,7.22407,68.2362],[-6.98791,6.11145,68.3293],[-6.98791,6.11145,68.3293],[-6.63713,7.22407,68.2362],[-7.74883,7.07412,67.6283],[-7.74883,7.07412,67.6283],[-7.73627,8.41863,67.1399],[-8.81582,7.63952,66.6912],[-7.06189,9.23915,67.1733],[-7.73627,8.41863,67.1399],[-6.89192,8.715,67.5592],[-6.40868,9.13611,67.6042],[-7.06189,9.23915,67.1733],[-6.89192,8.715,67.5592],[-6.51097,8.6733,67.7968],[-6.7687,8.04468,67.8923],[-5.98936,8.7354,67.9932],[-5.69551,9.33226,67.8111],[-6.28802,10.0207,67.1248],[-6.40868,9.13611,67.6042],[-5.88636,7.92763,68.3512],[-5.09613,8.74548,68.3231],[-5.98936,8.7354,67.9932],[-4.95638,10.2172,67.6014],[-6.28802,10.0207,67.1248],[-5.69551,9.33226,67.8111],[-5.03197,9.52227,67.9813],[-5.09613,8.74548,68.3231],[-4.37779,9.71227,68.0989],[-5.6403,10.8488,66.9198],[-6.28802,10.0207,67.1248],[-4.95638,10.2172,67.6014],[-4.37698,10.8642,67.4156],[-5.05545,11.4226,66.759],[-5.01638,10.8539,67.1938],[-6.26733,10.8468,66.6126],[-6.28802,10.0207,67.1248],[-5.6403,10.8488,66.9198],[-6.78881,11.2249,66.0091],[-6.99273,10.5242,66.4007],[-6.26733,10.8468,66.6126],[-6.30315,11.284,66.2789],[-5.81204,11.316,66.5044],[-6.28238,11.7159,65.9038],[-5.81204,11.316,66.5044],[-5.48524,11.963,66.1111],[-6.28238,11.7159,65.9038],[-6.28238,11.7159,65.9038],[-6.05614,12.5048,65.2562],[-6.89617,11.7486,65.4641],[-6.78881,11.2249,66.0091],[-7.63666,10.9354,65.6195],[-6.99273,10.5242,66.4007],[-9.01182,10.2789,64.9465],[-7.63666,10.9354,65.6195],[-8.36599,11.3126,64.6859],[-7.97542,11.9847,64.4031],[-8.76472,11.8285,63.7876],[-8.36599,11.3126,64.6859],[-7.96671,12.5278,63.7901],[-8.76472,11.8285,63.7876],[-7.97542,11.9847,64.4031],[-7.32804,12.57,64.3208],[-7.96671,12.5278,63.7901],[-7.97542,11.9847,64.4031],[-7.46989,12.1664,64.6673],[-7.6187,11.709,64.9789],[-6.9565,12.3284,64.8703],[-6.7035,12.8324,64.4878],[-7.27584,13.1869,63.5974],[-7.32804,12.57,64.3208],[-6.89617,11.7486,65.4641],[-6.05614,12.5048,65.2562],[-6.9565,12.3284,64.8703],[-6.60963,13.336,63.9603],[-7.27584,13.1869,63.5974],[-6.7035,12.8324,64.4878],[-6.64912,13.7158,63.4308],[-7.27584,13.1869,63.5974],[-6.60963,13.336,63.9603],[-6.68949,14.0714,62.8927],[-6.52517,14.529,62.294],[-7.19938,14.0324,62.4557],[-6.52517,14.529,62.294],[-7.23734,14.4283,61.748],[-7.19938,14.0324,62.4557],[-7.23734,14.4283,61.748],[-8.01095,13.8247,61.8839],[-7.19938,14.0324,62.4557],[-7.19938,14.0324,62.4557],[-8.01095,13.8247,61.8839],[-7.63834,13.5108,62.8035],[-7.08701,13.722,63.0516],[-7.27584,13.1869,63.5974],[-6.64912,13.7158,63.4308],[-7.32804,12.57,64.3208],[-7.27584,13.1869,63.5974],[-7.96671,12.5278,63.7901],[-8.47639,12.5337,63.2829],[-8.76472,11.8285,63.7876],[-7.96671,12.5278,63.7901],[-8.80565,12.8082,62.538],[-9.14455,12.2203,62.9122],[-8.47639,12.5337,63.2829],[-8.39473,12.8971,62.9106],[-7.98179,12.9668,63.2336],[-8.30437,13.234,62.5054],[-8.78207,13.2026,61.9601],[-9.52722,12.5301,61.9654],[-8.80565,12.8082,62.538],[-9.24265,13.1681,61.3999],[-9.52722,12.5301,61.9654],[-8.78207,13.2026,61.9601],[-7.63834,13.5108,62.8035],[-8.01095,13.8247,61.8839],[-8.30437,13.234,62.5054],[-9.24265,13.1681,61.3999],[-8.78207,13.2026,61.9601],[-8.75031,13.5856,61.3737],[-9.14036,13.4957,60.9972],[-9.01872,13.7965,60.5615],[-9.49611,13.3856,60.5968],[-9.85188,12.8368,60.9828],[-9.52722,12.5301,61.9654],[-9.24265,13.1681,61.3999],[-9.43209,13.7159,59.9871],[-10.0823,13.0843,60.0266],[-9.49611,13.3856,60.5968],[-9.84734,13.5956,59.4124],[-10.0823,13.0843,60.0266],[-9.43209,13.7159,59.9871],[-10.2359,12.2615,61.2688],[-9.52722,12.5301,61.9654],[-9.85188,12.8368,60.9828],[-10.956,11.6089,60.8427],[-10.3038,11.7056,61.9328],[-10.2359,12.2615,61.2688],[-10.4349,12.4542,60.5591],[-10.0823,13.0843,60.0266],[-10.9346,12.2896,59.6061],[-10.956,11.6089,60.8427],[-11.0532,10.6647,61.9337],[-10.3038,11.7056,61.9328],[-10.9155,9.82114,63.0435],[-11.0532,10.6647,61.9337],[-11.8907,9.19509,61.9648],[-12.267,7.64453,62.5992],[-11.4901,8.49124,63.303],[-11.8907,9.19509,61.9648],[-12.267,7.64453,62.5992],[-12.9802,6.25329,62.0266],[-12.3745,6.50883,63.133],[-13.1491,4.98466,62.2811],[-12.9802,6.25329,62.0266],[-13.5099,5.09143,61.3644],[-13.5099,5.09143,61.3644],[-13.9382,4.87796,60.16],[-13.7475,3.9461,61.0802],[-14.0829,3.60067,60.0939],[-13.9382,4.87796,60.16],[-14.2301,4.19669,59.3476],[-14.393,4.19586,58.356],[-14.326,3.1851,59.0611],[-14.2301,4.19669,59.3476],[-14.1225,2.43302,59.9865],[-14.326,3.1851,59.0611],[-14.3335,1.7281,58.7935],[-14.3335,1.7281,58.7935],[-14.5104,1.66759,57.5955],[-14.3062,0.193149,57.9382],[-14.3062,0.193149,57.9382],[-14.5104,1.66759,57.5955],[-14.5402,1.17731,56.6644],[-14.6111,2.11868,55.864],[-14.5421,1.03956,55.469],[-14.5402,1.17731,56.6644],[-14.5098,2.96695,57.7094],[-14.5781,3.35073,56.1751],[-14.6001,2.26514,56.8124],[-14.5625,1.96425,54.8032],[-14.5421,1.03956,55.469],[-14.6111,2.11868,55.864],[-14.4687,2.91866,54.0511],[-14.4336,1.74063,53.719],[-14.5625,1.96425,54.8032],[-13.6029,2.91146,49.993],[-13.9384,2.54966,51.073],[-13.8625,3.61965,51.0461],[-14.0159,1.53798,51.4599],[-13.9384,2.54966,51.073],[-13.7823,1.90639,50.4846],[-14.2037,2.74881,52.4234],[-14.4336,1.74063,53.719],[-14.4687,2.91866,54.0511],[-14.5039,1.10357,54.5088],[-14.4336,1.74063,53.719],[-14.3824,0.682305,53.7978],[-14.3824,0.682305,53.7978],[-14.1231,-0.558852,53.2858],[-14.3989,0.135222,54.7119],[-14.2302,1.04611,52.7305],[-14.0159,1.53798,51.4599],[-13.9533,0.17456,51.6835],[-13.9533,0.17456,51.6835],[-14.0159,1.53798,51.4599],[-13.697,0.759705,50.4283],[-13.697,0.759705,50.4283],[-13.5915,-0.549013,50.5688],[-13.9533,0.17456,51.6835],[-13.5915,-0.549013,50.5688],[-13.7596,-1.17279,51.7042],[-13.9533,0.17456,51.6835],[-14.3989,0.135222,54.7119],[-14.1231,-0.558852,53.2858],[-14.1979,-1.14726,54.9914],[-14.1655,-1.54142,56.1719],[-14.1979,-1.14726,54.9914],[-13.91,-2.47618,55.5169],[-13.5343,-3.10335,53.3303],[-13.5947,-3.26405,54.5261],[-13.908,-2.10803,54.0485],[-13.1065,-4.30907,54.0173],[-13.5947,-3.26405,54.5261],[-13.5343,-3.10335,53.3303],[-13.5343,-3.10335,53.3303],[-13.155,-3.84608,52.7231],[-13.1065,-4.30907,54.0173],[-13.8913,-2.55187,56.8344],[-13.91,-2.47618,55.5169],[-13.6892,-3.23098,56.3264],[-13.6659,-2.86386,57.875],[-13.971,-2.04905,57.612],[-13.8913,-2.55187,56.8344],[-13.6659,-2.86386,57.875],[-13.179,-3.85692,58.2724],[-13.3962,-2.76482,59.1507],[-13.179,-3.85692,58.2724],[-12.5516,-4.95045,58.5737],[-12.7992,-4.05139,59.3875],[-11.9149,-5.83271,58.8839],[-12.5516,-4.95045,58.5737],[-12.1479,-5.83397,57.8063],[-12.1479,-5.83397,57.8063],[-12.408,-5.68741,56.3445],[-11.7438,-6.55729,57.1912],[-13.4968,-3.54516,57.1949],[-13.2095,-4.24333,55.7098],[-12.8867,-4.72386,57.3287],[-13.2095,-4.24333,55.7098],[-13.5947,-3.26405,54.5261],[-13.1065,-4.30907,54.0173],[-12.6333,-4.8958,52.7817],[-12.4497,-5.56084,54.0321],[-13.1065,-4.30907,54.0173],[-12.7235,-5.2136,55.0471],[-12.1179,-6.19461,55.1176],[-12.408,-5.68741,56.3445],[-11.3049,-7.25171,54.9691],[-12.1179,-6.19461,55.1176],[-11.8721,-6.48123,54.202],[-12.6333,-4.8958,52.7817],[-11.8879,-6.19403,53.037],[-12.4497,-5.56084,54.0321],[-11.8721,-6.48123,54.202],[-11.3655,-7.08589,53.8685],[-11.3049,-7.25171,54.9691],[-10.7574,-7.81853,54.2045],[-11.3655,-7.08589,53.8685],[-10.7435,-7.61037,52.9875],[-10.4512,-7.69815,51.8852],[-9.55821,-8.6897,52.5211],[-10.7435,-7.61037,52.9875],[-9.55821,-8.6897,52.5211],[-8.95069,-8.9848,51.4223],[-8.29728,-9.68623,52.3218],[-8.29728,-9.68623,52.3218],[-8.95069,-8.9848,51.4223],[-7.85761,-9.62734,50.8273],[-6.63771,-10.4878,51.03],[-7.85761,-9.62734,50.8273],[-6.6611,-10.0303,49.603],[-6.89601,-6.94578,44.3686],[-6.36761,-7.69769,44.7563],[-7.44422,-7.34581,45.4932],[-7.82633,-6.06362,44.454],[-6.89601,-6.94578,44.3686],[-7.44422,-7.34581,45.4932],[-8.50636,-6.38251,45.5434],[-7.82633,-6.06362,44.454],[-7.44422,-7.34581,45.4932],[-5.94687,-7.18779,43.8412],[-6.36761,-7.69769,44.7563],[-6.89601,-6.94578,44.3686],[-5.94687,-7.18779,43.8412],[-6.89601,-6.94578,44.3686],[-6.69849,-6.1767,43.5144],[-6.10125,-8.57384,45.8412],[-5.08792,-9.68621,46.8051],[-6.32328,-9.25464,47.2074],[-4.47718,-9.11758,45.3305],[-3.09106,-9.23884,44.7258],[-3.36161,-10.2113,46.5626],[-6.32328,-9.25464,47.2074],[-5.08792,-9.68621,46.8051],[-5.79321,-9.99731,48.1844],[-6.6611,-10.0303,49.603],[-5.79321,-9.99731,48.1844],[-5.20327,-10.739,49.4366],[-5.20327,-10.739,49.4366],[-4.72504,-11.3417,50.7839],[-5.82364,-10.8116,50.575],[-4.34833,-11.7551,51.9864],[-4.72504,-11.3417,50.7839],[-3.45886,-11.8667,51.2125],[-3.45886,-11.8667,51.2125],[-2.43135,-11.9116,50.3398],[-2.18086,-12.2866,51.7329],[-2.43135,-11.9116,50.3398],[-2.42165,-11.5735,49.1745],[-1.59703,-11.8591,49.6309],[-4.34699,-10.5684,48.0557],[-2.88045,-11.054,48.0956],[-3.66008,-11.348,49.5527],[-1.59703,-11.8591,49.6309],[-2.42165,-11.5735,49.1745],[-1.43537,-11.4308,48.3689],[-0.69969,-10.9395,46.9932],[0.126264,-11.4535,48.2053],[-1.43537,-11.4308,48.3689],[0.753864,-10.8945,46.8621],[0.126264,-11.4535,48.2053],[-0.69969,-10.9395,46.9932],[1.55708,-11.3486,48.0571],[0.126264,-11.4535,48.2053],[0.753864,-10.8945,46.8621],[-3.36161,-10.2113,46.5626],[-1.98451,-10.8678,47.1626],[-2.88045,-11.054,48.0956],[-0.69969,-10.9395,46.9932],[-1.51941,-10.4055,46.0818],[-0.101808,-10.2346,45.5268],[0.753864,-10.8945,46.8621],[-0.69969,-10.9395,46.9932],[-0.101808,-10.2346,45.5268],[1.93856,-9.51894,44.5354],[2.83799,-10.0557,45.699],[1.41903,-10.2642,45.656],[3.70824,-10.5497,47.1178],[2.83799,-10.0557,45.699],[4.18261,-9.71054,45.7224],[3.70824,-10.5497,47.1178],[4.18261,-9.71054,45.7224],[4.92584,-9.98728,46.7163],[3.70824,-10.5497,47.1178],[4.92584,-9.98728,46.7163],[5.06974,-10.4839,48.0103],[4.92584,-9.98728,46.7163],[6.01789,-9.67693,47.1131],[5.06974,-10.4839,48.0103],[5.43433,-9.23702,45.7888],[4.92584,-9.98728,46.7163],[4.18261,-9.71054,45.7224],[3.713,-11.2565,48.9268],[2.7374,-11.1617,47.9758],[3.70824,-10.5497,47.1178],[1.55708,-11.3486,48.0571],[0.753864,-10.8945,46.8621],[2.19676,-10.7727,46.8782],[3.713,-11.2565,48.9268],[2.35126,-11.5687,48.9202],[2.7374,-11.1617,47.9758],[1.08543,-11.8734,49.5027],[0.126264,-11.4535,48.2053],[1.55708,-11.3486,48.0571],[3.713,-11.2565,48.9268],[2.55924,-11.8886,50.1301],[2.35126,-11.5687,48.9202],[1.08543,-11.8734,49.5027],[1.32842,-12.2922,51.0794],[0.162913,-12.2224,50.5532],[1.37997,-12.5917,52.6983],[1.32842,-12.2922,51.0794],[2.77658,-12.2356,51.734],[-0.262058,-12.7487,53.3767],[1.37997,-12.5917,52.6983],[1.32061,-12.8223,54.504],[1.32061,-12.8223,54.504],[2.76641,-12.6918,55.4134],[1.56186,-12.9232,55.9319],[2.76641,-12.6918,55.4134],[3.8346,-12.4731,56.2094],[3.48934,-12.4888,57.4373],[6.20511,-11.484,56.7916],[7.2,-10.8469,57.6064],[5.76331,-11.5144,58.2072],[4.3673,-12.1079,58.3186],[5.76331,-11.5144,58.2072],[4.74874,-11.6161,59.8223],[3.8346,-12.4731,56.2094],[4.88029,-12.0555,56.9004],[3.48934,-12.4888,57.4373],[2.23526,-12.5937,58.8741],[1.66618,-12.8627,57.3335],[3.48934,-12.4888,57.4373],[3.36889,-12.4224,58.5611],[4.3673,-12.1079,58.3186],[3.33546,-12.2004,59.5428],[2.17422,-12.2283,60.3446],[1.05803,-12.6427,59.5061],[2.23526,-12.5937,58.8741],[4.3673,-12.1079,58.3186],[4.74874,-11.6161,59.8223],[3.33546,-12.2004,59.5428],[4.39663,-11.3362,61.1596],[4.74874,-11.6161,59.8223],[5.36995,-11.048,60.8232],[5.17497,-10.7248,61.8022],[4.15739,-10.9013,62.2992],[4.39663,-11.3362,61.1596],[4.15739,-10.9013,62.2992],[3.95664,-10.3191,63.3975],[3.15864,-10.8851,62.8882],[3.15864,-10.8851,62.8882],[2.78355,-10.2484,63.9781],[1.58682,-11.017,63.1742],[1.58682,-11.017,63.1742],[2.78355,-10.2484,63.9781],[1.50595,-10.1309,64.4989],[3.32518,-11.4876,61.5975],[2.17422,-12.2283,60.3446],[3.5971,-11.8418,60.5236],[2.17422,-12.2283,60.3446],[0.923625,-11.9343,61.6379],[0.646291,-12.3835,60.6109],[0.923625,-11.9343,61.6379],[-0.00213181,-11.5434,62.5319],[0.0634468,-12.1222,61.4234],[-1.05773,-11.2293,63.0514],[-0.00213181,-11.5434,62.5319],[-0.733025,-10.7763,63.8171],[-0.349342,-10.2878,64.5267],[-1.24338,-10.1825,64.5252],[-0.733025,-10.7763,63.8171],[0.392165,-9.84937,65.0013],[-0.617995,-9.60585,65.2682],[-0.349342,-10.2878,64.5267],[1.58682,-11.017,63.1742],[1.50595,-10.1309,64.4989],[0.406362,-10.6841,63.9346],[2.78355,-10.2484,63.9781],[2.53066,-9.16667,65.3456],[1.50595,-10.1309,64.4989],[1.23666,-9.32038,65.4896],[0.140677,-8.70094,66.151],[0.392165,-9.84937,65.0013],[0.140677,-8.70094,66.151],[0.894521,-7.59052,67.0881],[-0.241606,-7.47024,67.1825],[2.81997,-7.85124,66.5366],[1.59838,-8.4018,66.3236],[2.53066,-9.16667,65.3456],[1.53286,-6.67591,67.7059],[0.894521,-7.59052,67.0881],[1.94565,-7.44728,67.0887],[1.07473,-5.87056,68.2347],[1.53286,-6.67591,67.7059],[1.99207,-5.8075,68.1747],[1.52658,-4.83955,68.6901],[1.07473,-5.87056,68.2347],[1.99207,-5.8075,68.1747],[4.18878,-7.07345,66.7505],[2.84033,-6.47726,67.5575],[2.81997,-7.85124,66.5366],[5.63794,-5.1302,67.4681],[4.39417,-5.2428,67.8523],[5.21718,-6.04311,67.0964],[5.36997,-6.78047,66.5133],[4.18878,-7.07345,66.7505],[4.92156,-7.70225,65.9714],[5.36997,-6.78047,66.5133],[4.92156,-7.70225,65.9714],[5.98589,-7.18221,65.8499],[5.98589,-7.18221,65.8499],[6.41552,-7.71618,65.098],[7.17466,-6.81838,65.3472],[7.7738,-5.69732,65.7743],[7.17466,-6.81838,65.3472],[8.35483,-6.2431,64.8714],[7.79702,-4.46392,66.497],[7.7738,-5.69732,65.7743],[8.90021,-5.03327,65.2857],[7.7129,-2.70864,67.3765],[6.54271,-4.21994,67.4426],[7.79702,-4.46392,66.497],[6.46402,-5.8087,66.571],[5.63794,-5.1302,67.4681],[5.21718,-6.04311,67.0964],[5.63794,-5.1302,67.4681],[5.40441,-4.22618,68.0152],[4.39417,-5.2428,67.8523],[6.00433,-2.84105,68.2911],[6.54271,-4.21994,67.4426],[7.7129,-2.70864,67.3765],[4.39417,-5.2428,67.8523],[5.40441,-4.22618,68.0152],[4.25883,-3.57616,68.6562],[3.42122,-2.08388,69.4183],[1.94973,-2.28126,69.6341],[2.49464,-3.53759,69.0988],[2.93708,-4.95364,68.4009],[4.39417,-5.2428,67.8523],[4.25883,-3.57616,68.6562],[2.93708,-4.95364,68.4009],[1.52658,-4.83955,68.6901],[1.99207,-5.8075,68.1747],[1.52658,-4.83955,68.6901],[-0.120027,-5.23434,68.522],[1.07473,-5.87056,68.2347],[-1.5982,-6.02154,67.9822],[-0.120027,-5.23434,68.522],[-1.73185,-4.75587,68.6313],[-2.3293,-3.49921,69.0662],[-2.94414,-4.51014,68.4997],[-1.73185,-4.75587,68.6313],[-2.3293,-3.49921,69.0662],[-2.91833,-2.40521,69.3308],[-3.74257,-3.2975,68.7514],[-3.74257,-3.2975,68.7514],[-2.91833,-2.40521,69.3308],[-3.92685,-1.70921,69.2266],[-3.92685,-1.70921,69.2266],[-3.90847,0.0897292,69.6441],[-5.04886,-0.943982,69.0331],[-5.25116,0.330096,69.2439],[-3.90847,0.0897292,69.6441],[-4.75474,1.32362,69.5707],[-4.91515,2.38685,69.5888],[-5.75087,1.8655,69.2216],[-4.75474,1.32362,69.5707],[-4.91515,2.38685,69.5888],[-5.7017,3.39582,69.2653],[-5.75087,1.8655,69.2216],[-5.7017,3.39582,69.2653],[-4.95779,4.4439,69.4803],[-6.06156,5.03537,68.9572],[-3.17976,3.31688,70.0719],[-4.41651,3.35261,69.7343],[-3.81087,1.92947,69.8916],[-3.78426,4.60858,69.82],[-4.67999,5.70311,69.3878],[-4.95779,4.4439,69.4803],[-4.82094,6.66889,69.1588],[-4.67999,5.70311,69.3878],[-4.17214,6.71325,69.3385],[-3.24516,5.51004,69.8455],[-2.79262,6.09102,69.8213],[-3.67099,6.05033,69.626],[-3.76791,7.55277,69.1898],[-4.17214,6.71325,69.3385],[-3.28801,6.84808,69.5179],[-3.76791,7.55277,69.1898],[-3.33909,8.42105,68.9651],[-4.3174,8.18392,68.8138],[-2.78562,7.68963,69.3506],[-1.57461,7.76009,69.5174],[-2.29803,8.56286,69.1123],[-3.33909,8.42105,68.9651],[-2.88295,9.37607,68.6439],[-3.93859,9.05876,68.5439],[-3.93859,9.05876,68.5439],[-2.88295,9.37607,68.6439],[-3.63236,9.7825,68.2799],[-3.98264,10.3318,67.8735],[-4.37779,9.71227,68.0989],[-3.63236,9.7825,68.2799],[-3.98264,10.3318,67.8735],[-3.57196,10.9657,67.5952],[-4.37698,10.8642,67.4156],[-3.57196,10.9657,67.5952],[-4.02304,11.6224,66.9891],[-4.37698,10.8642,67.4156],[-2.8874,11.1489,67.6516],[-2.83868,11.9031,67.1108],[-3.57196,10.9657,67.5952],[-2.13486,11.3632,67.6427],[-2.83868,11.9031,67.1108],[-2.8874,11.1489,67.6516],[-2.2589,9.94357,68.4805],[-1.38009,10.614,68.2107],[-3.00898,10.3533,68.1029],[-1.18064,11.6355,67.5787],[-0.747924,12.3941,67.0543],[-1.45074,12.2545,67.1173],[-0.747924,12.3941,67.0543],[-1.30673,12.8233,66.6667],[-1.45074,12.2545,67.1173],[-1.45074,12.2545,67.1173],[-1.30673,12.8233,66.6667],[-2.04837,12.4911,66.8295],[-1.93888,11.9239,67.2945],[-2.83868,11.9031,67.1108],[-2.13486,11.3632,67.6427],[-3.57196,10.9657,67.5952],[-2.83868,11.9031,67.1108],[-4.02304,11.6224,66.9891],[-4.02304,11.6224,66.9891],[-5.05545,11.4226,66.759],[-4.37698,10.8642,67.4156],[-5.81204,11.316,66.5044],[-5.05545,11.4226,66.759],[-5.48524,11.963,66.1111],[-5.48524,11.963,66.1111],[-6.05614,12.5048,65.2562],[-6.28238,11.7159,65.9038],[-5.78693,13.5352,64.2579],[-6.05614,12.5048,65.2562],[-5.21219,13.1723,65.0543],[-5.21219,13.1723,65.0543],[-4.68307,13.8972,64.4879],[-5.78693,13.5352,64.2579],[-5.78693,13.5352,64.2579],[-4.68307,13.8972,64.4879],[-5.24809,14.24,63.7117],[-4.43044,13.2403,65.3887],[-4.68307,13.8972,64.4879],[-5.21219,13.1723,65.0543],[-4.60087,12.1329,66.3752],[-4.2798,12.7137,65.9962],[-5.02564,12.6284,65.7287],[-4.2798,12.7137,65.9962],[-3.69515,12.3938,66.4804],[-3.59086,13.1383,65.8293],[-2.78788,12.8257,66.3592],[-2.5904,13.7768,65.49],[-3.59086,13.1383,65.8293],[-3.69267,13.8423,65.0366],[-4.68307,13.8972,64.4879],[-4.43044,13.2403,65.3887],[-5.24809,14.24,63.7117],[-4.68307,13.8972,64.4879],[-4.50877,14.6616,63.5713],[-5.24809,14.24,63.7117],[-5.9978,14.2527,63.1603],[-5.78693,13.5352,64.2579],[-6.52517,14.529,62.294],[-5.9978,14.2527,63.1603],[-5.83234,14.8163,62.421],[-6.09158,15.0265,61.8351],[-6.52517,14.529,62.294],[-5.83234,14.8163,62.421],[-6.09158,15.0265,61.8351],[-6.6633,14.9104,61.4842],[-6.52517,14.529,62.294],[-5.21189,14.7532,62.9818],[-4.35899,15.3732,62.54],[-5.36281,15.3717,61.8027],[-3.01282,16.7112,60.6924],[-3.91118,16.6953,60.0493],[-3.78916,16.3316,61.0835],[-4.50292,16.2802,60.6266],[-5.35108,15.8591,60.7997],[-4.52902,15.89,61.4687],[-4.90518,16.4631,59.6748],[-5.80238,16.3145,58.8564],[-5.59453,16.0952,59.9281],[-6.08385,15.3655,61.1649],[-5.35108,15.8591,60.7997],[-6.26666,15.6281,60.3422],[-6.08385,15.3655,61.1649],[-6.6633,14.9104,61.4842],[-6.09158,15.0265,61.8351],[-6.52517,14.529,62.294],[-6.6633,14.9104,61.4842],[-7.23734,14.4283,61.748],[-7.72981,14.3993,61.2335],[-8.01095,13.8247,61.8839],[-7.23734,14.4283,61.748],[-7.98092,14.6058,60.4469],[-8.37426,14.0996,60.9075],[-7.72981,14.3993,61.2335],[-7.61859,14.6961,60.8166],[-7.24359,14.7632,61.1362],[-7.45745,14.9574,60.4261],[-7.83114,14.9454,59.7973],[-8.67935,14.3287,59.8765],[-7.98092,14.6058,60.4469],[-6.80146,15.1912,60.7461],[-7.08501,15.343,59.955],[-7.45745,14.9574,60.4261],[-7.08501,15.343,59.955],[-6.6817,15.7563,59.3392],[-7.42945,15.4161,59.051],[-8.27456,14.9148,58.9301],[-8.67935,14.3287,59.8765],[-7.83114,14.9454,59.7973],[-6.7949,15.9334,58.3967],[-7.81888,15.4613,57.8123],[-7.42945,15.4161,59.051],[-9.0247,14.4344,58.8702],[-8.67935,14.3287,59.8765],[-8.27456,14.9148,58.9301],[-9.384,14.0093,59.3769],[-8.67935,14.3287,59.8765],[-9.0247,14.4344,58.8702],[-9.84734,13.5956,59.4124],[-9.43209,13.7159,59.9871],[-9.384,14.0093,59.3769],[-9.73679,13.8644,59.0047],[-9.5968,14.0862,58.6172],[-10.0281,13.7092,58.5702],[-10.4386,13.1326,58.9716],[-10.0823,13.0843,60.0266],[-9.84734,13.5956,59.4124],[-9.83381,14.0155,57.9913],[-10.4952,13.3817,57.8481],[-10.0281,13.7092,58.5702],[-10.9346,12.2896,59.6061],[-10.0823,13.0843,60.0266],[-10.4386,13.1326,58.9716],[-11.6206,11.7221,58.7262],[-11.7116,11.1629,59.6972],[-10.9346,12.2896,59.6061],[-12.3357,10.6342,58.4418],[-11.7116,11.1629,59.6972],[-11.6206,11.7221,58.7262],[-11.8334,11.7445,57.511],[-12.3357,10.6342,58.4418],[-11.6206,11.7221,58.7262],[-11.1152,12.535,58.3139],[-10.4952,13.3817,57.8481],[-11.1852,12.7175,57.1522],[-11.8334,11.7445,57.511],[-12.4441,10.8386,57.1704],[-12.3357,10.6342,58.4418],[-12.3621,10.0661,59.6921],[-11.7116,11.1629,59.6972],[-12.3357,10.6342,58.4418],[-11.8094,10.3477,60.8008],[-12.3621,10.0661,59.6921],[-12.566,9.10926,60.5278],[-12.566,9.10926,60.5278],[-13.1447,7.92646,60.303],[-12.7038,8.05712,61.383],[-13.5517,6.22081,60.5897],[-13.1447,7.92646,60.303],[-13.653,7.1356,59.3245],[-13.4518,8.61935,57.3078],[-13.0938,8.87512,58.8821],[-12.9392,9.79532,57.3082],[-13.4518,8.61935,57.3078],[-13.2809,9.17466,55.8564],[-13.8388,7.63514,56.4803],[-13.2809,9.17466,55.8564],[-13.8146,7.59638,54.8046],[-13.8388,7.63514,56.4803],[-13.8388,7.63514,56.4803],[-13.8146,7.59638,54.8046],[-14.1898,6.33865,55.7027],[-13.7741,7.50663,57.9718],[-14.0643,6.24584,58.499],[-13.653,7.1356,59.3245],[-14.1942,5.12965,58.9779],[-14.0643,6.24584,58.499],[-14.3283,5.31592,57.8295],[-14.1535,6.42834,57.2126],[-13.8388,7.63514,56.4803],[-14.1898,6.33865,55.7027],[-14.4856,4.37535,57.0928],[-14.3283,5.31592,57.8295],[-14.3707,5.48245,56.7197],[-14.4856,4.37535,57.0928],[-14.5781,3.35073,56.1751],[-14.5098,2.96695,57.7094],[-14.585,2.85822,55.1501],[-14.5781,3.35073,56.1751],[-14.4955,3.88103,54.8221],[-14.4428,4.87747,55.6886],[-14.1898,6.33865,55.7027],[-14.2947,5.66531,54.7633],[-14.2947,5.66531,54.7633],[-14.1898,6.33865,55.7027],[-14.0739,6.52264,54.2592],[-14.1882,5.588,53.7186],[-14.2947,5.66531,54.7633],[-14.0739,6.52264,54.2592],[-14.2817,4.28578,53.3903],[-14.4955,3.88103,54.8221],[-14.3794,4.88499,54.4755],[-14.2817,4.28578,53.3903],[-13.9218,5.5921,52.3452],[-14.0334,4.25906,52.0036],[-13.9606,6.41828,53.2002],[-14.1882,5.588,53.7186],[-14.0739,6.52264,54.2592],[-14.1898,6.33865,55.7027],[-13.8146,7.59638,54.8046],[-14.0739,6.52264,54.2592],[-13.431,8.71901,54.4749],[-13.8146,7.59638,54.8046],[-13.2809,9.17466,55.8564],[-12.6825,10.4942,56.1402],[-12.7725,10.2521,54.915],[-13.2809,9.17466,55.8564],[-12.7725,10.2521,54.915],[-12.1582,11.3671,55.1689],[-12.4098,10.6122,53.5243],[-12.8524,9.45064,52.774],[-13.3705,8.47883,53.3704],[-13.0522,9.48861,53.9832],[-13.4777,7.79619,52.6158],[-13.7654,7.32597,53.4126],[-13.3705,8.47883,53.3704],[-13.6705,6.90615,52.3904],[-13.7654,7.32597,53.4126],[-13.4777,7.79619,52.6158],[-13.3661,6.50833,50.968],[-13.9218,5.5921,52.3452],[-13.6705,6.90615,52.3904],[-12.2389,10.2071,51.7568],[-11.9369,9.32137,49.5706],[-12.9082,8.36287,51.3783],[-10.5993,10.0469,47.517],[-10.9224,8.84868,47.0237],[-11.4631,9.08996,48.16],[-10.5993,10.0469,47.517],[-10.0989,9.70941,46.498],[-10.9224,8.84868,47.0237],[-10.9224,8.84868,47.0237],[-10.0989,9.70941,46.498],[-10.2743,8.57101,45.9456],[-10.9224,8.84868,47.0237],[-10.2743,8.57101,45.9456],[-11.1426,7.50577,46.5098],[-11.1426,7.50577,46.5098],[-10.2743,8.57101,45.9456],[-10.3458,7.5488,45.4581],[-11.1426,7.50577,46.5098],[-10.3458,7.5488,45.4581],[-10.8358,6.34391,45.5178],[-10.2743,8.57101,45.9456],[-9.48451,8.27159,44.8977],[-10.3458,7.5488,45.4581],[-10.3458,7.5488,45.4581],[-9.48451,8.27159,44.8977],[-9.80388,6.93611,44.5981],[-9.4005,9.41455,45.4739],[-9.48451,8.27159,44.8977],[-10.2743,8.57101,45.9456],[-8.75841,9.14623,44.6836],[-9.48451,8.27159,44.8977],[-9.4005,9.41455,45.4739],[-9.48451,8.27159,44.8977],[-8.75841,9.14623,44.6836],[-8.56892,8.49461,44.1963],[-8.75841,9.14623,44.6836],[-7.95253,9.36565,44.1708],[-8.56892,8.49461,44.1963],[-7.95253,9.36565,44.1708],[-8.75841,9.14623,44.6836],[-8.25428,10.1005,44.8405],[-7.95253,9.36565,44.1708],[-8.25428,10.1005,44.8405],[-7.53285,10.176,44.3394],[-12.2263,7.45526,48.3427],[-12.0526,8.25335,48.6246],[-11.6785,8.02929,47.6703],[-12.0526,8.25335,48.6246],[-12.2263,7.45526,48.3427],[-12.679,7.33444,49.5012],[-13.0552,5.71039,49.4387],[-13.3661,6.50833,50.968],[-12.679,7.33444,49.5012],[-11.9842,6.91235,47.5543],[-12.4277,5.60267,47.8511],[-12.516,6.62912,48.5036],[-13.0552,5.71039,49.4387],[-13.447,4.23474,49.8542],[-13.6624,5.00589,50.9168],[-13.6029,2.91146,49.993],[-13.447,4.23474,49.8542],[-13.267,3.57604,49.1342],[-13.0078,1.679,48.3931],[-13.4324,1.73335,49.4891],[-13.2048,2.67107,48.8714],[-13.9384,2.54966,51.073],[-13.6029,2.91146,49.993],[-13.7823,1.90639,50.4846],[-13.697,0.759705,50.4283],[-14.0159,1.53798,51.4599],[-13.7823,1.90639,50.4846],[-13.0718,0.443042,48.7533],[-13.4324,1.73335,49.4891],[-13.0078,1.679,48.3931],[-13.4188,-0.113421,49.7846],[-13.5915,-0.549013,50.5688],[-13.697,0.759705,50.4283],[-13.3256,-1.88302,50.5767],[-13.7596,-1.17279,51.7042],[-13.5915,-0.549013,50.5688],[-13.3256,-1.88302,50.5767],[-13.2336,-2.80177,51.1672],[-13.5348,-2.17392,51.6074],[-13.5348,-2.17392,51.6074],[-13.2336,-2.80177,51.1672],[-13.3886,-2.97875,52.1251],[-13.3886,-2.97875,52.1251],[-13.155,-3.84608,52.7231],[-13.5343,-3.10335,53.3303],[-13.1065,-4.30907,54.0173],[-13.155,-3.84608,52.7231],[-12.6333,-4.8958,52.7817],[-11.9932,-5.57224,51.5608],[-11.8879,-6.19403,53.037],[-12.6333,-4.8958,52.7817],[-12.8523,-3.07346,50.2534],[-12.2642,-4.25114,49.9831],[-12.8596,-3.89166,51.4807],[-11.7916,-5.32499,50.2916],[-11.9932,-5.57224,51.5608],[-12.2803,-4.77082,50.8],[-12.2811,-3.34095,48.9894],[-11.557,-4.84382,48.9908],[-12.2642,-4.25114,49.9831],[-12.2811,-3.34095,48.9894],[-11.5855,-3.95772,47.9622],[-11.557,-4.84382,48.9908],[-11.5855,-3.95772,47.9622],[-11.0656,-4.87172,47.8643],[-11.557,-4.84382,48.9908],[-10.6508,-5.81582,48.3058],[-11.557,-4.84382,48.9908],[-11.0656,-4.87172,47.8643],[-11.0656,-4.87172,47.8643],[-10.3588,-5.33763,47.1194],[-10.6508,-5.81582,48.3058],[-9.70932,-6.48774,47.4976],[-10.6508,-5.81582,48.3058],[-10.3588,-5.33763,47.1194],[-10.6508,-5.81582,48.3058],[-9.70932,-6.48774,47.4976],[-9.96339,-6.97476,48.7764],[-11.0656,-4.87172,47.8643],[-10.951,-4.2762,47.0353],[-10.3588,-5.33763,47.1194],[-10.3588,-5.33763,47.1194],[-10.951,-4.2762,47.0353],[-10.0751,-4.50468,45.888],[-11.5855,-3.95772,47.9622],[-10.951,-4.2762,47.0353],[-11.0656,-4.87172,47.8643],[-11.5855,-3.95772,47.9622],[-11.4448,-3.42971,47.1816],[-10.951,-4.2762,47.0353],[-11.4448,-3.42971,47.1816],[-10.9443,-3.3763,46.3088],[-10.951,-4.2762,47.0353],[-11.4448,-3.42971,47.1816],[-11.5855,-3.95772,47.9622],[-11.9758,-2.86209,47.8301],[-11.9758,-2.86209,47.8301],[-11.5855,-3.95772,47.9622],[-12.2811,-3.34095,48.9894],[-11.557,-4.84382,48.9908],[-10.6508,-5.81582,48.3058],[-10.9189,-6.27386,49.7114],[-11.7916,-5.32499,50.2916],[-11.3827,-6.22493,50.8446],[-11.9932,-5.57224,51.5608],[-11.2437,-6.75648,51.8597],[-11.3827,-6.22493,50.8446],[-10.6856,-7.12417,50.8957],[-10.6856,-7.12417,50.8957],[-9.9986,-7.52331,49.9969],[-9.82656,-8.12897,51.1704],[-10.9189,-6.27386,49.7114],[-10.6508,-5.81582,48.3058],[-9.96339,-6.97476,48.7764],[-9.03484,-8.54799,50.2742],[-9.9986,-7.52331,49.9969],[-9.24976,-7.93912,49.211],[-9.03484,-8.54799,50.2742],[-9.24976,-7.93912,49.211],[-8.07063,-8.83023,49.0354],[-8.07063,-8.83023,49.0354],[-7.52894,-8.3515,47.181],[-6.92165,-9.34806,48.2164],[-7.44422,-7.34581,45.4932],[-7.52894,-8.3515,47.181],[-8.63382,-7.06049,46.6321],[-9.96339,-6.97476,48.7764],[-9.70932,-6.48774,47.4976],[-8.91327,-7.64822,48.0407],[-9.70932,-6.48774,47.4976],[-10.3588,-5.33763,47.1194],[-9.42187,-5.88943,46.2607],[-8.63382,-7.06049,46.6321],[-8.50636,-6.38251,45.5434],[-7.44422,-7.34581,45.4932],[-7.82633,-6.06362,44.454],[-8.50636,-6.38251,45.5434],[-8.97423,-5.34336,45.0878],[-10.3588,-5.33763,47.1194],[-10.0751,-4.50468,45.888],[-9.42187,-5.88943,46.2607],[-10.0751,-4.50468,45.888],[-10.951,-4.2762,47.0353],[-10.9443,-3.3763,46.3088],[-11.5886,-2.54972,46.8549],[-10.9443,-3.3763,46.3088],[-11.4448,-3.42971,47.1816],[-10.8368,-1.34334,45.1315],[-11.1068,-2.34866,45.9402],[-11.6774,-1.38315,46.4494],[-11.4448,-3.42971,47.1816],[-11.9758,-2.86209,47.8301],[-11.5886,-2.54972,46.8549],[-12.2811,-3.34095,48.9894],[-12.5607,-2.04632,48.5792],[-11.9758,-2.86209,47.8301],[-12.6833,-0.874513,48.2299],[-12.5607,-2.04632,48.5792],[-13.121,-1.14813,49.4608],[-12.6289,-0.0241618,47.786],[-12.6833,-0.874513,48.2299],[-13.0718,0.443042,48.7533],[-12.6868,0.886622,47.7305],[-12.2065,0.216576,46.8895],[-12.6289,-0.0241618,47.786],[-11.6774,-1.38315,46.4494],[-12.1719,-1.75291,47.5339],[-12.3098,-0.767405,47.3581],[-11.5197,-0.243762,45.8051],[-10.8368,-1.34334,45.1315],[-11.6774,-1.38315,46.4494],[-10.8799,0.305973,44.7605],[-10.8368,-1.34334,45.1315],[-11.5197,-0.243762,45.8051],[-12.3619,1.26624,47.0071],[-12.2065,0.216576,46.8895],[-12.6868,0.886622,47.7305],[-12.3453,2.38007,46.9523],[-12.3619,1.26624,47.0071],[-12.6686,1.75542,47.5962],[-11.5197,-0.243762,45.8051],[-11.7387,1.04801,45.9287],[-10.8799,0.305973,44.7605],[-10.8368,-1.34334,45.1315],[-10.8799,0.305973,44.7605],[-10.2074,-0.727085,44.0913],[-7.87896,-1.52751,42.2226],[-8.17003,-0.247589,42.2404],[-6.8066,-0.52342,41.4642],[-6.8066,-0.52342,41.4642],[-8.17003,-0.247589,42.2404],[-7.67845,1.01947,41.9039],[-6.51261,0.955084,41.205],[-6.8066,-0.52342,41.4642],[-7.67845,1.01947,41.9039],[-7.67845,1.01947,41.9039],[-6.97198,2.10782,41.4867],[-6.51261,0.955084,41.205],[-6.97198,2.10782,41.4867],[-6.23584,1.76652,40.917],[-6.51261,0.955084,41.205],[-6.23584,1.76652,40.917],[-5.61885,0.804386,40.608],[-6.51261,0.955084,41.205],[-5.61885,0.804386,40.608],[-5.44064,-0.195705,40.7335],[-6.51261,0.955084,41.205],[-7.87896,-1.52751,42.2226],[-7.5258,-2.97713,42.3449],[-8.75099,-2.36916,43.1099],[-7.87896,-1.52751,42.2226],[-6.5505,-2.17288,41.5308],[-7.5258,-2.97713,42.3449],[-9.19263,-0.852909,43.1116],[-9.82783,-1.90056,44.034],[-10.2074,-0.727085,44.0913],[-9.35786,-3.05508,43.9752],[-10.2599,-2.97178,45.0826],[-9.82783,-1.90056,44.034],[-7.5258,-2.97713,42.3449],[-8.35664,-3.82285,43.3705],[-8.75099,-2.36916,43.1099],[-7.20622,-4.16088,42.5844],[-8.35664,-3.82285,43.3705],[-7.5258,-2.97713,42.3449],[-9.29632,-4.11917,44.5369],[-10.2599,-2.97178,45.0826],[-9.35786,-3.05508,43.9752],[-8.97423,-5.34336,45.0878],[-9.29632,-4.11917,44.5369],[-8.44567,-4.90772,44.1098],[-8.97423,-5.34336,45.0878],[-8.44567,-4.90772,44.1098],[-7.82633,-6.06362,44.454],[-6.89601,-6.94578,44.3686],[-7.82633,-6.06362,44.454],[-6.69849,-6.1767,43.5144],[-7.51245,-5.06793,43.3607],[-8.35664,-3.82285,43.3705],[-7.20622,-4.16088,42.5844],[-7.20622,-4.16088,42.5844],[-7.5258,-2.97713,42.3449],[-6.14235,-3.69177,41.7301],[-3.85205,-5.17321,41.3769],[-5.04132,-5.62909,42.0684],[-5.21241,-4.72596,41.6616],[-3.85205,-5.17321,41.3769],[-5.21241,-4.72596,41.6616],[-4.63529,-3.76028,41.0698],[-5.51358,-6.39424,42.8716],[-6.69849,-6.1767,43.5144],[-6.23226,-5.15238,42.4745],[-5.94687,-7.18779,43.8412],[-6.69849,-6.1767,43.5144],[-5.51358,-6.39424,42.8716],[-6.36761,-7.69769,44.7563],[-5.94687,-7.18779,43.8412],[-5.27951,-8.13829,44.4667],[-4.47718,-9.11758,45.3305],[-5.27951,-8.13829,44.4667],[-3.90317,-8.41507,43.9861],[-3.09106,-9.23884,44.7258],[-4.47718,-9.11758,45.3305],[-3.90317,-8.41507,43.9861],[-3.36161,-10.2113,46.5626],[-3.09106,-9.23884,44.7258],[-1.30379,-9.47011,44.4821],[-1.30379,-9.47011,44.4821],[-0.703119,-8.56156,43.2021],[-0.108642,-9.47025,44.2607],[0.830717,-8.99765,43.6645],[-0.703119,-8.56156,43.2021],[0.783486,-7.79197,42.3711],[0.783486,-7.79197,42.3711],[-0.155347,-6.59238,41.3389],[1.3777,-6.6631,41.4434],[-0.595938,-5.2231,40.6617],[-0.155347,-6.59238,41.3389],[-1.41521,-6.14217,41.1523],[-1.41521,-6.14217,41.1523],[-2.12763,-5.1726,40.8678],[-0.595938,-5.2231,40.6617],[-1.88771,-7.67123,42.4503],[-1.38818,-6.94198,41.6663],[-0.697333,-7.56391,42.1172],[-2.39653,-8.55663,43.5557],[-3.32739,-7.57408,42.8371],[-1.88771,-7.67123,42.4503],[-4.21972,-6.50154,42.3083],[-3.32739,-7.57408,42.8371],[-4.72733,-7.43097,43.3366],[-5.04132,-5.62909,42.0684],[-3.85205,-5.17321,41.3769],[-4.21972,-6.50154,42.3083],[-2.12763,-5.1726,40.8678],[-1.41521,-6.14217,41.1523],[-2.63742,-6.5057,41.7275],[-0.595938,-5.2231,40.6617],[-2.12763,-5.1726,40.8678],[-1.24183,-4.11155,40.3652],[0.989587,-5.46013,40.7616],[-0.155347,-6.59238,41.3389],[-0.595938,-5.2231,40.6617],[0.989587,-5.46013,40.7616],[2.15376,-4.44287,40.4976],[2.65487,-5.89023,41.2281],[3.2772,-3.64553,40.4473],[2.15376,-4.44287,40.4976],[2.2103,-3.29649,40.1947],[3.00991,-1.31883,39.9021],[1.84163,-1.54079,39.6664],[2.54773,-1.16996,39.4964],[3.00991,-1.31883,39.9021],[2.54773,-1.16996,39.4964],[3.33598,-0.800341,39.5357],[3.33598,-0.800341,39.5357],[3.93717,-0.483045,39.9558],[3.00991,-1.31883,39.9021],[3.33598,-0.800341,39.5357],[2.54773,-1.16996,39.4964],[2.64813,-1.55969,38.8549],[1.76471,-2.36481,39.9733],[3.38433,-2.39765,40.2529],[2.2103,-3.29649,40.1947],[4.72896,-2.19593,40.5847],[4.53852,-1.00453,40.3683],[5.75308,-1.38416,40.868],[2.2103,-3.29649,40.1947],[3.38433,-2.39765,40.2529],[3.2772,-3.64553,40.4473],[4.33013,-4.71025,41.1506],[2.15376,-4.44287,40.4976],[3.2772,-3.64553,40.4473],[4.30441,-3.2062,40.6261],[4.72896,-2.19593,40.5847],[5.74317,-2.92408,41.1242],[5.58124,-5.40192,41.9463],[4.43054,-6.4484,42.1755],[4.33013,-4.71025,41.1506],[7.31709,-5.91351,43.4098],[6.94863,-4.98724,42.5136],[8.08415,-5.12602,43.4817],[6.82108,-6.88692,43.9272],[7.31709,-5.91351,43.4098],[8.43739,-6.08062,44.662],[5.58124,-5.40192,41.9463],[6.10481,-6.2047,42.7822],[4.43054,-6.4484,42.1755],[4.43054,-6.4484,42.1755],[4.1214,-8.00733,43.4605],[2.61706,-7.28329,42.2144],[5.84141,-8.12446,44.5898],[5.48537,-7.1964,43.2899],[6.82108,-6.88692,43.9272],[4.62037,-8.90829,44.7443],[3.36416,-9.17479,44.5185],[4.1214,-8.00733,43.4605],[5.43433,-9.23702,45.7888],[4.18261,-9.71054,45.7224],[4.62037,-8.90829,44.7443],[7.51929,-7.53221,45.3142],[6.76761,-8.69441,46.1761],[5.84141,-8.12446,44.5898],[4.92584,-9.98728,46.7163],[5.43433,-9.23702,45.7888],[6.01789,-9.67693,47.1131],[6.76761,-8.69441,46.1761],[7.51929,-7.53221,45.3142],[8.29303,-8.06605,46.9623],[8.42042,-8.86055,48.6342],[8.29303,-8.06605,46.9623],[9.62798,-7.72081,48.4134],[9.42486,-8.63154,49.9821],[8.42042,-8.86055,48.6342],[9.62798,-7.72081,48.4134],[6.40345,-10.1123,48.5616],[7.27333,-9.22802,47.6857],[7.48282,-9.6688,48.9528],[6.01789,-9.67693,47.1131],[6.40345,-10.1123,48.5616],[5.06974,-10.4839,48.0103],[3.713,-11.2565,48.9268],[3.70824,-10.5497,47.1178],[5.06974,-10.4839,48.0103],[3.99475,-11.7142,50.6543],[2.55924,-11.8886,50.1301],[3.713,-11.2565,48.9268],[6.25143,-11.0254,51.2158],[5.38667,-10.9818,49.7791],[6.94173,-10.3277,50.0185],[6.25143,-11.0254,51.2158],[6.94173,-10.3277,50.0185],[7.72654,-10.3046,51.7119],[4.24784,-11.9915,52.1889],[3.99475,-11.7142,50.6543],[5.11121,-11.5236,51.2117],[4.24784,-11.9915,52.1889],[4.8711,-11.9834,53.6348],[3.08171,-12.4615,53.6111],[4.8711,-11.9834,53.6348],[5.8439,-11.679,55.1828],[4.15191,-12.3209,55.0052],[7.20997,-10.9859,54.3948],[7.22176,-10.9811,55.9834],[5.8439,-11.679,55.1828],[6.63002,-11.0974,52.35],[6.24446,-11.4321,53.4858],[5.57642,-11.573,52.3286],[6.25143,-11.0254,51.2158],[7.72654,-10.3046,51.7119],[6.63002,-11.0974,52.35],[8.21697,-10.2805,53.5088],[7.20997,-10.9859,54.3948],[7.22919,-10.8763,53.0713],[8.21697,-10.2805,53.5088],[9.19795,-9.44363,52.4723],[9.4341,-9.42431,54.3258],[7.72654,-10.3046,51.7119],[6.94173,-10.3277,50.0185],[8.18696,-9.57583,50.0504],[8.18696,-9.57583,50.0504],[8.42042,-8.86055,48.6342],[9.42486,-8.63154,49.9821],[9.19795,-9.44363,52.4723],[8.9187,-9.38328,51.1125],[9.86407,-8.72238,51.3914],[9.42486,-8.63154,49.9821],[9.62798,-7.72081,48.4134],[10.2837,-7.78996,49.7279],[10.2837,-7.78996,49.7279],[10.7886,-6.94521,49.1705],[11.0039,-7.31774,50.4588],[10.3381,-8.10603,50.6642],[10.8837,-7.82281,51.7551],[9.86407,-8.72238,51.3914],[11.7413,-6.96112,52.4113],[10.8837,-7.82281,51.7551],[11.7738,-6.6443,51.393],[11.0039,-7.31774,50.4588],[10.7886,-6.94521,49.1705],[11.65,-6.26232,50.0154],[12.169,-4.99182,49.3209],[12.4461,-5.3888,50.9284],[11.65,-6.26232,50.0154],[12.6225,-5.67178,52.5886],[11.7413,-6.96112,52.4113],[11.7738,-6.6443,51.393],[13.3121,-4.56842,53.0031],[12.6225,-5.67178,52.5886],[13.1472,-4.47646,51.8463],[13.006,-3.90688,50.3318],[12.4461,-5.3888,50.9284],[12.169,-4.99182,49.3209],[13.6154,-3.2226,51.614],[13.6131,-3.78796,52.5857],[13.1472,-4.47646,51.8463],[13.5772,-2.20778,50.3798],[13.006,-3.90688,50.3318],[13.033,-3.00184,49.2962],[13.6154,-3.2226,51.614],[14.052,-1.97115,51.8821],[13.9799,-2.84357,52.7619],[14.101,-0.784621,51.2225],[14.3696,-0.989116,52.3825],[14.052,-1.97115,51.8821],[13.672,-0.666138,49.7407],[14.0834,0.964166,50.7472],[14.101,-0.784621,51.2225],[13.1283,-1.80618,48.7875],[13.5772,-2.20778,50.3798],[13.033,-3.00184,49.2962],[13.2076,-0.585196,48.4364],[13.5364,0.398115,49.078],[13.672,-0.666138,49.7407],[12.4876,-3.11709,48.0858],[12.4056,-1.18976,47.0729],[13.1283,-1.80618,48.7875],[13.5364,0.398115,49.078],[13.2076,-0.585196,48.4364],[12.9561,0.446388,47.7571],[12.9561,0.446388,47.7571],[13.4268,1.88324,48.8845],[13.5364,0.398115,49.078],[13.525,3.67704,49.4662],[13.4268,1.88324,48.8845],[12.7749,3.45896,47.6366],[13.9972,3.91072,50.9169],[13.9558,2.61841,50.4049],[13.525,3.67704,49.4662],[13.9972,3.91072,50.9169],[14.0029,4.95792,51.4374],[14.383,4.69615,52.8842],[14.0029,4.95792,51.4374],[13.8095,5.99998,51.6115],[14.383,4.69615,52.8842],[13.0426,4.96238,48.6515],[13.0044,6.31912,49.247],[13.5867,5.22034,50.2868],[12.8417,7.44577,49.6336],[13.0044,6.31912,49.247],[12.4143,7.41254,48.484],[12.3125,8.65699,49.3509],[12.9478,8.08549,50.6384],[12.8417,7.44577,49.6336],[12.3125,8.65699,49.3509],[12.4497,9.42577,50.6169],[12.9478,8.08549,50.6384],[13.5054,7.34867,51.8488],[13.8095,5.99998,51.6115],[13.3269,6.73472,50.5418],[13.576,7.93164,52.9988],[14.0442,6.50144,53.2937],[13.5054,7.34867,51.8488],[14.0442,6.50144,53.2937],[13.576,7.93164,52.9988],[13.796,7.861,54.368],[13.796,7.861,54.368],[13.3006,9.32685,55.2349],[13.9475,7.81388,55.8986],[13.3006,9.32685,55.2349],[12.7513,10.3932,53.9658],[12.4971,11.0545,55.2639],[13.0207,8.87415,51.9639],[12.6783,10.1136,52.6483],[13.2374,9.09186,53.531],[12.9478,8.08549,50.6384],[12.4497,9.42577,50.6169],[13.0207,8.87415,51.9639],[11.8682,10.0358,49.662],[12.4497,9.42577,50.6169],[12.3125,8.65699,49.3509],[11.8682,10.0358,49.662],[11.1802,10.2891,48.3953],[11.318,10.9821,49.5114],[10.3967,11.8454,48.7838],[11.318,10.9821,49.5114],[11.1802,10.2891,48.3953],[10.1657,11.0586,47.3314],[10.3967,11.8454,48.7838],[11.1802,10.2891,48.3953],[10.3967,11.8454,48.7838],[11.0393,11.8609,50.2145],[11.318,10.9821,49.5114],[11.0393,11.8609,50.2145],[10.3967,11.8454,48.7838],[10.0008,13.064,49.9513],[10.8506,12.6858,51.2832],[11.0393,11.8609,50.2145],[10.0008,13.064,49.9513],[10.0008,13.064,49.9513],[9.9463,13.7316,51.2154],[10.8506,12.6858,51.2832],[10.8506,12.6858,51.2832],[9.9463,13.7316,51.2154],[10.5212,13.4379,52.054],[9.9463,13.7316,51.2154],[9.94798,14.2405,52.8848],[10.5212,13.4379,52.054],[9.94798,14.2405,52.8848],[11.139,12.8848,52.9405],[10.5212,13.4379,52.054],[10.6616,13.6853,54.2681],[11.139,12.8848,52.9405],[9.94798,14.2405,52.8848],[9.94798,14.2405,52.8848],[9.79319,14.6363,54.0071],[10.6616,13.6853,54.2681],[9.79319,14.6363,54.0071],[9.98221,14.4959,55.1996],[10.6616,13.6853,54.2681],[10.6616,13.6853,54.2681],[9.98221,14.4959,55.1996],[10.952,13.3034,56.1533],[11.7799,12.233,54.5395],[10.6616,13.6853,54.2681],[10.952,13.3034,56.1533],[9.98221,14.4959,55.1996],[9.89103,14.4936,56.6119],[10.952,13.3034,56.1533],[9.89103,14.4936,56.6119],[9.98221,14.4959,55.1996],[8.9317,15.395,55.726],[9.98221,14.4959,55.1996],[9.25591,15.1713,54.5225],[8.9317,15.395,55.726],[8.9317,15.395,55.726],[9.25591,15.1713,54.5225],[8.4605,15.7328,54.504],[8.9317,15.395,55.726],[8.4605,15.7328,54.504],[7.82742,16.1313,55.2618],[7.82742,16.1313,55.2618],[7.76085,16.0644,56.8139],[8.9317,15.395,55.726],[7.76085,16.0644,56.8139],[8.99194,15.2286,57.1762],[8.9317,15.395,55.726],[7.82742,16.1313,55.2618],[6.55689,16.7591,55.5388],[7.76085,16.0644,56.8139],[6.55689,16.7591,55.5388],[6.12891,16.7917,57.5692],[7.76085,16.0644,56.8139],[7.28413,16.075,58.3756],[7.76085,16.0644,56.8139],[6.12891,16.7917,57.5692],[6.12891,16.7917,57.5692],[6.10353,16.5561,58.8553],[7.28413,16.075,58.3756],[6.10353,16.5561,58.8553],[6.12891,16.7917,57.5692],[4.9045,17.0993,58.5469],[4.9045,17.0993,58.5469],[6.12891,16.7917,57.5692],[4.75197,17.3601,57.2106],[6.12891,16.7917,57.5692],[5.65522,17.1387,56.4786],[4.75197,17.3601,57.2106],[5.65522,17.1387,56.4786],[5.08663,17.3432,55.5348],[4.75197,17.3601,57.2106],[5.08663,17.3432,55.5348],[4.0753,17.6204,56.2568],[4.75197,17.3601,57.2106],[3.68229,17.6452,57.1413],[4.75197,17.3601,57.2106],[4.0753,17.6204,56.2568],[3.25025,17.7967,56.1898],[3.68229,17.6452,57.1413],[4.0753,17.6204,56.2568],[3.64211,17.7028,55.0831],[3.25025,17.7967,56.1898],[4.0753,17.6204,56.2568],[3.25025,17.7967,56.1898],[3.64211,17.7028,55.0831],[2.5113,17.9282,55.7628],[3.25025,17.7967,56.1898],[2.5113,17.9282,55.7628],[2.35837,17.9066,56.6875],[2.57378,17.7215,57.9491],[3.25025,17.7967,56.1898],[2.35837,17.9066,56.6875],[2.57378,17.7215,57.9491],[2.35837,17.9066,56.6875],[1.68993,17.9344,57.1683],[2.35837,17.9066,56.6875],[1.73389,18.0142,56.2743],[1.68993,17.9344,57.1683],[1.73389,18.0142,56.2743],[1.01275,18.0335,56.6298],[1.68993,17.9344,57.1683],[1.68993,17.9344,57.1683],[1.01275,18.0335,56.6298],[0.968298,17.9464,57.4119],[1.45211,17.8195,58.0377],[1.68993,17.9344,57.1683],[0.968298,17.9464,57.4119],[0.293518,17.9925,57.0526],[0.968298,17.9464,57.4119],[1.01275,18.0335,56.6298],[1.11925,18.0779,55.9048],[1.01275,18.0335,56.6298],[1.73389,18.0142,56.2743],[1.11925,18.0779,55.9048],[1.73389,18.0142,56.2743],[1.68818,18.0419,55.4291],[0.880922,18.0893,55.2127],[1.11925,18.0779,55.9048],[1.68818,18.0419,55.4291],[1.45417,18.0347,54.5759],[0.880922,18.0893,55.2127],[1.68818,18.0419,55.4291],[2.37868,17.9335,54.7909],[1.45417,18.0347,54.5759],[1.68818,18.0419,55.4291],[2.37868,17.9335,54.7909],[1.68818,18.0419,55.4291],[2.5113,17.9282,55.7628],[1.45417,18.0347,54.5759],[2.37868,17.9335,54.7909],[1.9816,17.925,53.8847],[1.45417,18.0347,54.5759],[1.9816,17.925,53.8847],[1.13891,17.9783,53.7472],[0.570572,18.05,54.3701],[1.45417,18.0347,54.5759],[1.13891,17.9783,53.7472],[0.205032,17.9157,53.3752],[0.570572,18.05,54.3701],[1.13891,17.9783,53.7472],[0.205032,17.9157,53.3752],[1.13891,17.9783,53.7472],[0.979822,17.8664,53.0142],[0.475945,17.6496,52.1036],[0.205032,17.9157,53.3752],[0.979822,17.8664,53.0142],[1.47453,17.7503,52.5722],[0.475945,17.6496,52.1036],[0.979822,17.8664,53.0142],[1.47453,17.7503,52.5722],[0.979822,17.8664,53.0142],[1.58628,17.8861,53.2502],[2.33609,17.7491,52.9975],[1.47453,17.7503,52.5722],[1.58628,17.8861,53.2502],[1.9816,17.925,53.8847],[2.33609,17.7491,52.9975],[1.58628,17.8861,53.2502],[2.95589,17.7689,53.9069],[2.33609,17.7491,52.9975],[1.9816,17.925,53.8847],[2.33609,17.7491,52.9975],[2.95589,17.7689,53.9069],[3.29351,17.5835,52.978],[2.94508,17.4948,52.1921],[2.33609,17.7491,52.9975],[3.29351,17.5835,52.978],[2.94508,17.4948,52.1921],[3.29351,17.5835,52.978],[4.09756,17.2099,52.1575],[3.2314,17.2082,51.3064],[2.94508,17.4948,52.1921],[4.09756,17.2099,52.1575],[3.2314,17.2082,51.3064],[4.09756,17.2099,52.1575],[4.09493,16.8034,50.6875],[3.1018,16.9362,50.3922],[3.2314,17.2082,51.3064],[4.09493,16.8034,50.6875],[3.7661,16.3224,49.2248],[3.1018,16.9362,50.3922],[4.09493,16.8034,50.6875],[4.81854,16.3175,49.8589],[3.7661,16.3224,49.2248],[4.09493,16.8034,50.6875],[4.81854,16.3175,49.8589],[4.09493,16.8034,50.6875],[5.41966,16.5424,51.23],[5.41966,16.5424,51.23],[5.77854,15.7189,49.2988],[4.81854,16.3175,49.8589],[4.81854,16.3175,49.8589],[5.77854,15.7189,49.2988],[4.82551,15.9027,48.8731],[5.77854,15.7189,49.2988],[5.37829,15.1387,47.8484],[4.82551,15.9027,48.8731],[5.37829,15.1387,47.8484],[4.23655,15.7296,48.1941],[4.82551,15.9027,48.8731],[4.23655,15.7296,48.1941],[3.7661,16.3224,49.2248],[4.82551,15.9027,48.8731],[3.7661,16.3224,49.2248],[4.23655,15.7296,48.1941],[3.09369,15.8363,47.933],[2.61815,16.3724,48.8502],[3.7661,16.3224,49.2248],[3.09369,15.8363,47.933],[2.03492,16.0786,48.0971],[2.61815,16.3724,48.8502],[3.09369,15.8363,47.933],[2.16151,15.6791,47.3637],[2.03492,16.0786,48.0971],[3.09369,15.8363,47.933],[2.7053,15.2716,46.7807],[2.16151,15.6791,47.3637],[3.09369,15.8363,47.933],[3.96287,15.1844,47.1019],[2.7053,15.2716,46.7807],[3.09369,15.8363,47.933],[2.7053,15.2716,46.7807],[3.96287,15.1844,47.1019],[3.23081,14.5929,45.8657],[3.23081,14.5929,45.8657],[2.06217,14.8384,45.9162],[2.7053,15.2716,46.7807],[2.06217,14.8384,45.9162],[1.60484,15.3344,46.6722],[2.7053,15.2716,46.7807],[2.06217,14.8384,45.9162],[0.965171,14.9222,45.9343],[1.60484,15.3344,46.6722],[1.60484,15.3344,46.6722],[0.965171,14.9222,45.9343],[0.403994,15.4324,46.7727],[1.60484,15.3344,46.6722],[0.403994,15.4324,46.7727],[1.29045,15.8021,47.4664],[2.16151,15.6791,47.3637],[1.60484,15.3344,46.6722],[1.29045,15.8021,47.4664],[0.403994,15.4324,46.7727],[0.348969,15.9852,47.762],[1.29045,15.8021,47.4664],[1.29045,15.8021,47.4664],[0.348969,15.9852,47.762],[1.16504,16.2519,48.3127],[1.29045,15.8021,47.4664],[1.16504,16.2519,48.3127],[2.03492,16.0786,48.0971],[1.16504,16.2519,48.3127],[1.81124,16.4414,48.7863],[2.03492,16.0786,48.0971],[1.116,16.6925,49.2667],[1.81124,16.4414,48.7863],[1.16504,16.2519,48.3127],[0.348359,16.4303,48.6323],[1.116,16.6925,49.2667],[1.16504,16.2519,48.3127],[0.348359,16.4303,48.6323],[0.267388,16.7522,49.3319],[1.116,16.6925,49.2667],[0.267388,16.7522,49.3319],[0.531299,17.0168,50.0199],[1.116,16.6925,49.2667],[0.531299,17.0168,50.0199],[1.53947,17.1118,50.4116],[1.116,16.6925,49.2667],[1.53947,17.1118,50.4116],[2.0686,16.7279,49.5002],[1.116,16.6925,49.2667],[2.0686,16.7279,49.5002],[1.53947,17.1118,50.4116],[2.41942,16.949,50.1397],[2.0686,16.7279,49.5002],[2.41942,16.949,50.1397],[2.82086,16.6875,49.6176],[2.61815,16.3724,48.8502],[2.0686,16.7279,49.5002],[2.82086,16.6875,49.6176],[2.0686,16.7279,49.5002],[2.61815,16.3724,48.8502],[1.81124,16.4414,48.7863],[2.82086,16.6875,49.6176],[2.41942,16.949,50.1397],[3.1018,16.9362,50.3922],[2.46733,17.1916,50.8542],[3.1018,16.9362,50.3922],[2.41942,16.949,50.1397],[1.53947,17.1118,50.4116],[2.46733,17.1916,50.8542],[2.41942,16.949,50.1397],[2.46733,17.1916,50.8542],[1.53947,17.1118,50.4116],[1.87361,17.4133,51.3631],[2.46733,17.1916,50.8542],[1.87361,17.4133,51.3631],[2.53487,17.4084,51.5667],[3.2314,17.2082,51.3064],[2.46733,17.1916,50.8542],[2.53487,17.4084,51.5667],[2.53487,17.4084,51.5667],[1.87361,17.4133,51.3631],[2.09881,17.5973,52.1082],[2.94508,17.4948,52.1921],[2.53487,17.4084,51.5667],[2.09881,17.5973,52.1082],[2.09881,17.5973,52.1082],[1.87361,17.4133,51.3631],[1.41506,17.5952,51.9026],[1.47453,17.7503,52.5722],[2.09881,17.5973,52.1082],[1.41506,17.5952,51.9026],[1.17236,17.4388,51.3409],[1.41506,17.5952,51.9026],[1.87361,17.4133,51.3631],[1.17236,17.4388,51.3409],[0.475945,17.6496,52.1036],[1.41506,17.5952,51.9026],[0.475945,17.6496,52.1036],[1.17236,17.4388,51.3409],[0.572382,17.3207,50.9252],[-0.270392,17.3933,51.1857],[0.475945,17.6496,52.1036],[0.572382,17.3207,50.9252],[-0.270392,17.3933,51.1857],[0.572382,17.3207,50.9252],[-0.06602,17.181,50.4772],[-0.883754,17.1436,50.5055],[-0.270392,17.3933,51.1857],[-0.06602,17.181,50.4772],[-0.292979,16.9301,49.8115],[-0.883754,17.1436,50.5055],[-0.06602,17.181,50.4772],[-0.292979,16.9301,49.8115],[-0.06602,17.181,50.4772],[0.531299,17.0168,50.0199],[-0.883754,17.1436,50.5055],[-0.292979,16.9301,49.8115],[-1.23544,16.7697,49.5944],[-0.883754,17.1436,50.5055],[-1.23544,16.7697,49.5944],[-1.65877,17.0019,50.3126],[-1.64253,17.2232,50.9783],[-0.883754,17.1436,50.5055],[-1.65877,17.0019,50.3126],[-1.64253,17.2232,50.9783],[-1.65877,17.0019,50.3126],[-2.21293,17.0352,50.6461],[-2.51258,17.2325,51.4853],[-1.64253,17.2232,50.9783],[-2.21293,17.0352,50.6461],[-2.91446,16.8886,50.6034],[-2.51258,17.2325,51.4853],[-2.21293,17.0352,50.6461],[-2.91446,16.8886,50.6034],[-2.21293,17.0352,50.6461],[-2.29321,16.7419,49.8815],[-3.25671,16.5629,49.9019],[-2.91446,16.8886,50.6034],[-2.29321,16.7419,49.8815],[-2.81409,16.348,49.1453],[-3.25671,16.5629,49.9019],[-2.29321,16.7419,49.8815],[-1.95399,16.4405,49.006],[-2.81409,16.348,49.1453],[-2.29321,16.7419,49.8815],[-1.23544,16.7697,49.5944],[-1.95399,16.4405,49.006],[-2.29321,16.7419,49.8815],[-1.16051,16.3844,48.6715],[-1.95399,16.4405,49.006],[-1.23544,16.7697,49.5944],[-0.412994,16.5978,49.0269],[-1.16051,16.3844,48.6715],[-1.23544,16.7697,49.5944],[-1.16051,16.3844,48.6715],[-0.412994,16.5978,49.0269],[-0.447636,16.2091,48.2148],[-1.16051,16.3844,48.6715],[-0.447636,16.2091,48.2148],[-1.14246,16.0561,47.9922],[-1.14246,16.0561,47.9922],[-1.79374,16.1219,48.2621],[-1.16051,16.3844,48.6715],[-1.14246,16.0561,47.9922],[-1.63266,15.7721,47.5567],[-1.79374,16.1219,48.2621],[-1.79374,16.1219,48.2621],[-1.63266,15.7721,47.5567],[-2.4252,15.8273,47.8828],[-2.43926,16.1485,48.5259],[-1.79374,16.1219,48.2621],[-2.4252,15.8273,47.8828],[-3.219,15.8991,48.3768],[-2.43926,16.1485,48.5259],[-2.4252,15.8273,47.8828],[-3.219,15.8991,48.3768],[-2.4252,15.8273,47.8828],[-3.12505,15.442,47.4529],[-3.12505,15.442,47.4529],[-3.94365,15.423,47.8499],[-3.219,15.8991,48.3768],[-3.94365,15.423,47.8499],[-4.09611,15.7781,48.6357],[-3.219,15.8991,48.3768],[-4.09611,15.7781,48.6357],[-3.72499,16.1663,49.2427],[-3.219,15.8991,48.3768],[-3.72499,16.1663,49.2427],[-2.81409,16.348,49.1453],[-3.219,15.8991,48.3768],[-4.09611,15.7781,48.6357],[-4.80933,15.8889,49.427],[-3.72499,16.1663,49.2427],[-4.09841,16.4005,50.0506],[-3.72499,16.1663,49.2427],[-4.80933,15.8889,49.427],[-4.80933,15.8889,49.427],[-4.79162,16.3047,50.3882],[-4.09841,16.4005,50.0506],[-4.09841,16.4005,50.0506],[-4.79162,16.3047,50.3882],[-4.27398,16.6374,50.8528],[-3.63103,16.7063,50.5188],[-4.09841,16.4005,50.0506],[-4.27398,16.6374,50.8528],[-3.53107,16.9421,51.2059],[-3.63103,16.7063,50.5188],[-4.27398,16.6374,50.8528],[-4.32294,16.8721,51.7355],[-3.53107,16.9421,51.2059],[-4.27398,16.6374,50.8528],[-5.15369,16.4539,51.2374],[-4.32294,16.8721,51.7355],[-4.27398,16.6374,50.8528],[-5.2131,16.6961,52.2893],[-4.32294,16.8721,51.7355],[-5.15369,16.4539,51.2374],[-5.86236,16.3339,51.8385],[-5.2131,16.6961,52.2893],[-5.15369,16.4539,51.2374],[-5.2131,16.6961,52.2893],[-4.21306,17.1402,52.788],[-4.32294,16.8721,51.7355],[-4.32294,16.8721,51.7355],[-4.21306,17.1402,52.788],[-3.44141,17.1939,52.0573],[-4.21306,17.1402,52.788],[-5.2131,16.6961,52.2893],[-5.26605,16.8709,53.339],[-5.2131,16.6961,52.2893],[-6.3175,16.3208,52.8184],[-5.26605,16.8709,53.339],[-6.1091,16.6115,54.1534],[-5.26605,16.8709,53.339],[-6.3175,16.3208,52.8184],[-5.21522,17.0085,54.2119],[-5.26605,16.8709,53.339],[-6.1091,16.6115,54.1534],[-5.21522,17.0085,54.2119],[-6.1091,16.6115,54.1534],[-5.55888,16.9051,55.0655],[-4.63309,17.246,54.7664],[-5.21522,17.0085,54.2119],[-5.55888,16.9051,55.0655],[-4.42978,17.2424,53.8349],[-5.26605,16.8709,53.339],[-5.21522,17.0085,54.2119],[-4.32294,16.8721,51.7355],[-3.44141,17.1939,52.0573],[-3.53107,16.9421,51.2059],[-3.44141,17.1939,52.0573],[-2.51258,17.2325,51.4853],[-3.53107,16.9421,51.2059],[-2.74087,17.4264,52.3618],[-2.51258,17.2325,51.4853],[-3.44141,17.1939,52.0573],[-2.74087,17.4264,52.3618],[-3.44141,17.1939,52.0573],[-3.26511,17.4041,52.7773],[-1.99141,17.5456,52.3323],[-2.51258,17.2325,51.4853],[-2.74087,17.4264,52.3618],[-2.43616,17.634,53.1554],[-1.99141,17.5456,52.3323],[-2.74087,17.4264,52.3618],[-1.42565,17.7524,52.9598],[-1.99141,17.5456,52.3323],[-2.43616,17.634,53.1554],[-1.99141,17.5456,52.3323],[-1.42565,17.7524,52.9598],[-1.24881,17.6404,52.3179],[-1.99141,17.5456,52.3323],[-1.24881,17.6404,52.3179],[-1.52517,17.4501,51.707],[-0.695907,17.5672,51.8769],[-1.52517,17.4501,51.707],[-1.24881,17.6404,52.3179],[-0.575698,17.7638,52.6833],[-0.695907,17.5672,51.8769],[-1.24881,17.6404,52.3179],[-0.575698,17.7638,52.6833],[0.475945,17.6496,52.1036],[-0.695907,17.5672,51.8769],[-1.00936,17.375,51.2464],[-1.52517,17.4501,51.707],[-0.695907,17.5672,51.8769],[-0.270392,17.3933,51.1857],[-1.00936,17.375,51.2464],[-0.695907,17.5672,51.8769],[-1.64253,17.2232,50.9783],[-1.52517,17.4501,51.707],[-1.00936,17.375,51.2464],[-1.42565,17.7524,52.9598],[-0.575698,17.7638,52.6833],[-1.24881,17.6404,52.3179],[-0.575698,17.7638,52.6833],[-1.42565,17.7524,52.9598],[-0.758109,17.8932,53.43],[-0.575698,17.7638,52.6833],[-0.758109,17.8932,53.43],[0.205032,17.9157,53.3752],[-0.758109,17.8932,53.43],[-0.485064,18.0066,54.2926],[0.205032,17.9157,53.3752],[-1.52691,17.865,53.8202],[-0.485064,18.0066,54.2926],[-0.758109,17.8932,53.43],[-1.42565,17.7524,52.9598],[-1.52691,17.865,53.8202],[-0.758109,17.8932,53.43],[-2.51258,17.2325,51.4853],[-1.99141,17.5456,52.3323],[-1.52517,17.4501,51.707],[-3.53107,16.9421,51.2059],[-2.91446,16.8886,50.6034],[-3.63103,16.7063,50.5188],[-3.63103,16.7063,50.5188],[-3.25671,16.5629,49.9019],[-4.09841,16.4005,50.0506],[-4.27398,16.6374,50.8528],[-4.79162,16.3047,50.3882],[-5.15369,16.4539,51.2374],[-4.79162,16.3047,50.3882],[-5.52305,16.0091,50.396],[-5.15369,16.4539,51.2374],[-5.52305,16.0091,50.396],[-5.94394,16.0991,51.1535],[-5.15369,16.4539,51.2374],[-5.52305,16.0091,50.396],[-4.79162,16.3047,50.3882],[-4.80933,15.8889,49.427],[-5.52305,16.0091,50.396],[-4.80933,15.8889,49.427],[-5.89857,15.5055,49.6025],[-6.48732,15.6079,50.5798],[-5.52305,16.0091,50.396],[-5.89857,15.5055,49.6025],[-6.7957,15.0394,49.6187],[-6.48732,15.6079,50.5798],[-5.89857,15.5055,49.6025],[-6.22357,14.9729,48.8061],[-6.7957,15.0394,49.6187],[-5.89857,15.5055,49.6025],[-5.47261,15.3457,48.8232],[-6.22357,14.9729,48.8061],[-5.89857,15.5055,49.6025],[-5.47261,15.3457,48.8232],[-5.6081,14.8436,47.9978],[-6.22357,14.9729,48.8061],[-6.22357,14.9729,48.8061],[-5.6081,14.8436,47.9978],[-6.43666,14.4999,48.1328],[-7.04045,14.4616,48.736],[-6.22357,14.9729,48.8061],[-6.43666,14.4999,48.1328],[-7.04045,14.4616,48.736],[-6.43666,14.4999,48.1328],[-7.04714,13.8556,47.6979],[-7.04714,13.8556,47.6979],[-7.9223,13.8203,48.6404],[-7.04045,14.4616,48.736],[-7.89816,13.3724,47.8423],[-7.9223,13.8203,48.6404],[-7.04714,13.8556,47.6979],[-7.04714,13.8556,47.6979],[-7.57253,13.1437,47.1609],[-7.89816,13.3724,47.8423],[-7.89816,13.3724,47.8423],[-7.57253,13.1437,47.1609],[-8.32315,12.8007,47.52],[-8.51999,13.158,48.29],[-7.89816,13.3724,47.8423],[-8.32315,12.8007,47.52],[-7.57253,13.1437,47.1609],[-7.04714,13.8556,47.6979],[-6.91315,13.3687,46.8411],[-7.208,12.8937,46.4975],[-7.57253,13.1437,47.1609],[-6.91315,13.3687,46.8411],[-6.41092,13.1045,46.1141],[-7.208,12.8937,46.4975],[-6.91315,13.3687,46.8411],[-6.23798,13.7905,46.8681],[-6.41092,13.1045,46.1141],[-6.91315,13.3687,46.8411],[-6.23798,13.7905,46.8681],[-5.33613,13.7111,46.1035],[-6.41092,13.1045,46.1141],[-6.41092,13.1045,46.1141],[-5.33613,13.7111,46.1035],[-5.67004,12.9948,45.4388],[-6.32001,12.6101,45.4669],[-6.41092,13.1045,46.1141],[-5.67004,12.9948,45.4388],[-5.67004,12.9948,45.4388],[-5.88816,12.4877,45.0345],[-6.32001,12.6101,45.4669],[-5.88816,12.4877,45.0345],[-6.48158,12.1033,45.0763],[-6.32001,12.6101,45.4669],[-5.88816,12.4877,45.0345],[-5.82759,11.9946,44.5656],[-6.48158,12.1033,45.0763],[-5.88816,12.4877,45.0345],[-5.12778,12.6617,44.7585],[-5.82759,11.9946,44.5656],[-4.97573,11.9142,44.0807],[-5.82759,11.9946,44.5656],[-5.12778,12.6617,44.7585],[-4.32986,12.5675,44.2847],[-4.97573,11.9142,44.0807],[-5.12778,12.6617,44.7585],[-4.25793,13.2004,44.8411],[-4.32986,12.5675,44.2847],[-5.12778,12.6617,44.7585],[-4.91472,13.315,45.3215],[-4.25793,13.2004,44.8411],[-5.12778,12.6617,44.7585],[-5.67004,12.9948,45.4388],[-4.91472,13.315,45.3215],[-5.12778,12.6617,44.7585],[-4.18086,13.8941,45.6283],[-4.25793,13.2004,44.8411],[-4.91472,13.315,45.3215],[-5.33613,13.7111,46.1035],[-4.18086,13.8941,45.6283],[-4.91472,13.315,45.3215],[-4.18086,13.8941,45.6283],[-5.33613,13.7111,46.1035],[-4.51663,14.4172,46.5399],[-3.72039,14.5245,46.2348],[-4.18086,13.8941,45.6283],[-4.51663,14.4172,46.5399],[-3.82702,14.9664,46.9818],[-3.72039,14.5245,46.2348],[-4.51663,14.4172,46.5399],[-4.6776,14.9204,47.4351],[-3.82702,14.9664,46.9818],[-4.51663,14.4172,46.5399],[-4.6776,14.9204,47.4351],[-4.51663,14.4172,46.5399],[-5.43076,14.3464,47.0521],[-5.6081,14.8436,47.9978],[-4.6776,14.9204,47.4351],[-5.43076,14.3464,47.0521],[-6.17045,14.2843,47.5302],[-5.6081,14.8436,47.9978],[-5.43076,14.3464,47.0521],[-6.23798,13.7905,46.8681],[-6.17045,14.2843,47.5302],[-5.43076,14.3464,47.0521],[-6.23798,13.7905,46.8681],[-7.04714,13.8556,47.6979],[-6.17045,14.2843,47.5302],[-4.6776,14.9204,47.4351],[-5.6081,14.8436,47.9978],[-4.7707,15.3925,48.3498],[-4.6776,14.9204,47.4351],[-4.7707,15.3925,48.3498],[-3.94365,15.423,47.8499],[-3.82702,14.9664,46.9818],[-4.6776,14.9204,47.4351],[-3.94365,15.423,47.8499],[-3.72039,14.5245,46.2348],[-3.82702,14.9664,46.9818],[-3.07267,14.9222,46.552],[-3.06902,14.2649,45.6181],[-3.72039,14.5245,46.2348],[-3.07267,14.9222,46.552],[-3.06902,14.2649,45.6181],[-3.07267,14.9222,46.552],[-2.30797,14.7522,46.0346],[-1.6167,14.3385,45.2986],[-3.06902,14.2649,45.6181],[-2.30797,14.7522,46.0346],[-1.6167,14.3385,45.2986],[-2.30797,14.7522,46.0346],[-1.38899,15.3512,46.7684],[-0.896073,14.8975,45.9457],[-1.6167,14.3385,45.2986],[-1.38899,15.3512,46.7684],[-0.896073,14.8975,45.9457],[-1.38899,15.3512,46.7684],[-0.549859,15.2778,46.5237],[-0.549859,15.2778,46.5237],[-0.073177,14.9304,45.9329],[-0.896073,14.8975,45.9457],[-0.073177,14.9304,45.9329],[-0.586487,14.4693,45.2957],[-0.896073,14.8975,45.9457],[-0.073177,14.9304,45.9329],[0.392196,14.4891,45.2751],[-0.586487,14.4693,45.2957],[0.392196,14.4891,45.2751],[-0.106891,14.0886,44.7858],[-0.586487,14.4693,45.2957],[-0.106891,14.0886,44.7858],[-1.03105,13.8841,44.6673],[-0.586487,14.4693,45.2957],[-1.03105,13.8841,44.6673],[-1.6167,14.3385,45.2986],[-0.586487,14.4693,45.2957],[-2.36763,13.5888,44.6292],[-1.6167,14.3385,45.2986],[-1.03105,13.8841,44.6673],[-1.27139,13.0968,43.9837],[-2.36763,13.5888,44.6292],[-1.03105,13.8841,44.6673],[-1.27139,13.0968,43.9837],[-1.03105,13.8841,44.6673],[-0.0453699,13.4809,44.2116],[-0.0453699,13.4809,44.2116],[-0.112777,12.4943,43.4727],[-1.27139,13.0968,43.9837],[-1.27139,13.0968,43.9837],[-0.112777,12.4943,43.4727],[-1.45739,12.2968,43.4025],[-1.27139,13.0968,43.9837],[-1.45739,12.2968,43.4025],[-2.47739,12.6235,43.8052],[-2.47739,12.6235,43.8052],[-1.45739,12.2968,43.4025],[-2.39492,11.6452,43.1382],[-2.39492,11.6452,43.1382],[-3.76929,11.936,43.6634],[-2.47739,12.6235,43.8052],[-2.47739,12.6235,43.8052],[-3.76929,11.936,43.6634],[-3.46193,12.9624,44.3188],[-2.47739,12.6235,43.8052],[-3.46193,12.9624,44.3188],[-2.36763,13.5888,44.6292],[-3.47636,13.6218,44.9684],[-2.36763,13.5888,44.6292],[-3.46193,12.9624,44.3188],[-4.25793,13.2004,44.8411],[-3.47636,13.6218,44.9684],[-3.46193,12.9624,44.3188],[-2.36763,13.5888,44.6292],[-3.47636,13.6218,44.9684],[-3.06902,14.2649,45.6181],[-4.18086,13.8941,45.6283],[-3.06902,14.2649,45.6181],[-3.47636,13.6218,44.9684],[-3.76929,11.936,43.6634],[-4.32986,12.5675,44.2847],[-3.46193,12.9624,44.3188],[-3.76929,11.936,43.6634],[-2.39492,11.6452,43.1382],[-3.74832,10.6696,42.8815],[-3.76929,11.936,43.6634],[-3.74832,10.6696,42.8815],[-4.91832,10.9607,43.4716],[-4.97573,11.9142,44.0807],[-3.76929,11.936,43.6634],[-4.91832,10.9607,43.4716],[-4.97573,11.9142,44.0807],[-4.91832,10.9607,43.4716],[-5.86932,11.1986,44.0243],[-4.91832,10.9607,43.4716],[-6.09044,10.099,43.5087],[-5.86932,11.1986,44.0243],[-5.06222,9.8219,42.9155],[-6.09044,10.099,43.5087],[-4.91832,10.9607,43.4716],[-6.09044,10.099,43.5087],[-5.06222,9.8219,42.9155],[-6.07137,9.02635,42.9802],[-6.07137,9.02635,42.9802],[-5.06222,9.8219,42.9155],[-5.31184,8.79574,42.4896],[-6.32614,7.95295,42.6421],[-6.07137,9.02635,42.9802],[-5.31184,8.79574,42.4896],[-6.88786,8.34252,43.0906],[-6.07137,9.02635,42.9802],[-6.32614,7.95295,42.6421],[-4.37374,9.47853,42.3279],[-5.31184,8.79574,42.4896],[-5.06222,9.8219,42.9155],[-5.06222,9.8219,42.9155],[-3.74832,10.6696,42.8815],[-4.37374,9.47853,42.3279],[-4.37374,9.47853,42.3279],[-3.74832,10.6696,42.8815],[-2.91631,10.2472,42.1129],[-4.37374,9.47853,42.3279],[-2.91631,10.2472,42.1129],[-3.7979,9.73757,41.7383],[-4.55606,9.01809,41.8487],[-4.37374,9.47853,42.3279],[-3.7979,9.73757,41.7383],[-4.55606,9.01809,41.8487],[-5.04405,8.50291,42.0095],[-4.37374,9.47853,42.3279],[-4.55606,9.01809,41.8487],[-5.339,8.58671,41.632],[-5.04405,8.50291,42.0095],[-5.04405,8.50291,42.0095],[-5.339,8.58671,41.632],[-5.42561,7.99219,41.8632],[-5.66786,7.92598,42.2194],[-5.04405,8.50291,42.0095],[-5.42561,7.99219,41.8632],[-5.66786,7.92598,42.2194],[-5.31184,8.79574,42.4896],[-5.04405,8.50291,42.0095],[-2.91631,10.2472,42.1129],[-3.74832,10.6696,42.8815],[-1.95769,10.8495,42.473],[-1.83837,10.5131,41.8602],[-2.91631,10.2472,42.1129],[-1.95769,10.8495,42.473],[-0.847164,10.7811,42.1583],[-1.83837,10.5131,41.8602],[-1.95769,10.8495,42.473],[-0.847164,10.7811,42.1583],[-1.95769,10.8495,42.473],[-0.970412,11.5004,42.8345],[-0.970412,11.5004,42.8345],[0.204243,11.0368,42.4159],[-0.847164,10.7811,42.1583],[0.204243,11.0368,42.4159],[0.294143,10.7428,41.6965],[-0.847164,10.7811,42.1583],[-0.847164,10.7811,42.1583],[0.294143,10.7428,41.6965],[-0.895391,10.6379,41.6435],[-0.895391,10.6379,41.6435],[0.294143,10.7428,41.6965],[-0.624771,10.9288,41.1725],[-0.895391,10.6379,41.6435],[-0.624771,10.9288,41.1725],[-1.67778,10.8113,41.2436],[-1.67778,10.8113,41.2436],[-1.83837,10.5131,41.8602],[-0.895391,10.6379,41.6435],[-1.67778,10.8113,41.2436],[-2.91339,10.4494,41.4358],[-1.83837,10.5131,41.8602],[-1.35313,11.603,40.41],[-1.67778,10.8113,41.2436],[-0.624771,10.9288,41.1725],[-1.35313,11.603,40.41],[-0.624771,10.9288,41.1725],[0.453512,11.1142,40.805],[0.453512,11.1142,40.805],[0.307601,11.7836,39.9724],[-1.35313,11.603,40.41],[-1.35313,11.603,40.41],[0.307601,11.7836,39.9724],[-0.673748,12.6053,39.0825],[-0.673748,12.6053,39.0825],[0.307601,11.7836,39.9724],[1.27729,12.3075,39.1191],[0.674621,13.25,37.8266],[-0.673748,12.6053,39.0825],[1.27729,12.3075,39.1191],[2.5073,12.9093,38.0087],[0.674621,13.25,37.8266],[1.27729,12.3075,39.1191],[3.11759,11.8338,39.3162],[2.5073,12.9093,38.0087],[1.27729,12.3075,39.1191],[3.11759,11.8338,39.3162],[1.27729,12.3075,39.1191],[1.74545,11.2965,40.2557],[1.27729,12.3075,39.1191],[0.307601,11.7836,39.9724],[1.74545,11.2965,40.2557],[1.74545,11.2965,40.2557],[0.307601,11.7836,39.9724],[0.453512,11.1142,40.805],[-0.624771,10.9288,41.1725],[0.294143,10.7428,41.6965],[0.453512,11.1142,40.805],[-0.970412,11.5004,42.8345],[0.70232,11.5741,42.8431],[0.204243,11.0368,42.4159],[0.70232,11.5741,42.8431],[1.64891,10.9656,42.4017],[0.204243,11.0368,42.4159],[0.70232,11.5741,42.8431],[-0.970412,11.5004,42.8345],[-0.112777,12.4943,43.4727],[-0.112777,12.4943,43.4727],[1.86132,11.9699,43.1744],[0.70232,11.5741,42.8431],[1.86132,11.9699,43.1744],[-0.112777,12.4943,43.4727],[1.46493,13.15,43.9751],[-1.95769,10.8495,42.473],[-2.39492,11.6452,43.1382],[-0.970412,11.5004,42.8345],[-1.83837,10.5131,41.8602],[-0.847164,10.7811,42.1583],[-0.895391,10.6379,41.6435],[-1.83837,10.5131,41.8602],[-2.91339,10.4494,41.4358],[-2.91631,10.2472,42.1129],[-5.04405,8.50291,42.0095],[-5.31184,8.79574,42.4896],[-4.37374,9.47853,42.3279],[-3.74832,10.6696,42.8815],[-5.06222,9.8219,42.9155],[-4.91832,10.9607,43.4716],[-1.95769,10.8495,42.473],[-3.74832,10.6696,42.8815],[-2.39492,11.6452,43.1382],[-0.970412,11.5004,42.8345],[-2.39492,11.6452,43.1382],[-1.45739,12.2968,43.4025],[-0.112777,12.4943,43.4727],[-0.970412,11.5004,42.8345],[-1.45739,12.2968,43.4025],[-0.0453699,13.4809,44.2116],[1.46493,13.15,43.9751],[-0.112777,12.4943,43.4727],[1.46493,13.15,43.9751],[-0.0453699,13.4809,44.2116],[0.840666,13.9553,44.6469],[1.95388,13.9231,44.6686],[1.46493,13.15,43.9751],[0.840666,13.9553,44.6469],[1.95388,13.9231,44.6686],[0.840666,13.9553,44.6469],[1.42957,14.4392,45.2433],[1.42957,14.4392,45.2433],[2.33301,14.3828,45.2689],[1.95388,13.9231,44.6686],[2.33301,14.3828,45.2689],[2.86741,13.9774,44.8888],[1.95388,13.9231,44.6686],[2.86741,13.9774,44.8888],[2.67797,13.4381,44.3132],[1.95388,13.9231,44.6686],[2.67797,13.4381,44.3132],[2.86741,13.9774,44.8888],[3.97572,13.3195,44.5902],[3.97572,13.3195,44.5902],[2.99127,12.6081,43.7456],[2.67797,13.4381,44.3132],[2.99127,12.6081,43.7456],[1.46493,13.15,43.9751],[2.67797,13.4381,44.3132],[3.23081,14.5929,45.8657],[3.97572,13.3195,44.5902],[2.86741,13.9774,44.8888],[3.97572,13.3195,44.5902],[3.23081,14.5929,45.8657],[4.92724,14.2512,46.1826],[6.05688,13.0122,45.1921],[3.97572,13.3195,44.5902],[4.92724,14.2512,46.1826],[4.92724,14.2512,46.1826],[6.74878,13.851,46.8439],[6.05688,13.0122,45.1921],[4.92724,14.2512,46.1826],[5.37829,15.1387,47.8484],[6.74878,13.851,46.8439],[6.74878,13.851,46.8439],[5.37829,15.1387,47.8484],[6.92036,14.8363,48.6576],[6.92036,14.8363,48.6576],[8.27756,13.6662,48.1422],[6.74878,13.851,46.8439],[8.17603,12.7673,46.6423],[6.74878,13.851,46.8439],[8.27756,13.6662,48.1422],[8.27756,13.6662,48.1422],[6.92036,14.8363,48.6576],[8.11803,14.585,49.5751],[8.27756,13.6662,48.1422],[8.11803,14.585,49.5751],[9.01382,13.7614,49.3094],[9.43096,13.0002,48.7193],[8.27756,13.6662,48.1422],[9.01382,13.7614,49.3094],[9.43096,13.0002,48.7193],[9.01382,13.7614,49.3094],[10.0008,13.064,49.9513],[9.01382,13.7614,49.3094],[9.08802,14.2098,50.3841],[10.0008,13.064,49.9513],[8.27756,13.6662,48.1422],[9.43096,13.0002,48.7193],[9.30441,12.383,47.6239],[10.3967,11.8454,48.7838],[9.30441,12.383,47.6239],[9.43096,13.0002,48.7193],[9.08802,14.2098,50.3841],[9.01382,13.7614,49.3094],[8.11803,14.585,49.5751],[8.24909,15.0245,50.7836],[9.08802,14.2098,50.3841],[8.11803,14.585,49.5751],[7.02541,15.5929,50.4745],[8.24909,15.0245,50.7836],[8.11803,14.585,49.5751],[7.02541,15.5929,50.4745],[7.85439,15.6259,51.9873],[8.24909,15.0245,50.7836],[7.85439,15.6259,51.9873],[9.02271,14.7525,51.7184],[8.24909,15.0245,50.7836],[9.02271,14.7525,51.7184],[7.85439,15.6259,51.9873],[8.83504,15.2852,53.3112],[9.94798,14.2405,52.8848],[9.02271,14.7525,51.7184],[8.83504,15.2852,53.3112],[7.85439,15.6259,51.9873],[7.22066,16.3134,53.7679],[8.83504,15.2852,53.3112],[7.22066,16.3134,53.7679],[8.4605,15.7328,54.504],[8.83504,15.2852,53.3112],[7.85439,15.6259,51.9873],[6.63375,16.2895,52.0791],[7.22066,16.3134,53.7679],[7.22066,16.3134,53.7679],[6.63375,16.2895,52.0791],[5.47351,16.9685,53.0958],[5.85323,17.036,54.4695],[7.22066,16.3134,53.7679],[5.47351,16.9685,53.0958],[4.83446,17.3729,54.3654],[5.85323,17.036,54.4695],[5.47351,16.9685,53.0958],[5.47351,16.9685,53.0958],[4.06216,17.4851,53.612],[4.83446,17.3729,54.3654],[4.06216,17.4851,53.612],[3.64211,17.7028,55.0831],[4.83446,17.3729,54.3654],[3.64211,17.7028,55.0831],[5.08663,17.3432,55.5348],[4.83446,17.3729,54.3654],[2.95589,17.7689,53.9069],[3.64211,17.7028,55.0831],[4.06216,17.4851,53.612],[2.37868,17.9335,54.7909],[3.64211,17.7028,55.0831],[2.95589,17.7689,53.9069],[5.47351,16.9685,53.0958],[4.09756,17.2099,52.1575],[4.06216,17.4851,53.612],[4.09756,17.2099,52.1575],[5.47351,16.9685,53.0958],[5.41966,16.5424,51.23],[4.83446,17.3729,54.3654],[5.08663,17.3432,55.5348],[5.85323,17.036,54.4695],[5.08663,17.3432,55.5348],[6.55689,16.7591,55.5388],[5.85323,17.036,54.4695],[5.85323,17.036,54.4695],[6.55689,16.7591,55.5388],[7.22066,16.3134,53.7679],[5.47351,16.9685,53.0958],[6.63375,16.2895,52.0791],[5.41966,16.5424,51.23],[5.41966,16.5424,51.23],[6.63375,16.2895,52.0791],[7.02541,15.5929,50.4745],[6.63375,16.2895,52.0791],[7.85439,15.6259,51.9873],[7.02541,15.5929,50.4745],[9.02271,14.7525,51.7184],[9.08802,14.2098,50.3841],[8.24909,15.0245,50.7836],[9.08802,14.2098,50.3841],[9.02271,14.7525,51.7184],[9.9463,13.7316,51.2154],[6.92036,14.8363,48.6576],[7.02541,15.5929,50.4745],[8.11803,14.585,49.5751],[5.77854,15.7189,49.2988],[7.02541,15.5929,50.4745],[6.92036,14.8363,48.6576],[4.92724,14.2512,46.1826],[3.96287,15.1844,47.1019],[5.37829,15.1387,47.8484],[5.12989,12.6985,44.3305],[3.97572,13.3195,44.5902],[6.05688,13.0122,45.1921],[3.97572,13.3195,44.5902],[5.12989,12.6985,44.3305],[4.50218,12.175,43.76],[5.86913,11.987,44.108],[4.50218,12.175,43.76],[5.12989,12.6985,44.3305],[3.23081,14.5929,45.8657],[2.86741,13.9774,44.8888],[2.33301,14.3828,45.2689],[1.42957,14.4392,45.2433],[2.06217,14.8384,45.9162],[2.33301,14.3828,45.2689],[0.840666,13.9553,44.6469],[0.392196,14.4891,45.2751],[1.42957,14.4392,45.2433],[0.392196,14.4891,45.2751],[0.965171,14.9222,45.9343],[1.42957,14.4392,45.2433],[2.67797,13.4381,44.3132],[1.46493,13.15,43.9751],[1.95388,13.9231,44.6686],[-0.0453699,13.4809,44.2116],[-0.106891,14.0886,44.7858],[0.840666,13.9553,44.6469],[-2.47739,12.6235,43.8052],[-2.36763,13.5888,44.6292],[-1.27139,13.0968,43.9837],[-0.106891,14.0886,44.7858],[-0.0453699,13.4809,44.2116],[-1.03105,13.8841,44.6673],[-0.106891,14.0886,44.7858],[0.392196,14.4891,45.2751],[0.840666,13.9553,44.6469],[0.965171,14.9222,45.9343],[0.392196,14.4891,45.2751],[-0.073177,14.9304,45.9329],[0.403994,15.4324,46.7727],[-0.073177,14.9304,45.9329],[-0.549859,15.2778,46.5237],[0.403994,15.4324,46.7727],[-0.549859,15.2778,46.5237],[-0.647524,15.732,47.3418],[-1.38899,15.3512,46.7684],[-0.647524,15.732,47.3418],[-0.549859,15.2778,46.5237],[-1.38899,15.3512,46.7684],[-1.63266,15.7721,47.5567],[-0.647524,15.732,47.3418],[-2.33146,15.4747,47.2081],[-1.63266,15.7721,47.5567],[-1.38899,15.3512,46.7684],[-3.07267,14.9222,46.552],[-2.33146,15.4747,47.2081],[-1.38899,15.3512,46.7684],[-3.07267,14.9222,46.552],[-3.12505,15.442,47.4529],[-2.33146,15.4747,47.2081],[-0.586487,14.4693,45.2957],[-1.6167,14.3385,45.2986],[-0.896073,14.8975,45.9457],[-3.06902,14.2649,45.6181],[-1.6167,14.3385,45.2986],[-2.36763,13.5888,44.6292],[-2.30797,14.7522,46.0346],[-3.07267,14.9222,46.552],[-1.38899,15.3512,46.7684],[-3.12505,15.442,47.4529],[-3.07267,14.9222,46.552],[-3.82702,14.9664,46.9818],[-4.18086,13.8941,45.6283],[-3.72039,14.5245,46.2348],[-3.06902,14.2649,45.6181],[-4.51663,14.4172,46.5399],[-5.33613,13.7111,46.1035],[-5.43076,14.3464,47.0521],[-4.25793,13.2004,44.8411],[-4.18086,13.8941,45.6283],[-3.47636,13.6218,44.9684],[-4.32986,12.5675,44.2847],[-4.25793,13.2004,44.8411],[-3.46193,12.9624,44.3188],[-4.32986,12.5675,44.2847],[-3.76929,11.936,43.6634],[-4.97573,11.9142,44.0807],[-5.82759,11.9946,44.5656],[-4.97573,11.9142,44.0807],[-5.86932,11.1986,44.0243],[-6.60051,11.4446,44.601],[-5.82759,11.9946,44.5656],[-5.86932,11.1986,44.0243],[-5.88816,12.4877,45.0345],[-5.67004,12.9948,45.4388],[-5.12778,12.6617,44.7585],[-6.32001,12.6101,45.4669],[-7.129,12.2997,45.7879],[-6.41092,13.1045,46.1141],[-5.67004,12.9948,45.4388],[-5.33613,13.7111,46.1035],[-4.91472,13.315,45.3215],[-5.33613,13.7111,46.1035],[-6.23798,13.7905,46.8681],[-5.43076,14.3464,47.0521],[-6.41092,13.1045,46.1141],[-7.129,12.2997,45.7879],[-7.208,12.8937,46.4975],[-7.208,12.8937,46.4975],[-7.129,12.2997,45.7879],[-7.93093,12.4779,46.7037],[-7.57253,13.1437,47.1609],[-7.208,12.8937,46.4975],[-7.93093,12.4779,46.7037],[-7.04714,13.8556,47.6979],[-6.23798,13.7905,46.8681],[-6.91315,13.3687,46.8411],[-8.51999,13.158,48.29],[-7.9223,13.8203,48.6404],[-7.89816,13.3724,47.8423],[-6.43666,14.4999,48.1328],[-6.17045,14.2843,47.5302],[-7.04714,13.8556,47.6979],[-6.43666,14.4999,48.1328],[-5.6081,14.8436,47.9978],[-6.17045,14.2843,47.5302],[-4.7707,15.3925,48.3498],[-5.6081,14.8436,47.9978],[-5.47261,15.3457,48.8232],[-4.80933,15.8889,49.427],[-4.7707,15.3925,48.3498],[-5.47261,15.3457,48.8232],[-7.04045,14.4616,48.736],[-6.7957,15.0394,49.6187],[-6.22357,14.9729,48.8061],[-6.7957,15.0394,49.6187],[-7.04045,14.4616,48.736],[-7.70556,14.4795,49.6367],[-6.7957,15.0394,49.6187],[-7.70556,14.4795,49.6367],[-7.32109,15.0605,50.3866],[-7.70556,14.4795,49.6367],[-7.89222,14.7113,50.4295],[-7.32109,15.0605,50.3866],[-7.73029,15.0111,50.9297],[-7.32109,15.0605,50.3866],[-7.89222,14.7113,50.4295],[-8.27676,14.6536,51.0206],[-7.73029,15.0111,50.9297],[-7.89222,14.7113,50.4295],[-8.38559,14.2791,50.2619],[-8.27676,14.6536,51.0206],[-7.89222,14.7113,50.4295],[-8.27676,14.6536,51.0206],[-7.89339,15.1427,51.6861],[-7.73029,15.0111,50.9297],[-7.23029,15.4115,51.1895],[-7.32109,15.0605,50.3866],[-7.73029,15.0111,50.9297],[-6.48732,15.6079,50.5798],[-6.7957,15.0394,49.6187],[-7.32109,15.0605,50.3866],[-4.80933,15.8889,49.427],[-5.47261,15.3457,48.8232],[-5.89857,15.5055,49.6025],[-4.09841,16.4005,50.0506],[-3.25671,16.5629,49.9019],[-3.72499,16.1663,49.2427],[-4.80933,15.8889,49.427],[-4.09611,15.7781,48.6357],[-4.7707,15.3925,48.3498],[-4.7707,15.3925,48.3498],[-4.09611,15.7781,48.6357],[-3.94365,15.423,47.8499],[-3.12505,15.442,47.4529],[-3.82702,14.9664,46.9818],[-3.94365,15.423,47.8499],[-2.4252,15.8273,47.8828],[-2.33146,15.4747,47.2081],[-3.12505,15.442,47.4529],[-2.43926,16.1485,48.5259],[-3.219,15.8991,48.3768],[-2.81409,16.348,49.1453],[-2.43926,16.1485,48.5259],[-1.95399,16.4405,49.006],[-1.79374,16.1219,48.2621],[-2.4252,15.8273,47.8828],[-1.63266,15.7721,47.5567],[-2.33146,15.4747,47.2081],[-0.647524,15.732,47.3418],[-1.63266,15.7721,47.5567],[-1.14246,16.0561,47.9922],[-0.447636,16.2091,48.2148],[-0.647524,15.732,47.3418],[-1.14246,16.0561,47.9922],[-0.447636,16.2091,48.2148],[0.348969,15.9852,47.762],[-0.647524,15.732,47.3418],[0.348359,16.4303,48.6323],[0.348969,15.9852,47.762],[-0.447636,16.2091,48.2148],[-0.412994,16.5978,49.0269],[0.348359,16.4303,48.6323],[-0.447636,16.2091,48.2148],[-1.79374,16.1219,48.2621],[-1.95399,16.4405,49.006],[-1.16051,16.3844,48.6715],[-2.81409,16.348,49.1453],[-1.95399,16.4405,49.006],[-2.43926,16.1485,48.5259],[-3.72499,16.1663,49.2427],[-3.25671,16.5629,49.9019],[-2.81409,16.348,49.1453],[-2.91446,16.8886,50.6034],[-3.25671,16.5629,49.9019],[-3.63103,16.7063,50.5188],[-3.53107,16.9421,51.2059],[-2.51258,17.2325,51.4853],[-2.91446,16.8886,50.6034],[-1.64253,17.2232,50.9783],[-2.51258,17.2325,51.4853],[-1.52517,17.4501,51.707],[-1.65877,17.0019,50.3126],[-2.29321,16.7419,49.8815],[-2.21293,17.0352,50.6461],[-0.883754,17.1436,50.5055],[-1.64253,17.2232,50.9783],[-1.00936,17.375,51.2464],[-1.23544,16.7697,49.5944],[-2.29321,16.7419,49.8815],[-1.65877,17.0019,50.3126],[-0.292979,16.9301,49.8115],[-0.412994,16.5978,49.0269],[-1.23544,16.7697,49.5944],[-0.292979,16.9301,49.8115],[0.267388,16.7522,49.3319],[-0.412994,16.5978,49.0269],[-0.270392,17.3933,51.1857],[-0.883754,17.1436,50.5055],[-1.00936,17.375,51.2464],[-0.06602,17.181,50.4772],[0.572382,17.3207,50.9252],[0.531299,17.0168,50.0199],[0.475945,17.6496,52.1036],[-0.270392,17.3933,51.1857],[-0.695907,17.5672,51.8769],[1.17236,17.4388,51.3409],[1.53947,17.1118,50.4116],[0.572382,17.3207,50.9252],[1.53947,17.1118,50.4116],[1.17236,17.4388,51.3409],[1.87361,17.4133,51.3631],[1.53947,17.1118,50.4116],[0.531299,17.0168,50.0199],[0.572382,17.3207,50.9252],[0.267388,16.7522,49.3319],[-0.292979,16.9301,49.8115],[0.531299,17.0168,50.0199],[-0.412994,16.5978,49.0269],[0.267388,16.7522,49.3319],[0.348359,16.4303,48.6323],[2.0686,16.7279,49.5002],[1.81124,16.4414,48.7863],[1.116,16.6925,49.2667],[0.348969,15.9852,47.762],[0.348359,16.4303,48.6323],[1.16504,16.2519,48.3127],[0.348969,15.9852,47.762],[0.403994,15.4324,46.7727],[-0.647524,15.732,47.3418],[0.965171,14.9222,45.9343],[-0.073177,14.9304,45.9329],[0.403994,15.4324,46.7727],[0.965171,14.9222,45.9343],[2.06217,14.8384,45.9162],[1.42957,14.4392,45.2433],[3.23081,14.5929,45.8657],[2.33301,14.3828,45.2689],[2.06217,14.8384,45.9162],[4.92724,14.2512,46.1826],[3.23081,14.5929,45.8657],[3.96287,15.1844,47.1019],[2.16151,15.6791,47.3637],[2.7053,15.2716,46.7807],[1.60484,15.3344,46.6722],[2.16151,15.6791,47.3637],[1.29045,15.8021,47.4664],[2.03492,16.0786,48.0971],[2.61815,16.3724,48.8502],[2.03492,16.0786,48.0971],[1.81124,16.4414,48.7863],[3.7661,16.3224,49.2248],[2.61815,16.3724,48.8502],[2.82086,16.6875,49.6176],[4.23655,15.7296,48.1941],[3.96287,15.1844,47.1019],[3.09369,15.8363,47.933],[3.96287,15.1844,47.1019],[4.23655,15.7296,48.1941],[5.37829,15.1387,47.8484],[5.77854,15.7189,49.2988],[6.92036,14.8363,48.6576],[5.37829,15.1387,47.8484],[5.77854,15.7189,49.2988],[5.41966,16.5424,51.23],[7.02541,15.5929,50.4745],[3.7661,16.3224,49.2248],[4.81854,16.3175,49.8589],[4.82551,15.9027,48.8731],[3.1018,16.9362,50.3922],[3.7661,16.3224,49.2248],[2.82086,16.6875,49.6176],[2.46733,17.1916,50.8542],[3.2314,17.2082,51.3064],[3.1018,16.9362,50.3922],[4.09493,16.8034,50.6875],[4.09756,17.2099,52.1575],[5.41966,16.5424,51.23],[2.94508,17.4948,52.1921],[3.2314,17.2082,51.3064],[2.53487,17.4084,51.5667],[4.09756,17.2099,52.1575],[3.29351,17.5835,52.978],[4.06216,17.4851,53.612],[2.33609,17.7491,52.9975],[2.94508,17.4948,52.1921],[2.09881,17.5973,52.1082],[2.95589,17.7689,53.9069],[4.06216,17.4851,53.612],[3.29351,17.5835,52.978],[1.47453,17.7503,52.5722],[2.33609,17.7491,52.9975],[2.09881,17.5973,52.1082],[0.475945,17.6496,52.1036],[1.47453,17.7503,52.5722],[1.41506,17.5952,51.9026],[0.475945,17.6496,52.1036],[-0.575698,17.7638,52.6833],[0.205032,17.9157,53.3752],[0.979822,17.8664,53.0142],[1.13891,17.9783,53.7472],[1.58628,17.8861,53.2502],[-0.485064,18.0066,54.2926],[0.570572,18.05,54.3701],[0.205032,17.9157,53.3752],[0.133264,18.0855,55.0219],[0.570572,18.05,54.3701],[-0.485064,18.0066,54.2926],[-0.605602,18.0567,55.2868],[0.133264,18.0855,55.0219],[-0.485064,18.0066,54.2926],[-1.49106,17.9525,54.773],[-0.605602,18.0567,55.2868],[-0.485064,18.0066,54.2926],[0.880922,18.0893,55.2127],[0.570572,18.05,54.3701],[0.133264,18.0855,55.0219],[0.22075,18.0772,55.9669],[0.880922,18.0893,55.2127],[0.133264,18.0855,55.0219],[1.9816,17.925,53.8847],[1.58628,17.8861,53.2502],[1.13891,17.9783,53.7472],[2.37868,17.9335,54.7909],[2.95589,17.7689,53.9069],[1.9816,17.925,53.8847],[0.880922,18.0893,55.2127],[1.45417,18.0347,54.5759],[0.570572,18.05,54.3701],[0.880922,18.0893,55.2127],[0.22075,18.0772,55.9669],[1.11925,18.0779,55.9048],[1.68818,18.0419,55.4291],[1.73389,18.0142,56.2743],[2.5113,17.9282,55.7628],[1.11925,18.0779,55.9048],[0.22075,18.0772,55.9669],[1.01275,18.0335,56.6298],[2.5113,17.9282,55.7628],[1.73389,18.0142,56.2743],[2.35837,17.9066,56.6875],[3.64211,17.7028,55.0831],[2.37868,17.9335,54.7909],[2.5113,17.9282,55.7628],[3.25025,17.7967,56.1898],[2.57378,17.7215,57.9491],[3.68229,17.6452,57.1413],[3.84138,17.4925,58.0602],[4.75197,17.3601,57.2106],[3.68229,17.6452,57.1413],[5.08663,17.3432,55.5348],[3.64211,17.7028,55.0831],[4.0753,17.6204,56.2568],[5.08663,17.3432,55.5348],[5.65522,17.1387,56.4786],[6.55689,16.7591,55.5388],[6.55689,16.7591,55.5388],[5.65522,17.1387,56.4786],[6.12891,16.7917,57.5692],[6.55689,16.7591,55.5388],[7.82742,16.1313,55.2618],[7.22066,16.3134,53.7679],[8.4605,15.7328,54.504],[7.22066,16.3134,53.7679],[7.82742,16.1313,55.2618],[8.4605,15.7328,54.504],[9.25591,15.1713,54.5225],[8.83504,15.2852,53.3112],[9.79319,14.6363,54.0071],[8.83504,15.2852,53.3112],[9.25591,15.1713,54.5225],[9.79319,14.6363,54.0071],[9.25591,15.1713,54.5225],[9.98221,14.4959,55.1996],[9.94798,14.2405,52.8848],[8.83504,15.2852,53.3112],[9.79319,14.6363,54.0071],[11.139,12.8848,52.9405],[10.6616,13.6853,54.2681],[11.7799,12.233,54.5395],[9.02271,14.7525,51.7184],[9.94798,14.2405,52.8848],[9.9463,13.7316,51.2154],[10.0008,13.064,49.9513],[9.08802,14.2098,50.3841],[9.9463,13.7316,51.2154],[10.3967,11.8454,48.7838],[9.43096,13.0002,48.7193],[10.0008,13.064,49.9513],[11.8646,10.7389,50.648],[12.1152,10.9712,51.8925],[12.461,10.0436,51.5382],[11.0393,11.8609,50.2145],[10.8506,12.6858,51.2832],[11.5456,11.6728,51.2533],[11.139,12.8848,52.9405],[10.8506,12.6858,51.2832],[10.5212,13.4379,52.054],[12.2617,11.1681,53.0364],[12.1152,10.9712,51.8925],[11.6654,11.9355,52.2867],[12.2765,11.4058,54.0378],[12.7513,10.3932,53.9658],[12.2617,11.1681,53.0364],[11.139,12.8848,52.9405],[11.7799,12.233,54.5395],[11.8671,11.9744,53.3718],[12.7513,10.3932,53.9658],[12.2765,11.4058,54.0378],[12.4971,11.0545,55.2639],[12.1813,11.4963,56.695],[12.9148,10.1752,56.678],[12.4971,11.0545,55.2639],[11.9184,12.0604,55.6698],[11.7799,12.233,54.5395],[10.952,13.3034,56.1533],[10.952,13.3034,56.1533],[10.451,13.7292,57.663],[11.3919,12.4112,58.0126],[12.4528,10.7183,58.1388],[12.9148,10.1752,56.678],[12.1813,11.4963,56.695],[12.4528,10.7183,58.1388],[11.6956,11.5,59.3542],[12.4543,10.1613,59.5726],[11.7279,10.7419,60.6188],[11.6956,11.5,59.3542],[10.8713,12.1033,60.3808],[9.60922,12.9689,61.2453],[10.7178,11.2094,61.8936],[10.8713,12.1033,60.3808],[9.60922,12.9689,61.2453],[9.4809,12.0736,62.744],[10.7178,11.2094,61.8936],[8.55701,13.1361,62.5688],[9.4809,12.0736,62.744],[9.60922,12.9689,61.2453],[8.55701,13.1361,62.5688],[9.60922,12.9689,61.2453],[7.58178,14.2301,62.0661],[7.51905,13.5179,63.182],[8.55701,13.1361,62.5688],[7.58178,14.2301,62.0661],[6.78223,14.2471,62.8746],[7.51905,13.5179,63.182],[7.58178,14.2301,62.0661],[5.66578,15.16,62.351],[6.78223,14.2471,62.8746],[7.58178,14.2301,62.0661],[5.66578,15.16,62.351],[6.16112,13.8521,63.7769],[6.78223,14.2471,62.8746],[6.78223,14.2471,62.8746],[6.16112,13.8521,63.7769],[7.51905,13.5179,63.182],[8.55701,13.1361,62.5688],[7.51905,13.5179,63.182],[8.41959,12.4983,63.5227],[8.41959,12.4983,63.5227],[7.51905,13.5179,63.182],[7.44812,12.7532,64.1069],[9.60922,12.9689,61.2453],[7.95963,14.8281,60.535],[7.58178,14.2301,62.0661],[9.4809,12.0736,62.744],[8.55701,13.1361,62.5688],[8.41959,12.4983,63.5227],[9.213,11.3398,63.8798],[9.4809,12.0736,62.744],[8.41959,12.4983,63.5227],[8.16144,11.7023,64.5528],[9.213,11.3398,63.8798],[8.41959,12.4983,63.5227],[9.213,11.3398,63.8798],[10.1261,10.8935,63.2133],[9.4809,12.0736,62.744],[9.60922,12.9689,61.2453],[9.22146,14.1479,59.9024],[7.95963,14.8281,60.535],[10.6253,13.2651,58.6951],[10.2309,13.2596,59.7256],[11.0054,12.5631,59.2581],[11.3919,12.4112,58.0126],[10.451,13.7292,57.663],[10.6253,13.2651,58.6951],[9.89103,14.4936,56.6119],[10.451,13.7292,57.663],[10.952,13.3034,56.1533],[8.99194,15.2286,57.1762],[9.89103,14.4936,56.6119],[8.9317,15.395,55.726],[9.07096,14.9847,58.16],[9.8043,14.134,58.7005],[9.69,14.5571,57.6835],[7.76085,16.0644,56.8139],[8.32835,15.5715,57.9488],[8.99194,15.2286,57.1762],[8.28767,15.2228,59.1183],[9.8043,14.134,58.7005],[9.07096,14.9847,58.16],[7.28413,16.075,58.3756],[8.32835,15.5715,57.9488],[7.76085,16.0644,56.8139],[7.28413,16.075,58.3756],[6.10353,16.5561,58.8553],[6.8082,15.8509,59.8731],[6.8082,15.8509,59.8731],[6.10353,16.5561,58.8553],[5.21196,16.6177,59.8512],[8.28767,15.2228,59.1183],[7.95963,14.8281,60.535],[9.22146,14.1479,59.9024],[6.79173,15.2607,61.2064],[7.58178,14.2301,62.0661],[7.95963,14.8281,60.535],[5.66837,15.933,61.0331],[6.8082,15.8509,59.8731],[5.21196,16.6177,59.8512],[6.79173,15.2607,61.2064],[5.66578,15.16,62.351],[7.58178,14.2301,62.0661],[4.76493,15.934,61.7896],[3.63303,16.2918,61.7927],[4.21332,15.6032,62.6518],[4.37151,14.7303,63.7449],[6.16112,13.8521,63.7769],[5.66578,15.16,62.351],[4.37151,14.7303,63.7449],[4.3765,13.5908,65.0673],[6.16112,13.8521,63.7769],[4.3765,13.5908,65.0673],[4.37151,14.7303,63.7449],[3.52444,14.2936,64.6882],[3.04885,12.6753,66.4156],[3.97076,12.0179,66.658],[3.87152,12.9213,65.947],[5.04477,11.3522,66.7458],[3.97076,12.0179,66.658],[4.01123,10.7021,67.5603],[5.04477,11.3522,66.7458],[4.01123,10.7021,67.5603],[5.40446,10.055,67.445],[6.60414,10.6021,66.4783],[5.04477,11.3522,66.7458],[5.40446,10.055,67.445],[6.53231,9.38396,67.3128],[6.60414,10.6021,66.4783],[5.40446,10.055,67.445],[5.40446,10.055,67.445],[5.73082,8.71096,68.0355],[6.53231,9.38396,67.3128],[6.53231,9.38396,67.3128],[5.73082,8.71096,68.0355],[7.0221,8.15849,67.6628],[7.82149,9.15771,66.6162],[6.53231,9.38396,67.3128],[7.0221,8.15849,67.6628],[7.82149,9.15771,66.6162],[7.0221,8.15849,67.6628],[8.15391,7.62848,67.1948],[7.82149,9.15771,66.6162],[8.15391,7.62848,67.1948],[9.29784,7.83757,66.2039],[9.03215,9.50773,65.4857],[7.82149,9.15771,66.6162],[9.29784,7.83757,66.2039],[8.9155,6.36508,67.1241],[9.29784,7.83757,66.2039],[8.15391,7.62848,67.1948],[8.9155,6.36508,67.1241],[8.15391,7.62848,67.1948],[7.44082,6.52784,68.0229],[8.42375,4.96182,67.8415],[8.9155,6.36508,67.1241],[7.44082,6.52784,68.0229],[7.18859,5.1387,68.5324],[8.42375,4.96182,67.8415],[7.44082,6.52784,68.0229],[7.18859,5.1387,68.5324],[7.44082,6.52784,68.0229],[5.83642,6.01635,68.9027],[6.4004,4.06405,69.0334],[7.18859,5.1387,68.5324],[5.83642,6.01635,68.9027],[4.62121,4.79452,69.5915],[6.4004,4.06405,69.0334],[5.83642,6.01635,68.9027],[4.06127,6.33363,69.4539],[4.62121,4.79452,69.5915],[5.83642,6.01635,68.9027],[4.69484,7.74125,68.7975],[4.06127,6.33363,69.4539],[5.83642,6.01635,68.9027],[6.18365,7.44334,68.3634],[4.69484,7.74125,68.7975],[5.83642,6.01635,68.9027],[6.18365,7.44334,68.3634],[5.73082,8.71096,68.0355],[4.69484,7.74125,68.7975],[5.73082,8.71096,68.0355],[4.40346,9.33489,68.2124],[4.69484,7.74125,68.7975],[4.40346,9.33489,68.2124],[3.24743,8.81439,68.8048],[4.69484,7.74125,68.7975],[3.24743,8.81439,68.8048],[3.28889,7.49321,69.3239],[4.69484,7.74125,68.7975],[2.34746,8.39784,69.1921],[3.28889,7.49321,69.3239],[3.24743,8.81439,68.8048],[2.34746,8.39784,69.1921],[3.24743,8.81439,68.8048],[2.24392,9.06049,68.9323],[2.34746,8.39784,69.1921],[2.24392,9.06049,68.9323],[1.56338,8.76386,69.1613],[1.38417,7.81362,69.5506],[2.34746,8.39784,69.1921],[1.56338,8.76386,69.1613],[0.749214,8.53627,69.324],[1.38417,7.81362,69.5506],[1.56338,8.76386,69.1613],[0.749214,8.53627,69.324],[1.56338,8.76386,69.1613],[0.949987,9.18081,69.0309],[0.0206383,9.18036,69.0558],[0.749214,8.53627,69.324],[0.949987,9.18081,69.0309],[0.749214,8.53627,69.324],[0.0206383,9.18036,69.0558],[0.0217104,8.37755,69.4128],[1.56338,8.76386,69.1613],[1.59273,9.52673,68.7978],[0.949987,9.18081,69.0309],[0.76846,9.82846,68.7141],[0.949987,9.18081,69.0309],[1.59273,9.52673,68.7978],[1.55988,10.5055,68.2529],[0.76846,9.82846,68.7141],[1.59273,9.52673,68.7978],[2.43339,9.71974,68.5597],[1.55988,10.5055,68.2529],[1.59273,9.52673,68.7978],[2.43339,9.71974,68.5597],[1.59273,9.52673,68.7978],[2.24392,9.06049,68.9323],[1.55988,10.5055,68.2529],[2.43339,9.71974,68.5597],[2.64538,10.5106,68.0769],[2.43339,9.71974,68.5597],[3.34171,9.84028,68.2861],[2.64538,10.5106,68.0769],[3.34171,9.84028,68.2861],[4.01123,10.7021,67.5603],[2.64538,10.5106,68.0769],[2.64538,10.5106,68.0769],[4.01123,10.7021,67.5603],[2.94734,11.067,67.6681],[2.27928,11.1938,67.7265],[2.64538,10.5106,68.0769],[2.94734,11.067,67.6681],[4.01123,10.7021,67.5603],[2.85424,11.7835,67.1763],[2.94734,11.067,67.6681],[4.01123,10.7021,67.5603],[3.34171,9.84028,68.2861],[4.40346,9.33489,68.2124],[2.43339,9.71974,68.5597],[3.24743,8.81439,68.8048],[3.34171,9.84028,68.2861],[1.38417,7.81362,69.5506],[0.749214,8.53627,69.324],[0.433884,7.81077,69.6199],[2.24392,9.06049,68.9323],[1.59273,9.52673,68.7978],[1.56338,8.76386,69.1613],[3.24743,8.81439,68.8048],[2.43339,9.71974,68.5597],[2.24392,9.06049,68.9323],[2.34746,8.39784,69.1921],[1.38417,7.81362,69.5506],[3.28889,7.49321,69.3239],[1.38417,7.81362,69.5506],[2.28232,7.19836,69.6517],[3.28889,7.49321,69.3239],[2.28232,7.19836,69.6517],[2.80083,6.51127,69.7491],[3.28889,7.49321,69.3239],[2.80083,6.51127,69.7491],[4.06127,6.33363,69.4539],[3.28889,7.49321,69.3239],[4.06127,6.33363,69.4539],[2.80083,6.51127,69.7491],[3.01532,5.38098,69.9391],[3.01532,5.38098,69.9391],[2.80083,6.51127,69.7491],[1.85415,5.92077,70.0524],[1.60609,6.84899,69.8516],[1.85415,5.92077,70.0524],[2.80083,6.51127,69.7491],[1.02803,6.35568,70.0382],[1.85415,5.92077,70.0524],[1.60609,6.84899,69.8516],[0.758593,7.0608,69.8519],[1.02803,6.35568,70.0382],[1.60609,6.84899,69.8516],[1.38417,7.81362,69.5506],[0.758593,7.0608,69.8519],[1.60609,6.84899,69.8516],[0.865342,5.60423,70.2143],[1.85415,5.92077,70.0524],[1.02803,6.35568,70.0382],[-0.00793047,6.28883,70.07],[0.865342,5.60423,70.2143],[1.02803,6.35568,70.0382],[0.865342,5.60423,70.2143],[-0.00793047,6.28883,70.07],[0.0530853,5.40506,70.2869],[0.865342,5.60423,70.2143],[1.71681,4.75465,70.2731],[1.85415,5.92077,70.0524],[1.71681,4.75465,70.2731],[0.865342,5.60423,70.2143],[0.528292,4.78196,70.3822],[2.28232,7.19836,69.6517],[1.60609,6.84899,69.8516],[2.80083,6.51127,69.7491],[2.28232,7.19836,69.6517],[1.38417,7.81362,69.5506],[1.60609,6.84899,69.8516],[3.24743,8.81439,68.8048],[4.40346,9.33489,68.2124],[3.34171,9.84028,68.2861],[3.28889,7.49321,69.3239],[4.06127,6.33363,69.4539],[4.69484,7.74125,68.7975],[4.62121,4.79452,69.5915],[5.24671,2.89283,69.5765],[6.4004,4.06405,69.0334],[6.4004,4.06405,69.0334],[5.24671,2.89283,69.5765],[6.59974,2.20973,69.0167],[7.4594,3.18505,68.6194],[6.4004,4.06405,69.0334],[6.59974,2.20973,69.0167],[7.4594,3.18505,68.6194],[6.59974,2.20973,69.0167],[8.12583,2.02181,68.1972],[7.4594,3.18505,68.6194],[8.12583,2.02181,68.1972],[8.44469,3.46867,68.0226],[7.61575,4.15827,68.4805],[7.4594,3.18505,68.6194],[8.44469,3.46867,68.0226],[7.61575,4.15827,68.4805],[8.44469,3.46867,68.0226],[8.42375,4.96182,67.8415],[8.44469,3.46867,68.0226],[9.48599,3.97297,67.2414],[8.42375,4.96182,67.8415],[8.42375,4.96182,67.8415],[9.48599,3.97297,67.2414],[9.55082,5.17481,66.9995],[6.59974,2.20973,69.0167],[7.29382,0.91785,68.584],[8.12583,2.02181,68.1972],[7.4594,3.18505,68.6194],[7.61575,4.15827,68.4805],[6.4004,4.06405,69.0334],[6.59974,2.20973,69.0167],[5.24671,2.89283,69.5765],[5.2716,1.4981,69.542],[6.23471,0.827217,69.1049],[6.59974,2.20973,69.0167],[5.2716,1.4981,69.542],[7.61575,4.15827,68.4805],[7.18859,5.1387,68.5324],[6.4004,4.06405,69.0334],[7.44082,6.52784,68.0229],[6.18365,7.44334,68.3634],[5.83642,6.01635,68.9027],[6.18365,7.44334,68.3634],[7.44082,6.52784,68.0229],[7.0221,8.15849,67.6628],[7.18859,5.1387,68.5324],[7.61575,4.15827,68.4805],[8.42375,4.96182,67.8415],[8.9155,6.36508,67.1241],[8.42375,4.96182,67.8415],[9.55082,5.17481,66.9995],[8.9155,6.36508,67.1241],[9.55082,5.17481,66.9995],[10.2402,6.10418,66.1015],[9.55082,5.17481,66.9995],[10.3869,4.56134,66.4092],[10.2402,6.10418,66.1015],[9.29784,7.83757,66.2039],[8.9155,6.36508,67.1241],[10.2402,6.10418,66.1015],[8.15391,7.62848,67.1948],[7.0221,8.15849,67.6628],[7.44082,6.52784,68.0229],[6.18365,7.44334,68.3634],[7.0221,8.15849,67.6628],[5.73082,8.71096,68.0355],[5.73082,8.71096,68.0355],[5.40446,10.055,67.445],[4.40346,9.33489,68.2124],[6.60414,10.6021,66.4783],[6.53231,9.38396,67.3128],[7.82149,9.15771,66.6162],[6.60414,10.6021,66.4783],[7.82149,9.15771,66.6162],[7.92739,10.651,65.5749],[4.01123,10.7021,67.5603],[4.40346,9.33489,68.2124],[5.40446,10.055,67.445],[3.97076,12.0179,66.658],[2.85424,11.7835,67.1763],[4.01123,10.7021,67.5603],[5.87362,11.6462,66.1504],[5.04477,11.3522,66.7458],[6.60414,10.6021,66.4783],[6.99126,11.7644,65.3543],[5.87362,11.6462,66.1504],[6.60414,10.6021,66.4783],[5.60061,13.0006,65.0641],[4.3765,13.5908,65.0673],[4.79538,12.4886,65.9599],[4.3765,13.5908,65.0673],[5.60061,13.0006,65.0641],[6.16112,13.8521,63.7769],[6.16112,13.8521,63.7769],[7.44812,12.7532,64.1069],[7.51905,13.5179,63.182],[8.16144,11.7023,64.5528],[8.41959,12.4983,63.5227],[7.44812,12.7532,64.1069],[7.92739,10.651,65.5749],[6.99126,11.7644,65.3543],[6.60414,10.6021,66.4783],[8.89059,10.6829,64.7849],[9.213,11.3398,63.8798],[8.16144,11.7023,64.5528],[9.03215,9.50773,65.4857],[7.92739,10.651,65.5749],[7.82149,9.15771,66.6162],[9.96398,9.88258,64.297],[9.213,11.3398,63.8798],[8.89059,10.6829,64.7849],[10.0296,8.59106,65.16],[9.03215,9.50773,65.4857],[9.29784,7.83757,66.2039],[10.4748,7.43128,65.3424],[10.0296,8.59106,65.16],[9.29784,7.83757,66.2039],[9.96398,9.88258,64.297],[10.1261,10.8935,63.2133],[9.213,11.3398,63.8798],[10.7178,11.2094,61.8936],[9.4809,12.0736,62.744],[10.1261,10.8935,63.2133],[11.7279,10.7419,60.6188],[10.8713,12.1033,60.3808],[10.7178,11.2094,61.8936],[12.4543,10.1613,59.5726],[11.6956,11.5,59.3542],[11.7279,10.7419,60.6188],[12.4543,10.1613,59.5726],[13.0852,8.73913,59.8373],[13.0046,9.50817,58.7455],[13.2066,7.76076,60.7687],[13.7563,6.99037,59.702],[13.0852,8.73913,59.8373],[13.3691,6.43776,61.4224],[13.2066,7.76076,60.7687],[12.7684,7.80538,61.7778],[11.8944,9.60369,61.7141],[12.7302,8.73228,60.9749],[12.4338,9.62322,60.5719],[11.0109,9.70713,63.0779],[11.9607,8.23214,62.9048],[11.8944,9.60369,61.7141],[12.6526,6.87054,62.7174],[13.3691,6.43776,61.4224],[12.7684,7.80538,61.7778],[11.964,7.12607,63.694],[12.3939,5.89977,63.6531],[12.6526,6.87054,62.7174],[11.9607,8.23214,62.9048],[11.0109,9.70713,63.0779],[11.0412,8.20173,64.2246],[11.4024,6.40229,64.7576],[12.3939,5.89977,63.6531],[11.964,7.12607,63.694],[10.4748,7.43128,65.3424],[11.0412,8.20173,64.2246],[10.0296,8.59106,65.16],[10.4748,7.43128,65.3424],[9.29784,7.83757,66.2039],[10.2402,6.10418,66.1015],[12.0165,5.02032,64.4779],[12.3939,5.89977,63.6531],[11.4024,6.40229,64.7576],[12.8357,4.35518,63.3851],[12.0165,5.02032,64.4779],[11.9101,3.42273,64.8494],[11.1671,5.03315,65.5103],[10.2402,6.10418,66.1015],[10.3869,4.56134,66.4092],[11.9101,3.42273,64.8494],[11.0416,4.0305,65.8645],[10.4471,3.19139,66.4781],[10.3869,4.56134,66.4092],[9.55082,5.17481,66.9995],[9.48599,3.97297,67.2414],[9.37676,2.59713,67.3749],[9.48599,3.97297,67.2414],[8.44469,3.46867,68.0226],[11.1638,2.01585,65.7672],[10.4471,3.19139,66.4781],[10.2117,1.9424,66.6905],[9.30785,1.12737,67.3024],[10.5245,0.869197,66.2746],[10.2117,1.9424,66.6905],[8.12583,2.02181,68.1972],[9.37676,2.59713,67.3749],[8.44469,3.46867,68.0226],[8.13345,-0.770185,67.7347],[9.75816,-0.468493,66.6255],[9.30785,1.12737,67.3024],[7.29382,0.91785,68.584],[8.24427,0.809594,68.0219],[8.12583,2.02181,68.1972],[6.67008,-0.373486,68.6974],[6.94213,-1.63393,68.2477],[8.13345,-0.770185,67.7347],[6.59974,2.20973,69.0167],[6.23471,0.827217,69.1049],[7.29382,0.91785,68.584],[5.98007,-1.40727,68.7899],[6.94213,-1.63393,68.2477],[6.67008,-0.373486,68.6974],[5.98007,-1.40727,68.7899],[4.87196,-2.01606,69.0324],[6.00433,-2.84105,68.2911],[3.42122,-2.08388,69.4183],[4.87196,-2.01606,69.0324],[4.35649,-1.09707,69.4712],[4.35649,-1.09707,69.4712],[3.79998,-0.17541,69.7906],[3.42122,-2.08388,69.4183],[3.79998,-0.17541,69.7906],[2.23029,-0.8239,69.9798],[3.42122,-2.08388,69.4183],[3.79998,-0.17541,69.7906],[2.92749,1.07122,70.1577],[2.23029,-0.8239,69.9798],[2.92749,1.07122,70.1577],[1.87018,0.407028,70.298],[2.23029,-0.8239,69.9798],[5.22486,-0.100151,69.3633],[6.23471,0.827217,69.1049],[5.2716,1.4981,69.542],[3.96709,2.22321,69.9753],[5.2716,1.4981,69.542],[5.24671,2.89283,69.5765],[2.92749,1.07122,70.1577],[3.79998,-0.17541,69.7906],[4.25973,0.909849,69.8281],[2.23575,2.51375,70.3515],[1.67982,1.32876,70.4138],[2.92749,1.07122,70.1577],[4.21458,3.46864,69.8994],[3.96709,2.22321,69.9753],[5.24671,2.89283,69.5765],[4.21458,3.46864,69.8994],[5.24671,2.89283,69.5765],[4.62121,4.79452,69.5915],[4.62121,4.79452,69.5915],[4.06127,6.33363,69.4539],[3.01532,5.38098,69.9391],[1.71681,4.75465,70.2731],[3.01532,5.38098,69.9391],[1.85415,5.92077,70.0524],[2.90366,3.90104,70.1618],[1.81396,3.65211,70.3959],[2.23575,2.51375,70.3515],[0.974988,2.16115,70.5001],[1.67982,1.32876,70.4138],[2.23575,2.51375,70.3515],[2.92749,1.07122,70.1577],[1.67982,1.32876,70.4138],[1.87018,0.407028,70.298],[0.719432,1.12984,70.481],[0.650968,0.360267,70.413],[1.23542,0.613614,70.4162],[0.719432,1.12984,70.481],[-0.134143,0.581937,70.4147],[0.650968,0.360267,70.413],[2.23029,-0.8239,69.9798],[1.87018,0.407028,70.298],[1.1727,-0.214712,70.2737],[1.94973,-2.28126,69.6341],[3.42122,-2.08388,69.4183],[2.23029,-0.8239,69.9798],[2.49464,-3.53759,69.0988],[1.94973,-2.28126,69.6341],[0.767034,-3.37683,69.3308],[0.767034,-3.37683,69.3308],[-0.326156,-2.41575,69.7051],[-0.905835,-3.61444,69.2135],[-0.905835,-3.61444,69.2135],[-0.326156,-2.41575,69.7051],[-1.66479,-2.17946,69.6445],[-1.66479,-2.17946,69.6445],[-1.65491,-0.665452,70.0484],[-2.80478,-1.16667,69.7029],[0.197917,-0.370489,70.2765],[-0.579495,-1.2411,70.0407],[0.77971,-1.54631,69.953],[-0.134143,0.581937,70.4147],[0.197917,-0.370489,70.2765],[0.650968,0.360267,70.413],[-1.47724,0.837426,70.2989],[-1.65491,-0.665452,70.0484],[-0.737939,-0.178097,70.2675],[-0.175608,1.67816,70.4858],[-0.134143,0.581937,70.4147],[0.719432,1.12984,70.481],[-0.175608,1.67816,70.4858],[0.0856762,3.11213,70.518],[-1.19102,2.22746,70.4351],[-1.47724,0.837426,70.2989],[-2.41272,2.12754,70.2372],[-2.85726,0.983886,70.0696],[-1.88169,3.52643,70.3257],[-3.17976,3.31688,70.0719],[-2.41272,2.12754,70.2372],[-0.792614,3.92675,70.4412],[-1.56782,4.88804,70.2341],[-1.88169,3.52643,70.3257],[-1.19102,2.22746,70.4351],[0.0856762,3.11213,70.518],[-0.952964,3.19957,70.4796],[0.907735,3.93227,70.4625],[0.0856762,3.11213,70.518],[1.21839,3.08891,70.4899],[0.907735,3.93227,70.4625],[1.71681,4.75465,70.2731],[0.528292,4.78196,70.3822],[-0.414729,4.7801,70.3754],[-0.792614,3.92675,70.4412],[0.0550974,4.11644,70.4753],[0.865342,5.60423,70.2143],[0.0530853,5.40506,70.2869],[0.528292,4.78196,70.3822],[0.0530853,5.40506,70.2869],[-0.00793047,6.28883,70.07],[-0.655321,5.49836,70.2318],[-0.414729,4.7801,70.3754],[-1.56782,4.88804,70.2341],[-0.792614,3.92675,70.4412],[-2.61091,5.24864,70.0194],[-1.56782,4.88804,70.2341],[-2.08504,5.72656,70.0281],[-2.05181,6.32867,69.9008],[-2.79262,6.09102,69.8213],[-2.08504,5.72656,70.0281],[-1.63598,6.82508,69.8208],[-2.36987,6.93017,69.6744],[-2.05181,6.32867,69.9008],[-0.827041,7.00248,69.8426],[-1.57461,7.76009,69.5174],[-1.63598,6.82508,69.8208],[-0.655321,5.49836,70.2318],[-0.00793047,6.28883,70.07],[-1.27259,6.07676,70.046],[0.758593,7.0608,69.8519],[-0.00793047,6.28883,70.07],[1.02803,6.35568,70.0382],[0.758593,7.0608,69.8519],[1.38417,7.81362,69.5506],[0.433884,7.81077,69.6199],[-0.439073,7.791,69.6161],[-0.827041,7.00248,69.8426],[-0.00407869,7.20462,69.8268],[0.749214,8.53627,69.324],[0.0217104,8.37755,69.4128],[0.433884,7.81077,69.6199],[0.0217104,8.37755,69.4128],[0.0206383,9.18036,69.0558],[-0.724923,8.49901,69.3318],[-0.439073,7.791,69.6161],[-1.57461,7.76009,69.5174],[-0.827041,7.00248,69.8426],[-2.29803,8.56286,69.1123],[-1.57461,7.76009,69.5174],[-1.45538,8.67736,69.1994],[-1.74161,9.37319,68.8425],[-2.29803,8.56286,69.1123],[-1.45538,8.67736,69.1994],[-0.740948,9.80701,68.7275],[-1.38009,10.614,68.2107],[-1.74161,9.37319,68.8425],[-0.724923,8.49901,69.3318],[0.0206383,9.18036,69.0558],[-0.930563,9.12148,69.0577],[0.76846,9.82846,68.7141],[0.0206383,9.18036,69.0558],[0.949987,9.18081,69.0309],[0.76846,9.82846,68.7141],[1.55988,10.5055,68.2529],[0.459306,10.5266,68.3483],[-0.376265,10.5268,68.3567],[-0.740948,9.80701,68.7275],[0.0215783,9.98585,68.6664],[0.0444922,11.0474,68.0433],[-0.581614,11.1317,67.9681],[-0.376265,10.5268,68.3567],[0.0444922,11.0474,68.0433],[0.012759,11.8045,67.505],[-0.581614,11.1317,67.9681],[0.938448,11.8012,67.4866],[1.53533,11.4388,67.6797],[1.53696,12.1083,67.1999],[0.819264,12.4107,67.0263],[0.938448,11.8012,67.4866],[1.53696,12.1083,67.1999],[1.55988,10.5055,68.2529],[0.757182,11.1971,67.9084],[0.459306,10.5266,68.3483],[2.27928,11.1938,67.7265],[1.55988,10.5055,68.2529],[2.64538,10.5106,68.0769],[1.53696,12.1083,67.1999],[1.53533,11.4388,67.6797],[2.09525,11.7906,67.3534],[2.85424,11.7835,67.1763],[2.27928,11.1938,67.7265],[2.94734,11.067,67.6681],[2.23065,12.3891,66.8603],[1.53696,12.1083,67.1999],[2.09525,11.7906,67.3534],[2.23065,12.3891,66.8603],[1.53623,12.785,66.6537],[1.53696,12.1083,67.1999],[3.04885,12.6753,66.4156],[2.85424,11.7835,67.1763],[3.97076,12.0179,66.658],[2.25261,13.13,66.2254],[1.53623,12.785,66.6537],[2.23065,12.3891,66.8603],[3.02939,13.6478,65.5304],[3.04885,12.6753,66.4156],[3.87152,12.9213,65.947],[2.18583,14.2225,65.1851],[3.02939,13.6478,65.5304],[2.80748,14.392,64.8462],[2.18583,14.2225,65.1851],[1.43176,14.6897,64.7842],[1.47507,14.0348,65.5133],[2.25261,13.13,66.2254],[2.09385,13.7171,65.7236],[1.51636,13.4448,66.0822],[1.53623,12.785,66.6537],[2.25261,13.13,66.2254],[1.51636,13.4448,66.0822],[1.53623,12.785,66.6537],[0.819264,12.4107,67.0263],[1.53696,12.1083,67.1999],[0.819264,12.4107,67.0263],[0.012759,11.8045,67.505],[0.938448,11.8012,67.4866],[-1.18064,11.6355,67.5787],[0.012759,11.8045,67.505],[-0.747924,12.3941,67.0543],[-0.015556,13.6553,65.9612],[0.0497969,12.7611,66.7636],[0.80994,13.1514,66.4099],[-1.30673,12.8233,66.6667],[-0.747924,12.3941,67.0543],[-0.607323,13.0398,66.5303],[-1.30673,12.8233,66.6667],[-1.91635,13.214,66.2158],[-2.04837,12.4911,66.8295],[-1.64749,13.8074,65.6969],[-2.5904,13.7768,65.49],[-1.91635,13.214,66.2158],[-1.71593,14.3316,65.123],[-2.5904,13.7768,65.49],[-1.64749,13.8074,65.6969],[-2.30419,14.4954,64.8012],[-2.5904,13.7768,65.49],[-1.71593,14.3316,65.123],[-1.71593,14.3316,65.123],[-0.968876,14.8276,64.6513],[-1.77914,14.8053,64.565],[-0.0380594,15.121,64.3501],[-0.968876,14.8276,64.6513],[-0.104076,14.4971,65.0919],[-0.689991,15.4574,63.8625],[-0.968876,14.8276,64.6513],[-0.0380594,15.121,64.3501],[-1.06431,13.467,66.1062],[-0.015556,13.6553,65.9612],[-0.919366,14.1275,65.4516],[0.713907,14.2615,65.3409],[-0.015556,13.6553,65.9612],[0.906047,13.733,65.8762],[0.576243,14.8149,64.7248],[-0.0380594,15.121,64.3501],[-0.104076,14.4971,65.0919],[1.43176,14.6897,64.7842],[0.713907,14.2615,65.3409],[1.47507,14.0348,65.5133],[0.867428,15.3502,64.0037],[-0.0380594,15.121,64.3501],[0.576243,14.8149,64.7248],[0.867428,15.3502,64.0037],[0.077858,15.5806,63.7396],[-0.0380594,15.121,64.3501],[1.95968,15.222,64.0227],[1.43176,14.6897,64.7842],[2.27671,14.7188,64.6114],[2.60055,15.5984,63.3591],[1.95968,15.222,64.0227],[3.01267,14.935,64.1125],[3.18043,15.9123,62.6927],[2.60055,15.5984,63.3591],[3.48755,15.3898,63.3412],[2.71383,16.3252,62.1483],[1.8735,16.4023,62.2008],[2.38954,16.0574,62.7259],[3.63303,16.2918,61.7927],[3.18043,15.9123,62.6927],[4.21332,15.6032,62.6518],[4.49363,16.4548,60.9598],[3.63303,16.2918,61.7927],[4.76493,15.934,61.7896],[3.5498,16.7427,60.9397],[4.00965,16.9218,60.1952],[3.12883,17.0415,60.4035],[4.49363,16.4548,60.9598],[5.66837,15.933,61.0331],[5.21196,16.6177,59.8512],[4.27939,17.1069,59.3985],[3.33241,17.2889,59.5193],[4.00965,16.9218,60.1952],[6.10353,16.5561,58.8553],[4.9045,17.0993,58.5469],[5.21196,16.6177,59.8512],[3.92392,17.3452,58.8439],[3.33241,17.2889,59.5193],[4.27939,17.1069,59.3985],[3.84138,17.4925,58.0602],[4.9045,17.0993,58.5469],[4.75197,17.3601,57.2106],[3.23602,17.5142,58.6749],[3.33241,17.2889,59.5193],[3.92392,17.3452,58.8439],[2.57378,17.7215,57.9491],[3.84138,17.4925,58.0602],[3.68229,17.6452,57.1413],[2.51653,17.5334,59.0154],[3.33241,17.2889,59.5193],[3.23602,17.5142,58.6749],[1.45211,17.8195,58.0377],[2.57378,17.7215,57.9491],[1.68993,17.9344,57.1683],[0.361035,17.8206,58.1447],[1.45211,17.8195,58.0377],[0.968298,17.9464,57.4119],[0.364817,17.5612,59.3056],[0.361035,17.8206,58.1447],[-0.336075,17.6751,58.7992],[-0.693915,17.4562,59.5474],[0.364817,17.5612,59.3056],[-0.336075,17.6751,58.7992],[-0.693915,17.4562,59.5474],[-0.336075,17.6751,58.7992],[-1.00738,17.6286,58.7933],[-1.00738,17.6286,58.7933],[-1.57717,17.4625,59.1971],[-0.693915,17.4562,59.5474],[-1.57717,17.4625,59.1971],[-1.498,17.1816,60.1794],[-0.693915,17.4562,59.5474],[-2.28809,17.2621,59.5506],[-1.498,17.1816,60.1794],[-1.57717,17.4625,59.1971],[-1.00738,17.6286,58.7933],[-1.71712,17.647,58.241],[-1.57717,17.4625,59.1971],[-0.336075,17.6751,58.7992],[-0.721116,17.7844,58.1114],[-1.00738,17.6286,58.7933],[-0.693915,17.4562,59.5474],[0.42821,17.1762,60.5325],[0.364817,17.5612,59.3056],[1.19189,17.666,58.8848],[1.82485,17.5426,59.2843],[1.90769,17.6826,58.6392],[2.28664,17.2771,60.0081],[2.51653,17.5334,59.0154],[1.82485,17.5426,59.2843],[0.364817,17.5612,59.3056],[0.42821,17.1762,60.5325],[1.26459,17.4195,59.7987],[2.48799,16.7843,61.2239],[2.28664,17.2771,60.0081],[1.5259,17.1238,60.6327],[2.48799,16.7843,61.2239],[1.8735,16.4023,62.2008],[2.71383,16.3252,62.1483],[1.57721,15.8788,63.1423],[2.38954,16.0574,62.7259],[1.8735,16.4023,62.2008],[0.495626,15.9195,63.2006],[0.867428,15.3502,64.0037],[1.57721,15.8788,63.1423],[0.077858,15.5806,63.7396],[0.867428,15.3502,64.0037],[0.495626,15.9195,63.2006],[-0.0380594,15.121,64.3501],[0.077858,15.5806,63.7396],[-0.689991,15.4574,63.8625],[-1.47919,15.2218,64.0738],[-0.968876,14.8276,64.6513],[-0.689991,15.4574,63.8625],[-0.976816,16.0185,62.9361],[-1.99342,15.6511,63.2909],[-1.28819,15.6188,63.5473],[-1.77914,14.8053,64.565],[-0.968876,14.8276,64.6513],[-1.47919,15.2218,64.0738],[-2.30419,14.4954,64.8012],[-1.71593,14.3316,65.123],[-1.77914,14.8053,64.565],[-2.98603,14.4401,64.6261],[-2.5904,13.7768,65.49],[-2.30419,14.4954,64.8012],[-3.14708,14.9163,63.9533],[-3.79486,14.4954,64.2013],[-2.98603,14.4401,64.6261],[-3.14708,14.9163,63.9533],[-3.68034,15.113,63.387],[-3.79486,14.4954,64.2013],[-3.36016,15.7061,62.5894],[-4.35899,15.3732,62.54],[-3.68034,15.113,63.387],[-2.48888,15.949,62.6026],[-2.93206,16.2758,61.7311],[-3.36016,15.7061,62.5894],[-2.37412,15.0161,64.1077],[-1.99342,15.6511,63.2909],[-2.8476,15.4163,63.3375],[-2.04553,16.3439,62.0304],[-2.93206,16.2758,61.7311],[-2.48888,15.949,62.6026],[-1.98393,16.7357,61.1546],[-2.93206,16.2758,61.7311],[-2.04553,16.3439,62.0304],[-1.10518,16.4813,62.0134],[-1.98393,16.7357,61.1546],[-2.04553,16.3439,62.0304],[-1.72233,16.121,62.5831],[-1.99342,15.6511,63.2909],[-0.976816,16.0185,62.9361],[-0.248561,15.881,63.2726],[-0.152278,16.264,62.5948],[-0.976816,16.0185,62.9361],[0.845082,16.3645,62.396],[0.0539822,16.7059,61.6903],[-0.152278,16.264,62.5948],[1.20405,16.7977,61.4617],[0.42821,17.1762,60.5325],[0.0539822,16.7059,61.6903],[-0.668755,17.2179,60.345],[0.42821,17.1762,60.5325],[-0.693915,17.4562,59.5474],[-0.693915,17.4562,59.5474],[-1.498,17.1816,60.1794],[-0.668755,17.2179,60.345],[-1.98393,16.7357,61.1546],[-1.10518,16.4813,62.0134],[-0.908404,16.9299,61.0341],[-3.01282,16.7112,60.6924],[-2.93206,16.2758,61.7311],[-1.98393,16.7357,61.1546],[-3.04762,17.0282,59.7912],[-3.91118,16.6953,60.0493],[-3.01282,16.7112,60.6924],[-2.37386,17.0136,60.2858],[-1.498,17.1816,60.1794],[-2.28809,17.2621,59.5506],[-2.9349,17.2812,58.9698],[-3.69205,17.0407,59.1491],[-3.04762,17.0282,59.7912],[-2.9349,17.2812,58.9698],[-3.53719,17.269,58.3169],[-3.69205,17.0407,59.1491],[-2.28809,17.2621,59.5506],[-1.57717,17.4625,59.1971],[-2.2559,17.452,58.83],[-2.70966,17.4885,58.1887],[-3.53719,17.269,58.3169],[-2.9349,17.2812,58.9698],[-1.57717,17.4625,59.1971],[-1.71712,17.647,58.241],[-2.2559,17.452,58.83],[-0.721116,17.7844,58.1114],[-1.71712,17.647,58.241],[-1.00738,17.6286,58.7933],[-0.336075,17.6751,58.7992],[0.361035,17.8206,58.1447],[-0.721116,17.7844,58.1114],[0.293518,17.9925,57.0526],[0.361035,17.8206,58.1447],[0.968298,17.9464,57.4119],[-0.50351,18.0099,56.6674],[-1.29744,17.8662,57.2072],[-0.368509,17.921,57.4443],[-1.20961,17.9823,56.3678],[-1.29744,17.8662,57.2072],[-0.50351,18.0099,56.6674],[0.22075,18.0772,55.9669],[0.293518,17.9925,57.0526],[1.01275,18.0335,56.6298],[-0.605602,18.0567,55.2868],[0.22075,18.0772,55.9669],[0.133264,18.0855,55.0219],[-0.605602,18.0567,55.2868],[-1.49106,17.9525,54.773],[-1.40943,17.9881,55.6713],[-0.695953,18.0527,55.9855],[-1.20961,17.9823,56.3678],[-0.50351,18.0099,56.6674],[-2.12953,17.8412,56.3286],[-1.29744,17.8662,57.2072],[-1.20961,17.9823,56.3678],[-3.07836,17.6928,55.8087],[-3.12297,17.6187,56.6405],[-2.12953,17.8412,56.3286],[-3.12297,17.6187,56.6405],[-3.07836,17.6928,55.8087],[-3.70345,17.5201,56.1628],[-3.97037,17.3699,56.8165],[-3.12297,17.6187,56.6405],[-3.70345,17.5201,56.1628],[-3.07836,17.6928,55.8087],[-3.93523,17.4755,55.435],[-3.70345,17.5201,56.1628],[-3.07836,17.6928,55.8087],[-3.14153,17.6874,55.0537],[-3.93523,17.4755,55.435],[-1.49106,17.9525,54.773],[-2.31956,17.8509,55.3126],[-1.40943,17.9881,55.6713],[-1.52691,17.865,53.8202],[-1.49106,17.9525,54.773],[-0.485064,18.0066,54.2926],[-1.52691,17.865,53.8202],[-1.42565,17.7524,52.9598],[-2.43616,17.634,53.1554],[-2.43616,17.634,53.1554],[-2.74087,17.4264,52.3618],[-3.26511,17.4041,52.7773],[-3.44141,17.1939,52.0573],[-4.21306,17.1402,52.788],[-3.26511,17.4041,52.7773],[-4.42978,17.2424,53.8349],[-4.21306,17.1402,52.788],[-5.26605,16.8709,53.339],[-2.5917,17.7462,54.2982],[-3.44993,17.4783,53.5384],[-3.70485,17.5124,54.4728],[-4.63309,17.246,54.7664],[-4.42978,17.2424,53.8349],[-5.21522,17.0085,54.2119],[-3.93523,17.4755,55.435],[-3.14153,17.6874,55.0537],[-3.70485,17.5124,54.4728],[-4.85,17.1592,55.7099],[-4.63309,17.246,54.7664],[-5.55888,16.9051,55.0655],[-4.85,17.1592,55.7099],[-5.55888,16.9051,55.0655],[-5.53577,16.8889,55.9559],[-6.09739,16.6664,55.6953],[-5.53577,16.8889,55.9559],[-5.55888,16.9051,55.0655],[-6.34221,16.5599,55.1193],[-6.09739,16.6664,55.6953],[-5.55888,16.9051,55.0655],[-6.05883,16.6082,56.5014],[-5.53577,16.8889,55.9559],[-6.09739,16.6664,55.6953],[-6.05883,16.6082,56.5014],[-5.02958,16.9877,56.8847],[-5.53577,16.8889,55.9559],[-3.70345,17.5201,56.1628],[-3.93523,17.4755,55.435],[-4.31573,17.3235,56.1854],[-5.02958,16.9877,56.8847],[-4.85,17.1592,55.7099],[-5.53577,16.8889,55.9559],[-3.97037,17.3699,56.8165],[-3.70345,17.5201,56.1628],[-4.31573,17.3235,56.1854],[-3.33768,17.4593,57.479],[-3.12297,17.6187,56.6405],[-3.97037,17.3699,56.8165],[-3.53719,17.269,58.3169],[-2.70966,17.4885,58.1887],[-3.33768,17.4593,57.479],[-3.69205,17.0407,59.1491],[-3.53719,17.269,58.3169],[-4.26491,17.0175,58.505],[-4.948,16.7213,58.7146],[-4.35492,16.8129,59.2334],[-4.26491,17.0175,58.505],[-5.45986,16.6656,57.9554],[-5.80238,16.3145,58.8564],[-4.948,16.7213,58.7146],[-4.17984,17.1909,57.6491],[-5.02958,16.9877,56.8847],[-4.79591,16.935,57.9434],[-6.17291,16.3483,57.9729],[-5.80238,16.3145,58.8564],[-5.45986,16.6656,57.9554],[-6.7661,16.1607,57.2472],[-6.7949,15.9334,58.3967],[-6.17291,16.3483,57.9729],[-5.91797,16.5731,57.3206],[-5.02958,16.9877,56.8847],[-6.05883,16.6082,56.5014],[-6.90397,16.2408,55.9217],[-6.05883,16.6082,56.5014],[-6.09739,16.6664,55.6953],[-6.7661,16.1607,57.2472],[-7.81888,15.4613,57.8123],[-6.7949,15.9334,58.3967],[-8.7774,14.7942,58.0913],[-7.81888,15.4613,57.8123],[-8.71728,15.0004,57.1368],[-8.64672,15.1667,56.3347],[-9.42791,14.5495,56.2909],[-8.71728,15.0004,57.1368],[-8.82323,15.0669,55.5717],[-9.42791,14.5495,56.2909],[-8.64672,15.1667,56.3347],[-9.3484,14.6441,54.9543],[-9.42791,14.5495,56.2909],[-8.82323,15.0669,55.5717],[-8.82323,15.0669,55.5717],[-8.36295,15.3709,54.6667],[-9.3484,14.6441,54.9543],[-8.21646,15.5074,55.6084],[-8.36295,15.3709,54.6667],[-8.82323,15.0669,55.5717],[-8.21646,15.5074,55.6084],[-8.82323,15.0669,55.5717],[-8.64672,15.1667,56.3347],[-8.21132,15.4966,56.188],[-8.16137,15.4456,56.783],[-7.75312,15.7805,56.0165],[-7.64086,15.8618,55.2444],[-8.36295,15.3709,54.6667],[-8.21646,15.5074,55.6084],[-8.36295,15.3709,54.6667],[-7.64086,15.8618,55.2444],[-7.56473,15.888,54.4681],[-7.49525,15.8409,56.7645],[-6.90397,16.2408,55.9217],[-7.75312,15.7805,56.0165],[-6.34221,16.5599,55.1193],[-6.90397,16.2408,55.9217],[-6.09739,16.6664,55.6953],[-6.1091,16.6115,54.1534],[-6.34221,16.5599,55.1193],[-5.55888,16.9051,55.0655],[-7.0146,16.1359,53.8436],[-6.1091,16.6115,54.1534],[-6.3175,16.3208,52.8184],[-7.64086,15.8618,55.2444],[-6.93826,16.248,54.7895],[-7.56473,15.888,54.4681],[-7.78639,15.687,53.8155],[-8.36295,15.3709,54.6667],[-7.56473,15.888,54.4681],[-8.36295,15.3709,54.6667],[-7.78639,15.687,53.8155],[-8.37518,15.2819,53.7132],[-7.30401,15.8611,53.0598],[-7.0146,16.1359,53.8436],[-6.3175,16.3208,52.8184],[-5.2131,16.6961,52.2893],[-5.86236,16.3339,51.8385],[-6.3175,16.3208,52.8184],[-5.94394,16.0991,51.1535],[-5.86236,16.3339,51.8385],[-5.15369,16.4539,51.2374],[-5.52305,16.0091,50.396],[-6.48732,15.6079,50.5798],[-5.94394,16.0991,51.1535],[-7.23029,15.4115,51.1895],[-6.48732,15.6079,50.5798],[-7.32109,15.0605,50.3866],[-6.60553,15.9223,51.6964],[-7.28851,15.5986,51.8737],[-7.03916,15.8741,52.3738],[-7.89339,15.1427,51.6861],[-7.23029,15.4115,51.1895],[-7.73029,15.0111,50.9297],[-7.63222,15.5292,52.4186],[-7.03916,15.8741,52.3738],[-7.28851,15.5986,51.8737],[-8.81038,14.5491,51.9685],[-7.89339,15.1427,51.6861],[-8.27676,14.6536,51.0206],[-8.81038,14.5491,51.9685],[-8.27676,14.6536,51.0206],[-8.89703,14.1517,50.9487],[-7.63222,15.5292,52.4186],[-8.21159,15.1398,52.4389],[-8.00543,15.4325,53.0845],[-7.78639,15.687,53.8155],[-8.00543,15.4325,53.0845],[-8.37518,15.2819,53.7132],[-8.99197,14.843,53.9351],[-8.36295,15.3709,54.6667],[-8.37518,15.2819,53.7132],[-9.3484,14.6441,54.9543],[-8.36295,15.3709,54.6667],[-8.99197,14.843,53.9351],[-10.0784,14.0313,55.4241],[-9.42791,14.5495,56.2909],[-9.3484,14.6441,54.9543],[-10.1356,13.857,53.8062],[-10.6142,13.4636,54.6304],[-9.98783,14.1001,54.5915],[-10.2087,13.8936,56.2703],[-9.42791,14.5495,56.2909],[-10.0784,14.0313,55.4241],[-10.6581,13.4021,56.7321],[-10.0245,13.9722,57.111],[-10.2087,13.8936,56.2703],[-11.1481,12.8848,56.2097],[-11.1852,12.7175,57.1522],[-10.6581,13.4021,56.7321],[-11.1481,12.8848,56.2097],[-11.6794,12.1433,56.2717],[-11.1852,12.7175,57.1522],[-12.1979,11.3543,56.4512],[-11.6794,12.1433,56.2717],[-12.1582,11.3671,55.1689],[-12.4098,10.6122,53.5243],[-12.1582,11.3671,55.1689],[-11.6811,11.9292,53.8378],[-10.7104,13.4026,55.7459],[-10.6142,13.4636,54.6304],[-11.3417,12.6001,55.1274],[-11.1134,12.7961,54.0036],[-11.056,12.5673,52.819],[-11.6811,11.9292,53.8378],[-10.6772,13.2588,53.6154],[-10.6142,13.4636,54.6304],[-10.1356,13.857,53.8062],[-9.61198,14.3753,54.089],[-9.46377,14.3088,53.1003],[-10.1356,13.857,53.8062],[-8.81038,14.5491,51.9685],[-9.46377,14.3088,53.1003],[-8.65876,14.9473,53.0385],[-9.72211,13.6638,51.4834],[-10.0557,13.4612,51.8511],[-9.6276,13.9302,52.0959],[-10.0241,13.2211,51.1594],[-10.0557,13.4612,51.8511],[-9.72211,13.6638,51.4834],[-9.48238,13.6284,50.8744],[-10.0241,13.2211,51.1594],[-9.72211,13.6638,51.4834],[-9.32553,13.9971,51.4619],[-8.81038,14.5491,51.9685],[-8.89703,14.1517,50.9487],[-9.02493,13.7209,50.172],[-9.78274,12.9568,50.1283],[-9.48238,13.6284,50.8744],[-8.27676,14.6536,51.0206],[-8.38559,14.2791,50.2619],[-8.89703,14.1517,50.9487],[-7.70556,14.4795,49.6367],[-8.38559,14.2791,50.2619],[-7.89222,14.7113,50.4295],[-7.9223,13.8203,48.6404],[-7.70556,14.4795,49.6367],[-7.04045,14.4616,48.736],[-8.63567,13.4499,48.9314],[-7.9223,13.8203,48.6404],[-8.51999,13.158,48.29],[-9.02493,13.7209,50.172],[-8.46797,13.8692,49.4965],[-9.03286,13.3925,49.4861],[-8.63567,13.4499,48.9314],[-8.51999,13.158,48.29],[-9.13079,12.9273,48.8383],[-8.51999,13.158,48.29],[-9.08324,12.4681,48.069],[-9.13079,12.9273,48.8383],[-9.78274,12.9568,50.1283],[-9.02493,13.7209,50.172],[-9.03286,13.3925,49.4861],[-9.48238,13.6284,50.8744],[-9.78274,12.9568,50.1283],[-10.0241,13.2211,51.1594],[-10.5179,12.9161,51.8031],[-10.0557,13.4612,51.8511],[-10.0241,13.2211,51.1594],[-10.2531,13.4924,52.7325],[-10.5179,12.9161,51.8031],[-11.056,12.5673,52.819],[-11.6811,11.9292,53.8378],[-11.056,12.5673,52.819],[-11.7407,11.4207,52.3994],[-11.7407,11.4207,52.3994],[-11.651,11.1198,51.2539],[-12.2389,10.2071,51.7568],[-12.2389,10.2071,51.7568],[-11.651,11.1198,51.2539],[-11.6716,10.6057,50.4726],[-10.4374,12.634,50.9095],[-10.624,12.0074,50.1865],[-11.0837,12.0096,51.3807],[-11.651,11.1198,51.2539],[-11.253,11.3533,50.5067],[-11.6716,10.6057,50.4726],[-12.2389,10.2071,51.7568],[-11.6716,10.6057,50.4726],[-11.9369,9.32137,49.5706],[-11.9369,9.32137,49.5706],[-11.2949,9.88552,48.6412],[-11.4631,9.08996,48.16],[-11.4631,9.08996,48.16],[-11.2949,9.88552,48.6412],[-10.5993,10.0469,47.517],[-10.5993,10.0469,47.517],[-10.2684,11.1607,48.1916],[-9.98149,10.9676,47.4533],[-9.89703,10.5563,46.9187],[-10.5993,10.0469,47.517],[-9.98149,10.9676,47.4533],[-9.956,12.0469,48.9161],[-10.984,11.0401,49.4821],[-10.624,12.0074,50.1865],[-9.60426,11.6909,47.7741],[-9.98149,10.9676,47.4533],[-10.2684,11.1607,48.1916],[-9.60426,11.6909,47.7741],[-9.36367,11.2727,46.9494],[-9.98149,10.9676,47.4533],[-9.13079,12.9273,48.8383],[-9.08324,12.4681,48.069],[-9.956,12.0469,48.9161],[-9.08324,12.4681,48.069],[-8.51999,13.158,48.29],[-8.32315,12.8007,47.52],[-8.32315,12.8007,47.52],[-7.57253,13.1437,47.1609],[-7.93093,12.4779,46.7037],[-9.36367,11.2727,46.9494],[-9.60426,11.6909,47.7741],[-8.81351,12.0704,47.1885],[-9.36367,11.2727,46.9494],[-9.89703,10.5563,46.9187],[-9.98149,10.9676,47.4533],[-10.0989,9.70941,46.498],[-10.5993,10.0469,47.517],[-9.89703,10.5563,46.9187],[-10.0989,9.70941,46.498],[-9.4005,9.41455,45.4739],[-10.2743,8.57101,45.9456],[-8.25428,10.1005,44.8405],[-8.75841,9.14623,44.6836],[-9.4005,9.41455,45.4739],[-8.26901,10.8729,45.4153],[-8.8261,10.2783,45.4562],[-9.27918,10.6114,46.2335],[-8.26901,10.8729,45.4153],[-9.27918,10.6114,46.2335],[-8.46515,11.557,46.2566],[-7.129,12.2997,45.7879],[-8.46515,11.557,46.2566],[-7.93093,12.4779,46.7037],[-6.48158,12.1033,45.0763],[-7.129,12.2997,45.7879],[-6.32001,12.6101,45.4669],[-6.48158,12.1033,45.0763],[-5.82759,11.9946,44.5656],[-6.60051,11.4446,44.601],[-7.6999,11.4973,45.4599],[-7.0908,11.6741,45.1253],[-7.47942,10.9342,44.8204],[-6.60051,11.4446,44.601],[-5.86932,11.1986,44.0243],[-6.7894,10.625,44.1594],[-7.47942,10.9342,44.8204],[-7.53285,10.176,44.3394],[-8.25428,10.1005,44.8405],[-7.95253,9.36565,44.1708],[-7.53285,10.176,44.3394],[-7.11641,9.77218,43.8543],[-6.09044,10.099,43.5087],[-6.7894,10.625,44.1594],[-5.86932,11.1986,44.0243],[-6.8305,9.18815,43.4077],[-6.09044,10.099,43.5087],[-6.07137,9.02635,42.9802],[-7.443,9.14451,43.7126],[-7.95253,9.36565,44.1708],[-7.11641,9.77218,43.8543],[-7.443,9.14451,43.7126],[-7.90489,8.69199,43.7976],[-7.95253,9.36565,44.1708],[-6.88786,8.34252,43.0906],[-6.8305,9.18815,43.4077],[-6.07137,9.02635,42.9802],[-7.22982,7.09233,42.8193],[-8.19315,7.72082,43.62],[-6.88786,8.34252,43.0906],[-7.36761,8.72112,43.4829],[-7.90489,8.69199,43.7976],[-7.443,9.14451,43.7126],[-7.95253,9.36565,44.1708],[-7.90489,8.69199,43.7976],[-8.56892,8.49461,44.1963],[-9.03433,7.66506,44.1974],[-9.48451,8.27159,44.8977],[-8.56892,8.49461,44.1963],[-9.80388,6.93611,44.5981],[-9.48451,8.27159,44.8977],[-9.03433,7.66506,44.1974],[-9.00287,6.84071,43.8602],[-8.46744,5.74719,43.1578],[-9.45891,6.05194,43.9532],[-9.45891,6.05194,43.9532],[-8.46744,5.74719,43.1578],[-9.63947,4.9615,43.8007],[-8.46744,5.74719,43.1578],[-8.90206,4.0966,43.0393],[-9.63947,4.9615,43.8007],[-10.0898,3.5135,43.9261],[-9.63947,4.9615,43.8007],[-8.90206,4.0966,43.0393],[-10.0898,3.5135,43.9261],[-10.4275,4.64687,44.4288],[-9.63947,4.9615,43.8007],[-9.63947,4.9615,43.8007],[-10.4275,4.64687,44.4288],[-10.2272,5.68433,44.5407],[-10.2272,5.68433,44.5407],[-9.45891,6.05194,43.9532],[-9.63947,4.9615,43.8007],[-10.8358,6.34391,45.5178],[-10.3458,7.5488,45.4581],[-9.80388,6.93611,44.5981],[-10.2272,5.68433,44.5407],[-10.4275,4.64687,44.4288],[-10.9511,5.08694,45.1579],[-10.4275,4.64687,44.4288],[-10.9715,3.9813,44.9065],[-10.9511,5.08694,45.1579],[-10.9715,3.9813,44.9065],[-11.5299,4.4111,45.7727],[-10.9511,5.08694,45.1579],[-10.9511,5.08694,45.1579],[-11.5299,4.4111,45.7727],[-11.434,5.39153,45.9324],[-11.1426,7.50577,46.5098],[-10.8358,6.34391,45.5178],[-11.6714,6.12821,46.6473],[-11.6714,6.12821,46.6473],[-12.4277,5.60267,47.8511],[-11.9842,6.91235,47.5543],[-12.5242,4.24231,47.5657],[-12.98,4.49504,48.6779],[-12.4277,5.60267,47.8511],[-12.5242,4.24231,47.5657],[-12.0614,3.60108,46.5225],[-12.5624,3.26454,47.4413],[-11.5299,4.4111,45.7727],[-11.981,4.91396,46.6953],[-11.434,5.39153,45.9324],[-11.6927,2.48886,45.7731],[-12.3453,2.38007,46.9523],[-12.0614,3.60108,46.5225],[-11.1775,1.6497,45.0048],[-11.6927,2.48886,45.7731],[-11.0085,2.78093,44.8088],[-10.9715,3.9813,44.9065],[-11.5063,3.45272,45.5351],[-11.5299,4.4111,45.7727],[-10.9715,3.9813,44.9065],[-10.4275,4.64687,44.4288],[-10.0898,3.5135,43.9261],[-11.0085,2.78093,44.8088],[-10.2467,1.65224,43.941],[-11.1775,1.6497,45.0048],[-8.90206,4.0966,43.0393],[-8.99895,2.51294,42.8892],[-10.0898,3.5135,43.9261],[-10.2467,1.65224,43.941],[-9.10491,0.701737,42.8938],[-9.99307,0.195933,43.6965],[-8.17003,-0.247589,42.2404],[-9.10491,0.701737,42.8938],[-7.67845,1.01947,41.9039],[-8.99895,2.51294,42.8892],[-8.90206,4.0966,43.0393],[-8.18167,3.37948,42.3836],[-8.90206,4.0966,43.0393],[-7.82032,4.45575,42.3787],[-8.18167,3.37948,42.3836],[-7.67845,1.01947,41.9039],[-7.83388,2.4666,42.0495],[-6.97198,2.10782,41.4867],[-6.97198,2.10782,41.4867],[-6.59227,3.025,41.1767],[-6.23584,1.76652,40.917],[-6.23584,1.76652,40.917],[-6.59227,3.025,41.1767],[-6.40601,2.45774,40.6746],[-6.96084,4.39938,41.7927],[-6.58279,4.53361,41.3985],[-6.69276,3.82116,41.445],[-8.18167,3.37948,42.3836],[-7.82032,4.45575,42.3787],[-7.25343,3.38155,41.7958],[-7.19526,5.71784,42.2985],[-6.6788,5.19647,41.7296],[-6.96084,4.39938,41.7927],[-8.90206,4.0966,43.0393],[-8.46744,5.74719,43.1578],[-7.82032,4.45575,42.3787],[-8.19315,7.72082,43.62],[-7.22982,7.09233,42.8193],[-8.46744,5.74719,43.1578],[-7.22982,7.09233,42.8193],[-6.88786,8.34252,43.0906],[-6.32614,7.95295,42.6421],[-6.32614,7.95295,42.6421],[-5.31184,8.79574,42.4896],[-5.66786,7.92598,42.2194],[-6.42076,7.02806,42.2785],[-6.54004,5.96491,41.7445],[-7.19526,5.71784,42.2985],[-5.79481,7.47101,41.977],[-5.66786,7.92598,42.2194],[-5.42561,7.99219,41.8632],[-5.42561,7.99219,41.8632],[-5.339,8.58671,41.632],[-5.99684,7.71597,41.5328],[-6.71539,7.31159,41.3605],[-5.99684,7.71597,41.5328],[-6.23713,8.52611,41.4002],[-6.68374,6.13197,41.3625],[-6.54004,5.96491,41.7445],[-6.29866,6.80471,41.5505],[-7.50395,6.57922,41.1421],[-7.02024,5.51362,41.1429],[-6.68374,6.13197,41.3625],[-7.50395,6.57922,41.1421],[-7.78434,4.91037,40.8029],[-7.02024,5.51362,41.1429],[-8.55645,5.96227,40.845],[-9.73035,6.41119,40.6235],[-9.22507,4.81333,40.3916],[-7.02639,3.74093,40.7173],[-6.83288,4.62666,41.0644],[-7.78434,4.91037,40.8029],[-6.62134,3.07459,40.7146],[-6.58531,3.80431,41.0658],[-7.02639,3.74093,40.7173],[-6.40601,2.45774,40.6746],[-6.59227,3.025,41.1767],[-6.62134,3.07459,40.7146],[-6.40601,2.45774,40.6746],[-5.79813,1.26333,40.2763],[-6.23584,1.76652,40.917],[-6.23584,1.76652,40.917],[-5.79813,1.26333,40.2763],[-5.61885,0.804386,40.608],[-5.83056,0.565109,39.519],[-4.43409,-0.125311,39.7859],[-5.31379,0.726856,40.1338],[-4.836,0.180419,40.2729],[-5.44064,-0.195705,40.7335],[-5.61885,0.804386,40.608],[-4.30452,-0.309461,40.1818],[-3.71276,-0.606815,39.937],[-4.10797,-1.10572,40.3174],[-5.44064,-0.195705,40.7335],[-6.8066,-0.52342,41.4642],[-6.51261,0.955084,41.205],[-6.8066,-0.52342,41.4642],[-6.5505,-2.17288,41.5308],[-7.87896,-1.52751,42.2226],[-6.5505,-2.17288,41.5308],[-6.14235,-3.69177,41.7301],[-7.5258,-2.97713,42.3449],[-4.63529,-3.76028,41.0698],[-5.21241,-4.72596,41.6616],[-6.14235,-3.69177,41.7301],[-5.40834,-1.51943,40.888],[-4.19624,-2.44935,40.5942],[-5.40196,-2.7323,41.0679],[-4.63529,-3.76028,41.0698],[-2.85829,-3.63486,40.5468],[-3.85205,-5.17321,41.3769],[-4.10797,-1.10572,40.3174],[-4.19624,-2.44935,40.5942],[-5.40834,-1.51943,40.888],[-3.71276,-0.606815,39.937],[-3.21722,-1.09545,39.9738],[-4.10797,-1.10572,40.3174],[-3.21667,-0.894329,39.6299],[-3.21722,-1.09545,39.9738],[-3.71276,-0.606815,39.937],[-2.81881,-1.98239,40.1136],[-1.09321,-2.80218,40.0465],[-2.85829,-3.63486,40.5468],[-1.09321,-2.80218,40.0465],[0.180614,-2.33035,39.8661],[0.532014,-3.72588,40.2061],[1.09122,-1.75342,39.6486],[0.180614,-2.33035,39.8661],[0.00982301,-1.74348,39.5848],[1.09122,-1.75342,39.6486],[0.00982301,-1.74348,39.5848],[0.543007,-1.73065,39.2937],[-1.66746,-1.85607,39.7888],[-1.24099,-1.90318,39.1929],[-0.769642,-1.89568,39.6466],[0.543007,-1.73065,39.2937],[0.00982301,-1.74348,39.5848],[-0.288354,-1.91322,39.1536],[1.68087,-1.67129,39.1382],[1.09122,-1.75342,39.6486],[0.543007,-1.73065,39.2937],[2.64813,-1.55969,38.8549],[2.54773,-1.16996,39.4964],[1.68087,-1.67129,39.1382],[4.19699,-0.83221,38.8921],[3.33598,-0.800341,39.5357],[2.64813,-1.55969,38.8549],[3.33598,-0.800341,39.5357],[4.19699,-0.83221,38.8921],[4.2869,-0.131021,39.6493],[5.43464,-0.187226,38.8125],[6.69711,1.27555,39.2699],[5.64848,0.693542,39.3853],[5.65256,1.31502,39.9293],[5.64848,0.693542,39.3853],[6.69711,1.27555,39.2699],[4.19699,-0.83221,38.8921],[4.95479,0.271113,39.4974],[4.2869,-0.131021,39.6493],[3.93717,-0.483045,39.9558],[3.33598,-0.800341,39.5357],[4.2869,-0.131021,39.6493],[3.93717,-0.483045,39.9558],[4.53852,-1.00453,40.3683],[3.00991,-1.31883,39.9021],[4.92674,0.339371,40.1456],[5.65256,1.31502,39.9293],[5.72919,1.21786,40.5545],[6.27382,2.01706,40.87],[6.73091,1.01821,41.1426],[5.72919,1.21786,40.5545],[7.8192,0.0155829,41.7318],[6.64556,-0.410289,41.1542],[6.73091,1.01821,41.1426],[4.53852,-1.00453,40.3683],[5.66554,1.7585e-005,40.6974],[5.75308,-1.38416,40.868],[6.64556,-0.410289,41.1542],[7.8192,0.0155829,41.7318],[7.23354,-1.70945,41.6157],[4.72896,-2.19593,40.5847],[5.75308,-1.38416,40.868],[5.74317,-2.92408,41.1242],[5.96147,-4.36428,41.638],[5.74317,-2.92408,41.1242],[7.13671,-3.47895,41.9796],[8.46916,-2.58741,42.577],[8.24904,-4.01377,42.9666],[7.13671,-3.47895,41.9796],[7.23354,-1.70945,41.6157],[7.8192,0.0155829,41.7318],[8.8117,-1.0132,42.4832],[9.27075,-3.20279,43.4666],[8.46916,-2.58741,42.577],[9.72684,-1.9118,43.4799],[7.8192,0.0155829,41.7318],[9.17236,0.723252,42.5954],[8.8117,-1.0132,42.4832],[11.0319,-1.12298,44.8923],[9.72684,-1.9118,43.4799],[10.0118,-0.461633,43.4658],[12.0667,0.546593,46.1387],[12.4056,-1.18976,47.0729],[11.0319,-1.12298,44.8923],[12.0667,0.546593,46.1387],[11.9616,2.43501,45.9612],[12.7037,1.73252,47.2259],[11.1043,3.2952,44.6652],[11.8559,4.55526,46.0998],[11.9616,2.43501,45.9612],[10.4292,4.01304,43.933],[11.1043,3.2952,44.6652],[10.4367,2.7374,43.77],[10.8725,1.13695,44.3546],[9.17236,0.723252,42.5954],[9.8878,1.99184,43.1693],[10.4292,4.01304,43.933],[10.4367,2.7374,43.77],[9.50898,3.36924,43.0009],[9.8878,1.99184,43.1693],[9.17236,0.723252,42.5954],[9.04964,2.12492,42.4739],[8.25808,3.0463,42.0887],[9.04964,2.12492,42.4739],[8.06176,1.56905,41.8427],[7.23705,4.17568,41.6526],[8.43735,4.62104,42.4942],[8.25808,3.0463,42.0887],[10.4292,4.01304,43.933],[9.50898,3.36924,43.0009],[9.63139,5.1566,43.4663],[7.39004,5.79125,42.13],[8.48557,6.24838,42.9161],[8.43735,4.62104,42.4942],[10.5148,5.04767,44.2331],[9.63139,5.1566,43.4663],[10.2235,6.00361,44.2213],[10.2235,6.00361,44.2213],[10.2397,7.39973,44.8275],[10.9797,5.55223,44.9926],[8.4116,7.77913,43.3422],[9.42897,6.79618,43.7628],[8.48557,6.24838,42.9161],[8.4116,7.77913,43.3422],[7.43882,8.54047,43.0364],[8.19732,9.4303,43.9408],[9.23108,8.12455,44.1044],[9.60316,9.00652,44.9432],[10.2397,7.39973,44.8275],[8.87707,11.0231,45.4503],[9.83083,10.2,45.9962],[8.96572,10.1795,44.9447],[8.87707,11.0231,45.4503],[8.96572,10.1795,44.9447],[8.06525,10.9496,44.6798],[8.13584,11.9137,45.538],[8.87707,11.0231,45.4503],[8.06525,10.9496,44.6798],[9.60316,9.00652,44.9432],[10.8247,8.45832,46.199],[10.2397,7.39973,44.8275],[10.8247,8.45832,46.199],[10.7944,9.76703,47.0854],[11.6267,8.65623,47.7385],[11.1802,10.2891,48.3953],[10.7944,9.76703,47.0854],[10.1657,11.0586,47.3314],[8.87707,11.0231,45.4503],[9.12852,11.6073,46.3719],[9.83083,10.2,45.9962],[10.3967,11.8454,48.7838],[10.1657,11.0586,47.3314],[9.30441,12.383,47.6239],[9.30441,12.383,47.6239],[8.17603,12.7673,46.6423],[8.27756,13.6662,48.1422],[8.87707,11.0231,45.4503],[8.13584,11.9137,45.538],[9.12852,11.6073,46.3719],[7.269,12.7784,45.7213],[6.74878,13.851,46.8439],[8.17603,12.7673,46.6423],[6.05688,13.0122,45.1921],[6.74878,13.851,46.8439],[7.269,12.7784,45.7213],[5.86913,11.987,44.108],[5.12989,12.6985,44.3305],[6.05688,13.0122,45.1921],[7.0775,11.9813,44.7689],[8.13584,11.9137,45.538],[8.06525,10.9496,44.6798],[8.96572,10.1795,44.9447],[8.19732,9.4303,43.9408],[8.06525,10.9496,44.6798],[7.43882,8.54047,43.0364],[6.63688,9.62832,43.1229],[8.19732,9.4303,43.9408],[5.45978,10.8308,43.2481],[5.86913,11.987,44.108],[6.91303,10.8475,43.8929],[5.33385,9.4998,42.509],[6.63688,9.62832,43.1229],[6.4165,8.40661,42.492],[5.33385,9.4998,42.509],[3.71255,10.1862,42.3419],[4.45031,10.4786,42.7337],[4.50218,12.175,43.76],[5.86913,11.987,44.108],[5.45978,10.8308,43.2481],[4.50218,12.175,43.76],[2.99127,12.6081,43.7456],[3.97572,13.3195,44.5902],[1.86132,11.9699,43.1744],[1.46493,13.15,43.9751],[2.99127,12.6081,43.7456],[1.64891,10.9656,42.4017],[0.70232,11.5741,42.8431],[1.86132,11.9699,43.1744],[3.71255,10.1862,42.3419],[3.36901,11.3421,42.9888],[4.45031,10.4786,42.7337],[2.78857,10.1384,41.6419],[3.71255,10.1862,42.3419],[4.62973,9.01772,41.7846],[2.78857,10.1384,41.6419],[4.62973,9.01772,41.7846],[3.96792,9.5253,41.2529],[1.64891,10.9656,42.4017],[0.294143,10.7428,41.6965],[0.204243,11.0368,42.4159],[0.294143,10.7428,41.6965],[1.27195,10.7759,41.0954],[0.453512,11.1142,40.805],[2.78857,10.1384,41.6419],[2.43295,10.5088,40.9919],[1.88692,10.4431,41.5727],[1.74545,11.2965,40.2557],[0.453512,11.1142,40.805],[1.27195,10.7759,41.0954],[3.11759,11.8338,39.3162],[1.74545,11.2965,40.2557],[3.23986,10.8884,40.2547],[3.11759,11.8338,39.3162],[3.23986,10.8884,40.2547],[4.44699,10.9422,39.9033],[5.82932,11.4692,39.1068],[3.11759,11.8338,39.3162],[4.44699,10.9422,39.9033],[3.11759,11.8338,39.3162],[5.82932,11.4692,39.1068],[4.18584,12.693,38.0441],[3.23986,10.8884,40.2547],[4.55568,9.97903,40.5646],[4.44699,10.9422,39.9033],[2.43295,10.5088,40.9919],[2.78857,10.1384,41.6419],[3.96792,9.5253,41.2529],[4.75533,9.05084,41.1038],[3.96792,9.5253,41.2529],[4.62973,9.01772,41.7846],[4.75533,9.05084,41.1038],[5.87279,8.12048,40.9223],[5.59252,9.31807,40.5903],[4.44699,10.9422,39.9033],[4.55568,9.97903,40.5646],[5.64435,10.3291,40.0624],[7.24237,8.43374,40.4343],[6.64033,9.62656,40.2038],[5.59252,9.31807,40.5903],[7.8462,9.48095,39.9945],[7.0535,10.4904,39.6423],[6.64033,9.62656,40.2038],[5.82932,11.4692,39.1068],[4.44699,10.9422,39.9033],[5.64435,10.3291,40.0624],[7.0535,10.4904,39.6423],[8.49148,10.3138,39.4347],[7.99646,11.4621,38.6417],[7.99646,11.4621,38.6417],[8.77364,12.4434,37.3535],[6.95192,12.671,37.4772],[8.77364,12.4434,37.3535],[8.05524,13.2344,36.3562],[6.95192,12.671,37.4772],[5.55923,12.553,37.9755],[4.18584,12.693,38.0441],[5.82932,11.4692,39.1068],[2.5073,12.9093,38.0087],[3.11759,11.8338,39.3162],[4.18584,12.693,38.0441],[0.674621,13.25,37.8266],[2.5073,12.9093,38.0087],[2.05447,13.8712,36.3786],[2.05447,13.8712,36.3786],[0.130235,13.9284,36.7288],[0.674621,13.25,37.8266],[0.130235,13.9284,36.7288],[-1.22463,13.669,37.5582],[0.674621,13.25,37.8266],[0.287067,14.4384,35.6198],[0.130235,13.9284,36.7288],[2.05447,13.8712,36.3786],[-1.19442,14.3588,36.2199],[0.130235,13.9284,36.7288],[0.287067,14.4384,35.6198],[0.287067,14.4384,35.6198],[-0.938974,14.7942,35.2003],[-1.19442,14.3588,36.2199],[0.287067,14.4384,35.6198],[2.05447,13.8712,36.3786],[1.65768,14.7747,34.5346],[0.0178522,14.9503,34.5688],[0.287067,14.4384,35.6198],[1.65768,14.7747,34.5346],[2.21547,15.3422,33.0903],[1.65768,14.7747,34.5346],[3.37793,14.9438,33.7279],[0.345376,15.495,33.262],[1.65768,14.7747,34.5346],[2.21547,15.3422,33.0903],[4.82101,15.1915,32.6831],[3.92044,15.7059,31.6629],[3.35045,15.449,32.5194],[2.34901,16.012,31.4042],[3.92158,16.1138,30.515],[2.85935,16.5751,29.7039],[3.92044,15.7059,31.6629],[4.82101,15.1915,32.6831],[5.14523,15.7131,31.1102],[4.82101,15.1915,32.6831],[6.65459,15.2424,31.7533],[5.14523,15.7131,31.1102],[5.14523,15.7131,31.1102],[6.65459,15.2424,31.7533],[6.24761,15.7963,30.2204],[6.65459,15.2424,31.7533],[7.51312,15.6872,29.6559],[6.24761,15.7963,30.2204],[6.57687,16.1335,28.7409],[6.24761,15.7963,30.2204],[7.51312,15.6872,29.6559],[7.51312,15.6872,29.6559],[7.95771,15.7939,28.7519],[6.57687,16.1335,28.7409],[7.95771,15.7939,28.7519],[7.51312,15.6872,29.6559],[8.74067,15.4702,29.3413],[8.74067,15.4702,29.3413],[9.11873,15.5628,28.2203],[7.95771,15.7939,28.7519],[8.74067,15.4702,29.3413],[9.8899,15.1532,29.3577],[9.11873,15.5628,28.2203],[9.8899,15.1532,29.3577],[8.74067,15.4702,29.3413],[9.19483,15.0935,30.5092],[8.74067,15.4702,29.3413],[7.51312,15.6872,29.6559],[9.19483,15.0935,30.5092],[6.57687,16.1335,28.7409],[5.18216,16.1516,29.7237],[6.24761,15.7963,30.2204],[4.82101,15.1915,32.6831],[6.23838,14.714,33.5228],[6.65459,15.2424,31.7533],[5.18216,16.1516,29.7237],[5.14523,15.7131,31.1102],[6.24761,15.7963,30.2204],[3.92158,16.1138,30.515],[4.08888,16.4865,29.3396],[2.85935,16.5751,29.7039],[1.25858,16.7633,29.8938],[2.85935,16.5751,29.7039],[2.0992,17.1228,28.5508],[1.25858,16.7633,29.8938],[2.0992,17.1228,28.5508],[0.667327,17.4045,28.4706],[1.58963,17.5759,27.5507],[0.667327,17.4045,28.4706],[2.0992,17.1228,28.5508],[2.0992,17.1228,28.5508],[2.72761,17.4622,27.1897],[1.58963,17.5759,27.5507],[1.58963,17.5759,27.5507],[2.72761,17.4622,27.1897],[1.83299,17.8829,26.4834],[0.528811,17.9867,26.9113],[1.58963,17.5759,27.5507],[1.83299,17.8829,26.4834],[-0.413861,20.2608,20.0701],[-0.656973,19.9022,21.5572],[0.772399,19.7934,20.8543],[-1.09343,20.7655,18.4576],[0.666761,20.2627,19.0739],[0.586964,20.7509,16.9414],[0.666761,20.2627,19.0739],[2.06835,20.1259,18.1086],[0.586964,20.7509,16.9414],[2.06835,20.1259,18.1086],[2.29263,20.423,16.4071],[0.586964,20.7509,16.9414],[-0.656973,19.9022,21.5572],[-0.413861,20.2608,20.0701],[-1.78245,20.4257,20.3414],[-0.656973,19.9022,21.5572],[-1.78245,20.4257,20.3414],[-2.26526,20.0105,22.0804],[-3.43568,20.5151,20.7753],[-1.78245,20.4257,20.3414],[-2.91441,20.8884,19.0775],[-4.74396,20.8984,19.5272],[-3.43568,20.5151,20.7753],[-2.91441,20.8884,19.0775],[-2.91441,20.8884,19.0775],[-2.48232,21.1896,17.541],[-3.92307,21.254,17.8232],[-3.92307,21.254,17.8232],[-4.74396,20.8984,19.5272],[-2.91441,20.8884,19.0775],[-5.63145,20.1671,22.4869],[-6.19377,20.5753,20.823],[-7.53734,20.0779,22.447],[-3.43568,20.5151,20.7753],[-4.74396,20.8984,19.5272],[-4.82799,20.5017,21.2004],[-1.78245,20.4257,20.3414],[-3.43568,20.5151,20.7753],[-2.26526,20.0105,22.0804],[-0.656973,19.9022,21.5572],[-2.26526,20.0105,22.0804],[-0.939964,19.4271,23.3162],[-0.939964,19.4271,23.3162],[0.344385,18.9457,24.1051],[0.613693,19.3433,22.5947],[0.344385,18.9457,24.1051],[1.12048,18.3894,25.3487],[1.7831,18.7373,23.7604],[1.83299,17.8829,26.4834],[1.12048,18.3894,25.3487],[0.528811,17.9867,26.9113],[-0.981342,18.765,25.3932],[-2.21847,18.4826,26.8565],[-1.20857,17.8838,28.0262],[-2.21847,18.4826,26.8565],[-2.6508,18.1904,27.861],[-1.20857,17.8838,28.0262],[-2.92937,18.9639,25.7707],[-2.21847,18.4826,26.8565],[-0.981342,18.765,25.3932],[0.667327,17.4045,28.4706],[1.58963,17.5759,27.5507],[0.528811,17.9867,26.9113],[-2.60949,17.7771,28.912],[-2.16061,16.8968,30.894],[-1.56677,17.4119,29.3981],[0.667327,17.4045,28.4706],[-0.289986,17.074,29.7266],[1.25858,16.7633,29.8938],[2.34901,16.012,31.4042],[2.85935,16.5751,29.7039],[1.25858,16.7633,29.8938],[2.34901,16.012,31.4042],[0.345376,15.495,33.262],[2.21547,15.3422,33.0903],[-1.45733,16.0304,32.6365],[-0.0135276,16.3806,31.3175],[-2.16061,16.8968,30.894],[-1.45733,16.0304,32.6365],[-2.16061,16.8968,30.894],[-3.21072,16.5264,32.202],[-3.21072,16.5264,32.202],[-4.61784,16.2764,33.3833],[-1.45733,16.0304,32.6365],[-4.61784,16.2764,33.3833],[-3.21072,16.5264,32.202],[-4.61751,16.9472,31.8098],[-3.21072,16.5264,32.202],[-2.16061,16.8968,30.894],[-4.61751,16.9472,31.8098],[0.345376,15.495,33.262],[0.0178522,14.9503,34.5688],[1.65768,14.7747,34.5346],[0.287067,14.4384,35.6198],[0.0178522,14.9503,34.5688],[-0.938974,14.7942,35.2003],[-1.45733,16.0304,32.6365],[-2.83181,15.6331,34.0646],[-1.23688,15.2991,34.1955],[-2.83181,15.6331,34.0646],[-1.45733,16.0304,32.6365],[-4.61784,16.2764,33.3833],[-5.60171,15.4815,35.6129],[-4.34161,14.9664,36.1524],[-4.30386,15.5647,34.8554],[-7.38872,15.722,35.7659],[-5.95564,16.0583,34.4929],[-7.35338,16.3921,34.3518],[-6.20608,14.4272,37.8111],[-7.49804,14.8626,37.3071],[-7.35329,14.2566,38.2245],[-4.69072,14.3694,37.4311],[-6.20608,14.4272,37.8111],[-5.27205,13.8763,38.3839],[-4.69072,14.3694,37.4311],[-5.27205,13.8763,38.3839],[-3.37747,13.4308,38.4747],[-3.37747,13.4308,38.4747],[-5.27205,13.8763,38.3839],[-5.69797,13.0094,39.3575],[-5.27205,13.8763,38.3839],[-6.20608,14.4272,37.8111],[-6.42729,13.8863,38.6029],[-5.60171,15.4815,35.6129],[-5.96435,15.007,36.7012],[-4.34161,14.9664,36.1524],[-2.53877,14.9854,35.3672],[-4.30386,15.5647,34.8554],[-4.34161,14.9664,36.1524],[-2.53877,14.9854,35.3672],[-1.19442,14.3588,36.2199],[-0.938974,14.7942,35.2003],[0.130235,13.9284,36.7288],[-1.19442,14.3588,36.2199],[-1.22463,13.669,37.5582],[-2.89999,14.312,36.88],[-4.69072,14.3694,37.4311],[-3.37747,13.4308,38.4747],[0.674621,13.25,37.8266],[-1.22463,13.669,37.5582],[-0.673748,12.6053,39.0825],[-1.35313,11.603,40.41],[-0.673748,12.6053,39.0825],[-2.41985,12.3784,39.6993],[-1.67778,10.8113,41.2436],[-1.35313,11.603,40.41],[-2.48451,11.1504,40.8852],[-2.48451,11.1504,40.8852],[-2.91339,10.4494,41.4358],[-1.67778,10.8113,41.2436],[-2.91631,10.2472,42.1129],[-2.91339,10.4494,41.4358],[-3.7979,9.73757,41.7383],[-4.57021,9.41443,41.5672],[-4.55606,9.01809,41.8487],[-3.7979,9.73757,41.7383],[-5.339,8.58671,41.632],[-4.55606,9.01809,41.8487],[-4.57021,9.41443,41.5672],[-5.99684,7.71597,41.5328],[-5.339,8.58671,41.632],[-6.23713,8.52611,41.4002],[-5.58585,9.47704,41.3472],[-6.4063,10.3425,40.9828],[-6.68963,9.26577,41.2234],[-6.23713,8.52611,41.4002],[-7.56388,8.19186,41.171],[-6.71539,7.31159,41.3605],[-8.63793,7.17759,40.9824],[-7.56388,8.19186,41.171],[-8.89693,8.20524,40.9733],[-9.64868,7.70583,40.796],[-8.89693,8.20524,40.9733],[-9.64024,8.616,40.7879],[-10.4142,8.3762,40.5781],[-9.64024,8.616,40.7879],[-10.2123,9.46716,40.5025],[-11.3822,9.89483,40.0906],[-10.2123,9.46716,40.5025],[-10.5546,10.52,40.1741],[-10.5546,10.52,40.1741],[-11.6037,10.9938,39.7156],[-11.3822,9.89483,40.0906],[-9.17837,10.5534,40.4653],[-9.00259,9.23785,40.8291],[-7.7287,9.81066,40.9316],[-6.68963,9.26577,41.2234],[-6.4063,10.3425,40.9828],[-7.7287,9.81066,40.9316],[-6.4063,10.3425,40.9828],[-5.58585,9.47704,41.3472],[-5.11647,10.5656,41.0435],[-3.73124,11.1172,40.8557],[-5.11647,10.5656,41.0435],[-4.13804,10.1376,41.3514],[-3.73124,11.1172,40.8557],[-2.76667,11.7373,40.4037],[-3.95259,12.2719,39.9234],[-3.95259,12.2719,39.9234],[-3.37747,13.4308,38.4747],[-5.69797,13.0094,39.3575],[-7.55247,11.1608,40.5146],[-5.82934,11.6407,40.4015],[-7.37808,12.4524,39.8318],[-6.42729,13.8863,38.6029],[-5.69797,13.0094,39.3575],[-5.27205,13.8763,38.3839],[-7.35329,14.2566,38.2245],[-6.42729,13.8863,38.6029],[-6.20608,14.4272,37.8111],[-7.49804,14.8626,37.3071],[-8.98948,14.2187,38.1931],[-7.35329,14.2566,38.2245],[-7.37808,12.4524,39.8318],[-7.59892,13.5924,38.9354],[-8.80326,13.045,39.3051],[-10.0645,13.2773,38.9224],[-8.98948,14.2187,38.1931],[-10.9754,13.9515,38.2019],[-8.80326,13.045,39.3051],[-9.9343,12.5008,39.4942],[-8.85854,11.9184,39.9891],[-10.9754,13.9515,38.2019],[-11.5494,12.4963,39.0529],[-10.0645,13.2773,38.9224],[-9.9343,12.5008,39.4942],[-10.2936,11.5359,39.8696],[-8.85854,11.9184,39.9891],[-11.6037,10.9938,39.7156],[-10.5546,10.52,40.1741],[-10.2936,11.5359,39.8696],[-11.5494,12.4963,39.0529],[-13.5098,12.5933,38.4954],[-13.2215,11.1623,39.1563],[-12.4248,10.1652,39.7047],[-11.3822,9.89483,40.0906],[-11.6037,10.9938,39.7156],[-12.4248,10.1652,39.7047],[-13.7016,9.95061,39.3203],[-13.0661,9.5471,39.6103],[-14.4068,9.62359,39.1497],[-13.7016,9.95061,39.3203],[-14.3735,10.3683,39.0389],[-14.3735,10.3683,39.0389],[-14.563,11.0029,38.8145],[-15.1931,10.4812,38.7371],[-13.5098,12.5933,38.4954],[-14.7373,11.8717,38.442],[-13.2215,11.1623,39.1563],[-14.7373,11.8717,38.442],[-13.5098,12.5933,38.4954],[-14.6925,12.6922,38.113],[-15.1931,10.4812,38.7371],[-14.563,11.0029,38.8145],[-15.9623,11.102,38.2594],[-16.7806,11.8107,37.7165],[-17.0441,11.0457,37.8683],[-15.9623,11.102,38.2594],[-14.7373,11.8717,38.442],[-14.6925,12.6922,38.113],[-15.6801,12.2541,37.9585],[-14.6925,12.6922,38.113],[-13.5098,12.5933,38.4954],[-14.1679,13.4728,37.8067],[-15.0788,14.04,37.0762],[-14.1679,13.4728,37.8067],[-13.665,14.473,37.1391],[-15.382,13.161,37.6059],[-16.156,13.5732,37.0277],[-16.5441,12.7625,37.3667],[-16.5441,12.7625,37.3667],[-17.7696,12.19,37.134],[-16.7806,11.8107,37.7165],[-18.5156,12.6379,36.5916],[-17.4864,13.414,36.5355],[-18.7565,13.2404,36.1143],[-17.4864,13.414,36.5355],[-18.4336,13.9524,35.677],[-18.7565,13.2404,36.1143],[-18.4336,13.9524,35.677],[-19.3673,13.5435,35.5812],[-18.7565,13.2404,36.1143],[-18.9218,11.8738,36.7848],[-18.4352,11.2892,37.2076],[-17.7696,12.19,37.134],[-19.5287,12.3463,36.2792],[-18.5156,12.6379,36.5916],[-18.7565,13.2404,36.1143],[-19.4209,11.0655,36.8428],[-18.9218,11.8738,36.7848],[-19.8156,11.6021,36.4793],[-20.4942,10.8167,36.4028],[-19.8156,11.6021,36.4793],[-20.6773,11.8445,35.9438],[-18.7565,13.2404,36.1143],[-19.5245,13.0098,35.9096],[-19.5287,12.3463,36.2792],[-18.7565,13.2404,36.1143],[-19.3673,13.5435,35.5812],[-19.5245,13.0098,35.9096],[-21.2055,12.4034,35.3879],[-20.6773,11.8445,35.9438],[-20.395,12.8329,35.5414],[-21.7326,11.7681,35.463],[-21.2055,12.4034,35.3879],[-21.9764,12.4103,34.9582],[-21.6188,13.5808,34.1786],[-21.1984,13.1073,34.8926],[-20.8456,13.7754,34.4969],[-20.8456,13.7754,34.4969],[-20.9839,14.1886,33.8743],[-21.6188,13.5808,34.1786],[-21.9764,12.4103,34.9582],[-22.0774,12.9789,34.4689],[-22.911,12.4012,34.3946],[-23.5668,12.7734,33.6891],[-24.4679,11.9473,33.8009],[-22.911,12.4012,34.3946],[-22.5985,13.8098,33.1236],[-22.6054,13.288,33.8041],[-21.8713,13.9901,33.4461],[-22.5985,13.8098,33.1236],[-23.0433,13.9406,32.5017],[-23.965,13.4226,32.5535],[-23.0433,13.9406,32.5017],[-22.5985,13.8098,33.1236],[-22.0516,14.3683,32.5675],[-23.561,13.99,31.7438],[-23.0433,13.9406,32.5017],[-22.0516,14.3683,32.5675],[-24.3669,12.79,33.1087],[-23.5668,12.7734,33.6891],[-23.4387,13.2534,33.2664],[-25.5552,12.1083,33.0318],[-24.3669,12.79,33.1087],[-25.2563,12.9365,32.208],[-23.0433,13.9406,32.5017],[-23.561,13.99,31.7438],[-23.965,13.4226,32.5535],[-25.6405,13.2426,31.3473],[-25.2563,12.9365,32.208],[-24.6034,13.6941,31.271],[-25.6405,13.2426,31.3473],[-24.6034,13.6941,31.271],[-25.8678,13.3973,30.6004],[-25.8678,13.3973,30.6004],[-27.1465,13.0426,29.9768],[-26.8676,12.7151,31.2453],[-28.7608,12.5984,29.1543],[-27.1465,13.0426,29.9768],[-26.9896,13.1687,28.6345],[-25.1479,13.7176,28.3713],[-26.4837,13.0693,27.1939],[-26.9896,13.1687,28.6345],[-25.7481,13.5924,29.6014],[-24.6171,13.9141,30.3853],[-23.374,14.3805,29.5755],[-23.4902,14.1803,28.0694],[-23.374,14.3805,29.5755],[-21.7023,14.8303,28.4459],[-25.1479,13.7176,28.3713],[-24.6032,13.5422,26.9925],[-26.4837,13.0693,27.1939],[-25.8023,12.8411,25.9965],[-26.4837,13.0693,27.1939],[-24.6032,13.5422,26.9925],[-26.4837,13.0693,27.1939],[-25.8023,12.8411,25.9965],[-27.7177,12.2353,25.7198],[-27.7177,12.2353,25.7198],[-27.7564,11.4608,24.1001],[-29.4854,11.3745,24.6389],[-27.7564,11.4608,24.1001],[-26.3982,11.336,23.527],[-27.7035,10.6353,22.7702],[-24.6897,11.7033,23.7107],[-26.0511,12.145,24.7389],[-23.9655,12.9798,25.383],[-22.5116,12.3653,23.9163],[-24.6897,11.7033,23.7107],[-23.9655,12.9798,25.383],[-23.9655,12.9798,25.383],[-21.5013,13.7886,25.3784],[-22.5116,12.3653,23.9163],[-25.8266,10.5751,22.4431],[-27.7035,10.6353,22.7702],[-26.3982,11.336,23.527],[-27.4591,9.6644,21.4946],[-25.8266,10.5751,22.4431],[-25.339,9.25407,21.0645],[-27.2871,8.68107,20.4593],[-25.339,9.25407,21.0645],[-25.7784,7.79649,19.9588],[-24.4444,8.19303,20.3171],[-23.2581,7.67656,20.164],[-24.5907,7.14125,19.7688],[-27.4312,6.84525,19.3586],[-28.917,7.67021,19.7211],[-25.7784,7.79649,19.9588],[-28.917,7.67021,19.7211],[-27.4312,6.84525,19.3586],[-28.9147,6.42742,19.2551],[-29.2787,5.33281,19.3422],[-30.7083,5.77859,19.4381],[-28.9147,6.42742,19.2551],[-27.6395,5.57329,19.3149],[-26.0589,5.12986,19.5881],[-27.2658,4.50407,19.7427],[-27.2658,4.50407,19.7427],[-26.0589,5.12986,19.5881],[-26.0653,3.89291,20.3986],[-27.2658,4.50407,19.7427],[-26.0653,3.89291,20.3986],[-27.8669,3.79121,20.3609],[-27.8669,3.79121,20.3609],[-26.0653,3.89291,20.3986],[-27.5285,3.24345,21.2364],[-27.5285,3.24345,21.2364],[-26.0653,3.89291,20.3986],[-25.1577,3.06272,21.74],[-27.5285,3.24345,21.2364],[-25.1577,3.06272,21.74],[-28.7927,2.52917,23.0195],[-28.7927,2.52917,23.0195],[-29.7856,3.34954,21.1206],[-27.5285,3.24345,21.2364],[-29.7856,3.34954,21.1206],[-28.7927,2.52917,23.0195],[-30.8627,2.44484,22.9268],[-28.7927,2.52917,23.0195],[-29.9271,2.1661,24.1197],[-30.8627,2.44484,22.9268],[-31.2686,1.96589,24.7363],[-30.8627,2.44484,22.9268],[-29.9271,2.1661,24.1197],[-31.2686,1.96589,24.7363],[-29.9271,2.1661,24.1197],[-30.1289,1.96046,25.4974],[-31.2686,1.96589,24.7363],[-33.3487,1.69624,25.0487],[-30.8627,2.44484,22.9268],[-30.8627,2.44484,22.9268],[-33.3487,1.69624,25.0487],[-33.1777,2.18255,23.2548],[-32.0033,2.80361,21.9265],[-30.8627,2.44484,22.9268],[-33.1777,2.18255,23.2548],[-29.9271,2.1661,24.1197],[-28.7927,2.52917,23.0195],[-28.6105,2.14297,24.6705],[-28.7927,2.52917,23.0195],[-27.1522,2.25998,24.1585],[-28.6105,2.14297,24.6705],[-27.1522,2.25998,24.1585],[-28.7927,2.52917,23.0195],[-25.8269,2.47211,23.3261],[-27.1522,2.25998,24.1585],[-25.8269,2.47211,23.3261],[-25.5363,2.21112,24.6556],[-25.5363,2.21112,24.6556],[-25.8269,2.47211,23.3261],[-24.1898,2.52923,23.1838],[-24.1898,2.52923,23.1838],[-25.8269,2.47211,23.3261],[-25.1577,3.06272,21.74],[-25.1577,3.06272,21.74],[-25.8269,2.47211,23.3261],[-28.7927,2.52917,23.0195],[-24.167,3.65383,20.8378],[-25.1577,3.06272,21.74],[-26.0653,3.89291,20.3986],[-24.167,3.65383,20.8378],[-23.4337,3.00754,21.8792],[-25.1577,3.06272,21.74],[-27.5285,3.24345,21.2364],[-29.7856,3.34954,21.1206],[-27.8669,3.79121,20.3609],[-28.7195,4.46406,19.8158],[-30.3812,4.59306,19.8658],[-29.2787,5.33281,19.3422],[-31.8209,3.6748,20.7249],[-33.2535,4.38253,20.5039],[-30.3812,4.59306,19.8658],[-29.7856,3.34954,21.1206],[-30.8627,2.44484,22.9268],[-32.0033,2.80361,21.9265],[-32.0033,2.80361,21.9265],[-33.1777,2.18255,23.2548],[-34.2194,2.77046,22.2963],[-34.2194,2.77046,22.2963],[-33.1777,2.18255,23.2548],[-35.2494,2.00865,23.6776],[-33.6483,3.58554,21.1167],[-33.2535,4.38253,20.5039],[-31.8209,3.6748,20.7249],[-35.2468,3.89074,21.6278],[-33.2535,4.38253,20.5039],[-33.6483,3.58554,21.1167],[-34.2194,2.77046,22.2963],[-35.2494,2.00865,23.6776],[-36.585,2.66355,23.1185],[-35.2468,3.89074,21.6278],[-37.2604,3.81791,22.6197],[-36.303,5.13202,21.7684],[-38.7799,3.77633,23.5829],[-37.2604,3.81791,22.6197],[-38.259,2.82141,23.7043],[-37.8621,2.09472,24.1105],[-36.585,2.66355,23.1185],[-36.505,1.78741,24.2727],[-39.0832,2.09241,24.7345],[-39.6176,2.84661,24.5916],[-38.259,2.82141,23.7043],[-40.3799,1.97667,25.7463],[-39.0832,2.09241,24.7345],[-39.7349,1.22335,26.1183],[-39.9519,0.566905,27.3536],[-39.7349,1.22335,26.1183],[-38.8685,0.828613,26.5289],[-38.6781,1.49317,25.2042],[-37.8621,2.09472,24.1105],[-36.505,1.78741,24.2727],[-38.6714,0.253298,28.1875],[-38.8685,0.828613,26.5289],[-36.82,1.11073,25.737],[-35.4357,1.44971,25.0959],[-35.8519,1.08492,26.2808],[-36.82,1.11073,25.737],[-35.2494,2.00865,23.6776],[-36.505,1.78741,24.2727],[-36.585,2.66355,23.1185],[-34.3386,1.75744,24.2088],[-35.2494,2.00865,23.6776],[-33.1777,2.18255,23.2548],[-33.1777,2.18255,23.2548],[-33.3487,1.69624,25.0487],[-34.3386,1.75744,24.2088],[-35.4357,1.44971,25.0959],[-34.641,1.27265,26.694],[-35.8519,1.08492,26.2808],[-33.3487,1.69624,25.0487],[-31.2686,1.96589,24.7363],[-31.9635,1.73175,26.4431],[-34.641,1.27265,26.694],[-35.4535,0.980528,28.9706],[-36.6609,0.654294,28.0062],[-33.6642,1.48523,29.0021],[-33.0389,1.83757,29.898],[-34.4842,1.46042,30.07],[-35.7543,1.04775,30.4845],[-37.1068,0.46875,30.7542],[-35.4535,0.980528,28.9706],[-36.6921,0.805745,31.4853],[-37.1068,0.46875,30.7542],[-35.7543,1.04775,30.4845],[-36.6921,0.805745,31.4853],[-37.7523,0.351829,31.986],[-37.1068,0.46875,30.7542],[-38.8093,-0.124013,32.5943],[-37.7523,0.351829,31.986],[-38.2089,0.38471,33.0779],[-39.0657,0.0381535,33.7746],[-38.2089,0.38471,33.0779],[-38.2898,0.880219,34.161],[-38.2898,0.880219,34.161],[-36.674,1.7193,33.4476],[-37.6329,1.82111,34.46],[-38.3375,1.449,34.8588],[-37.6329,1.82111,34.46],[-38.4854,2.10041,35.3526],[-37.4143,2.71567,34.8188],[-36.2727,3.87345,34.3753],[-38.1799,3.33301,35.3866],[-38.1799,3.33301,35.3866],[-36.2727,3.87345,34.3753],[-37.0314,4.99462,34.7346],[-38.4854,2.10041,35.3526],[-39.1098,2.67947,35.93],[-39.4915,1.53024,36.0402],[-40.3955,2.50158,36.8249],[-40.5998,1.19187,37.0397],[-39.1098,2.67947,35.93],[-41.7363,2.09088,37.9395],[-40.3955,2.50158,36.8249],[-41.233,3.40686,36.9772],[-41.233,3.40686,36.9772],[-40.117,4.79222,35.7972],[-41.9983,4.44346,36.4041],[-38.4317,5.08122,35.1866],[-39.0804,5.99725,34.763],[-40.117,4.79222,35.7972],[-38.1799,3.33301,35.3866],[-38.2093,4.30589,35.3852],[-39.4326,3.64838,36.0425],[-37.0314,4.99462,34.7346],[-38.2093,4.30589,35.3852],[-38.1799,3.33301,35.3866],[-35.0925,5.97128,33.9577],[-36.0522,6.32419,34.1147],[-37.0314,4.99462,34.7346],[-39.0804,5.99725,34.763],[-38.4317,5.08122,35.1866],[-37.6046,5.8398,34.6466],[-36.7229,7.62801,33.424],[-36.7586,6.76881,34.0432],[-35.9041,7.20922,33.6743],[-39.9196,6.73209,34.0142],[-39.0804,5.99725,34.763],[-38.2349,7.43292,33.5112],[-38.2349,7.43292,33.5112],[-37.1212,8.25246,32.8041],[-38.5265,8.19977,32.3629],[-35.946,8.09986,33.0389],[-36.7229,7.62801,33.424],[-35.9041,7.20922,33.6743],[-35.9041,7.20922,33.6743],[-34.0617,7.71839,33.3011],[-35.946,8.09986,33.0389],[-37.1212,8.25246,32.8041],[-36.1718,8.90915,32.2864],[-37.1946,8.82416,32.0828],[-36.1481,9.47952,31.4034],[-37.1946,8.82416,32.0828],[-36.1718,8.90915,32.2864],[-36.1481,9.47952,31.4034],[-34.5289,10.1374,31.1541],[-34.2793,10.5928,30.1416],[-33.0167,10.6274,30.989],[-34.2793,10.5928,30.1416],[-34.5289,10.1374,31.1541],[-35.946,8.09986,33.0389],[-32.7352,9.03285,32.6628],[-34.4823,9.55378,31.9218],[-33.0167,10.6274,30.989],[-32.7076,9.9935,31.9665],[-31.5421,10.6652,31.6653],[-30.0528,11.3453,31.4693],[-31.5421,10.6652,31.6653],[-30.0462,10.6278,32.2607],[-28.5635,10.2482,33.0155],[-30.0462,10.6278,32.2607],[-30.2032,9.76568,32.8425],[-28.5635,10.2482,33.0155],[-30.2032,9.76568,32.8425],[-29.4867,9.03513,33.3511],[-30.6685,7.96848,33.4438],[-28.9095,8.1002,33.7507],[-29.4867,9.03513,33.3511],[-30.6685,7.96848,33.4438],[-32.3419,7.88719,33.2658],[-31.6143,6.90527,33.5051],[-32.7352,9.03285,32.6628],[-31.3495,8.92222,32.9916],[-31.4798,9.86494,32.4235],[-35.946,8.09986,33.0389],[-34.0617,7.71839,33.3011],[-32.7352,9.03285,32.6628],[-31.6143,6.90527,33.5051],[-32.3419,7.88719,33.2658],[-33.3198,6.80999,33.5471],[-34.0617,7.71839,33.3011],[-35.9041,7.20922,33.6743],[-34.9224,6.78963,33.7595],[-36.0522,6.32419,34.1147],[-35.0925,5.97128,33.9577],[-34.9224,6.78963,33.7595],[-34.1612,5.67945,33.7875],[-32.8954,5.90582,33.5489],[-33.3198,6.80999,33.5471],[-35.0925,5.97128,33.9577],[-37.0314,4.99462,34.7346],[-35.2681,5.07682,34.1141],[-32.8954,5.90582,33.5489],[-34.1612,5.67945,33.7875],[-34.1694,4.67567,33.6406],[-37.0314,4.99462,34.7346],[-36.2727,3.87345,34.3753],[-35.2681,5.07682,34.1141],[-36.2727,3.87345,34.3753],[-36.2159,2.99249,34.1073],[-35.3296,3.3179,33.659],[-31.5435,4.82138,33.182],[-34.1694,4.67567,33.6406],[-32.5102,3.96204,32.9107],[-33.6295,3.07465,32.6325],[-32.3953,3.1457,32.1537],[-32.5102,3.96204,32.9107],[-35.6469,2.56399,33.3745],[-34.8481,2.66735,32.8955],[-35.3296,3.3179,33.659],[-34.0182,2.34273,31.8834],[-32.3953,3.1457,32.1537],[-33.6295,3.07465,32.6325],[-35.5465,2.03319,32.6885],[-34.8481,2.66735,32.8955],[-35.6469,2.56399,33.3745],[-37.271,0.897232,32.7204],[-34.9319,1.6481,31.2133],[-35.5465,2.03319,32.6885],[-33.8708,1.89922,30.8466],[-34.9319,1.6481,31.2133],[-34.4842,1.46042,30.07],[-34.0182,2.34273,31.8834],[-32.6159,2.33978,31.0373],[-32.3953,3.1457,32.1537],[-33.0389,1.83757,29.898],[-33.8708,1.89922,30.8466],[-34.4842,1.46042,30.07],[-32.6159,2.33978,31.0373],[-30.7976,2.76254,31.1973],[-32.3953,3.1457,32.1537],[-29.606,2.46567,30.2356],[-29.2059,2.9488,31.2851],[-30.7976,2.76254,31.1973],[-30.2393,2.07459,28.844],[-27.9337,2.29543,29.1985],[-29.606,2.46567,30.2356],[-31.3899,2.18932,29.9687],[-33.0389,1.83757,29.898],[-32.0125,1.79578,28.4445],[-30.3931,1.91354,27.2289],[-28.9214,2.06257,28.1082],[-30.2393,2.07459,28.844],[-32.0125,1.79578,28.4445],[-33.3322,1.47809,27.7765],[-31.9635,1.73175,26.4431],[-31.9635,1.73175,26.4431],[-31.2686,1.96589,24.7363],[-30.1289,1.96046,25.4974],[-30.1289,1.96046,25.4974],[-29.9271,2.1661,24.1197],[-28.6105,2.14297,24.6705],[-27.1522,2.25998,24.1585],[-27.1446,2.11256,25.4478],[-28.6105,2.14297,24.6705],[-28.6614,2.02149,26.0269],[-27.0381,2.09739,27.2893],[-30.3931,1.91354,27.2289],[-27.1446,2.11256,25.4478],[-27.1522,2.25998,24.1585],[-25.5363,2.21112,24.6556],[-25.035,2.05045,27.3934],[-27.0381,2.09739,27.2893],[-25.8547,2.08497,26.1222],[-22.7679,1.89057,26.8481],[-24.4165,2.06027,25.9194],[-22.7758,2.12327,24.7056],[-24.6546,2.13584,28.7977],[-25.035,2.05045,27.3934],[-23.1044,2.01927,29.0268],[-20.9401,1.72702,25.6678],[-20.3073,1.40358,28.3974],[-22.7679,1.89057,26.8481],[-22.7953,2.21773,30.4072],[-23.1044,2.01927,29.0268],[-21.4628,1.84481,29.9725],[-21.497,2.17631,31.364],[-21.4628,1.84481,29.9725],[-19.5157,1.42625,30.6985],[-17.9006,0.553585,27.0994],[-17.7615,0.565959,29.492],[-20.3073,1.40358,28.3974],[-17.9006,0.553585,27.0994],[-16.5478,-0.104099,28.1966],[-17.7615,0.565959,29.492],[-17.8307,0.838601,31.0981],[-18.3244,1.25406,31.9285],[-19.5157,1.42625,30.6985],[-18.3244,1.25406,31.9285],[-17.8307,0.838601,31.0981],[-17.0904,0.7809,32.1613],[-17.0904,0.7809,32.1613],[-15.8865,0.281222,32.3462],[-16.3516,0.846156,33.3021],[-15.7777,-0.339635,29.7552],[-14.7746,-0.449215,31.608],[-16.5009,0.247692,31.0914],[-16.3516,0.846156,33.3021],[-15.8865,0.281222,32.3462],[-14.773,0.167973,33.4233],[-13.522,-0.686132,32.8261],[-14.7746,-0.449215,31.608],[-12.98,-1.33425,31.6536],[-13.522,-0.686132,32.8261],[-12.98,-1.33425,31.6536],[-11.9421,-1.30267,33.1207],[-12.98,-1.33425,31.6536],[-11.6202,-1.96312,31.7756],[-11.9421,-1.30267,33.1207],[-11.6202,-1.96312,31.7756],[-10.3376,-2.31312,32.4154],[-11.9421,-1.30267,33.1207],[-11.9421,-1.30267,33.1207],[-10.3376,-2.31312,32.4154],[-10.3657,-1.62062,34.007],[-10.3657,-1.62062,34.007],[-11.5316,-0.705549,34.7924],[-11.9421,-1.30267,33.1207],[-11.5316,-0.705549,34.7924],[-13.1063,-0.30564,34.1558],[-11.9421,-1.30267,33.1207],[-11.5316,-0.705549,34.7924],[-10.3657,-1.62062,34.007],[-9.95373,-1.04293,35.4526],[-11.5316,-0.705549,34.7924],[-9.95373,-1.04293,35.4526],[-11.0713,-0.0665603,36.1861],[-11.0713,-0.0665603,36.1861],[-12.5935,0.25983,35.5849],[-11.5316,-0.705549,34.7924],[-11.0713,-0.0665603,36.1861],[-12.0448,0.933972,36.8337],[-12.5935,0.25983,35.5849],[-11.0713,-0.0665603,36.1861],[-10.6837,0.650956,37.2966],[-12.0448,0.933972,36.8337],[-12.0448,0.933972,36.8337],[-10.6837,0.650956,37.2966],[-11.3868,1.85434,38.0359],[-11.3868,1.85434,38.0359],[-10.6837,0.650956,37.2966],[-9.36986,1.04273,38.2817],[-9.36986,1.04273,38.2817],[-10.6837,0.650956,37.2966],[-9.51285,-0.284775,36.8388],[-10.6837,0.650956,37.2966],[-11.0713,-0.0665603,36.1861],[-9.51285,-0.284775,36.8388],[-11.0713,-0.0665603,36.1861],[-9.95373,-1.04293,35.4526],[-9.51285,-0.284775,36.8388],[-9.51285,-0.284775,36.8388],[-9.95373,-1.04293,35.4526],[-8.15268,-1.51265,36.0014],[-9.51285,-0.284775,36.8388],[-8.15268,-1.51265,36.0014],[-7.78914,-0.581546,37.4762],[-9.95373,-1.04293,35.4526],[-8.9507,-1.95318,34.6108],[-8.15268,-1.51265,36.0014],[-8.9507,-1.95318,34.6108],[-7.6884,-2.39189,34.8533],[-8.15268,-1.51265,36.0014],[-8.15268,-1.51265,36.0014],[-7.6884,-2.39189,34.8533],[-6.82808,-2.3982,35.5482],[-6.236,-1.80219,36.8611],[-8.15268,-1.51265,36.0014],[-6.82808,-2.3982,35.5482],[-5.52593,-2.95425,35.6181],[-6.236,-1.80219,36.8611],[-6.82808,-2.3982,35.5482],[-6.39554,-3.25413,34.2463],[-5.52593,-2.95425,35.6181],[-6.82808,-2.3982,35.5482],[-6.39554,-3.25413,34.2463],[-5.03538,-3.67682,34.6839],[-5.52593,-2.95425,35.6181],[-4.23326,-3.61571,35.4568],[-5.52593,-2.95425,35.6181],[-5.03538,-3.67682,34.6839],[-5.03538,-3.67682,34.6839],[-4.0574,-4.22467,34.3325],[-4.23326,-3.61571,35.4568],[-3.08949,-4.20093,35.0577],[-4.23326,-3.61571,35.4568],[-4.0574,-4.22467,34.3325],[-3.08949,-4.20093,35.0577],[-3.30156,-3.54346,36.1652],[-4.23326,-3.61571,35.4568],[-4.3832,-2.79978,36.6479],[-4.23326,-3.61571,35.4568],[-3.30156,-3.54346,36.1652],[-2.7102,-2.84493,37.3651],[-4.3832,-2.79978,36.6479],[-3.30156,-3.54346,36.1652],[-3.30156,-3.54346,36.1652],[-2.09451,-3.93764,35.9846],[-2.7102,-2.84493,37.3651],[-4.3832,-2.79978,36.6479],[-2.7102,-2.84493,37.3651],[-4.2678,-1.79133,37.9771],[-4.95143,-4.12286,33.7017],[-4.0574,-4.22467,34.3325],[-5.03538,-3.67682,34.6839],[-4.95143,-4.12286,33.7017],[-3.92211,-4.72166,33.1166],[-4.0574,-4.22467,34.3325],[-3.92211,-4.72166,33.1166],[-3.12653,-4.67156,33.9569],[-4.0574,-4.22467,34.3325],[-4.3832,-2.79978,36.6479],[-5.52593,-2.95425,35.6181],[-4.23326,-3.61571,35.4568],[-5.03538,-3.67682,34.6839],[-6.39554,-3.25413,34.2463],[-4.95143,-4.12286,33.7017],[-5.20882,-4.56059,32.1468],[-4.95143,-4.12286,33.7017],[-6.39554,-3.25413,34.2463],[-6.39554,-3.25413,34.2463],[-7.16482,-3.68346,32.4393],[-5.20882,-4.56059,32.1468],[-7.16482,-3.68346,32.4393],[-6.52375,-4.5386,30.7911],[-5.20882,-4.56059,32.1468],[-6.52375,-4.5386,30.7911],[-7.16482,-3.68346,32.4393],[-7.96268,-3.80006,31.2521],[-6.52375,-4.5386,30.7911],[-7.96268,-3.80006,31.2521],[-7.9114,-4.37121,29.6198],[-6.52375,-4.5386,30.7911],[-7.9114,-4.37121,29.6198],[-6.05894,-5.30128,28.9812],[-6.05894,-5.30128,28.9812],[-4.7462,-5.34042,30.1782],[-6.52375,-4.5386,30.7911],[-4.7462,-5.34042,30.1782],[-6.05894,-5.30128,28.9812],[-4.53938,-5.91295,28.526],[-6.05894,-5.30128,28.9812],[-5.39586,-6.12413,27.0245],[-4.53938,-5.91295,28.526],[-5.39586,-6.12413,27.0245],[-3.72819,-6.41806,27.4338],[-4.53938,-5.91295,28.526],[-2.77386,-6.13446,28.9966],[-4.53938,-5.91295,28.526],[-3.72819,-6.41806,27.4338],[-3.72819,-6.41806,27.4338],[-5.39586,-6.12413,27.0245],[-3.71882,-6.905,25.6877],[-5.39586,-6.12413,27.0245],[-5.68267,-6.74179,24.8483],[-3.71882,-6.905,25.6877],[-5.68267,-6.74179,24.8483],[-5.39586,-6.12413,27.0245],[-7.00236,-5.97713,25.9036],[-7.00236,-5.97713,25.9036],[-7.33415,-6.46422,24.0242],[-5.68267,-6.74179,24.8483],[-5.68267,-6.74179,24.8483],[-7.33415,-6.46422,24.0242],[-6.28595,-7.09841,23.127],[-5.68267,-6.74179,24.8483],[-6.28595,-7.09841,23.127],[-4.62004,-7.4492,23.2942],[-7.33415,-6.46422,24.0242],[-8.00405,-6.90171,21.4844],[-6.28595,-7.09841,23.127],[-8.00405,-6.90171,21.4844],[-7.33415,-6.46422,24.0242],[-9.06122,-5.79998,23.6642],[-8.00405,-6.90171,21.4844],[-9.06122,-5.79998,23.6642],[-10.575,-5.57716,21.6862],[-7.33415,-6.46422,24.0242],[-8.21933,-5.74052,25.15],[-9.06122,-5.79998,23.6642],[-8.21933,-5.74052,25.15],[-9.50595,-4.98392,25.4736],[-9.06122,-5.79998,23.6642],[-9.50595,-4.98392,25.4736],[-10.8881,-4.64525,24.0209],[-9.06122,-5.79998,23.6642],[-8.35012,-5.18966,26.5838],[-9.50595,-4.98392,25.4736],[-8.21933,-5.74052,25.15],[-7.00236,-5.97713,25.9036],[-8.35012,-5.18966,26.5838],[-8.21933,-5.74052,25.15],[-7.00236,-5.97713,25.9036],[-7.22527,-5.2732,27.7344],[-8.35012,-5.18966,26.5838],[-7.22527,-5.2732,27.7344],[-8.75454,-4.49571,28.1011],[-8.35012,-5.18966,26.5838],[-8.75454,-4.49571,28.1011],[-9.56095,-4.46642,26.9561],[-8.35012,-5.18966,26.5838],[-8.75454,-4.49571,28.1011],[-10.1904,-3.76116,28.145],[-9.56095,-4.46642,26.9561],[-10.1904,-3.76116,28.145],[-8.75454,-4.49571,28.1011],[-9.36882,-3.80995,29.3372],[-8.75454,-4.49571,28.1011],[-7.9114,-4.37121,29.6198],[-9.36882,-3.80995,29.3372],[-9.39262,-3.29493,30.87],[-9.36882,-3.80995,29.3372],[-7.9114,-4.37121,29.6198],[-9.36882,-3.80995,29.3372],[-9.39262,-3.29493,30.87],[-10.5989,-3.08488,29.7239],[-10.5989,-3.08488,29.7239],[-9.39262,-3.29493,30.87],[-10.7988,-2.57763,31.084],[-10.3376,-2.31312,32.4154],[-10.7988,-2.57763,31.084],[-9.39262,-3.29493,30.87],[-10.3376,-2.31312,32.4154],[-9.39262,-3.29493,30.87],[-8.73197,-3.04039,32.3876],[-9.31668,-2.34395,33.4542],[-10.3376,-2.31312,32.4154],[-8.73197,-3.04039,32.3876],[-9.31668,-2.34395,33.4542],[-8.73197,-3.04039,32.3876],[-8.06319,-2.78197,33.6984],[-8.9507,-1.95318,34.6108],[-9.31668,-2.34395,33.4542],[-8.06319,-2.78197,33.6984],[-9.31668,-2.34395,33.4542],[-8.9507,-1.95318,34.6108],[-10.3657,-1.62062,34.007],[-7.16482,-3.68346,32.4393],[-8.06319,-2.78197,33.6984],[-8.73197,-3.04039,32.3876],[-9.39262,-3.29493,30.87],[-7.96268,-3.80006,31.2521],[-8.73197,-3.04039,32.3876],[-8.75454,-4.49571,28.1011],[-7.22527,-5.2732,27.7344],[-7.9114,-4.37121,29.6198],[-8.35012,-5.18966,26.5838],[-9.56095,-4.46642,26.9561],[-9.50595,-4.98392,25.4736],[-9.56095,-4.46642,26.9561],[-11.0789,-3.80373,26.297],[-9.50595,-4.98392,25.4736],[-8.21933,-5.74052,25.15],[-7.33415,-6.46422,24.0242],[-7.00236,-5.97713,25.9036],[-7.22527,-5.2732,27.7344],[-7.00236,-5.97713,25.9036],[-5.39586,-6.12413,27.0245],[-7.22527,-5.2732,27.7344],[-5.39586,-6.12413,27.0245],[-6.05894,-5.30128,28.9812],[-7.22527,-5.2732,27.7344],[-6.05894,-5.30128,28.9812],[-7.9114,-4.37121,29.6198],[-7.9114,-4.37121,29.6198],[-7.96268,-3.80006,31.2521],[-9.39262,-3.29493,30.87],[-7.96268,-3.80006,31.2521],[-7.16482,-3.68346,32.4393],[-8.73197,-3.04039,32.3876],[-6.39554,-3.25413,34.2463],[-8.06319,-2.78197,33.6984],[-7.16482,-3.68346,32.4393],[-6.39554,-3.25413,34.2463],[-7.6884,-2.39189,34.8533],[-8.06319,-2.78197,33.6984],[-5.52593,-2.95425,35.6181],[-4.3832,-2.79978,36.6479],[-6.236,-1.80219,36.8611],[-6.39554,-3.25413,34.2463],[-6.82808,-2.3982,35.5482],[-7.6884,-2.39189,34.8533],[-8.06319,-2.78197,33.6984],[-7.6884,-2.39189,34.8533],[-8.9507,-1.95318,34.6108],[-8.9507,-1.95318,34.6108],[-9.95373,-1.04293,35.4526],[-10.3657,-1.62062,34.007],[-10.3376,-2.31312,32.4154],[-9.31668,-2.34395,33.4542],[-10.3657,-1.62062,34.007],[-10.3376,-2.31312,32.4154],[-11.6202,-1.96312,31.7756],[-10.7988,-2.57763,31.084],[-11.6202,-1.96312,31.7756],[-11.967,-2.19517,30.4423],[-10.7988,-2.57763,31.084],[-12.98,-1.33425,31.6536],[-11.967,-2.19517,30.4423],[-11.6202,-1.96312,31.7756],[-14.7746,-0.449215,31.608],[-14.0078,-1.23309,29.9255],[-12.98,-1.33425,31.6536],[-13.1063,-0.30564,34.1558],[-13.522,-0.686132,32.8261],[-11.9421,-1.30267,33.1207],[-14.773,0.167973,33.4233],[-14.1303,0.657799,34.9885],[-15.6326,1.11471,34.5075],[-13.1063,-0.30564,34.1558],[-11.5316,-0.705549,34.7924],[-12.5935,0.25983,35.5849],[-12.5935,0.25983,35.5849],[-12.0448,0.933972,36.8337],[-13.5295,1.26874,36.283],[-13.5295,1.26874,36.283],[-12.0448,0.933972,36.8337],[-12.891,1.86794,37.2963],[-15.0206,1.6578,35.748],[-15.6326,1.11471,34.5075],[-14.1303,0.657799,34.9885],[-15.0206,1.6578,35.748],[-15.8855,2.65109,36.3057],[-16.4122,1.98112,35.2397],[-15.8855,2.65109,36.3057],[-15.4626,3.35567,37.1302],[-16.6249,3.57361,36.6812],[-14.4285,3.40679,37.6919],[-15.1905,4.1357,37.7611],[-15.4626,3.35567,37.1302],[-13.9497,4.1913,38.3692],[-14.4285,3.40679,37.6919],[-13.0319,3.00419,38.0809],[-14.3539,2.4432,36.9744],[-13.5295,1.26874,36.283],[-12.891,1.86794,37.2963],[-11.3868,1.85434,38.0359],[-12.891,1.86794,37.2963],[-12.0448,0.933972,36.8337],[-12.5118,4.33284,39.0486],[-13.0319,3.00419,38.0809],[-11.5624,3.16164,38.8603],[-11.5624,3.16164,38.8603],[-10.7161,4.16062,39.6759],[-12.5118,4.33284,39.0486],[-10.7161,4.16062,39.6759],[-9.31721,3.43963,39.8701],[-9.22507,4.81333,40.3916],[-9.31721,3.43963,39.8701],[-8.51378,2.27656,39.5245],[-8.10741,3.54894,40.2793],[-10.1286,2.61354,39.1169],[-11.3868,1.85434,38.0359],[-9.36986,1.04273,38.2817],[-8.51378,2.27656,39.5245],[-7.31241,0.987485,39.1498],[-7.04392,2.31491,40.1016],[-9.51285,-0.284775,36.8388],[-7.78914,-0.581546,37.4762],[-9.36986,1.04273,38.2817],[-6.58565,-0.217304,38.4744],[-7.31241,0.987485,39.1498],[-7.7534,0.257896,38.402],[-7.78914,-0.581546,37.4762],[-8.15268,-1.51265,36.0014],[-6.236,-1.80219,36.8611],[-4.3832,-2.79978,36.6479],[-4.2678,-1.79133,37.9771],[-6.236,-1.80219,36.8611],[-6.58565,-0.217304,38.4744],[-5.44441,-1.14095,38.1308],[-4.74201,-0.631294,38.9798],[-3.85374,-0.580356,39.5257],[-4.43409,-0.125311,39.7859],[-4.74201,-0.631294,38.9798],[-3.21667,-0.894329,39.6299],[-3.71276,-0.606815,39.937],[-3.85374,-0.580356,39.5257],[-2.62201,-1.34341,39.6798],[-3.21722,-1.09545,39.9738],[-3.21667,-0.894329,39.6299],[-2.62201,-1.34341,39.6798],[-1.24099,-1.90318,39.1929],[-1.66746,-1.85607,39.7888],[-2.7102,-2.84493,37.3651],[-3.18584,-1.45431,38.9042],[-4.2678,-1.79133,37.9771],[-0.756087,-2.45294,38.3901],[-1.24099,-1.90318,39.1929],[-1.93175,-2.14622,38.543],[-2.09451,-3.93764,35.9846],[-0.949767,-3.4847,37.0259],[-2.7102,-2.84493,37.3651],[0.41015,-3.04969,37.66],[0.467357,-2.20833,38.6568],[-0.756087,-2.45294,38.3901],[-0.949767,-3.4847,37.0259],[-0.711182,-4.33457,35.6754],[0.205753,-3.87771,36.5637],[0.205753,-3.87771,36.5637],[0.674985,-4.44785,35.4237],[1.64167,-3.59279,36.6655],[1.64167,-3.59279,36.6655],[0.674985,-4.44785,35.4237],[2.23994,-4.3833,34.9518],[1.88862,-2.42916,38.1221],[0.467357,-2.20833,38.6568],[0.41015,-3.04969,37.66],[1.88862,-2.42916,38.1221],[2.87554,-2.89408,37.2897],[3.46829,-1.98218,38.0792],[2.87554,-2.89408,37.2897],[4.1309,-2.61414,37.0444],[3.46829,-1.98218,38.0792],[4.74514,-3.17521,35.7568],[5.26268,-2.33801,36.7549],[4.1309,-2.61414,37.0444],[4.74514,-3.17521,35.7568],[3.69315,-3.97044,34.9856],[4.86292,-3.88469,34.0441],[3.22382,-3.52187,36.1697],[1.64167,-3.59279,36.6655],[2.23994,-4.3833,34.9518],[3.69315,-3.97044,34.9856],[3.36043,-4.54193,33.8091],[4.86292,-3.88469,34.0441],[0.945318,-5.01213,33.9419],[2.17235,-5.01439,33.3822],[2.23994,-4.3833,34.9518],[4.13538,-4.66043,32.6182],[3.36043,-4.54193,33.8091],[3.03125,-5.00373,32.7475],[4.13538,-4.66043,32.6182],[3.03125,-5.00373,32.7475],[3.19611,-5.2397,31.631],[2.27381,-5.32815,32.2628],[3.19611,-5.2397,31.631],[3.03125,-5.00373,32.7475],[4.74927,-4.91887,30.9649],[4.13538,-4.66043,32.6182],[3.19611,-5.2397,31.631],[6.05943,-4.8459,29.6076],[4.74927,-4.91887,30.9649],[4.54648,-5.49559,29.1727],[5.7244,-5.42075,28.0383],[6.75833,-5.43645,26.6161],[7.24556,-4.75936,28.3413],[6.05943,-4.8459,29.6076],[7.56696,-4.15544,29.9849],[6.42386,-4.24176,31.1536],[8.9366,-3.99512,28.7363],[8.93267,-3.50882,30.4988],[7.56696,-4.15544,29.9849],[6.75833,-5.43645,26.6161],[8.34382,-4.67567,27.0555],[7.24556,-4.75936,28.3413],[8.34382,-4.67567,27.0555],[6.75833,-5.43645,26.6161],[8.12958,-5.17821,25.5508],[8.9366,-3.99512,28.7363],[9.76009,-4.09024,27.0684],[10.6917,-3.52768,28.3911],[8.12958,-5.17821,25.5508],[9.18187,-4.60092,25.9774],[8.34382,-4.67567,27.0555],[9.18187,-4.60092,25.9774],[9.31445,-4.88008,24.6712],[10.3448,-4.18196,25.5115],[10.6917,-3.52768,28.3911],[9.76009,-4.09024,27.0684],[11.0276,-3.71029,26.7233],[11.0276,-3.71029,26.7233],[11.3995,-3.69572,25.5774],[12.3672,-3.48447,25.8016],[12.3672,-3.48447,25.8016],[11.3995,-3.69572,25.5774],[11.8318,-3.67274,24.291],[10.6133,-4.50421,23.5474],[10.3448,-4.18196,25.5115],[9.31445,-4.88008,24.6712],[9.31445,-4.88008,24.6712],[9.18187,-4.60092,25.9774],[8.12958,-5.17821,25.5508],[6.75833,-5.43645,26.6161],[6.93679,-5.86469,24.8609],[8.12958,-5.17821,25.5508],[9.34705,-5.22677,23.362],[8.2309,-5.55485,24.0575],[8.51851,-5.8433,22.5724],[7.44114,-6.56465,21.6659],[7.15979,-6.22762,23.2709],[6.05169,-6.90046,22.345],[7.85457,-6.7724,20.3522],[8.84851,-6.12609,21.0617],[7.44114,-6.56465,21.6659],[7.85457,-6.7724,20.3522],[7.44114,-6.56465,21.6659],[6.19999,-7.38764,20.3318],[8.51851,-5.8433,22.5724],[10.0388,-5.2644,21.945],[9.34705,-5.22677,23.362],[8.84851,-6.12609,21.0617],[7.85457,-6.7724,20.3522],[8.98719,-6.49577,19.5921],[7.74327,-7.19098,19.0603],[8.98719,-6.49577,19.5921],[7.85457,-6.7724,20.3522],[8.98719,-6.49577,19.5921],[7.74327,-7.19098,19.0603],[8.99097,-6.92016,18.187],[8.98719,-6.49577,19.5921],[8.99097,-6.92016,18.187],[10.2062,-6.16137,18.6509],[10.0235,-6.70685,17.2463],[10.2062,-6.16137,18.6509],[8.99097,-6.92016,18.187],[8.98825,-7.28517,16.9986],[10.0235,-6.70685,17.2463],[8.99097,-6.92016,18.187],[8.98825,-7.28517,16.9986],[8.99097,-6.92016,18.187],[7.89594,-7.57885,17.5438],[8.24133,-7.85309,16.0687],[8.98825,-7.28517,16.9986],[7.89594,-7.57885,17.5438],[8.98825,-7.28517,16.9986],[8.24133,-7.85309,16.0687],[9.70291,-7.26078,15.901],[8.24133,-7.85309,16.0687],[8.91116,-8.01208,14.287],[9.70291,-7.26078,15.901],[10.0235,-6.70685,17.2463],[8.98825,-7.28517,16.9986],[9.70291,-7.26078,15.901],[10.8598,-6.57133,16.2323],[10.0235,-6.70685,17.2463],[9.70291,-7.26078,15.901],[11.0529,-6.96762,14.4965],[10.8598,-6.57133,16.2323],[9.70291,-7.26078,15.901],[12.0897,-5.88176,15.9887],[10.8598,-6.57133,16.2323],[11.0529,-6.96762,14.4965],[10.8598,-6.57133,16.2323],[11.2819,-5.9229,17.4687],[10.0235,-6.70685,17.2463],[10.2062,-6.16137,18.6509],[10.0235,-6.70685,17.2463],[11.2819,-5.9229,17.4687],[11.1736,-4.93872,20.8141],[10.0388,-5.2644,21.945],[10.1788,-5.69886,20.21],[11.4422,-4.41178,22.0285],[10.0388,-5.2644,21.945],[11.1736,-4.93872,20.8141],[11.8071,-3.91549,23.0041],[11.4422,-4.41178,22.0285],[12.3217,-3.78634,22.1109],[12.6114,-3.35695,23.0126],[11.8071,-3.91549,23.0041],[12.3217,-3.78634,22.1109],[13.0194,-3.1106,22.7575],[13.067,-3.28451,21.7347],[13.3683,-3.14884,22.4286],[13.0386,-3.15757,23.1335],[13.0194,-3.1106,22.7575],[13.3683,-3.14884,22.4286],[13.0386,-3.15757,23.1335],[13.5093,-3.53449,23.0049],[12.671,-3.29454,23.8571],[12.6114,-3.35695,23.0126],[11.8318,-3.67274,24.291],[11.8071,-3.91549,23.0041],[12.671,-3.29454,23.8571],[13.5093,-3.53449,23.0049],[13.1384,-3.61122,25.1645],[12.3672,-3.48447,25.8016],[11.8318,-3.67274,24.291],[12.5207,-3.38663,24.7877],[13.2638,-3.69029,26.2257],[12.2963,-3.46448,27.4949],[12.3672,-3.48447,25.8016],[13.2638,-3.69029,26.2257],[13.9026,-4.10673,25.1936],[14.1391,-4.11116,26.3125],[13.9026,-4.10673,25.1936],[14.3217,-4.67866,24.0197],[14.8306,-4.7313,25.4335],[14.3217,-4.67866,24.0197],[13.922,-4.32183,22.9328],[14.5356,-5.46164,22.2796],[13.5093,-3.53449,23.0049],[13.7437,-3.99869,24.0535],[13.1384,-3.61122,25.1645],[13.922,-4.32183,22.9328],[13.6244,-3.64623,22.3539],[13.9712,-4.71588,21.7584],[13.5093,-3.53449,23.0049],[13.0386,-3.15757,23.1335],[13.3683,-3.14884,22.4286],[13.9712,-4.71588,21.7584],[13.6244,-3.64623,22.3539],[13.8389,-4.72263,20.1054],[13.7817,-5.30118,16.8767],[14.0972,-6.59764,16.8148],[13.9774,-5.90423,17.9518],[13.7839,-4.91395,18.6863],[14.1648,-5.96128,19.1559],[13.8389,-4.72263,20.1054],[14.7731,-7.20883,18.7758],[14.6035,-6.49712,20.0557],[14.1648,-5.96128,19.1559],[14.5831,-7.48134,17.3966],[15.1584,-8.18204,17.7889],[14.7731,-7.20883,18.7758],[15.1584,-8.18204,17.7889],[14.5831,-7.48134,17.3966],[14.9052,-8.38689,16.6264],[13.9774,-5.90423,17.9518],[14.0972,-6.59764,16.8148],[14.2755,-6.63382,18.0602],[14.9052,-8.38689,16.6264],[14.5831,-7.48134,17.3966],[14.4023,-7.72071,16.1003],[15.1598,-9.21798,15.8612],[14.6583,-8.59564,15.5809],[14.5444,-9.39398,14.5437],[15.1584,-8.18204,17.7889],[14.9052,-8.38689,16.6264],[15.4728,-8.96359,16.9576],[16.1351,-9.4637,17.1436],[15.4728,-8.96359,16.9576],[15.7574,-9.63515,16.294],[16.4486,-8.89679,18.6771],[15.7495,-8.76372,17.9181],[16.1351,-9.4637,17.1436],[16.9332,-8.62702,19.7595],[16.4486,-8.89679,18.6771],[17.3895,-9.18337,18.9667],[17.6876,-8.8238,19.8094],[17.3895,-9.18337,18.9667],[18.2747,-9.22933,19.1302],[17.1072,-9.87193,17.3916],[18.3122,-10.3439,17.0243],[17.8065,-9.70684,18.1547],[19.2947,-9.03063,19.379],[18.2747,-9.22933,19.1302],[19.1349,-9.57099,18.4443],[19.1349,-9.57099,18.4443],[19.3817,-10.036,17.5356],[19.9758,-9.43373,18.3239],[19.9758,-9.43373,18.3239],[19.3817,-10.036,17.5356],[19.9867,-10.0381,17.2645],[19.9867,-10.0381,17.2645],[20.3646,-10.4427,16.2163],[20.7454,-9.51117,17.5452],[21.4204,-9.61833,16.5421],[20.3646,-10.4427,16.2163],[21.2788,-10.6483,14.9227],[21.4378,-9.01099,17.6123],[21.4204,-9.61833,16.5421],[22.1158,-8.66897,17.0898],[21.8141,-8.31984,18.2331],[21.4378,-9.01099,17.6123],[22.1158,-8.66897,17.0898],[21.7548,-7.1489,20.4578],[21.8141,-8.31984,18.2331],[22.4452,-7.28951,18.9671],[21.7548,-7.1489,20.4578],[22.4452,-7.28951,18.9671],[22.8165,-6.35733,19.8623],[22.8165,-6.35733,19.8623],[23.5351,-5.82071,18.8391],[23.438,-5.45887,19.9282],[24.0063,-5.28995,18.013],[24.0064,-4.73448,19.2226],[23.5351,-5.82071,18.8391],[24.0064,-4.73448,19.2226],[24.0063,-5.28995,18.013],[24.3847,-4.3857,17.857],[24.2214,-5.27496,16.5862],[24.3847,-4.3857,17.857],[24.0063,-5.28995,18.013],[23.0905,-6.75849,18.4031],[23.2381,-7.14011,17.2019],[23.6644,-6.15784,17.6245],[22.884,-8.07698,16.4184],[23.2381,-7.14011,17.2019],[22.6418,-7.7058,17.7497],[23.0929,-8.61903,14.8634],[22.884,-8.07698,16.4184],[22.2514,-9.2745,15.7381],[23.8177,-7.72886,13.5516],[23.0929,-8.61903,14.8634],[23.0794,-9.58006,13.3085],[23.624,-9.23198,11.9269],[22.9151,-10.7597,11.8245],[23.4323,-10.287,10.7461],[23.624,-9.23198,11.9269],[23.4323,-10.287,10.7461],[23.8684,-9.02719,10.4669],[23.8684,-9.02719,10.4669],[23.4323,-10.287,10.7461],[23.5044,-10.3173,9.41115],[23.5044,-10.3173,9.41115],[23.4323,-10.287,10.7461],[22.7341,-11.8017,10.1007],[22.0944,-10.9977,13.2305],[23.0794,-9.58006,13.3085],[22.4342,-9.86889,14.4237],[21.8656,-12.2654,11.6854],[22.0944,-10.9977,13.2305],[20.4515,-12.423,13.1147],[23.4323,-10.287,10.7461],[22.9151,-10.7597,11.8245],[22.7341,-11.8017,10.1007],[21.9484,-13.3319,8.72967],[22.7341,-11.8017,10.1007],[21.5299,-13.4623,10.2727],[22.9265,-11.6062,8.10694],[22.7341,-11.8017,10.1007],[21.9484,-13.3319,8.72967],[21.9484,-13.3319,8.72967],[21.7546,-13.3392,6.9881],[22.9265,-11.6062,8.10694],[20.7094,-13.5262,11.4899],[21.8656,-12.2654,11.6854],[20.4515,-12.423,13.1147],[20.7094,-13.5262,11.4899],[20.4515,-12.423,13.1147],[18.9933,-14.1668,11.8201],[18.9933,-14.1668,11.8201],[20.06,-14.6191,10.3641],[20.7094,-13.5262,11.4899],[20.9113,-14.4659,9.21871],[21.9484,-13.3319,8.72967],[21.5299,-13.4623,10.2727],[20.9113,-14.4659,9.21871],[20.7369,-14.6382,7.85881],[21.9484,-13.3319,8.72967],[17.3179,-16.4863,8.59714],[18.9301,-15.7768,7.0764],[19.4424,-15.4705,8.9052],[20.7369,-14.6382,7.85881],[21.7546,-13.3392,6.9881],[21.9484,-13.3319,8.72967],[20.4862,-14.6126,6.51861],[18.9301,-15.7768,7.0764],[19.3818,-15.003,5.47693],[18.9301,-15.7768,7.0764],[17.6517,-16.0621,5.56455],[19.3818,-15.003,5.47693],[18.9301,-15.7768,7.0764],[16.8112,-16.8107,6.94124],[17.6517,-16.0621,5.56455],[21.9185,-11.2254,5.05737],[20.8021,-13.6809,5.45084],[20.153,-12.9552,4.05302],[19.4413,-12.1875,3.1344],[18.8727,-11.3441,2.5833],[20.063,-10.8123,3.07853],[20.063,-10.8123,3.07853],[18.8727,-11.3441,2.5833],[19.0107,-9.87385,2.55006],[20.4097,-9.46536,3.19359],[20.063,-10.8123,3.07853],[19.0107,-9.87385,2.55006],[19.0107,-9.87385,2.55006],[19.8568,-8.0102,3.05428],[20.4097,-9.46536,3.19359],[18.8727,-11.3441,2.5833],[17.92,-11.0426,2.23588],[19.0107,-9.87385,2.55006],[17.92,-11.0426,2.23588],[17.2668,-9.92675,2.16346],[19.0107,-9.87385,2.55006],[19.0107,-9.87385,2.55006],[17.2668,-9.92675,2.16346],[18.1456,-8.391,2.50008],[17.92,-11.0426,2.23588],[16.5197,-11.3814,2.00784],[17.2668,-9.92675,2.16346],[17.2668,-9.92675,2.16346],[16.5197,-11.3814,2.00784],[15.5065,-10.2125,2.07654],[17.2668,-9.92675,2.16346],[15.5065,-10.2125,2.07654],[16.304,-8.50406,2.49025],[16.5197,-11.3814,2.00784],[17.92,-11.0426,2.23588],[17.5933,-12.5159,2.53384],[16.5197,-11.3814,2.00784],[17.5933,-12.5159,2.53384],[15.7009,-12.5241,2.02447],[15.0571,-11.7917,1.86091],[16.5197,-11.3814,2.00784],[15.7009,-12.5241,2.02447],[18.8727,-11.3441,2.5833],[17.5933,-12.5159,2.53384],[17.92,-11.0426,2.23588],[19.4413,-12.1875,3.1344],[17.5933,-12.5159,2.53384],[18.8727,-11.3441,2.5833],[20.4097,-9.46536,3.19359],[21.2439,-10.1702,3.90226],[20.063,-10.8123,3.07853],[21.9185,-11.2254,5.05737],[20.153,-12.9552,4.05302],[20.7007,-11.5438,3.75031],[22.2701,-9.38094,4.97122],[22.8942,-10.0501,6.12024],[21.9185,-11.2254,5.05737],[21.2439,-10.1702,3.90226],[20.4097,-9.46536,3.19359],[21.3643,-8.32483,3.9873],[22.9763,-8.60202,6.01251],[22.8942,-10.0501,6.12024],[22.2701,-9.38094,4.97122],[22.8942,-10.0501,6.12024],[22.6742,-11.4198,6.46059],[21.9185,-11.2254,5.05737],[22.6742,-11.4198,6.46059],[22.9265,-11.6062,8.10694],[21.7546,-13.3392,6.9881],[22.7341,-11.8017,10.1007],[22.9265,-11.6062,8.10694],[23.5044,-10.3173,9.41115],[23.4773,-8.86764,7.36621],[23.5178,-10.0673,8.18382],[23.2359,-10.4492,7.20168],[23.8684,-9.02719,10.4669],[23.5044,-10.3173,9.41115],[23.8396,-8.80885,9.02084],[23.8684,-9.02719,10.4669],[24.0786,-7.80332,11.5967],[23.624,-9.23198,11.9269],[24.2351,-5.9308,10.3667],[24.1373,-7.48531,10.2116],[23.8516,-6.92389,8.71464],[24.3216,-6.35058,11.3032],[24.3318,-5.89865,12.8478],[24.0786,-7.80332,11.5967],[24.554,-4.10773,13.7609],[24.2676,-5.72737,14.6453],[24.3318,-5.89865,12.8478],[24.2214,-5.27496,16.5862],[23.6599,-7.04305,15.6918],[24.2676,-5.72737,14.6453],[24.5884,-4.18123,15.5394],[24.7498,-2.88482,15.1356],[24.7934,-3.05372,16.4183],[24.3847,-4.3857,17.857],[24.2214,-5.27496,16.5862],[24.5914,-4.03592,16.7984],[24.3847,-4.3857,17.857],[24.5279,-3.54209,18.9631],[24.0064,-4.73448,19.2226],[24.7218,-3.24957,17.6695],[24.7934,-3.05372,16.4183],[24.9388,-1.92793,17.3625],[25.0305,-1.42534,19.4941],[24.9388,-1.92793,17.3625],[25.1514,-0.180612,18.8033],[24.8348,-2.5311,18.7006],[24.7197,-2.5326,20.0719],[24.5279,-3.54209,18.9631],[24.7197,-2.5326,20.0719],[25.0196,-1.32936,20.6241],[24.8189,-1.67812,21.6163],[25.108,-0.60993,21.6074],[24.8189,-1.67812,21.6163],[25.0196,-1.32936,20.6241],[25.2601,0.289304,21.3308],[25.2089,0.220023,22.2245],[25.108,-0.60993,21.6074],[25.2626,0.882615,20.2658],[25.2475,1.13369,22.1989],[25.2601,0.289304,21.3308],[25.1514,-0.180612,18.8033],[25.19,-0.377145,20.3487],[25.0305,-1.42534,19.4941],[25.202,1.94551,19.8749],[25.2626,0.882615,20.2658],[25.1899,1.00998,18.9662],[25.1899,1.00998,18.9662],[24.9736,1.61647,18.0461],[25.202,1.94551,19.8749],[25.202,1.94551,19.8749],[24.9736,1.61647,18.0461],[24.9872,3.23758,19.9337],[25.0173,-0.571839,17.305],[25.1514,-0.180612,18.8033],[24.9388,-1.92793,17.3625],[24.9181,-1.2379,16.4017],[24.8103,-0.197476,16.0921],[25.0173,-0.571839,17.305],[25.1899,1.00998,18.9662],[25.0495,0.586718,17.8137],[24.9736,1.61647,18.0461],[24.9736,1.61647,18.0461],[24.5334,2.48746,17.0037],[24.9872,3.23758,19.9337],[24.8103,-0.197476,16.0921],[24.4419,0.883531,15.2913],[24.739,1.26703,16.7118],[24.0576,3.17199,16.2682],[24.5334,2.48746,17.0037],[24.3145,2.05614,15.8435],[24.2474,5.07222,19.4049],[24.2556,3.64126,17.3709],[23.5953,4.27118,16.5387],[23.4627,5.7477,18.3199],[24.2474,5.07222,19.4049],[23.5953,4.27118,16.5387],[23.4627,5.7477,18.3199],[23.5953,4.27118,16.5387],[23.1097,5.39518,17.0579],[22.8151,4.83722,15.8413],[23.1097,5.39518,17.0579],[23.5953,4.27118,16.5387],[23.1097,5.39518,17.0579],[22.8151,4.83722,15.8413],[22.4475,5.85957,16.7499],[24.2474,5.07222,19.4049],[24.5816,4.95706,20.5031],[24.7182,4.23853,19.8393],[24.5334,2.48746,17.0037],[24.6127,3.91714,18.9316],[24.9872,3.23758,19.9337],[25.165,2.69467,21.2607],[25.202,1.94551,19.8749],[24.9872,3.23758,19.9337],[25.0406,3.99703,22.0275],[25.0827,3.63936,23.4521],[25.165,2.69467,21.2607],[24.773,4.90156,21.6723],[24.8923,4.78886,23.049],[25.0406,3.99703,22.0275],[24.5816,4.95706,20.5031],[24.931,4.00211,20.8096],[24.7182,4.23853,19.8393],[24.1508,5.82651,20.388],[24.5816,4.95706,20.5031],[24.2474,5.07222,19.4049],[24.1508,5.82651,20.388],[24.2474,5.07222,19.4049],[23.6322,6.17163,19.4957],[24.1508,5.82651,20.388],[23.7053,6.59296,20.5377],[24.0882,6.36626,21.4354],[24.4471,5.62165,21.2849],[24.465,5.90863,22.5647],[24.773,4.90156,21.6723],[24.1041,6.89014,23.8048],[24.6278,5.65884,24.3],[24.465,5.90863,22.5647],[23.4531,7.68047,22.9194],[23.982,6.85723,22.4541],[23.5297,7.21735,21.6394],[23.4531,7.68047,22.9194],[22.7936,8.57824,23.5949],[23.5129,7.91259,24.3263],[23.5129,7.91259,24.3263],[22.7936,8.57824,23.5949],[22.8826,8.708,24.9813],[23.4661,8.00603,25.6344],[23.5129,7.91259,24.3263],[22.8826,8.708,24.9813],[22.6766,8.81526,26.5066],[23.4661,8.00603,25.6344],[22.8826,8.708,24.9813],[22.2533,9.22846,24.3812],[22.8826,8.708,24.9813],[22.7936,8.57824,23.5949],[21.832,9.26626,23.2646],[22.2533,9.22846,24.3812],[22.7936,8.57824,23.5949],[22.438,8.31792,21.8368],[21.832,9.26626,23.2646],[22.7936,8.57824,23.5949],[21.1841,9.30687,22.0107],[21.832,9.26626,23.2646],[22.438,8.31792,21.8368],[21.25,8.77967,20.7874],[21.1841,9.30687,22.0107],[22.438,8.31792,21.8368],[21.25,8.77967,20.7874],[20.3298,9.38548,21.0489],[21.1841,9.30687,22.0107],[20.2822,9.83147,22.0964],[21.1841,9.30687,22.0107],[20.3298,9.38548,21.0489],[20.2822,9.83147,22.0964],[20.3298,9.38548,21.0489],[19.4243,9.9815,21.5906],[19.4243,9.9815,21.5906],[19.6111,10.3173,22.7379],[20.2822,9.83147,22.0964],[20.2822,9.83147,22.0964],[20.6973,9.92506,23.1435],[21.1841,9.30687,22.0107],[20.3298,9.38548,21.0489],[21.25,8.77967,20.7874],[20.3702,8.68774,19.6197],[21.832,9.26626,23.2646],[21.1841,9.30687,22.0107],[20.6973,9.92506,23.1435],[21.2487,9.9024,24.6942],[22.2533,9.22846,24.3812],[21.832,9.26626,23.2646],[22.8826,8.708,24.9813],[22.2533,9.22846,24.3812],[22.1692,9.37008,25.4298],[22.7936,8.57824,23.5949],[23.4531,7.68047,22.9194],[22.438,8.31792,21.8368],[24.1041,6.89014,23.8048],[24.2795,6.61639,25.0419],[24.6278,5.65884,24.3],[23.9615,7.06549,26.169],[24.4468,5.93623,25.8063],[24.2795,6.61639,25.0419],[23.9407,7.32497,25.0057],[23.5129,7.91259,24.3263],[23.4661,8.00603,25.6344],[23.3992,7.91973,26.7567],[23.4661,8.00603,25.6344],[22.6766,8.81526,26.5066],[23.9615,7.06549,26.169],[23.5935,7.29771,27.5003],[24.0888,6.14798,27.2441],[22.6766,8.81526,26.5066],[22.9342,8.21119,27.8272],[23.3992,7.91973,26.7567],[23.59,6.74693,28.3232],[23.5935,7.29771,27.5003],[23.1823,7.51615,28.5156],[22.9342,8.21119,27.8272],[21.924,9.25004,28.1867],[22.4261,8.2384,29.2796],[23.0345,6.94016,29.4996],[23.59,6.74693,28.3232],[23.1823,7.51615,28.5156],[23.0345,6.94016,29.4996],[22.2845,7.70571,30.4228],[22.4169,6.67598,31.0159],[22.4261,8.2384,29.2796],[21.5816,9.18255,29.6345],[21.6544,8.62003,30.5532],[21.6356,7.89968,31.4872],[22.4169,6.67598,31.0159],[22.2845,7.70571,30.4228],[21.0033,8.83862,31.5457],[20.706,8.31216,32.593],[21.6356,7.89968,31.4872],[20.1218,9.51653,32.0783],[20.706,8.31216,32.593],[21.0033,8.83862,31.5457],[20.1218,9.51653,32.0783],[19.4925,10.4233,31.4284],[19.0382,10.2208,32.6724],[19.8913,10.5683,30.0372],[18.8751,11.1002,30.7258],[19.4925,10.4233,31.4284],[20.1488,10.685,28.6877],[19.8913,10.5683,30.0372],[20.9503,9.9416,29.244],[20.7161,9.62866,30.6984],[21.6544,8.62003,30.5532],[21.5816,9.18255,29.6345],[21.924,9.25004,28.1867],[21.5816,9.18255,29.6345],[22.4261,8.2384,29.2796],[20.9503,9.9416,29.244],[21.0254,10.1348,28.0399],[20.1488,10.685,28.6877],[21.4291,9.88205,26.6041],[20.3326,10.6674,27.4065],[21.0254,10.1348,28.0399],[21.924,9.25004,28.1867],[22.9342,8.21119,27.8272],[22.6766,8.81526,26.5066],[22.1692,9.37008,25.4298],[22.6766,8.81526,26.5066],[22.8826,8.708,24.9813],[22.1692,9.37008,25.4298],[22.2533,9.22846,24.3812],[21.2487,9.9024,24.6942],[21.4291,9.88205,26.6041],[20.1177,10.6829,25.9275],[20.3326,10.6674,27.4065],[18.3129,11.5141,25.7136],[20.1177,10.6829,25.9275],[19.7426,10.591,24.0988],[20.6973,9.92506,23.1435],[21.2487,9.9024,24.6942],[21.832,9.26626,23.2646],[20.2822,9.83147,22.0964],[19.6111,10.3173,22.7379],[20.6973,9.92506,23.1435],[19.7426,10.591,24.0988],[18.4225,11.1446,24.0479],[18.3129,11.5141,25.7136],[16.3253,12.3918,25.6526],[17.4355,12.052,26.8425],[18.3129,11.5141,25.7136],[14.5401,12.9749,23.3897],[14.315,13.3723,25.1387],[15.7416,12.2286,23.5129],[14.5401,12.9749,23.3897],[15.7416,12.2286,23.5129],[14.6964,12.6545,22.3189],[15.7416,12.2286,23.5129],[15.7456,11.7012,21.8613],[14.6964,12.6545,22.3189],[13.4893,13.6294,22.5283],[14.315,13.3723,25.1387],[14.5401,12.9749,23.3897],[14.315,13.3723,25.1387],[13.4893,13.6294,22.5283],[13.0058,14.0838,24.1018],[16.2439,12.6285,27.519],[16.3253,12.3918,25.6526],[14.7565,13.2772,26.7526],[14.7565,13.2772,26.7526],[14.8002,13.3274,28.4001],[16.2439,12.6285,27.519],[12.9365,14.1585,25.2096],[13.4623,13.8979,26.1986],[14.315,13.3723,25.1387],[13.2289,14.0315,27.6671],[14.8002,13.3274,28.4001],[14.7565,13.2772,26.7526],[13.2289,14.0315,27.6671],[13.4497,13.8947,29.3027],[14.8002,13.3274,28.4001],[14.8002,13.3274,28.4001],[16.2061,12.6772,29.3039],[16.2439,12.6285,27.519],[15.3805,12.8958,31.0335],[14.6788,13.3452,29.8214],[13.3701,13.7457,30.9698],[16.7882,12.332,30.4498],[17.517,12.0562,29.5844],[16.2061,12.6772,29.3039],[17.8639,11.729,30.6327],[16.7882,12.332,30.4498],[16.7804,12.1201,31.6013],[15.618,12.4819,32.5367],[16.7362,11.8497,32.6653],[16.7804,12.1201,31.6013],[14.0338,13.2033,32.4649],[15.3805,12.8958,31.0335],[13.3701,13.7457,30.9698],[14.0338,13.2033,32.4649],[13.3701,13.7457,30.9698],[12.0662,13.8405,32.6791],[13.3701,13.7457,30.9698],[11.7265,14.2951,31.2336],[12.0662,13.8405,32.6791],[15.9629,11.9665,33.4468],[15.618,12.4819,32.5367],[14.5616,12.5425,33.7886],[13.2523,12.8556,34.5093],[14.0434,12.1183,35.0817],[14.5616,12.5425,33.7886],[13.2523,12.8556,34.5093],[11.7951,13.3588,34.4732],[12.6044,12.5599,35.4868],[12.0662,13.8405,32.6791],[13.1594,13.2406,33.6274],[14.0338,13.2033,32.4649],[11.1066,12.8781,35.8549],[11.7951,13.3588,34.4732],[10.3074,13.4747,35.1408],[10.3074,13.4747,35.1408],[9.60314,13.0664,36.1899],[11.1066,12.8781,35.8549],[8.77364,12.4434,37.3535],[9.60314,13.0664,36.1899],[8.05524,13.2344,36.3562],[6.69652,13.4047,36.3921],[6.95192,12.671,37.4772],[8.05524,13.2344,36.3562],[6.69652,13.4047,36.3921],[5.2979,13.2151,37.011],[6.95192,12.671,37.4772],[4.15366,13.8727,35.9724],[3.65719,13.334,37.1245],[5.2979,13.2151,37.011],[3.25273,14.3932,35.0282],[4.15366,13.8727,35.9724],[4.8905,14.4801,34.4607],[4.8905,14.4801,34.4607],[6.23838,14.714,33.5228],[4.82101,15.1915,32.6831],[7.38538,13.8863,35.2654],[6.36061,14.2836,34.6169],[5.81807,13.8749,35.6414],[7.38538,13.8863,35.2654],[8.96033,13.6917,35.2016],[8.43085,14.1336,34.3631],[8.38484,14.5182,33.2467],[6.23838,14.714,33.5228],[7.37214,14.3483,34.1822],[8.96033,13.6917,35.2016],[10.0387,13.9989,33.8826],[8.43085,14.1336,34.3631],[10.386,14.4759,31.9904],[10.0387,13.9989,33.8826],[12.0662,13.8405,32.6791],[8.38484,14.5182,33.2467],[6.65459,15.2424,31.7533],[6.23838,14.714,33.5228],[6.65459,15.2424,31.7533],[9.19483,15.0935,30.5092],[7.51312,15.6872,29.6559],[10.386,14.4759,31.9904],[12.0662,13.8405,32.6791],[11.7265,14.2951,31.2336],[11.7265,14.2951,31.2336],[13.3701,13.7457,30.9698],[12.1286,14.3487,30.0174],[12.1286,14.3487,30.0174],[12.3269,14.3801,28.837],[11.1693,14.7735,29.1783],[10.7353,14.737,30.4021],[9.8899,15.1532,29.3577],[9.19483,15.0935,30.5092],[12.3269,14.3801,28.837],[11.5782,14.7274,27.9035],[11.1693,14.7735,29.1783],[11.5782,14.7274,27.9035],[11.9929,14.6319,26.2478],[10.2373,15.3412,26.9761],[9.8899,15.1532,29.3577],[10.3985,15.128,28.3576],[9.11873,15.5628,28.2203],[7.76636,16.0919,27.6088],[7.95771,15.7939,28.7519],[9.11873,15.5628,28.2203],[7.95771,15.7939,28.7519],[7.76636,16.0919,27.6088],[6.57687,16.1335,28.7409],[4.97368,16.6204,28.3116],[5.18216,16.1516,29.7237],[6.57687,16.1335,28.7409],[4.22157,17.2213,26.8724],[3.5001,16.9216,28.3523],[4.97368,16.6204,28.3116],[4.82794,17.4957,25.3536],[3.04471,17.9828,25.2572],[4.22157,17.2213,26.8724],[3.04471,17.9828,25.2572],[4.82794,17.4957,25.3536],[4.5416,18.0418,23.6075],[6.65887,18.2001,19.4243],[5.56378,18.3794,20.8254],[6.44041,17.7626,22.088],[6.65887,18.2001,19.4243],[6.44041,17.7626,22.088],[7.40922,17.5408,21.1709],[6.65887,18.2001,19.4243],[7.40922,17.5408,21.1709],[8.67785,16.9732,20.8179],[6.65887,18.2001,19.4243],[8.67785,16.9732,20.8179],[8.3037,17.4446,19.2147],[7.40922,17.5408,21.1709],[7.93382,17.0673,22.3628],[8.67785,16.9732,20.8179],[7.93382,17.0673,22.3628],[7.40922,17.5408,21.1709],[6.44041,17.7626,22.088],[4.93672,18.8797,19.5169],[5.56378,18.3794,20.8254],[6.65887,18.2001,19.4243],[6.65887,18.2001,19.4243],[6.18247,18.7188,17.7416],[4.93672,18.8797,19.5169],[4.93672,18.8797,19.5169],[6.18247,18.7188,17.7416],[4.55933,19.345,17.9935],[5.13054,18.2501,22.0699],[3.86683,18.6557,22.0585],[4.5416,18.0418,23.6075],[3.53822,19.1228,20.552],[2.26083,19.1482,21.8703],[3.86683,18.6557,22.0585],[4.93672,18.8797,19.5169],[4.60973,18.6845,20.9947],[5.56378,18.3794,20.8254],[2.11538,19.6927,19.9095],[2.26083,19.1482,21.8703],[3.53822,19.1228,20.552],[2.06835,20.1259,18.1086],[0.666761,20.2627,19.0739],[2.11538,19.6927,19.9095],[4.93672,18.8797,19.5169],[4.55933,19.345,17.9935],[3.43027,19.5395,18.9127],[2.29263,20.423,16.4071],[2.06835,20.1259,18.1086],[3.43459,19.8832,17.3072],[3.58342,20.5026,13.3114],[2.10009,20.9668,13.5693],[2.84708,20.5316,14.8814],[3.58342,20.5026,13.3114],[2.68971,20.9649,11.8922],[2.10009,20.9668,13.5693],[2.29263,20.423,16.4071],[1.42082,20.9076,15.1394],[0.586964,20.7509,16.9414],[-1.31787,21.2861,16.1182],[-1.09343,20.7655,18.4576],[0.586964,20.7509,16.9414],[0.124624,21.2083,15.1925],[0.686589,21.317,13.7171],[-0.804607,21.5556,14.0072],[0.686589,21.317,13.7171],[-0.119727,21.6566,11.9721],[-0.804607,21.5556,14.0072],[-1.31787,21.2861,16.1182],[-2.46691,21.7011,14.4328],[-3.19672,21.4987,16.2139],[-4.19728,21.7347,14.7995],[-2.46691,21.7011,14.4328],[-3.55566,21.9263,12.9355],[-3.55566,21.9263,12.9355],[-2.93161,22.0428,11.1297],[-4.73148,22.0155,11.3613],[-0.804607,21.5556,14.0072],[-0.119727,21.6566,11.9721],[-1.86902,21.8624,12.5569],[-0.340846,21.8179,9.54964],[-2.32565,22.0665,9.30636],[-1.49221,21.9462,10.8994],[1.37195,21.3134,12.3845],[-0.119727,21.6566,11.9721],[0.686589,21.317,13.7171],[2.68971,20.9649,11.8922],[1.37195,21.3134,12.3845],[2.10009,20.9668,13.5693],[1.42399,21.4029,10.7011],[3.28876,20.8892,9.75431],[1.5115,21.4473,8.50097],[-0.340846,21.8179,9.54964],[1.42399,21.4029,10.7011],[1.5115,21.4473,8.50097],[-0.340846,21.8179,9.54964],[-1.40364,22.0055,8.01901],[-2.32565,22.0665,9.30636],[-1.40364,22.0055,8.01901],[-2.60681,22.0842,7.55363],[-2.32565,22.0665,9.30636],[-2.60681,22.0842,7.55363],[-3.813,22.1012,8.20945],[-2.32565,22.0665,9.30636],[-3.77868,22.1074,9.85869],[-2.32565,22.0665,9.30636],[-3.813,22.1012,8.20945],[-2.93161,22.0428,11.1297],[-3.77868,22.1074,9.85869],[-4.73148,22.0155,11.3613],[-6.60831,21.87,8.88868],[-5.10743,22.0483,9.40063],[-5.32494,22.0023,7.5634],[-6.70658,21.8202,7.22639],[-6.60831,21.87,8.88868],[-5.32494,22.0023,7.5634],[-8.11301,21.5437,10.2672],[-6.60831,21.87,8.88868],[-7.80243,21.6212,8.4058],[-6.1612,21.8586,12.2723],[-4.73148,22.0155,11.3613],[-6.38274,21.8853,10.6912],[-6.1612,21.8586,12.2723],[-6.91301,21.6143,13.815],[-5.24616,21.8484,13.3953],[-7.51111,21.6386,12.1334],[-8.11301,21.5437,10.2672],[-8.78443,21.3346,12.0722],[-8.11301,21.5437,10.2672],[-9.87079,20.9707,11.1919],[-8.78443,21.3346,12.0722],[-9.66612,21.0427,8.71165],[-9.87079,20.9707,11.1919],[-8.11301,21.5437,10.2672],[-11.3368,20.3506,10.2039],[-9.87079,20.9707,11.1919],[-9.66612,21.0427,8.71165],[-11.3368,20.3506,10.2039],[-11.3389,20.2302,12.8585],[-9.87079,20.9707,11.1919],[-9.80152,20.9212,13.0728],[-9.87079,20.9707,11.1919],[-11.3389,20.2302,12.8585],[-11.3389,20.2302,12.8585],[-11.3368,20.3506,10.2039],[-12.9842,19.3617,11.4023],[-12.8124,19.3798,13.4936],[-11.3389,20.2302,12.8585],[-12.9842,19.3617,11.4023],[-13.9355,18.5763,13.1597],[-12.8124,19.3798,13.4936],[-12.9842,19.3617,11.4023],[-14.5364,18.1744,11.4169],[-13.9355,18.5763,13.1597],[-12.9842,19.3617,11.4023],[-14.5364,18.1744,11.4169],[-12.9842,19.3617,11.4023],[-14.0037,18.6878,9.71059],[-14.5364,18.1744,11.4169],[-14.0037,18.6878,9.71059],[-15.4437,17.3549,9.65085],[-14.5364,18.1744,11.4169],[-15.4437,17.3549,9.65085],[-15.514,17.2121,11.55],[-14.5364,18.1744,11.4169],[-15.514,17.2121,11.55],[-15.0699,17.5527,12.9611],[-15.0699,17.5527,12.9611],[-15.514,17.2121,11.55],[-16.124,16.3166,12.7233],[-16.124,16.3166,12.7233],[-15.5423,16.9115,14.166],[-15.0699,17.5527,12.9611],[-15.5423,16.9115,14.166],[-14.6369,17.8242,14.6255],[-15.0699,17.5527,12.9611],[-13.9355,18.5763,13.1597],[-15.0699,17.5527,12.9611],[-14.6369,17.8242,14.6255],[-14.6369,17.8242,14.6255],[-13.4866,18.7903,14.8973],[-13.9355,18.5763,13.1597],[-13.4866,18.7903,14.8973],[-14.6369,17.8242,14.6255],[-14.2078,18.0383,16.5194],[-13.4866,18.7903,14.8973],[-14.2078,18.0383,16.5194],[-13.0168,19.0069,16.2789],[-13.0168,19.0069,16.2789],[-12.168,19.641,15.0144],[-13.4866,18.7903,14.8973],[-12.168,19.641,15.0144],[-12.8124,19.3798,13.4936],[-13.4866,18.7903,14.8973],[-11.9504,19.5864,16.9039],[-12.168,19.641,15.0144],[-13.0168,19.0069,16.2789],[-13.0168,19.0069,16.2789],[-13.1956,18.7256,17.8075],[-11.9504,19.5864,16.9039],[-12.0644,19.3225,18.8055],[-11.9504,19.5864,16.9039],[-13.1956,18.7256,17.8075],[-13.4226,18.4057,19.6235],[-12.0644,19.3225,18.8055],[-13.1956,18.7256,17.8075],[-13.4226,18.4057,19.6235],[-12.2215,19.018,20.7838],[-12.0644,19.3225,18.8055],[-12.0644,19.3225,18.8055],[-12.2215,19.018,20.7838],[-10.5687,19.8751,19.7464],[-12.0644,19.3225,18.8055],[-10.5687,19.8751,19.7464],[-10.8904,20.017,17.7591],[-9.48898,20.5129,17.8225],[-10.8904,20.017,17.7591],[-10.5687,19.8751,19.7464],[-9.48898,20.5129,17.8225],[-10.5687,19.8751,19.7464],[-9.02469,20.4177,19.5067],[-12.2215,19.018,20.7838],[-10.9097,19.4138,22.0754],[-10.5687,19.8751,19.7464],[-9.2471,20.0266,21.3063],[-10.5687,19.8751,19.7464],[-10.9097,19.4138,22.0754],[-12.2215,19.018,20.7838],[-12.5235,18.6894,22.7754],[-10.9097,19.4138,22.0754],[-11.3095,19.0194,24.075],[-10.9097,19.4138,22.0754],[-12.5235,18.6894,22.7754],[-9.43743,19.538,23.663],[-10.9097,19.4138,22.0754],[-11.3095,19.0194,24.075],[-10.8904,20.017,17.7591],[-11.9504,19.5864,16.9039],[-12.0644,19.3225,18.8055],[-10.3037,20.4742,15.4265],[-11.9504,19.5864,16.9039],[-10.8904,20.017,17.7591],[-12.168,19.641,15.0144],[-11.9504,19.5864,16.9039],[-10.3037,20.4742,15.4265],[-11.3389,20.2302,12.8585],[-12.168,19.641,15.0144],[-10.3037,20.4742,15.4265],[-13.1956,18.7256,17.8075],[-13.0168,19.0069,16.2789],[-14.2078,18.0383,16.5194],[-14.4116,17.7171,18.4103],[-13.1956,18.7256,17.8075],[-14.2078,18.0383,16.5194],[-14.2078,18.0383,16.5194],[-15.1318,17.0933,17.3933],[-14.4116,17.7171,18.4103],[-15.4633,16.81,15.8516],[-14.2078,18.0383,16.5194],[-14.6369,17.8242,14.6255],[-15.5423,16.9115,14.166],[-15.4633,16.81,15.8516],[-14.6369,17.8242,14.6255],[-16.124,16.3166,12.7233],[-16.2845,15.8737,14.5486],[-15.5423,16.9115,14.166],[-16.196,16.4266,11.0277],[-16.124,16.3166,12.7233],[-15.514,17.2121,11.55],[-16.124,16.3166,12.7233],[-16.196,16.4266,11.0277],[-16.9998,15.1631,11.4047],[-16.9998,15.1631,11.4047],[-16.196,16.4266,11.0277],[-16.7354,15.805,9.73579],[-15.4437,17.3549,9.65085],[-16.7354,15.805,9.73579],[-16.196,16.4266,11.0277],[-16.7354,15.805,9.73579],[-15.4437,17.3549,9.65085],[-16.5105,16.283,8.24959],[-17.2363,15.267,8.38688],[-16.7354,15.805,9.73579],[-16.5105,16.283,8.24959],[-15.9094,16.971,6.5728],[-16.5105,16.283,8.24959],[-15.4437,17.3549,9.65085],[-15.9094,16.971,6.5728],[-15.4437,17.3549,9.65085],[-14.1324,18.5545,7.17122],[-15.9094,16.971,6.5728],[-14.1324,18.5545,7.17122],[-15.0974,17.7157,4.51957],[-17.0403,15.6549,6.79753],[-16.5105,16.283,8.24959],[-15.9094,16.971,6.5728],[-16.6935,16.1127,4.5715],[-17.0403,15.6549,6.79753],[-15.9094,16.971,6.5728],[-15.4437,17.3549,9.65085],[-16.196,16.4266,11.0277],[-15.514,17.2121,11.55],[-14.0037,18.6878,9.71059],[-14.1324,18.5545,7.17122],[-15.4437,17.3549,9.65085],[-14.0037,18.6878,9.71059],[-12.7097,19.6143,8.90968],[-14.1324,18.5545,7.17122],[-12.7097,19.6143,8.90968],[-12.2127,19.873,6.76952],[-14.1324,18.5545,7.17122],[-12.9842,19.3617,11.4023],[-12.7097,19.6143,8.90968],[-14.0037,18.6878,9.71059],[-13.9355,18.5763,13.1597],[-14.5364,18.1744,11.4169],[-15.0699,17.5527,12.9611],[-12.8124,19.3798,13.4936],[-13.9355,18.5763,13.1597],[-13.4866,18.7903,14.8973],[-12.8124,19.3798,13.4936],[-12.168,19.641,15.0144],[-11.3389,20.2302,12.8585],[-12.7097,19.6143,8.90968],[-12.9842,19.3617,11.4023],[-11.3368,20.3506,10.2039],[-11.2993,20.3984,8.10041],[-12.7097,19.6143,8.90968],[-11.3368,20.3506,10.2039],[-9.87079,20.9707,11.1919],[-9.80152,20.9212,13.0728],[-8.78443,21.3346,12.0722],[-10.3037,20.4742,15.4265],[-9.80152,20.9212,13.0728],[-11.3389,20.2302,12.8585],[-8.57104,21.2508,13.7491],[-7.95,21.1456,15.9654],[-6.91301,21.6143,13.815],[-9.48898,20.5129,17.8225],[-10.3037,20.4742,15.4265],[-10.8904,20.017,17.7591],[-6.40497,21.2714,17.2038],[-5.93468,21.5791,15.2907],[-7.95,21.1456,15.9654],[-6.40497,21.2714,17.2038],[-6.41624,20.9541,19.0161],[-5.28506,21.2316,18.0212],[-7.76198,20.5399,20.2437],[-6.19377,20.5753,20.823],[-6.41624,20.9541,19.0161],[-9.48898,20.5129,17.8225],[-9.02469,20.4177,19.5067],[-7.88006,20.8652,18.3049],[-10.5687,19.8751,19.7464],[-9.2471,20.0266,21.3063],[-9.02469,20.4177,19.5067],[-6.19377,20.5753,20.823],[-7.76198,20.5399,20.2437],[-7.53734,20.0779,22.447],[-9.43743,19.538,23.663],[-9.2471,20.0266,21.3063],[-10.9097,19.4138,22.0754],[-5.63145,20.1671,22.4869],[-7.53734,20.0779,22.447],[-6.33416,19.7367,24.0941],[-6.85281,19.2632,25.7818],[-7.81055,19.6117,24.374],[-8.74086,19.2066,25.6957],[-6.33416,19.7367,24.0941],[-4.67752,19.727,23.9291],[-5.63145,20.1671,22.4869],[-2.81775,19.4968,24.0171],[-3.96245,20.108,22.4168],[-4.67752,19.727,23.9291],[-2.92937,18.9639,25.7707],[-0.981342,18.765,25.3932],[-2.81775,19.4968,24.0171],[-4.17428,19.0127,26.1235],[-3.97107,19.3296,25.0669],[-5.22428,19.329,25.4007],[-2.21847,18.4826,26.8565],[-2.92937,18.9639,25.7707],[-3.50059,18.6064,27.0507],[-5.25387,18.7367,27.2122],[-4.17428,19.0127,26.1235],[-5.22428,19.329,25.4007],[-2.6508,18.1904,27.861],[-2.21847,18.4826,26.8565],[-3.50059,18.6064,27.0507],[-2.6508,18.1904,27.861],[-2.60949,17.7771,28.912],[-1.20857,17.8838,28.0262],[-2.60949,17.7771,28.912],[-4.18551,17.6221,29.9358],[-2.16061,16.8968,30.894],[-5.25387,18.7367,27.2122],[-4.97649,18.1781,28.7751],[-3.84817,18.1908,28.3173],[-4.97649,18.1781,28.7751],[-5.25387,18.7367,27.2122],[-6.73974,18.0935,29.5954],[-4.18551,17.6221,29.9358],[-4.61751,16.9472,31.8098],[-2.16061,16.8968,30.894],[-4.61751,16.9472,31.8098],[-6.50792,16.8645,32.8358],[-4.61784,16.2764,33.3833],[-6.50792,16.8645,32.8358],[-7.35338,16.3921,34.3518],[-5.95564,16.0583,34.4929],[-7.35338,16.3921,34.3518],[-8.51222,16.3403,34.8727],[-7.38872,15.722,35.7659],[-10.1806,16.5598,34.6459],[-9.09337,16.0055,35.6932],[-8.51222,16.3403,34.8727],[-9.70063,17.3037,32.7654],[-8.39223,16.8193,33.68],[-8.13025,17.2704,32.4653],[-11.5259,16.0718,35.645],[-10.1806,16.5598,34.6459],[-12.345,16.5775,34.5317],[-11.5259,16.0718,35.645],[-11.5394,15.5142,36.5438],[-10.3376,15.8062,36.1641],[-10.5104,14.9888,37.2755],[-11.5394,15.5142,36.5438],[-12.085,14.7652,37.2698],[-13.665,14.473,37.1391],[-12.6695,13.668,38.0625],[-12.085,14.7652,37.2698],[-14.8502,14.9859,36.2179],[-15.0788,14.04,37.0762],[-13.665,14.473,37.1391],[-13.0846,15.6107,36.011],[-13.8341,16.2648,34.8425],[-14.6565,15.7455,35.3695],[-13.8341,16.2648,34.8425],[-15.0919,16.2529,34.298],[-14.6565,15.7455,35.3695],[-16.2254,14.3227,36.3407],[-15.0788,14.04,37.0762],[-14.8502,14.9859,36.2179],[-17.3562,14.4081,35.7424],[-17.4864,13.414,36.5355],[-16.2254,14.3227,36.3407],[-17.3562,14.4081,35.7424],[-18.4336,13.9524,35.677],[-17.4864,13.414,36.5355],[-19.3673,13.5435,35.5812],[-18.4336,13.9524,35.677],[-19.3005,14.1775,35.0066],[-20.2248,13.632,35.0165],[-19.3005,14.1775,35.0066],[-20.1508,14.2413,34.4031],[-20.9839,14.1886,33.8743],[-20.8456,13.7754,34.4969],[-20.1508,14.2413,34.4031],[-21.8713,13.9901,33.4461],[-21.6188,13.5808,34.1786],[-20.9839,14.1886,33.8743],[-22.0516,14.3683,32.5675],[-22.5985,13.8098,33.1236],[-21.8713,13.9901,33.4461],[-22.6627,14.4483,31.5514],[-23.561,13.99,31.7438],[-22.0516,14.3683,32.5675],[-23.5199,14.2334,30.901],[-23.561,13.99,31.7438],[-22.6627,14.4483,31.5514],[-23.5199,14.2334,30.901],[-23.374,14.3805,29.5755],[-24.6171,13.9141,30.3853],[-21.7023,14.8303,28.4459],[-23.374,14.3805,29.5755],[-21.7298,14.9946,30.0016],[-21.7341,14.8033,31.7117],[-21.1467,15.1659,31.0006],[-22.3652,14.7111,30.7878],[-20.1212,15.5016,31.4072],[-21.1467,15.1659,31.0006],[-20.7762,15.1484,31.9656],[-21.298,14.7997,32.41],[-20.6289,14.9814,32.707],[-20.7762,15.1484,31.9656],[-20.6289,14.9814,32.707],[-21.1818,14.5552,33.0944],[-20.1277,14.8049,33.5348],[-19.3353,14.7005,34.3328],[-18.8358,15.2599,33.713],[-20.1277,14.8049,33.5348],[-19.6431,15.4236,32.509],[-17.9597,15.9759,32.7709],[-18.8926,15.9458,31.365],[-18.8926,15.9458,31.365],[-17.9597,15.9759,32.7709],[-17.403,16.5035,31.4151],[-17.5909,15.5649,34.0628],[-18.8358,15.2599,33.713],[-18.179,14.821,34.8487],[-16.6575,16.5506,32.4488],[-17.9597,15.9759,32.7709],[-16.513,16.1491,33.6189],[-16.3367,15.3345,35.1199],[-17.5909,15.5649,34.0628],[-18.179,14.821,34.8487],[-16.3367,15.3345,35.1199],[-14.6565,15.7455,35.3695],[-15.0919,16.2529,34.298],[-15.0919,16.2529,34.298],[-13.8341,16.2648,34.8425],[-13.8426,16.8003,33.7018],[-13.8163,17.244,32.464],[-13.8426,16.8003,33.7018],[-12.5836,17.221,32.9998],[-15.2338,16.8324,32.7722],[-16.6575,16.5506,32.4488],[-16.513,16.1491,33.6189],[-17.9597,15.9759,32.7709],[-16.6575,16.5506,32.4488],[-17.403,16.5035,31.4151],[-15.6804,17.2188,30.3438],[-16.7162,16.8716,30.4717],[-16.0516,16.9573,31.4598],[-17.403,16.5035,31.4151],[-18.029,16.3648,29.8535],[-18.8926,15.9458,31.365],[-16.3348,17.0268,29.2296],[-16.7162,16.8716,30.4717],[-15.6804,17.2188,30.3438],[-14.726,17.5363,29.3466],[-16.3348,17.0268,29.2296],[-15.6804,17.2188,30.3438],[-17.4011,16.4907,27.9243],[-18.503,15.6954,26.5959],[-19.3581,15.6979,28.317],[-17.4011,16.4907,27.9243],[-16.8349,16.4934,26.1348],[-18.503,15.6954,26.5959],[-20.0296,15.6073,30.1909],[-18.8926,15.9458,31.365],[-18.029,16.3648,29.8535],[-20.0296,15.6073,30.1909],[-21.7023,14.8303,28.4459],[-21.7298,14.9946,30.0016],[-18.503,15.6954,26.5959],[-20.4799,14.8509,26.8068],[-19.3581,15.6979,28.317],[-23.4902,14.1803,28.0694],[-21.7023,14.8303,28.4459],[-22.6186,14.0899,26.8689],[-22.6186,14.0899,26.8689],[-21.5013,13.7886,25.3784],[-23.9655,12.9798,25.383],[-20.4799,14.8509,26.8068],[-18.503,15.6954,26.5959],[-19.299,14.6898,25.0813],[-17.7819,15.6979,25.2292],[-19.299,14.6898,25.0813],[-18.503,15.6954,26.5959],[-22.5116,12.3653,23.9163],[-21.5013,13.7886,25.3784],[-20.2658,13.4487,24.0831],[-22.5116,12.3653,23.9163],[-23.4296,10.6454,22.257],[-24.6897,11.7033,23.7107],[-20.8599,12.5332,23.3934],[-19.8606,12.7705,22.9543],[-20.9896,11.5315,22.3745],[-19.8606,12.7705,22.9543],[-18.9525,13.953,23.5072],[-18.7295,13.2821,22.2055],[-19.5606,12.0015,21.7868],[-19.383,11.1533,20.7755],[-20.2386,10.8513,21.4054],[-20.2386,10.8513,21.4054],[-19.383,11.1533,20.7755],[-20.1096,9.72801,20.3483],[-20.1096,9.72801,20.3483],[-21.5511,9.99329,21.345],[-20.2386,10.8513,21.4054],[-21.5511,9.99329,21.345],[-23.265,9.00428,20.9192],[-23.4296,10.6454,22.257],[-23.265,9.00428,20.9192],[-23.2581,7.67656,20.164],[-24.4444,8.19303,20.3171],[-21.0699,6.86899,19.861],[-22.2669,6.8787,20.0112],[-21.6238,8.28782,20.3667],[-24.5907,7.14125,19.7688],[-23.2581,7.67656,20.164],[-23.4444,6.54551,19.8153],[-22.6212,6.01597,19.8965],[-22.2669,6.8787,20.0112],[-21.7158,5.94913,19.9556],[-22.6212,6.01597,19.8965],[-22.3812,5.31227,20.0013],[-23.3615,5.45653,19.8851],[-24.6586,6.11671,19.5704],[-24.5907,7.14125,19.7688],[-23.4444,6.54551,19.8153],[-26.0065,6.44186,19.4246],[-24.6586,6.11671,19.5704],[-26.0589,5.12986,19.5881],[-26.0589,5.12986,19.5881],[-24.4917,4.45075,20.0978],[-26.0653,3.89291,20.3986],[-23.3615,5.45653,19.8851],[-22.3812,5.31227,20.0013],[-22.9893,4.35517,20.3587],[-24.167,3.65383,20.8378],[-26.0653,3.89291,20.3986],[-24.4917,4.45075,20.0978],[-22.8279,3.51929,21.0805],[-23.4337,3.00754,21.8792],[-24.167,3.65383,20.8378],[-25.1577,3.06272,21.74],[-23.4337,3.00754,21.8792],[-24.1898,2.52923,23.1838],[-22.7758,2.12327,24.7056],[-25.5363,2.21112,24.6556],[-24.1898,2.52923,23.1838],[-20.9401,1.72702,25.6678],[-22.7679,1.89057,26.8481],[-22.7758,2.12327,24.7056],[-20.9401,1.72702,25.6678],[-19.6126,1.29043,26.5585],[-20.3073,1.40358,28.3974],[-17.9006,0.553585,27.0994],[-20.3073,1.40358,28.3974],[-19.6126,1.29043,26.5585],[-16.2506,-0.360604,26.5287],[-16.5478,-0.104099,28.1966],[-17.9006,0.553585,27.0994],[-16.5478,-0.104099,28.1966],[-15.7777,-0.339635,29.7552],[-17.7615,0.565959,29.492],[-15.7777,-0.339635,29.7552],[-14.0078,-1.23309,29.9255],[-14.7746,-0.449215,31.608],[-13.42,-1.97285,27.8409],[-15.0743,-0.94294,28.0607],[-14.4866,-1.60564,25.992],[-12.7373,-2.67162,26.5904],[-13.42,-1.97285,27.8409],[-14.4866,-1.60564,25.992],[-12.98,-1.33425,31.6536],[-14.0078,-1.23309,29.9255],[-11.967,-2.19517,30.4423],[-12.8014,-2.08384,29.1339],[-13.42,-1.97285,27.8409],[-11.8182,-2.8512,28.1878],[-10.5989,-3.08488,29.7239],[-10.7988,-2.57763,31.084],[-11.967,-2.19517,30.4423],[-10.1904,-3.76116,28.145],[-9.36882,-3.80995,29.3372],[-10.5989,-3.08488,29.7239],[-9.56095,-4.46642,26.9561],[-10.1904,-3.76116,28.145],[-11.0789,-3.80373,26.297],[-12.7373,-2.67162,26.5904],[-11.8182,-2.8512,28.1878],[-13.42,-1.97285,27.8409],[-14.4866,-1.60564,25.992],[-12.9131,-3.10058,24.4332],[-12.7373,-2.67162,26.5904],[-11.0789,-3.80373,26.297],[-10.8881,-4.64525,24.0209],[-9.50595,-4.98392,25.4736],[-10.8881,-4.64525,24.0209],[-10.575,-5.57716,21.6862],[-9.06122,-5.79998,23.6642],[-12.209,-4.27531,22.431],[-12.9131,-3.10058,24.4332],[-13.991,-2.97861,21.9272],[-12.5923,-4.78446,19.9813],[-13.9786,-3.66319,20.044],[-14.1398,-3.95012,18.6951],[-15.0517,-1.58558,23.5525],[-15.8858,-1.36569,21.1746],[-13.991,-2.97861,21.9272],[-14.1398,-3.95012,18.6951],[-13.9786,-3.66319,20.044],[-15.1053,-2.7056,19.5593],[-14.4148,-4.26126,16.9203],[-13.1032,-5.13808,17.6979],[-14.1398,-3.95012,18.6951],[-14.4148,-4.26126,16.9203],[-15.1394,-4.11844,14.6408],[-13.8655,-5.12381,15.6691],[-16.871,-2.62967,11.871],[-16.6807,-3.3117,9.89412],[-15.6386,-4.13826,12.0966],[-17.4625,-1.12929,14.7224],[-17.6111,-1.28221,12.8019],[-16.4953,-2.72569,13.6468],[-17.4625,-1.12929,14.7224],[-18.2793,0.167162,14.1087],[-17.6111,-1.28221,12.8019],[-18.5824,0.337966,11.5425],[-19.1938,1.43453,9.50246],[-18.4711,-0.438442,8.91471],[-19.1938,1.43453,9.50246],[-19.2089,1.09984,7.67323],[-18.4711,-0.438442,8.91471],[-18.8968,0.0489633,5.90195],[-18.4711,-0.438442,8.91471],[-19.2089,1.09984,7.67323],[-18.8968,0.0489633,5.90195],[-19.2089,1.09984,7.67323],[-19.5928,2.08051,6.10264],[-19.6234,2.5477,8.00451],[-19.5928,2.08051,6.10264],[-19.2089,1.09984,7.67323],[-18.4711,-0.438442,8.91471],[-18.8968,0.0489633,5.90195],[-17.9694,-1.80416,6.89129],[-19.6234,2.5477,8.00451],[-19.2089,1.09984,7.67323],[-19.1938,1.43453,9.50246],[-19.1938,1.43453,9.50246],[-19.6039,2.83372,9.6077],[-19.6234,2.5477,8.00451],[-19.8714,4.00111,8.66836],[-19.6234,2.5477,8.00451],[-19.6039,2.83372,9.6077],[-19.743,3.94691,10.5279],[-19.8714,4.00111,8.66836],[-19.6039,2.83372,9.6077],[-19.6039,2.83372,9.6077],[-19.3529,2.357,11.2287],[-19.743,3.94691,10.5279],[-19.9344,5.1574,9.56893],[-19.8714,4.00111,8.66836],[-19.743,3.94691,10.5279],[-19.7994,5.6524,11.3808],[-19.9344,5.1574,9.56893],[-19.743,3.94691,10.5279],[-19.5811,3.81922,12.5919],[-19.7994,5.6524,11.3808],[-19.743,3.94691,10.5279],[-19.7994,5.6524,11.3808],[-19.9426,6.57594,9.44981],[-19.9344,5.1574,9.56893],[-19.9426,6.57594,9.44981],[-20.0701,5.6458,7.7315],[-19.9344,5.1574,9.56893],[-20.0701,5.6458,7.7315],[-19.9426,6.57594,9.44981],[-20.0433,7.21695,7.91696],[-20.1724,7.0285,6.25225],[-20.0701,5.6458,7.7315],[-20.0433,7.21695,7.91696],[-20.1724,7.0285,6.25225],[-20.0433,7.21695,7.91696],[-19.9494,8.56729,7.08069],[-20.1724,7.0285,6.25225],[-19.9494,8.56729,7.08069],[-20.1032,8.58763,4.84125],[-20.1724,7.0285,6.25225],[-20.1967,5.6053,5.75588],[-20.0701,5.6458,7.7315],[-20.0433,7.21695,7.91696],[-19.9426,6.57594,9.44981],[-19.7953,8.31269,9.039],[-19.9426,6.57594,9.44981],[-19.7007,7.66906,10.9433],[-19.7953,8.31269,9.039],[-20.0701,5.6458,7.7315],[-19.8714,4.00111,8.66836],[-19.9344,5.1574,9.56893],[-19.9784,3.96846,6.41687],[-19.8714,4.00111,8.66836],[-20.0701,5.6458,7.7315],[-19.8714,4.00111,8.66836],[-19.9784,3.96846,6.41687],[-19.6234,2.5477,8.00451],[-19.6039,2.83372,9.6077],[-19.1938,1.43453,9.50246],[-19.3529,2.357,11.2287],[-17.6117,-2.1257,8.78072],[-18.4711,-0.438442,8.91471],[-17.9694,-1.80416,6.89129],[-16.6807,-3.3117,9.89412],[-16.871,-2.62967,11.871],[-17.6873,-1.60008,10.6572],[-15.5454,-4.75017,9.80707],[-15.6386,-4.13826,12.0966],[-16.6807,-3.3117,9.89412],[-15.1394,-4.11844,14.6408],[-15.6386,-4.13826,12.0966],[-14.1047,-5.37091,13.734],[-12.307,-6.4688,15.024],[-14.1047,-5.37091,13.734],[-13.2154,-6.50448,12.422],[-12.3723,-7.09171,12.7906],[-12.307,-6.4688,15.024],[-13.2154,-6.50448,12.422],[-12.3723,-7.09171,12.7906],[-11.1631,-7.8048,12.6492],[-12.307,-6.4688,15.024],[-11.1631,-7.8048,12.6492],[-12.3723,-7.09171,12.7906],[-12.4313,-7.33028,11.0654],[-12.3723,-7.09171,12.7906],[-13.2154,-6.50448,12.422],[-12.4313,-7.33028,11.0654],[-14.8306,-5.77039,7.99155],[-13.1766,-7.10021,8.72388],[-14.213,-5.92761,10.6265],[-12.4313,-7.33028,11.0654],[-11.48,-8.19027,9.09736],[-10.8796,-8.28425,10.9449],[-13.1766,-7.10021,8.72388],[-13.6474,-6.97739,6.78682],[-12.0924,-8.06292,6.74637],[-13.1983,-7.46205,4.99406],[-12.0924,-8.06292,6.74637],[-13.6474,-6.97739,6.78682],[-10.1453,-9.05083,7.37584],[-9.79233,-8.96842,9.68742],[-11.48,-8.19027,9.09736],[-9.79233,-8.96842,9.68742],[-10.8796,-8.28425,10.9449],[-11.48,-8.19027,9.09736],[-11.1631,-7.8048,12.6492],[-12.4313,-7.33028,11.0654],[-10.8796,-8.28425,10.9449],[-9.81551,-7.85065,15.1209],[-12.307,-6.4688,15.024],[-11.1631,-7.8048,12.6492],[-12.307,-6.4688,15.024],[-9.81551,-7.85065,15.1209],[-10.6299,-6.49709,18.4167],[-8.00405,-6.90171,21.4844],[-10.575,-5.57716,21.6862],[-10.6299,-6.49709,18.4167],[-5.92635,-7.49201,22.0643],[-6.28595,-7.09841,23.127],[-8.00405,-6.90171,21.4844],[-4.62004,-7.4492,23.2942],[-6.28595,-7.09841,23.127],[-5.92635,-7.49201,22.0643],[-3.71882,-6.905,25.6877],[-5.68267,-6.74179,24.8483],[-4.62004,-7.4492,23.2942],[-2.23511,-6.76609,26.9283],[-3.72819,-6.41806,27.4338],[-3.71882,-6.905,25.6877],[-1.95358,-7.28651,25.0935],[-0.415761,-7.56649,24.1792],[-0.552567,-7.05835,26.1292],[-2.23511,-6.76609,26.9283],[-2.77386,-6.13446,28.9966],[-3.72819,-6.41806,27.4338],[-4.53938,-5.91295,28.526],[-2.77386,-6.13446,28.9966],[-4.7462,-5.34042,30.1782],[-5.20882,-4.56059,32.1468],[-6.52375,-4.5386,30.7911],[-4.7462,-5.34042,30.1782],[-4.95143,-4.12286,33.7017],[-5.20882,-4.56059,32.1468],[-3.92211,-4.72166,33.1166],[-3.38524,-5.30646,31.6437],[-2.02619,-5.85077,30.7099],[-1.86446,-5.50058,32.0729],[-2.80489,-5.06834,33.0119],[-3.12653,-4.67156,33.9569],[-3.92211,-4.72166,33.1166],[-3.12653,-4.67156,33.9569],[-3.08949,-4.20093,35.0577],[-4.0574,-4.22467,34.3325],[-2.09451,-3.93764,35.9846],[-3.30156,-3.54346,36.1652],[-3.08949,-4.20093,35.0577],[-0.711182,-4.33457,35.6754],[-0.949767,-3.4847,37.0259],[-2.09451,-3.93764,35.9846],[-0.711182,-4.33457,35.6754],[0.674985,-4.44785,35.4237],[0.205753,-3.87771,36.5637],[0.945318,-5.01213,33.9419],[2.23994,-4.3833,34.9518],[0.674985,-4.44785,35.4237],[-0.315108,-5.3985,32.8366],[-0.245211,-4.8944,34.4548],[-1.77597,-4.7819,34.2882],[2.17235,-5.01439,33.3822],[0.945318,-5.01213,33.9419],[1.20981,-5.43346,32.4881],[-0.778542,-5.8588,31.1345],[-0.315108,-5.3985,32.8366],[-1.86446,-5.50058,32.0729],[-1.19532,-6.15131,29.792],[0.321203,-6.12314,29.9304],[-0.778542,-5.8588,31.1345],[1.77475,-5.70176,31.044],[1.20981,-5.43346,32.4881],[0.425707,-5.76337,31.4813],[3.21643,-5.61351,30.1349],[1.77475,-5.70176,31.044],[1.87646,-6.08973,29.4017],[-0.636895,-6.52679,28.1992],[0.321203,-6.12314,29.9304],[-1.19532,-6.15131,29.792],[1.12276,-6.74967,27.023],[-0.636895,-6.52679,28.1992],[-0.552567,-7.05835,26.1292],[0.812597,-7.20447,25.3518],[1.12276,-6.74967,27.023],[-0.552567,-7.05835,26.1292],[1.87646,-6.08973,29.4017],[0.919953,-6.42095,28.5419],[1.97278,-6.38999,28.1658],[1.97278,-6.38999,28.1658],[2.869,-6.45128,27.215],[3.13205,-6.03851,28.6281],[2.869,-6.45128,27.215],[4.16137,-6.39704,26.2559],[4.30827,-5.97665,27.6929],[5.31792,-5.89884,26.8402],[4.16137,-6.39704,26.2559],[5.555,-6.1667,25.5646],[5.78462,-6.53087,23.9899],[6.93679,-5.86469,24.8609],[5.555,-6.1667,25.5646],[6.05169,-6.90046,22.345],[7.15979,-6.22762,23.2709],[5.78462,-6.53087,23.9899],[6.19999,-7.38764,20.3318],[7.44114,-6.56465,21.6659],[6.05169,-6.90046,22.345],[4.49889,-7.83674,20.5741],[5.04191,-7.40943,21.6633],[3.70107,-7.6837,21.8776],[6.19999,-7.38764,20.3318],[7.74327,-7.19098,19.0603],[7.85457,-6.7724,20.3522],[7.74327,-7.19098,19.0603],[7.89594,-7.57885,17.5438],[8.99097,-6.92016,18.187],[6.82147,-8.22267,16.6476],[8.24133,-7.85309,16.0687],[7.89594,-7.57885,17.5438],[8.24133,-7.85309,16.0687],[6.82147,-8.22267,16.6476],[7.01345,-8.5887,14.9368],[4.47768,-8.33824,18.6188],[5.57015,-8.462,17.1958],[6.46272,-7.8875,18.2438],[5.66669,-8.80594,15.8047],[7.01345,-8.5887,14.9368],[6.82147,-8.22267,16.6476],[4.47768,-8.33824,18.6188],[4.38515,-8.89731,16.6382],[5.57015,-8.462,17.1958],[4.47768,-8.33824,18.6188],[3.44514,-8.90844,17.3192],[4.38515,-8.89731,16.6382],[2.74163,-9.35584,15.6914],[4.38515,-8.89731,16.6382],[3.44514,-8.90844,17.3192],[2.19117,-8.81473,18.4155],[2.74163,-9.35584,15.6914],[3.44514,-8.90844,17.3192],[2.19117,-8.81473,18.4155],[3.44514,-8.90844,17.3192],[4.47768,-8.33824,18.6188],[4.38515,-8.89731,16.6382],[2.74163,-9.35584,15.6914],[4.55258,-9.25217,15.0489],[5.66669,-8.80594,15.8047],[5.67477,-9.16123,14.2689],[7.01345,-8.5887,14.9368],[8.24133,-7.85309,16.0687],[7.01345,-8.5887,14.9368],[8.91116,-8.01208,14.287],[11.0529,-6.96762,14.4965],[9.70291,-7.26078,15.901],[8.91116,-8.01208,14.287],[10.2283,-7.77708,13.1255],[9.58077,-8.4713,11.1331],[11.2906,-7.41908,12.5171],[12.3226,-6.6277,13.3137],[12.8032,-5.91432,14.4693],[11.0529,-6.96762,14.4965],[15.3143,-5.10939,10.5858],[15.976,-4.36568,10.7448],[15.2142,-4.82919,11.8368],[15.2142,-4.82919,11.8368],[15.867,-3.91475,12.3365],[15.2655,-4.37285,12.9479],[15.2655,-4.37285,12.9479],[14.9918,-4.00503,14.5832],[14.7299,-4.69238,13.5991],[13.9387,-5.19345,14.1195],[14.7299,-4.69238,13.5991],[14.9918,-4.00503,14.5832],[14.5674,-5.14748,12.7294],[13.4874,-5.92906,13.0233],[14.2389,-5.82055,11.4303],[12.8032,-5.91432,14.4693],[12.3226,-6.6277,13.3137],[13.4874,-5.92906,13.0233],[12.0897,-5.88176,15.9887],[11.0529,-6.96762,14.4965],[12.8032,-5.91432,14.4693],[11.2819,-5.9229,17.4687],[10.8598,-6.57133,16.2323],[12.0897,-5.88176,15.9887],[10.2062,-6.16137,18.6509],[11.2819,-5.9229,17.4687],[11.6259,-5.14617,19.1752],[13.1385,-4.16001,18.8681],[12.3998,-4.13031,20.6934],[11.6259,-5.14617,19.1752],[13.6167,-3.29899,19.9439],[12.3998,-4.13031,20.6934],[13.1385,-4.16001,18.8681],[13.6167,-3.29899,19.9439],[13.067,-3.28451,21.7347],[12.3998,-4.13031,20.6934],[13.067,-3.28451,21.7347],[13.4637,-2.85268,21.7435],[13.3683,-3.14884,22.4286],[13.4637,-2.85268,21.7435],[13.5842,-2.78799,21.0475],[13.5055,-3.10367,21.9333],[13.9195,-2.2213,20.6198],[14.2984,-1.91153,20.1443],[14.2027,-1.60699,19.6549],[13.726,-2.60763,19.3419],[14.0917,-1.68287,19.1591],[14.1157,-1.61354,18.1637],[13.6035,-2.87975,20.1704],[13.5842,-2.78799,21.0475],[13.8422,-2.19215,19.9504],[13.6035,-2.87975,20.1704],[13.6273,-3.67844,19.1958],[13.5857,-3.39983,20.7298],[13.726,-2.60763,19.3419],[14.1157,-1.61354,18.1637],[13.9328,-2.25947,17.0255],[14.1157,-1.61354,18.1637],[14.2474,-1.36552,16.8494],[13.9328,-2.25947,17.0255],[14.2474,-1.36552,16.8494],[14.1157,-1.61354,18.1637],[14.4104,-1.00925,17.686],[13.9328,-2.25947,17.0255],[14.1218,-1.97719,15.6177],[13.7459,-3.28767,16.6306],[13.6502,-4.10374,17.6944],[13.6273,-3.67844,19.1958],[13.6701,-3.15908,18.0172],[13.8938,-3.2079,14.8603],[13.7191,-3.99543,15.6172],[13.7459,-3.28767,16.6306],[13.6721,-4.34675,16.4692],[13.7817,-5.30118,16.8767],[13.6502,-4.10374,17.6944],[14.0972,-6.59764,16.8148],[13.7817,-5.30118,16.8767],[13.8592,-6.00496,15.8415],[13.8592,-6.00496,15.8415],[13.8189,-6.03851,14.6776],[14.0266,-6.9671,15.3779],[13.774,-5.06932,14.1487],[13.7339,-5.00756,15.4661],[13.7828,-4.19515,14.5964],[13.8658,-7.14777,13.9949],[14.0266,-6.9671,15.3779],[13.8189,-6.03851,14.6776],[13.6377,-7.78606,12.929],[13.8658,-7.14777,13.9949],[13.6022,-7.02574,12.359],[13.6022,-7.02574,12.359],[13.3069,-7.2319,11.2215],[13.2205,-8.0991,12.0037],[13.7896,-5.86628,11.5185],[14.0104,-5.37421,10.4461],[13.5688,-6.47648,10.3803],[13.3069,-7.2319,11.2215],[13.0377,-7.40035,10.2577],[12.4355,-8.40207,10.8059],[13.0377,-7.40035,10.2577],[12.3512,-7.86659,9.47388],[12.4355,-8.40207,10.8059],[12.3512,-7.86659,9.47388],[11.0507,-8.83441,9.7547],[12.4355,-8.40207,10.8059],[12.4355,-8.40207,10.8059],[11.0507,-8.83441,9.7547],[11.1016,-9.57593,10.911],[11.1848,-8.28541,8.19376],[11.0507,-8.83441,9.7547],[12.3512,-7.86659,9.47388],[11.1848,-8.28541,8.19376],[12.3512,-7.86659,9.47388],[12.8168,-7.25077,8.49015],[11.1848,-8.28541,8.19376],[12.8168,-7.25077,8.49015],[12.3464,-7.60957,7.72885],[11.8793,-7.9216,7.22272],[11.1848,-8.28541,8.19376],[12.3464,-7.60957,7.72885],[11.8793,-7.9216,7.22272],[12.3464,-7.60957,7.72885],[12.6017,-7.4629,7.01474],[12.3464,-7.60957,7.72885],[13.0715,-7.03229,7.70785],[12.6017,-7.4629,7.01474],[11.1848,-8.28541,8.19376],[11.8793,-7.9216,7.22272],[11.0876,-8.27695,6.81508],[11.8793,-7.9216,7.22272],[11.9835,-7.89168,6.4069],[11.0876,-8.27695,6.81508],[12.3464,-7.60957,7.72885],[12.8168,-7.25077,8.49015],[13.0715,-7.03229,7.70785],[12.8168,-7.25077,8.49015],[13.6383,-6.35127,8.39638],[13.0715,-7.03229,7.70785],[13.7456,-6.40495,6.999],[13.0715,-7.03229,7.70785],[13.6383,-6.35127,8.39638],[12.3512,-7.86659,9.47388],[13.2479,-6.90737,9.40044],[12.8168,-7.25077,8.49015],[9.4364,-9.10526,9.01284],[11.0507,-8.83441,9.7547],[11.1848,-8.28541,8.19376],[11.1848,-8.28541,8.19376],[9.29289,-8.81624,7.36521],[9.4364,-9.10526,9.01284],[9.29289,-8.81624,7.36521],[7.76581,-9.26041,8.61847],[9.4364,-9.10526,9.01284],[7.76581,-9.26041,8.61847],[7.74189,-9.79065,9.86335],[9.4364,-9.10526,9.01284],[7.76581,-9.26041,8.61847],[5.23184,-9.60988,9.19834],[7.74189,-9.79065,9.86335],[5.23184,-9.60988,9.19834],[5.28103,-10.3594,10.632],[7.74189,-9.79065,9.86335],[5.23184,-9.60988,9.19834],[3.80882,-10.0305,10.3162],[5.28103,-10.3594,10.632],[2.98132,-10.8724,11.7397],[5.28103,-10.3594,10.632],[3.80882,-10.0305,10.3162],[0.872834,-10.2931,11.799],[2.98132,-10.8724,11.7397],[3.80882,-10.0305,10.3162],[-1.07336,-9.17026,10.6517],[0.872834,-10.2931,11.799],[3.80882,-10.0305,10.3162],[3.80882,-10.0305,10.3162],[2.77067,-9.47074,9.06959],[-1.07336,-9.17026,10.6517],[0.404622,-9.45583,8.40648],[-1.07336,-9.17026,10.6517],[2.77067,-9.47074,9.06959],[3.44688,-9.45035,7.98175],[0.404622,-9.45583,8.40648],[2.77067,-9.47074,9.06959],[2.77067,-9.47074,9.06959],[3.98384,-9.42773,8.62176],[3.44688,-9.45035,7.98175],[3.44688,-9.45035,7.98175],[3.98384,-9.42773,8.62176],[4.82522,-9.39396,7.93673],[4.20739,-9.57511,6.80609],[3.44688,-9.45035,7.98175],[4.82522,-9.39396,7.93673],[4.20739,-9.57511,6.80609],[4.82522,-9.39396,7.93673],[5.69302,-9.3092,7.02628],[6.35103,-9.43198,5.92179],[4.20739,-9.57511,6.80609],[5.69302,-9.3092,7.02628],[6.00468,-9.30659,7.89667],[5.69302,-9.3092,7.02628],[4.82522,-9.39396,7.93673],[6.00468,-9.30659,7.89667],[4.82522,-9.39396,7.93673],[5.23184,-9.60988,9.19834],[5.69302,-9.3092,7.02628],[6.00468,-9.30659,7.89667],[7.21865,-9.15877,6.60951],[3.44688,-9.45035,7.98175],[4.20739,-9.57511,6.80609],[2.01414,-9.60642,7.3476],[2.01414,-9.60642,7.3476],[4.20739,-9.57511,6.80609],[2.95537,-9.86174,6.27317],[2.01414,-9.60642,7.3476],[2.95537,-9.86174,6.27317],[0.649071,-9.72653,7.21821],[0.649071,-9.72653,7.21821],[0.404622,-9.45583,8.40648],[2.01414,-9.60642,7.3476],[-0.320089,-9.64394,7.47793],[0.404622,-9.45583,8.40648],[0.649071,-9.72653,7.21821],[0.0317469,-10.0635,6.59487],[-0.320089,-9.64394,7.47793],[0.649071,-9.72653,7.21821],[0.0317469,-10.0635,6.59487],[0.649071,-9.72653,7.21821],[1.71004,-10.1113,6.07716],[0.77192,-10.5064,5.79389],[0.0317469,-10.0635,6.59487],[1.71004,-10.1113,6.07716],[0.77192,-10.5064,5.79389],[1.71004,-10.1113,6.07716],[2.1422,-10.565,5.33695],[1.2107,-11.2088,5.0962],[0.77192,-10.5064,5.79389],[2.1422,-10.565,5.33695],[2.1422,-10.565,5.33695],[3.04533,-11.0351,4.67602],[1.2107,-11.2088,5.0962],[1.2107,-11.2088,5.0962],[3.04533,-11.0351,4.67602],[1.94713,-12.2398,4.37897],[1.2107,-11.2088,5.0962],[1.94713,-12.2398,4.37897],[0.0337937,-12.0032,5.14925],[-0.446404,-10.7474,5.98485],[1.2107,-11.2088,5.0962],[0.0337937,-12.0032,5.14925],[0.0337937,-12.0032,5.14925],[-3.10673,-11.2128,6.60789],[-0.446404,-10.7474,5.98485],[-3.66801,-9.99436,7.50258],[-0.446404,-10.7474,5.98485],[-3.10673,-11.2128,6.60789],[-3.66801,-9.99436,7.50258],[-3.10673,-11.2128,6.60789],[-4.42207,-10.606,7.30332],[-4.66088,-9.84982,7.85803],[-3.66801,-9.99436,7.50258],[-4.42207,-10.606,7.30332],[-4.66088,-9.84982,7.85803],[-4.42207,-10.606,7.30332],[-5.66553,-10.2825,7.97884],[-4.66088,-9.84982,7.85803],[-5.66553,-10.2825,7.97884],[-5.52261,-9.39998,8.57552],[-3.87541,-9.34962,8.24855],[-4.66088,-9.84982,7.85803],[-5.52261,-9.39998,8.57552],[-3.87541,-9.34962,8.24855],[-5.52261,-9.39998,8.57552],[-5.42197,-8.40553,9.8911],[-2.94375,-8.97871,8.90061],[-3.87541,-9.34962,8.24855],[-5.42197,-8.40553,9.8911],[-2.94375,-8.97871,8.90061],[-5.42197,-8.40553,9.8911],[-3.86315,-8.47,10.0095],[-2.94375,-8.97871,8.90061],[-3.86315,-8.47,10.0095],[-2.76004,-8.69315,10.185],[-1.82909,-9.21723,8.37607],[-2.94375,-8.97871,8.90061],[-2.76004,-8.69315,10.185],[0.404622,-9.45583,8.40648],[-1.82909,-9.21723,8.37607],[-2.76004,-8.69315,10.185],[-2.94375,-8.97871,8.90061],[-1.82909,-9.21723,8.37607],[-2.76818,-9.42681,7.9752],[-1.82909,-9.21723,8.37607],[-0.320089,-9.64394,7.47793],[-2.76818,-9.42681,7.9752],[-1.11457,-9.95206,6.95271],[-2.76818,-9.42681,7.9752],[-0.320089,-9.64394,7.47793],[-2.76818,-9.42681,7.9752],[-1.11457,-9.95206,6.95271],[-3.66801,-9.99436,7.50258],[-3.87541,-9.34962,8.24855],[-2.76818,-9.42681,7.9752],[-3.66801,-9.99436,7.50258],[-3.86315,-8.47,10.0095],[-3.75816,-8.30073,10.8395],[-2.76004,-8.69315,10.185],[-3.75816,-8.30073,10.8395],[-2.55098,-8.71654,11.2024],[-2.76004,-8.69315,10.185],[-2.55098,-8.71654,11.2024],[-1.07336,-9.17026,10.6517],[-2.76004,-8.69315,10.185],[-2.55098,-8.71654,11.2024],[-2.14355,-9.16534,12.0937],[-1.07336,-9.17026,10.6517],[-2.14355,-9.16534,12.0937],[-2.55098,-8.71654,11.2024],[-3.6306,-8.38013,12.4169],[-2.14355,-9.16534,12.0937],[-3.6306,-8.38013,12.4169],[-4.17433,-8.44228,13.6337],[-2.81319,-9.54269,13.6567],[-2.14355,-9.16534,12.0937],[-4.17433,-8.44228,13.6337],[-4.75212,-8.68176,14.8651],[-2.81319,-9.54269,13.6567],[-4.17433,-8.44228,13.6337],[-4.75212,-8.68176,14.8651],[-4.17433,-8.44228,13.6337],[-5.4602,-7.66386,14.1736],[-4.75212,-8.68176,14.8651],[-5.4602,-7.66386,14.1736],[-6.6173,-7.41956,15.7827],[-5.46788,-9.24615,16.2339],[-4.75212,-8.68176,14.8651],[-6.6173,-7.41956,15.7827],[-8.03969,-7.26088,17.5461],[-5.46788,-9.24615,16.2339],[-6.6173,-7.41956,15.7827],[-8.03969,-7.26088,17.5461],[-6.6173,-7.41956,15.7827],[-8.50223,-6.38529,16.6404],[-8.50223,-6.38529,16.6404],[-9.36435,-6.64663,17.8898],[-8.03969,-7.26088,17.5461],[-9.36435,-6.64663,17.8898],[-8.80582,-8.01623,18.7322],[-8.03969,-7.26088,17.5461],[-8.80582,-8.01623,18.7322],[-7.36773,-8.61025,18.0404],[-8.03969,-7.26088,17.5461],[-7.63787,-9.58344,18.5666],[-7.36773,-8.61025,18.0404],[-8.80582,-8.01623,18.7322],[-8.80582,-8.01623,18.7322],[-9.21754,-9.53699,19.4495],[-7.63787,-9.58344,18.5666],[-9.21754,-9.53699,19.4495],[-8.11574,-10.9749,18.9336],[-7.63787,-9.58344,18.5666],[-7.63787,-9.58344,18.5666],[-8.11574,-10.9749,18.9336],[-6.60845,-10.9635,17.9019],[-7.63787,-9.58344,18.5666],[-6.60845,-10.9635,17.9019],[-6.36517,-9.78423,17.5783],[-6.60845,-10.9635,17.9019],[-5.3337,-10.7882,16.7319],[-6.36517,-9.78423,17.5783],[-5.3337,-10.7882,16.7319],[-5.46788,-9.24615,16.2339],[-6.36517,-9.78423,17.5783],[-7.36773,-8.61025,18.0404],[-6.36517,-9.78423,17.5783],[-5.46788,-9.24615,16.2339],[-4.29565,-9.9303,15.3802],[-5.46788,-9.24615,16.2339],[-5.3337,-10.7882,16.7319],[-2.8362,-11.8829,14.8612],[-4.29565,-9.9303,15.3802],[-5.3337,-10.7882,16.7319],[-4.13453,-12.7572,15.8851],[-2.8362,-11.8829,14.8612],[-5.3337,-10.7882,16.7319],[-5.69409,-12.1357,17.1245],[-4.13453,-12.7572,15.8851],[-5.3337,-10.7882,16.7319],[-5.69409,-12.1357,17.1245],[-5.79402,-13.4227,16.9193],[-4.13453,-12.7572,15.8851],[-4.13453,-12.7572,15.8851],[-5.79402,-13.4227,16.9193],[-3.63122,-14.8058,14.9907],[-4.13453,-12.7572,15.8851],[-3.63122,-14.8058,14.9907],[-2.0602,-13.4749,14.6046],[-3.63122,-14.8058,14.9907],[-0.0474019,-14.8152,13.4624],[-2.0602,-13.4749,14.6046],[-2.0602,-13.4749,14.6046],[-0.0474019,-14.8152,13.4624],[0.435617,-13.1819,13.4672],[-2.0602,-13.4749,14.6046],[0.435617,-13.1819,13.4672],[-2.8362,-11.8829,14.8612],[-0.53107,-11.567,13.4233],[-2.8362,-11.8829,14.8612],[0.435617,-13.1819,13.4672],[0.435617,-13.1819,13.4672],[0.919748,-11.9309,13.0489],[-0.53107,-11.567,13.4233],[0.919748,-11.9309,13.0489],[1.10177,-11.0815,12.5287],[-0.53107,-11.567,13.4233],[-0.757691,-10.2778,12.7524],[-0.53107,-11.567,13.4233],[1.10177,-11.0815,12.5287],[1.10177,-11.0815,12.5287],[0.872834,-10.2931,11.799],[-0.757691,-10.2778,12.7524],[-2.14355,-9.16534,12.0937],[-0.757691,-10.2778,12.7524],[0.872834,-10.2931,11.799],[-2.81319,-9.54269,13.6567],[-0.53107,-11.567,13.4233],[-0.757691,-10.2778,12.7524],[-4.29565,-9.9303,15.3802],[-0.53107,-11.567,13.4233],[-2.81319,-9.54269,13.6567],[3.00411,-12.101,12.5093],[1.10177,-11.0815,12.5287],[0.919748,-11.9309,13.0489],[2.98132,-10.8724,11.7397],[1.10177,-11.0815,12.5287],[3.00411,-12.101,12.5093],[3.00411,-12.101,12.5093],[5.56053,-11.3925,11.6927],[2.98132,-10.8724,11.7397],[0.435617,-13.1819,13.4672],[3.00411,-12.101,12.5093],[0.919748,-11.9309,13.0489],[0.435617,-13.1819,13.4672],[3.34257,-13.975,12.7947],[3.00411,-12.101,12.5093],[5.53927,-13.13,12.3526],[3.00411,-12.101,12.5093],[3.34257,-13.975,12.7947],[5.53927,-13.13,12.3526],[3.34257,-13.975,12.7947],[5.37793,-15.0144,12.3546],[5.53927,-13.13,12.3526],[5.37793,-15.0144,12.3546],[8.10804,-14.3585,12.2846],[8.10804,-14.3585,12.2846],[5.37793,-15.0144,12.3546],[9.06249,-15.713,11.9347],[5.37793,-15.0144,12.3546],[6.9613,-16.4149,11.7563],[9.06249,-15.713,11.9347],[5.04031,-16.5453,11.7768],[6.9613,-16.4149,11.7563],[5.37793,-15.0144,12.3546],[2.59558,-15.3755,12.7152],[5.04031,-16.5453,11.7768],[5.37793,-15.0144,12.3546],[2.59558,-15.3755,12.7152],[0.189513,-16.5338,12.5099],[5.04031,-16.5453,11.7768],[2.87445,-17.7939,10.7168],[5.04031,-16.5453,11.7768],[0.189513,-16.5338,12.5099],[2.87445,-17.7939,10.7168],[0.189513,-16.5338,12.5099],[0.858281,-17.8027,10.9784],[2.87445,-17.7939,10.7168],[0.858281,-17.8027,10.9784],[1.65718,-18.2563,9.35576],[0.858281,-17.8027,10.9784],[-0.607133,-18.0977,10.5677],[1.65718,-18.2563,9.35576],[-0.607133,-18.0977,10.5677],[-0.854928,-18.1762,9.2508],[1.65718,-18.2563,9.35576],[-2.36121,-18.0451,10.6573],[-0.854928,-18.1762,9.2508],[-0.607133,-18.0977,10.5677],[-2.36121,-18.0451,10.6573],[-0.607133,-18.0977,10.5677],[-1.22323,-17.4696,11.856],[-1.22323,-17.4696,11.856],[-4.91023,-17.5748,12.8664],[-2.36121,-18.0451,10.6573],[-4.91023,-17.5748,12.8664],[-4.50777,-17.9485,11.1768],[-2.36121,-18.0451,10.6573],[-2.36121,-18.0451,10.6573],[-4.50777,-17.9485,11.1768],[-3.28356,-17.7154,9.27991],[-8.56772,-17.5048,11.9422],[-3.28356,-17.7154,9.27991],[-4.50777,-17.9485,11.1768],[-7.20493,-17.719,13.0414],[-8.56772,-17.5048,11.9422],[-4.50777,-17.9485,11.1768],[-9.11102,-17.5398,13.6303],[-8.56772,-17.5048,11.9422],[-7.20493,-17.719,13.0414],[-9.11102,-17.5398,13.6303],[-7.20493,-17.719,13.0414],[-7.41731,-17.0384,14.8143],[-7.41731,-17.0384,14.8143],[-9.57312,-16.9819,15.5016],[-9.11102,-17.5398,13.6303],[-9.57312,-16.9819,15.5016],[-10.592,-17.2283,14.6737],[-9.11102,-17.5398,13.6303],[-9.11102,-17.5398,13.6303],[-10.592,-17.2283,14.6737],[-10.8654,-17.1951,13.4785],[-10.8654,-17.1951,13.4785],[-9.86725,-17.3917,12.3865],[-9.11102,-17.5398,13.6303],[-11.1,-16.76,12.194],[-9.86725,-17.3917,12.3865],[-10.8654,-17.1951,13.4785],[-12.3633,-16.3454,13.498],[-11.1,-16.76,12.194],[-10.8654,-17.1951,13.4785],[-10.8654,-17.1951,13.4785],[-11.9693,-16.6835,14.7549],[-12.3633,-16.3454,13.498],[-12.3633,-16.3454,13.498],[-11.9693,-16.6835,14.7549],[-13.3094,-15.742,14.8582],[-13.6599,-15.1675,13.707],[-12.3633,-16.3454,13.498],[-13.3094,-15.742,14.8582],[-13.3094,-15.742,14.8582],[-14.3183,-14.5567,15.0924],[-13.6599,-15.1675,13.707],[-13.6599,-15.1675,13.707],[-14.3183,-14.5567,15.0924],[-14.5746,-13.8107,14.0594],[-13.7746,-14.2769,12.6358],[-13.6599,-15.1675,13.707],[-14.5746,-13.8107,14.0594],[-14.4881,-13.006,13.1273],[-13.7746,-14.2769,12.6358],[-14.5746,-13.8107,14.0594],[-14.4881,-13.006,13.1273],[-14.5746,-13.8107,14.0594],[-15.0724,-12.1343,14.5314],[-15.0724,-12.1343,14.5314],[-14.5195,-11.4533,12.9386],[-14.4881,-13.006,13.1273],[-13.5135,-13.1003,11.7024],[-14.4881,-13.006,13.1273],[-14.5195,-11.4533,12.9386],[-13.6563,-11.7405,11.6381],[-13.5135,-13.1003,11.7024],[-14.5195,-11.4533,12.9386],[-14.5195,-11.4533,12.9386],[-13.7731,-10.6262,11.9736],[-13.6563,-11.7405,11.6381],[-13.6563,-11.7405,11.6381],[-13.7731,-10.6262,11.9736],[-13.1174,-11.1973,11.1758],[-13.6563,-11.7405,11.6381],[-13.1174,-11.1973,11.1758],[-12.7797,-12.2273,10.8491],[-12.2972,-11.2619,10.6365],[-12.7797,-12.2273,10.8491],[-13.1174,-11.1973,11.1758],[-12.7081,-10.1309,11.2634],[-12.2972,-11.2619,10.6365],[-13.1174,-11.1973,11.1758],[-12.7081,-10.1309,11.2634],[-11.1002,-10.2764,10.2807],[-12.2972,-11.2619,10.6365],[-11.1002,-10.2764,10.2807],[-9.68704,-11.6132,9.25363],[-12.2972,-11.2619,10.6365],[-9.68704,-11.6132,9.25363],[-11.3984,-12.5109,9.98425],[-12.2972,-11.2619,10.6365],[-9.90427,-12.8438,9.21878],[-11.3984,-12.5109,9.98425],[-9.68704,-11.6132,9.25363],[-8.05381,-12.1278,8.42343],[-9.90427,-12.8438,9.21878],[-9.68704,-11.6132,9.25363],[-8.05381,-12.1278,8.42343],[-9.68704,-11.6132,9.25363],[-8.74842,-10.6597,9.08587],[-5.53276,-11.7234,7.42371],[-8.05381,-12.1278,8.42343],[-8.74842,-10.6597,9.08587],[-7.07843,-10.6674,8.34378],[-5.53276,-11.7234,7.42371],[-8.74842,-10.6597,9.08587],[-8.14761,-9.81917,9.21218],[-7.07843,-10.6674,8.34378],[-8.74842,-10.6597,9.08587],[-8.14761,-9.81917,9.21218],[-8.74842,-10.6597,9.08587],[-9.16606,-9.6894,9.68779],[-8.14761,-9.81917,9.21218],[-9.16606,-9.6894,9.68779],[-8.35263,-8.97044,9.84928],[-7.21521,-9.20503,9.26519],[-8.14761,-9.81917,9.21218],[-8.35263,-8.97044,9.84928],[-7.54985,-8.28634,10.2606],[-7.21521,-9.20503,9.26519],[-8.35263,-8.97044,9.84928],[-8.76342,-8.08413,10.7407],[-7.54985,-8.28634,10.2606],[-8.35263,-8.97044,9.84928],[-8.76342,-8.08413,10.7407],[-8.35263,-8.97044,9.84928],[-9.6333,-8.77378,10.4501],[-10.1601,-7.86407,11.4151],[-8.76342,-8.08413,10.7407],[-9.6333,-8.77378,10.4501],[-9.6333,-8.77378,10.4501],[-11.0072,-8.65911,11.1136],[-10.1601,-7.86407,11.4151],[-10.1601,-7.86407,11.4151],[-11.0072,-8.65911,11.1136],[-11.7158,-7.72129,12.2977],[-11.7158,-7.72129,12.2977],[-10.4743,-7.01162,12.4454],[-10.1601,-7.86407,11.4151],[-10.1601,-7.86407,11.4151],[-10.4743,-7.01162,12.4454],[-9.20392,-7.28038,11.7257],[-10.4743,-7.01162,12.4454],[-9.56516,-6.67014,12.6533],[-9.20392,-7.28038,11.7257],[-9.56516,-6.67014,12.6533],[-8.34447,-6.94287,12.188],[-9.20392,-7.28038,11.7257],[-8.34447,-6.94287,12.188],[-7.91678,-7.54452,11.1929],[-9.20392,-7.28038,11.7257],[-7.91678,-7.54452,11.1929],[-8.76342,-8.08413,10.7407],[-9.20392,-7.28038,11.7257],[-8.34447,-6.94287,12.188],[-7.30261,-7.19977,11.8682],[-7.91678,-7.54452,11.1929],[-6.63753,-7.81592,10.7809],[-7.91678,-7.54452,11.1929],[-7.30261,-7.19977,11.8682],[-5.12964,-7.95128,10.9815],[-6.63753,-7.81592,10.7809],[-7.30261,-7.19977,11.8682],[-6.13944,-7.32477,12.2477],[-5.12964,-7.95128,10.9815],[-7.30261,-7.19977,11.8682],[-7.40613,-6.76819,13.0438],[-6.13944,-7.32477,12.2477],[-7.30261,-7.19977,11.8682],[-6.17562,-7.16555,13.5373],[-6.13944,-7.32477,12.2477],[-7.40613,-6.76819,13.0438],[-7.44973,-6.48361,14.2782],[-6.17562,-7.16555,13.5373],[-7.40613,-6.76819,13.0438],[-7.40613,-6.76819,13.0438],[-8.3316,-6.21055,14.0624],[-7.44973,-6.48361,14.2782],[-8.28726,-6.10382,14.7995],[-7.44973,-6.48361,14.2782],[-8.3316,-6.21055,14.0624],[-8.3316,-6.21055,14.0624],[-9.2922,-5.91028,14.6869],[-8.28726,-6.10382,14.7995],[-9.2922,-5.91028,14.6869],[-9.09584,-5.91531,15.6912],[-8.28726,-6.10382,14.7995],[-9.09584,-5.91531,15.6912],[-7.54272,-6.50127,15.2821],[-8.28726,-6.10382,14.7995],[-8.50223,-6.38529,16.6404],[-7.54272,-6.50127,15.2821],[-9.09584,-5.91531,15.6912],[-9.09584,-5.91531,15.6912],[-9.93043,-5.93967,16.8285],[-8.50223,-6.38529,16.6404],[-9.09584,-5.91531,15.6912],[-10.4667,-5.75312,15.5809],[-9.93043,-5.93967,16.8285],[-9.93043,-5.93967,16.8285],[-10.4667,-5.75312,15.5809],[-11.2601,-5.82037,16.726],[-11.1143,-6.28337,17.9848],[-9.93043,-5.93967,16.8285],[-11.2601,-5.82037,16.726],[-12.6492,-6.24838,17.1583],[-11.1143,-6.28337,17.9848],[-11.2601,-5.82037,16.726],[-11.9451,-5.94187,15.7946],[-12.6492,-6.24838,17.1583],[-11.2601,-5.82037,16.726],[-11.9451,-5.94187,15.7946],[-13.281,-6.5884,15.7403],[-12.6492,-6.24838,17.1583],[-14.0487,-7.11082,16.9026],[-12.6492,-6.24838,17.1583],[-13.281,-6.5884,15.7403],[-14.0487,-7.11082,16.9026],[-13.281,-6.5884,15.7403],[-14.4081,-7.77668,15.3726],[-14.4081,-7.77668,15.3726],[-14.9255,-8.40741,16.793],[-14.0487,-7.11082,16.9026],[-14.9255,-8.40741,16.793],[-14.3658,-7.86067,18.0351],[-14.0487,-7.11082,16.9026],[-14.0487,-7.11082,16.9026],[-14.3658,-7.86067,18.0351],[-13.5475,-6.88252,18.0243],[-14.3658,-7.86067,18.0351],[-13.265,-7.6572,19.0524],[-13.5475,-6.88252,18.0243],[-13.265,-7.6572,19.0524],[-12.5565,-6.62139,18.4238],[-13.5475,-6.88252,18.0243],[-12.6492,-6.24838,17.1583],[-13.5475,-6.88252,18.0243],[-12.5565,-6.62139,18.4238],[-11.6893,-7.19113,19.1553],[-12.5565,-6.62139,18.4238],[-13.265,-7.6572,19.0524],[-11.6893,-7.19113,19.1553],[-13.265,-7.6572,19.0524],[-12.1319,-8.44568,19.8307],[-11.6893,-7.19113,19.1553],[-12.1319,-8.44568,19.8307],[-10.4973,-8.22233,19.5652],[-11.6893,-7.19113,19.1553],[-10.4973,-8.22233,19.5652],[-10.2472,-7.08912,18.855],[-11.6893,-7.19113,19.1553],[-10.2472,-7.08912,18.855],[-11.1143,-6.28337,17.9848],[-9.36435,-6.64663,17.8898],[-11.1143,-6.28337,17.9848],[-10.2472,-7.08912,18.855],[-8.80582,-8.01623,18.7322],[-10.2472,-7.08912,18.855],[-10.4973,-8.22233,19.5652],[-10.4973,-8.22233,19.5652],[-12.1319,-8.44568,19.8307],[-11.0181,-9.86336,19.9886],[-11.0181,-9.86336,19.9886],[-9.21754,-9.53699,19.4495],[-10.4973,-8.22233,19.5652],[-9.21754,-9.53699,19.4495],[-11.0181,-9.86336,19.9886],[-9.57196,-10.8699,19.6576],[-11.0181,-9.86336,19.9886],[-10.6572,-11.7334,19.7056],[-9.57196,-10.8699,19.6576],[-8.96221,-12.2982,19.0933],[-9.57196,-10.8699,19.6576],[-10.6572,-11.7334,19.7056],[-8.96221,-12.2982,19.0933],[-10.6572,-11.7334,19.7056],[-10.1113,-13.4615,18.956],[-8.37401,-13.9287,18.2244],[-8.96221,-12.2982,19.0933],[-10.1113,-13.4615,18.956],[-8.37401,-13.9287,18.2244],[-10.1113,-13.4615,18.956],[-9.45561,-15.0222,17.902],[-9.45561,-15.0222,17.902],[-7.98807,-15.2124,17.3536],[-8.37401,-13.9287,18.2244],[-6.86209,-14.4275,17.2129],[-8.37401,-13.9287,18.2244],[-7.98807,-15.2124,17.3536],[-6.95399,-15.7992,16.3119],[-6.86209,-14.4275,17.2129],[-7.98807,-15.2124,17.3536],[-8.59495,-16.1956,16.5798],[-6.95399,-15.7992,16.3119],[-7.98807,-15.2124,17.3536],[-6.95399,-15.7992,16.3119],[-8.59495,-16.1956,16.5798],[-7.41731,-17.0384,14.8143],[-7.41731,-17.0384,14.8143],[-4.80785,-16.2298,14.6985],[-6.95399,-15.7992,16.3119],[-4.80785,-16.2298,14.6985],[-5.49519,-15.0252,16.0651],[-6.95399,-15.7992,16.3119],[-4.80785,-16.2298,14.6985],[-3.63122,-14.8058,14.9907],[-5.49519,-15.0252,16.0651],[-4.80785,-16.2298,14.6985],[-1.83429,-16.1154,13.544],[-3.63122,-14.8058,14.9907],[-1.22323,-17.4696,11.856],[-1.83429,-16.1154,13.544],[-4.80785,-16.2298,14.6985],[0.189513,-16.5338,12.5099],[-1.83429,-16.1154,13.544],[-1.22323,-17.4696,11.856],[-1.83429,-16.1154,13.544],[0.189513,-16.5338,12.5099],[-0.0474019,-14.8152,13.4624],[-7.41731,-17.0384,14.8143],[-4.91023,-17.5748,12.8664],[-4.80785,-16.2298,14.6985],[-6.95399,-15.7992,16.3119],[-5.49519,-15.0252,16.0651],[-6.86209,-14.4275,17.2129],[-5.49519,-15.0252,16.0651],[-5.79402,-13.4227,16.9193],[-6.86209,-14.4275,17.2129],[-5.79402,-13.4227,16.9193],[-7.12069,-12.6325,18.0068],[-6.86209,-14.4275,17.2129],[-7.12069,-12.6325,18.0068],[-8.37401,-13.9287,18.2244],[-6.86209,-14.4275,17.2129],[-7.98807,-15.2124,17.3536],[-9.45561,-15.0222,17.902],[-8.59495,-16.1956,16.5798],[-10.4288,-15.9501,17.0574],[-8.59495,-16.1956,16.5798],[-9.45561,-15.0222,17.902],[-11.2232,-14.5056,18.3192],[-10.4288,-15.9501,17.0574],[-9.45561,-15.0222,17.902],[-12.15,-15.3142,17.2767],[-10.4288,-15.9501,17.0574],[-11.2232,-14.5056,18.3192],[-12.15,-15.3142,17.2767],[-11.2232,-14.5056,18.3192],[-12.8801,-13.7071,18.3082],[-12.15,-15.3142,17.2767],[-12.8801,-13.7071,18.3082],[-13.6142,-14.3605,17.1502],[-12.15,-15.3142,17.2767],[-13.6142,-14.3605,17.1502],[-12.753,-15.876,15.971],[-12.753,-15.876,15.971],[-11.3186,-16.5436,15.9663],[-12.15,-15.3142,17.2767],[-11.3186,-16.5436,15.9663],[-12.753,-15.876,15.971],[-11.9693,-16.6835,14.7549],[-11.9693,-16.6835,14.7549],[-10.592,-17.2283,14.6737],[-11.3186,-16.5436,15.9663],[-13.8662,-14.9692,15.964],[-12.753,-15.876,15.971],[-13.6142,-14.3605,17.1502],[-14.5212,-13.7231,16.3617],[-13.8662,-14.9692,15.964],[-13.6142,-14.3605,17.1502],[-13.6142,-14.3605,17.1502],[-14.203,-12.7702,17.7209],[-14.5212,-13.7231,16.3617],[-14.5212,-13.7231,16.3617],[-14.203,-12.7702,17.7209],[-15.0636,-11.9287,16.4292],[-14.9176,-13.2988,15.3411],[-14.5212,-13.7231,16.3617],[-15.0636,-11.9287,16.4292],[-14.9176,-13.2988,15.3411],[-15.0636,-11.9287,16.4292],[-15.0724,-12.1343,14.5314],[-15.0636,-11.9287,16.4292],[-15.3653,-10.7489,15.5219],[-15.0724,-12.1343,14.5314],[-15.3653,-10.7489,15.5219],[-15.0881,-10.4001,14.2674],[-15.0724,-12.1343,14.5314],[-15.1814,-9.31169,15.4917],[-15.0881,-10.4001,14.2674],[-15.3653,-10.7489,15.5219],[-15.1814,-9.31169,15.4917],[-15.3653,-10.7489,15.5219],[-15.2425,-9.99273,16.7836],[-15.2425,-9.99273,16.7836],[-14.9255,-8.40741,16.793],[-15.1814,-9.31169,15.4917],[-15.2425,-9.99273,16.7836],[-14.9015,-9.09578,17.8522],[-14.9255,-8.40741,16.793],[-14.5862,-10.6661,18.1751],[-14.9015,-9.09578,17.8522],[-15.2425,-9.99273,16.7836],[-14.5862,-10.6661,18.1751],[-15.2425,-9.99273,16.7836],[-15.0636,-11.9287,16.4292],[-14.1969,-8.95973,18.884],[-14.9015,-9.09578,17.8522],[-14.5862,-10.6661,18.1751],[-13.5615,-10.1361,19.5014],[-14.1969,-8.95973,18.884],[-14.5862,-10.6661,18.1751],[-13.5615,-10.1361,19.5014],[-14.5862,-10.6661,18.1751],[-13.3927,-11.8896,19.0121],[-13.5615,-10.1361,19.5014],[-13.3927,-11.8896,19.0121],[-12.2775,-11.0098,19.8416],[-13.5615,-10.1361,19.5014],[-12.2775,-11.0098,19.8416],[-12.5601,-9.60649,20.0398],[-12.5601,-9.60649,20.0398],[-13.3012,-8.8596,19.6992],[-13.5615,-10.1361,19.5014],[-12.1319,-8.44568,19.8307],[-13.3012,-8.8596,19.6992],[-12.5601,-9.60649,20.0398],[-12.5601,-9.60649,20.0398],[-12.2775,-11.0098,19.8416],[-11.0181,-9.86336,19.9886],[-13.3927,-11.8896,19.0121],[-11.8525,-12.7894,19.2577],[-12.2775,-11.0098,19.8416],[-10.6572,-11.7334,19.7056],[-12.2775,-11.0098,19.8416],[-11.8525,-12.7894,19.2577],[-12.8801,-13.7071,18.3082],[-11.8525,-12.7894,19.2577],[-13.3927,-11.8896,19.0121],[-12.8801,-13.7071,18.3082],[-13.3927,-11.8896,19.0121],[-14.203,-12.7702,17.7209],[-14.5862,-10.6661,18.1751],[-14.203,-12.7702,17.7209],[-13.3927,-11.8896,19.0121],[-13.3012,-8.8596,19.6992],[-14.1969,-8.95973,18.884],[-13.5615,-10.1361,19.5014],[-14.1969,-8.95973,18.884],[-13.3012,-8.8596,19.6992],[-13.265,-7.6572,19.0524],[-14.1969,-8.95973,18.884],[-14.3658,-7.86067,18.0351],[-14.9015,-9.09578,17.8522],[-15.1814,-9.31169,15.4917],[-14.7044,-8.95002,14.18],[-15.0881,-10.4001,14.2674],[-15.0881,-10.4001,14.2674],[-14.7044,-8.95002,14.18],[-14.443,-9.90559,13.0734],[-14.5195,-11.4533,12.9386],[-15.0881,-10.4001,14.2674],[-14.443,-9.90559,13.0734],[-14.7044,-8.95002,14.18],[-14.0934,-8.81786,13.1766],[-14.443,-9.90559,13.0734],[-13.5302,-9.3923,12.2543],[-14.443,-9.90559,13.0734],[-14.0934,-8.81786,13.1766],[-13.1734,-8.25006,12.7653],[-13.5302,-9.3923,12.2543],[-14.0934,-8.81786,13.1766],[-13.9185,-7.91731,13.9078],[-13.1734,-8.25006,12.7653],[-14.0934,-8.81786,13.1766],[-13.1734,-8.25006,12.7653],[-13.9185,-7.91731,13.9078],[-12.7926,-7.2372,13.5509],[-11.7158,-7.72129,12.2977],[-13.1734,-8.25006,12.7653],[-12.7926,-7.2372,13.5509],[-11.564,-6.70549,13.3779],[-11.7158,-7.72129,12.2977],[-12.7926,-7.2372,13.5509],[-12.7926,-7.2372,13.5509],[-12.3184,-6.37918,14.568],[-11.564,-6.70549,13.3779],[-12.3184,-6.37918,14.568],[-11.2492,-6.14802,14.1027],[-11.564,-6.70549,13.3779],[-11.564,-6.70549,13.3779],[-11.2492,-6.14802,14.1027],[-10.4513,-6.35288,13.4066],[-10.4743,-7.01162,12.4454],[-11.564,-6.70549,13.3779],[-10.4513,-6.35288,13.4066],[-10.3578,-5.93662,14.3679],[-10.4513,-6.35288,13.4066],[-11.2492,-6.14802,14.1027],[-10.3578,-5.93662,14.3679],[-11.2492,-6.14802,14.1027],[-11.3083,-5.90155,14.8737],[-11.3083,-5.90155,14.8737],[-10.4667,-5.75312,15.5809],[-10.3578,-5.93662,14.3679],[-10.3578,-5.93662,14.3679],[-10.4667,-5.75312,15.5809],[-9.2922,-5.91028,14.6869],[-10.3578,-5.93662,14.3679],[-9.2922,-5.91028,14.6869],[-9.31933,-6.22665,13.6277],[-11.9451,-5.94187,15.7946],[-10.4667,-5.75312,15.5809],[-11.3083,-5.90155,14.8737],[-11.9451,-5.94187,15.7946],[-11.3083,-5.90155,14.8737],[-12.3184,-6.37918,14.568],[-9.31933,-6.22665,13.6277],[-10.4513,-6.35288,13.4066],[-10.3578,-5.93662,14.3679],[-9.31933,-6.22665,13.6277],[-9.56516,-6.67014,12.6533],[-10.4513,-6.35288,13.4066],[-11.2492,-6.14802,14.1027],[-12.3184,-6.37918,14.568],[-11.3083,-5.90155,14.8737],[-12.7926,-7.2372,13.5509],[-13.4773,-7.05025,14.6076],[-12.3184,-6.37918,14.568],[-12.3184,-6.37918,14.568],[-13.4773,-7.05025,14.6076],[-13.281,-6.5884,15.7403],[-12.3525,-8.88204,11.6969],[-13.1734,-8.25006,12.7653],[-11.7158,-7.72129,12.2977],[-13.9185,-7.91731,13.9078],[-13.4773,-7.05025,14.6076],[-12.7926,-7.2372,13.5509],[-13.9185,-7.91731,13.9078],[-14.4081,-7.77668,15.3726],[-13.4773,-7.05025,14.6076],[-14.4081,-7.77668,15.3726],[-13.9185,-7.91731,13.9078],[-14.7044,-8.95002,14.18],[-13.5302,-9.3923,12.2543],[-13.1734,-8.25006,12.7653],[-12.3525,-8.88204,11.6969],[-13.5302,-9.3923,12.2543],[-12.3525,-8.88204,11.6969],[-12.7081,-10.1309,11.2634],[-13.5302,-9.3923,12.2543],[-12.7081,-10.1309,11.2634],[-13.7731,-10.6262,11.9736],[-11.5474,-9.46731,10.8546],[-12.7081,-10.1309,11.2634],[-12.3525,-8.88204,11.6969],[-12.3525,-8.88204,11.6969],[-11.0072,-8.65911,11.1136],[-11.5474,-9.46731,10.8546],[-10.3919,-9.51942,10.2786],[-11.5474,-9.46731,10.8546],[-11.0072,-8.65911,11.1136],[-10.3919,-9.51942,10.2786],[-11.1002,-10.2764,10.2807],[-11.5474,-9.46731,10.8546],[-10.3919,-9.51942,10.2786],[-9.82915,-10.3604,9.65269],[-11.1002,-10.2764,10.2807],[-10.3919,-9.51942,10.2786],[-9.16606,-9.6894,9.68779],[-9.82915,-10.3604,9.65269],[-9.16606,-9.6894,9.68779],[-10.3919,-9.51942,10.2786],[-9.6333,-8.77378,10.4501],[-14.443,-9.90559,13.0734],[-13.5302,-9.3923,12.2543],[-13.7731,-10.6262,11.9736],[-14.7044,-8.95002,14.18],[-13.9185,-7.91731,13.9078],[-14.0934,-8.81786,13.1766],[-14.4081,-7.77668,15.3726],[-14.7044,-8.95002,14.18],[-15.1814,-9.31169,15.4917],[-15.0636,-11.9287,16.4292],[-15.2425,-9.99273,16.7836],[-15.3653,-10.7489,15.5219],[-14.5212,-13.7231,16.3617],[-14.9176,-13.2988,15.3411],[-14.3183,-14.5567,15.0924],[-14.203,-12.7702,17.7209],[-14.5862,-10.6661,18.1751],[-15.0636,-11.9287,16.4292],[-14.5212,-13.7231,16.3617],[-14.3183,-14.5567,15.0924],[-13.8662,-14.9692,15.964],[-12.753,-15.876,15.971],[-13.8662,-14.9692,15.964],[-13.3094,-15.742,14.8582],[-12.8801,-13.7071,18.3082],[-14.203,-12.7702,17.7209],[-13.6142,-14.3605,17.1502],[-12.8801,-13.7071,18.3082],[-11.2232,-14.5056,18.3192],[-11.8525,-12.7894,19.2577],[-11.2232,-14.5056,18.3192],[-10.1113,-13.4615,18.956],[-11.8525,-12.7894,19.2577],[-10.4288,-15.9501,17.0574],[-12.15,-15.3142,17.2767],[-11.3186,-16.5436,15.9663],[-9.57312,-16.9819,15.5016],[-10.4288,-15.9501,17.0574],[-11.3186,-16.5436,15.9663],[-10.4288,-15.9501,17.0574],[-9.57312,-16.9819,15.5016],[-8.59495,-16.1956,16.5798],[-11.2232,-14.5056,18.3192],[-9.45561,-15.0222,17.902],[-10.1113,-13.4615,18.956],[-8.96221,-12.2982,19.0933],[-8.37401,-13.9287,18.2244],[-7.12069,-12.6325,18.0068],[-8.96221,-12.2982,19.0933],[-7.12069,-12.6325,18.0068],[-8.11574,-10.9749,18.9336],[-10.1113,-13.4615,18.956],[-10.6572,-11.7334,19.7056],[-11.8525,-12.7894,19.2577],[-9.57196,-10.8699,19.6576],[-8.96221,-12.2982,19.0933],[-8.11574,-10.9749,18.9336],[-11.0181,-9.86336,19.9886],[-12.2775,-11.0098,19.8416],[-10.6572,-11.7334,19.7056],[-11.0181,-9.86336,19.9886],[-12.1319,-8.44568,19.8307],[-12.5601,-9.60649,20.0398],[-13.3012,-8.8596,19.6992],[-12.1319,-8.44568,19.8307],[-13.265,-7.6572,19.0524],[-12.5565,-6.62139,18.4238],[-11.6893,-7.19113,19.1553],[-11.1143,-6.28337,17.9848],[-14.3658,-7.86067,18.0351],[-14.1969,-8.95973,18.884],[-13.265,-7.6572,19.0524],[-14.3658,-7.86067,18.0351],[-14.9255,-8.40741,16.793],[-14.9015,-9.09578,17.8522],[-14.4081,-7.77668,15.3726],[-15.1814,-9.31169,15.4917],[-14.9255,-8.40741,16.793],[-14.4081,-7.77668,15.3726],[-13.281,-6.5884,15.7403],[-13.4773,-7.05025,14.6076],[-14.0487,-7.11082,16.9026],[-13.5475,-6.88252,18.0243],[-12.6492,-6.24838,17.1583],[-12.3184,-6.37918,14.568],[-13.281,-6.5884,15.7403],[-11.9451,-5.94187,15.7946],[-12.5565,-6.62139,18.4238],[-11.1143,-6.28337,17.9848],[-12.6492,-6.24838,17.1583],[-9.93043,-5.93967,16.8285],[-11.1143,-6.28337,17.9848],[-9.36435,-6.64663,17.8898],[-11.9451,-5.94187,15.7946],[-11.2601,-5.82037,16.726],[-10.4667,-5.75312,15.5809],[-9.2922,-5.91028,14.6869],[-10.4667,-5.75312,15.5809],[-9.09584,-5.91531,15.6912],[-9.31933,-6.22665,13.6277],[-9.2922,-5.91028,14.6869],[-8.3316,-6.21055,14.0624],[-7.44973,-6.48361,14.2782],[-8.28726,-6.10382,14.7995],[-7.54272,-6.50127,15.2821],[-7.54272,-6.50127,15.2821],[-6.57614,-6.9651,14.6203],[-7.44973,-6.48361,14.2782],[-6.6173,-7.41956,15.7827],[-6.57614,-6.9651,14.6203],[-7.54272,-6.50127,15.2821],[-8.3316,-6.21055,14.0624],[-7.40613,-6.76819,13.0438],[-9.31933,-6.22665,13.6277],[-8.34447,-6.94287,12.188],[-9.31933,-6.22665,13.6277],[-7.40613,-6.76819,13.0438],[-6.57614,-6.9651,14.6203],[-6.17562,-7.16555,13.5373],[-7.44973,-6.48361,14.2782],[-6.17562,-7.16555,13.5373],[-6.57614,-6.9651,14.6203],[-5.4602,-7.66386,14.1736],[-6.17562,-7.16555,13.5373],[-5.4602,-7.66386,14.1736],[-4.77881,-7.86096,13.1206],[-4.77881,-7.86096,13.1206],[-4.68985,-7.90733,11.9011],[-6.17562,-7.16555,13.5373],[-4.77881,-7.86096,13.1206],[-3.6306,-8.38013,12.4169],[-4.68985,-7.90733,11.9011],[-4.68985,-7.90733,11.9011],[-6.13944,-7.32477,12.2477],[-6.17562,-7.16555,13.5373],[-6.13944,-7.32477,12.2477],[-4.68985,-7.90733,11.9011],[-5.12964,-7.95128,10.9815],[-4.68985,-7.90733,11.9011],[-3.75816,-8.30073,10.8395],[-5.12964,-7.95128,10.9815],[-5.12964,-7.95128,10.9815],[-5.42197,-8.40553,9.8911],[-6.63753,-7.81592,10.7809],[-6.63753,-7.81592,10.7809],[-5.42197,-8.40553,9.8911],[-7.54985,-8.28634,10.2606],[-7.91678,-7.54452,11.1929],[-6.63753,-7.81592,10.7809],[-7.54985,-8.28634,10.2606],[-7.40613,-6.76819,13.0438],[-7.30261,-7.19977,11.8682],[-8.34447,-6.94287,12.188],[-9.56516,-6.67014,12.6533],[-9.31933,-6.22665,13.6277],[-8.34447,-6.94287,12.188],[-10.4743,-7.01162,12.4454],[-10.4513,-6.35288,13.4066],[-9.56516,-6.67014,12.6533],[-11.564,-6.70549,13.3779],[-10.4743,-7.01162,12.4454],[-11.7158,-7.72129,12.2977],[-12.3525,-8.88204,11.6969],[-11.7158,-7.72129,12.2977],[-11.0072,-8.65911,11.1136],[-9.6333,-8.77378,10.4501],[-10.3919,-9.51942,10.2786],[-11.0072,-8.65911,11.1136],[-8.76342,-8.08413,10.7407],[-10.1601,-7.86407,11.4151],[-9.20392,-7.28038,11.7257],[-7.54985,-8.28634,10.2606],[-8.76342,-8.08413,10.7407],[-7.91678,-7.54452,11.1929],[-7.54985,-8.28634,10.2606],[-5.52261,-9.39998,8.57552],[-7.21521,-9.20503,9.26519],[-8.14761,-9.81917,9.21218],[-7.21521,-9.20503,9.26519],[-5.66553,-10.2825,7.97884],[-9.6333,-8.77378,10.4501],[-8.35263,-8.97044,9.84928],[-9.16606,-9.6894,9.68779],[-9.82915,-10.3604,9.65269],[-9.16606,-9.6894,9.68779],[-8.74842,-10.6597,9.08587],[-8.14761,-9.81917,9.21218],[-5.66553,-10.2825,7.97884],[-7.07843,-10.6674,8.34378],[-5.66553,-10.2825,7.97884],[-5.53276,-11.7234,7.42371],[-7.07843,-10.6674,8.34378],[-5.53276,-11.7234,7.42371],[-5.8727,-13.7636,7.45748],[-8.05381,-12.1278,8.42343],[-5.8727,-13.7636,7.45748],[-5.53276,-11.7234,7.42371],[-3.83066,-13.2472,6.54108],[-5.8727,-13.7636,7.45748],[-3.83066,-13.2472,6.54108],[-3.78073,-15.1441,6.77057],[-3.78073,-15.1441,6.77057],[-6.32706,-15.4869,8.14258],[-5.8727,-13.7636,7.45748],[-8.13976,-14.5313,8.59279],[-5.8727,-13.7636,7.45748],[-6.32706,-15.4869,8.14258],[-8.13976,-14.5313,8.59279],[-6.32706,-15.4869,8.14258],[-8.40316,-15.5925,9.15575],[-8.40316,-15.5925,9.15575],[-10.2138,-14.7732,9.62774],[-8.13976,-14.5313,8.59279],[-8.13976,-14.5313,8.59279],[-10.2138,-14.7732,9.62774],[-11.213,-13.6505,9.91089],[-9.90427,-12.8438,9.21878],[-8.13976,-14.5313,8.59279],[-11.213,-13.6505,9.91089],[-10.2138,-14.7732,9.62774],[-11.6242,-14.5876,10.3799],[-11.213,-13.6505,9.91089],[-11.6242,-14.5876,10.3799],[-12.2906,-13.4616,10.5975],[-11.213,-13.6505,9.91089],[-11.213,-13.6505,9.91089],[-12.2906,-13.4616,10.5975],[-11.3984,-12.5109,9.98425],[-12.2906,-13.4616,10.5975],[-12.7797,-12.2273,10.8491],[-11.3984,-12.5109,9.98425],[-12.2906,-13.4616,10.5975],[-13.5135,-13.1003,11.7024],[-12.7797,-12.2273,10.8491],[-12.7315,-14.4642,11.3228],[-13.5135,-13.1003,11.7024],[-12.2906,-13.4616,10.5975],[-13.5135,-13.1003,11.7024],[-12.7315,-14.4642,11.3228],[-13.7746,-14.2769,12.6358],[-13.7746,-14.2769,12.6358],[-12.7315,-14.4642,11.3228],[-12.5864,-15.5661,12.2162],[-12.7315,-14.4642,11.3228],[-11.849,-15.3611,10.9707],[-12.5864,-15.5661,12.2162],[-12.5864,-15.5661,12.2162],[-11.849,-15.3611,10.9707],[-10.902,-16.2029,11.0073],[-11.1,-16.76,12.194],[-12.5864,-15.5661,12.2162],[-10.902,-16.2029,11.0073],[-11.1,-16.76,12.194],[-10.902,-16.2029,11.0073],[-9.8023,-16.9511,11.263],[-10.902,-16.2029,11.0073],[-9.65189,-16.266,10.2467],[-9.8023,-16.9511,11.263],[-9.8023,-16.9511,11.263],[-9.65189,-16.266,10.2467],[-7.69001,-16.6849,9.86686],[-8.56772,-17.5048,11.9422],[-9.8023,-16.9511,11.263],[-7.69001,-16.6849,9.86686],[-9.86725,-17.3917,12.3865],[-9.8023,-16.9511,11.263],[-8.56772,-17.5048,11.9422],[-9.65189,-16.266,10.2467],[-8.40316,-15.5925,9.15575],[-7.69001,-16.6849,9.86686],[-8.40316,-15.5925,9.15575],[-9.65189,-16.266,10.2467],[-10.9825,-15.4979,10.3866],[-9.65189,-16.266,10.2467],[-10.902,-16.2029,11.0073],[-10.9825,-15.4979,10.3866],[-11.849,-15.3611,10.9707],[-10.9825,-15.4979,10.3866],[-10.902,-16.2029,11.0073],[-11.849,-15.3611,10.9707],[-11.6242,-14.5876,10.3799],[-10.9825,-15.4979,10.3866],[-11.849,-15.3611,10.9707],[-12.7315,-14.4642,11.3228],[-11.6242,-14.5876,10.3799],[-12.2906,-13.4616,10.5975],[-11.6242,-14.5876,10.3799],[-12.7315,-14.4642,11.3228],[-10.2138,-14.7732,9.62774],[-10.9825,-15.4979,10.3866],[-11.6242,-14.5876,10.3799],[-8.40316,-15.5925,9.15575],[-10.9825,-15.4979,10.3866],[-10.2138,-14.7732,9.62774],[-7.69001,-16.6849,9.86686],[-8.40316,-15.5925,9.15575],[-6.32706,-15.4869,8.14258],[-3.31656,-16.5914,7.52721],[-7.69001,-16.6849,9.86686],[-6.32706,-15.4869,8.14258],[-7.69001,-16.6849,9.86686],[-3.31656,-16.5914,7.52721],[-3.28356,-17.7154,9.27991],[-1.35105,-17.571,7.80134],[-3.28356,-17.7154,9.27991],[-3.31656,-16.5914,7.52721],[-3.31656,-16.5914,7.52721],[-1.63177,-16.278,6.40322],[-1.35105,-17.571,7.80134],[1.82633,-17.2804,6.19502],[-1.35105,-17.571,7.80134],[-1.63177,-16.278,6.40322],[0.130829,-15.979,5.42885],[1.82633,-17.2804,6.19502],[-1.63177,-16.278,6.40322],[-1.64345,-14.8924,5.72482],[0.130829,-15.979,5.42885],[-1.63177,-16.278,6.40322],[-1.63177,-16.278,6.40322],[-3.78073,-15.1441,6.77057],[-1.64345,-14.8924,5.72482],[-1.64345,-14.8924,5.72482],[2.71996,-14.9607,4.17098],[0.130829,-15.979,5.42885],[2.71996,-14.9607,4.17098],[5.24903,-16.1719,4.25246],[0.130829,-15.979,5.42885],[-1.64345,-14.8924,5.72482],[1.5216,-13.4924,4.31643],[2.71996,-14.9607,4.17098],[3.45706,-13.9298,3.6646],[2.71996,-14.9607,4.17098],[1.5216,-13.4924,4.31643],[2.68876,-13.0725,3.86471],[3.45706,-13.9298,3.6646],[1.5216,-13.4924,4.31643],[2.68876,-13.0725,3.86471],[1.5216,-13.4924,4.31643],[1.94713,-12.2398,4.37897],[2.68876,-13.0725,3.86471],[1.94713,-12.2398,4.37897],[4.50151,-12.6134,3.47491],[5.14074,-13.4242,3.27535],[2.68876,-13.0725,3.86471],[4.50151,-12.6134,3.47491],[5.60277,-12.554,3.25118],[5.14074,-13.4242,3.27535],[4.50151,-12.6134,3.47491],[5.49955,-11.7225,3.56582],[5.60277,-12.554,3.25118],[4.50151,-12.6134,3.47491],[5.60277,-12.554,3.25118],[5.49955,-11.7225,3.56582],[6.57157,-11.9136,3.23872],[5.60277,-12.554,3.25118],[6.57157,-11.9136,3.23872],[6.64184,-13.0944,3.05211],[5.49955,-11.7225,3.56582],[6.38282,-11.026,3.737],[6.57157,-11.9136,3.23872],[6.64184,-13.0944,3.05211],[5.14074,-13.4242,3.27535],[5.60277,-12.554,3.25118],[6.19701,-14.635,3.32494],[5.14074,-13.4242,3.27535],[6.64184,-13.0944,3.05211],[5.14074,-13.4242,3.27535],[6.19701,-14.635,3.32494],[3.45706,-13.9298,3.6646],[1.94713,-12.2398,4.37897],[5.49955,-11.7225,3.56582],[4.50151,-12.6134,3.47491],[5.14074,-13.4242,3.27535],[3.45706,-13.9298,3.6646],[2.68876,-13.0725,3.86471],[2.71996,-14.9607,4.17098],[3.45706,-13.9298,3.6646],[6.19701,-14.635,3.32494],[-3.83066,-13.2472,6.54108],[1.5216,-13.4924,4.31643],[-1.64345,-14.8924,5.72482],[1.5216,-13.4924,4.31643],[-3.83066,-13.2472,6.54108],[0.0337937,-12.0032,5.14925],[-3.31656,-16.5914,7.52721],[-3.78073,-15.1441,6.77057],[-1.63177,-16.278,6.40322],[-1.35105,-17.571,7.80134],[-0.854928,-18.1762,9.2508],[-3.28356,-17.7154,9.27991],[-1.35105,-17.571,7.80134],[1.14965,-18.1445,7.85991],[-0.854928,-18.1762,9.2508],[-5.8727,-13.7636,7.45748],[-8.13976,-14.5313,8.59279],[-9.90427,-12.8438,9.21878],[-6.32706,-15.4869,8.14258],[-3.78073,-15.1441,6.77057],[-3.31656,-16.5914,7.52721],[-3.78073,-15.1441,6.77057],[-3.83066,-13.2472,6.54108],[-1.64345,-14.8924,5.72482],[-3.83066,-13.2472,6.54108],[-5.53276,-11.7234,7.42371],[-3.10673,-11.2128,6.60789],[-9.68704,-11.6132,9.25363],[-9.82915,-10.3604,9.65269],[-8.74842,-10.6597,9.08587],[-8.05381,-12.1278,8.42343],[-5.8727,-13.7636,7.45748],[-9.90427,-12.8438,9.21878],[-9.90427,-12.8438,9.21878],[-11.213,-13.6505,9.91089],[-11.3984,-12.5109,9.98425],[-9.82915,-10.3604,9.65269],[-9.68704,-11.6132,9.25363],[-11.1002,-10.2764,10.2807],[-11.1002,-10.2764,10.2807],[-12.7081,-10.1309,11.2634],[-11.5474,-9.46731,10.8546],[-12.2972,-11.2619,10.6365],[-11.3984,-12.5109,9.98425],[-12.7797,-12.2273,10.8491],[-13.7731,-10.6262,11.9736],[-12.7081,-10.1309,11.2634],[-13.1174,-11.1973,11.1758],[-14.5195,-11.4533,12.9386],[-14.443,-9.90559,13.0734],[-13.7731,-10.6262,11.9736],[-13.5135,-13.1003,11.7024],[-13.6563,-11.7405,11.6381],[-12.7797,-12.2273,10.8491],[-14.5195,-11.4533,12.9386],[-15.0724,-12.1343,14.5314],[-15.0881,-10.4001,14.2674],[-14.5746,-13.8107,14.0594],[-14.9176,-13.2988,15.3411],[-15.0724,-12.1343,14.5314],[-13.5135,-13.1003,11.7024],[-13.7746,-14.2769,12.6358],[-14.4881,-13.006,13.1273],[-13.6599,-15.1675,13.707],[-13.7746,-14.2769,12.6358],[-12.5864,-15.5661,12.2162],[-14.9176,-13.2988,15.3411],[-14.5746,-13.8107,14.0594],[-14.3183,-14.5567,15.0924],[-13.8662,-14.9692,15.964],[-14.3183,-14.5567,15.0924],[-13.3094,-15.742,14.8582],[-13.6599,-15.1675,13.707],[-12.5864,-15.5661,12.2162],[-12.3633,-16.3454,13.498],[-11.9693,-16.6835,14.7549],[-12.753,-15.876,15.971],[-13.3094,-15.742,14.8582],[-12.3633,-16.3454,13.498],[-12.5864,-15.5661,12.2162],[-11.1,-16.76,12.194],[-11.1,-16.76,12.194],[-9.8023,-16.9511,11.263],[-9.86725,-17.3917,12.3865],[-11.9693,-16.6835,14.7549],[-10.8654,-17.1951,13.4785],[-10.592,-17.2283,14.6737],[-11.3186,-16.5436,15.9663],[-10.592,-17.2283,14.6737],[-9.57312,-16.9819,15.5016],[-8.59495,-16.1956,16.5798],[-9.57312,-16.9819,15.5016],[-7.41731,-17.0384,14.8143],[-7.41731,-17.0384,14.8143],[-7.20493,-17.719,13.0414],[-4.91023,-17.5748,12.8664],[-8.56772,-17.5048,11.9422],[-9.11102,-17.5398,13.6303],[-9.86725,-17.3917,12.3865],[-7.69001,-16.6849,9.86686],[-3.28356,-17.7154,9.27991],[-8.56772,-17.5048,11.9422],[-7.20493,-17.719,13.0414],[-4.50777,-17.9485,11.1768],[-4.91023,-17.5748,12.8664],[-4.91023,-17.5748,12.8664],[-1.22323,-17.4696,11.856],[-4.80785,-16.2298,14.6985],[-0.854928,-18.1762,9.2508],[-2.36121,-18.0451,10.6573],[-3.28356,-17.7154,9.27991],[-1.22323,-17.4696,11.856],[-0.607133,-18.0977,10.5677],[0.858281,-17.8027,10.9784],[0.189513,-16.5338,12.5099],[-1.22323,-17.4696,11.856],[0.858281,-17.8027,10.9784],[5.04031,-16.5453,11.7768],[2.87445,-17.7939,10.7168],[6.72574,-17.3934,10.9265],[6.72574,-17.3934,10.9265],[2.87445,-17.7939,10.7168],[5.47973,-18.2084,9.82318],[0.189513,-16.5338,12.5099],[2.59558,-15.3755,12.7152],[-0.0474019,-14.8152,13.4624],[1.55224,-14.3489,13.1909],[-0.0474019,-14.8152,13.4624],[2.59558,-15.3755,12.7152],[2.59558,-15.3755,12.7152],[3.34257,-13.975,12.7947],[1.55224,-14.3489,13.1909],[5.04031,-16.5453,11.7768],[6.72574,-17.3934,10.9265],[6.9613,-16.4149,11.7563],[2.59558,-15.3755,12.7152],[5.37793,-15.0144,12.3546],[3.34257,-13.975,12.7947],[0.435617,-13.1819,13.4672],[1.55224,-14.3489,13.1909],[3.34257,-13.975,12.7947],[1.55224,-14.3489,13.1909],[0.435617,-13.1819,13.4672],[-0.0474019,-14.8152,13.4624],[-1.83429,-16.1154,13.544],[-0.0474019,-14.8152,13.4624],[-3.63122,-14.8058,14.9907],[-5.49519,-15.0252,16.0651],[-3.63122,-14.8058,14.9907],[-5.79402,-13.4227,16.9193],[-7.12069,-12.6325,18.0068],[-5.79402,-13.4227,16.9193],[-5.69409,-12.1357,17.1245],[-7.12069,-12.6325,18.0068],[-5.69409,-12.1357,17.1245],[-6.60845,-10.9635,17.9019],[-2.8362,-11.8829,14.8612],[-4.13453,-12.7572,15.8851],[-2.0602,-13.4749,14.6046],[-2.8362,-11.8829,14.8612],[-0.53107,-11.567,13.4233],[-4.29565,-9.9303,15.3802],[-6.60845,-10.9635,17.9019],[-5.69409,-12.1357,17.1245],[-5.3337,-10.7882,16.7319],[-7.12069,-12.6325,18.0068],[-6.60845,-10.9635,17.9019],[-8.11574,-10.9749,18.9336],[-8.11574,-10.9749,18.9336],[-9.21754,-9.53699,19.4495],[-9.57196,-10.8699,19.6576],[-8.80582,-8.01623,18.7322],[-10.4973,-8.22233,19.5652],[-9.21754,-9.53699,19.4495],[-6.36517,-9.78423,17.5783],[-7.36773,-8.61025,18.0404],[-7.63787,-9.58344,18.5666],[-8.80582,-8.01623,18.7322],[-9.36435,-6.64663,17.8898],[-10.2472,-7.08912,18.855],[-9.93043,-5.93967,16.8285],[-9.36435,-6.64663,17.8898],[-8.50223,-6.38529,16.6404],[-8.50223,-6.38529,16.6404],[-6.6173,-7.41956,15.7827],[-7.54272,-6.50127,15.2821],[-5.46788,-9.24615,16.2339],[-8.03969,-7.26088,17.5461],[-7.36773,-8.61025,18.0404],[-5.46788,-9.24615,16.2339],[-4.29565,-9.9303,15.3802],[-4.75212,-8.68176,14.8651],[-6.6173,-7.41956,15.7827],[-5.4602,-7.66386,14.1736],[-6.57614,-6.9651,14.6203],[-4.77881,-7.86096,13.1206],[-5.4602,-7.66386,14.1736],[-4.17433,-8.44228,13.6337],[-2.81319,-9.54269,13.6567],[-4.75212,-8.68176,14.8651],[-4.29565,-9.9303,15.3802],[-0.757691,-10.2778,12.7524],[-2.14355,-9.16534,12.0937],[-2.81319,-9.54269,13.6567],[-3.6306,-8.38013,12.4169],[-4.77881,-7.86096,13.1206],[-4.17433,-8.44228,13.6337],[-2.55098,-8.71654,11.2024],[-4.68985,-7.90733,11.9011],[-3.6306,-8.38013,12.4169],[-2.55098,-8.71654,11.2024],[-3.75816,-8.30073,10.8395],[-4.68985,-7.90733,11.9011],[-3.86315,-8.47,10.0095],[-5.12964,-7.95128,10.9815],[-3.75816,-8.30073,10.8395],[-5.12964,-7.95128,10.9815],[-3.86315,-8.47,10.0095],[-5.42197,-8.40553,9.8911],[-2.76818,-9.42681,7.9752],[-3.87541,-9.34962,8.24855],[-2.94375,-8.97871,8.90061],[-5.42197,-8.40553,9.8911],[-5.52261,-9.39998,8.57552],[-7.54985,-8.28634,10.2606],[-5.52261,-9.39998,8.57552],[-5.66553,-10.2825,7.97884],[-7.21521,-9.20503,9.26519],[-4.42207,-10.606,7.30332],[-5.53276,-11.7234,7.42371],[-5.66553,-10.2825,7.97884],[-4.66088,-9.84982,7.85803],[-3.87541,-9.34962,8.24855],[-3.66801,-9.99436,7.50258],[-5.53276,-11.7234,7.42371],[-4.42207,-10.606,7.30332],[-3.10673,-11.2128,6.60789],[-3.66801,-9.99436,7.50258],[-1.11457,-9.95206,6.95271],[-0.446404,-10.7474,5.98485],[-0.446404,-10.7474,5.98485],[-1.11457,-9.95206,6.95271],[0.0317469,-10.0635,6.59487],[0.0337937,-12.0032,5.14925],[-3.83066,-13.2472,6.54108],[-3.10673,-11.2128,6.60789],[1.5216,-13.4924,4.31643],[0.0337937,-12.0032,5.14925],[1.94713,-12.2398,4.37897],[5.49955,-11.7225,3.56582],[1.94713,-12.2398,4.37897],[3.04533,-11.0351,4.67602],[5.49955,-11.7225,3.56582],[3.04533,-11.0351,4.67602],[5.32046,-10.8759,4.10255],[3.04533,-11.0351,4.67602],[2.1422,-10.565,5.33695],[3.37709,-10.3661,5.19484],[4.60801,-10.3117,4.88064],[3.04533,-11.0351,4.67602],[3.37709,-10.3661,5.19484],[2.1422,-10.565,5.33695],[2.77928,-10.147,5.69058],[3.37709,-10.3661,5.19484],[3.37709,-10.3661,5.19484],[2.77928,-10.147,5.69058],[3.72151,-9.97298,5.76436],[2.95537,-9.86174,6.27317],[3.72151,-9.97298,5.76436],[2.77928,-10.147,5.69058],[1.71004,-10.1113,6.07716],[2.95537,-9.86174,6.27317],[2.77928,-10.147,5.69058],[1.2107,-11.2088,5.0962],[-0.446404,-10.7474,5.98485],[0.77192,-10.5064,5.79389],[2.1422,-10.565,5.33695],[1.71004,-10.1113,6.07716],[2.77928,-10.147,5.69058],[0.77192,-10.5064,5.79389],[-0.446404,-10.7474,5.98485],[0.0317469,-10.0635,6.59487],[0.0317469,-10.0635,6.59487],[-1.11457,-9.95206,6.95271],[-0.320089,-9.64394,7.47793],[-1.82909,-9.21723,8.37607],[0.404622,-9.45583,8.40648],[-0.320089,-9.64394,7.47793],[1.71004,-10.1113,6.07716],[0.649071,-9.72653,7.21821],[2.95537,-9.86174,6.27317],[2.95537,-9.86174,6.27317],[4.20739,-9.57511,6.80609],[3.72151,-9.97298,5.76436],[3.98384,-9.42773,8.62176],[5.23184,-9.60988,9.19834],[4.82522,-9.39396,7.93673],[3.98384,-9.42773,8.62176],[2.77067,-9.47074,9.06959],[5.23184,-9.60988,9.19834],[2.01414,-9.60642,7.3476],[0.404622,-9.45583,8.40648],[3.44688,-9.45035,7.98175],[0.404622,-9.45583,8.40648],[-2.76004,-8.69315,10.185],[-1.07336,-9.17026,10.6517],[-2.14355,-9.16534,12.0937],[0.872834,-10.2931,11.799],[-1.07336,-9.17026,10.6517],[1.10177,-11.0815,12.5287],[2.98132,-10.8724,11.7397],[0.872834,-10.2931,11.799],[2.98132,-10.8724,11.7397],[5.56053,-11.3925,11.6927],[5.28103,-10.3594,10.632],[2.77067,-9.47074,9.06959],[3.80882,-10.0305,10.3162],[5.23184,-9.60988,9.19834],[6.00468,-9.30659,7.89667],[5.23184,-9.60988,9.19834],[7.76581,-9.26041,8.61847],[9.29289,-8.81624,7.36521],[6.00468,-9.30659,7.89667],[7.76581,-9.26041,8.61847],[9.4364,-9.10526,9.01284],[9.61921,-9.58785,10.111],[11.0507,-8.83441,9.7547],[13.2479,-6.90737,9.40044],[12.3512,-7.86659,9.47388],[13.0377,-7.40035,10.2577],[14.0104,-5.37421,10.4461],[13.8077,-6.02135,9.44374],[13.5688,-6.47648,10.3803],[13.6383,-6.35127,8.39638],[12.8168,-7.25077,8.49015],[13.2479,-6.90737,9.40044],[13.8077,-6.02135,9.44374],[14.0104,-5.37421,10.4461],[14.1156,-5.34231,9.61698],[14.1156,-5.34231,9.61698],[14.0104,-5.37421,10.4461],[14.4126,-4.58516,9.62488],[14.0104,-5.37421,10.4461],[14.3036,-4.37917,10.5344],[14.4126,-4.58516,9.62488],[14.5736,-4.63343,8.73318],[14.2206,-5.4154,8.45676],[14.1659,-5.37824,9.026],[14.5736,-4.63343,8.73318],[14.4014,-5.3375,7.6929],[14.2206,-5.4154,8.45676],[15.4285,-3.76957,7.41853],[14.8805,-5.11203,6.62375],[14.9432,-4.31892,7.88074],[15.4285,-3.76957,7.41853],[16.2141,-3.28301,6.69804],[14.8805,-5.11203,6.62375],[15.4285,-3.76957,7.41853],[15.8153,-2.81935,7.83026],[16.2141,-3.28301,6.69804],[16.2141,-3.28301,6.69804],[15.8153,-2.81935,7.83026],[16.2579,-2.34704,7.60648],[14.4014,-5.3375,7.6929],[13.7456,-6.40495,6.999],[13.6383,-6.35127,8.39638],[13.7456,-6.40495,6.999],[12.6017,-7.4629,7.01474],[13.0715,-7.03229,7.70785],[11.9835,-7.89168,6.4069],[11.8793,-7.9216,7.22272],[12.6017,-7.4629,7.01474],[12.9455,-7.33188,6.11745],[13.8851,-6.74306,5.62038],[13.2071,-7.48188,5.16391],[13.2071,-7.48188,5.16391],[14.064,-7.28788,4.34814],[12.7634,-8.1634,4.21871],[14.064,-7.28788,4.34814],[13.3706,-8.52428,3.39431],[12.7634,-8.1634,4.21871],[11.1184,-8.35806,5.81749],[12.1372,-7.94315,5.60955],[11.3447,-8.60604,4.74433],[11.9835,-7.89168,6.4069],[11.1184,-8.35806,5.81749],[11.0876,-8.27695,6.81508],[11.0876,-8.27695,6.81508],[9.29289,-8.81624,7.36521],[11.1848,-8.28541,8.19376],[10.0707,-8.63349,6.21682],[10.0738,-8.83235,5.2579],[8.78372,-8.98935,5.92746],[7.21865,-9.15877,6.60951],[6.00468,-9.30659,7.89667],[9.29289,-8.81624,7.36521],[8.76687,-9.32329,4.91049],[7.38854,-9.43854,5.40844],[8.78372,-8.98935,5.92746],[6.35103,-9.43198,5.92179],[5.69302,-9.3092,7.02628],[7.21865,-9.15877,6.60951],[7.38854,-9.43854,5.40844],[7.17713,-10.1939,4.30706],[6.17766,-9.86262,5.03484],[5.08847,-9.67655,5.83255],[4.20739,-9.57511,6.80609],[6.35103,-9.43198,5.92179],[4.20739,-9.57511,6.80609],[5.08847,-9.67655,5.83255],[3.72151,-9.97298,5.76436],[3.72151,-9.97298,5.76436],[4.60801,-10.3117,4.88064],[3.37709,-10.3661,5.19484],[3.04533,-11.0351,4.67602],[4.60801,-10.3117,4.88064],[5.32046,-10.8759,4.10255],[6.38282,-11.026,3.737],[5.49955,-11.7225,3.56582],[5.32046,-10.8759,4.10255],[6.05145,-10.4279,4.30175],[6.17766,-9.86262,5.03484],[7.17713,-10.1939,4.30706],[7.62601,-11.182,3.31823],[6.57157,-11.9136,3.23872],[6.38282,-11.026,3.737],[7.17713,-10.1939,4.30706],[10.4723,-9.28599,4.12235],[9.72462,-10.336,3.28324],[10.4723,-9.28599,4.12235],[10.9439,-9.8459,3.23752],[9.72462,-10.336,3.28324],[9.29584,-11.2705,2.79983],[9.72462,-10.336,3.28324],[10.545,-10.7929,2.72089],[6.57157,-11.9136,3.23872],[7.62601,-11.182,3.31823],[7.70406,-11.9817,2.93996],[6.64184,-13.0944,3.05211],[6.57157,-11.9136,3.23872],[7.70406,-11.9817,2.93996],[7.87,-14.47,2.97845],[6.19701,-14.635,3.32494],[6.64184,-13.0944,3.05211],[5.24903,-16.1719,4.25246],[2.71996,-14.9607,4.17098],[6.19701,-14.635,3.32494],[6.85857,-17.226,5.07549],[7.23059,-15.933,3.76815],[9.40589,-16.9848,4.50532],[0.130829,-15.979,5.42885],[5.24903,-16.1719,4.25246],[1.82633,-17.2804,6.19502],[6.85857,-17.226,5.07549],[8.13439,-18.1277,6.75988],[4.03118,-18.1455,7.21023],[-1.35105,-17.571,7.80134],[1.82633,-17.2804,6.19502],[1.14965,-18.1445,7.85991],[1.65718,-18.2563,9.35576],[-0.854928,-18.1762,9.2508],[1.14965,-18.1445,7.85991],[6.28959,-18.4027,8.36362],[4.03118,-18.1455,7.21023],[8.13439,-18.1277,6.75988],[5.47973,-18.2084,9.82318],[2.87445,-17.7939,10.7168],[1.65718,-18.2563,9.35576],[10.4362,-18.0138,7.8955],[6.28959,-18.4027,8.36362],[8.13439,-18.1277,6.75988],[10.4362,-18.0138,7.8955],[12.7102,-17.3047,9.72547],[9.74365,-17.6903,9.94721],[7.31254,-18.174,9.56523],[6.72574,-17.3934,10.9265],[5.47973,-18.2084,9.82318],[8.95426,-16.8413,11.2945],[6.9613,-16.4149,11.7563],[6.72574,-17.3934,10.9265],[10.9778,-16.9703,10.893],[9.74365,-17.6903,9.94721],[12.7102,-17.3047,9.72547],[12.7102,-17.3047,9.72547],[13.1295,-16.1955,11.2099],[10.9778,-16.9703,10.893],[12.7102,-17.3047,9.72547],[15.3893,-16.5385,10.0539],[13.1295,-16.1955,11.2099],[10.8401,-15.9121,11.7243],[10.9778,-16.9703,10.893],[13.1295,-16.1955,11.2099],[6.9613,-16.4149,11.7563],[8.95426,-16.8413,11.2945],[9.06249,-15.713,11.9347],[9.06249,-15.713,11.9347],[10.4233,-14.4944,12.2173],[8.10804,-14.3585,12.2846],[10.0328,-13.1882,12.2189],[8.10804,-14.3585,12.2846],[10.4233,-14.4944,12.2173],[12.9468,-14.4755,12.2549],[10.8401,-15.9121,11.7243],[13.1295,-16.1955,11.2099],[12.9468,-14.4755,12.2549],[13.1295,-16.1955,11.2099],[16.0981,-14.8894,11.8558],[11.8374,-13.0046,12.4333],[10.0328,-13.1882,12.2189],[10.4233,-14.4944,12.2173],[5.53927,-13.13,12.3526],[8.10804,-14.3585,12.2846],[10.0328,-13.1882,12.2189],[5.56053,-11.3925,11.6927],[3.00411,-12.101,12.5093],[5.53927,-13.13,12.3526],[5.56053,-11.3925,11.6927],[6.83451,-10.5549,10.8441],[5.28103,-10.3594,10.632],[7.74189,-9.79065,9.86335],[5.28103,-10.3594,10.632],[6.83451,-10.5549,10.8441],[9.4364,-9.10526,9.01284],[7.74189,-9.79065,9.86335],[9.61921,-9.58785,10.111],[9.61921,-9.58785,10.111],[11.1016,-9.57593,10.911],[11.0507,-8.83441,9.7547],[10.7742,-10.8451,11.769],[8.72326,-10.5201,10.9815],[8.64708,-11.8799,11.8994],[12.4355,-8.40207,10.8059],[11.1016,-9.57593,10.911],[12.5519,-9.59162,12.0819],[10.786,-12.0393,12.1591],[12.5031,-11.2834,12.536],[10.7742,-10.8451,11.769],[13.6511,-9.97207,13.2662],[13.7164,-8.7815,13.4166],[12.5519,-9.59162,12.0819],[12.5031,-11.2834,12.536],[13.9772,-12.3826,13.1158],[14.5363,-10.7561,13.9116],[13.6511,-9.97207,13.2662],[14.5444,-9.39398,14.5437],[13.7164,-8.7815,13.4166],[14.5444,-9.39398,14.5437],[15.5577,-10.2396,15.2051],[15.1598,-9.21798,15.8612],[15.7029,-11.5199,14.2831],[14.5363,-10.7561,13.9116],[13.9772,-12.3826,13.1158],[16.4205,-10.1516,16.279],[15.5577,-10.2396,15.2051],[16.5395,-10.874,15.3774],[17.4004,-10.6927,16.189],[16.4205,-10.1516,16.279],[16.5395,-10.874,15.3774],[18.4191,-10.9983,15.9771],[18.3122,-10.3439,17.0243],[17.4004,-10.6927,16.189],[19.3536,-10.6103,16.5311],[18.4191,-10.9983,15.9771],[19.4061,-11.477,15.0479],[18.1103,-13.0761,13.3878],[20.4515,-12.423,13.1147],[19.4061,-11.477,15.0479],[15.7029,-11.5199,14.2831],[15.8624,-13.0563,13.2967],[17.4959,-11.6146,14.9334],[12.9468,-14.4755,12.2549],[16.0981,-14.8894,11.8558],[15.8624,-13.0563,13.2967],[18.9933,-14.1668,11.8201],[20.4515,-12.423,13.1147],[18.1103,-13.0761,13.3878],[18.9933,-14.1668,11.8201],[17.9542,-15.5864,10.3203],[20.06,-14.6191,10.3641],[13.1295,-16.1955,11.2099],[15.3893,-16.5385,10.0539],[16.0981,-14.8894,11.8558],[17.3179,-16.4863,8.59714],[19.4424,-15.4705,8.9052],[17.9542,-15.5864,10.3203],[15.2244,-17.2359,8.2594],[15.3893,-16.5385,10.0539],[12.7102,-17.3047,9.72547],[17.3179,-16.4863,8.59714],[16.8112,-16.8107,6.94124],[18.9301,-15.7768,7.0764],[12.5061,-17.8732,6.64148],[14.4902,-17.5347,6.54182],[15.2244,-17.2359,8.2594],[13.2267,-17.4452,5.61087],[14.4902,-17.5347,6.54182],[12.5061,-17.8732,6.64148],[11.5617,-16.9306,4.52474],[16.4074,-15.7755,4.37642],[13.2267,-17.4452,5.61087],[16.0605,-16.8344,5.70998],[17.6517,-16.0621,5.56455],[16.8112,-16.8107,6.94124],[18.1256,-14.9836,4.33086],[19.3818,-15.003,5.47693],[17.6517,-16.0621,5.56455],[18.6846,-13.6312,3.51496],[19.5545,-14.1561,4.46619],[18.1256,-14.9836,4.33086],[17.5933,-12.5159,2.53384],[19.4413,-12.1875,3.1344],[18.6846,-13.6312,3.51496],[17.5933,-12.5159,2.53384],[15.1384,-13.7093,2.43266],[15.7009,-12.5241,2.02447],[14.3435,-15.0363,3.11567],[16.7116,-14.4155,3.25444],[16.4074,-15.7755,4.37642],[12.5213,-14.1672,2.45001],[14.3435,-15.0363,3.11567],[12.0906,-15.4368,3.13192],[15.7009,-12.5241,2.02447],[15.1384,-13.7093,2.43266],[14.2496,-12.7878,1.95183],[12.5213,-14.1672,2.45001],[11.1885,-13.0566,2.31034],[12.7981,-13.0148,2.02367],[15.7009,-12.5241,2.02447],[14.2496,-12.7878,1.95183],[15.0571,-11.7917,1.86091],[16.5197,-11.3814,2.00784],[15.0571,-11.7917,1.86091],[15.5065,-10.2125,2.07654],[15.5065,-10.2125,2.07654],[13.4674,-10.508,2.19419],[14.3102,-9.20942,2.56969],[13.4569,-11.9183,1.932],[12.7981,-13.0148,2.02367],[11.1885,-13.0566,2.31034],[9.13245,-11.9561,2.60881],[10.3339,-11.6924,2.44808],[11.1885,-13.0566,2.31034],[9.29584,-11.2705,2.79983],[10.545,-10.7929,2.72089],[10.3339,-11.6924,2.44808],[11.8389,-11.3091,2.28402],[12.4386,-9.80025,2.77573],[13.4674,-10.508,2.19419],[10.9439,-9.8459,3.23752],[10.545,-10.7929,2.72089],[9.72462,-10.336,3.28324],[11.8524,-9.02087,3.6825],[10.9439,-9.8459,3.23752],[10.4723,-9.28599,4.12235],[13.3706,-8.52428,3.39431],[11.8524,-9.02087,3.6825],[12.7634,-8.1634,4.21871],[14.3102,-9.20942,2.56969],[13.4674,-10.508,2.19419],[12.4386,-9.80025,2.77573],[13.3706,-8.52428,3.39431],[14.064,-7.28788,4.34814],[14.9791,-7.75738,3.24462],[15.5065,-10.2125,2.07654],[14.3102,-9.20942,2.56969],[16.304,-8.50406,2.49025],[18.1456,-8.391,2.50008],[17.2668,-9.92675,2.16346],[16.304,-8.50406,2.49025],[18.7265,-6.83492,2.94035],[17.479,-7.26981,2.72083],[17.7361,-5.96585,3.29892],[18.1456,-8.391,2.50008],[19.8568,-8.0102,3.05428],[19.0107,-9.87385,2.55006],[19.8568,-8.0102,3.05428],[21.3643,-8.32483,3.9873],[20.4097,-9.46536,3.19359],[22.4326,-7.62534,5.2433],[21.3643,-8.32483,3.9873],[21.7148,-6.5763,4.56774],[21.7148,-6.5763,4.56774],[22.4101,-5.83374,5.71522],[22.4326,-7.62534,5.2433],[22.4101,-5.83374,5.71522],[22.8874,-4.91798,6.90354],[23.159,-6.94583,6.71179],[23.8516,-6.92389,8.71464],[23.4773,-8.86764,7.36621],[23.159,-6.94583,6.71179],[23.8516,-6.92389,8.71464],[23.9971,-4.34019,10.0674],[24.2351,-5.9308,10.3667],[22.8293,-3.3684,7.75439],[23.4167,-2.66611,9.45123],[23.4644,-4.61233,8.352],[22.6615,-2.00572,8.46087],[23.4167,-2.66611,9.45123],[22.8293,-3.3684,7.75439],[24.0992,-2.68164,11.3815],[24.3693,-4.62207,11.7339],[23.9971,-4.34019,10.0674],[24.4637,-3.10709,12.7266],[24.0992,-2.68164,11.3815],[24.3757,-1.81422,12.9403],[24.5531,-1.34797,14.0372],[24.3757,-1.81422,12.9403],[24.2664,-0.643577,13.3672],[23.8836,-1.23985,11.5644],[23.7074,-0.316288,11.8638],[24.0591,-0.943483,12.3613],[23.9142,-0.0418923,12.6936],[23.979,0.7238,13.6118],[24.2664,-0.643577,13.3672],[24.0006,1.69636,14.5496],[24.4419,0.883531,15.2913],[23.979,0.7238,13.6118],[23.5583,2.28458,14.0187],[23.8349,2.68609,15.1265],[24.0006,1.69636,14.5496],[23.8349,2.68609,15.1265],[23.5583,2.28458,14.0187],[23.3695,3.0968,14.5458],[23.3695,3.0968,14.5458],[23.4581,3.69905,15.5048],[23.8349,2.68609,15.1265],[22.8151,4.83722,15.8413],[23.5953,4.27118,16.5387],[23.4581,3.69905,15.5048],[22.0652,4.27759,13.9419],[22.1,4.75835,14.6727],[22.7777,3.97989,14.6168],[22.1,4.75835,14.6727],[21.3974,4.74894,13.8434],[21.4456,5.35325,14.7427],[21.8676,5.67199,15.73],[22.4475,5.85957,16.7499],[22.8151,4.83722,15.8413],[22.8676,6.13242,17.778],[23.1097,5.39518,17.0579],[22.4475,5.85957,16.7499],[22.8676,6.13242,17.778],[23.4627,5.7477,18.3199],[23.1097,5.39518,17.0579],[23.6322,6.17163,19.4957],[24.2474,5.07222,19.4049],[23.4627,5.7477,18.3199],[23.7053,6.59296,20.5377],[24.1508,5.82651,20.388],[23.6322,6.17163,19.4957],[23.7053,6.59296,20.5377],[23.5297,7.21735,21.6394],[24.0882,6.36626,21.4354],[22.438,8.31792,21.8368],[23.4531,7.68047,22.9194],[23.5297,7.21735,21.6394],[21.6573,7.97579,19.5932],[21.25,8.77967,20.7874],[22.438,8.31792,21.8368],[22.9248,7.15628,19.9726],[23.0332,6.48243,18.712],[22.0209,7.01466,18.1529],[21.0176,7.32725,17.5592],[21.0225,7.8642,18.575],[22.0209,7.01466,18.1529],[21.6573,7.97579,19.5932],[20.3702,8.68774,19.6197],[21.25,8.77967,20.7874],[21.0176,7.32725,17.5592],[19.8002,8.11442,18.1444],[21.0225,7.8642,18.575],[20.3298,9.38548,21.0489],[20.3702,8.68774,19.6197],[19.2664,9.49117,20.3759],[19.4243,9.9815,21.5906],[20.3298,9.38548,21.0489],[19.2664,9.49117,20.3759],[19.6111,10.3173,22.7379],[19.4243,9.9815,21.5906],[18.5446,10.5379,22.2204],[17.9704,9.67311,19.9135],[17.1519,10.7997,21.5857],[18.4505,10.1168,21.1229],[18.5446,10.5379,22.2204],[17.8134,11.0768,23.0206],[18.843,10.7698,23.2372],[17.2348,11.6475,24.1393],[17.8134,11.0768,23.0206],[16.7212,11.4842,22.8424],[16.7212,11.4842,22.8424],[15.7456,11.7012,21.8613],[15.7416,12.2286,23.5129],[16.0487,10.9944,20.774],[15.293,11.5539,20.5525],[15.7456,11.7012,21.8613],[17.1519,10.7997,21.5857],[17.9704,9.67311,19.9135],[16.5861,10.2613,20.0267],[16.5861,10.2613,20.0267],[16.8309,9.51378,19.0402],[16.084,9.94725,18.9627],[16.8309,9.51378,19.0402],[16.4099,9.14261,18.1951],[16.084,9.94725,18.9627],[15.7084,10.7659,19.7502],[15.293,11.5539,20.5525],[16.0487,10.9944,20.774],[15.7456,11.7012,21.8613],[15.293,11.5539,20.5525],[14.8212,12.2577,21.2282],[15.7456,11.7012,21.8613],[14.8212,12.2577,21.2282],[14.6964,12.6545,22.3189],[13.4893,13.6294,22.5283],[14.5401,12.9749,23.3897],[14.6964,12.6545,22.3189],[13.0828,13.951,21.3973],[12.2369,14.6133,21.9044],[13.4893,13.6294,22.5283],[14.5733,12.2712,20.1089],[13.851,13.1232,19.3896],[13.958,13.1066,21.1165],[14.0994,12.8748,17.861],[13.2761,13.8372,18.4341],[13.851,13.1232,19.3896],[12.5935,14.3942,19.8995],[12.2369,14.6133,21.9044],[13.0828,13.951,21.3973],[12.2369,14.6133,21.9044],[12.3603,14.4864,23.1445],[13.4893,13.6294,22.5283],[13.4893,13.6294,22.5283],[12.3603,14.4864,23.1445],[13.0058,14.0838,24.1018],[13.0058,14.0838,24.1018],[12.9365,14.1585,25.2096],[14.315,13.3723,25.1387],[13.4623,13.8979,26.1986],[12.9365,14.1585,25.2096],[11.9929,14.6319,26.2478],[10.5097,15.4163,25.2878],[10.2373,15.3412,26.9761],[11.9929,14.6319,26.2478],[10.3652,15.6522,23.8022],[11.7909,14.8202,24.3712],[11.22,15.2742,22.6561],[10.0545,15.964,22.6367],[10.3652,15.6522,23.8022],[11.22,15.2742,22.6561],[10.5097,15.4163,25.2878],[9.15341,15.9692,25.6991],[10.2373,15.3412,26.9761],[7.83017,16.3793,26.1081],[8.82912,15.8837,26.9346],[9.15341,15.9692,25.6991],[7.83017,16.3793,26.1081],[7.02197,16.8107,25.3777],[6.19045,16.7389,26.7476],[7.02197,16.8107,25.3777],[6.03191,17.3934,24.3161],[6.19045,16.7389,26.7476],[6.03191,17.3934,24.3161],[6.83339,17.3713,23.1891],[5.79149,17.796,23.0147],[6.83339,17.3713,23.1891],[7.93382,17.0673,22.3628],[6.44041,17.7626,22.088],[9.44769,16.02,24.4974],[9.16893,16.3344,23.255],[8.04118,16.6498,24.3484],[9.25897,16.4996,21.8891],[8.67785,16.9732,20.8179],[7.93382,17.0673,22.3628],[9.16893,16.3344,23.255],[10.3652,15.6522,23.8022],[10.0545,15.964,22.6367],[10.0545,15.964,22.6367],[11.22,15.2742,22.6561],[10.3085,15.9532,21.57],[9.63043,16.4604,20.8135],[8.67785,16.9732,20.8179],[9.25897,16.4996,21.8891],[11.3291,15.3359,20.9923],[10.4025,16.0351,20.4431],[10.3085,15.9532,21.57],[8.67785,16.9732,20.8179],[9.63043,16.4604,20.8135],[9.64717,16.6291,19.4784],[10.4025,16.0351,20.4431],[11.3291,15.3359,20.9923],[11.133,15.6258,19.4327],[11.133,15.6258,19.4327],[12.2927,14.8404,18.0419],[10.4882,16.3322,17.716],[8.3037,17.4446,19.2147],[8.67785,16.9732,20.8179],[9.64717,16.6291,19.4784],[7.64583,17.9566,18.2349],[6.65887,18.2001,19.4243],[8.3037,17.4446,19.2147],[6.65887,18.2001,19.4243],[7.64583,17.9566,18.2349],[6.18247,18.7188,17.7416],[4.85028,19.5429,16.3554],[4.55933,19.345,17.9935],[6.18247,18.7188,17.7416],[6.54113,18.9149,15.7252],[6.69277,19.1083,13.9783],[5.52928,19.5276,14.8037],[7.93124,18.3645,14.7307],[6.69277,19.1083,13.9783],[6.54113,18.9149,15.7252],[3.51741,20.1212,15.9626],[4.85028,19.5429,16.3554],[4.27003,20.0439,14.7589],[3.58342,20.5026,13.3114],[2.84708,20.5316,14.8814],[4.27003,20.0439,14.7589],[2.68971,20.9649,11.8922],[3.58342,20.5026,13.3114],[4.28859,20.4252,11.5189],[4.28859,20.4252,11.5189],[5.84785,19.8078,10.9926],[4.89565,20.3014,9.9296],[6.83906,19.2231,12.324],[7.44454,19.0777,9.89165],[5.84785,19.8078,10.9926],[5.52928,19.5276,14.8037],[6.69277,19.1083,13.9783],[5.30577,19.8406,13.1152],[7.44454,19.0777,9.89165],[6.83906,19.2231,12.324],[7.93815,18.7091,11.617],[6.69277,19.1083,13.9783],[7.93124,18.3645,14.7307],[7.90473,18.586,13.0681],[8.0075,18.0284,16.6126],[7.93124,18.3645,14.7307],[6.54113,18.9149,15.7252],[8.0075,18.0284,16.6126],[8.96817,17.2804,17.9633],[9.6297,17.1164,16.3927],[9.02549,17.6692,15.2419],[10.2105,16.9568,14.7278],[9.21911,17.7431,13.6045],[9.6297,17.1164,16.3927],[10.4882,16.3322,17.716],[10.9164,16.2731,15.9896],[11.6491,15.8979,14.1765],[10.9164,16.2731,15.9896],[12.5599,14.8929,15.687],[11.6491,15.8979,14.1765],[12.5599,14.8929,15.687],[13.2449,14.4441,13.6479],[10.6632,16.8442,12.7246],[9.21911,17.7431,13.6045],[10.2105,16.9568,14.7278],[12.1641,15.6893,12.0483],[11.6491,15.8979,14.1765],[13.2449,14.4441,13.6479],[12.1641,15.6893,12.0483],[13.2449,14.4441,13.6479],[13.7038,14.2756,10.9753],[9.21911,17.7431,13.6045],[10.6632,16.8442,12.7246],[9.46851,17.8097,11.0237],[10.3939,17.3451,8.92317],[11.1735,16.6641,10.5339],[11.7789,16.3218,8.3975],[11.7789,16.3218,8.3975],[10.4764,17.3815,6.44279],[10.3939,17.3451,8.92317],[7.93815,18.7091,11.617],[9.46851,17.8097,11.0237],[7.44454,19.0777,9.89165],[7.36629,19.2173,7.70545],[6.10606,19.8047,9.03572],[7.44454,19.0777,9.89165],[10.4764,17.3815,6.44279],[9.00083,18.2627,8.32562],[10.3939,17.3451,8.92317],[10.4764,17.3815,6.44279],[10.5085,17.5382,3.23659],[9.47681,18.1508,4.32233],[10.5085,17.5382,3.23659],[9.61305,18.1018,2.71516],[9.47681,18.1508,4.32233],[10.5085,17.5382,3.23659],[10.8043,17.2653,1.68502],[9.61305,18.1018,2.71516],[10.5085,17.5382,3.23659],[11.9557,16.4457,3.07896],[10.8043,17.2653,1.68502],[10.5085,17.5382,3.23659],[10.4764,17.3815,6.44279],[11.9557,16.4457,3.07896],[7.95407,18.9804,3.75151],[9.47681,18.1508,4.32233],[9.61305,18.1018,2.71516],[9.12677,18.1479,1.22851],[7.95407,18.9804,3.75151],[9.61305,18.1018,2.71516],[6.83355,19.5188,5.72366],[7.36629,19.2173,7.70545],[8.55247,18.614,5.98484],[5.94989,19.9399,3.83119],[7.95407,18.9804,3.75151],[6.48235,19.6371,1.72216],[4.92681,20.3527,5.91892],[6.03658,19.881,7.33221],[6.83355,19.5188,5.72366],[6.48235,19.6371,1.72216],[4.95393,20.3488,2.29537],[5.94989,19.9399,3.83119],[4.92681,20.3527,5.91892],[4.42248,20.5614,3.93827],[3.09713,21.0066,5.01064],[1.47998,21.4639,6.21526],[3.20292,20.9698,7.31085],[3.09713,21.0066,5.01064],[-0.244586,21.776,5.08359],[-0.112776,21.8076,7.3168],[1.47998,21.4639,6.21526],[-0.608347,21.6204,2.35486],[1.37867,21.4411,3.9027],[1.46243,21.3821,2.13257],[-1.91965,21.9227,4.46206],[-1.68074,21.9878,6.38352],[-0.244586,21.776,5.08359],[-1.91965,21.9227,4.46206],[-3.76953,22.0108,5.84253],[-1.68074,21.9878,6.38352],[-9.17854,20.9601,3.13231],[-7.67133,21.4896,5.32239],[-7.11473,21.4989,2.7097],[-7.11473,21.4989,2.7097],[-7.98408,21.062,1.13199],[-9.17854,20.9601,3.13231],[-5.83503,21.874,5.99768],[-3.76953,22.0108,5.84253],[-5.54255,21.7955,4.04399],[-5.83503,21.874,5.99768],[-6.70658,21.8202,7.22639],[-5.32494,22.0023,7.5634],[-7.80243,21.6212,8.4058],[-6.60831,21.87,8.88868],[-6.70658,21.8202,7.22639],[-9.66612,21.0427,8.71165],[-8.11301,21.5437,10.2672],[-7.80243,21.6212,8.4058],[-10.4326,20.673,5.94065],[-7.67133,21.4896,5.32239],[-9.17854,20.9601,3.13231],[-9.17854,20.9601,3.13231],[-11.4348,20.0376,2.76432],[-10.4326,20.673,5.94065],[-10.1962,20.3856,1.19231],[-11.4348,20.0376,2.76432],[-9.17854,20.9601,3.13231],[-9.66612,21.0427,8.71165],[-11.2993,20.3984,8.10041],[-11.3368,20.3506,10.2039],[-11.2993,20.3984,8.10041],[-12.2127,19.873,6.76952],[-12.7097,19.6143,8.90968],[-12.2127,19.873,6.76952],[-13.2557,19.0811,4.02487],[-14.1324,18.5545,7.17122],[-11.4348,20.0376,2.76432],[-11.8498,20.0169,4.87595],[-10.4326,20.673,5.94065],[-14.1324,18.5545,7.17122],[-13.2557,19.0811,4.02487],[-15.0974,17.7157,4.51957],[-15.2036,17.4336,0.97803],[-15.9122,16.9062,2.55547],[-14.4563,18.1455,2.29568],[-16.6935,16.1127,4.5715],[-15.9094,16.971,6.5728],[-15.0974,17.7157,4.51957],[-18.8644,12.8876,2.03894],[-18.0819,14.2753,2.28427],[-18.3606,13.6094,0.945135],[-19.2178,12.0704,3.37626],[-18.8644,12.8876,2.03894],[-19.5507,11.0682,1.52736],[-19.2178,12.0704,3.37626],[-19.5507,11.0682,1.52736],[-19.6513,10.6402,4.77406],[-19.1008,12.192,4.88041],[-19.2178,12.0704,3.37626],[-19.6513,10.6402,4.77406],[-18.5836,13.1317,6.01131],[-19.1008,12.192,4.88041],[-19.2616,11.4711,6.36507],[-18.6645,12.5298,7.99499],[-18.5836,13.1317,6.01131],[-19.2616,11.4711,6.36507],[-17.6775,14.8728,3.71499],[-18.5178,13.4839,3.936],[-17.7699,14.6374,5.42608],[-17.7699,14.6374,5.42608],[-17.0403,15.6549,6.79753],[-16.6935,16.1127,4.5715],[-17.0403,15.6549,6.79753],[-17.2363,15.267,8.38688],[-16.5105,16.283,8.24959],[-17.7803,14.0576,9.60492],[-16.7354,15.805,9.73579],[-17.2363,15.267,8.38688],[-17.889,14.2626,7.41314],[-18.5836,13.1317,6.01131],[-18.6645,12.5298,7.99499],[-17.7803,14.0576,9.60492],[-16.9998,15.1631,11.4047],[-16.7354,15.805,9.73579],[-16.124,16.3166,12.7233],[-16.9998,15.1631,11.4047],[-17.0252,14.799,13.3468],[-16.2845,15.8737,14.5486],[-16.124,16.3166,12.7233],[-17.0252,14.799,13.3468],[-17.2494,14.0234,16.2792],[-16.4444,15.4688,16.1922],[-16.9664,14.7079,14.9627],[-16.2845,15.8737,14.5486],[-15.4633,16.81,15.8516],[-15.5423,16.9115,14.166],[-15.4633,16.81,15.8516],[-15.1318,17.0933,17.3933],[-14.2078,18.0383,16.5194],[-16.4444,15.4688,16.1922],[-16.6802,15.0219,18.108],[-15.877,16.2195,17.2773],[-15.5724,16.5265,18.7084],[-14.4116,17.7171,18.4103],[-15.1318,17.0933,17.3933],[-14.4116,17.7171,18.4103],[-13.4226,18.4057,19.6235],[-13.1956,18.7256,17.8075],[-12.2215,19.018,20.7838],[-13.4226,18.4057,19.6235],[-13.7297,18.0893,21.5375],[-12.2215,19.018,20.7838],[-13.7297,18.0893,21.5375],[-12.5235,18.6894,22.7754],[-11.3095,19.0194,24.075],[-12.5235,18.6894,22.7754],[-12.7245,18.4775,24.4486],[-10.315,19.0803,25.3335],[-9.43743,19.538,23.663],[-11.3095,19.0194,24.075],[-11.8021,18.6339,25.9074],[-11.7686,18.4646,27.5162],[-10.1954,18.7543,27.076],[-11.7686,18.4646,27.5162],[-11.7397,18.2281,28.9512],[-10.1954,18.7543,27.076],[-11.7397,18.2281,28.9512],[-11.7686,18.4646,27.5162],[-13.2974,18.0152,28.0043],[-11.7686,18.4646,27.5162],[-11.8021,18.6339,25.9074],[-13.2974,18.0152,28.0043],[-8.74086,19.2066,25.6957],[-9.43743,19.538,23.663],[-10.315,19.0803,25.3335],[-7.67124,18.7388,27.6568],[-6.85281,19.2632,25.7818],[-8.74086,19.2066,25.6957],[-8.31523,18.3798,29.1362],[-7.67124,18.7388,27.6568],[-8.97892,18.5794,28.4032],[-8.31523,18.3798,29.1362],[-6.73974,18.0935,29.5954],[-7.67124,18.7388,27.6568],[-7.36066,17.5755,31.3476],[-5.83758,17.4349,31.1067],[-6.73974,18.0935,29.5954],[-8.69219,17.6333,31.6508],[-8.13025,17.2704,32.4653],[-7.36066,17.5755,31.3476],[-9.70063,17.3037,32.7654],[-8.13025,17.2704,32.4653],[-8.69219,17.6333,31.6508],[-11.2942,17.5694,32.103],[-11.2466,17.1089,33.4458],[-9.70063,17.3037,32.7654],[-9.80658,18.2607,29.5854],[-9.88712,17.8394,31.1871],[-8.44056,18.0016,30.4185],[-11.7397,18.2281,28.9512],[-9.80658,18.2607,29.5854],[-10.1954,18.7543,27.076],[-11.2942,17.5694,32.103],[-11.4384,17.962,30.5535],[-12.806,17.612,31.5471],[-12.806,17.612,31.5471],[-14.5029,17.3912,31.1439],[-13.8163,17.244,32.464],[-14.5029,17.3912,31.1439],[-14.726,17.5363,29.3466],[-15.6804,17.2188,30.3438],[-13.2974,18.0152,28.0043],[-13.0902,17.8633,29.9309],[-11.7397,18.2281,28.9512],[-16.3348,17.0268,29.2296],[-14.726,17.5363,29.3466],[-15.3926,17.3111,27.3695],[-11.8021,18.6339,25.9074],[-13.7922,17.9689,25.7604],[-13.2974,18.0152,28.0043],[-13.7922,17.9689,25.7604],[-14.1345,17.8206,23.6413],[-15.3788,17.195,25.1693],[-14.1345,17.8206,23.6413],[-15.5519,16.9229,23.6483],[-15.3788,17.195,25.1693],[-15.3926,17.3111,27.3695],[-16.8349,16.4934,26.1348],[-17.4011,16.4907,27.9243],[-17.7819,15.6979,25.2292],[-18.503,15.6954,26.5959],[-16.8349,16.4934,26.1348],[-19.299,14.6898,25.0813],[-17.7819,15.6979,25.2292],[-17.7609,15.1869,23.758],[-15.5519,16.9229,23.6483],[-16.6122,16.2942,24.4745],[-15.3788,17.195,25.1693],[-15.1837,17.0072,22.1042],[-15.5519,16.9229,23.6483],[-14.1345,17.8206,23.6413],[-14.8034,17.2719,20.2019],[-16.4011,15.6511,20.6829],[-15.1837,17.0072,22.1042],[-17.7609,15.1869,23.758],[-16.467,16.0603,22.8305],[-17.2721,15.1015,22.2926],[-18.0551,14.3382,22.6681],[-17.2721,15.1015,22.2926],[-17.7125,14.1358,21.3895],[-18.5044,12.5057,20.6366],[-18.7295,13.2821,22.2055],[-17.7125,14.1358,21.3895],[-18.137,12.3769,19.0484],[-18.9113,10.8414,19.3577],[-18.5044,12.5057,20.6366],[-18.137,12.3769,19.0484],[-17.6361,13.1954,17.8285],[-18.3315,11.4952,17.6839],[-17.494,13.8322,19.6377],[-16.4011,15.6511,20.6829],[-16.6802,15.0219,18.108],[-17.2494,14.0234,16.2792],[-16.6802,15.0219,18.108],[-16.4444,15.4688,16.1922],[-17.9771,12.3582,16.1692],[-18.3315,11.4952,17.6839],[-17.6361,13.1954,17.8285],[-16.9664,14.7079,14.9627],[-17.6942,13.2594,14.4418],[-17.2494,14.0234,16.2792],[-17.8754,13.3229,11.9643],[-18.781,10.7444,12.7197],[-17.6942,13.2594,14.4418],[-18.5711,10.6784,16.0656],[-17.9771,12.3582,16.1692],[-18.3801,11.4504,14.768],[-18.9737,9.52115,17.581],[-18.5711,10.6784,16.0656],[-19.0479,9.08125,15.6426],[-19.5385,7.81998,18.3357],[-19.4515,9.15559,19.0997],[-18.9737,9.52115,17.581],[-19.4027,7.56376,15.0808],[-19.5403,6.00404,15.8873],[-19.3355,7.68943,16.7105],[-19.6243,6.2679,17.6693],[-20.1074,6.40058,19.1106],[-19.5385,7.81998,18.3357],[-20.8351,5.80832,19.7599],[-20.1074,6.40058,19.1106],[-20.2659,4.98285,19.4878],[-19.5947,3.71171,18.854],[-19.7875,5.19361,18.5298],[-19.5682,4.6434,17.2528],[-19.5947,3.71171,18.854],[-19.5682,4.6434,17.2528],[-19.263,3.07474,17.1857],[-19.5947,3.71171,18.854],[-19.263,3.07474,17.1857],[-18.7368,1.85908,18.4458],[-18.7368,1.85908,18.4458],[-19.263,3.07474,17.1857],[-18.6929,1.49609,16.0349],[-19.263,3.07474,17.1857],[-19.4138,3.7402,15.1694],[-18.6929,1.49609,16.0349],[-19.4138,3.7402,15.1694],[-19.263,3.07474,17.1857],[-19.5682,4.6434,17.2528],[-21.3062,4.88882,20.081],[-20.8351,5.80832,19.7599],[-20.2659,4.98285,19.4878],[-21.3062,4.88882,20.081],[-21.6589,3.75607,20.8017],[-22.9893,4.35517,20.3587],[-20.6341,2.97143,21.3538],[-21.9614,3.0464,21.7405],[-21.6589,3.75607,20.8017],[-19.5947,3.71171,18.854],[-19.272,2.35485,20.5047],[-20.4028,3.79823,20.2258],[-21.0284,2.56973,22.439],[-21.9614,3.0464,21.7405],[-20.6341,2.97143,21.3538],[-21.0284,2.56973,22.439],[-20.6694,1.98692,23.8104],[-22.3219,2.53275,22.9487],[-19.3288,1.31679,25.1214],[-20.6694,1.98692,23.8104],[-18.749,1.25441,23.5065],[-18.749,1.25441,23.5065],[-17.0244,0.0185684,22.8812],[-17.5196,0.413726,24.9946],[-15.8858,-1.36569,21.1746],[-17.0244,0.0185684,22.8812],[-17.6584,0.439534,20.2424],[-19.7454,2.14184,22.2781],[-19.272,2.35485,20.5047],[-18.441,1.30403,21.9005],[-19.5947,3.71171,18.854],[-18.7368,1.85908,18.4458],[-19.272,2.35485,20.5047],[-17.6584,0.439534,20.2424],[-16.496,-1.3168,18.9029],[-15.8858,-1.36569,21.1746],[-16.9027,-1.36979,16.8841],[-15.5458,-2.76201,17.8526],[-16.496,-1.3168,18.9029],[-16.9027,-1.36979,16.8841],[-17.8744,-0.185618,15.9061],[-17.4625,-1.12929,14.7224],[-18.7368,1.85908,18.4458],[-18.6929,1.49609,16.0349],[-17.7668,0.123038,17.7404],[-17.8744,-0.185618,15.9061],[-18.2793,0.167162,14.1087],[-17.4625,-1.12929,14.7224],[-17.6111,-1.28221,12.8019],[-18.2793,0.167162,14.1087],[-18.5824,0.337966,11.5425],[-19.3529,2.357,11.2287],[-19.1938,1.43453,9.50246],[-18.5824,0.337966,11.5425],[-19.5811,3.81922,12.5919],[-19.743,3.94691,10.5279],[-19.3529,2.357,11.2287],[-19.0577,1.94558,13.4769],[-18.6929,1.49609,16.0349],[-19.4138,3.7402,15.1694],[-19.5403,6.00404,15.8873],[-19.4138,3.7402,15.1694],[-19.5682,4.6434,17.2528],[-19.4027,7.56376,15.0808],[-19.6186,6.50914,14.3617],[-19.5403,6.00404,15.8873],[-19.6045,7.16375,12.9003],[-19.6186,6.50914,14.3617],[-19.4027,7.56376,15.0808],[-19.5811,3.81922,12.5919],[-19.6706,5.41495,13.5139],[-19.7994,5.6524,11.3808],[-19.7007,7.66906,10.9433],[-19.9426,6.57594,9.44981],[-19.7994,5.6524,11.3808],[-19.4027,7.56376,15.0808],[-19.1974,8.92042,13.8543],[-19.6045,7.16375,12.9003],[-18.781,10.7444,12.7197],[-19.1974,8.92042,13.8543],[-18.8063,10.1804,14.6008],[-19.3731,8.81175,12.2088],[-19.3516,9.60092,10.5757],[-19.7007,7.66906,10.9433],[-18.781,10.7444,12.7197],[-17.8754,13.3229,11.9643],[-18.7036,11.7742,10.1987],[-19.4208,10.3158,8.22789],[-18.7036,11.7742,10.1987],[-18.6645,12.5298,7.99499],[-19.3516,9.60092,10.5757],[-19.7953,8.31269,9.039],[-19.7007,7.66906,10.9433],[-19.9494,8.56729,7.08069],[-20.0433,7.21695,7.91696],[-19.7953,8.31269,9.039],[-19.4208,10.3158,8.22789],[-18.6645,12.5298,7.99499],[-19.2616,11.4711,6.36507],[-19.2616,11.4711,6.36507],[-19.1008,12.192,4.88041],[-19.6513,10.6402,4.77406],[-20.1032,8.58763,4.84125],[-19.9494,8.56729,7.08069],[-19.7521,9.92204,6.25695],[-20.0354,9.45736,2.92702],[-19.6513,10.6402,4.77406],[-19.5507,11.0682,1.52736],[-20.2725,7.83874,2.62131],[-20.0354,9.45736,2.92702],[-20.026,8.96959,1.2959],[-20.1724,7.0285,6.25225],[-20.1032,8.58763,4.84125],[-20.2752,6.63312,4.23045],[-20.1724,7.0285,6.25225],[-20.2752,6.63312,4.23045],[-20.1967,5.6053,5.75588],[-19.9784,3.96846,6.41687],[-20.0701,5.6458,7.7315],[-20.1967,5.6053,5.75588],[-19.5928,2.08051,6.10264],[-19.6234,2.5477,8.00451],[-19.9784,3.96846,6.41687],[-19.8882,3.3473,2.31047],[-19.9138,3.16957,4.5812],[-20.1607,4.76767,4.17883],[-19.5659,1.79153,4.15998],[-18.8968,0.0489633,5.90195],[-19.5928,2.08051,6.10264],[-18.7749,-0.608374,3.83855],[-19.1652,0.414406,2.0873],[-18.488,-1.27107,2.57331],[-18.7279,-0.579335,1.17841],[-18.488,-1.27107,2.57331],[-19.1652,0.414406,2.0873],[-17.7918,-2.25116,1.42686],[-17.6475,-2.80019,3.3795],[-18.488,-1.27107,2.57331],[-17.7918,-2.25116,1.42686],[-16.9767,-3.83872,2.37567],[-17.6475,-2.80019,3.3795],[-16.9767,-3.83872,2.37567],[-16.6846,-4.18324,3.91948],[-17.6475,-2.80019,3.3795],[-17.9694,-1.80416,6.89129],[-18.8968,0.0489633,5.90195],[-18.2087,-1.66912,4.84436],[-16.994,-3.2943,7.57535],[-17.6117,-2.1257,8.78072],[-17.9694,-1.80416,6.89129],[-16.0662,-4.68566,6.08742],[-16.0832,-4.39715,8.2824],[-16.994,-3.2943,7.57535],[-17.6475,-2.80019,3.3795],[-16.6846,-4.18324,3.91948],[-17.3137,-3.12518,5.42357],[-16.1539,-4.87348,2.52933],[-16.6846,-4.18324,3.91948],[-16.9767,-3.83872,2.37567],[-16.063,-4.67231,1.17113],[-16.1539,-4.87348,2.52933],[-16.9767,-3.83872,2.37567],[-15.5548,-5.44338,3.98671],[-14.6296,-6.23657,5.5213],[-16.0662,-4.68566,6.08742],[-13.6474,-6.97739,6.78682],[-14.6296,-6.23657,5.5213],[-13.1983,-7.46205,4.99406],[-13.1983,-7.46205,4.99406],[-11.7749,-8.43966,4.62969],[-12.0924,-8.06292,6.74637],[-10.3538,-9.21482,4.20488],[-11.7749,-8.43966,4.62969],[-11.2705,-8.80612,3.13986],[-10.3538,-9.21482,4.20488],[-8.38564,-10.0185,3.95039],[-9.62693,-9.45206,5.54217],[-5.39179,-10.8982,1.73614],[-6.09165,-10.7031,3.9142],[-7.07776,-10.5476,2.32392],[-5.39179,-10.8982,1.73614],[-4.02378,-11.0968,3.40949],[-6.09165,-10.7031,3.9142],[-6.09165,-10.7031,3.9142],[-4.02378,-11.0968,3.40949],[-4.72771,-10.8913,5.03319],[-4.02378,-11.0968,3.40949],[-2.62136,-11.0317,5.72475],[-4.72771,-10.8913,5.03319],[-5.10796,-10.5099,7.8125],[-4.72771,-10.8913,5.03319],[-2.62136,-11.0317,5.72475],[-5.10796,-10.5099,7.8125],[-2.62136,-11.0317,5.72475],[-2.0003,-10.5624,9.57556],[-2.62136,-11.0317,5.72475],[0.314129,-10.9698,6.82875],[-2.0003,-10.5624,9.57556],[1.62292,-10.347,10.6675],[-2.0003,-10.5624,9.57556],[0.314129,-10.9698,6.82875],[0.314129,-10.9698,6.82875],[-2.62136,-11.0317,5.72475],[-0.717506,-11.2586,4.48573],[0.314129,-10.9698,6.82875],[-0.717506,-11.2586,4.48573],[0.81299,-11.2306,4.27624],[0.81299,-11.2306,4.27624],[1.97502,-11.0574,5.34382],[0.314129,-10.9698,6.82875],[3.21296,-10.6751,7.65799],[0.314129,-10.9698,6.82875],[1.97502,-11.0574,5.34382],[3.21296,-10.6751,7.65799],[1.97502,-11.0574,5.34382],[3.3653,-10.964,4.24947],[3.3653,-10.964,4.24947],[1.97502,-11.0574,5.34382],[2.08535,-11.1587,3.7756],[2.79859,-11.0936,2.49319],[3.3653,-10.964,4.24947],[2.08535,-11.1587,3.7756],[1.36076,-11.2571,2.51866],[2.79859,-11.0936,2.49319],[2.08535,-11.1587,3.7756],[0.81299,-11.2306,4.27624],[1.36076,-11.2571,2.51866],[2.08535,-11.1587,3.7756],[1.36076,-11.2571,2.51866],[0.81299,-11.2306,4.27624],[-0.151428,-11.3561,2.68942],[-0.151428,-11.3561,2.68942],[0.484104,-11.2051,1.05427],[1.36076,-11.2571,2.51866],[1.93265,-11.0781,1.0821],[2.79859,-11.0936,2.49319],[1.36076,-11.2571,2.51866],[3.3653,-10.964,4.24947],[2.79859,-11.0936,2.49319],[4.15447,-10.9103,2.40054],[3.3653,-10.964,4.24947],[4.15447,-10.9103,2.40054],[5.85253,-10.6399,2.80763],[5.27326,-10.6859,4.49373],[3.3653,-10.964,4.24947],[5.85253,-10.6399,2.80763],[6.63632,-10.3906,4.69481],[5.27326,-10.6859,4.49373],[5.85253,-10.6399,2.80763],[7.62262,-10.2726,2.55477],[6.63632,-10.3906,4.69481],[5.85253,-10.6399,2.80763],[6.33127,-10.5808,1.52645],[7.62262,-10.2726,2.55477],[5.85253,-10.6399,2.80763],[5.04067,-10.7796,1.38574],[6.33127,-10.5808,1.52645],[5.85253,-10.6399,2.80763],[6.33127,-10.5808,1.52645],[5.04067,-10.7796,1.38574],[5.80145,-10.5205,0.45601],[6.33127,-10.5808,1.52645],[7.278,-10.3763,0.778318],[7.62262,-10.2726,2.55477],[7.62262,-10.2726,2.55477],[8.92984,-9.69633,5.20882],[6.63632,-10.3906,4.69481],[8.92984,-9.69633,5.20882],[7.08315,-10.0615,6.9503],[6.63632,-10.3906,4.69481],[7.62262,-10.2726,2.55477],[9.42582,-9.76478,3.10536],[8.92984,-9.69633,5.20882],[8.92984,-9.69633,5.20882],[9.42582,-9.76478,3.10536],[10.6021,-9.27363,3.94456],[10.6021,-9.27363,3.94456],[11.2339,-8.70949,5.94763],[8.92984,-9.69633,5.20882],[11.2339,-8.70949,5.94763],[9.29848,-9.18365,7.91425],[8.92984,-9.69633,5.20882],[7.62262,-10.2726,2.55477],[9.47433,-9.65386,1.46218],[9.42582,-9.76478,3.10536],[5.30939,-10.5521,6.20103],[5.27326,-10.6859,4.49373],[6.63632,-10.3906,4.69481],[5.27326,-10.6859,4.49373],[5.30939,-10.5521,6.20103],[3.3653,-10.964,4.24947],[4.15447,-10.9103,2.40054],[5.04067,-10.7796,1.38574],[5.85253,-10.6399,2.80763],[5.04067,-10.7796,1.38574],[4.15447,-10.9103,2.40054],[3.69107,-10.9155,1.07665],[2.79859,-11.0936,2.49319],[3.69107,-10.9155,1.07665],[4.15447,-10.9103,2.40054],[1.97502,-11.0574,5.34382],[0.81299,-11.2306,4.27624],[2.08535,-11.1587,3.7756],[-0.717506,-11.2586,4.48573],[-0.151428,-11.3561,2.68942],[0.81299,-11.2306,4.27624],[-1.97948,-11.3083,3.06032],[-0.151428,-11.3561,2.68942],[-0.717506,-11.2586,4.48573],[-0.151428,-11.3561,2.68942],[-1.97948,-11.3083,3.06032],[-0.995258,-11.3373,1.22138],[-2.62136,-11.0317,5.72475],[-1.97948,-11.3083,3.06032],[-0.717506,-11.2586,4.48573],[-5.92124,-10.6147,5.79387],[-4.72771,-10.8913,5.03319],[-5.10796,-10.5099,7.8125],[-4.02378,-11.0968,3.40949],[-1.97948,-11.3083,3.06032],[-2.62136,-11.0317,5.72475],[-4.02378,-11.0968,3.40949],[-3.32963,-11.1241,1.28867],[-1.97948,-11.3083,3.06032],[-5.92124,-10.6147,5.79387],[-6.09165,-10.7031,3.9142],[-4.72771,-10.8913,5.03319],[-8.27634,-9.87817,6.50611],[-8.38564,-10.0185,3.95039],[-7.07161,-10.3569,5.39912],[-8.27634,-9.87817,6.50611],[-7.22028,-10.0347,8.27352],[-8.71569,-9.55939,8.3857],[-6.70839,-10.33,6.76604],[-5.92124,-10.6147,5.79387],[-5.10796,-10.5099,7.8125],[-8.07727,-9.55835,10.1166],[-7.22028,-10.0347,8.27352],[-6.4079,-10.0189,10.0596],[-5.10796,-10.5099,7.8125],[-2.0003,-10.5624,9.57556],[-4.76208,-10.0132,11.9433],[-2.0003,-10.5624,9.57556],[-1.3403,-9.87376,14.1915],[-4.76208,-10.0132,11.9433],[-1.3403,-9.87376,14.1915],[-4.00603,-9.7036,14.5185],[-4.76208,-10.0132,11.9433],[-6.97458,-9.55547,12.1518],[-8.07727,-9.55835,10.1166],[-6.4079,-10.0189,10.0596],[-7.46812,-8.9142,14.5856],[-9.23009,-8.78251,12.1896],[-6.97458,-9.55547,12.1518],[-7.69715,-8.02606,17.7067],[-7.46812,-8.9142,14.5856],[-5.16052,-9.139,16.2222],[-4.76208,-10.0132,11.9433],[-4.00603,-9.7036,14.5185],[-5.6976,-9.55228,13.9371],[-1.3403,-9.87376,14.1915],[-2.9916,-9.49588,16.1046],[-4.00603,-9.7036,14.5185],[-7.69715,-8.02606,17.7067],[-5.16052,-9.139,16.2222],[-4.88128,-8.18012,20.1763],[-2.23271,-8.33145,21.1353],[-4.88128,-8.18012,20.1763],[-2.7719,-8.61093,19.8899],[-2.77706,-7.89067,22.6268],[-4.88128,-8.18012,20.1763],[-2.23271,-8.33145,21.1353],[-1.8446,-7.69541,23.6551],[-2.9727,-7.49327,24.0602],[-2.77706,-7.89067,22.6268],[-1.95358,-7.28651,25.0935],[-1.8446,-7.69541,23.6551],[-0.415761,-7.56649,24.1792],[0.392319,-7.90042,22.7905],[-1.09701,-8.04102,22.4084],[0.246117,-8.24909,21.4811],[1.84468,-7.95824,22.0157],[0.392319,-7.90042,22.7905],[0.246117,-8.24909,21.4811],[0.812597,-7.20447,25.3518],[-0.552567,-7.05835,26.1292],[-0.415761,-7.56649,24.1792],[0.812597,-7.20447,25.3518],[2.53594,-6.95617,25.4488],[1.12276,-6.74967,27.023],[3.08219,-7.36762,23.5277],[4.30712,-6.78117,24.6723],[2.53594,-6.95617,25.4488],[1.84468,-7.95824,22.0157],[1.38195,-7.52216,23.9024],[0.392319,-7.90042,22.7905],[4.67114,-7.13382,23.0487],[3.08219,-7.36762,23.5277],[3.70107,-7.6837,21.8776],[4.49889,-7.83674,20.5741],[3.70107,-7.6837,21.8776],[2.98498,-8.22868,20.2824],[1.84468,-7.95824,22.0157],[0.246117,-8.24909,21.4811],[1.09292,-8.52083,20.148],[2.19117,-8.81473,18.4155],[4.47768,-8.33824,18.6188],[2.98498,-8.22868,20.2824],[1.09292,-8.52083,20.148],[0.246117,-8.24909,21.4811],[-0.95648,-8.64656,20.0451],[-1.29642,-9.35191,17.1212],[-0.95648,-8.64656,20.0451],[-3.0727,-9.06635,17.9504],[0.284606,-8.98973,18.5518],[0.504081,-9.34589,16.8272],[2.19117,-8.81473,18.4155],[-2.9916,-9.49588,16.1046],[-1.3403,-9.87376,14.1915],[-1.29642,-9.35191,17.1212],[2.19117,-8.81473,18.4155],[0.504081,-9.34589,16.8272],[2.74163,-9.35584,15.6914],[-1.3403,-9.87376,14.1915],[-2.0003,-10.5624,9.57556],[1.62292,-10.347,10.6675],[4.55258,-9.25217,15.0489],[2.74163,-9.35584,15.6914],[4.46691,-9.67354,12.8488],[4.46691,-9.67354,12.8488],[4.73697,-10.0764,10.2416],[6.75905,-9.17313,12.4989],[7.11739,-9.654,9.4935],[6.75905,-9.17313,12.4989],[4.73697,-10.0764,10.2416],[0.314129,-10.9698,6.82875],[3.21296,-10.6751,7.65799],[1.62292,-10.347,10.6675],[5.30939,-10.5521,6.20103],[3.21296,-10.6751,7.65799],[3.3653,-10.964,4.24947],[5.30939,-10.5521,6.20103],[6.63632,-10.3906,4.69481],[7.08315,-10.0615,6.9503],[5.45076,-10.3106,8.12009],[7.11739,-9.654,9.4935],[4.73697,-10.0764,10.2416],[9.29848,-9.18365,7.91425],[7.08315,-10.0615,6.9503],[8.92984,-9.69633,5.20882],[6.75905,-9.17313,12.4989],[7.11739,-9.654,9.4935],[9.58077,-8.4713,11.1331],[11.2906,-7.41908,12.5171],[9.58077,-8.4713,11.1331],[11.7838,-7.56643,10.8842],[11.7838,-7.56643,10.8842],[13.2335,-6.88337,10.1449],[12.7706,-6.74895,11.9199],[13.2335,-6.88337,10.1449],[13.6897,-6.98183,8.28531],[14.7552,-5.8614,9.56179],[13.0683,-7.66714,6.62482],[14.2069,-6.892,6.83033],[13.6897,-6.98183,8.28531],[11.9026,-7.95303,8.56237],[9.29848,-9.18365,7.91425],[11.2339,-8.70949,5.94763],[14.2154,-7.06373,4.91157],[13.0683,-7.66714,6.62482],[12.7572,-8.07633,4.95601],[14.2154,-7.06373,4.91157],[12.7572,-8.07633,4.95601],[13.1479,-7.97998,3.07938],[12.0851,-8.55142,1.27478],[13.1479,-7.97998,3.07938],[11.5654,-8.9427,2.71726],[11.2339,-8.70949,5.94763],[10.6021,-9.27363,3.94456],[11.902,-8.64923,4.14858],[10.4312,-9.46853,2.51819],[10.6021,-9.27363,3.94456],[9.42582,-9.76478,3.10536],[10.909,-9.21814,1.59928],[12.0851,-8.55142,1.27478],[11.5654,-8.9427,2.71726],[10.4312,-9.46853,2.51819],[9.42582,-9.76478,3.10536],[9.47433,-9.65386,1.46218],[10.909,-9.21814,1.59928],[10.6626,-8.70638,0.522761],[12.0851,-8.55142,1.27478],[10.6626,-8.70638,0.522761],[9.19678,-9.03571,0.268233],[9.39194,-7.79644,-0.0522432],[7.90876,-9.56317,0.140973],[7.35186,-8.25656,-0.123348],[9.19678,-9.03571,0.268233],[7.62262,-10.2726,2.55477],[7.278,-10.3763,0.778318],[9.47433,-9.65386,1.46218],[7.90876,-9.56317,0.140973],[7.3124,-10.2021,0.137508],[6.12621,-9.68192,-0.080956],[7.3124,-10.2021,0.137508],[6.99806,-10.352,0.138727],[6.12621,-9.68192,-0.080956],[7.278,-10.3763,0.778318],[6.33127,-10.5808,1.52645],[5.80145,-10.5205,0.45601],[6.99806,-10.352,0.138727],[6.45378,-10.3351,0.068181],[6.12621,-9.68192,-0.080956],[6.12621,-9.68192,-0.080956],[4.80864,-10.6028,0.0377498],[3.58441,-9.68674,-0.056437],[4.80864,-10.6028,0.0377498],[3.98466,-10.6087,0.136373],[3.58441,-9.68674,-0.056437],[5.04067,-10.7796,1.38574],[4.48546,-10.8009,0.395467],[5.80145,-10.5205,0.45601],[3.98466,-10.6087,0.136373],[4.80864,-10.6028,0.0377498],[4.40164,-10.7771,0.01369],[4.48546,-10.8009,0.395467],[5.04067,-10.7796,1.38574],[3.69107,-10.9155,1.07665],[3.98466,-10.6087,0.136373],[3.49898,-10.5882,0.317956],[3.58441,-9.68674,-0.056437],[3.49898,-10.5882,0.317956],[2.85024,-10.8206,0.51544],[3.58441,-9.68674,-0.056437],[2.79859,-11.0936,2.49319],[1.93265,-11.0781,1.0821],[3.69107,-10.9155,1.07665],[2.85024,-10.8206,0.51544],[1.93813,-10.5809,0.262577],[3.58441,-9.68674,-0.056437],[1.18844,-10.754,0.358709],[1.00248,-9.57705,-0.0792117],[1.93813,-10.5809,0.262577],[0.484104,-11.2051,1.05427],[1.93265,-11.0781,1.0821],[1.36076,-11.2571,2.51866],[1.18844,-10.754,0.358709],[0.349629,-10.6374,0.172029],[1.00248,-9.57705,-0.0792117],[-0.612903,-10.9573,0.33247],[-1.1976,-9.5166,-0.122993],[0.349629,-10.6374,0.172029],[-2.04727,-10.8812,0.261477],[-1.1976,-9.5166,-0.122993],[-0.612903,-10.9573,0.33247],[-0.151428,-11.3561,2.68942],[-0.995258,-11.3373,1.22138],[0.484104,-11.2051,1.05427],[-2.04727,-10.8812,0.261477],[-0.612903,-10.9573,0.33247],[-1.21633,-11.277,0.375829],[-1.97948,-11.3083,3.06032],[-3.32963,-11.1241,1.28867],[-0.995258,-11.3373,1.22138],[-3.28672,-10.5487,0.154369],[-1.1976,-9.5166,-0.122993],[-2.04727,-10.8812,0.261477],[-3.28672,-10.5487,0.154369],[-4.29371,-10.641,0.364721],[-4.31953,-9.27676,-0.127886],[-3.32963,-11.1241,1.28867],[-4.02378,-11.0968,3.40949],[-5.39179,-10.8982,1.73614],[-5.72235,-10.1444,0.168244],[-4.29371,-10.641,0.364721],[-5.16354,-10.8025,0.580636],[-5.39179,-10.8982,1.73614],[-7.07776,-10.5476,2.32392],[-6.95541,-10.5014,0.967295],[-7.40933,-9.84081,0.239266],[-5.72235,-10.1444,0.168244],[-6.74245,-10.388,0.236302],[-8.47006,-10.0546,1.50444],[-6.95541,-10.5014,0.967295],[-7.07776,-10.5476,2.32392],[-9.07202,-9.32217,0.176716],[-7.40933,-9.84081,0.239266],[-8.3709,-9.94299,0.470964],[-10.013,-9.44685,2.45345],[-9.99759,-9.43955,0.840442],[-8.47006,-10.0546,1.50444],[-10.4905,-8.37702,0.100178],[-9.07202,-9.32217,0.176716],[-9.90252,-9.38445,0.169488],[-10.4905,-8.37702,0.100178],[-9.90252,-9.38445,0.169488],[-10.2041,-9.24032,0.195971],[-9.99759,-9.43955,0.840442],[-10.013,-9.44685,2.45345],[-11.3531,-8.69963,1.60915],[-12.2525,-7.91571,0.580139],[-10.4905,-8.37702,0.100178],[-11.4616,-8.50301,0.57582],[-13.3349,-7.21786,1.38416],[-11.3531,-8.69963,1.60915],[-12.573,-7.97018,3.10523],[-12.4907,-6.97809,0.189942],[-10.4905,-8.37702,0.100178],[-12.2525,-7.91571,0.580139],[-13.7932,-6.30848,0.375235],[-13.1608,-5.19169,-0.0920229],[-12.4907,-6.97809,0.189942],[-14.1229,-6.7732,3.36589],[-14.9652,-5.91445,1.6366],[-13.3349,-7.21786,1.38416],[-14.7662,-5.01662,0.160693],[-13.7932,-6.30848,0.375235],[-14.682,-5.89619,0.542868],[-14.9652,-5.91445,1.6366],[-16.1539,-4.87348,2.52933],[-16.063,-4.67231,1.17113],[-15.6968,-3.61656,-0.00345469],[-14.7662,-5.01662,0.160693],[-15.7419,-4.57913,0.227851],[-16.7467,-2.74229,0.304955],[-15.5978,-1.98244,-0.107985],[-15.6968,-3.61656,-0.00345469],[-16.063,-4.67231,1.17113],[-16.9767,-3.83872,2.37567],[-17.7918,-2.25116,1.42686],[-16.7467,-2.74229,0.304955],[-17.2624,-1.60057,0.240973],[-15.5978,-1.98244,-0.107985],[-18.3785,0.282212,0.156855],[-17.2624,-1.60057,0.240973],[-18.1953,-1.37012,0.564643],[-18.7279,-0.579335,1.17841],[-17.7918,-2.25116,1.42686],[-18.488,-1.27107,2.57331],[-18.3785,0.282212,0.156855],[-18.1953,-1.37012,0.564643],[-18.5947,-0.663999,0.462155],[-19.1652,0.414406,2.0873],[-19.0468,0.363994,0.721695],[-18.7279,-0.579335,1.17841],[-19.2265,1.26589,0.204881],[-18.3785,0.282212,0.156855],[-19.0329,0.560245,0.171504],[-19.0468,0.363994,0.721695],[-19.1652,0.414406,2.0873],[-19.4559,1.62707,0.84895],[-18.9776,2.39222,0.0830183],[-18.3785,0.282212,0.156855],[-19.2265,1.26589,0.204881],[-19.7317,2.9087,0.86718],[-18.9776,2.39222,0.0830183],[-19.5638,2.29607,0.405548],[-19.8882,3.3473,2.31047],[-19.4559,1.62707,0.84895],[-19.1652,0.414406,2.0873],[-19.5651,3.84335,0.755346],[-18.9776,2.39222,0.0830183],[-19.7317,2.9087,0.86718],[-19.8882,3.3473,2.31047],[-20.1607,4.76767,4.17883],[-20.2425,6.04616,2.01542],[-19.5347,5.72845,0.27676],[-19.5651,3.84335,0.755346],[-19.9687,4.69352,1.19076],[-20.2407,6.8884,0.261184],[-19.5347,5.72845,0.27676],[-20.1581,6.35987,0.109335],[-20.2821,7.28996,0.937757],[-20.2869,6.52674,0.607843],[-20.2425,6.04616,2.01542],[-19.3871,7.9291,0.10824],[-20.2407,6.8884,0.261184],[-20.1409,7.39798,0.266983],[-20.2821,7.28996,0.937757],[-20.2725,7.83874,2.62131],[-20.026,8.96959,1.2959],[-19.11,9.85245,0.195959],[-19.3871,7.9291,0.10824],[-19.7421,8.97643,0.339796],[-19.5507,11.0682,1.52736],[-20.026,8.96959,1.2959],[-20.0354,9.45736,2.92702],[-19.1372,11.7788,0.370074],[-19.11,9.85245,0.195959],[-19.4853,10.9639,0.524873],[-19.5507,11.0682,1.52736],[-18.8644,12.8876,2.03894],[-18.9131,12.5649,0.785897],[-18.2262,12.5134,0.111021],[-19.11,9.85245,0.195959],[-19.1372,11.7788,0.370074],[-18.9131,12.5649,0.785897],[-18.8644,12.8876,2.03894],[-18.3606,13.6094,0.945135],[-18.1995,13.4184,0.188962],[-17.4364,13.8591,0.112795],[-18.2262,12.5134,0.111021],[-17.5327,14.8929,1.07229],[-18.3606,13.6094,0.945135],[-18.0819,14.2753,2.28427],[-16.6314,15.2123,0.216849],[-17.4364,13.8591,0.112795],[-17.3797,14.7635,0.294914],[-17.1336,15.5832,2.46916],[-16.5225,16.0392,0.966141],[-17.5327,14.8929,1.07229],[-15.9848,15.7681,0.0944061],[-15.3783,14.5744,-0.139026],[-16.6314,15.2123,0.216849],[-14.3464,17.4455,0.105163],[-15.9848,15.7681,0.0944061],[-15.7394,16.7936,0.361627],[-16.5225,16.0392,0.966141],[-15.9122,16.9062,2.55547],[-15.2036,17.4336,0.97803],[-14.3464,17.4455,0.105163],[-15.7394,16.7936,0.361627],[-15.1904,17.3269,0.249834],[-14.1408,18.145,0.845265],[-15.2036,17.4336,0.97803],[-14.4563,18.1455,2.29568],[-14.3464,17.4455,0.105163],[-13.5541,17.9805,0.257062],[-13.284,16.7524,-0.135509],[-12.8563,19.0325,1.4418],[-14.1408,18.145,0.845265],[-14.4563,18.1455,2.29568],[-13.5541,17.9805,0.257062],[-12.5875,18.4237,0.302785],[-13.284,16.7524,-0.135509],[-11.9438,19.1308,0.421574],[-11.4352,17.8281,-0.077064],[-12.5875,18.4237,0.302785],[-12.8563,19.0325,1.4418],[-11.4348,20.0376,2.76432],[-11.5325,19.7915,0.977304],[-10.7048,19.7188,0.338424],[-11.9438,19.1308,0.421574],[-11.4616,19.6977,0.338095],[-11.4348,20.0376,2.76432],[-10.1962,20.3856,1.19231],[-11.5325,19.7915,0.977304],[-10.7048,19.7188,0.338424],[-9.70807,20.0025,0.310037],[-9.11683,18.5798,-0.0811],[-10.1962,20.3856,1.19231],[-9.17854,20.9601,3.13231],[-7.98408,21.062,1.13199],[-9.70807,20.0025,0.310037],[-9.13757,20.6121,0.584601],[-8.37942,20.2043,0.259103],[-8.37942,20.2043,0.259103],[-7.26864,20.5861,0.297973],[-6.57654,19.0222,-0.105626],[-5.2318,20.7905,0.19707],[-7.26864,20.5861,0.297973],[-6.90933,21.2731,0.61906],[-7.11473,21.4989,2.7097],[-6.73401,21.5056,1.26306],[-7.98408,21.062,1.13199],[-5.2318,20.7905,0.19707],[-6.90933,21.2731,0.61906],[-6.16257,21.5088,0.753192],[-5.41441,21.6557,1.76846],[-6.73401,21.5056,1.26306],[-7.11473,21.4989,2.7097],[-5.2318,20.7905,0.19707],[-6.16257,21.5088,0.753192],[-5.5436,21.4779,0.753549],[-5.41441,21.6557,1.76846],[-3.31578,21.8403,2.82281],[-3.75591,21.4808,0.818632],[-3.67531,20.6869,-0.0254397],[-4.39144,19.6532,-0.177409],[-5.2318,20.7905,0.19707],[-3.67531,20.6869,-0.0254397],[-2.68677,21.1372,0.222377],[-2.38676,19.5689,-0.120617],[-3.31578,21.8403,2.82281],[-2.34795,21.6382,1.07228],[-3.75591,21.4808,0.818632],[-1.30028,20.9582,0.510831],[-2.68677,21.1372,0.222377],[-2.03664,21.4611,0.354375],[-0.608347,21.6204,2.35486],[-2.34795,21.6382,1.07228],[-3.31578,21.8403,2.82281],[-0.182418,20.9833,0.57219],[-0.617867,20.1346,-0.0123525],[-1.30028,20.9582,0.510831],[0.918492,20.9865,0.344927],[0.990445,19.8869,0.0600543],[-0.182418,20.9833,0.57219],[-0.608347,21.6204,2.35486],[1.46243,21.3821,2.13257],[1.10944,21.3746,1.09135],[1.10944,21.3746,1.09135],[1.46243,21.3821,2.13257],[2.30792,20.8982,0.987729],[1.37239,20.9683,0.445175],[0.990445,19.8869,0.0600543],[0.918492,20.9865,0.344927],[1.45366,17.1725,-0.0839915],[0.990445,19.8869,0.0600543],[2.88616,19.4947,0.137939],[3.59229,20.4716,0.45893],[4.92791,19.544,0.233679],[2.88616,19.4947,0.137939],[4.17581,20.5349,1.12094],[2.30792,20.8982,0.987729],[3.11955,20.9702,2.72605],[4.27136,20.3858,0.407054],[4.92791,19.544,0.233679],[3.59229,20.4716,0.45893],[4.95393,20.3488,2.29537],[5.395,20.0632,1.04679],[4.17581,20.5349,1.12094],[6.06785,19.659,0.68085],[7.27969,18.2207,0.178827],[4.92791,19.544,0.233679],[4.95393,20.3488,2.29537],[6.48235,19.6371,1.72216],[5.395,20.0632,1.04679],[7.27969,18.2207,0.178827],[6.06785,19.659,0.68085],[6.70003,19.3634,0.733091],[7.95407,18.9804,3.75151],[9.12677,18.1479,1.22851],[6.48235,19.6371,1.72216],[8.49571,17.4343,-0.0296926],[7.20252,16.6975,-0.142704],[7.27969,18.2207,0.178827],[10.0303,16.9359,0.13429],[8.49571,17.4343,-0.0296926],[9.29468,17.7851,0.222417],[10.8043,17.2653,1.68502],[9.12677,18.1479,1.22851],[9.61305,18.1018,2.71516],[11.4658,16.3325,0.355148],[10.0303,16.9359,0.13429],[10.8579,17.0575,0.549307],[12.7865,14.9109,0.289086],[11.4658,16.3325,0.355148],[12.333,15.9127,0.518022],[13.4438,15.0427,1.23229],[13.8814,14.5182,0.647804],[12.7865,14.9109,0.289086],[13.4438,15.0427,1.23229],[13.2773,15.3117,2.52892],[14.4696,14.0689,1.86927],[14.0869,14.4424,4.02519],[14.4696,14.0689,1.86927],[13.2773,15.3117,2.52892],[10.8043,17.2653,1.68502],[11.9557,16.4457,3.07896],[12.383,16.0375,1.45002],[12.6724,15.6811,6.15779],[11.9557,16.4457,3.07896],[10.4764,17.3815,6.44279],[14.0869,14.4424,4.02519],[13.2773,15.3117,2.52892],[13.0223,15.5291,3.90708],[14.0269,14.3967,6.2511],[15.169,13.1272,5.42799],[14.0869,14.4424,4.02519],[14.6347,13.6582,7.28736],[14.0269,14.3967,6.2511],[13.4553,14.8151,8.30995],[11.7789,16.3218,8.3975],[12.6724,15.6811,6.15779],[10.4764,17.3815,6.44279],[12.4675,15.6242,10.0616],[11.7789,16.3218,8.3975],[11.1735,16.6641,10.5339],[12.1641,15.6893,12.0483],[13.7038,14.2756,10.9753],[12.4675,15.6242,10.0616],[14.7739,13.2906,9.04261],[14.6347,13.6582,7.28736],[13.4553,14.8151,8.30995],[14.0269,14.3967,6.2511],[14.6347,13.6582,7.28736],[15.169,13.1272,5.42799],[15.61,12.4057,7.45196],[16.6629,10.7825,7.69171],[16.2829,11.583,5.90365],[14.0869,14.4424,4.02519],[15.169,13.1272,5.42799],[15.142,13.2631,3.35511],[16.791,10.5308,1.6462],[15.63,12.5987,1.91552],[16.1071,11.9046,3.68399],[14.0869,14.4424,4.02519],[15.142,13.2631,3.35511],[14.4696,14.0689,1.86927],[14.4696,14.0689,1.86927],[15.1029,13.2074,0.840397],[14.5656,13.8679,0.620345],[14.2656,13.4943,0.110023],[15.1029,13.2074,0.840397],[15.0753,12.5626,0.147018],[15.0753,12.5626,0.147018],[15.7026,11.5278,0.23087],[14.7481,10.642,-0.122787],[16.791,10.5308,1.6462],[15.6866,12.3399,0.739129],[15.63,12.5987,1.91552],[15.7026,11.5278,0.23087],[16.1389,10.4532,0.270671],[14.7481,10.642,-0.122787],[16.6951,9.8549,0.38341],[15.9853,9.33116,-0.062943],[16.1389,10.4532,0.270671],[16.6951,9.8549,0.38341],[17.0051,8.76659,0.304437],[15.9853,9.33116,-0.062943],[17.7767,8.95186,2.60021],[17.7004,8.61793,1.27176],[16.791,10.5308,1.6462],[17.5412,7.2905,0.367664],[16.1907,7.51198,-0.0972013],[17.0051,8.76659,0.304437],[17.7767,8.95186,2.60021],[18.4701,7.07851,2.17675],[17.7004,8.61793,1.27176],[18.4701,7.07851,2.17675],[17.7767,8.95186,2.60021],[18.1017,8.24369,4.35265],[18.3185,5.66547,0.0924644],[17.5412,7.2905,0.367664],[18.317,6.77693,0.722172],[18.4701,7.07851,2.17675],[19.02,5.22361,1.96086],[18.8464,5.63546,0.778432],[18.9672,5.57294,3.38499],[19.02,5.22361,1.96086],[18.4701,7.07851,2.17675],[18.9672,5.57294,3.38499],[18.4701,7.07851,2.17675],[18.6724,6.60112,4.89293],[18.9672,5.57294,3.38499],[18.6724,6.60112,4.89293],[19.0397,5.06587,5.10419],[19.234,3.76245,3.13211],[18.9672,5.57294,3.38499],[19.0397,5.06587,5.10419],[19.234,3.76245,3.13211],[19.0397,5.06587,5.10419],[19.2204,3.57458,5.55539],[19.234,3.76245,3.13211],[19.2204,3.57458,5.55539],[19.2582,2.13916,4.58143],[19.2582,2.13916,4.58143],[19.2514,1.75721,2.61867],[19.234,3.76245,3.13211],[19.2514,1.75721,2.61867],[19.3004,2.71438,1.51276],[19.234,3.76245,3.13211],[19.0947,3.95865,0.968499],[19.234,3.76245,3.13211],[19.3004,2.71438,1.51276],[19.234,3.76245,3.13211],[19.0947,3.95865,0.968499],[19.02,5.22361,1.96086],[19.0754,1.46197,0.948451],[19.3004,2.71438,1.51276],[19.2514,1.75721,2.61867],[19.2514,1.75721,2.61867],[19.2582,2.13916,4.58143],[19.0911,0.42353,4.15993],[19.2514,1.75721,2.61867],[19.0911,0.42353,4.15993],[19.0142,0.116605,1.90318],[19.2582,2.13916,4.58143],[19.1678,1.10444,5.51441],[19.0911,0.42353,4.15993],[19.0911,0.42353,4.15993],[19.1678,1.10444,5.51441],[19.0358,0.203915,5.57346],[19.0145,0.616068,6.69075],[19.0358,0.203915,5.57346],[19.1678,1.10444,5.51441],[19.0145,0.616068,6.69075],[19.1678,1.10444,5.51441],[19.187,2.16955,6.49638],[19.0145,0.616068,6.69075],[19.187,2.16955,6.49638],[19.0609,1.63037,7.75871],[18.9694,0.89964,7.78261],[19.0145,0.616068,6.69075],[19.0609,1.63037,7.75871],[18.9694,0.89964,7.78261],[19.0609,1.63037,7.75871],[18.9044,1.14239,8.49521],[18.9694,0.89964,7.78261],[18.9044,1.14239,8.49521],[18.7668,0.19661,8.20282],[18.9044,1.14239,8.49521],[18.688,0.5363,9.19015],[18.7668,0.19661,8.20282],[18.688,0.5363,9.19015],[18.5142,-0.343221,9.01076],[18.7668,0.19661,8.20282],[18.4835,-0.79041,8.31129],[18.7668,0.19661,8.20282],[18.5142,-0.343221,9.01076],[18.688,0.5363,9.19015],[18.461,-0.0607682,9.75343],[18.5142,-0.343221,9.01076],[18.208,-0.876834,9.75998],[18.5142,-0.343221,9.01076],[18.461,-0.0607682,9.75343],[18.2299,-0.255319,10.6692],[18.208,-0.876834,9.75998],[18.461,-0.0607682,9.75343],[18.5289,0.607048,10.1861],[18.2299,-0.255319,10.6692],[18.461,-0.0607682,9.75343],[18.2299,-0.255319,10.6692],[18.5289,0.607048,10.1861],[18.354,0.486286,11.0514],[18.2299,-0.255319,10.6692],[18.354,0.486286,11.0514],[18.1105,0.00621052,11.6874],[18.1105,0.00621052,11.6874],[18.354,0.486286,11.0514],[18.2739,0.812535,11.784],[18.5132,1.25977,10.8809],[18.2739,0.812535,11.784],[18.354,0.486286,11.0514],[18.2739,0.812535,11.784],[18.5132,1.25977,10.8809],[18.3895,1.67517,11.7894],[18.354,0.486286,11.0514],[18.5289,0.607048,10.1861],[18.5132,1.25977,10.8809],[18.5132,1.25977,10.8809],[18.5289,0.607048,10.1861],[18.7836,1.63563,9.58766],[18.6153,2.33259,10.8436],[18.5132,1.25977,10.8809],[18.7836,1.63563,9.58766],[18.6153,2.33259,10.8436],[18.7836,1.63563,9.58766],[18.8443,2.79652,9.70822],[18.6844,3.33268,10.5893],[18.6153,2.33259,10.8436],[18.8443,2.79652,9.70822],[18.8366,3.68632,9.62274],[18.6844,3.33268,10.5893],[18.8443,2.79652,9.70822],[18.9965,3.28577,8.6829],[18.8366,3.68632,9.62274],[18.8443,2.79652,9.70822],[18.9733,2.42555,8.89429],[18.9965,3.28577,8.6829],[18.8443,2.79652,9.70822],[19.0964,2.49623,7.95744],[18.9965,3.28577,8.6829],[18.9733,2.42555,8.89429],[18.9907,1.87934,8.54106],[19.0964,2.49623,7.95744],[18.9733,2.42555,8.89429],[18.7836,1.63563,9.58766],[18.9907,1.87934,8.54106],[18.9733,2.42555,8.89429],[18.9044,1.14239,8.49521],[18.9907,1.87934,8.54106],[18.7836,1.63563,9.58766],[19.0964,2.49623,7.95744],[18.9907,1.87934,8.54106],[19.0609,1.63037,7.75871],[19.0964,2.49623,7.95744],[19.1238,3.50396,7.33045],[18.9965,3.28577,8.6829],[18.8575,4.69796,8.40521],[18.9965,3.28577,8.6829],[19.1238,3.50396,7.33045],[19.051,4.62422,6.71147],[18.8575,4.69796,8.40521],[19.1238,3.50396,7.33045],[19.2204,3.57458,5.55539],[19.051,4.62422,6.71147],[19.1238,3.50396,7.33045],[19.187,2.16955,6.49638],[19.2204,3.57458,5.55539],[19.1238,3.50396,7.33045],[18.679,6.1257,6.97576],[18.8575,4.69796,8.40521],[19.051,4.62422,6.71147],[19.051,4.62422,6.71147],[19.0397,5.06587,5.10419],[18.679,6.1257,6.97576],[19.187,2.16955,6.49638],[19.1238,3.50396,7.33045],[19.0964,2.49623,7.95744],[18.9965,3.28577,8.6829],[18.8575,4.69796,8.40521],[18.8366,3.68632,9.62274],[18.8575,4.69796,8.40521],[18.6429,4.14295,10.5657],[18.8366,3.68632,9.62274],[18.6429,4.14295,10.5657],[18.8575,4.69796,8.40521],[18.5799,5.06712,10.1024],[18.6429,4.14295,10.5657],[18.5799,5.06712,10.1024],[18.5044,4.68559,10.9467],[18.4957,3.89764,11.386],[18.6429,4.14295,10.5657],[18.5044,4.68559,10.9467],[18.6429,4.14295,10.5657],[18.4957,3.89764,11.386],[18.6844,3.33268,10.5893],[18.5373,3.07489,11.3576],[18.6844,3.33268,10.5893],[18.4957,3.89764,11.386],[18.344,5.51289,10.917],[18.5044,4.68559,10.9467],[18.5799,5.06712,10.1024],[18.3463,6.31078,9.43717],[18.344,5.51289,10.917],[18.5799,5.06712,10.1024],[18.5044,4.68559,10.9467],[18.344,5.51289,10.917],[18.3264,4.78087,11.7013],[18.3463,6.31078,9.43717],[18.5799,5.06712,10.1024],[18.8575,4.69796,8.40521],[18.6429,4.14295,10.5657],[18.6844,3.33268,10.5893],[18.8366,3.68632,9.62274],[18.7836,1.63563,9.58766],[18.9733,2.42555,8.89429],[18.8443,2.79652,9.70822],[18.5289,0.607048,10.1861],[18.688,0.5363,9.19015],[18.7836,1.63563,9.58766],[17.9066,-1.17407,10.6906],[18.208,-0.876834,9.75998],[18.2299,-0.255319,10.6692],[17.8686,-0.804253,11.5466],[17.9066,-1.17407,10.6906],[18.2299,-0.255319,10.6692],[18.688,0.5363,9.19015],[18.5289,0.607048,10.1861],[18.461,-0.0607682,9.75343],[18.688,0.5363,9.19015],[18.9044,1.14239,8.49521],[18.7836,1.63563,9.58766],[19.0609,1.63037,7.75871],[18.9907,1.87934,8.54106],[18.9044,1.14239,8.49521],[19.0145,0.616068,6.69075],[18.9694,0.89964,7.78261],[18.7668,0.19661,8.20282],[18.6993,-0.504447,7.26611],[19.0145,0.616068,6.69075],[18.7668,0.19661,8.20282],[19.187,2.16955,6.49638],[19.0964,2.49623,7.95744],[19.0609,1.63037,7.75871],[18.8264,-0.462291,6.2634],[19.0358,0.203915,5.57346],[19.0145,0.616068,6.69075],[19.1678,1.10444,5.51441],[19.2582,2.13916,4.58143],[19.187,2.16955,6.49638],[19.187,2.16955,6.49638],[19.2582,2.13916,4.58143],[19.2204,3.57458,5.55539],[19.2204,3.57458,5.55539],[19.0397,5.06587,5.10419],[19.051,4.62422,6.71147],[19.02,5.22361,1.96086],[18.9672,5.57294,3.38499],[19.234,3.76245,3.13211],[18.8733,4.69321,0.166811],[18.3185,5.66547,0.0924644],[18.8467,5.43182,0.107275],[19.02,5.22361,1.96086],[19.0947,3.95865,0.968499],[18.8464,5.63546,0.778432],[18.8733,4.69321,0.166811],[18.2719,3.80122,0.0366073],[18.3185,5.66547,0.0924644],[19.3004,2.71438,1.51276],[19.2663,2.69435,0.564674],[19.0947,3.95865,0.968499],[18.9466,2.14281,0.210792],[18.2719,3.80122,0.0366073],[19.0608,3.33526,0.259138],[19.3004,2.71438,1.51276],[19.0754,1.46197,0.948451],[19.2663,2.69435,0.564674],[18.0993,1.3248,0.082305],[18.2719,3.80122,0.0366073],[18.9466,2.14281,0.210792],[18.0028,-1.09934,0.162481],[18.0993,1.3248,0.082305],[18.816,0.421266,0.539077],[19.0142,0.116605,1.90318],[19.0754,1.46197,0.948451],[19.2514,1.75721,2.61867],[18.69,-0.696795,0.639773],[18.816,0.421266,0.539077],[18.9745,-0.108707,0.897747],[19.0142,0.116605,1.90318],[18.6792,-1.30912,2.32507],[18.5061,-1.42596,0.942543],[18.5061,-1.42596,0.942543],[18.6792,-1.30912,2.32507],[18.4773,-1.86616,1.75655],[19.0142,0.116605,1.90318],[18.7518,-1.0897,3.28015],[18.6792,-1.30912,2.32507],[18.0028,-1.09934,0.162481],[18.816,0.421266,0.539077],[18.69,-0.696795,0.639773],[18.321,-1.82431,0.3813],[18.2445,-1.89851,0.013649],[18.0028,-1.09934,0.162481],[18.321,-1.82431,0.3813],[17.5253,-3.53106,1.57669],[17.8084,-2.76956,0.386693],[18.5061,-1.42596,0.942543],[18.4773,-1.86616,1.75655],[18.2736,-2.26312,1.24716],[18.4773,-1.86616,1.75655],[18.6792,-1.30912,2.32507],[18.4711,-1.90807,2.35608],[18.6792,-1.30912,2.32507],[18.5351,-1.73682,2.97855],[18.4711,-1.90807,2.35608],[18.326,-2.23902,2.6788],[18.4711,-1.90807,2.35608],[18.5351,-1.73682,2.97855],[17.9821,-2.89232,2.69768],[17.5253,-3.53106,1.57669],[18.2156,-2.45475,2.02469],[17.2717,-4.00805,3.24179],[17.9821,-2.89232,2.69768],[17.9661,-2.7862,4.36925],[18.5117,-1.72992,3.83783],[18.5363,-1.58253,4.71011],[17.9661,-2.7862,4.36925],[18.2917,-2.27902,3.31568],[18.326,-2.23902,2.6788],[18.5351,-1.73682,2.97855],[18.6792,-1.30912,2.32507],[18.7518,-1.0897,3.28015],[18.5351,-1.73682,2.97855],[19.0911,0.42353,4.15993],[18.7518,-1.0897,3.28015],[19.0142,0.116605,1.90318],[18.8233,-0.680751,5.14925],[19.0911,0.42353,4.15993],[19.0358,0.203915,5.57346],[18.5363,-1.58253,4.71011],[18.5117,-1.72992,3.83783],[18.7882,-0.926412,4.24176],[18.5363,-1.58253,4.71011],[18.3801,-1.73094,5.83034],[17.9661,-2.7862,4.36925],[18.8233,-0.680751,5.14925],[19.0358,0.203915,5.57346],[18.8264,-0.462291,6.2634],[18.6993,-0.504447,7.26611],[18.8264,-0.462291,6.2634],[19.0145,0.616068,6.69075],[18.0284,-2.08996,7.57734],[18.3801,-1.73094,5.83034],[18.5365,-1.21213,6.74431],[18.4835,-0.79041,8.31129],[18.6993,-0.504447,7.26611],[18.7668,0.19661,8.20282],[17.7893,-2.27214,8.72709],[18.0284,-2.08996,7.57734],[18.1649,-1.56961,8.54936],[18.4835,-0.79041,8.31129],[18.5142,-0.343221,9.01076],[18.3078,-1.0454,8.96243],[18.0181,-1.61794,9.26742],[17.7893,-2.27214,8.72709],[18.1649,-1.56961,8.54936],[18.5142,-0.343221,9.01076],[18.208,-0.876834,9.75998],[18.3078,-1.0454,8.96243],[17.8239,-1.68019,10.0634],[18.208,-0.876834,9.75998],[17.9066,-1.17407,10.6906],[17.6432,-2.23607,9.6201],[17.7893,-2.27214,8.72709],[18.0181,-1.61794,9.26742],[17.411,-2.36076,10.3694],[17.0518,-3.17128,9.73949],[17.6432,-2.23607,9.6201],[17.8239,-1.68019,10.0634],[17.9066,-1.17407,10.6906],[17.6241,-1.81039,10.7209],[16.8835,-2.99001,11.0132],[17.411,-2.36076,10.3694],[17.3228,-2.2207,11.0979],[17.5575,-1.605,11.4162],[17.6241,-1.81039,10.7209],[17.9066,-1.17407,10.6906],[16.8835,-2.99001,11.0132],[17.3228,-2.2207,11.0979],[17.054,-2.28956,12.0037],[17.8686,-0.804253,11.5466],[17.5575,-1.605,11.4162],[17.9066,-1.17407,10.6906],[18.2299,-0.255319,10.6692],[18.1105,0.00621052,11.6874],[17.8686,-0.804253,11.5466],[18.2739,0.812535,11.784],[17.9725,0.315587,12.6879],[18.1105,0.00621052,11.6874],[18.2739,0.812535,11.784],[18.1889,1.17345,12.485],[17.9725,0.315587,12.6879],[17.986,1.16825,13.3408],[17.614,0.146437,13.9485],[17.9725,0.315587,12.6879],[17.986,1.16825,13.3408],[17.7711,1.24603,14.2775],[17.614,0.146437,13.9485],[17.7711,1.24603,14.2775],[17.3735,0.663242,15.2717],[17.614,0.146437,13.9485],[17.3735,0.663242,15.2717],[17.7711,1.24603,14.2775],[17.6672,2.01194,14.8736],[17.8303,-0.470908,12.3042],[17.6349,-0.515054,13.0611],[17.4612,-1.27984,12.4678],[17.054,-2.28956,12.0037],[17.4612,-1.27984,12.4678],[16.9862,-1.96894,13.0143],[16.9862,-1.96894,13.0143],[16.5401,-2.31535,13.8772],[16.6172,-2.64174,12.8884],[15.9594,-3.35652,13.3854],[16.6172,-2.64174,12.8884],[16.5401,-2.31535,13.8772],[14.9918,-4.00503,14.5832],[15.2655,-4.37285,12.9479],[15.9594,-3.35652,13.3854],[13.6768,-4.78717,15.7536],[13.9387,-5.19345,14.1195],[14.9918,-4.00503,14.5832],[13.9524,-4.00143,17.3819],[12.6767,-4.99188,17.4541],[13.6768,-4.78717,15.7536],[13.9524,-4.00143,17.3819],[14.7571,-3.19329,17.4695],[14.1741,-3.41334,18.4068],[14.7571,-3.19329,17.4695],[15.0659,-2.47623,18.1419],[14.1741,-3.41334,18.4068],[16.1987,-0.997852,17.4053],[15.6739,-1.87751,17.6332],[16.1075,-1.70676,16.6334],[15.4275,-2.54789,17.0649],[14.9592,-3.4355,16.1905],[15.8052,-2.47895,16.0326],[15.8052,-2.47895,16.0326],[15.8265,-2.90555,14.8999],[16.5223,-1.68745,15.2211],[16.5223,-1.68745,15.2211],[17.16,-1.18822,13.81],[17.1389,-0.53768,14.9197],[17.3735,0.663242,15.2717],[17.1389,-0.53768,14.9197],[17.614,0.146437,13.9485],[16.7863,-0.527227,16.1163],[16.1987,-0.997852,17.4053],[16.1075,-1.70676,16.6334],[16.9451,0.544383,16.4933],[16.5596,0.680513,17.1659],[16.5781,-0.175913,17.1013],[16.1273,1.18323,17.2974],[15.9149,0.292242,17.773],[16.5596,0.680513,17.1659],[15.8281,-1.05062,18.2168],[16.1987,-0.997852,17.4053],[16.1251,-0.549212,17.8264],[15.3647,-1.61189,18.5994],[16.1987,-0.997852,17.4053],[15.8281,-1.05062,18.2168],[14.5958,-2.2277,19.5069],[15.0659,-2.47623,18.1419],[15.3647,-1.61189,18.5994],[14.5958,-2.2277,19.5069],[14.2984,-1.91153,20.1443],[13.8551,-2.61124,20.7357],[14.6944,-1.20199,19.3956],[14.2027,-1.60699,19.6549],[14.2984,-1.91153,20.1443],[15.3922,-1.05252,18.798],[14.9899,-0.975617,19.1213],[15.0732,-1.36187,19.1621],[14.6641,-1.01143,19.0793],[14.3792,-1.30107,19.2592],[14.6944,-1.20199,19.3956],[14.9899,-0.975617,19.1213],[15.3922,-1.05252,18.798],[15.2653,-0.54292,18.6603],[15.2653,-0.54292,18.6603],[15.9149,0.292242,17.773],[15.3096,0.030172,17.9299],[14.9053,-0.780616,18.9238],[14.8238,-0.602008,18.4229],[14.6641,-1.01143,19.0793],[15.3066,0.453175,17.3172],[14.8824,-0.308823,17.6548],[15.3096,0.030172,17.9299],[14.8238,-0.602008,18.4229],[14.3709,-1.20417,18.6971],[14.6641,-1.01143,19.0793],[14.1157,-1.61354,18.1637],[14.3709,-1.20417,18.6971],[14.4104,-1.00925,17.686],[14.8824,-0.308823,17.6548],[15.3066,0.453175,17.3172],[14.9815,0.262527,16.3778],[14.5962,-0.583114,16.8759],[14.2474,-1.36552,16.8494],[14.4104,-1.00925,17.686],[13.9328,-2.25947,17.0255],[14.2474,-1.36552,16.8494],[14.1218,-1.97719,15.6177],[14.6262,-0.44419,15.6453],[14.9042,0.332195,14.5415],[14.5209,-0.946613,14.3635],[14.5209,-0.946613,14.3635],[14.6052,-1.33028,12.878],[14.2138,-2.3412,13.7935],[14.1218,-1.97719,15.6177],[13.8938,-3.2079,14.8603],[13.7459,-3.28767,16.6306],[13.7191,-3.99543,15.6172],[13.8938,-3.2079,14.8603],[13.7828,-4.19515,14.5964],[13.8349,-4.34983,13.7324],[13.774,-5.06932,14.1487],[13.7828,-4.19515,14.5964],[13.8446,-4.87224,13.1814],[13.8349,-4.34983,13.7324],[13.9506,-4.08706,13.0177],[14.2138,-2.3412,13.7935],[14.1521,-3.23071,12.7837],[13.942,-3.5545,13.7905],[14.0875,-4.00364,12.1955],[14.1521,-3.23071,12.7837],[14.3401,-3.27139,11.7385],[14.211,-4.13216,11.3573],[14.0875,-4.00364,12.1955],[14.3401,-3.27139,11.7385],[13.9382,-4.58825,12.5236],[13.8446,-4.87224,13.1814],[13.9506,-4.08706,13.0177],[13.8446,-4.87224,13.1814],[13.9382,-4.58825,12.5236],[13.8641,-5.21632,12.4635],[13.7896,-5.86628,11.5185],[13.7895,-5.90427,13.3177],[13.8641,-5.21632,12.4635],[13.7896,-5.86628,11.5185],[14.0658,-4.90816,11.1296],[14.0104,-5.37421,10.4461],[14.0875,-4.00364,12.1955],[14.211,-4.13216,11.3573],[13.989,-4.78711,11.8482],[14.3036,-4.37917,10.5344],[14.0104,-5.37421,10.4461],[14.0658,-4.90816,11.1296],[14.4908,-3.5049,10.8118],[14.211,-4.13216,11.3573],[14.3401,-3.27139,11.7385],[14.4126,-4.58516,9.62488],[14.3036,-4.37917,10.5344],[14.6157,-3.78292,9.96849],[14.4908,-3.5049,10.8118],[14.6603,-2.60718,11.1531],[14.8251,-2.9254,10.2428],[14.7074,-4.01494,9.28401],[14.6157,-3.78292,9.96849],[14.9278,-3.32374,9.45008],[14.6603,-2.60718,11.1531],[15.055,-1.93749,10.5656],[14.8251,-2.9254,10.2428],[15.055,-1.93749,10.5656],[15.355,-0.996329,10.6816],[15.5727,-1.47268,9.77015],[15.2026,-2.47998,9.62448],[15.2101,-3.03958,8.96129],[14.9278,-3.32374,9.45008],[15.2101,-3.03958,8.96129],[15.3047,-3.4148,8.21754],[14.9549,-3.77917,8.74276],[15.8153,-2.81935,7.83026],[15.4285,-3.76957,7.41853],[15.3047,-3.4148,8.21754],[15.8153,-2.81935,7.83026],[16.0538,-2.02845,8.282],[16.2579,-2.34704,7.60648],[16.0538,-2.02845,8.282],[16.5513,-1.3845,8.24192],[16.2579,-2.34704,7.60648],[16.5513,-1.3845,8.24192],[16.8013,-1.89974,7.39925],[16.2579,-2.34704,7.60648],[16.4784,-0.714282,8.9877],[16.9636,-0.708691,8.4504],[16.5513,-1.3845,8.24192],[16.9636,-0.708691,8.4504],[17.1168,-1.22709,7.77303],[16.5513,-1.3845,8.24192],[16.9636,-0.708691,8.4504],[17.5931,-0.671813,7.94388],[17.1168,-1.22709,7.77303],[16.9636,-0.708691,8.4504],[17.4116,0.342069,9.07011],[17.5931,-0.671813,7.94388],[16.8292,-0.12814,9.13277],[17.4116,0.342069,9.07011],[16.9636,-0.708691,8.4504],[16.8292,-0.12814,9.13277],[16.9636,-0.708691,8.4504],[16.4784,-0.714282,8.9877],[16.8292,-0.12814,9.13277],[16.4784,-0.714282,8.9877],[16.4413,-0.107692,9.59718],[16.4413,-0.107692,9.59718],[16.4784,-0.714282,8.9877],[16.0467,-0.708844,9.61282],[15.6247,-2.27203,8.84006],[15.5727,-1.47268,9.77015],[16.0507,-1.40719,8.94903],[15.355,-0.996329,10.6816],[15.7214,-0.644887,10.2262],[15.5727,-1.47268,9.77015],[15.7214,-0.644887,10.2262],[15.355,-0.996329,10.6816],[15.6535,-0.0651969,10.9338],[16.4413,-0.107692,9.59718],[16.0467,-0.708844,9.61282],[16.0631,-0.0600681,10.1831],[16.8409,0.422345,9.63775],[16.8292,-0.12814,9.13277],[16.4413,-0.107692,9.59718],[16.8409,0.422345,9.63775],[17.4116,0.342069,9.07011],[16.8292,-0.12814,9.13277],[17.5931,-0.671813,7.94388],[17.4116,0.342069,9.07011],[18.3036,0.412058,8.59469],[18.1932,-0.393602,7.84984],[17.5931,-0.671813,7.94388],[18.3036,0.412058,8.59469],[17.6803,1.84171,10.2525],[17.937,1.16483,9.47165],[17.2329,1.17813,9.97736],[17.6803,1.84171,10.2525],[17.2329,1.17813,9.97736],[17.0342,1.73755,10.682],[17.6803,1.84171,10.2525],[17.4574,2.42878,10.961],[18.1086,2.51795,10.6667],[18.6638,1.23204,9.22713],[18.3775,1.88524,9.94315],[18.9686,1.84391,9.74547],[19.5601,2.02313,9.9349],[19.366,1.34285,9.24039],[18.9686,1.84391,9.74547],[19.5601,2.02313,9.9349],[20.0664,1.42599,9.42385],[19.366,1.34285,9.24039],[19.8301,0.785919,8.74002],[19.366,1.34285,9.24039],[20.0664,1.42599,9.42385],[20.0664,1.42599,9.42385],[19.5601,2.02313,9.9349],[20.4052,2.13071,10.2776],[20.827,1.38839,9.70169],[20.0664,1.42599,9.42385],[20.4052,2.13071,10.2776],[19.5601,2.02313,9.9349],[19.6742,2.68247,10.6286],[20.4052,2.13071,10.2776],[20.827,1.38839,9.70169],[20.4052,2.13071,10.2776],[21.1472,1.86892,10.3684],[22.455,1.97678,11.7276],[22.2247,1.64356,11.0853],[21.9399,2.18664,11.3452],[22.2247,1.64356,11.0853],[22.455,1.97678,11.7276],[22.7491,1.10869,11.3104],[21.7453,1.73164,10.6851],[21.5336,1.22849,10.002],[21.1472,1.86892,10.3684],[21.3946,0.687742,9.3764],[21.8847,0.556272,9.66121],[21.9071,-0.171183,9.02198],[21.2986,-0.622961,8.16099],[21.3946,0.687742,9.3764],[21.9071,-0.171183,9.02198],[21.9071,-0.171183,9.02198],[21.8847,0.556272,9.66121],[22.3791,-0.141675,9.59034],[21.5336,1.22849,10.002],[20.827,1.38839,9.70169],[21.1472,1.86892,10.3684],[21.2986,-0.622961,8.16099],[20.7466,0.28039,8.56023],[21.3946,0.687742,9.3764],[20.7466,0.28039,8.56023],[21.2986,-0.622961,8.16099],[20.6855,-0.185208,8.10488],[20.4032,-0.88261,7.44545],[20.6855,-0.185208,8.10488],[21.2986,-0.622961,8.16099],[20.4032,-0.88261,7.44545],[20.2892,0.282435,8.36712],[20.6855,-0.185208,8.10488],[20.0664,1.42599,9.42385],[20.827,1.38839,9.70169],[20.3755,0.818122,8.90296],[20.2892,0.282435,8.36712],[20.7466,0.28039,8.56023],[20.6855,-0.185208,8.10488],[19.8301,0.785919,8.74002],[20.0664,1.42599,9.42385],[20.3755,0.818122,8.90296],[20.2892,0.282435,8.36712],[20.4032,-0.88261,7.44545],[19.7045,0.19759,8.20128],[19.119,0.648703,8.6031],[19.366,1.34285,9.24039],[19.8301,0.785919,8.74002],[19.119,0.648703,8.6031],[18.8675,-0.07696,7.96801],[18.3036,0.412058,8.59469],[20.4032,-0.88261,7.44545],[19.3363,-2.06079,6.21774],[19.7045,0.19759,8.20128],[20.4032,-0.88261,7.44545],[20.8106,-2.72012,6.20281],[19.3363,-2.06079,6.21774],[18.1932,-0.393602,7.84984],[18.3036,0.412058,8.59469],[18.8675,-0.07696,7.96801],[17.9031,-0.889994,7.50942],[17.5931,-0.671813,7.94388],[18.1932,-0.393602,7.84984],[18.473,-1.34627,6.86416],[19.3363,-2.06079,6.21774],[18.05,-2.33552,6.11427],[18.6561,-3.07015,5.29285],[18.05,-2.33552,6.11427],[19.3363,-2.06079,6.21774],[19.3363,-2.06079,6.21774],[19.8246,-3.24266,5.25542],[18.6561,-3.07015,5.29285],[19.1092,-4.11986,4.36584],[18.6561,-3.07015,5.29285],[19.8246,-3.24266,5.25542],[18.05,-2.33552,6.11427],[18.6561,-3.07015,5.29285],[17.2327,-3.59988,5.38977],[18.0185,-4.61639,4.13353],[17.2327,-3.59988,5.38977],[18.6561,-3.07015,5.29285],[18.05,-2.33552,6.11427],[17.1714,-2.42125,6.52298],[17.5553,-1.81474,6.79517],[17.5931,-0.671813,7.94388],[17.9031,-0.889994,7.50942],[17.4935,-1.14904,7.51119],[17.5931,-0.671813,7.94388],[17.4935,-1.14904,7.51119],[17.1168,-1.22709,7.77303],[16.8013,-1.89974,7.39925],[16.5513,-1.3845,8.24192],[17.1168,-1.22709,7.77303],[17.1714,-2.42125,6.52298],[17.2373,-1.59761,7.25566],[17.5553,-1.81474,6.79517],[16.8013,-1.89974,7.39925],[16.2141,-3.28301,6.69804],[16.2579,-2.34704,7.60648],[17.2327,-3.59988,5.38977],[17.1714,-2.42125,6.52298],[18.05,-2.33552,6.11427],[14.8805,-5.11203,6.62375],[16.2141,-3.28301,6.69804],[15.8764,-4.89801,5.27874],[15.8764,-4.89801,5.27874],[15.4733,-6.31285,4.13781],[14.8187,-6.06647,5.13999],[15.4733,-6.31285,4.13781],[16.4548,-6.81317,3.19993],[14.9791,-7.75738,3.24462],[17.479,-7.26981,2.72083],[16.4548,-6.81317,3.19993],[17.7361,-5.96585,3.29892],[16.782,-5.28768,4.1334],[17.2327,-3.59988,5.38977],[18.0185,-4.61639,4.13353],[18.7265,-6.83492,2.94035],[17.7361,-5.96585,3.29892],[18.953,-5.35742,3.57851],[18.0185,-4.61639,4.13353],[18.6561,-3.07015,5.29285],[19.1092,-4.11986,4.36584],[19.9557,-6.2256,3.47611],[18.7265,-6.83492,2.94035],[18.953,-5.35742,3.57851],[20.9382,-5.59046,4.25091],[20.8521,-6.92022,3.73972],[19.9557,-6.2256,3.47611],[20.9382,-5.59046,4.25091],[20.951,-4.17641,5.11784],[21.704,-5.19024,5.09923],[19.1092,-4.11986,4.36584],[19.8246,-3.24266,5.25542],[20.012,-4.84165,4.14319],[19.3363,-2.06079,6.21774],[20.8106,-2.72012,6.20281],[19.8246,-3.24266,5.25542],[20.951,-4.17641,5.11784],[22.0336,-4.0168,6.25406],[21.704,-5.19024,5.09923],[22.0336,-4.0168,6.25406],[22.0676,-2.39264,7.42478],[22.8293,-3.3684,7.75439],[20.4032,-0.88261,7.44545],[21.2986,-0.622961,8.16099],[20.8106,-2.72012,6.20281],[21.9071,-0.171183,9.02198],[22.0766,-1.09454,8.40548],[21.2986,-0.622961,8.16099],[22.6615,-2.00572,8.46087],[22.8293,-3.3684,7.75439],[22.0676,-2.39264,7.42478],[22.3877,-0.651995,9.14201],[22.0766,-1.09454,8.40548],[21.9071,-0.171183,9.02198],[22.6615,-2.00572,8.46087],[22.9458,-0.775513,9.91885],[23.4167,-2.66611,9.45123],[22.3877,-0.651995,9.14201],[21.9071,-0.171183,9.02198],[22.3791,-0.141675,9.59034],[22.3791,-0.141675,9.59034],[21.8847,0.556272,9.66121],[22.1494,1.12718,10.5121],[22.2247,1.64356,11.0853],[22.7491,1.10869,11.3104],[22.1494,1.12718,10.5121],[23.2019,0.0297008,11.0682],[22.9458,-0.775513,9.91885],[22.7086,0.297743,10.4532],[23.4468,0.846043,12.3668],[23.7074,-0.316288,11.8638],[23.2019,0.0297008,11.0682],[23.2549,1.91682,12.9979],[23.6711,1.49859,13.4766],[23.4468,0.846043,12.3668],[23.0366,2.738,13.5018],[23.2549,1.91682,12.9979],[22.6938,2.40602,12.5474],[22.9393,1.67446,12.1644],[22.7491,1.10869,11.3104],[22.455,1.97678,11.7276],[22.0414,2.71226,12.0452],[22.455,1.97678,11.7276],[21.9399,2.18664,11.3452],[22.6938,2.40602,12.5474],[22.2878,3.26164,12.973],[23.0366,2.738,13.5018],[22.2878,3.26164,12.973],[21.5854,3.49753,12.4529],[21.7377,4.02079,13.204],[21.1488,2.77252,11.3571],[22.0414,2.71226,12.0452],[21.9399,2.18664,11.3452],[21.3064,4.17529,12.9946],[21.5854,3.49753,12.4529],[20.9048,3.86392,12.3738],[21.3064,4.17529,12.9946],[20.9048,3.86392,12.3738],[20.7478,4.65133,13.2372],[20.1404,3.16886,11.2648],[20.4628,3.59868,11.8405],[21.1488,2.77252,11.3571],[19.896,3.73507,11.7882],[20.4628,3.59868,11.8405],[20.1404,3.16886,11.2648],[20.1219,4.25563,12.4784],[20.7478,4.65133,13.2372],[20.9048,3.86392,12.3738],[21.3974,4.74894,13.8434],[21.3064,4.17529,12.9946],[20.7478,4.65133,13.2372],[20.9658,5.42012,14.3974],[21.4456,5.35325,14.7427],[21.3974,4.74894,13.8434],[20.3564,5.64254,14.3593],[20.709,5.15812,13.862],[20.1039,5.15921,13.6013],[20.9658,5.42012,14.3974],[20.8938,6.01387,15.2662],[21.4456,5.35325,14.7427],[20.3564,5.64254,14.3593],[19.3949,5.70594,14.1471],[20.0825,6.11684,14.9157],[20.0825,6.11684,14.9157],[19.3949,5.70594,14.1471],[19.1755,6.82958,15.6725],[20.8938,6.01387,15.2662],[20.6279,6.90369,16.4932],[21.5024,6.51792,16.6432],[20.0825,6.11684,14.9157],[19.1755,6.82958,15.6725],[20.1983,6.52328,15.574],[19.8002,8.11442,18.1444],[21.0176,7.32725,17.5592],[20.6279,6.90369,16.4932],[18.3091,8.36097,17.8913],[19.0315,8.95325,19.1746],[19.8002,8.11442,18.1444],[17.2788,8.69729,18.0566],[18.121,8.94225,18.7259],[18.3091,8.36097,17.8913],[16.4099,9.14261,18.1951],[16.8309,9.51378,19.0402],[17.2788,8.69729,18.0566],[16.084,9.94725,18.9627],[16.4099,9.14261,18.1951],[15.8284,9.68409,17.9482],[15.484,10.5766,18.6622],[16.084,9.94725,18.9627],[15.8284,9.68409,17.9482],[15.0649,11.2597,18.3665],[15.0859,11.4133,19.3901],[15.484,10.5766,18.6622],[15.4044,10.5159,17.4607],[15.2622,11.049,16.3889],[14.829,11.7233,17.503],[15.0649,11.2597,18.3665],[14.584,12.1196,18.7815],[15.0859,11.4133,19.3901],[13.851,13.1232,19.3896],[14.584,12.1196,18.7815],[14.0994,12.8748,17.861],[14.0994,12.8748,17.861],[13.4164,13.8204,16.9211],[13.2761,13.8372,18.4341],[12.5599,14.8929,15.687],[13.4164,13.8204,16.9211],[13.6253,13.7994,15.3534],[13.6253,13.7994,15.3534],[13.2449,14.4441,13.6479],[12.5599,14.8929,15.687],[14.5643,12.9983,12.7428],[13.7038,14.2756,10.9753],[13.2449,14.4441,13.6479],[14.5643,12.9983,12.7428],[15.1644,12.509,10.9102],[13.7038,14.2756,10.9753],[16.1973,10.9382,10.9377],[15.9181,11.7143,9.28496],[15.1644,12.509,10.9102],[15.61,12.4057,7.45196],[15.9181,11.7143,9.28496],[16.6629,10.7825,7.69171],[17.4226,9.2221,8.37128],[16.8325,10.1094,9.58403],[17.5755,8.30064,10.0449],[17.4226,9.2221,8.37128],[18.0569,7.79426,7.94207],[17.6952,8.98524,6.46134],[17.0281,10.3922,6.04559],[16.2829,11.583,5.90365],[16.6629,10.7825,7.69171],[17.0281,10.3922,6.04559],[17.2178,10.0838,4.04756],[16.2829,11.583,5.90365],[17.2178,10.0838,4.04756],[18.1017,8.24369,4.35265],[17.7767,8.95186,2.60021],[18.6724,6.60112,4.89293],[18.4701,7.07851,2.17675],[18.1017,8.24369,4.35265],[18.6724,6.60112,4.89293],[18.679,6.1257,6.97576],[19.0397,5.06587,5.10419],[18.2994,7.59095,6.1354],[17.6952,8.98524,6.46134],[18.0569,7.79426,7.94207],[18.8575,4.69796,8.40521],[18.679,6.1257,6.97576],[18.3463,6.31078,9.43717],[18.0569,7.79426,7.94207],[17.4226,9.2221,8.37128],[17.5755,8.30064,10.0449],[18.344,5.51289,10.917],[18.3463,6.31078,9.43717],[17.9717,6.55882,11.3447],[18.1538,5.56836,11.8377],[18.344,5.51289,10.917],[17.9717,6.55882,11.3447],[17.1562,8.35386,12.3345],[17.5755,8.30064,10.0449],[16.8943,9.56553,11.0584],[17.6284,6.85926,12.6119],[17.9135,5.93358,12.5147],[17.9717,6.55882,11.3447],[17.6284,6.85926,12.6119],[17.6354,6.21326,13.3376],[17.9135,5.93358,12.5147],[17.31,7.18743,13.4401],[17.6354,6.21326,13.3376],[17.6284,6.85926,12.6119],[17.31,7.18743,13.4401],[17.3611,6.31088,14.1136],[17.6354,6.21326,13.3376],[17.6354,6.21326,13.3376],[17.3611,6.31088,14.1136],[17.6174,5.62912,13.89],[17.6174,5.62912,13.89],[17.8479,5.34801,13.3059],[17.6354,6.21326,13.3376],[17.4168,5.41883,14.5352],[17.077,5.27798,15.2562],[17.5254,4.2533,14.8074],[17.5254,4.2533,14.8074],[17.077,5.27798,15.2562],[17.1787,4.09827,15.5173],[17.8449,4.03095,14.0596],[17.5254,4.2533,14.8074],[17.7933,3.16659,14.4383],[17.8449,4.03095,14.0596],[18.0425,3.4562,13.4985],[17.9879,4.43899,13.348],[18.2448,3.96053,12.48],[17.9879,4.43899,13.348],[18.0425,3.4562,13.4985],[17.8479,5.34801,13.3059],[17.6174,5.62912,13.89],[17.7273,4.85329,14.0268],[17.9135,5.93358,12.5147],[17.6354,6.21326,13.3376],[17.8479,5.34801,13.3059],[18.1538,5.56836,11.8377],[17.9717,6.55882,11.3447],[17.9135,5.93358,12.5147],[18.1538,5.56836,11.8377],[18.3264,4.78087,11.7013],[18.344,5.51289,10.917],[18.0974,5.00714,12.5551],[17.9879,4.43899,13.348],[18.2448,3.96053,12.48],[18.3264,4.78087,11.7013],[18.4957,3.89764,11.386],[18.5044,4.68559,10.9467],[18.4008,3.27377,11.9918],[18.5373,3.07489,11.3576],[18.4957,3.89764,11.386],[18.6153,2.33259,10.8436],[18.6844,3.33268,10.5893],[18.5373,3.07489,11.3576],[18.3895,1.67517,11.7894],[18.5132,1.25977,10.8809],[18.6153,2.33259,10.8436],[18.3895,1.67517,11.7894],[18.1889,1.17345,12.485],[18.2739,0.812535,11.784],[18.1889,1.17345,12.485],[17.986,1.16825,13.3408],[17.9725,0.315587,12.6879],[17.9928,2.26448,13.7368],[17.7711,1.24603,14.2775],[17.986,1.16825,13.3408],[18.2214,1.94247,12.7],[18.4163,2.53045,11.9203],[18.2371,2.90251,12.7494],[18.2448,3.96053,12.48],[18.0425,3.4562,13.4985],[18.2371,2.90251,12.7494],[18.0425,3.4562,13.4985],[17.8449,4.03095,14.0596],[17.7933,3.16659,14.4383],[17.7711,1.24603,14.2775],[17.9928,2.26448,13.7368],[17.6672,2.01194,14.8736],[17.5254,4.2533,14.8074],[17.4573,2.98019,15.3631],[17.7933,3.16659,14.4383],[17.3123,1.81571,15.8297],[17.3735,0.663242,15.2717],[17.6672,2.01194,14.8736],[17.3123,1.81571,15.8297],[16.9564,2.37958,16.3256],[16.9288,1.51928,16.6159],[17.1787,4.09827,15.5173],[17.4573,2.98019,15.3631],[17.5254,4.2533,14.8074],[17.1787,4.09827,15.5173],[17.077,5.27798,15.2562],[16.8689,4.85268,15.6667],[16.6785,5.37194,15.6526],[16.4943,4.25159,15.9904],[16.8689,4.85268,15.6667],[16.1162,3.72402,15.9201],[16.305,3.09392,16.3014],[16.4943,4.25159,15.9904],[16.4599,2.59385,16.5525],[16.9564,2.37958,16.3256],[16.739,3.338,16.1883],[16.4599,2.59385,16.5525],[16.1466,2.07285,16.787],[16.557,2.00693,16.7972],[16.1466,2.07285,16.787],[15.8531,2.0027,16.5719],[15.7581,1.34098,17.026],[15.8531,2.0027,16.5719],[15.4985,1.36609,16.4705],[15.7581,1.34098,17.026],[15.4382,1.7811,15.5147],[14.9815,0.262527,16.3778],[15.4985,1.36609,16.4705],[15.4382,1.7811,15.5147],[15.6237,2.59836,15.1025],[15.3013,1.57032,14.6241],[15.8845,3.43801,15.4856],[15.8511,3.52864,14.712],[15.6237,2.59836,15.1025],[15.8511,3.52864,14.712],[15.8845,3.43801,15.4856],[15.9386,4.20241,15.1487],[15.8845,3.43801,15.4856],[16.0789,4.81487,15.3737],[15.9386,4.20241,15.1487],[15.9386,4.20241,15.1487],[16.0789,4.81487,15.3737],[16.127,4.68379,14.8902],[16.3094,5.26621,15.1275],[16.127,4.68379,14.8902],[16.0789,4.81487,15.3737],[16.0259,3.17418,16.0162],[15.7811,2.47174,15.967],[16.098,2.60791,16.4206],[16.305,3.09392,16.3014],[16.1162,3.72402,15.9201],[16.0259,3.17418,16.0162],[16.1162,3.72402,15.9201],[16.4943,4.25159,15.9904],[16.2661,4.95271,15.7756],[16.0789,4.81487,15.3737],[15.8845,3.43801,15.4856],[16.0744,4.46941,15.7211],[16.4943,4.25159,15.9904],[16.6785,5.37194,15.6526],[16.2661,4.95271,15.7756],[16.4689,6.84358,15.9172],[16.6785,5.37194,15.6526],[16.825,6.05102,15.4086],[16.3578,5.70868,15.7085],[16.3094,5.26621,15.1275],[16.0789,4.81487,15.3737],[16.7614,4.61843,13.7743],[17.164,5.35974,14.2041],[17.3248,4.70599,13.3606],[16.3094,5.26621,15.1275],[16.5097,5.01752,14.5172],[16.127,4.68379,14.8902],[16.127,4.68379,14.8902],[15.8511,3.52864,14.712],[15.9386,4.20241,15.1487],[15.634,2.59472,14.2602],[15.8511,3.52864,14.712],[15.9194,3.26919,13.9299],[16.7614,4.61843,13.7743],[16.5293,3.97184,13.3925],[16.2448,4.25899,14.2185],[16.5293,3.97184,13.3925],[16.9693,4.12982,13.0495],[16.6272,3.46466,12.7765],[16.7476,2.91469,12.1075],[16.2572,2.75061,12.6362],[16.6272,3.46466,12.7765],[16.2072,3.21717,13.1925],[15.8163,2.50255,13.337],[15.9194,3.26919,13.9299],[15.5127,1.55216,13.0565],[15.8163,2.50255,13.337],[15.9009,1.98288,12.5049],[16.345,2.19362,11.9351],[16.2572,2.75061,12.6362],[16.7476,2.91469,12.1075],[16.8664,2.31774,11.4029],[16.345,2.19362,11.9351],[16.7476,2.91469,12.1075],[15.9009,1.98288,12.5049],[16.0009,1.5608,11.8571],[15.6229,1.16287,12.2453],[16.0009,1.5608,11.8571],[15.8476,0.857308,11.4553],[15.6229,1.16287,12.2453],[15.8476,0.857308,11.4553],[16.1589,0.634372,10.7031],[15.6535,-0.0651969,10.9338],[16.652,1.04722,10.4355],[16.423,0.406454,10.0968],[16.1589,0.634372,10.7031],[16.652,1.04722,10.4355],[17.0342,1.73755,10.682],[17.2329,1.17813,9.97736],[16.345,2.19362,11.9351],[16.8664,2.31774,11.4029],[16.3971,1.49837,11.1975],[17.4574,2.42878,10.961],[17.6803,1.84171,10.2525],[17.0342,1.73755,10.682],[17.3124,3.00417,11.6424],[16.8664,2.31774,11.4029],[16.7476,2.91469,12.1075],[17.4574,2.42878,10.961],[17.8286,2.9928,11.2651],[18.1086,2.51795,10.6667],[17.3124,3.00417,11.6424],[17.1647,3.59243,12.3513],[17.8733,3.64258,11.9333],[18.1086,2.51795,10.6667],[17.8286,2.9928,11.2651],[18.4399,3.19057,11.2373],[18.9191,2.54372,10.4767],[18.4399,3.19057,11.2373],[19.2985,3.31997,11.2768],[19.3646,4.12755,12.1623],[19.896,3.73507,11.7882],[19.2985,3.31997,11.2768],[19.2817,4.89519,13.0828],[19.3646,4.12755,12.1623],[18.8068,4.47534,12.5496],[18.6677,3.89552,11.9346],[17.8733,3.64258,11.9333],[18.2087,4.36375,12.5529],[18.5071,4.91916,13.1104],[19.2817,4.89519,13.0828],[18.8068,4.47534,12.5496],[17.559,4.23608,12.7159],[17.8863,4.83059,13.1856],[18.2087,4.36375,12.5529],[18.1607,5.36138,13.7061],[17.8863,4.83059,13.1856],[17.6439,5.23501,13.7481],[18.5071,4.91916,13.1104],[18.7632,5.38548,13.6542],[19.2817,4.89519,13.0828],[19.2817,4.89519,13.0828],[18.7632,5.38548,13.6542],[19.3949,5.70594,14.1471],[18.7009,6.26221,14.7674],[19.1755,6.82958,15.6725],[19.3949,5.70594,14.1471],[18.7009,6.26221,14.7674],[18.1508,6.33556,14.9013],[18.4831,6.71382,15.3638],[18.1607,5.36138,13.7061],[17.7801,5.76391,14.3177],[18.4819,5.84694,14.2561],[17.5429,6.38615,15.1464],[17.7801,5.76391,14.3177],[17.3218,5.93108,14.706],[18.1508,6.33556,14.9013],[17.9587,6.824,15.5656],[18.4831,6.71382,15.3638],[16.9113,6.04566,15.1276],[17.3915,6.91257,15.833],[17.5429,6.38615,15.1464],[16.9113,6.04566,15.1276],[16.8328,7.06429,16.1377],[17.3915,6.91257,15.833],[17.8107,7.32847,16.2844],[18.4012,7.12211,15.9541],[17.9587,6.824,15.5656],[17.8107,7.32847,16.2844],[17.4816,7.94894,17.1305],[18.4593,7.72702,16.9494],[16.6697,7.72365,16.8077],[16.6649,8.44851,17.5375],[17.4816,7.94894,17.1305],[17.3915,6.91257,15.833],[16.8328,7.06429,16.1377],[17.2201,7.37199,16.4226],[16.4689,6.84358,15.9172],[16.8328,7.06429,16.1377],[16.9113,6.04566,15.1276],[16.2693,7.39558,16.1566],[16.4689,6.84358,15.9172],[16.4077,7.49201,15.6993],[16.6697,7.72365,16.8077],[16.4209,7.28058,16.3544],[16.227,7.74859,16.5613],[16.1914,7.9313,16.1256],[16.2693,7.39558,16.1566],[16.4077,7.49201,15.6993],[16.0565,8.40755,16.6889],[16.2695,8.16404,17.0434],[16.227,7.74859,16.5613],[16.3402,8.0722,15.6041],[16.1036,8.72259,15.9935],[16.1914,7.9313,16.1256],[16.1032,8.81373,17.4132],[16.0565,8.40755,16.6889],[15.8254,9.3693,16.869],[16.1036,8.72259,15.9935],[16.0853,9.3233,15.4561],[15.8877,9.52912,16.0664],[15.4044,10.5159,17.4607],[15.8254,9.3693,16.869],[15.6375,10.1165,16.4665],[15.4044,10.5159,17.4607],[15.6375,10.1165,16.4665],[15.2622,11.049,16.3889],[15.2622,11.049,16.3889],[14.4893,12.4955,16.1036],[14.829,11.7233,17.503],[15.2361,11.7616,14.025],[14.2583,13.1462,14.3928],[14.4893,12.4955,16.1036],[15.2361,11.7616,14.025],[16.0117,10.4784,13.5771],[15.6425,11.4911,12.4211],[15.7614,10.2128,15.5537],[15.7388,10.6707,14.6074],[15.3257,11.2536,15.3267],[16.0853,9.3233,15.4561],[15.7614,10.2128,15.5537],[15.8877,9.52912,16.0664],[16.0853,9.3233,15.4561],[16.1036,8.72259,15.9935],[16.4001,8.59391,15.0815],[16.5982,9.21451,13.483],[16.0117,10.4784,13.5771],[16.2014,9.59645,14.5798],[16.5982,9.21451,13.483],[16.927,8.12582,13.7672],[17.1562,8.35386,12.3345],[16.927,8.12582,13.7672],[16.7326,8.07205,14.5434],[16.9914,7.22214,14.4444],[16.7326,8.07205,14.5434],[16.6016,8.71525,14.2936],[16.4001,8.59391,15.0815] ], faces=[[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],[4590,4591,4592],[4593,4594,4595],[4596,4597,4598],[4599,4600,4601],[4602,4603,4604],[4605,4606,4607],[4608,4609,4610],[4611,4612,4613],[4614,4615,4616],[4617,4618,4619],[4620,4621,4622],[4623,4624,4625],[4626,4627,4628],[4629,4630,4631],[4632,4633,4634],[4635,4636,4637],[4638,4639,4640],[4641,4642,4643],[4644,4645,4646],[4647,4648,4649],[4650,4651,4652],[4653,4654,4655],[4656,4657,4658],[4659,4660,4661],[4662,4663,4664],[4665,4666,4667],[4668,4669,4670],[4671,4672,4673],[4674,4675,4676],[4677,4678,4679],[4680,4681,4682],[4683,4684,4685],[4686,4687,4688],[4689,4690,4691],[4692,4693,4694],[4695,4696,4697],[4698,4699,4700],[4701,4702,4703],[4704,4705,4706],[4707,4708,4709],[4710,4711,4712],[4713,4714,4715],[4716,4717,4718],[4719,4720,4721],[4722,4723,4724],[4725,4726,4727],[4728,4729,4730],[4731,4732,4733],[4734,4735,4736],[4737,4738,4739],[4740,4741,4742],[4743,4744,4745],[4746,4747,4748],[4749,4750,4751],[4752,4753,4754],[4755,4756,4757],[4758,4759,4760],[4761,4762,4763],[4764,4765,4766],[4767,4768,4769],[4770,4771,4772],[4773,4774,4775],[4776,4777,4778],[4779,4780,4781],[4782,4783,4784],[4785,4786,4787],[4788,4789,4790],[4791,4792,4793],[4794,4795,4796],[4797,4798,4799],[4800,4801,4802],[4803,4804,4805],[4806,4807,4808],[4809,4810,4811],[4812,4813,4814],[4815,4816,4817],[4818,4819,4820],[4821,4822,4823],[4824,4825,4826],[4827,4828,4829],[4830,4831,4832],[4833,4834,4835],[4836,4837,4838],[4839,4840,4841],[4842,4843,4844],[4845,4846,4847],[4848,4849,4850],[4851,4852,4853],[4854,4855,4856],[4857,4858,4859],[4860,4861,4862],[4863,4864,4865],[4866,4867,4868],[4869,4870,4871],[4872,4873,4874],[4875,4876,4877],[4878,4879,4880],[4881,4882,4883],[4884,4885,4886],[4887,4888,4889],[4890,4891,4892],[4893,4894,4895],[4896,4897,4898],[4899,4900,4901],[4902,4903,4904],[4905,4906,4907],[4908,4909,4910],[4911,4912,4913],[4914,4915,4916],[4917,4918,4919],[4920,4921,4922],[4923,4924,4925],[4926,4927,4928],[4929,4930,4931],[4932,4933,4934],[4935,4936,4937],[4938,4939,4940],[4941,4942,4943],[4944,4945,4946],[4947,4948,4949],[4950,4951,4952],[4953,4954,4955],[4956,4957,4958],[4959,4960,4961],[4962,4963,4964],[4965,4966,4967],[4968,4969,4970],[4971,4972,4973],[4974,4975,4976],[4977,4978,4979],[4980,4981,4982],[4983,4984,4985],[4986,4987,4988],[4989,4990,4991],[4992,4993,4994],[4995,4996,4997],[4998,4999,5000],[5001,5002,5003],[5004,5005,5006],[5007,5008,5009],[5010,5011,5012],[5013,5014,5015],[5016,5017,5018],[5019,5020,5021],[5022,5023,5024],[5025,5026,5027],[5028,5029,5030],[5031,5032,5033],[5034,5035,5036],[5037,5038,5039],[5040,5041,5042],[5043,5044,5045],[5046,5047,5048],[5049,5050,5051],[5052,5053,5054],[5055,5056,5057],[5058,5059,5060],[5061,5062,5063],[5064,5065,5066],[5067,5068,5069],[5070,5071,5072],[5073,5074,5075],[5076,5077,5078],[5079,5080,5081],[5082,5083,5084],[5085,5086,5087],[5088,5089,5090],[5091,5092,5093],[5094,5095,5096],[5097,5098,5099],[5100,5101,5102],[5103,5104,5105],[5106,5107,5108],[5109,5110,5111],[5112,5113,5114],[5115,5116,5117],[5118,5119,5120],[5121,5122,5123],[5124,5125,5126],[5127,5128,5129],[5130,5131,5132],[5133,5134,5135],[5136,5137,5138],[5139,5140,5141],[5142,5143,5144],[5145,5146,5147],[5148,5149,5150],[5151,5152,5153],[5154,5155,5156],[5157,5158,5159],[5160,5161,5162],[5163,5164,5165],[5166,5167,5168],[5169,5170,5171],[5172,5173,5174],[5175,5176,5177],[5178,5179,5180],[5181,5182,5183],[5184,5185,5186],[5187,5188,5189],[5190,5191,5192],[5193,5194,5195],[5196,5197,5198],[5199,5200,5201],[5202,5203,5204],[5205,5206,5207],[5208,5209,5210],[5211,5212,5213],[5214,5215,5216],[5217,5218,5219],[5220,5221,5222],[5223,5224,5225],[5226,5227,5228],[5229,5230,5231],[5232,5233,5234],[5235,5236,5237],[5238,5239,5240],[5241,5242,5243],[5244,5245,5246],[5247,5248,5249],[5250,5251,5252],[5253,5254,5255],[5256,5257,5258],[5259,5260,5261],[5262,5263,5264],[5265,5266,5267],[5268,5269,5270],[5271,5272,5273],[5274,5275,5276],[5277,5278,5279],[5280,5281,5282],[5283,5284,5285],[5286,5287,5288],[5289,5290,5291],[5292,5293,5294],[5295,5296,5297],[5298,5299,5300],[5301,5302,5303],[5304,5305,5306],[5307,5308,5309],[5310,5311,5312],[5313,5314,5315],[5316,5317,5318],[5319,5320,5321],[5322,5323,5324],[5325,5326,5327],[5328,5329,5330],[5331,5332,5333],[5334,5335,5336],[5337,5338,5339],[5340,5341,5342],[5343,5344,5345],[5346,5347,5348],[5349,5350,5351],[5352,5353,5354],[5355,5356,5357],[5358,5359,5360],[5361,5362,5363],[5364,5365,5366],[5367,5368,5369],[5370,5371,5372],[5373,5374,5375],[5376,5377,5378],[5379,5380,5381],[5382,5383,5384],[5385,5386,5387],[5388,5389,5390],[5391,5392,5393],[5394,5395,5396],[5397,5398,5399],[5400,5401,5402],[5403,5404,5405],[5406,5407,5408],[5409,5410,5411],[5412,5413,5414],[5415,5416,5417],[5418,5419,5420],[5421,5422,5423],[5424,5425,5426],[5427,5428,5429],[5430,5431,5432],[5433,5434,5435],[5436,5437,5438],[5439,5440,5441],[5442,5443,5444],[5445,5446,5447],[5448,5449,5450],[5451,5452,5453],[5454,5455,5456],[5457,5458,5459],[5460,5461,5462],[5463,5464,5465],[5466,5467,5468],[5469,5470,5471],[5472,5473,5474],[5475,5476,5477],[5478,5479,5480],[5481,5482,5483],[5484,5485,5486],[5487,5488,5489],[5490,5491,5492],[5493,5494,5495],[5496,5497,5498],[5499,5500,5501],[5502,5503,5504],[5505,5506,5507],[5508,5509,5510],[5511,5512,5513],[5514,5515,5516],[5517,5518,5519],[5520,5521,5522],[5523,5524,5525],[5526,5527,5528],[5529,5530,5531],[5532,5533,5534],[5535,5536,5537],[5538,5539,5540],[5541,5542,5543],[5544,5545,5546],[5547,5548,5549],[5550,5551,5552],[5553,5554,5555],[5556,5557,5558],[5559,5560,5561],[5562,5563,5564],[5565,5566,5567],[5568,5569,5570],[5571,5572,5573],[5574,5575,5576],[5577,5578,5579],[5580,5581,5582],[5583,5584,5585],[5586,5587,5588],[5589,5590,5591],[5592,5593,5594],[5595,5596,5597],[5598,5599,5600],[5601,5602,5603],[5604,5605,5606],[5607,5608,5609],[5610,5611,5612],[5613,5614,5615],[5616,5617,5618],[5619,5620,5621],[5622,5623,5624],[5625,5626,5627],[5628,5629,5630],[5631,5632,5633],[5634,5635,5636],[5637,5638,5639],[5640,5641,5642],[5643,5644,5645],[5646,5647,5648],[5649,5650,5651],[5652,5653,5654],[5655,5656,5657],[5658,5659,5660],[5661,5662,5663],[5664,5665,5666],[5667,5668,5669],[5670,5671,5672],[5673,5674,5675],[5676,5677,5678],[5679,5680,5681],[5682,5683,5684],[5685,5686,5687],[5688,5689,5690],[5691,5692,5693],[5694,5695,5696],[5697,5698,5699],[5700,5701,5702],[5703,5704,5705],[5706,5707,5708],[5709,5710,5711],[5712,5713,5714],[5715,5716,5717],[5718,5719,5720],[5721,5722,5723],[5724,5725,5726],[5727,5728,5729],[5730,5731,5732],[5733,5734,5735],[5736,5737,5738],[5739,5740,5741],[5742,5743,5744],[5745,5746,5747],[5748,5749,5750],[5751,5752,5753],[5754,5755,5756],[5757,5758,5759],[5760,5761,5762],[5763,5764,5765],[5766,5767,5768],[5769,5770,5771],[5772,5773,5774],[5775,5776,5777],[5778,5779,5780],[5781,5782,5783],[5784,5785,5786],[5787,5788,5789],[5790,5791,5792],[5793,5794,5795],[5796,5797,5798],[5799,5800,5801],[5802,5803,5804],[5805,5806,5807],[5808,5809,5810],[5811,5812,5813],[5814,5815,5816],[5817,5818,5819],[5820,5821,5822],[5823,5824,5825],[5826,5827,5828],[5829,5830,5831],[5832,5833,5834],[5835,5836,5837],[5838,5839,5840],[5841,5842,5843],[5844,5845,5846],[5847,5848,5849],[5850,5851,5852],[5853,5854,5855],[5856,5857,5858],[5859,5860,5861],[5862,5863,5864],[5865,5866,5867],[5868,5869,5870],[5871,5872,5873],[5874,5875,5876],[5877,5878,5879],[5880,5881,5882],[5883,5884,5885],[5886,5887,5888],[5889,5890,5891],[5892,5893,5894],[5895,5896,5897],[5898,5899,5900],[5901,5902,5903],[5904,5905,5906],[5907,5908,5909],[5910,5911,5912],[5913,5914,5915],[5916,5917,5918],[5919,5920,5921],[5922,5923,5924],[5925,5926,5927],[5928,5929,5930],[5931,5932,5933],[5934,5935,5936],[5937,5938,5939],[5940,5941,5942],[5943,5944,5945],[5946,5947,5948],[5949,5950,5951],[5952,5953,5954],[5955,5956,5957],[5958,5959,5960],[5961,5962,5963],[5964,5965,5966],[5967,5968,5969],[5970,5971,5972],[5973,5974,5975],[5976,5977,5978],[5979,5980,5981],[5982,5983,5984],[5985,5986,5987],[5988,5989,5990],[5991,5992,5993],[5994,5995,5996],[5997,5998,5999],[6000,6001,6002],[6003,6004,6005],[6006,6007,6008],[6009,6010,6011],[6012,6013,6014],[6015,6016,6017],[6018,6019,6020],[6021,6022,6023],[6024,6025,6026],[6027,6028,6029],[6030,6031,6032],[6033,6034,6035],[6036,6037,6038],[6039,6040,6041],[6042,6043,6044],[6045,6046,6047],[6048,6049,6050],[6051,6052,6053],[6054,6055,6056],[6057,6058,6059],[6060,6061,6062],[6063,6064,6065],[6066,6067,6068],[6069,6070,6071],[6072,6073,6074],[6075,6076,6077],[6078,6079,6080],[6081,6082,6083],[6084,6085,6086],[6087,6088,6089],[6090,6091,6092],[6093,6094,6095],[6096,6097,6098],[6099,6100,6101],[6102,6103,6104],[6105,6106,6107],[6108,6109,6110],[6111,6112,6113],[6114,6115,6116],[6117,6118,6119],[6120,6121,6122],[6123,6124,6125],[6126,6127,6128],[6129,6130,6131],[6132,6133,6134],[6135,6136,6137],[6138,6139,6140],[6141,6142,6143],[6144,6145,6146],[6147,6148,6149],[6150,6151,6152],[6153,6154,6155],[6156,6157,6158],[6159,6160,6161],[6162,6163,6164],[6165,6166,6167],[6168,6169,6170],[6171,6172,6173],[6174,6175,6176],[6177,6178,6179],[6180,6181,6182],[6183,6184,6185],[6186,6187,6188],[6189,6190,6191],[6192,6193,6194],[6195,6196,6197],[6198,6199,6200],[6201,6202,6203],[6204,6205,6206],[6207,6208,6209],[6210,6211,6212],[6213,6214,6215],[6216,6217,6218],[6219,6220,6221],[6222,6223,6224],[6225,6226,6227],[6228,6229,6230],[6231,6232,6233],[6234,6235,6236],[6237,6238,6239],[6240,6241,6242],[6243,6244,6245],[6246,6247,6248],[6249,6250,6251],[6252,6253,6254],[6255,6256,6257],[6258,6259,6260],[6261,6262,6263],[6264,6265,6266],[6267,6268,6269],[6270,6271,6272],[6273,6274,6275],[6276,6277,6278],[6279,6280,6281],[6282,6283,6284],[6285,6286,6287],[6288,6289,6290],[6291,6292,6293],[6294,6295,6296],[6297,6298,6299],[6300,6301,6302],[6303,6304,6305],[6306,6307,6308],[6309,6310,6311],[6312,6313,6314],[6315,6316,6317],[6318,6319,6320],[6321,6322,6323],[6324,6325,6326],[6327,6328,6329],[6330,6331,6332],[6333,6334,6335],[6336,6337,6338],[6339,6340,6341],[6342,6343,6344],[6345,6346,6347],[6348,6349,6350],[6351,6352,6353],[6354,6355,6356],[6357,6358,6359],[6360,6361,6362],[6363,6364,6365],[6366,6367,6368],[6369,6370,6371],[6372,6373,6374],[6375,6376,6377],[6378,6379,6380],[6381,6382,6383],[6384,6385,6386],[6387,6388,6389],[6390,6391,6392],[6393,6394,6395],[6396,6397,6398],[6399,6400,6401],[6402,6403,6404],[6405,6406,6407],[6408,6409,6410],[6411,6412,6413],[6414,6415,6416],[6417,6418,6419],[6420,6421,6422],[6423,6424,6425],[6426,6427,6428],[6429,6430,6431],[6432,6433,6434],[6435,6436,6437],[6438,6439,6440],[6441,6442,6443],[6444,6445,6446],[6447,6448,6449],[6450,6451,6452],[6453,6454,6455],[6456,6457,6458],[6459,6460,6461],[6462,6463,6464],[6465,6466,6467],[6468,6469,6470],[6471,6472,6473],[6474,6475,6476],[6477,6478,6479],[6480,6481,6482],[6483,6484,6485],[6486,6487,6488],[6489,6490,6491],[6492,6493,6494],[6495,6496,6497],[6498,6499,6500],[6501,6502,6503],[6504,6505,6506],[6507,6508,6509],[6510,6511,6512],[6513,6514,6515],[6516,6517,6518],[6519,6520,6521],[6522,6523,6524],[6525,6526,6527],[6528,6529,6530],[6531,6532,6533],[6534,6535,6536],[6537,6538,6539],[6540,6541,6542],[6543,6544,6545],[6546,6547,6548],[6549,6550,6551],[6552,6553,6554],[6555,6556,6557],[6558,6559,6560],[6561,6562,6563],[6564,6565,6566],[6567,6568,6569],[6570,6571,6572],[6573,6574,6575],[6576,6577,6578],[6579,6580,6581],[6582,6583,6584],[6585,6586,6587],[6588,6589,6590],[6591,6592,6593],[6594,6595,6596],[6597,6598,6599],[6600,6601,6602],[6603,6604,6605],[6606,6607,6608],[6609,6610,6611],[6612,6613,6614],[6615,6616,6617],[6618,6619,6620],[6621,6622,6623],[6624,6625,6626],[6627,6628,6629],[6630,6631,6632],[6633,6634,6635],[6636,6637,6638],[6639,6640,6641],[6642,6643,6644],[6645,6646,6647],[6648,6649,6650],[6651,6652,6653],[6654,6655,6656],[6657,6658,6659],[6660,6661,6662],[6663,6664,6665],[6666,6667,6668],[6669,6670,6671],[6672,6673,6674],[6675,6676,6677],[6678,6679,6680],[6681,6682,6683],[6684,6685,6686],[6687,6688,6689],[6690,6691,6692],[6693,6694,6695],[6696,6697,6698],[6699,6700,6701],[6702,6703,6704],[6705,6706,6707],[6708,6709,6710],[6711,6712,6713],[6714,6715,6716],[6717,6718,6719],[6720,6721,6722],[6723,6724,6725],[6726,6727,6728],[6729,6730,6731],[6732,6733,6734],[6735,6736,6737],[6738,6739,6740],[6741,6742,6743],[6744,6745,6746],[6747,6748,6749],[6750,6751,6752],[6753,6754,6755],[6756,6757,6758],[6759,6760,6761],[6762,6763,6764],[6765,6766,6767],[6768,6769,6770],[6771,6772,6773],[6774,6775,6776],[6777,6778,6779],[6780,6781,6782],[6783,6784,6785],[6786,6787,6788],[6789,6790,6791],[6792,6793,6794],[6795,6796,6797],[6798,6799,6800],[6801,6802,6803],[6804,6805,6806],[6807,6808,6809],[6810,6811,6812],[6813,6814,6815],[6816,6817,6818],[6819,6820,6821],[6822,6823,6824],[6825,6826,6827],[6828,6829,6830],[6831,6832,6833],[6834,6835,6836],[6837,6838,6839],[6840,6841,6842],[6843,6844,6845],[6846,6847,6848],[6849,6850,6851],[6852,6853,6854],[6855,6856,6857],[6858,6859,6860],[6861,6862,6863],[6864,6865,6866],[6867,6868,6869],[6870,6871,6872],[6873,6874,6875],[6876,6877,6878],[6879,6880,6881],[6882,6883,6884],[6885,6886,6887],[6888,6889,6890],[6891,6892,6893],[6894,6895,6896],[6897,6898,6899],[6900,6901,6902],[6903,6904,6905],[6906,6907,6908],[6909,6910,6911],[6912,6913,6914],[6915,6916,6917],[6918,6919,6920],[6921,6922,6923],[6924,6925,6926],[6927,6928,6929],[6930,6931,6932],[6933,6934,6935],[6936,6937,6938],[6939,6940,6941],[6942,6943,6944],[6945,6946,6947],[6948,6949,6950],[6951,6952,6953],[6954,6955,6956],[6957,6958,6959],[6960,6961,6962],[6963,6964,6965],[6966,6967,6968],[6969,6970,6971],[6972,6973,6974],[6975,6976,6977],[6978,6979,6980],[6981,6982,6983],[6984,6985,6986],[6987,6988,6989],[6990,6991,6992],[6993,6994,6995],[6996,6997,6998],[6999,7000,7001],[7002,7003,7004],[7005,7006,7007],[7008,7009,7010],[7011,7012,7013],[7014,7015,7016],[7017,7018,7019],[7020,7021,7022],[7023,7024,7025],[7026,7027,7028],[7029,7030,7031],[7032,7033,7034],[7035,7036,7037],[7038,7039,7040],[7041,7042,7043],[7044,7045,7046],[7047,7048,7049],[7050,7051,7052],[7053,7054,7055],[7056,7057,7058],[7059,7060,7061],[7062,7063,7064],[7065,7066,7067],[7068,7069,7070],[7071,7072,7073],[7074,7075,7076],[7077,7078,7079],[7080,7081,7082],[7083,7084,7085],[7086,7087,7088],[7089,7090,7091],[7092,7093,7094],[7095,7096,7097],[7098,7099,7100],[7101,7102,7103],[7104,7105,7106],[7107,7108,7109],[7110,7111,7112],[7113,7114,7115],[7116,7117,7118],[7119,7120,7121],[7122,7123,7124],[7125,7126,7127],[7128,7129,7130],[7131,7132,7133],[7134,7135,7136],[7137,7138,7139],[7140,7141,7142],[7143,7144,7145],[7146,7147,7148],[7149,7150,7151],[7152,7153,7154],[7155,7156,7157],[7158,7159,7160],[7161,7162,7163],[7164,7165,7166],[7167,7168,7169],[7170,7171,7172],[7173,7174,7175],[7176,7177,7178],[7179,7180,7181],[7182,7183,7184],[7185,7186,7187],[7188,7189,7190],[7191,7192,7193],[7194,7195,7196],[7197,7198,7199],[7200,7201,7202],[7203,7204,7205],[7206,7207,7208],[7209,7210,7211],[7212,7213,7214],[7215,7216,7217],[7218,7219,7220],[7221,7222,7223],[7224,7225,7226],[7227,7228,7229],[7230,7231,7232],[7233,7234,7235],[7236,7237,7238],[7239,7240,7241],[7242,7243,7244],[7245,7246,7247],[7248,7249,7250],[7251,7252,7253],[7254,7255,7256],[7257,7258,7259],[7260,7261,7262],[7263,7264,7265],[7266,7267,7268],[7269,7270,7271],[7272,7273,7274],[7275,7276,7277],[7278,7279,7280],[7281,7282,7283],[7284,7285,7286],[7287,7288,7289],[7290,7291,7292],[7293,7294,7295],[7296,7297,7298],[7299,7300,7301],[7302,7303,7304],[7305,7306,7307],[7308,7309,7310],[7311,7312,7313],[7314,7315,7316],[7317,7318,7319],[7320,7321,7322],[7323,7324,7325],[7326,7327,7328],[7329,7330,7331],[7332,7333,7334],[7335,7336,7337],[7338,7339,7340],[7341,7342,7343],[7344,7345,7346],[7347,7348,7349],[7350,7351,7352],[7353,7354,7355],[7356,7357,7358],[7359,7360,7361],[7362,7363,7364],[7365,7366,7367],[7368,7369,7370],[7371,7372,7373],[7374,7375,7376],[7377,7378,7379],[7380,7381,7382],[7383,7384,7385],[7386,7387,7388],[7389,7390,7391],[7392,7393,7394],[7395,7396,7397],[7398,7399,7400],[7401,7402,7403],[7404,7405,7406],[7407,7408,7409],[7410,7411,7412],[7413,7414,7415],[7416,7417,7418],[7419,7420,7421],[7422,7423,7424],[7425,7426,7427],[7428,7429,7430],[7431,7432,7433],[7434,7435,7436],[7437,7438,7439],[7440,7441,7442],[7443,7444,7445],[7446,7447,7448],[7449,7450,7451],[7452,7453,7454],[7455,7456,7457],[7458,7459,7460],[7461,7462,7463],[7464,7465,7466],[7467,7468,7469],[7470,7471,7472],[7473,7474,7475],[7476,7477,7478],[7479,7480,7481],[7482,7483,7484],[7485,7486,7487],[7488,7489,7490],[7491,7492,7493],[7494,7495,7496],[7497,7498,7499],[7500,7501,7502],[7503,7504,7505],[7506,7507,7508],[7509,7510,7511],[7512,7513,7514],[7515,7516,7517],[7518,7519,7520],[7521,7522,7523],[7524,7525,7526],[7527,7528,7529],[7530,7531,7532],[7533,7534,7535],[7536,7537,7538],[7539,7540,7541],[7542,7543,7544],[7545,7546,7547],[7548,7549,7550],[7551,7552,7553],[7554,7555,7556],[7557,7558,7559],[7560,7561,7562],[7563,7564,7565],[7566,7567,7568],[7569,7570,7571],[7572,7573,7574],[7575,7576,7577],[7578,7579,7580],[7581,7582,7583],[7584,7585,7586],[7587,7588,7589],[7590,7591,7592],[7593,7594,7595],[7596,7597,7598],[7599,7600,7601],[7602,7603,7604],[7605,7606,7607],[7608,7609,7610],[7611,7612,7613],[7614,7615,7616],[7617,7618,7619],[7620,7621,7622],[7623,7624,7625],[7626,7627,7628],[7629,7630,7631],[7632,7633,7634],[7635,7636,7637],[7638,7639,7640],[7641,7642,7643],[7644,7645,7646],[7647,7648,7649],[7650,7651,7652],[7653,7654,7655],[7656,7657,7658],[7659,7660,7661],[7662,7663,7664],[7665,7666,7667],[7668,7669,7670],[7671,7672,7673],[7674,7675,7676],[7677,7678,7679],[7680,7681,7682],[7683,7684,7685],[7686,7687,7688],[7689,7690,7691],[7692,7693,7694],[7695,7696,7697],[7698,7699,7700],[7701,7702,7703],[7704,7705,7706],[7707,7708,7709],[7710,7711,7712],[7713,7714,7715],[7716,7717,7718],[7719,7720,7721],[7722,7723,7724],[7725,7726,7727],[7728,7729,7730],[7731,7732,7733],[7734,7735,7736],[7737,7738,7739],[7740,7741,7742],[7743,7744,7745],[7746,7747,7748],[7749,7750,7751],[7752,7753,7754],[7755,7756,7757],[7758,7759,7760],[7761,7762,7763],[7764,7765,7766],[7767,7768,7769],[7770,7771,7772],[7773,7774,7775],[7776,7777,7778],[7779,7780,7781],[7782,7783,7784],[7785,7786,7787],[7788,7789,7790],[7791,7792,7793],[7794,7795,7796],[7797,7798,7799],[7800,7801,7802],[7803,7804,7805],[7806,7807,7808],[7809,7810,7811],[7812,7813,7814],[7815,7816,7817],[7818,7819,7820],[7821,7822,7823],[7824,7825,7826],[7827,7828,7829],[7830,7831,7832],[7833,7834,7835],[7836,7837,7838],[7839,7840,7841],[7842,7843,7844],[7845,7846,7847],[7848,7849,7850],[7851,7852,7853],[7854,7855,7856],[7857,7858,7859],[7860,7861,7862],[7863,7864,7865],[7866,7867,7868],[7869,7870,7871],[7872,7873,7874],[7875,7876,7877],[7878,7879,7880],[7881,7882,7883],[7884,7885,7886],[7887,7888,7889],[7890,7891,7892],[7893,7894,7895],[7896,7897,7898],[7899,7900,7901],[7902,7903,7904],[7905,7906,7907],[7908,7909,7910],[7911,7912,7913],[7914,7915,7916],[7917,7918,7919],[7920,7921,7922],[7923,7924,7925],[7926,7927,7928],[7929,7930,7931],[7932,7933,7934],[7935,7936,7937],[7938,7939,7940],[7941,7942,7943],[7944,7945,7946],[7947,7948,7949],[7950,7951,7952],[7953,7954,7955],[7956,7957,7958],[7959,7960,7961],[7962,7963,7964],[7965,7966,7967],[7968,7969,7970],[7971,7972,7973],[7974,7975,7976],[7977,7978,7979],[7980,7981,7982],[7983,7984,7985],[7986,7987,7988],[7989,7990,7991],[7992,7993,7994],[7995,7996,7997],[7998,7999,8000],[8001,8002,8003],[8004,8005,8006],[8007,8008,8009],[8010,8011,8012],[8013,8014,8015],[8016,8017,8018],[8019,8020,8021],[8022,8023,8024],[8025,8026,8027],[8028,8029,8030],[8031,8032,8033],[8034,8035,8036],[8037,8038,8039],[8040,8041,8042],[8043,8044,8045],[8046,8047,8048],[8049,8050,8051],[8052,8053,8054],[8055,8056,8057],[8058,8059,8060],[8061,8062,8063],[8064,8065,8066],[8067,8068,8069],[8070,8071,8072],[8073,8074,8075],[8076,8077,8078],[8079,8080,8081],[8082,8083,8084],[8085,8086,8087],[8088,8089,8090],[8091,8092,8093],[8094,8095,8096],[8097,8098,8099],[8100,8101,8102],[8103,8104,8105],[8106,8107,8108],[8109,8110,8111],[8112,8113,8114],[8115,8116,8117],[8118,8119,8120],[8121,8122,8123],[8124,8125,8126],[8127,8128,8129],[8130,8131,8132],[8133,8134,8135],[8136,8137,8138],[8139,8140,8141],[8142,8143,8144],[8145,8146,8147],[8148,8149,8150],[8151,8152,8153],[8154,8155,8156],[8157,8158,8159],[8160,8161,8162],[8163,8164,8165],[8166,8167,8168],[8169,8170,8171],[8172,8173,8174],[8175,8176,8177],[8178,8179,8180],[8181,8182,8183],[8184,8185,8186],[8187,8188,8189],[8190,8191,8192],[8193,8194,8195],[8196,8197,8198],[8199,8200,8201],[8202,8203,8204],[8205,8206,8207],[8208,8209,8210],[8211,8212,8213],[8214,8215,8216],[8217,8218,8219],[8220,8221,8222],[8223,8224,8225],[8226,8227,8228],[8229,8230,8231],[8232,8233,8234],[8235,8236,8237],[8238,8239,8240],[8241,8242,8243],[8244,8245,8246],[8247,8248,8249],[8250,8251,8252],[8253,8254,8255],[8256,8257,8258],[8259,8260,8261],[8262,8263,8264],[8265,8266,8267],[8268,8269,8270],[8271,8272,8273],[8274,8275,8276],[8277,8278,8279],[8280,8281,8282],[8283,8284,8285],[8286,8287,8288],[8289,8290,8291],[8292,8293,8294],[8295,8296,8297],[8298,8299,8300],[8301,8302,8303],[8304,8305,8306],[8307,8308,8309],[8310,8311,8312],[8313,8314,8315],[8316,8317,8318],[8319,8320,8321],[8322,8323,8324],[8325,8326,8327],[8328,8329,8330],[8331,8332,8333],[8334,8335,8336],[8337,8338,8339],[8340,8341,8342],[8343,8344,8345],[8346,8347,8348],[8349,8350,8351],[8352,8353,8354],[8355,8356,8357],[8358,8359,8360],[8361,8362,8363],[8364,8365,8366],[8367,8368,8369],[8370,8371,8372],[8373,8374,8375],[8376,8377,8378],[8379,8380,8381],[8382,8383,8384],[8385,8386,8387],[8388,8389,8390],[8391,8392,8393],[8394,8395,8396],[8397,8398,8399],[8400,8401,8402],[8403,8404,8405],[8406,8407,8408],[8409,8410,8411],[8412,8413,8414],[8415,8416,8417],[8418,8419,8420],[8421,8422,8423],[8424,8425,8426],[8427,8428,8429],[8430,8431,8432],[8433,8434,8435],[8436,8437,8438],[8439,8440,8441],[8442,8443,8444],[8445,8446,8447],[8448,8449,8450],[8451,8452,8453],[8454,8455,8456],[8457,8458,8459],[8460,8461,8462],[8463,8464,8465],[8466,8467,8468],[8469,8470,8471],[8472,8473,8474],[8475,8476,8477],[8478,8479,8480],[8481,8482,8483],[8484,8485,8486],[8487,8488,8489],[8490,8491,8492],[8493,8494,8495],[8496,8497,8498],[8499,8500,8501],[8502,8503,8504],[8505,8506,8507],[8508,8509,8510],[8511,8512,8513],[8514,8515,8516],[8517,8518,8519],[8520,8521,8522],[8523,8524,8525],[8526,8527,8528],[8529,8530,8531],[8532,8533,8534],[8535,8536,8537],[8538,8539,8540],[8541,8542,8543],[8544,8545,8546],[8547,8548,8549],[8550,8551,8552],[8553,8554,8555],[8556,8557,8558],[8559,8560,8561],[8562,8563,8564],[8565,8566,8567],[8568,8569,8570],[8571,8572,8573],[8574,8575,8576],[8577,8578,8579],[8580,8581,8582],[8583,8584,8585],[8586,8587,8588],[8589,8590,8591],[8592,8593,8594],[8595,8596,8597],[8598,8599,8600],[8601,8602,8603],[8604,8605,8606],[8607,8608,8609],[8610,8611,8612],[8613,8614,8615],[8616,8617,8618],[8619,8620,8621],[8622,8623,8624],[8625,8626,8627],[8628,8629,8630],[8631,8632,8633],[8634,8635,8636],[8637,8638,8639],[8640,8641,8642],[8643,8644,8645],[8646,8647,8648],[8649,8650,8651],[8652,8653,8654],[8655,8656,8657],[8658,8659,8660],[8661,8662,8663],[8664,8665,8666],[8667,8668,8669],[8670,8671,8672],[8673,8674,8675],[8676,8677,8678],[8679,8680,8681],[8682,8683,8684],[8685,8686,8687],[8688,8689,8690],[8691,8692,8693],[8694,8695,8696],[8697,8698,8699],[8700,8701,8702],[8703,8704,8705],[8706,8707,8708],[8709,8710,8711],[8712,8713,8714],[8715,8716,8717],[8718,8719,8720],[8721,8722,8723],[8724,8725,8726],[8727,8728,8729],[8730,8731,8732],[8733,8734,8735],[8736,8737,8738],[8739,8740,8741],[8742,8743,8744],[8745,8746,8747],[8748,8749,8750],[8751,8752,8753],[8754,8755,8756],[8757,8758,8759],[8760,8761,8762],[8763,8764,8765],[8766,8767,8768],[8769,8770,8771],[8772,8773,8774],[8775,8776,8777],[8778,8779,8780],[8781,8782,8783],[8784,8785,8786],[8787,8788,8789],[8790,8791,8792],[8793,8794,8795],[8796,8797,8798],[8799,8800,8801],[8802,8803,8804],[8805,8806,8807],[8808,8809,8810],[8811,8812,8813],[8814,8815,8816],[8817,8818,8819],[8820,8821,8822],[8823,8824,8825],[8826,8827,8828],[8829,8830,8831],[8832,8833,8834],[8835,8836,8837],[8838,8839,8840],[8841,8842,8843],[8844,8845,8846],[8847,8848,8849],[8850,8851,8852],[8853,8854,8855],[8856,8857,8858],[8859,8860,8861],[8862,8863,8864],[8865,8866,8867],[8868,8869,8870],[8871,8872,8873],[8874,8875,8876],[8877,8878,8879],[8880,8881,8882],[8883,8884,8885],[8886,8887,8888],[8889,8890,8891],[8892,8893,8894],[8895,8896,8897],[8898,8899,8900],[8901,8902,8903],[8904,8905,8906],[8907,8908,8909],[8910,8911,8912],[8913,8914,8915],[8916,8917,8918],[8919,8920,8921],[8922,8923,8924],[8925,8926,8927],[8928,8929,8930],[8931,8932,8933],[8934,8935,8936],[8937,8938,8939],[8940,8941,8942],[8943,8944,8945],[8946,8947,8948],[8949,8950,8951],[8952,8953,8954],[8955,8956,8957],[8958,8959,8960],[8961,8962,8963],[8964,8965,8966],[8967,8968,8969],[8970,8971,8972],[8973,8974,8975],[8976,8977,8978],[8979,8980,8981],[8982,8983,8984],[8985,8986,8987],[8988,8989,8990],[8991,8992,8993],[8994,8995,8996],[8997,8998,8999],[9000,9001,9002],[9003,9004,9005],[9006,9007,9008],[9009,9010,9011],[9012,9013,9014],[9015,9016,9017],[9018,9019,9020],[9021,9022,9023],[9024,9025,9026],[9027,9028,9029],[9030,9031,9032],[9033,9034,9035],[9036,9037,9038],[9039,9040,9041],[9042,9043,9044],[9045,9046,9047],[9048,9049,9050],[9051,9052,9053],[9054,9055,9056],[9057,9058,9059],[9060,9061,9062],[9063,9064,9065],[9066,9067,9068],[9069,9070,9071],[9072,9073,9074],[9075,9076,9077],[9078,9079,9080],[9081,9082,9083],[9084,9085,9086],[9087,9088,9089],[9090,9091,9092],[9093,9094,9095],[9096,9097,9098],[9099,9100,9101],[9102,9103,9104],[9105,9106,9107],[9108,9109,9110],[9111,9112,9113],[9114,9115,9116],[9117,9118,9119],[9120,9121,9122],[9123,9124,9125],[9126,9127,9128],[9129,9130,9131],[9132,9133,9134],[9135,9136,9137],[9138,9139,9140],[9141,9142,9143],[9144,9145,9146],[9147,9148,9149],[9150,9151,9152],[9153,9154,9155],[9156,9157,9158],[9159,9160,9161],[9162,9163,9164],[9165,9166,9167],[9168,9169,9170],[9171,9172,9173],[9174,9175,9176],[9177,9178,9179],[9180,9181,9182],[9183,9184,9185],[9186,9187,9188],[9189,9190,9191],[9192,9193,9194],[9195,9196,9197],[9198,9199,9200],[9201,9202,9203],[9204,9205,9206],[9207,9208,9209],[9210,9211,9212],[9213,9214,9215],[9216,9217,9218],[9219,9220,9221],[9222,9223,9224],[9225,9226,9227],[9228,9229,9230],[9231,9232,9233],[9234,9235,9236],[9237,9238,9239],[9240,9241,9242],[9243,9244,9245],[9246,9247,9248],[9249,9250,9251],[9252,9253,9254],[9255,9256,9257],[9258,9259,9260],[9261,9262,9263],[9264,9265,9266],[9267,9268,9269],[9270,9271,9272],[9273,9274,9275],[9276,9277,9278],[9279,9280,9281],[9282,9283,9284],[9285,9286,9287],[9288,9289,9290],[9291,9292,9293],[9294,9295,9296],[9297,9298,9299],[9300,9301,9302],[9303,9304,9305],[9306,9307,9308],[9309,9310,9311],[9312,9313,9314],[9315,9316,9317],[9318,9319,9320],[9321,9322,9323],[9324,9325,9326],[9327,9328,9329],[9330,9331,9332],[9333,9334,9335],[9336,9337,9338],[9339,9340,9341],[9342,9343,9344],[9345,9346,9347],[9348,9349,9350],[9351,9352,9353],[9354,9355,9356],[9357,9358,9359],[9360,9361,9362],[9363,9364,9365],[9366,9367,9368],[9369,9370,9371],[9372,9373,9374],[9375,9376,9377],[9378,9379,9380],[9381,9382,9383],[9384,9385,9386],[9387,9388,9389],[9390,9391,9392],[9393,9394,9395],[9396,9397,9398],[9399,9400,9401],[9402,9403,9404],[9405,9406,9407],[9408,9409,9410],[9411,9412,9413],[9414,9415,9416],[9417,9418,9419],[9420,9421,9422],[9423,9424,9425],[9426,9427,9428],[9429,9430,9431],[9432,9433,9434],[9435,9436,9437],[9438,9439,9440],[9441,9442,9443],[9444,9445,9446],[9447,9448,9449],[9450,9451,9452],[9453,9454,9455],[9456,9457,9458],[9459,9460,9461],[9462,9463,9464],[9465,9466,9467],[9468,9469,9470],[9471,9472,9473],[9474,9475,9476],[9477,9478,9479],[9480,9481,9482],[9483,9484,9485],[9486,9487,9488],[9489,9490,9491],[9492,9493,9494],[9495,9496,9497],[9498,9499,9500],[9501,9502,9503],[9504,9505,9506],[9507,9508,9509],[9510,9511,9512],[9513,9514,9515],[9516,9517,9518],[9519,9520,9521],[9522,9523,9524],[9525,9526,9527],[9528,9529,9530],[9531,9532,9533],[9534,9535,9536],[9537,9538,9539],[9540,9541,9542],[9543,9544,9545],[9546,9547,9548],[9549,9550,9551],[9552,9553,9554],[9555,9556,9557],[9558,9559,9560],[9561,9562,9563],[9564,9565,9566],[9567,9568,9569],[9570,9571,9572],[9573,9574,9575],[9576,9577,9578],[9579,9580,9581],[9582,9583,9584],[9585,9586,9587],[9588,9589,9590],[9591,9592,9593],[9594,9595,9596],[9597,9598,9599],[9600,9601,9602],[9603,9604,9605],[9606,9607,9608],[9609,9610,9611],[9612,9613,9614],[9615,9616,9617],[9618,9619,9620],[9621,9622,9623],[9624,9625,9626],[9627,9628,9629],[9630,9631,9632],[9633,9634,9635],[9636,9637,9638],[9639,9640,9641],[9642,9643,9644],[9645,9646,9647],[9648,9649,9650],[9651,9652,9653],[9654,9655,9656],[9657,9658,9659],[9660,9661,9662],[9663,9664,9665],[9666,9667,9668],[9669,9670,9671],[9672,9673,9674],[9675,9676,9677],[9678,9679,9680],[9681,9682,9683],[9684,9685,9686],[9687,9688,9689],[9690,9691,9692],[9693,9694,9695],[9696,9697,9698],[9699,9700,9701],[9702,9703,9704],[9705,9706,9707],[9708,9709,9710],[9711,9712,9713],[9714,9715,9716],[9717,9718,9719],[9720,9721,9722],[9723,9724,9725],[9726,9727,9728],[9729,9730,9731],[9732,9733,9734],[9735,9736,9737],[9738,9739,9740],[9741,9742,9743],[9744,9745,9746],[9747,9748,9749],[9750,9751,9752],[9753,9754,9755],[9756,9757,9758],[9759,9760,9761],[9762,9763,9764],[9765,9766,9767],[9768,9769,9770],[9771,9772,9773],[9774,9775,9776],[9777,9778,9779],[9780,9781,9782],[9783,9784,9785],[9786,9787,9788],[9789,9790,9791],[9792,9793,9794],[9795,9796,9797],[9798,9799,9800],[9801,9802,9803],[9804,9805,9806],[9807,9808,9809],[9810,9811,9812],[9813,9814,9815],[9816,9817,9818],[9819,9820,9821],[9822,9823,9824],[9825,9826,9827],[9828,9829,9830],[9831,9832,9833],[9834,9835,9836],[9837,9838,9839],[9840,9841,9842],[9843,9844,9845],[9846,9847,9848],[9849,9850,9851],[9852,9853,9854],[9855,9856,9857],[9858,9859,9860],[9861,9862,9863],[9864,9865,9866],[9867,9868,9869],[9870,9871,9872],[9873,9874,9875],[9876,9877,9878],[9879,9880,9881],[9882,9883,9884],[9885,9886,9887],[9888,9889,9890],[9891,9892,9893],[9894,9895,9896],[9897,9898,9899],[9900,9901,9902],[9903,9904,9905],[9906,9907,9908],[9909,9910,9911],[9912,9913,9914],[9915,9916,9917],[9918,9919,9920],[9921,9922,9923],[9924,9925,9926],[9927,9928,9929],[9930,9931,9932],[9933,9934,9935],[9936,9937,9938],[9939,9940,9941],[9942,9943,9944],[9945,9946,9947],[9948,9949,9950],[9951,9952,9953],[9954,9955,9956],[9957,9958,9959],[9960,9961,9962],[9963,9964,9965],[9966,9967,9968],[9969,9970,9971],[9972,9973,9974],[9975,9976,9977],[9978,9979,9980],[9981,9982,9983],[9984,9985,9986],[9987,9988,9989],[9990,9991,9992],[9993,9994,9995],[9996,9997,9998],[9999,10000,10001],[10002,10003,10004],[10005,10006,10007],[10008,10009,10010],[10011,10012,10013],[10014,10015,10016],[10017,10018,10019],[10020,10021,10022],[10023,10024,10025],[10026,10027,10028],[10029,10030,10031],[10032,10033,10034],[10035,10036,10037],[10038,10039,10040],[10041,10042,10043],[10044,10045,10046],[10047,10048,10049],[10050,10051,10052],[10053,10054,10055],[10056,10057,10058],[10059,10060,10061],[10062,10063,10064],[10065,10066,10067],[10068,10069,10070],[10071,10072,10073],[10074,10075,10076],[10077,10078,10079],[10080,10081,10082],[10083,10084,10085],[10086,10087,10088],[10089,10090,10091],[10092,10093,10094],[10095,10096,10097],[10098,10099,10100],[10101,10102,10103],[10104,10105,10106],[10107,10108,10109],[10110,10111,10112],[10113,10114,10115],[10116,10117,10118],[10119,10120,10121],[10122,10123,10124],[10125,10126,10127],[10128,10129,10130],[10131,10132,10133],[10134,10135,10136],[10137,10138,10139],[10140,10141,10142],[10143,10144,10145],[10146,10147,10148],[10149,10150,10151],[10152,10153,10154],[10155,10156,10157],[10158,10159,10160],[10161,10162,10163],[10164,10165,10166],[10167,10168,10169],[10170,10171,10172],[10173,10174,10175],[10176,10177,10178],[10179,10180,10181],[10182,10183,10184],[10185,10186,10187],[10188,10189,10190],[10191,10192,10193],[10194,10195,10196],[10197,10198,10199],[10200,10201,10202],[10203,10204,10205],[10206,10207,10208],[10209,10210,10211],[10212,10213,10214],[10215,10216,10217],[10218,10219,10220],[10221,10222,10223],[10224,10225,10226],[10227,10228,10229],[10230,10231,10232],[10233,10234,10235],[10236,10237,10238],[10239,10240,10241],[10242,10243,10244],[10245,10246,10247],[10248,10249,10250],[10251,10252,10253],[10254,10255,10256],[10257,10258,10259],[10260,10261,10262],[10263,10264,10265],[10266,10267,10268],[10269,10270,10271],[10272,10273,10274],[10275,10276,10277],[10278,10279,10280],[10281,10282,10283],[10284,10285,10286],[10287,10288,10289],[10290,10291,10292],[10293,10294,10295],[10296,10297,10298],[10299,10300,10301],[10302,10303,10304],[10305,10306,10307],[10308,10309,10310],[10311,10312,10313],[10314,10315,10316],[10317,10318,10319],[10320,10321,10322],[10323,10324,10325],[10326,10327,10328],[10329,10330,10331],[10332,10333,10334],[10335,10336,10337],[10338,10339,10340],[10341,10342,10343],[10344,10345,10346],[10347,10348,10349],[10350,10351,10352],[10353,10354,10355],[10356,10357,10358],[10359,10360,10361],[10362,10363,10364],[10365,10366,10367],[10368,10369,10370],[10371,10372,10373],[10374,10375,10376],[10377,10378,10379],[10380,10381,10382],[10383,10384,10385],[10386,10387,10388],[10389,10390,10391],[10392,10393,10394],[10395,10396,10397],[10398,10399,10400],[10401,10402,10403],[10404,10405,10406],[10407,10408,10409],[10410,10411,10412],[10413,10414,10415],[10416,10417,10418],[10419,10420,10421],[10422,10423,10424],[10425,10426,10427],[10428,10429,10430],[10431,10432,10433],[10434,10435,10436],[10437,10438,10439],[10440,10441,10442],[10443,10444,10445],[10446,10447,10448],[10449,10450,10451],[10452,10453,10454],[10455,10456,10457],[10458,10459,10460],[10461,10462,10463],[10464,10465,10466],[10467,10468,10469],[10470,10471,10472],[10473,10474,10475],[10476,10477,10478],[10479,10480,10481],[10482,10483,10484],[10485,10486,10487],[10488,10489,10490],[10491,10492,10493],[10494,10495,10496],[10497,10498,10499],[10500,10501,10502],[10503,10504,10505],[10506,10507,10508],[10509,10510,10511],[10512,10513,10514],[10515,10516,10517],[10518,10519,10520],[10521,10522,10523],[10524,10525,10526],[10527,10528,10529],[10530,10531,10532],[10533,10534,10535],[10536,10537,10538],[10539,10540,10541],[10542,10543,10544],[10545,10546,10547],[10548,10549,10550],[10551,10552,10553],[10554,10555,10556],[10557,10558,10559],[10560,10561,10562],[10563,10564,10565],[10566,10567,10568],[10569,10570,10571],[10572,10573,10574],[10575,10576,10577],[10578,10579,10580],[10581,10582,10583],[10584,10585,10586],[10587,10588,10589],[10590,10591,10592],[10593,10594,10595],[10596,10597,10598],[10599,10600,10601],[10602,10603,10604],[10605,10606,10607],[10608,10609,10610],[10611,10612,10613],[10614,10615,10616],[10617,10618,10619],[10620,10621,10622],[10623,10624,10625],[10626,10627,10628],[10629,10630,10631],[10632,10633,10634],[10635,10636,10637],[10638,10639,10640],[10641,10642,10643],[10644,10645,10646],[10647,10648,10649],[10650,10651,10652],[10653,10654,10655],[10656,10657,10658],[10659,10660,10661],[10662,10663,10664],[10665,10666,10667],[10668,10669,10670],[10671,10672,10673],[10674,10675,10676],[10677,10678,10679],[10680,10681,10682],[10683,10684,10685],[10686,10687,10688],[10689,10690,10691],[10692,10693,10694],[10695,10696,10697],[10698,10699,10700],[10701,10702,10703],[10704,10705,10706],[10707,10708,10709],[10710,10711,10712],[10713,10714,10715],[10716,10717,10718],[10719,10720,10721],[10722,10723,10724],[10725,10726,10727],[10728,10729,10730],[10731,10732,10733],[10734,10735,10736],[10737,10738,10739],[10740,10741,10742],[10743,10744,10745],[10746,10747,10748],[10749,10750,10751],[10752,10753,10754],[10755,10756,10757],[10758,10759,10760],[10761,10762,10763],[10764,10765,10766],[10767,10768,10769],[10770,10771,10772],[10773,10774,10775],[10776,10777,10778],[10779,10780,10781],[10782,10783,10784],[10785,10786,10787],[10788,10789,10790],[10791,10792,10793],[10794,10795,10796],[10797,10798,10799],[10800,10801,10802],[10803,10804,10805],[10806,10807,10808],[10809,10810,10811],[10812,10813,10814],[10815,10816,10817],[10818,10819,10820],[10821,10822,10823],[10824,10825,10826],[10827,10828,10829],[10830,10831,10832],[10833,10834,10835],[10836,10837,10838],[10839,10840,10841],[10842,10843,10844],[10845,10846,10847],[10848,10849,10850],[10851,10852,10853],[10854,10855,10856],[10857,10858,10859],[10860,10861,10862],[10863,10864,10865],[10866,10867,10868],[10869,10870,10871],[10872,10873,10874],[10875,10876,10877],[10878,10879,10880],[10881,10882,10883],[10884,10885,10886],[10887,10888,10889],[10890,10891,10892],[10893,10894,10895],[10896,10897,10898],[10899,10900,10901],[10902,10903,10904],[10905,10906,10907],[10908,10909,10910],[10911,10912,10913],[10914,10915,10916],[10917,10918,10919],[10920,10921,10922],[10923,10924,10925],[10926,10927,10928],[10929,10930,10931],[10932,10933,10934],[10935,10936,10937],[10938,10939,10940],[10941,10942,10943],[10944,10945,10946],[10947,10948,10949],[10950,10951,10952],[10953,10954,10955],[10956,10957,10958],[10959,10960,10961],[10962,10963,10964],[10965,10966,10967],[10968,10969,10970],[10971,10972,10973],[10974,10975,10976],[10977,10978,10979],[10980,10981,10982],[10983,10984,10985],[10986,10987,10988],[10989,10990,10991],[10992,10993,10994],[10995,10996,10997],[10998,10999,11000],[11001,11002,11003],[11004,11005,11006],[11007,11008,11009],[11010,11011,11012],[11013,11014,11015],[11016,11017,11018],[11019,11020,11021],[11022,11023,11024],[11025,11026,11027],[11028,11029,11030],[11031,11032,11033],[11034,11035,11036],[11037,11038,11039],[11040,11041,11042],[11043,11044,11045],[11046,11047,11048],[11049,11050,11051],[11052,11053,11054],[11055,11056,11057],[11058,11059,11060],[11061,11062,11063],[11064,11065,11066],[11067,11068,11069],[11070,11071,11072],[11073,11074,11075],[11076,11077,11078],[11079,11080,11081],[11082,11083,11084],[11085,11086,11087],[11088,11089,11090],[11091,11092,11093],[11094,11095,11096],[11097,11098,11099],[11100,11101,11102],[11103,11104,11105],[11106,11107,11108],[11109,11110,11111],[11112,11113,11114],[11115,11116,11117],[11118,11119,11120],[11121,11122,11123],[11124,11125,11126],[11127,11128,11129],[11130,11131,11132],[11133,11134,11135],[11136,11137,11138],[11139,11140,11141],[11142,11143,11144],[11145,11146,11147],[11148,11149,11150],[11151,11152,11153],[11154,11155,11156],[11157,11158,11159],[11160,11161,11162],[11163,11164,11165],[11166,11167,11168],[11169,11170,11171],[11172,11173,11174],[11175,11176,11177],[11178,11179,11180],[11181,11182,11183],[11184,11185,11186],[11187,11188,11189],[11190,11191,11192],[11193,11194,11195],[11196,11197,11198],[11199,11200,11201],[11202,11203,11204],[11205,11206,11207],[11208,11209,11210],[11211,11212,11213],[11214,11215,11216],[11217,11218,11219],[11220,11221,11222],[11223,11224,11225],[11226,11227,11228],[11229,11230,11231],[11232,11233,11234],[11235,11236,11237],[11238,11239,11240],[11241,11242,11243],[11244,11245,11246],[11247,11248,11249],[11250,11251,11252],[11253,11254,11255],[11256,11257,11258],[11259,11260,11261],[11262,11263,11264],[11265,11266,11267],[11268,11269,11270],[11271,11272,11273],[11274,11275,11276],[11277,11278,11279],[11280,11281,11282],[11283,11284,11285],[11286,11287,11288],[11289,11290,11291],[11292,11293,11294],[11295,11296,11297],[11298,11299,11300],[11301,11302,11303],[11304,11305,11306],[11307,11308,11309],[11310,11311,11312],[11313,11314,11315],[11316,11317,11318],[11319,11320,11321],[11322,11323,11324],[11325,11326,11327],[11328,11329,11330],[11331,11332,11333],[11334,11335,11336],[11337,11338,11339],[11340,11341,11342],[11343,11344,11345],[11346,11347,11348],[11349,11350,11351],[11352,11353,11354],[11355,11356,11357],[11358,11359,11360],[11361,11362,11363],[11364,11365,11366],[11367,11368,11369],[11370,11371,11372],[11373,11374,11375],[11376,11377,11378],[11379,11380,11381],[11382,11383,11384],[11385,11386,11387],[11388,11389,11390],[11391,11392,11393],[11394,11395,11396],[11397,11398,11399],[11400,11401,11402],[11403,11404,11405],[11406,11407,11408],[11409,11410,11411],[11412,11413,11414],[11415,11416,11417],[11418,11419,11420],[11421,11422,11423],[11424,11425,11426],[11427,11428,11429],[11430,11431,11432],[11433,11434,11435],[11436,11437,11438],[11439,11440,11441],[11442,11443,11444],[11445,11446,11447],[11448,11449,11450],[11451,11452,11453],[11454,11455,11456],[11457,11458,11459],[11460,11461,11462],[11463,11464,11465],[11466,11467,11468],[11469,11470,11471],[11472,11473,11474],[11475,11476,11477],[11478,11479,11480],[11481,11482,11483],[11484,11485,11486],[11487,11488,11489],[11490,11491,11492],[11493,11494,11495],[11496,11497,11498],[11499,11500,11501],[11502,11503,11504],[11505,11506,11507],[11508,11509,11510],[11511,11512,11513],[11514,11515,11516],[11517,11518,11519],[11520,11521,11522],[11523,11524,11525],[11526,11527,11528],[11529,11530,11531],[11532,11533,11534],[11535,11536,11537],[11538,11539,11540],[11541,11542,11543],[11544,11545,11546],[11547,11548,11549],[11550,11551,11552],[11553,11554,11555],[11556,11557,11558],[11559,11560,11561],[11562,11563,11564],[11565,11566,11567],[11568,11569,11570],[11571,11572,11573],[11574,11575,11576],[11577,11578,11579],[11580,11581,11582],[11583,11584,11585],[11586,11587,11588],[11589,11590,11591],[11592,11593,11594],[11595,11596,11597],[11598,11599,11600],[11601,11602,11603],[11604,11605,11606],[11607,11608,11609],[11610,11611,11612],[11613,11614,11615],[11616,11617,11618],[11619,11620,11621],[11622,11623,11624],[11625,11626,11627],[11628,11629,11630],[11631,11632,11633],[11634,11635,11636],[11637,11638,11639],[11640,11641,11642],[11643,11644,11645],[11646,11647,11648],[11649,11650,11651],[11652,11653,11654],[11655,11656,11657],[11658,11659,11660],[11661,11662,11663],[11664,11665,11666],[11667,11668,11669],[11670,11671,11672],[11673,11674,11675],[11676,11677,11678],[11679,11680,11681],[11682,11683,11684],[11685,11686,11687],[11688,11689,11690],[11691,11692,11693],[11694,11695,11696],[11697,11698,11699],[11700,11701,11702],[11703,11704,11705],[11706,11707,11708],[11709,11710,11711],[11712,11713,11714],[11715,11716,11717],[11718,11719,11720],[11721,11722,11723],[11724,11725,11726],[11727,11728,11729],[11730,11731,11732],[11733,11734,11735],[11736,11737,11738],[11739,11740,11741],[11742,11743,11744],[11745,11746,11747],[11748,11749,11750],[11751,11752,11753],[11754,11755,11756],[11757,11758,11759],[11760,11761,11762],[11763,11764,11765],[11766,11767,11768],[11769,11770,11771],[11772,11773,11774],[11775,11776,11777],[11778,11779,11780],[11781,11782,11783],[11784,11785,11786],[11787,11788,11789],[11790,11791,11792],[11793,11794,11795],[11796,11797,11798],[11799,11800,11801],[11802,11803,11804],[11805,11806,11807],[11808,11809,11810],[11811,11812,11813],[11814,11815,11816],[11817,11818,11819],[11820,11821,11822],[11823,11824,11825],[11826,11827,11828],[11829,11830,11831],[11832,11833,11834],[11835,11836,11837],[11838,11839,11840],[11841,11842,11843],[11844,11845,11846],[11847,11848,11849],[11850,11851,11852],[11853,11854,11855],[11856,11857,11858],[11859,11860,11861],[11862,11863,11864],[11865,11866,11867],[11868,11869,11870],[11871,11872,11873],[11874,11875,11876],[11877,11878,11879],[11880,11881,11882],[11883,11884,11885],[11886,11887,11888],[11889,11890,11891],[11892,11893,11894],[11895,11896,11897],[11898,11899,11900],[11901,11902,11903],[11904,11905,11906],[11907,11908,11909],[11910,11911,11912],[11913,11914,11915],[11916,11917,11918],[11919,11920,11921],[11922,11923,11924],[11925,11926,11927],[11928,11929,11930],[11931,11932,11933],[11934,11935,11936],[11937,11938,11939],[11940,11941,11942],[11943,11944,11945],[11946,11947,11948],[11949,11950,11951],[11952,11953,11954],[11955,11956,11957],[11958,11959,11960],[11961,11962,11963],[11964,11965,11966],[11967,11968,11969],[11970,11971,11972],[11973,11974,11975],[11976,11977,11978],[11979,11980,11981],[11982,11983,11984],[11985,11986,11987],[11988,11989,11990],[11991,11992,11993],[11994,11995,11996],[11997,11998,11999],[12000,12001,12002],[12003,12004,12005],[12006,12007,12008],[12009,12010,12011],[12012,12013,12014],[12015,12016,12017],[12018,12019,12020],[12021,12022,12023],[12024,12025,12026],[12027,12028,12029],[12030,12031,12032],[12033,12034,12035],[12036,12037,12038],[12039,12040,12041],[12042,12043,12044],[12045,12046,12047],[12048,12049,12050],[12051,12052,12053],[12054,12055,12056],[12057,12058,12059],[12060,12061,12062],[12063,12064,12065],[12066,12067,12068],[12069,12070,12071],[12072,12073,12074],[12075,12076,12077],[12078,12079,12080],[12081,12082,12083],[12084,12085,12086],[12087,12088,12089],[12090,12091,12092],[12093,12094,12095],[12096,12097,12098],[12099,12100,12101],[12102,12103,12104],[12105,12106,12107],[12108,12109,12110],[12111,12112,12113],[12114,12115,12116],[12117,12118,12119],[12120,12121,12122],[12123,12124,12125],[12126,12127,12128],[12129,12130,12131],[12132,12133,12134],[12135,12136,12137],[12138,12139,12140],[12141,12142,12143],[12144,12145,12146],[12147,12148,12149],[12150,12151,12152],[12153,12154,12155],[12156,12157,12158],[12159,12160,12161],[12162,12163,12164],[12165,12166,12167],[12168,12169,12170],[12171,12172,12173],[12174,12175,12176],[12177,12178,12179],[12180,12181,12182],[12183,12184,12185],[12186,12187,12188],[12189,12190,12191],[12192,12193,12194],[12195,12196,12197],[12198,12199,12200],[12201,12202,12203],[12204,12205,12206],[12207,12208,12209],[12210,12211,12212],[12213,12214,12215],[12216,12217,12218],[12219,12220,12221],[12222,12223,12224],[12225,12226,12227],[12228,12229,12230],[12231,12232,12233],[12234,12235,12236],[12237,12238,12239],[12240,12241,12242],[12243,12244,12245],[12246,12247,12248],[12249,12250,12251],[12252,12253,12254],[12255,12256,12257],[12258,12259,12260],[12261,12262,12263],[12264,12265,12266],[12267,12268,12269],[12270,12271,12272],[12273,12274,12275],[12276,12277,12278],[12279,12280,12281],[12282,12283,12284],[12285,12286,12287],[12288,12289,12290],[12291,12292,12293],[12294,12295,12296],[12297,12298,12299],[12300,12301,12302],[12303,12304,12305],[12306,12307,12308],[12309,12310,12311],[12312,12313,12314],[12315,12316,12317],[12318,12319,12320],[12321,12322,12323],[12324,12325,12326],[12327,12328,12329],[12330,12331,12332],[12333,12334,12335],[12336,12337,12338],[12339,12340,12341],[12342,12343,12344],[12345,12346,12347],[12348,12349,12350],[12351,12352,12353],[12354,12355,12356],[12357,12358,12359],[12360,12361,12362],[12363,12364,12365],[12366,12367,12368],[12369,12370,12371],[12372,12373,12374],[12375,12376,12377],[12378,12379,12380],[12381,12382,12383],[12384,12385,12386],[12387,12388,12389],[12390,12391,12392],[12393,12394,12395],[12396,12397,12398],[12399,12400,12401],[12402,12403,12404],[12405,12406,12407],[12408,12409,12410],[12411,12412,12413],[12414,12415,12416],[12417,12418,12419],[12420,12421,12422],[12423,12424,12425],[12426,12427,12428],[12429,12430,12431],[12432,12433,12434],[12435,12436,12437],[12438,12439,12440],[12441,12442,12443],[12444,12445,12446],[12447,12448,12449],[12450,12451,12452],[12453,12454,12455],[12456,12457,12458],[12459,12460,12461],[12462,12463,12464],[12465,12466,12467],[12468,12469,12470],[12471,12472,12473],[12474,12475,12476],[12477,12478,12479],[12480,12481,12482],[12483,12484,12485],[12486,12487,12488],[12489,12490,12491],[12492,12493,12494],[12495,12496,12497],[12498,12499,12500],[12501,12502,12503],[12504,12505,12506],[12507,12508,12509],[12510,12511,12512],[12513,12514,12515],[12516,12517,12518],[12519,12520,12521],[12522,12523,12524],[12525,12526,12527],[12528,12529,12530],[12531,12532,12533],[12534,12535,12536],[12537,12538,12539],[12540,12541,12542],[12543,12544,12545],[12546,12547,12548],[12549,12550,12551],[12552,12553,12554],[12555,12556,12557],[12558,12559,12560],[12561,12562,12563],[12564,12565,12566],[12567,12568,12569],[12570,12571,12572],[12573,12574,12575],[12576,12577,12578],[12579,12580,12581],[12582,12583,12584],[12585,12586,12587],[12588,12589,12590],[12591,12592,12593],[12594,12595,12596],[12597,12598,12599],[12600,12601,12602],[12603,12604,12605],[12606,12607,12608],[12609,12610,12611],[12612,12613,12614],[12615,12616,12617],[12618,12619,12620],[12621,12622,12623],[12624,12625,12626],[12627,12628,12629],[12630,12631,12632],[12633,12634,12635],[12636,12637,12638],[12639,12640,12641],[12642,12643,12644],[12645,12646,12647],[12648,12649,12650],[12651,12652,12653],[12654,12655,12656],[12657,12658,12659],[12660,12661,12662],[12663,12664,12665],[12666,12667,12668],[12669,12670,12671],[12672,12673,12674],[12675,12676,12677],[12678,12679,12680],[12681,12682,12683],[12684,12685,12686],[12687,12688,12689],[12690,12691,12692],[12693,12694,12695],[12696,12697,12698],[12699,12700,12701],[12702,12703,12704],[12705,12706,12707],[12708,12709,12710],[12711,12712,12713],[12714,12715,12716],[12717,12718,12719],[12720,12721,12722],[12723,12724,12725],[12726,12727,12728],[12729,12730,12731],[12732,12733,12734],[12735,12736,12737],[12738,12739,12740],[12741,12742,12743],[12744,12745,12746],[12747,12748,12749],[12750,12751,12752],[12753,12754,12755],[12756,12757,12758],[12759,12760,12761],[12762,12763,12764],[12765,12766,12767],[12768,12769,12770],[12771,12772,12773],[12774,12775,12776],[12777,12778,12779],[12780,12781,12782],[12783,12784,12785],[12786,12787,12788],[12789,12790,12791],[12792,12793,12794],[12795,12796,12797],[12798,12799,12800],[12801,12802,12803],[12804,12805,12806],[12807,12808,12809],[12810,12811,12812],[12813,12814,12815],[12816,12817,12818],[12819,12820,12821],[12822,12823,12824],[12825,12826,12827],[12828,12829,12830],[12831,12832,12833],[12834,12835,12836],[12837,12838,12839],[12840,12841,12842],[12843,12844,12845],[12846,12847,12848],[12849,12850,12851],[12852,12853,12854],[12855,12856,12857],[12858,12859,12860],[12861,12862,12863],[12864,12865,12866],[12867,12868,12869],[12870,12871,12872],[12873,12874,12875],[12876,12877,12878],[12879,12880,12881],[12882,12883,12884],[12885,12886,12887],[12888,12889,12890],[12891,12892,12893],[12894,12895,12896],[12897,12898,12899],[12900,12901,12902],[12903,12904,12905],[12906,12907,12908],[12909,12910,12911],[12912,12913,12914],[12915,12916,12917],[12918,12919,12920],[12921,12922,12923],[12924,12925,12926],[12927,12928,12929],[12930,12931,12932],[12933,12934,12935],[12936,12937,12938],[12939,12940,12941],[12942,12943,12944],[12945,12946,12947],[12948,12949,12950],[12951,12952,12953],[12954,12955,12956],[12957,12958,12959],[12960,12961,12962],[12963,12964,12965],[12966,12967,12968],[12969,12970,12971],[12972,12973,12974],[12975,12976,12977],[12978,12979,12980],[12981,12982,12983],[12984,12985,12986],[12987,12988,12989],[12990,12991,12992],[12993,12994,12995],[12996,12997,12998],[12999,13000,13001],[13002,13003,13004],[13005,13006,13007],[13008,13009,13010],[13011,13012,13013],[13014,13015,13016],[13017,13018,13019],[13020,13021,13022],[13023,13024,13025],[13026,13027,13028],[13029,13030,13031],[13032,13033,13034],[13035,13036,13037],[13038,13039,13040],[13041,13042,13043],[13044,13045,13046],[13047,13048,13049],[13050,13051,13052],[13053,13054,13055],[13056,13057,13058],[13059,13060,13061],[13062,13063,13064],[13065,13066,13067],[13068,13069,13070],[13071,13072,13073],[13074,13075,13076],[13077,13078,13079],[13080,13081,13082],[13083,13084,13085],[13086,13087,13088],[13089,13090,13091],[13092,13093,13094],[13095,13096,13097],[13098,13099,13100],[13101,13102,13103],[13104,13105,13106],[13107,13108,13109],[13110,13111,13112],[13113,13114,13115],[13116,13117,13118],[13119,13120,13121],[13122,13123,13124],[13125,13126,13127],[13128,13129,13130],[13131,13132,13133],[13134,13135,13136],[13137,13138,13139],[13140,13141,13142],[13143,13144,13145],[13146,13147,13148],[13149,13150,13151],[13152,13153,13154],[13155,13156,13157],[13158,13159,13160],[13161,13162,13163],[13164,13165,13166],[13167,13168,13169],[13170,13171,13172],[13173,13174,13175],[13176,13177,13178],[13179,13180,13181],[13182,13183,13184],[13185,13186,13187],[13188,13189,13190],[13191,13192,13193],[13194,13195,13196],[13197,13198,13199],[13200,13201,13202],[13203,13204,13205],[13206,13207,13208],[13209,13210,13211],[13212,13213,13214],[13215,13216,13217],[13218,13219,13220],[13221,13222,13223],[13224,13225,13226],[13227,13228,13229],[13230,13231,13232],[13233,13234,13235],[13236,13237,13238],[13239,13240,13241],[13242,13243,13244],[13245,13246,13247],[13248,13249,13250],[13251,13252,13253],[13254,13255,13256],[13257,13258,13259],[13260,13261,13262],[13263,13264,13265],[13266,13267,13268],[13269,13270,13271],[13272,13273,13274],[13275,13276,13277],[13278,13279,13280],[13281,13282,13283],[13284,13285,13286],[13287,13288,13289],[13290,13291,13292],[13293,13294,13295],[13296,13297,13298],[13299,13300,13301],[13302,13303,13304],[13305,13306,13307],[13308,13309,13310],[13311,13312,13313],[13314,13315,13316],[13317,13318,13319],[13320,13321,13322],[13323,13324,13325],[13326,13327,13328],[13329,13330,13331],[13332,13333,13334],[13335,13336,13337],[13338,13339,13340],[13341,13342,13343],[13344,13345,13346],[13347,13348,13349],[13350,13351,13352],[13353,13354,13355],[13356,13357,13358],[13359,13360,13361],[13362,13363,13364],[13365,13366,13367],[13368,13369,13370],[13371,13372,13373],[13374,13375,13376],[13377,13378,13379],[13380,13381,13382],[13383,13384,13385],[13386,13387,13388],[13389,13390,13391],[13392,13393,13394],[13395,13396,13397],[13398,13399,13400],[13401,13402,13403],[13404,13405,13406],[13407,13408,13409],[13410,13411,13412],[13413,13414,13415],[13416,13417,13418],[13419,13420,13421],[13422,13423,13424],[13425,13426,13427],[13428,13429,13430],[13431,13432,13433],[13434,13435,13436],[13437,13438,13439],[13440,13441,13442],[13443,13444,13445],[13446,13447,13448],[13449,13450,13451],[13452,13453,13454],[13455,13456,13457],[13458,13459,13460],[13461,13462,13463],[13464,13465,13466],[13467,13468,13469],[13470,13471,13472],[13473,13474,13475],[13476,13477,13478],[13479,13480,13481],[13482,13483,13484],[13485,13486,13487],[13488,13489,13490],[13491,13492,13493],[13494,13495,13496],[13497,13498,13499],[13500,13501,13502],[13503,13504,13505],[13506,13507,13508],[13509,13510,13511],[13512,13513,13514],[13515,13516,13517],[13518,13519,13520],[13521,13522,13523],[13524,13525,13526],[13527,13528,13529],[13530,13531,13532],[13533,13534,13535],[13536,13537,13538],[13539,13540,13541],[13542,13543,13544],[13545,13546,13547],[13548,13549,13550],[13551,13552,13553],[13554,13555,13556],[13557,13558,13559],[13560,13561,13562],[13563,13564,13565],[13566,13567,13568],[13569,13570,13571],[13572,13573,13574],[13575,13576,13577],[13578,13579,13580],[13581,13582,13583],[13584,13585,13586],[13587,13588,13589],[13590,13591,13592],[13593,13594,13595],[13596,13597,13598],[13599,13600,13601],[13602,13603,13604],[13605,13606,13607],[13608,13609,13610],[13611,13612,13613],[13614,13615,13616],[13617,13618,13619],[13620,13621,13622],[13623,13624,13625],[13626,13627,13628],[13629,13630,13631],[13632,13633,13634],[13635,13636,13637],[13638,13639,13640],[13641,13642,13643],[13644,13645,13646],[13647,13648,13649],[13650,13651,13652],[13653,13654,13655],[13656,13657,13658],[13659,13660,13661],[13662,13663,13664],[13665,13666,13667],[13668,13669,13670],[13671,13672,13673],[13674,13675,13676],[13677,13678,13679],[13680,13681,13682],[13683,13684,13685],[13686,13687,13688],[13689,13690,13691],[13692,13693,13694],[13695,13696,13697],[13698,13699,13700],[13701,13702,13703],[13704,13705,13706],[13707,13708,13709],[13710,13711,13712],[13713,13714,13715],[13716,13717,13718],[13719,13720,13721],[13722,13723,13724],[13725,13726,13727],[13728,13729,13730],[13731,13732,13733],[13734,13735,13736],[13737,13738,13739],[13740,13741,13742],[13743,13744,13745],[13746,13747,13748],[13749,13750,13751],[13752,13753,13754],[13755,13756,13757],[13758,13759,13760],[13761,13762,13763],[13764,13765,13766],[13767,13768,13769],[13770,13771,13772],[13773,13774,13775],[13776,13777,13778],[13779,13780,13781],[13782,13783,13784],[13785,13786,13787],[13788,13789,13790],[13791,13792,13793],[13794,13795,13796],[13797,13798,13799],[13800,13801,13802],[13803,13804,13805],[13806,13807,13808],[13809,13810,13811],[13812,13813,13814],[13815,13816,13817],[13818,13819,13820],[13821,13822,13823],[13824,13825,13826],[13827,13828,13829],[13830,13831,13832],[13833,13834,13835],[13836,13837,13838],[13839,13840,13841],[13842,13843,13844],[13845,13846,13847],[13848,13849,13850],[13851,13852,13853],[13854,13855,13856],[13857,13858,13859],[13860,13861,13862],[13863,13864,13865],[13866,13867,13868],[13869,13870,13871],[13872,13873,13874],[13875,13876,13877],[13878,13879,13880],[13881,13882,13883],[13884,13885,13886],[13887,13888,13889],[13890,13891,13892],[13893,13894,13895],[13896,13897,13898],[13899,13900,13901],[13902,13903,13904],[13905,13906,13907],[13908,13909,13910],[13911,13912,13913],[13914,13915,13916],[13917,13918,13919],[13920,13921,13922],[13923,13924,13925],[13926,13927,13928],[13929,13930,13931],[13932,13933,13934],[13935,13936,13937],[13938,13939,13940],[13941,13942,13943],[13944,13945,13946],[13947,13948,13949],[13950,13951,13952],[13953,13954,13955],[13956,13957,13958],[13959,13960,13961],[13962,13963,13964],[13965,13966,13967],[13968,13969,13970],[13971,13972,13973],[13974,13975,13976],[13977,13978,13979],[13980,13981,13982],[13983,13984,13985],[13986,13987,13988],[13989,13990,13991],[13992,13993,13994],[13995,13996,13997],[13998,13999,14000],[14001,14002,14003],[14004,14005,14006],[14007,14008,14009],[14010,14011,14012],[14013,14014,14015],[14016,14017,14018],[14019,14020,14021],[14022,14023,14024],[14025,14026,14027],[14028,14029,14030],[14031,14032,14033],[14034,14035,14036],[14037,14038,14039],[14040,14041,14042],[14043,14044,14045],[14046,14047,14048],[14049,14050,14051],[14052,14053,14054],[14055,14056,14057],[14058,14059,14060],[14061,14062,14063],[14064,14065,14066],[14067,14068,14069],[14070,14071,14072],[14073,14074,14075],[14076,14077,14078],[14079,14080,14081],[14082,14083,14084],[14085,14086,14087],[14088,14089,14090],[14091,14092,14093],[14094,14095,14096],[14097,14098,14099],[14100,14101,14102],[14103,14104,14105],[14106,14107,14108],[14109,14110,14111],[14112,14113,14114],[14115,14116,14117],[14118,14119,14120],[14121,14122,14123],[14124,14125,14126],[14127,14128,14129],[14130,14131,14132],[14133,14134,14135],[14136,14137,14138],[14139,14140,14141],[14142,14143,14144],[14145,14146,14147],[14148,14149,14150],[14151,14152,14153],[14154,14155,14156],[14157,14158,14159],[14160,14161,14162],[14163,14164,14165],[14166,14167,14168],[14169,14170,14171],[14172,14173,14174],[14175,14176,14177],[14178,14179,14180],[14181,14182,14183],[14184,14185,14186],[14187,14188,14189],[14190,14191,14192],[14193,14194,14195],[14196,14197,14198],[14199,14200,14201],[14202,14203,14204],[14205,14206,14207],[14208,14209,14210],[14211,14212,14213],[14214,14215,14216],[14217,14218,14219],[14220,14221,14222],[14223,14224,14225],[14226,14227,14228],[14229,14230,14231],[14232,14233,14234],[14235,14236,14237],[14238,14239,14240],[14241,14242,14243],[14244,14245,14246],[14247,14248,14249],[14250,14251,14252],[14253,14254,14255],[14256,14257,14258],[14259,14260,14261],[14262,14263,14264],[14265,14266,14267],[14268,14269,14270],[14271,14272,14273],[14274,14275,14276],[14277,14278,14279],[14280,14281,14282],[14283,14284,14285],[14286,14287,14288],[14289,14290,14291],[14292,14293,14294],[14295,14296,14297],[14298,14299,14300],[14301,14302,14303],[14304,14305,14306],[14307,14308,14309],[14310,14311,14312],[14313,14314,14315],[14316,14317,14318],[14319,14320,14321],[14322,14323,14324],[14325,14326,14327],[14328,14329,14330],[14331,14332,14333],[14334,14335,14336],[14337,14338,14339],[14340,14341,14342],[14343,14344,14345],[14346,14347,14348],[14349,14350,14351],[14352,14353,14354],[14355,14356,14357],[14358,14359,14360],[14361,14362,14363],[14364,14365,14366],[14367,14368,14369],[14370,14371,14372],[14373,14374,14375],[14376,14377,14378],[14379,14380,14381],[14382,14383,14384],[14385,14386,14387],[14388,14389,14390],[14391,14392,14393],[14394,14395,14396],[14397,14398,14399],[14400,14401,14402],[14403,14404,14405],[14406,14407,14408],[14409,14410,14411],[14412,14413,14414],[14415,14416,14417],[14418,14419,14420],[14421,14422,14423],[14424,14425,14426],[14427,14428,14429],[14430,14431,14432],[14433,14434,14435],[14436,14437,14438],[14439,14440,14441],[14442,14443,14444],[14445,14446,14447],[14448,14449,14450],[14451,14452,14453],[14454,14455,14456],[14457,14458,14459],[14460,14461,14462],[14463,14464,14465],[14466,14467,14468],[14469,14470,14471],[14472,14473,14474],[14475,14476,14477],[14478,14479,14480],[14481,14482,14483],[14484,14485,14486],[14487,14488,14489],[14490,14491,14492],[14493,14494,14495],[14496,14497,14498],[14499,14500,14501],[14502,14503,14504],[14505,14506,14507],[14508,14509,14510],[14511,14512,14513],[14514,14515,14516],[14517,14518,14519],[14520,14521,14522],[14523,14524,14525],[14526,14527,14528],[14529,14530,14531],[14532,14533,14534],[14535,14536,14537],[14538,14539,14540],[14541,14542,14543],[14544,14545,14546],[14547,14548,14549],[14550,14551,14552],[14553,14554,14555],[14556,14557,14558],[14559,14560,14561],[14562,14563,14564],[14565,14566,14567],[14568,14569,14570],[14571,14572,14573],[14574,14575,14576],[14577,14578,14579],[14580,14581,14582],[14583,14584,14585],[14586,14587,14588],[14589,14590,14591],[14592,14593,14594],[14595,14596,14597],[14598,14599,14600],[14601,14602,14603],[14604,14605,14606],[14607,14608,14609],[14610,14611,14612],[14613,14614,14615],[14616,14617,14618],[14619,14620,14621],[14622,14623,14624],[14625,14626,14627],[14628,14629,14630],[14631,14632,14633],[14634,14635,14636],[14637,14638,14639],[14640,14641,14642],[14643,14644,14645],[14646,14647,14648],[14649,14650,14651],[14652,14653,14654],[14655,14656,14657],[14658,14659,14660],[14661,14662,14663],[14664,14665,14666],[14667,14668,14669],[14670,14671,14672],[14673,14674,14675],[14676,14677,14678],[14679,14680,14681],[14682,14683,14684],[14685,14686,14687],[14688,14689,14690],[14691,14692,14693],[14694,14695,14696],[14697,14698,14699],[14700,14701,14702],[14703,14704,14705],[14706,14707,14708],[14709,14710,14711],[14712,14713,14714],[14715,14716,14717],[14718,14719,14720],[14721,14722,14723],[14724,14725,14726],[14727,14728,14729],[14730,14731,14732],[14733,14734,14735],[14736,14737,14738],[14739,14740,14741],[14742,14743,14744],[14745,14746,14747],[14748,14749,14750],[14751,14752,14753],[14754,14755,14756],[14757,14758,14759],[14760,14761,14762],[14763,14764,14765],[14766,14767,14768],[14769,14770,14771],[14772,14773,14774],[14775,14776,14777],[14778,14779,14780],[14781,14782,14783],[14784,14785,14786],[14787,14788,14789],[14790,14791,14792],[14793,14794,14795],[14796,14797,14798],[14799,14800,14801],[14802,14803,14804],[14805,14806,14807],[14808,14809,14810],[14811,14812,14813],[14814,14815,14816],[14817,14818,14819],[14820,14821,14822],[14823,14824,14825],[14826,14827,14828],[14829,14830,14831],[14832,14833,14834],[14835,14836,14837],[14838,14839,14840],[14841,14842,14843],[14844,14845,14846],[14847,14848,14849],[14850,14851,14852],[14853,14854,14855],[14856,14857,14858],[14859,14860,14861],[14862,14863,14864],[14865,14866,14867],[14868,14869,14870],[14871,14872,14873],[14874,14875,14876],[14877,14878,14879],[14880,14881,14882],[14883,14884,14885],[14886,14887,14888],[14889,14890,14891],[14892,14893,14894],[14895,14896,14897],[14898,14899,14900],[14901,14902,14903],[14904,14905,14906],[14907,14908,14909],[14910,14911,14912],[14913,14914,14915],[14916,14917,14918],[14919,14920,14921],[14922,14923,14924],[14925,14926,14927],[14928,14929,14930],[14931,14932,14933],[14934,14935,14936],[14937,14938,14939],[14940,14941,14942],[14943,14944,14945],[14946,14947,14948],[14949,14950,14951],[14952,14953,14954],[14955,14956,14957],[14958,14959,14960],[14961,14962,14963],[14964,14965,14966],[14967,14968,14969],[14970,14971,14972],[14973,14974,14975],[14976,14977,14978],[14979,14980,14981],[14982,14983,14984],[14985,14986,14987],[14988,14989,14990],[14991,14992,14993],[14994,14995,14996],[14997,14998,14999],[15000,15001,15002],[15003,15004,15005],[15006,15007,15008],[15009,15010,15011],[15012,15013,15014],[15015,15016,15017],[15018,15019,15020],[15021,15022,15023],[15024,15025,15026],[15027,15028,15029],[15030,15031,15032],[15033,15034,15035],[15036,15037,15038],[15039,15040,15041],[15042,15043,15044],[15045,15046,15047],[15048,15049,15050],[15051,15052,15053],[15054,15055,15056],[15057,15058,15059],[15060,15061,15062],[15063,15064,15065],[15066,15067,15068],[15069,15070,15071],[15072,15073,15074],[15075,15076,15077],[15078,15079,15080],[15081,15082,15083],[15084,15085,15086],[15087,15088,15089],[15090,15091,15092],[15093,15094,15095],[15096,15097,15098],[15099,15100,15101],[15102,15103,15104],[15105,15106,15107],[15108,15109,15110],[15111,15112,15113],[15114,15115,15116],[15117,15118,15119],[15120,15121,15122],[15123,15124,15125],[15126,15127,15128],[15129,15130,15131],[15132,15133,15134],[15135,15136,15137],[15138,15139,15140],[15141,15142,15143],[15144,15145,15146],[15147,15148,15149],[15150,15151,15152],[15153,15154,15155],[15156,15157,15158],[15159,15160,15161],[15162,15163,15164],[15165,15166,15167],[15168,15169,15170],[15171,15172,15173],[15174,15175,15176],[15177,15178,15179],[15180,15181,15182],[15183,15184,15185],[15186,15187,15188],[15189,15190,15191],[15192,15193,15194],[15195,15196,15197],[15198,15199,15200],[15201,15202,15203],[15204,15205,15206],[15207,15208,15209],[15210,15211,15212],[15213,15214,15215],[15216,15217,15218],[15219,15220,15221],[15222,15223,15224],[15225,15226,15227],[15228,15229,15230],[15231,15232,15233],[15234,15235,15236],[15237,15238,15239],[15240,15241,15242],[15243,15244,15245],[15246,15247,15248],[15249,15250,15251],[15252,15253,15254],[15255,15256,15257],[15258,15259,15260],[15261,15262,15263],[15264,15265,15266],[15267,15268,15269],[15270,15271,15272],[15273,15274,15275],[15276,15277,15278],[15279,15280,15281],[15282,15283,15284],[15285,15286,15287],[15288,15289,15290],[15291,15292,15293],[15294,15295,15296],[15297,15298,15299],[15300,15301,15302],[15303,15304,15305],[15306,15307,15308],[15309,15310,15311],[15312,15313,15314],[15315,15316,15317],[15318,15319,15320],[15321,15322,15323],[15324,15325,15326],[15327,15328,15329],[15330,15331,15332],[15333,15334,15335],[15336,15337,15338],[15339,15340,15341],[15342,15343,15344],[15345,15346,15347],[15348,15349,15350],[15351,15352,15353],[15354,15355,15356],[15357,15358,15359],[15360,15361,15362],[15363,15364,15365],[15366,15367,15368],[15369,15370,15371],[15372,15373,15374],[15375,15376,15377],[15378,15379,15380],[15381,15382,15383],[15384,15385,15386],[15387,15388,15389],[15390,15391,15392],[15393,15394,15395],[15396,15397,15398],[15399,15400,15401],[15402,15403,15404],[15405,15406,15407],[15408,15409,15410],[15411,15412,15413],[15414,15415,15416],[15417,15418,15419],[15420,15421,15422],[15423,15424,15425],[15426,15427,15428],[15429,15430,15431],[15432,15433,15434],[15435,15436,15437],[15438,15439,15440],[15441,15442,15443],[15444,15445,15446],[15447,15448,15449],[15450,15451,15452],[15453,15454,15455],[15456,15457,15458],[15459,15460,15461],[15462,15463,15464],[15465,15466,15467],[15468,15469,15470],[15471,15472,15473],[15474,15475,15476],[15477,15478,15479],[15480,15481,15482],[15483,15484,15485],[15486,15487,15488],[15489,15490,15491],[15492,15493,15494],[15495,15496,15497],[15498,15499,15500],[15501,15502,15503],[15504,15505,15506],[15507,15508,15509],[15510,15511,15512],[15513,15514,15515],[15516,15517,15518],[15519,15520,15521],[15522,15523,15524],[15525,15526,15527],[15528,15529,15530],[15531,15532,15533],[15534,15535,15536],[15537,15538,15539],[15540,15541,15542],[15543,15544,15545],[15546,15547,15548],[15549,15550,15551],[15552,15553,15554],[15555,15556,15557],[15558,15559,15560],[15561,15562,15563],[15564,15565,15566],[15567,15568,15569],[15570,15571,15572],[15573,15574,15575],[15576,15577,15578],[15579,15580,15581],[15582,15583,15584],[15585,15586,15587],[15588,15589,15590],[15591,15592,15593],[15594,15595,15596],[15597,15598,15599],[15600,15601,15602],[15603,15604,15605],[15606,15607,15608],[15609,15610,15611],[15612,15613,15614],[15615,15616,15617],[15618,15619,15620],[15621,15622,15623],[15624,15625,15626],[15627,15628,15629],[15630,15631,15632],[15633,15634,15635],[15636,15637,15638],[15639,15640,15641],[15642,15643,15644],[15645,15646,15647],[15648,15649,15650],[15651,15652,15653],[15654,15655,15656],[15657,15658,15659],[15660,15661,15662],[15663,15664,15665],[15666,15667,15668],[15669,15670,15671],[15672,15673,15674],[15675,15676,15677],[15678,15679,15680],[15681,15682,15683],[15684,15685,15686],[15687,15688,15689],[15690,15691,15692],[15693,15694,15695],[15696,15697,15698],[15699,15700,15701],[15702,15703,15704],[15705,15706,15707],[15708,15709,15710],[15711,15712,15713],[15714,15715,15716],[15717,15718,15719],[15720,15721,15722],[15723,15724,15725],[15726,15727,15728],[15729,15730,15731],[15732,15733,15734],[15735,15736,15737],[15738,15739,15740],[15741,15742,15743],[15744,15745,15746],[15747,15748,15749],[15750,15751,15752],[15753,15754,15755],[15756,15757,15758],[15759,15760,15761],[15762,15763,15764],[15765,15766,15767],[15768,15769,15770],[15771,15772,15773],[15774,15775,15776],[15777,15778,15779],[15780,15781,15782],[15783,15784,15785],[15786,15787,15788],[15789,15790,15791],[15792,15793,15794],[15795,15796,15797],[15798,15799,15800],[15801,15802,15803],[15804,15805,15806],[15807,15808,15809],[15810,15811,15812],[15813,15814,15815],[15816,15817,15818],[15819,15820,15821],[15822,15823,15824],[15825,15826,15827],[15828,15829,15830],[15831,15832,15833],[15834,15835,15836],[15837,15838,15839],[15840,15841,15842],[15843,15844,15845],[15846,15847,15848],[15849,15850,15851],[15852,15853,15854],[15855,15856,15857],[15858,15859,15860],[15861,15862,15863],[15864,15865,15866],[15867,15868,15869],[15870,15871,15872],[15873,15874,15875],[15876,15877,15878],[15879,15880,15881],[15882,15883,15884],[15885,15886,15887],[15888,15889,15890],[15891,15892,15893],[15894,15895,15896],[15897,15898,15899],[15900,15901,15902],[15903,15904,15905],[15906,15907,15908],[15909,15910,15911],[15912,15913,15914],[15915,15916,15917],[15918,15919,15920],[15921,15922,15923],[15924,15925,15926],[15927,15928,15929],[15930,15931,15932],[15933,15934,15935],[15936,15937,15938],[15939,15940,15941],[15942,15943,15944],[15945,15946,15947],[15948,15949,15950],[15951,15952,15953],[15954,15955,15956],[15957,15958,15959],[15960,15961,15962],[15963,15964,15965],[15966,15967,15968],[15969,15970,15971],[15972,15973,15974],[15975,15976,15977],[15978,15979,15980],[15981,15982,15983],[15984,15985,15986],[15987,15988,15989],[15990,15991,15992],[15993,15994,15995],[15996,15997,15998],[15999,16000,16001],[16002,16003,16004],[16005,16006,16007],[16008,16009,16010],[16011,16012,16013],[16014,16015,16016],[16017,16018,16019],[16020,16021,16022],[16023,16024,16025],[16026,16027,16028],[16029,16030,16031],[16032,16033,16034],[16035,16036,16037],[16038,16039,16040],[16041,16042,16043],[16044,16045,16046],[16047,16048,16049],[16050,16051,16052],[16053,16054,16055],[16056,16057,16058],[16059,16060,16061],[16062,16063,16064],[16065,16066,16067],[16068,16069,16070],[16071,16072,16073],[16074,16075,16076],[16077,16078,16079],[16080,16081,16082],[16083,16084,16085],[16086,16087,16088],[16089,16090,16091],[16092,16093,16094],[16095,16096,16097],[16098,16099,16100],[16101,16102,16103],[16104,16105,16106],[16107,16108,16109],[16110,16111,16112],[16113,16114,16115],[16116,16117,16118],[16119,16120,16121],[16122,16123,16124],[16125,16126,16127],[16128,16129,16130],[16131,16132,16133],[16134,16135,16136],[16137,16138,16139],[16140,16141,16142],[16143,16144,16145],[16146,16147,16148],[16149,16150,16151],[16152,16153,16154],[16155,16156,16157],[16158,16159,16160],[16161,16162,16163],[16164,16165,16166],[16167,16168,16169],[16170,16171,16172],[16173,16174,16175],[16176,16177,16178],[16179,16180,16181],[16182,16183,16184],[16185,16186,16187],[16188,16189,16190],[16191,16192,16193],[16194,16195,16196],[16197,16198,16199],[16200,16201,16202],[16203,16204,16205],[16206,16207,16208],[16209,16210,16211],[16212,16213,16214],[16215,16216,16217],[16218,16219,16220],[16221,16222,16223],[16224,16225,16226],[16227,16228,16229],[16230,16231,16232],[16233,16234,16235],[16236,16237,16238],[16239,16240,16241],[16242,16243,16244],[16245,16246,16247],[16248,16249,16250],[16251,16252,16253],[16254,16255,16256],[16257,16258,16259],[16260,16261,16262],[16263,16264,16265],[16266,16267,16268],[16269,16270,16271],[16272,16273,16274],[16275,16276,16277],[16278,16279,16280],[16281,16282,16283],[16284,16285,16286],[16287,16288,16289],[16290,16291,16292],[16293,16294,16295],[16296,16297,16298],[16299,16300,16301],[16302,16303,16304],[16305,16306,16307],[16308,16309,16310],[16311,16312,16313],[16314,16315,16316],[16317,16318,16319],[16320,16321,16322],[16323,16324,16325],[16326,16327,16328],[16329,16330,16331],[16332,16333,16334],[16335,16336,16337],[16338,16339,16340],[16341,16342,16343],[16344,16345,16346],[16347,16348,16349],[16350,16351,16352],[16353,16354,16355],[16356,16357,16358],[16359,16360,16361],[16362,16363,16364],[16365,16366,16367],[16368,16369,16370],[16371,16372,16373],[16374,16375,16376],[16377,16378,16379],[16380,16381,16382],[16383,16384,16385],[16386,16387,16388],[16389,16390,16391],[16392,16393,16394],[16395,16396,16397],[16398,16399,16400],[16401,16402,16403],[16404,16405,16406],[16407,16408,16409],[16410,16411,16412],[16413,16414,16415],[16416,16417,16418],[16419,16420,16421],[16422,16423,16424],[16425,16426,16427],[16428,16429,16430],[16431,16432,16433],[16434,16435,16436],[16437,16438,16439],[16440,16441,16442],[16443,16444,16445],[16446,16447,16448],[16449,16450,16451],[16452,16453,16454],[16455,16456,16457],[16458,16459,16460],[16461,16462,16463],[16464,16465,16466],[16467,16468,16469],[16470,16471,16472],[16473,16474,16475],[16476,16477,16478],[16479,16480,16481],[16482,16483,16484],[16485,16486,16487],[16488,16489,16490],[16491,16492,16493],[16494,16495,16496],[16497,16498,16499],[16500,16501,16502],[16503,16504,16505],[16506,16507,16508],[16509,16510,16511],[16512,16513,16514],[16515,16516,16517],[16518,16519,16520],[16521,16522,16523],[16524,16525,16526],[16527,16528,16529],[16530,16531,16532],[16533,16534,16535],[16536,16537,16538],[16539,16540,16541],[16542,16543,16544],[16545,16546,16547],[16548,16549,16550],[16551,16552,16553],[16554,16555,16556],[16557,16558,16559],[16560,16561,16562],[16563,16564,16565],[16566,16567,16568],[16569,16570,16571],[16572,16573,16574],[16575,16576,16577],[16578,16579,16580],[16581,16582,16583],[16584,16585,16586],[16587,16588,16589],[16590,16591,16592],[16593,16594,16595],[16596,16597,16598],[16599,16600,16601],[16602,16603,16604],[16605,16606,16607],[16608,16609,16610],[16611,16612,16613],[16614,16615,16616],[16617,16618,16619],[16620,16621,16622],[16623,16624,16625],[16626,16627,16628],[16629,16630,16631],[16632,16633,16634],[16635,16636,16637],[16638,16639,16640],[16641,16642,16643],[16644,16645,16646],[16647,16648,16649],[16650,16651,16652],[16653,16654,16655],[16656,16657,16658],[16659,16660,16661],[16662,16663,16664],[16665,16666,16667],[16668,16669,16670],[16671,16672,16673],[16674,16675,16676],[16677,16678,16679],[16680,16681,16682],[16683,16684,16685],[16686,16687,16688],[16689,16690,16691],[16692,16693,16694],[16695,16696,16697],[16698,16699,16700],[16701,16702,16703],[16704,16705,16706],[16707,16708,16709],[16710,16711,16712],[16713,16714,16715],[16716,16717,16718],[16719,16720,16721],[16722,16723,16724],[16725,16726,16727],[16728,16729,16730],[16731,16732,16733],[16734,16735,16736],[16737,16738,16739],[16740,16741,16742],[16743,16744,16745],[16746,16747,16748],[16749,16750,16751],[16752,16753,16754],[16755,16756,16757],[16758,16759,16760],[16761,16762,16763],[16764,16765,16766],[16767,16768,16769],[16770,16771,16772],[16773,16774,16775],[16776,16777,16778],[16779,16780,16781],[16782,16783,16784],[16785,16786,16787],[16788,16789,16790],[16791,16792,16793],[16794,16795,16796],[16797,16798,16799],[16800,16801,16802],[16803,16804,16805],[16806,16807,16808],[16809,16810,16811],[16812,16813,16814],[16815,16816,16817],[16818,16819,16820],[16821,16822,16823],[16824,16825,16826],[16827,16828,16829],[16830,16831,16832],[16833,16834,16835],[16836,16837,16838],[16839,16840,16841],[16842,16843,16844],[16845,16846,16847],[16848,16849,16850],[16851,16852,16853],[16854,16855,16856],[16857,16858,16859],[16860,16861,16862],[16863,16864,16865],[16866,16867,16868],[16869,16870,16871],[16872,16873,16874],[16875,16876,16877],[16878,16879,16880],[16881,16882,16883],[16884,16885,16886],[16887,16888,16889],[16890,16891,16892],[16893,16894,16895],[16896,16897,16898],[16899,16900,16901],[16902,16903,16904],[16905,16906,16907],[16908,16909,16910],[16911,16912,16913],[16914,16915,16916],[16917,16918,16919],[16920,16921,16922],[16923,16924,16925],[16926,16927,16928],[16929,16930,16931],[16932,16933,16934],[16935,16936,16937],[16938,16939,16940],[16941,16942,16943],[16944,16945,16946],[16947,16948,16949],[16950,16951,16952],[16953,16954,16955],[16956,16957,16958],[16959,16960,16961],[16962,16963,16964],[16965,16966,16967],[16968,16969,16970],[16971,16972,16973],[16974,16975,16976],[16977,16978,16979],[16980,16981,16982],[16983,16984,16985],[16986,16987,16988],[16989,16990,16991],[16992,16993,16994],[16995,16996,16997],[16998,16999,17000],[17001,17002,17003],[17004,17005,17006],[17007,17008,17009],[17010,17011,17012],[17013,17014,17015],[17016,17017,17018],[17019,17020,17021],[17022,17023,17024],[17025,17026,17027],[17028,17029,17030],[17031,17032,17033],[17034,17035,17036],[17037,17038,17039],[17040,17041,17042],[17043,17044,17045],[17046,17047,17048],[17049,17050,17051],[17052,17053,17054],[17055,17056,17057],[17058,17059,17060],[17061,17062,17063],[17064,17065,17066],[17067,17068,17069],[17070,17071,17072],[17073,17074,17075],[17076,17077,17078],[17079,17080,17081],[17082,17083,17084],[17085,17086,17087],[17088,17089,17090],[17091,17092,17093],[17094,17095,17096],[17097,17098,17099],[17100,17101,17102],[17103,17104,17105],[17106,17107,17108],[17109,17110,17111],[17112,17113,17114],[17115,17116,17117],[17118,17119,17120],[17121,17122,17123],[17124,17125,17126],[17127,17128,17129],[17130,17131,17132],[17133,17134,17135],[17136,17137,17138],[17139,17140,17141],[17142,17143,17144],[17145,17146,17147],[17148,17149,17150],[17151,17152,17153],[17154,17155,17156],[17157,17158,17159],[17160,17161,17162],[17163,17164,17165],[17166,17167,17168],[17169,17170,17171],[17172,17173,17174],[17175,17176,17177],[17178,17179,17180],[17181,17182,17183],[17184,17185,17186],[17187,17188,17189],[17190,17191,17192],[17193,17194,17195],[17196,17197,17198],[17199,17200,17201],[17202,17203,17204],[17205,17206,17207],[17208,17209,17210],[17211,17212,17213],[17214,17215,17216],[17217,17218,17219],[17220,17221,17222],[17223,17224,17225],[17226,17227,17228],[17229,17230,17231],[17232,17233,17234],[17235,17236,17237],[17238,17239,17240],[17241,17242,17243],[17244,17245,17246],[17247,17248,17249],[17250,17251,17252],[17253,17254,17255],[17256,17257,17258],[17259,17260,17261],[17262,17263,17264],[17265,17266,17267],[17268,17269,17270],[17271,17272,17273],[17274,17275,17276],[17277,17278,17279],[17280,17281,17282],[17283,17284,17285],[17286,17287,17288],[17289,17290,17291],[17292,17293,17294],[17295,17296,17297],[17298,17299,17300],[17301,17302,17303],[17304,17305,17306],[17307,17308,17309],[17310,17311,17312],[17313,17314,17315],[17316,17317,17318],[17319,17320,17321],[17322,17323,17324],[17325,17326,17327],[17328,17329,17330],[17331,17332,17333],[17334,17335,17336],[17337,17338,17339],[17340,17341,17342],[17343,17344,17345],[17346,17347,17348],[17349,17350,17351],[17352,17353,17354],[17355,17356,17357],[17358,17359,17360],[17361,17362,17363],[17364,17365,17366],[17367,17368,17369],[17370,17371,17372],[17373,17374,17375],[17376,17377,17378],[17379,17380,17381],[17382,17383,17384],[17385,17386,17387],[17388,17389,17390],[17391,17392,17393],[17394,17395,17396],[17397,17398,17399],[17400,17401,17402],[17403,17404,17405],[17406,17407,17408],[17409,17410,17411],[17412,17413,17414],[17415,17416,17417],[17418,17419,17420],[17421,17422,17423],[17424,17425,17426],[17427,17428,17429],[17430,17431,17432],[17433,17434,17435],[17436,17437,17438],[17439,17440,17441],[17442,17443,17444],[17445,17446,17447],[17448,17449,17450],[17451,17452,17453],[17454,17455,17456],[17457,17458,17459],[17460,17461,17462],[17463,17464,17465],[17466,17467,17468],[17469,17470,17471],[17472,17473,17474],[17475,17476,17477],[17478,17479,17480],[17481,17482,17483],[17484,17485,17486],[17487,17488,17489],[17490,17491,17492],[17493,17494,17495],[17496,17497,17498],[17499,17500,17501],[17502,17503,17504],[17505,17506,17507],[17508,17509,17510],[17511,17512,17513],[17514,17515,17516],[17517,17518,17519],[17520,17521,17522],[17523,17524,17525],[17526,17527,17528],[17529,17530,17531],[17532,17533,17534],[17535,17536,17537],[17538,17539,17540],[17541,17542,17543],[17544,17545,17546],[17547,17548,17549],[17550,17551,17552],[17553,17554,17555],[17556,17557,17558],[17559,17560,17561],[17562,17563,17564],[17565,17566,17567],[17568,17569,17570],[17571,17572,17573],[17574,17575,17576],[17577,17578,17579],[17580,17581,17582],[17583,17584,17585],[17586,17587,17588],[17589,17590,17591],[17592,17593,17594],[17595,17596,17597],[17598,17599,17600],[17601,17602,17603],[17604,17605,17606],[17607,17608,17609],[17610,17611,17612],[17613,17614,17615],[17616,17617,17618],[17619,17620,17621],[17622,17623,17624],[17625,17626,17627],[17628,17629,17630],[17631,17632,17633],[17634,17635,17636],[17637,17638,17639],[17640,17641,17642],[17643,17644,17645],[17646,17647,17648],[17649,17650,17651],[17652,17653,17654],[17655,17656,17657],[17658,17659,17660],[17661,17662,17663],[17664,17665,17666],[17667,17668,17669],[17670,17671,17672],[17673,17674,17675],[17676,17677,17678],[17679,17680,17681],[17682,17683,17684],[17685,17686,17687],[17688,17689,17690],[17691,17692,17693],[17694,17695,17696],[17697,17698,17699],[17700,17701,17702],[17703,17704,17705],[17706,17707,17708],[17709,17710,17711],[17712,17713,17714],[17715,17716,17717],[17718,17719,17720],[17721,17722,17723],[17724,17725,17726],[17727,17728,17729],[17730,17731,17732],[17733,17734,17735],[17736,17737,17738],[17739,17740,17741],[17742,17743,17744],[17745,17746,17747],[17748,17749,17750],[17751,17752,17753],[17754,17755,17756],[17757,17758,17759],[17760,17761,17762],[17763,17764,17765],[17766,17767,17768],[17769,17770,17771],[17772,17773,17774],[17775,17776,17777],[17778,17779,17780],[17781,17782,17783],[17784,17785,17786],[17787,17788,17789],[17790,17791,17792],[17793,17794,17795],[17796,17797,17798],[17799,17800,17801],[17802,17803,17804],[17805,17806,17807],[17808,17809,17810],[17811,17812,17813],[17814,17815,17816],[17817,17818,17819],[17820,17821,17822],[17823,17824,17825],[17826,17827,17828],[17829,17830,17831],[17832,17833,17834],[17835,17836,17837],[17838,17839,17840],[17841,17842,17843],[17844,17845,17846],[17847,17848,17849],[17850,17851,17852],[17853,17854,17855],[17856,17857,17858],[17859,17860,17861],[17862,17863,17864],[17865,17866,17867],[17868,17869,17870],[17871,17872,17873],[17874,17875,17876],[17877,17878,17879],[17880,17881,17882],[17883,17884,17885],[17886,17887,17888],[17889,17890,17891],[17892,17893,17894],[17895,17896,17897],[17898,17899,17900],[17901,17902,17903],[17904,17905,17906],[17907,17908,17909],[17910,17911,17912],[17913,17914,17915],[17916,17917,17918],[17919,17920,17921],[17922,17923,17924],[17925,17926,17927],[17928,17929,17930],[17931,17932,17933],[17934,17935,17936],[17937,17938,17939],[17940,17941,17942],[17943,17944,17945],[17946,17947,17948],[17949,17950,17951],[17952,17953,17954],[17955,17956,17957],[17958,17959,17960],[17961,17962,17963],[17964,17965,17966],[17967,17968,17969],[17970,17971,17972],[17973,17974,17975],[17976,17977,17978],[17979,17980,17981],[17982,17983,17984],[17985,17986,17987],[17988,17989,17990],[17991,17992,17993],[17994,17995,17996],[17997,17998,17999],[18000,18001,18002],[18003,18004,18005],[18006,18007,18008],[18009,18010,18011],[18012,18013,18014],[18015,18016,18017],[18018,18019,18020],[18021,18022,18023],[18024,18025,18026],[18027,18028,18029],[18030,18031,18032],[18033,18034,18035],[18036,18037,18038],[18039,18040,18041],[18042,18043,18044],[18045,18046,18047],[18048,18049,18050],[18051,18052,18053],[18054,18055,18056],[18057,18058,18059],[18060,18061,18062],[18063,18064,18065],[18066,18067,18068],[18069,18070,18071],[18072,18073,18074],[18075,18076,18077],[18078,18079,18080],[18081,18082,18083],[18084,18085,18086],[18087,18088,18089],[18090,18091,18092],[18093,18094,18095],[18096,18097,18098],[18099,18100,18101],[18102,18103,18104],[18105,18106,18107],[18108,18109,18110],[18111,18112,18113],[18114,18115,18116],[18117,18118,18119],[18120,18121,18122],[18123,18124,18125],[18126,18127,18128],[18129,18130,18131],[18132,18133,18134],[18135,18136,18137],[18138,18139,18140],[18141,18142,18143],[18144,18145,18146],[18147,18148,18149],[18150,18151,18152],[18153,18154,18155],[18156,18157,18158],[18159,18160,18161],[18162,18163,18164],[18165,18166,18167],[18168,18169,18170],[18171,18172,18173],[18174,18175,18176],[18177,18178,18179],[18180,18181,18182],[18183,18184,18185],[18186,18187,18188],[18189,18190,18191],[18192,18193,18194],[18195,18196,18197],[18198,18199,18200],[18201,18202,18203],[18204,18205,18206],[18207,18208,18209],[18210,18211,18212],[18213,18214,18215],[18216,18217,18218],[18219,18220,18221],[18222,18223,18224],[18225,18226,18227],[18228,18229,18230],[18231,18232,18233],[18234,18235,18236],[18237,18238,18239],[18240,18241,18242],[18243,18244,18245],[18246,18247,18248],[18249,18250,18251],[18252,18253,18254],[18255,18256,18257],[18258,18259,18260],[18261,18262,18263],[18264,18265,18266],[18267,18268,18269],[18270,18271,18272],[18273,18274,18275],[18276,18277,18278],[18279,18280,18281],[18282,18283,18284],[18285,18286,18287],[18288,18289,18290],[18291,18292,18293],[18294,18295,18296],[18297,18298,18299],[18300,18301,18302],[18303,18304,18305],[18306,18307,18308],[18309,18310,18311],[18312,18313,18314],[18315,18316,18317],[18318,18319,18320],[18321,18322,18323],[18324,18325,18326],[18327,18328,18329],[18330,18331,18332],[18333,18334,18335],[18336,18337,18338],[18339,18340,18341],[18342,18343,18344],[18345,18346,18347],[18348,18349,18350],[18351,18352,18353],[18354,18355,18356],[18357,18358,18359],[18360,18361,18362],[18363,18364,18365],[18366,18367,18368],[18369,18370,18371],[18372,18373,18374],[18375,18376,18377],[18378,18379,18380],[18381,18382,18383],[18384,18385,18386],[18387,18388,18389],[18390,18391,18392],[18393,18394,18395],[18396,18397,18398],[18399,18400,18401],[18402,18403,18404],[18405,18406,18407],[18408,18409,18410],[18411,18412,18413],[18414,18415,18416],[18417,18418,18419],[18420,18421,18422],[18423,18424,18425],[18426,18427,18428],[18429,18430,18431],[18432,18433,18434],[18435,18436,18437],[18438,18439,18440],[18441,18442,18443],[18444,18445,18446],[18447,18448,18449],[18450,18451,18452],[18453,18454,18455],[18456,18457,18458],[18459,18460,18461],[18462,18463,18464],[18465,18466,18467],[18468,18469,18470],[18471,18472,18473],[18474,18475,18476],[18477,18478,18479],[18480,18481,18482],[18483,18484,18485],[18486,18487,18488],[18489,18490,18491],[18492,18493,18494],[18495,18496,18497],[18498,18499,18500],[18501,18502,18503],[18504,18505,18506],[18507,18508,18509],[18510,18511,18512],[18513,18514,18515],[18516,18517,18518],[18519,18520,18521],[18522,18523,18524],[18525,18526,18527],[18528,18529,18530],[18531,18532,18533],[18534,18535,18536],[18537,18538,18539],[18540,18541,18542],[18543,18544,18545],[18546,18547,18548],[18549,18550,18551],[18552,18553,18554],[18555,18556,18557],[18558,18559,18560],[18561,18562,18563],[18564,18565,18566],[18567,18568,18569],[18570,18571,18572],[18573,18574,18575],[18576,18577,18578],[18579,18580,18581],[18582,18583,18584],[18585,18586,18587],[18588,18589,18590],[18591,18592,18593],[18594,18595,18596],[18597,18598,18599],[18600,18601,18602],[18603,18604,18605],[18606,18607,18608],[18609,18610,18611],[18612,18613,18614],[18615,18616,18617],[18618,18619,18620],[18621,18622,18623],[18624,18625,18626],[18627,18628,18629],[18630,18631,18632],[18633,18634,18635],[18636,18637,18638],[18639,18640,18641],[18642,18643,18644],[18645,18646,18647],[18648,18649,18650],[18651,18652,18653],[18654,18655,18656],[18657,18658,18659],[18660,18661,18662],[18663,18664,18665],[18666,18667,18668],[18669,18670,18671],[18672,18673,18674],[18675,18676,18677],[18678,18679,18680],[18681,18682,18683],[18684,18685,18686],[18687,18688,18689],[18690,18691,18692],[18693,18694,18695],[18696,18697,18698],[18699,18700,18701],[18702,18703,18704],[18705,18706,18707],[18708,18709,18710],[18711,18712,18713],[18714,18715,18716],[18717,18718,18719],[18720,18721,18722],[18723,18724,18725],[18726,18727,18728],[18729,18730,18731],[18732,18733,18734],[18735,18736,18737],[18738,18739,18740],[18741,18742,18743],[18744,18745,18746],[18747,18748,18749],[18750,18751,18752],[18753,18754,18755],[18756,18757,18758],[18759,18760,18761],[18762,18763,18764],[18765,18766,18767],[18768,18769,18770],[18771,18772,18773],[18774,18775,18776],[18777,18778,18779],[18780,18781,18782],[18783,18784,18785],[18786,18787,18788],[18789,18790,18791],[18792,18793,18794],[18795,18796,18797],[18798,18799,18800],[18801,18802,18803],[18804,18805,18806],[18807,18808,18809],[18810,18811,18812],[18813,18814,18815],[18816,18817,18818],[18819,18820,18821],[18822,18823,18824],[18825,18826,18827],[18828,18829,18830],[18831,18832,18833],[18834,18835,18836],[18837,18838,18839],[18840,18841,18842],[18843,18844,18845],[18846,18847,18848],[18849,18850,18851],[18852,18853,18854],[18855,18856,18857],[18858,18859,18860],[18861,18862,18863],[18864,18865,18866],[18867,18868,18869],[18870,18871,18872],[18873,18874,18875],[18876,18877,18878],[18879,18880,18881],[18882,18883,18884],[18885,18886,18887],[18888,18889,18890],[18891,18892,18893],[18894,18895,18896],[18897,18898,18899],[18900,18901,18902],[18903,18904,18905],[18906,18907,18908],[18909,18910,18911],[18912,18913,18914],[18915,18916,18917],[18918,18919,18920],[18921,18922,18923],[18924,18925,18926],[18927,18928,18929],[18930,18931,18932],[18933,18934,18935],[18936,18937,18938],[18939,18940,18941],[18942,18943,18944],[18945,18946,18947],[18948,18949,18950],[18951,18952,18953],[18954,18955,18956],[18957,18958,18959],[18960,18961,18962],[18963,18964,18965],[18966,18967,18968],[18969,18970,18971],[18972,18973,18974],[18975,18976,18977],[18978,18979,18980],[18981,18982,18983],[18984,18985,18986],[18987,18988,18989],[18990,18991,18992],[18993,18994,18995],[18996,18997,18998],[18999,19000,19001],[19002,19003,19004],[19005,19006,19007],[19008,19009,19010],[19011,19012,19013],[19014,19015,19016],[19017,19018,19019],[19020,19021,19022],[19023,19024,19025],[19026,19027,19028],[19029,19030,19031],[19032,19033,19034],[19035,19036,19037],[19038,19039,19040],[19041,19042,19043],[19044,19045,19046],[19047,19048,19049],[19050,19051,19052],[19053,19054,19055],[19056,19057,19058],[19059,19060,19061],[19062,19063,19064],[19065,19066,19067],[19068,19069,19070],[19071,19072,19073],[19074,19075,19076],[19077,19078,19079],[19080,19081,19082],[19083,19084,19085],[19086,19087,19088],[19089,19090,19091],[19092,19093,19094],[19095,19096,19097],[19098,19099,19100],[19101,19102,19103],[19104,19105,19106],[19107,19108,19109],[19110,19111,19112],[19113,19114,19115],[19116,19117,19118],[19119,19120,19121],[19122,19123,19124],[19125,19126,19127],[19128,19129,19130],[19131,19132,19133],[19134,19135,19136],[19137,19138,19139],[19140,19141,19142],[19143,19144,19145],[19146,19147,19148],[19149,19150,19151],[19152,19153,19154],[19155,19156,19157],[19158,19159,19160],[19161,19162,19163],[19164,19165,19166],[19167,19168,19169],[19170,19171,19172],[19173,19174,19175],[19176,19177,19178],[19179,19180,19181],[19182,19183,19184],[19185,19186,19187],[19188,19189,19190],[19191,19192,19193],[19194,19195,19196],[19197,19198,19199],[19200,19201,19202],[19203,19204,19205],[19206,19207,19208],[19209,19210,19211],[19212,19213,19214],[19215,19216,19217],[19218,19219,19220],[19221,19222,19223],[19224,19225,19226],[19227,19228,19229],[19230,19231,19232],[19233,19234,19235],[19236,19237,19238],[19239,19240,19241],[19242,19243,19244],[19245,19246,19247],[19248,19249,19250],[19251,19252,19253],[19254,19255,19256],[19257,19258,19259],[19260,19261,19262],[19263,19264,19265],[19266,19267,19268],[19269,19270,19271],[19272,19273,19274],[19275,19276,19277],[19278,19279,19280],[19281,19282,19283],[19284,19285,19286],[19287,19288,19289],[19290,19291,19292],[19293,19294,19295],[19296,19297,19298],[19299,19300,19301],[19302,19303,19304],[19305,19306,19307],[19308,19309,19310],[19311,19312,19313],[19314,19315,19316],[19317,19318,19319],[19320,19321,19322],[19323,19324,19325],[19326,19327,19328],[19329,19330,19331],[19332,19333,19334],[19335,19336,19337],[19338,19339,19340],[19341,19342,19343],[19344,19345,19346],[19347,19348,19349],[19350,19351,19352],[19353,19354,19355],[19356,19357,19358],[19359,19360,19361],[19362,19363,19364],[19365,19366,19367],[19368,19369,19370],[19371,19372,19373],[19374,19375,19376],[19377,19378,19379],[19380,19381,19382],[19383,19384,19385],[19386,19387,19388],[19389,19390,19391],[19392,19393,19394],[19395,19396,19397],[19398,19399,19400],[19401,19402,19403],[19404,19405,19406],[19407,19408,19409],[19410,19411,19412],[19413,19414,19415],[19416,19417,19418],[19419,19420,19421],[19422,19423,19424],[19425,19426,19427],[19428,19429,19430],[19431,19432,19433],[19434,19435,19436],[19437,19438,19439],[19440,19441,19442],[19443,19444,19445],[19446,19447,19448],[19449,19450,19451],[19452,19453,19454],[19455,19456,19457],[19458,19459,19460],[19461,19462,19463],[19464,19465,19466],[19467,19468,19469],[19470,19471,19472],[19473,19474,19475],[19476,19477,19478],[19479,19480,19481],[19482,19483,19484],[19485,19486,19487],[19488,19489,19490],[19491,19492,19493],[19494,19495,19496],[19497,19498,19499],[19500,19501,19502],[19503,19504,19505],[19506,19507,19508],[19509,19510,19511],[19512,19513,19514],[19515,19516,19517],[19518,19519,19520],[19521,19522,19523],[19524,19525,19526],[19527,19528,19529],[19530,19531,19532],[19533,19534,19535],[19536,19537,19538],[19539,19540,19541],[19542,19543,19544],[19545,19546,19547],[19548,19549,19550],[19551,19552,19553],[19554,19555,19556],[19557,19558,19559],[19560,19561,19562],[19563,19564,19565],[19566,19567,19568],[19569,19570,19571],[19572,19573,19574],[19575,19576,19577],[19578,19579,19580],[19581,19582,19583],[19584,19585,19586],[19587,19588,19589],[19590,19591,19592],[19593,19594,19595],[19596,19597,19598],[19599,19600,19601],[19602,19603,19604],[19605,19606,19607],[19608,19609,19610],[19611,19612,19613],[19614,19615,19616],[19617,19618,19619],[19620,19621,19622],[19623,19624,19625],[19626,19627,19628],[19629,19630,19631],[19632,19633,19634],[19635,19636,19637],[19638,19639,19640],[19641,19642,19643],[19644,19645,19646],[19647,19648,19649],[19650,19651,19652],[19653,19654,19655],[19656,19657,19658],[19659,19660,19661],[19662,19663,19664],[19665,19666,19667],[19668,19669,19670],[19671,19672,19673],[19674,19675,19676],[19677,19678,19679],[19680,19681,19682],[19683,19684,19685],[19686,19687,19688],[19689,19690,19691],[19692,19693,19694],[19695,19696,19697],[19698,19699,19700],[19701,19702,19703],[19704,19705,19706],[19707,19708,19709],[19710,19711,19712],[19713,19714,19715],[19716,19717,19718],[19719,19720,19721],[19722,19723,19724],[19725,19726,19727],[19728,19729,19730],[19731,19732,19733],[19734,19735,19736],[19737,19738,19739],[19740,19741,19742],[19743,19744,19745],[19746,19747,19748],[19749,19750,19751],[19752,19753,19754],[19755,19756,19757],[19758,19759,19760],[19761,19762,19763],[19764,19765,19766],[19767,19768,19769],[19770,19771,19772],[19773,19774,19775],[19776,19777,19778],[19779,19780,19781],[19782,19783,19784],[19785,19786,19787],[19788,19789,19790],[19791,19792,19793],[19794,19795,19796],[19797,19798,19799],[19800,19801,19802],[19803,19804,19805],[19806,19807,19808],[19809,19810,19811],[19812,19813,19814],[19815,19816,19817],[19818,19819,19820],[19821,19822,19823],[19824,19825,19826],[19827,19828,19829],[19830,19831,19832],[19833,19834,19835],[19836,19837,19838],[19839,19840,19841],[19842,19843,19844],[19845,19846,19847],[19848,19849,19850],[19851,19852,19853],[19854,19855,19856],[19857,19858,19859],[19860,19861,19862],[19863,19864,19865],[19866,19867,19868],[19869,19870,19871],[19872,19873,19874],[19875,19876,19877],[19878,19879,19880],[19881,19882,19883],[19884,19885,19886],[19887,19888,19889],[19890,19891,19892],[19893,19894,19895],[19896,19897,19898],[19899,19900,19901],[19902,19903,19904],[19905,19906,19907],[19908,19909,19910],[19911,19912,19913],[19914,19915,19916],[19917,19918,19919],[19920,19921,19922],[19923,19924,19925],[19926,19927,19928],[19929,19930,19931],[19932,19933,19934],[19935,19936,19937],[19938,19939,19940],[19941,19942,19943],[19944,19945,19946],[19947,19948,19949],[19950,19951,19952],[19953,19954,19955],[19956,19957,19958],[19959,19960,19961],[19962,19963,19964],[19965,19966,19967],[19968,19969,19970],[19971,19972,19973],[19974,19975,19976],[19977,19978,19979],[19980,19981,19982],[19983,19984,19985],[19986,19987,19988],[19989,19990,19991],[19992,19993,19994],[19995,19996,19997],[19998,19999,20000],[20001,20002,20003],[20004,20005,20006],[20007,20008,20009],[20010,20011,20012],[20013,20014,20015],[20016,20017,20018],[20019,20020,20021],[20022,20023,20024],[20025,20026,20027],[20028,20029,20030],[20031,20032,20033],[20034,20035,20036],[20037,20038,20039],[20040,20041,20042],[20043,20044,20045],[20046,20047,20048],[20049,20050,20051],[20052,20053,20054],[20055,20056,20057],[20058,20059,20060],[20061,20062,20063],[20064,20065,20066],[20067,20068,20069],[20070,20071,20072],[20073,20074,20075],[20076,20077,20078],[20079,20080,20081],[20082,20083,20084],[20085,20086,20087],[20088,20089,20090],[20091,20092,20093],[20094,20095,20096],[20097,20098,20099],[20100,20101,20102],[20103,20104,20105],[20106,20107,20108],[20109,20110,20111],[20112,20113,20114],[20115,20116,20117],[20118,20119,20120],[20121,20122,20123],[20124,20125,20126],[20127,20128,20129],[20130,20131,20132],[20133,20134,20135],[20136,20137,20138],[20139,20140,20141],[20142,20143,20144],[20145,20146,20147],[20148,20149,20150],[20151,20152,20153],[20154,20155,20156],[20157,20158,20159],[20160,20161,20162],[20163,20164,20165],[20166,20167,20168],[20169,20170,20171],[20172,20173,20174],[20175,20176,20177],[20178,20179,20180],[20181,20182,20183],[20184,20185,20186],[20187,20188,20189],[20190,20191,20192],[20193,20194,20195],[20196,20197,20198],[20199,20200,20201],[20202,20203,20204],[20205,20206,20207],[20208,20209,20210],[20211,20212,20213],[20214,20215,20216],[20217,20218,20219],[20220,20221,20222],[20223,20224,20225],[20226,20227,20228],[20229,20230,20231],[20232,20233,20234],[20235,20236,20237],[20238,20239,20240],[20241,20242,20243],[20244,20245,20246],[20247,20248,20249],[20250,20251,20252],[20253,20254,20255],[20256,20257,20258],[20259,20260,20261],[20262,20263,20264],[20265,20266,20267],[20268,20269,20270],[20271,20272,20273],[20274,20275,20276],[20277,20278,20279],[20280,20281,20282],[20283,20284,20285],[20286,20287,20288],[20289,20290,20291],[20292,20293,20294],[20295,20296,20297],[20298,20299,20300],[20301,20302,20303],[20304,20305,20306],[20307,20308,20309],[20310,20311,20312],[20313,20314,20315],[20316,20317,20318],[20319,20320,20321],[20322,20323,20324],[20325,20326,20327],[20328,20329,20330],[20331,20332,20333],[20334,20335,20336],[20337,20338,20339],[20340,20341,20342],[20343,20344,20345],[20346,20347,20348],[20349,20350,20351],[20352,20353,20354],[20355,20356,20357],[20358,20359,20360],[20361,20362,20363],[20364,20365,20366],[20367,20368,20369],[20370,20371,20372],[20373,20374,20375],[20376,20377,20378],[20379,20380,20381],[20382,20383,20384],[20385,20386,20387],[20388,20389,20390],[20391,20392,20393],[20394,20395,20396],[20397,20398,20399],[20400,20401,20402],[20403,20404,20405],[20406,20407,20408],[20409,20410,20411],[20412,20413,20414],[20415,20416,20417],[20418,20419,20420],[20421,20422,20423],[20424,20425,20426],[20427,20428,20429],[20430,20431,20432],[20433,20434,20435],[20436,20437,20438],[20439,20440,20441],[20442,20443,20444],[20445,20446,20447],[20448,20449,20450],[20451,20452,20453],[20454,20455,20456],[20457,20458,20459],[20460,20461,20462],[20463,20464,20465],[20466,20467,20468],[20469,20470,20471],[20472,20473,20474],[20475,20476,20477],[20478,20479,20480],[20481,20482,20483],[20484,20485,20486],[20487,20488,20489],[20490,20491,20492],[20493,20494,20495],[20496,20497,20498],[20499,20500,20501],[20502,20503,20504],[20505,20506,20507],[20508,20509,20510],[20511,20512,20513],[20514,20515,20516],[20517,20518,20519],[20520,20521,20522],[20523,20524,20525],[20526,20527,20528],[20529,20530,20531],[20532,20533,20534],[20535,20536,20537],[20538,20539,20540],[20541,20542,20543],[20544,20545,20546],[20547,20548,20549],[20550,20551,20552],[20553,20554,20555],[20556,20557,20558],[20559,20560,20561],[20562,20563,20564],[20565,20566,20567],[20568,20569,20570],[20571,20572,20573],[20574,20575,20576],[20577,20578,20579],[20580,20581,20582],[20583,20584,20585],[20586,20587,20588],[20589,20590,20591],[20592,20593,20594],[20595,20596,20597],[20598,20599,20600],[20601,20602,20603],[20604,20605,20606],[20607,20608,20609],[20610,20611,20612],[20613,20614,20615],[20616,20617,20618],[20619,20620,20621],[20622,20623,20624],[20625,20626,20627],[20628,20629,20630],[20631,20632,20633],[20634,20635,20636],[20637,20638,20639],[20640,20641,20642],[20643,20644,20645],[20646,20647,20648],[20649,20650,20651],[20652,20653,20654],[20655,20656,20657],[20658,20659,20660],[20661,20662,20663],[20664,20665,20666],[20667,20668,20669],[20670,20671,20672],[20673,20674,20675],[20676,20677,20678],[20679,20680,20681],[20682,20683,20684],[20685,20686,20687],[20688,20689,20690],[20691,20692,20693],[20694,20695,20696],[20697,20698,20699],[20700,20701,20702],[20703,20704,20705],[20706,20707,20708],[20709,20710,20711],[20712,20713,20714],[20715,20716,20717],[20718,20719,20720],[20721,20722,20723],[20724,20725,20726],[20727,20728,20729],[20730,20731,20732],[20733,20734,20735],[20736,20737,20738],[20739,20740,20741],[20742,20743,20744],[20745,20746,20747],[20748,20749,20750],[20751,20752,20753],[20754,20755,20756],[20757,20758,20759],[20760,20761,20762],[20763,20764,20765],[20766,20767,20768],[20769,20770,20771],[20772,20773,20774],[20775,20776,20777],[20778,20779,20780],[20781,20782,20783],[20784,20785,20786],[20787,20788,20789],[20790,20791,20792],[20793,20794,20795],[20796,20797,20798],[20799,20800,20801],[20802,20803,20804],[20805,20806,20807],[20808,20809,20810],[20811,20812,20813],[20814,20815,20816],[20817,20818,20819],[20820,20821,20822],[20823,20824,20825],[20826,20827,20828],[20829,20830,20831],[20832,20833,20834],[20835,20836,20837],[20838,20839,20840],[20841,20842,20843],[20844,20845,20846],[20847,20848,20849],[20850,20851,20852],[20853,20854,20855],[20856,20857,20858],[20859,20860,20861],[20862,20863,20864],[20865,20866,20867],[20868,20869,20870],[20871,20872,20873],[20874,20875,20876],[20877,20878,20879],[20880,20881,20882],[20883,20884,20885],[20886,20887,20888],[20889,20890,20891],[20892,20893,20894],[20895,20896,20897],[20898,20899,20900],[20901,20902,20903],[20904,20905,20906],[20907,20908,20909],[20910,20911,20912],[20913,20914,20915],[20916,20917,20918],[20919,20920,20921],[20922,20923,20924],[20925,20926,20927],[20928,20929,20930],[20931,20932,20933],[20934,20935,20936],[20937,20938,20939],[20940,20941,20942],[20943,20944,20945],[20946,20947,20948],[20949,20950,20951],[20952,20953,20954],[20955,20956,20957],[20958,20959,20960],[20961,20962,20963],[20964,20965,20966],[20967,20968,20969],[20970,20971,20972],[20973,20974,20975],[20976,20977,20978],[20979,20980,20981],[20982,20983,20984],[20985,20986,20987],[20988,20989,20990],[20991,20992,20993],[20994,20995,20996],[20997,20998,20999],[21000,21001,21002],[21003,21004,21005],[21006,21007,21008],[21009,21010,21011],[21012,21013,21014],[21015,21016,21017],[21018,21019,21020],[21021,21022,21023],[21024,21025,21026],[21027,21028,21029],[21030,21031,21032],[21033,21034,21035],[21036,21037,21038],[21039,21040,21041],[21042,21043,21044],[21045,21046,21047],[21048,21049,21050],[21051,21052,21053],[21054,21055,21056],[21057,21058,21059],[21060,21061,21062],[21063,21064,21065],[21066,21067,21068],[21069,21070,21071],[21072,21073,21074],[21075,21076,21077],[21078,21079,21080],[21081,21082,21083],[21084,21085,21086],[21087,21088,21089],[21090,21091,21092],[21093,21094,21095],[21096,21097,21098],[21099,21100,21101],[21102,21103,21104],[21105,21106,21107],[21108,21109,21110],[21111,21112,21113],[21114,21115,21116],[21117,21118,21119],[21120,21121,21122],[21123,21124,21125],[21126,21127,21128],[21129,21130,21131],[21132,21133,21134],[21135,21136,21137],[21138,21139,21140],[21141,21142,21143],[21144,21145,21146],[21147,21148,21149],[21150,21151,21152],[21153,21154,21155],[21156,21157,21158],[21159,21160,21161],[21162,21163,21164],[21165,21166,21167],[21168,21169,21170],[21171,21172,21173],[21174,21175,21176],[21177,21178,21179],[21180,21181,21182],[21183,21184,21185],[21186,21187,21188],[21189,21190,21191],[21192,21193,21194],[21195,21196,21197],[21198,21199,21200],[21201,21202,21203],[21204,21205,21206],[21207,21208,21209],[21210,21211,21212],[21213,21214,21215],[21216,21217,21218],[21219,21220,21221],[21222,21223,21224],[21225,21226,21227],[21228,21229,21230],[21231,21232,21233],[21234,21235,21236],[21237,21238,21239],[21240,21241,21242],[21243,21244,21245],[21246,21247,21248],[21249,21250,21251],[21252,21253,21254],[21255,21256,21257],[21258,21259,21260],[21261,21262,21263],[21264,21265,21266],[21267,21268,21269],[21270,21271,21272],[21273,21274,21275],[21276,21277,21278],[21279,21280,21281],[21282,21283,21284],[21285,21286,21287],[21288,21289,21290],[21291,21292,21293],[21294,21295,21296],[21297,21298,21299],[21300,21301,21302],[21303,21304,21305],[21306,21307,21308],[21309,21310,21311],[21312,21313,21314],[21315,21316,21317],[21318,21319,21320],[21321,21322,21323],[21324,21325,21326],[21327,21328,21329],[21330,21331,21332],[21333,21334,21335],[21336,21337,21338],[21339,21340,21341],[21342,21343,21344],[21345,21346,21347],[21348,21349,21350],[21351,21352,21353],[21354,21355,21356],[21357,21358,21359],[21360,21361,21362],[21363,21364,21365],[21366,21367,21368],[21369,21370,21371],[21372,21373,21374],[21375,21376,21377],[21378,21379,21380],[21381,21382,21383],[21384,21385,21386],[21387,21388,21389],[21390,21391,21392],[21393,21394,21395],[21396,21397,21398],[21399,21400,21401],[21402,21403,21404],[21405,21406,21407],[21408,21409,21410],[21411,21412,21413],[21414,21415,21416],[21417,21418,21419],[21420,21421,21422],[21423,21424,21425],[21426,21427,21428],[21429,21430,21431],[21432,21433,21434],[21435,21436,21437],[21438,21439,21440],[21441,21442,21443],[21444,21445,21446],[21447,21448,21449],[21450,21451,21452],[21453,21454,21455],[21456,21457,21458],[21459,21460,21461],[21462,21463,21464],[21465,21466,21467],[21468,21469,21470],[21471,21472,21473],[21474,21475,21476],[21477,21478,21479],[21480,21481,21482],[21483,21484,21485],[21486,21487,21488],[21489,21490,21491],[21492,21493,21494],[21495,21496,21497],[21498,21499,21500],[21501,21502,21503],[21504,21505,21506],[21507,21508,21509],[21510,21511,21512],[21513,21514,21515],[21516,21517,21518],[21519,21520,21521],[21522,21523,21524],[21525,21526,21527],[21528,21529,21530],[21531,21532,21533],[21534,21535,21536],[21537,21538,21539],[21540,21541,21542],[21543,21544,21545],[21546,21547,21548],[21549,21550,21551],[21552,21553,21554],[21555,21556,21557],[21558,21559,21560],[21561,21562,21563],[21564,21565,21566],[21567,21568,21569],[21570,21571,21572],[21573,21574,21575],[21576,21577,21578],[21579,21580,21581],[21582,21583,21584],[21585,21586,21587],[21588,21589,21590],[21591,21592,21593],[21594,21595,21596],[21597,21598,21599],[21600,21601,21602],[21603,21604,21605],[21606,21607,21608],[21609,21610,21611],[21612,21613,21614],[21615,21616,21617],[21618,21619,21620],[21621,21622,21623],[21624,21625,21626],[21627,21628,21629],[21630,21631,21632],[21633,21634,21635],[21636,21637,21638],[21639,21640,21641],[21642,21643,21644],[21645,21646,21647],[21648,21649,21650],[21651,21652,21653],[21654,21655,21656],[21657,21658,21659],[21660,21661,21662],[21663,21664,21665],[21666,21667,21668],[21669,21670,21671],[21672,21673,21674],[21675,21676,21677],[21678,21679,21680],[21681,21682,21683],[21684,21685,21686],[21687,21688,21689],[21690,21691,21692],[21693,21694,21695],[21696,21697,21698],[21699,21700,21701],[21702,21703,21704],[21705,21706,21707],[21708,21709,21710],[21711,21712,21713],[21714,21715,21716],[21717,21718,21719],[21720,21721,21722],[21723,21724,21725],[21726,21727,21728],[21729,21730,21731],[21732,21733,21734],[21735,21736,21737],[21738,21739,21740],[21741,21742,21743],[21744,21745,21746],[21747,21748,21749],[21750,21751,21752],[21753,21754,21755],[21756,21757,21758],[21759,21760,21761],[21762,21763,21764],[21765,21766,21767],[21768,21769,21770],[21771,21772,21773],[21774,21775,21776],[21777,21778,21779],[21780,21781,21782],[21783,21784,21785],[21786,21787,21788],[21789,21790,21791],[21792,21793,21794],[21795,21796,21797],[21798,21799,21800],[21801,21802,21803],[21804,21805,21806],[21807,21808,21809],[21810,21811,21812],[21813,21814,21815],[21816,21817,21818],[21819,21820,21821],[21822,21823,21824],[21825,21826,21827],[21828,21829,21830],[21831,21832,21833],[21834,21835,21836],[21837,21838,21839],[21840,21841,21842],[21843,21844,21845],[21846,21847,21848],[21849,21850,21851],[21852,21853,21854],[21855,21856,21857],[21858,21859,21860],[21861,21862,21863],[21864,21865,21866],[21867,21868,21869],[21870,21871,21872],[21873,21874,21875],[21876,21877,21878],[21879,21880,21881],[21882,21883,21884],[21885,21886,21887],[21888,21889,21890],[21891,21892,21893],[21894,21895,21896],[21897,21898,21899],[21900,21901,21902],[21903,21904,21905],[21906,21907,21908],[21909,21910,21911],[21912,21913,21914],[21915,21916,21917],[21918,21919,21920],[21921,21922,21923],[21924,21925,21926],[21927,21928,21929],[21930,21931,21932],[21933,21934,21935],[21936,21937,21938],[21939,21940,21941],[21942,21943,21944],[21945,21946,21947],[21948,21949,21950],[21951,21952,21953],[21954,21955,21956],[21957,21958,21959],[21960,21961,21962],[21963,21964,21965],[21966,21967,21968],[21969,21970,21971],[21972,21973,21974],[21975,21976,21977],[21978,21979,21980],[21981,21982,21983],[21984,21985,21986],[21987,21988,21989],[21990,21991,21992],[21993,21994,21995],[21996,21997,21998],[21999,22000,22001],[22002,22003,22004],[22005,22006,22007],[22008,22009,22010],[22011,22012,22013],[22014,22015,22016],[22017,22018,22019],[22020,22021,22022],[22023,22024,22025],[22026,22027,22028],[22029,22030,22031],[22032,22033,22034],[22035,22036,22037],[22038,22039,22040],[22041,22042,22043],[22044,22045,22046],[22047,22048,22049],[22050,22051,22052],[22053,22054,22055],[22056,22057,22058],[22059,22060,22061],[22062,22063,22064],[22065,22066,22067],[22068,22069,22070],[22071,22072,22073],[22074,22075,22076],[22077,22078,22079],[22080,22081,22082],[22083,22084,22085],[22086,22087,22088],[22089,22090,22091],[22092,22093,22094],[22095,22096,22097],[22098,22099,22100],[22101,22102,22103],[22104,22105,22106],[22107,22108,22109],[22110,22111,22112],[22113,22114,22115],[22116,22117,22118],[22119,22120,22121],[22122,22123,22124],[22125,22126,22127],[22128,22129,22130],[22131,22132,22133],[22134,22135,22136],[22137,22138,22139],[22140,22141,22142],[22143,22144,22145],[22146,22147,22148],[22149,22150,22151],[22152,22153,22154],[22155,22156,22157],[22158,22159,22160],[22161,22162,22163],[22164,22165,22166],[22167,22168,22169],[22170,22171,22172],[22173,22174,22175],[22176,22177,22178],[22179,22180,22181],[22182,22183,22184],[22185,22186,22187],[22188,22189,22190],[22191,22192,22193],[22194,22195,22196],[22197,22198,22199],[22200,22201,22202],[22203,22204,22205],[22206,22207,22208],[22209,22210,22211],[22212,22213,22214],[22215,22216,22217],[22218,22219,22220],[22221,22222,22223],[22224,22225,22226],[22227,22228,22229],[22230,22231,22232],[22233,22234,22235],[22236,22237,22238],[22239,22240,22241],[22242,22243,22244],[22245,22246,22247],[22248,22249,22250],[22251,22252,22253],[22254,22255,22256],[22257,22258,22259],[22260,22261,22262],[22263,22264,22265],[22266,22267,22268],[22269,22270,22271],[22272,22273,22274],[22275,22276,22277],[22278,22279,22280],[22281,22282,22283],[22284,22285,22286],[22287,22288,22289],[22290,22291,22292],[22293,22294,22295],[22296,22297,22298],[22299,22300,22301],[22302,22303,22304],[22305,22306,22307],[22308,22309,22310],[22311,22312,22313],[22314,22315,22316],[22317,22318,22319],[22320,22321,22322],[22323,22324,22325],[22326,22327,22328],[22329,22330,22331],[22332,22333,22334],[22335,22336,22337],[22338,22339,22340],[22341,22342,22343],[22344,22345,22346],[22347,22348,22349],[22350,22351,22352],[22353,22354,22355],[22356,22357,22358],[22359,22360,22361],[22362,22363,22364],[22365,22366,22367],[22368,22369,22370],[22371,22372,22373],[22374,22375,22376],[22377,22378,22379],[22380,22381,22382],[22383,22384,22385],[22386,22387,22388],[22389,22390,22391],[22392,22393,22394],[22395,22396,22397],[22398,22399,22400],[22401,22402,22403],[22404,22405,22406],[22407,22408,22409],[22410,22411,22412],[22413,22414,22415],[22416,22417,22418],[22419,22420,22421],[22422,22423,22424],[22425,22426,22427],[22428,22429,22430],[22431,22432,22433],[22434,22435,22436],[22437,22438,22439],[22440,22441,22442],[22443,22444,22445],[22446,22447,22448],[22449,22450,22451],[22452,22453,22454],[22455,22456,22457],[22458,22459,22460],[22461,22462,22463],[22464,22465,22466],[22467,22468,22469],[22470,22471,22472],[22473,22474,22475],[22476,22477,22478],[22479,22480,22481],[22482,22483,22484],[22485,22486,22487],[22488,22489,22490],[22491,22492,22493],[22494,22495,22496],[22497,22498,22499],[22500,22501,22502],[22503,22504,22505],[22506,22507,22508],[22509,22510,22511],[22512,22513,22514],[22515,22516,22517],[22518,22519,22520],[22521,22522,22523],[22524,22525,22526],[22527,22528,22529],[22530,22531,22532],[22533,22534,22535],[22536,22537,22538],[22539,22540,22541],[22542,22543,22544],[22545,22546,22547],[22548,22549,22550],[22551,22552,22553],[22554,22555,22556],[22557,22558,22559],[22560,22561,22562],[22563,22564,22565],[22566,22567,22568],[22569,22570,22571],[22572,22573,22574],[22575,22576,22577],[22578,22579,22580],[22581,22582,22583],[22584,22585,22586],[22587,22588,22589],[22590,22591,22592],[22593,22594,22595],[22596,22597,22598],[22599,22600,22601],[22602,22603,22604],[22605,22606,22607],[22608,22609,22610],[22611,22612,22613],[22614,22615,22616],[22617,22618,22619],[22620,22621,22622],[22623,22624,22625],[22626,22627,22628],[22629,22630,22631],[22632,22633,22634],[22635,22636,22637],[22638,22639,22640],[22641,22642,22643],[22644,22645,22646],[22647,22648,22649],[22650,22651,22652],[22653,22654,22655],[22656,22657,22658],[22659,22660,22661],[22662,22663,22664],[22665,22666,22667],[22668,22669,22670],[22671,22672,22673],[22674,22675,22676],[22677,22678,22679],[22680,22681,22682],[22683,22684,22685],[22686,22687,22688],[22689,22690,22691],[22692,22693,22694],[22695,22696,22697],[22698,22699,22700],[22701,22702,22703],[22704,22705,22706],[22707,22708,22709],[22710,22711,22712],[22713,22714,22715],[22716,22717,22718],[22719,22720,22721],[22722,22723,22724],[22725,22726,22727],[22728,22729,22730],[22731,22732,22733],[22734,22735,22736],[22737,22738,22739],[22740,22741,22742],[22743,22744,22745],[22746,22747,22748],[22749,22750,22751],[22752,22753,22754],[22755,22756,22757],[22758,22759,22760],[22761,22762,22763],[22764,22765,22766],[22767,22768,22769],[22770,22771,22772],[22773,22774,22775],[22776,22777,22778],[22779,22780,22781],[22782,22783,22784],[22785,22786,22787],[22788,22789,22790],[22791,22792,22793],[22794,22795,22796],[22797,22798,22799],[22800,22801,22802],[22803,22804,22805],[22806,22807,22808],[22809,22810,22811],[22812,22813,22814],[22815,22816,22817],[22818,22819,22820],[22821,22822,22823],[22824,22825,22826],[22827,22828,22829],[22830,22831,22832],[22833,22834,22835],[22836,22837,22838],[22839,22840,22841],[22842,22843,22844],[22845,22846,22847],[22848,22849,22850],[22851,22852,22853],[22854,22855,22856],[22857,22858,22859],[22860,22861,22862],[22863,22864,22865],[22866,22867,22868],[22869,22870,22871],[22872,22873,22874],[22875,22876,22877],[22878,22879,22880],[22881,22882,22883],[22884,22885,22886],[22887,22888,22889],[22890,22891,22892],[22893,22894,22895],[22896,22897,22898],[22899,22900,22901],[22902,22903,22904],[22905,22906,22907],[22908,22909,22910],[22911,22912,22913],[22914,22915,22916],[22917,22918,22919],[22920,22921,22922],[22923,22924,22925],[22926,22927,22928],[22929,22930,22931],[22932,22933,22934],[22935,22936,22937],[22938,22939,22940],[22941,22942,22943],[22944,22945,22946],[22947,22948,22949],[22950,22951,22952],[22953,22954,22955],[22956,22957,22958],[22959,22960,22961],[22962,22963,22964],[22965,22966,22967],[22968,22969,22970],[22971,22972,22973],[22974,22975,22976],[22977,22978,22979],[22980,22981,22982],[22983,22984,22985],[22986,22987,22988],[22989,22990,22991],[22992,22993,22994],[22995,22996,22997],[22998,22999,23000],[23001,23002,23003],[23004,23005,23006],[23007,23008,23009],[23010,23011,23012],[23013,23014,23015],[23016,23017,23018],[23019,23020,23021],[23022,23023,23024],[23025,23026,23027],[23028,23029,23030],[23031,23032,23033],[23034,23035,23036],[23037,23038,23039],[23040,23041,23042],[23043,23044,23045],[23046,23047,23048],[23049,23050,23051],[23052,23053,23054],[23055,23056,23057],[23058,23059,23060],[23061,23062,23063],[23064,23065,23066],[23067,23068,23069],[23070,23071,23072],[23073,23074,23075],[23076,23077,23078],[23079,23080,23081],[23082,23083,23084],[23085,23086,23087],[23088,23089,23090],[23091,23092,23093],[23094,23095,23096],[23097,23098,23099],[23100,23101,23102],[23103,23104,23105],[23106,23107,23108],[23109,23110,23111],[23112,23113,23114],[23115,23116,23117],[23118,23119,23120],[23121,23122,23123],[23124,23125,23126],[23127,23128,23129],[23130,23131,23132],[23133,23134,23135],[23136,23137,23138],[23139,23140,23141],[23142,23143,23144],[23145,23146,23147],[23148,23149,23150],[23151,23152,23153],[23154,23155,23156],[23157,23158,23159],[23160,23161,23162],[23163,23164,23165],[23166,23167,23168],[23169,23170,23171],[23172,23173,23174],[23175,23176,23177],[23178,23179,23180],[23181,23182,23183],[23184,23185,23186],[23187,23188,23189],[23190,23191,23192],[23193,23194,23195],[23196,23197,23198],[23199,23200,23201],[23202,23203,23204],[23205,23206,23207],[23208,23209,23210],[23211,23212,23213],[23214,23215,23216],[23217,23218,23219],[23220,23221,23222],[23223,23224,23225],[23226,23227,23228],[23229,23230,23231],[23232,23233,23234],[23235,23236,23237],[23238,23239,23240],[23241,23242,23243],[23244,23245,23246],[23247,23248,23249],[23250,23251,23252],[23253,23254,23255],[23256,23257,23258],[23259,23260,23261],[23262,23263,23264],[23265,23266,23267],[23268,23269,23270],[23271,23272,23273],[23274,23275,23276],[23277,23278,23279],[23280,23281,23282],[23283,23284,23285],[23286,23287,23288],[23289,23290,23291],[23292,23293,23294],[23295,23296,23297],[23298,23299,23300],[23301,23302,23303],[23304,23305,23306],[23307,23308,23309],[23310,23311,23312],[23313,23314,23315],[23316,23317,23318],[23319,23320,23321],[23322,23323,23324],[23325,23326,23327],[23328,23329,23330],[23331,23332,23333],[23334,23335,23336],[23337,23338,23339],[23340,23341,23342],[23343,23344,23345],[23346,23347,23348],[23349,23350,23351],[23352,23353,23354],[23355,23356,23357],[23358,23359,23360],[23361,23362,23363],[23364,23365,23366],[23367,23368,23369],[23370,23371,23372],[23373,23374,23375],[23376,23377,23378],[23379,23380,23381],[23382,23383,23384],[23385,23386,23387],[23388,23389,23390],[23391,23392,23393],[23394,23395,23396],[23397,23398,23399],[23400,23401,23402],[23403,23404,23405],[23406,23407,23408],[23409,23410,23411],[23412,23413,23414],[23415,23416,23417],[23418,23419,23420],[23421,23422,23423],[23424,23425,23426],[23427,23428,23429],[23430,23431,23432],[23433,23434,23435],[23436,23437,23438],[23439,23440,23441],[23442,23443,23444],[23445,23446,23447],[23448,23449,23450],[23451,23452,23453],[23454,23455,23456],[23457,23458,23459],[23460,23461,23462],[23463,23464,23465],[23466,23467,23468],[23469,23470,23471],[23472,23473,23474],[23475,23476,23477],[23478,23479,23480],[23481,23482,23483],[23484,23485,23486],[23487,23488,23489],[23490,23491,23492],[23493,23494,23495],[23496,23497,23498],[23499,23500,23501],[23502,23503,23504],[23505,23506,23507],[23508,23509,23510],[23511,23512,23513],[23514,23515,23516],[23517,23518,23519],[23520,23521,23522],[23523,23524,23525],[23526,23527,23528],[23529,23530,23531],[23532,23533,23534],[23535,23536,23537],[23538,23539,23540],[23541,23542,23543],[23544,23545,23546],[23547,23548,23549],[23550,23551,23552],[23553,23554,23555],[23556,23557,23558],[23559,23560,23561],[23562,23563,23564],[23565,23566,23567],[23568,23569,23570],[23571,23572,23573],[23574,23575,23576],[23577,23578,23579],[23580,23581,23582],[23583,23584,23585],[23586,23587,23588],[23589,23590,23591],[23592,23593,23594],[23595,23596,23597],[23598,23599,23600],[23601,23602,23603],[23604,23605,23606],[23607,23608,23609],[23610,23611,23612],[23613,23614,23615],[23616,23617,23618],[23619,23620,23621],[23622,23623,23624],[23625,23626,23627],[23628,23629,23630],[23631,23632,23633],[23634,23635,23636],[23637,23638,23639],[23640,23641,23642],[23643,23644,23645],[23646,23647,23648],[23649,23650,23651],[23652,23653,23654],[23655,23656,23657],[23658,23659,23660],[23661,23662,23663],[23664,23665,23666],[23667,23668,23669],[23670,23671,23672],[23673,23674,23675],[23676,23677,23678],[23679,23680,23681],[23682,23683,23684],[23685,23686,23687],[23688,23689,23690],[23691,23692,23693],[23694,23695,23696],[23697,23698,23699],[23700,23701,23702],[23703,23704,23705],[23706,23707,23708],[23709,23710,23711],[23712,23713,23714],[23715,23716,23717],[23718,23719,23720],[23721,23722,23723],[23724,23725,23726],[23727,23728,23729],[23730,23731,23732],[23733,23734,23735],[23736,23737,23738],[23739,23740,23741],[23742,23743,23744],[23745,23746,23747],[23748,23749,23750],[23751,23752,23753],[23754,23755,23756],[23757,23758,23759],[23760,23761,23762],[23763,23764,23765],[23766,23767,23768],[23769,23770,23771],[23772,23773,23774],[23775,23776,23777],[23778,23779,23780],[23781,23782,23783],[23784,23785,23786],[23787,23788,23789],[23790,23791,23792],[23793,23794,23795],[23796,23797,23798],[23799,23800,23801],[23802,23803,23804],[23805,23806,23807],[23808,23809,23810],[23811,23812,23813],[23814,23815,23816],[23817,23818,23819],[23820,23821,23822],[23823,23824,23825],[23826,23827,23828],[23829,23830,23831],[23832,23833,23834],[23835,23836,23837],[23838,23839,23840],[23841,23842,23843],[23844,23845,23846],[23847,23848,23849],[23850,23851,23852],[23853,23854,23855],[23856,23857,23858],[23859,23860,23861],[23862,23863,23864],[23865,23866,23867],[23868,23869,23870],[23871,23872,23873],[23874,23875,23876],[23877,23878,23879],[23880,23881,23882],[23883,23884,23885],[23886,23887,23888],[23889,23890,23891],[23892,23893,23894],[23895,23896,23897],[23898,23899,23900],[23901,23902,23903],[23904,23905,23906],[23907,23908,23909],[23910,23911,23912],[23913,23914,23915],[23916,23917,23918],[23919,23920,23921],[23922,23923,23924],[23925,23926,23927],[23928,23929,23930],[23931,23932,23933],[23934,23935,23936],[23937,23938,23939],[23940,23941,23942],[23943,23944,23945],[23946,23947,23948],[23949,23950,23951],[23952,23953,23954],[23955,23956,23957],[23958,23959,23960],[23961,23962,23963],[23964,23965,23966],[23967,23968,23969],[23970,23971,23972],[23973,23974,23975],[23976,23977,23978],[23979,23980,23981],[23982,23983,23984],[23985,23986,23987],[23988,23989,23990],[23991,23992,23993],[23994,23995,23996],[23997,23998,23999],[24000,24001,24002],[24003,24004,24005],[24006,24007,24008],[24009,24010,24011],[24012,24013,24014],[24015,24016,24017],[24018,24019,24020],[24021,24022,24023],[24024,24025,24026],[24027,24028,24029],[24030,24031,24032],[24033,24034,24035],[24036,24037,24038],[24039,24040,24041],[24042,24043,24044],[24045,24046,24047],[24048,24049,24050],[24051,24052,24053],[24054,24055,24056],[24057,24058,24059],[24060,24061,24062],[24063,24064,24065],[24066,24067,24068],[24069,24070,24071],[24072,24073,24074],[24075,24076,24077],[24078,24079,24080],[24081,24082,24083],[24084,24085,24086],[24087,24088,24089],[24090,24091,24092],[24093,24094,24095],[24096,24097,24098],[24099,24100,24101],[24102,24103,24104],[24105,24106,24107],[24108,24109,24110],[24111,24112,24113],[24114,24115,24116],[24117,24118,24119],[24120,24121,24122],[24123,24124,24125],[24126,24127,24128],[24129,24130,24131],[24132,24133,24134],[24135,24136,24137],[24138,24139,24140],[24141,24142,24143],[24144,24145,24146],[24147,24148,24149],[24150,24151,24152],[24153,24154,24155],[24156,24157,24158],[24159,24160,24161],[24162,24163,24164],[24165,24166,24167],[24168,24169,24170],[24171,24172,24173],[24174,24175,24176],[24177,24178,24179],[24180,24181,24182],[24183,24184,24185],[24186,24187,24188],[24189,24190,24191],[24192,24193,24194],[24195,24196,24197],[24198,24199,24200],[24201,24202,24203],[24204,24205,24206],[24207,24208,24209],[24210,24211,24212],[24213,24214,24215],[24216,24217,24218],[24219,24220,24221],[24222,24223,24224],[24225,24226,24227],[24228,24229,24230],[24231,24232,24233],[24234,24235,24236],[24237,24238,24239],[24240,24241,24242],[24243,24244,24245],[24246,24247,24248],[24249,24250,24251],[24252,24253,24254],[24255,24256,24257],[24258,24259,24260],[24261,24262,24263],[24264,24265,24266],[24267,24268,24269],[24270,24271,24272],[24273,24274,24275],[24276,24277,24278],[24279,24280,24281],[24282,24283,24284],[24285,24286,24287],[24288,24289,24290],[24291,24292,24293],[24294,24295,24296],[24297,24298,24299],[24300,24301,24302],[24303,24304,24305],[24306,24307,24308],[24309,24310,24311],[24312,24313,24314],[24315,24316,24317],[24318,24319,24320],[24321,24322,24323],[24324,24325,24326],[24327,24328,24329],[24330,24331,24332],[24333,24334,24335],[24336,24337,24338],[24339,24340,24341],[24342,24343,24344],[24345,24346,24347],[24348,24349,24350],[24351,24352,24353],[24354,24355,24356],[24357,24358,24359],[24360,24361,24362],[24363,24364,24365],[24366,24367,24368],[24369,24370,24371],[24372,24373,24374],[24375,24376,24377],[24378,24379,24380],[24381,24382,24383],[24384,24385,24386],[24387,24388,24389],[24390,24391,24392],[24393,24394,24395],[24396,24397,24398],[24399,24400,24401],[24402,24403,24404],[24405,24406,24407],[24408,24409,24410],[24411,24412,24413],[24414,24415,24416],[24417,24418,24419],[24420,24421,24422],[24423,24424,24425],[24426,24427,24428],[24429,24430,24431],[24432,24433,24434],[24435,24436,24437],[24438,24439,24440],[24441,24442,24443],[24444,24445,24446],[24447,24448,24449],[24450,24451,24452],[24453,24454,24455],[24456,24457,24458],[24459,24460,24461],[24462,24463,24464],[24465,24466,24467],[24468,24469,24470],[24471,24472,24473],[24474,24475,24476],[24477,24478,24479],[24480,24481,24482],[24483,24484,24485],[24486,24487,24488],[24489,24490,24491],[24492,24493,24494],[24495,24496,24497],[24498,24499,24500],[24501,24502,24503],[24504,24505,24506],[24507,24508,24509],[24510,24511,24512],[24513,24514,24515],[24516,24517,24518],[24519,24520,24521],[24522,24523,24524],[24525,24526,24527],[24528,24529,24530],[24531,24532,24533],[24534,24535,24536],[24537,24538,24539],[24540,24541,24542],[24543,24544,24545],[24546,24547,24548],[24549,24550,24551],[24552,24553,24554],[24555,24556,24557],[24558,24559,24560],[24561,24562,24563],[24564,24565,24566],[24567,24568,24569],[24570,24571,24572],[24573,24574,24575],[24576,24577,24578],[24579,24580,24581],[24582,24583,24584],[24585,24586,24587],[24588,24589,24590],[24591,24592,24593],[24594,24595,24596],[24597,24598,24599],[24600,24601,24602],[24603,24604,24605],[24606,24607,24608],[24609,24610,24611],[24612,24613,24614],[24615,24616,24617],[24618,24619,24620],[24621,24622,24623],[24624,24625,24626],[24627,24628,24629],[24630,24631,24632],[24633,24634,24635],[24636,24637,24638],[24639,24640,24641],[24642,24643,24644],[24645,24646,24647],[24648,24649,24650],[24651,24652,24653],[24654,24655,24656],[24657,24658,24659],[24660,24661,24662],[24663,24664,24665],[24666,24667,24668],[24669,24670,24671],[24672,24673,24674],[24675,24676,24677],[24678,24679,24680],[24681,24682,24683],[24684,24685,24686],[24687,24688,24689],[24690,24691,24692],[24693,24694,24695],[24696,24697,24698],[24699,24700,24701],[24702,24703,24704],[24705,24706,24707],[24708,24709,24710],[24711,24712,24713],[24714,24715,24716],[24717,24718,24719],[24720,24721,24722],[24723,24724,24725],[24726,24727,24728],[24729,24730,24731],[24732,24733,24734],[24735,24736,24737],[24738,24739,24740],[24741,24742,24743],[24744,24745,24746],[24747,24748,24749],[24750,24751,24752],[24753,24754,24755],[24756,24757,24758],[24759,24760,24761],[24762,24763,24764],[24765,24766,24767],[24768,24769,24770],[24771,24772,24773],[24774,24775,24776],[24777,24778,24779],[24780,24781,24782],[24783,24784,24785],[24786,24787,24788],[24789,24790,24791],[24792,24793,24794],[24795,24796,24797],[24798,24799,24800],[24801,24802,24803],[24804,24805,24806],[24807,24808,24809],[24810,24811,24812],[24813,24814,24815],[24816,24817,24818],[24819,24820,24821],[24822,24823,24824],[24825,24826,24827],[24828,24829,24830],[24831,24832,24833],[24834,24835,24836],[24837,24838,24839],[24840,24841,24842],[24843,24844,24845],[24846,24847,24848],[24849,24850,24851],[24852,24853,24854],[24855,24856,24857],[24858,24859,24860],[24861,24862,24863],[24864,24865,24866],[24867,24868,24869],[24870,24871,24872],[24873,24874,24875],[24876,24877,24878],[24879,24880,24881],[24882,24883,24884],[24885,24886,24887],[24888,24889,24890],[24891,24892,24893],[24894,24895,24896],[24897,24898,24899],[24900,24901,24902],[24903,24904,24905],[24906,24907,24908],[24909,24910,24911],[24912,24913,24914],[24915,24916,24917],[24918,24919,24920],[24921,24922,24923],[24924,24925,24926],[24927,24928,24929],[24930,24931,24932],[24933,24934,24935],[24936,24937,24938],[24939,24940,24941],[24942,24943,24944],[24945,24946,24947],[24948,24949,24950],[24951,24952,24953],[24954,24955,24956],[24957,24958,24959],[24960,24961,24962],[24963,24964,24965],[24966,24967,24968],[24969,24970,24971],[24972,24973,24974],[24975,24976,24977],[24978,24979,24980],[24981,24982,24983],[24984,24985,24986],[24987,24988,24989],[24990,24991,24992],[24993,24994,24995],[24996,24997,24998],[24999,25000,25001],[25002,25003,25004],[25005,25006,25007],[25008,25009,25010],[25011,25012,25013],[25014,25015,25016],[25017,25018,25019],[25020,25021,25022],[25023,25024,25025],[25026,25027,25028],[25029,25030,25031],[25032,25033,25034],[25035,25036,25037],[25038,25039,25040],[25041,25042,25043],[25044,25045,25046],[25047,25048,25049],[25050,25051,25052],[25053,25054,25055],[25056,25057,25058],[25059,25060,25061],[25062,25063,25064],[25065,25066,25067],[25068,25069,25070],[25071,25072,25073],[25074,25075,25076],[25077,25078,25079],[25080,25081,25082],[25083,25084,25085],[25086,25087,25088],[25089,25090,25091],[25092,25093,25094],[25095,25096,25097],[25098,25099,25100],[25101,25102,25103],[25104,25105,25106],[25107,25108,25109],[25110,25111,25112],[25113,25114,25115],[25116,25117,25118],[25119,25120,25121],[25122,25123,25124],[25125,25126,25127],[25128,25129,25130],[25131,25132,25133],[25134,25135,25136],[25137,25138,25139],[25140,25141,25142],[25143,25144,25145],[25146,25147,25148],[25149,25150,25151],[25152,25153,25154],[25155,25156,25157],[25158,25159,25160],[25161,25162,25163],[25164,25165,25166],[25167,25168,25169],[25170,25171,25172],[25173,25174,25175],[25176,25177,25178],[25179,25180,25181],[25182,25183,25184],[25185,25186,25187],[25188,25189,25190],[25191,25192,25193],[25194,25195,25196],[25197,25198,25199],[25200,25201,25202],[25203,25204,25205],[25206,25207,25208],[25209,25210,25211],[25212,25213,25214],[25215,25216,25217],[25218,25219,25220],[25221,25222,25223],[25224,25225,25226],[25227,25228,25229],[25230,25231,25232],[25233,25234,25235],[25236,25237,25238],[25239,25240,25241],[25242,25243,25244],[25245,25246,25247],[25248,25249,25250],[25251,25252,25253],[25254,25255,25256],[25257,25258,25259],[25260,25261,25262],[25263,25264,25265],[25266,25267,25268],[25269,25270,25271],[25272,25273,25274],[25275,25276,25277],[25278,25279,25280],[25281,25282,25283],[25284,25285,25286],[25287,25288,25289],[25290,25291,25292],[25293,25294,25295],[25296,25297,25298],[25299,25300,25301],[25302,25303,25304],[25305,25306,25307],[25308,25309,25310],[25311,25312,25313],[25314,25315,25316],[25317,25318,25319],[25320,25321,25322],[25323,25324,25325],[25326,25327,25328],[25329,25330,25331],[25332,25333,25334],[25335,25336,25337],[25338,25339,25340],[25341,25342,25343],[25344,25345,25346],[25347,25348,25349],[25350,25351,25352],[25353,25354,25355],[25356,25357,25358],[25359,25360,25361],[25362,25363,25364],[25365,25366,25367],[25368,25369,25370],[25371,25372,25373],[25374,25375,25376],[25377,25378,25379],[25380,25381,25382],[25383,25384,25385],[25386,25387,25388],[25389,25390,25391],[25392,25393,25394],[25395,25396,25397],[25398,25399,25400],[25401,25402,25403],[25404,25405,25406],[25407,25408,25409],[25410,25411,25412],[25413,25414,25415],[25416,25417,25418],[25419,25420,25421],[25422,25423,25424],[25425,25426,25427],[25428,25429,25430],[25431,25432,25433],[25434,25435,25436],[25437,25438,25439],[25440,25441,25442],[25443,25444,25445],[25446,25447,25448],[25449,25450,25451],[25452,25453,25454],[25455,25456,25457],[25458,25459,25460],[25461,25462,25463],[25464,25465,25466],[25467,25468,25469],[25470,25471,25472],[25473,25474,25475],[25476,25477,25478],[25479,25480,25481],[25482,25483,25484],[25485,25486,25487],[25488,25489,25490],[25491,25492,25493],[25494,25495,25496],[25497,25498,25499],[25500,25501,25502],[25503,25504,25505],[25506,25507,25508],[25509,25510,25511],[25512,25513,25514],[25515,25516,25517],[25518,25519,25520],[25521,25522,25523],[25524,25525,25526],[25527,25528,25529],[25530,25531,25532],[25533,25534,25535],[25536,25537,25538],[25539,25540,25541],[25542,25543,25544],[25545,25546,25547],[25548,25549,25550],[25551,25552,25553],[25554,25555,25556],[25557,25558,25559],[25560,25561,25562],[25563,25564,25565],[25566,25567,25568],[25569,25570,25571],[25572,25573,25574],[25575,25576,25577],[25578,25579,25580],[25581,25582,25583],[25584,25585,25586],[25587,25588,25589],[25590,25591,25592],[25593,25594,25595],[25596,25597,25598],[25599,25600,25601],[25602,25603,25604],[25605,25606,25607],[25608,25609,25610],[25611,25612,25613],[25614,25615,25616],[25617,25618,25619],[25620,25621,25622],[25623,25624,25625],[25626,25627,25628],[25629,25630,25631],[25632,25633,25634],[25635,25636,25637],[25638,25639,25640],[25641,25642,25643],[25644,25645,25646],[25647,25648,25649],[25650,25651,25652],[25653,25654,25655],[25656,25657,25658],[25659,25660,25661],[25662,25663,25664],[25665,25666,25667],[25668,25669,25670],[25671,25672,25673],[25674,25675,25676],[25677,25678,25679],[25680,25681,25682],[25683,25684,25685],[25686,25687,25688],[25689,25690,25691],[25692,25693,25694],[25695,25696,25697],[25698,25699,25700],[25701,25702,25703],[25704,25705,25706],[25707,25708,25709],[25710,25711,25712],[25713,25714,25715],[25716,25717,25718],[25719,25720,25721],[25722,25723,25724],[25725,25726,25727],[25728,25729,25730],[25731,25732,25733],[25734,25735,25736],[25737,25738,25739],[25740,25741,25742],[25743,25744,25745],[25746,25747,25748],[25749,25750,25751],[25752,25753,25754],[25755,25756,25757],[25758,25759,25760],[25761,25762,25763],[25764,25765,25766],[25767,25768,25769],[25770,25771,25772],[25773,25774,25775],[25776,25777,25778],[25779,25780,25781],[25782,25783,25784],[25785,25786,25787],[25788,25789,25790],[25791,25792,25793],[25794,25795,25796],[25797,25798,25799],[25800,25801,25802],[25803,25804,25805],[25806,25807,25808],[25809,25810,25811],[25812,25813,25814],[25815,25816,25817],[25818,25819,25820],[25821,25822,25823],[25824,25825,25826],[25827,25828,25829],[25830,25831,25832],[25833,25834,25835],[25836,25837,25838],[25839,25840,25841],[25842,25843,25844],[25845,25846,25847],[25848,25849,25850],[25851,25852,25853],[25854,25855,25856],[25857,25858,25859],[25860,25861,25862],[25863,25864,25865],[25866,25867,25868],[25869,25870,25871],[25872,25873,25874],[25875,25876,25877],[25878,25879,25880],[25881,25882,25883],[25884,25885,25886],[25887,25888,25889],[25890,25891,25892],[25893,25894,25895],[25896,25897,25898],[25899,25900,25901],[25902,25903,25904],[25905,25906,25907],[25908,25909,25910],[25911,25912,25913],[25914,25915,25916],[25917,25918,25919],[25920,25921,25922],[25923,25924,25925],[25926,25927,25928],[25929,25930,25931],[25932,25933,25934],[25935,25936,25937],[25938,25939,25940],[25941,25942,25943],[25944,25945,25946],[25947,25948,25949],[25950,25951,25952],[25953,25954,25955],[25956,25957,25958],[25959,25960,25961],[25962,25963,25964],[25965,25966,25967],[25968,25969,25970],[25971,25972,25973],[25974,25975,25976],[25977,25978,25979],[25980,25981,25982],[25983,25984,25985],[25986,25987,25988],[25989,25990,25991],[25992,25993,25994],[25995,25996,25997],[25998,25999,26000],[26001,26002,26003],[26004,26005,26006],[26007,26008,26009],[26010,26011,26012],[26013,26014,26015],[26016,26017,26018],[26019,26020,26021],[26022,26023,26024],[26025,26026,26027],[26028,26029,26030],[26031,26032,26033],[26034,26035,26036],[26037,26038,26039],[26040,26041,26042],[26043,26044,26045],[26046,26047,26048],[26049,26050,26051],[26052,26053,26054],[26055,26056,26057],[26058,26059,26060],[26061,26062,26063],[26064,26065,26066],[26067,26068,26069],[26070,26071,26072],[26073,26074,26075],[26076,26077,26078],[26079,26080,26081],[26082,26083,26084],[26085,26086,26087],[26088,26089,26090],[26091,26092,26093],[26094,26095,26096],[26097,26098,26099],[26100,26101,26102],[26103,26104,26105],[26106,26107,26108],[26109,26110,26111],[26112,26113,26114],[26115,26116,26117],[26118,26119,26120],[26121,26122,26123],[26124,26125,26126],[26127,26128,26129],[26130,26131,26132],[26133,26134,26135],[26136,26137,26138],[26139,26140,26141],[26142,26143,26144],[26145,26146,26147],[26148,26149,26150],[26151,26152,26153],[26154,26155,26156],[26157,26158,26159],[26160,26161,26162],[26163,26164,26165],[26166,26167,26168],[26169,26170,26171],[26172,26173,26174],[26175,26176,26177],[26178,26179,26180],[26181,26182,26183],[26184,26185,26186],[26187,26188,26189],[26190,26191,26192],[26193,26194,26195],[26196,26197,26198],[26199,26200,26201],[26202,26203,26204],[26205,26206,26207],[26208,26209,26210],[26211,26212,26213],[26214,26215,26216],[26217,26218,26219],[26220,26221,26222],[26223,26224,26225],[26226,26227,26228],[26229,26230,26231],[26232,26233,26234],[26235,26236,26237],[26238,26239,26240],[26241,26242,26243],[26244,26245,26246],[26247,26248,26249],[26250,26251,26252],[26253,26254,26255],[26256,26257,26258],[26259,26260,26261],[26262,26263,26264],[26265,26266,26267],[26268,26269,26270],[26271,26272,26273],[26274,26275,26276],[26277,26278,26279],[26280,26281,26282],[26283,26284,26285],[26286,26287,26288],[26289,26290,26291],[26292,26293,26294],[26295,26296,26297],[26298,26299,26300],[26301,26302,26303],[26304,26305,26306],[26307,26308,26309],[26310,26311,26312],[26313,26314,26315],[26316,26317,26318],[26319,26320,26321],[26322,26323,26324],[26325,26326,26327],[26328,26329,26330],[26331,26332,26333],[26334,26335,26336],[26337,26338,26339],[26340,26341,26342],[26343,26344,26345],[26346,26347,26348],[26349,26350,26351],[26352,26353,26354],[26355,26356,26357],[26358,26359,26360],[26361,26362,26363],[26364,26365,26366],[26367,26368,26369],[26370,26371,26372],[26373,26374,26375],[26376,26377,26378],[26379,26380,26381],[26382,26383,26384],[26385,26386,26387],[26388,26389,26390],[26391,26392,26393],[26394,26395,26396],[26397,26398,26399],[26400,26401,26402],[26403,26404,26405],[26406,26407,26408],[26409,26410,26411],[26412,26413,26414],[26415,26416,26417],[26418,26419,26420],[26421,26422,26423],[26424,26425,26426],[26427,26428,26429],[26430,26431,26432],[26433,26434,26435],[26436,26437,26438],[26439,26440,26441],[26442,26443,26444],[26445,26446,26447],[26448,26449,26450],[26451,26452,26453],[26454,26455,26456],[26457,26458,26459],[26460,26461,26462],[26463,26464,26465],[26466,26467,26468],[26469,26470,26471],[26472,26473,26474],[26475,26476,26477],[26478,26479,26480],[26481,26482,26483],[26484,26485,26486],[26487,26488,26489],[26490,26491,26492],[26493,26494,26495],[26496,26497,26498],[26499,26500,26501],[26502,26503,26504],[26505,26506,26507],[26508,26509,26510],[26511,26512,26513],[26514,26515,26516],[26517,26518,26519],[26520,26521,26522],[26523,26524,26525],[26526,26527,26528],[26529,26530,26531],[26532,26533,26534],[26535,26536,26537],[26538,26539,26540],[26541,26542,26543],[26544,26545,26546],[26547,26548,26549],[26550,26551,26552],[26553,26554,26555],[26556,26557,26558],[26559,26560,26561],[26562,26563,26564],[26565,26566,26567],[26568,26569,26570],[26571,26572,26573],[26574,26575,26576],[26577,26578,26579],[26580,26581,26582],[26583,26584,26585],[26586,26587,26588],[26589,26590,26591],[26592,26593,26594],[26595,26596,26597],[26598,26599,26600],[26601,26602,26603],[26604,26605,26606],[26607,26608,26609],[26610,26611,26612],[26613,26614,26615],[26616,26617,26618],[26619,26620,26621],[26622,26623,26624],[26625,26626,26627],[26628,26629,26630],[26631,26632,26633],[26634,26635,26636],[26637,26638,26639],[26640,26641,26642],[26643,26644,26645],[26646,26647,26648],[26649,26650,26651],[26652,26653,26654],[26655,26656,26657],[26658,26659,26660],[26661,26662,26663],[26664,26665,26666],[26667,26668,26669],[26670,26671,26672],[26673,26674,26675],[26676,26677,26678],[26679,26680,26681],[26682,26683,26684],[26685,26686,26687],[26688,26689,26690],[26691,26692,26693],[26694,26695,26696],[26697,26698,26699],[26700,26701,26702],[26703,26704,26705],[26706,26707,26708],[26709,26710,26711],[26712,26713,26714],[26715,26716,26717],[26718,26719,26720],[26721,26722,26723],[26724,26725,26726],[26727,26728,26729],[26730,26731,26732],[26733,26734,26735],[26736,26737,26738],[26739,26740,26741],[26742,26743,26744],[26745,26746,26747],[26748,26749,26750],[26751,26752,26753],[26754,26755,26756],[26757,26758,26759],[26760,26761,26762],[26763,26764,26765],[26766,26767,26768],[26769,26770,26771],[26772,26773,26774],[26775,26776,26777],[26778,26779,26780],[26781,26782,26783],[26784,26785,26786],[26787,26788,26789],[26790,26791,26792],[26793,26794,26795],[26796,26797,26798],[26799,26800,26801],[26802,26803,26804],[26805,26806,26807],[26808,26809,26810],[26811,26812,26813],[26814,26815,26816],[26817,26818,26819],[26820,26821,26822],[26823,26824,26825],[26826,26827,26828],[26829,26830,26831],[26832,26833,26834],[26835,26836,26837],[26838,26839,26840],[26841,26842,26843],[26844,26845,26846],[26847,26848,26849],[26850,26851,26852],[26853,26854,26855],[26856,26857,26858],[26859,26860,26861],[26862,26863,26864],[26865,26866,26867],[26868,26869,26870],[26871,26872,26873],[26874,26875,26876],[26877,26878,26879],[26880,26881,26882],[26883,26884,26885],[26886,26887,26888],[26889,26890,26891],[26892,26893,26894],[26895,26896,26897],[26898,26899,26900],[26901,26902,26903],[26904,26905,26906],[26907,26908,26909],[26910,26911,26912],[26913,26914,26915],[26916,26917,26918],[26919,26920,26921],[26922,26923,26924],[26925,26926,26927],[26928,26929,26930],[26931,26932,26933],[26934,26935,26936],[26937,26938,26939],[26940,26941,26942],[26943,26944,26945],[26946,26947,26948],[26949,26950,26951],[26952,26953,26954],[26955,26956,26957],[26958,26959,26960],[26961,26962,26963],[26964,26965,26966],[26967,26968,26969],[26970,26971,26972],[26973,26974,26975],[26976,26977,26978],[26979,26980,26981],[26982,26983,26984],[26985,26986,26987],[26988,26989,26990],[26991,26992,26993],[26994,26995,26996],[26997,26998,26999],[27000,27001,27002],[27003,27004,27005],[27006,27007,27008],[27009,27010,27011],[27012,27013,27014],[27015,27016,27017],[27018,27019,27020],[27021,27022,27023],[27024,27025,27026],[27027,27028,27029],[27030,27031,27032],[27033,27034,27035],[27036,27037,27038],[27039,27040,27041],[27042,27043,27044],[27045,27046,27047],[27048,27049,27050],[27051,27052,27053],[27054,27055,27056],[27057,27058,27059],[27060,27061,27062],[27063,27064,27065],[27066,27067,27068],[27069,27070,27071],[27072,27073,27074],[27075,27076,27077],[27078,27079,27080],[27081,27082,27083],[27084,27085,27086],[27087,27088,27089],[27090,27091,27092],[27093,27094,27095],[27096,27097,27098],[27099,27100,27101],[27102,27103,27104],[27105,27106,27107],[27108,27109,27110],[27111,27112,27113],[27114,27115,27116],[27117,27118,27119],[27120,27121,27122],[27123,27124,27125],[27126,27127,27128],[27129,27130,27131],[27132,27133,27134],[27135,27136,27137],[27138,27139,27140],[27141,27142,27143],[27144,27145,27146],[27147,27148,27149],[27150,27151,27152],[27153,27154,27155],[27156,27157,27158],[27159,27160,27161],[27162,27163,27164],[27165,27166,27167],[27168,27169,27170],[27171,27172,27173],[27174,27175,27176],[27177,27178,27179],[27180,27181,27182],[27183,27184,27185],[27186,27187,27188],[27189,27190,27191],[27192,27193,27194],[27195,27196,27197],[27198,27199,27200],[27201,27202,27203],[27204,27205,27206],[27207,27208,27209],[27210,27211,27212],[27213,27214,27215],[27216,27217,27218],[27219,27220,27221],[27222,27223,27224],[27225,27226,27227],[27228,27229,27230],[27231,27232,27233],[27234,27235,27236],[27237,27238,27239],[27240,27241,27242],[27243,27244,27245],[27246,27247,27248],[27249,27250,27251],[27252,27253,27254],[27255,27256,27257],[27258,27259,27260],[27261,27262,27263],[27264,27265,27266],[27267,27268,27269],[27270,27271,27272],[27273,27274,27275],[27276,27277,27278],[27279,27280,27281],[27282,27283,27284],[27285,27286,27287],[27288,27289,27290],[27291,27292,27293],[27294,27295,27296],[27297,27298,27299],[27300,27301,27302],[27303,27304,27305],[27306,27307,27308],[27309,27310,27311],[27312,27313,27314],[27315,27316,27317],[27318,27319,27320],[27321,27322,27323],[27324,27325,27326],[27327,27328,27329],[27330,27331,27332],[27333,27334,27335],[27336,27337,27338],[27339,27340,27341],[27342,27343,27344],[27345,27346,27347],[27348,27349,27350],[27351,27352,27353],[27354,27355,27356],[27357,27358,27359],[27360,27361,27362],[27363,27364,27365],[27366,27367,27368],[27369,27370,27371],[27372,27373,27374],[27375,27376,27377],[27378,27379,27380],[27381,27382,27383],[27384,27385,27386],[27387,27388,27389],[27390,27391,27392],[27393,27394,27395],[27396,27397,27398],[27399,27400,27401],[27402,27403,27404],[27405,27406,27407],[27408,27409,27410],[27411,27412,27413],[27414,27415,27416],[27417,27418,27419],[27420,27421,27422],[27423,27424,27425],[27426,27427,27428],[27429,27430,27431],[27432,27433,27434],[27435,27436,27437],[27438,27439,27440],[27441,27442,27443],[27444,27445,27446],[27447,27448,27449],[27450,27451,27452],[27453,27454,27455],[27456,27457,27458],[27459,27460,27461],[27462,27463,27464],[27465,27466,27467],[27468,27469,27470],[27471,27472,27473],[27474,27475,27476],[27477,27478,27479],[27480,27481,27482],[27483,27484,27485],[27486,27487,27488],[27489,27490,27491],[27492,27493,27494],[27495,27496,27497],[27498,27499,27500],[27501,27502,27503],[27504,27505,27506],[27507,27508,27509],[27510,27511,27512],[27513,27514,27515],[27516,27517,27518],[27519,27520,27521],[27522,27523,27524],[27525,27526,27527],[27528,27529,27530],[27531,27532,27533],[27534,27535,27536],[27537,27538,27539],[27540,27541,27542],[27543,27544,27545],[27546,27547,27548],[27549,27550,27551],[27552,27553,27554],[27555,27556,27557],[27558,27559,27560],[27561,27562,27563],[27564,27565,27566],[27567,27568,27569],[27570,27571,27572],[27573,27574,27575],[27576,27577,27578],[27579,27580,27581],[27582,27583,27584],[27585,27586,27587],[27588,27589,27590],[27591,27592,27593],[27594,27595,27596],[27597,27598,27599],[27600,27601,27602],[27603,27604,27605],[27606,27607,27608],[27609,27610,27611],[27612,27613,27614],[27615,27616,27617],[27618,27619,27620],[27621,27622,27623],[27624,27625,27626],[27627,27628,27629],[27630,27631,27632],[27633,27634,27635],[27636,27637,27638],[27639,27640,27641],[27642,27643,27644],[27645,27646,27647],[27648,27649,27650],[27651,27652,27653],[27654,27655,27656],[27657,27658,27659],[27660,27661,27662],[27663,27664,27665],[27666,27667,27668],[27669,27670,27671],[27672,27673,27674],[27675,27676,27677],[27678,27679,27680],[27681,27682,27683],[27684,27685,27686],[27687,27688,27689],[27690,27691,27692],[27693,27694,27695],[27696,27697,27698],[27699,27700,27701],[27702,27703,27704],[27705,27706,27707],[27708,27709,27710],[27711,27712,27713],[27714,27715,27716],[27717,27718,27719],[27720,27721,27722],[27723,27724,27725],[27726,27727,27728],[27729,27730,27731],[27732,27733,27734],[27735,27736,27737],[27738,27739,27740],[27741,27742,27743],[27744,27745,27746],[27747,27748,27749],[27750,27751,27752],[27753,27754,27755],[27756,27757,27758],[27759,27760,27761],[27762,27763,27764],[27765,27766,27767],[27768,27769,27770],[27771,27772,27773],[27774,27775,27776],[27777,27778,27779],[27780,27781,27782],[27783,27784,27785],[27786,27787,27788],[27789,27790,27791],[27792,27793,27794],[27795,27796,27797],[27798,27799,27800],[27801,27802,27803],[27804,27805,27806],[27807,27808,27809],[27810,27811,27812],[27813,27814,27815],[27816,27817,27818],[27819,27820,27821],[27822,27823,27824],[27825,27826,27827],[27828,27829,27830],[27831,27832,27833],[27834,27835,27836],[27837,27838,27839],[27840,27841,27842],[27843,27844,27845],[27846,27847,27848],[27849,27850,27851],[27852,27853,27854],[27855,27856,27857],[27858,27859,27860],[27861,27862,27863],[27864,27865,27866],[27867,27868,27869],[27870,27871,27872],[27873,27874,27875],[27876,27877,27878],[27879,27880,27881],[27882,27883,27884],[27885,27886,27887],[27888,27889,27890],[27891,27892,27893],[27894,27895,27896],[27897,27898,27899],[27900,27901,27902],[27903,27904,27905],[27906,27907,27908],[27909,27910,27911],[27912,27913,27914],[27915,27916,27917],[27918,27919,27920],[27921,27922,27923],[27924,27925,27926],[27927,27928,27929],[27930,27931,27932],[27933,27934,27935],[27936,27937,27938],[27939,27940,27941],[27942,27943,27944],[27945,27946,27947],[27948,27949,27950],[27951,27952,27953],[27954,27955,27956],[27957,27958,27959],[27960,27961,27962],[27963,27964,27965],[27966,27967,27968],[27969,27970,27971],[27972,27973,27974],[27975,27976,27977],[27978,27979,27980],[27981,27982,27983],[27984,27985,27986],[27987,27988,27989],[27990,27991,27992],[27993,27994,27995],[27996,27997,27998],[27999,28000,28001],[28002,28003,28004],[28005,28006,28007],[28008,28009,28010],[28011,28012,28013],[28014,28015,28016],[28017,28018,28019],[28020,28021,28022],[28023,28024,28025],[28026,28027,28028],[28029,28030,28031],[28032,28033,28034],[28035,28036,28037],[28038,28039,28040],[28041,28042,28043],[28044,28045,28046],[28047,28048,28049],[28050,28051,28052],[28053,28054,28055],[28056,28057,28058],[28059,28060,28061],[28062,28063,28064],[28065,28066,28067],[28068,28069,28070],[28071,28072,28073],[28074,28075,28076],[28077,28078,28079],[28080,28081,28082],[28083,28084,28085],[28086,28087,28088],[28089,28090,28091],[28092,28093,28094],[28095,28096,28097],[28098,28099,28100],[28101,28102,28103],[28104,28105,28106],[28107,28108,28109],[28110,28111,28112],[28113,28114,28115],[28116,28117,28118],[28119,28120,28121],[28122,28123,28124],[28125,28126,28127],[28128,28129,28130],[28131,28132,28133],[28134,28135,28136],[28137,28138,28139],[28140,28141,28142],[28143,28144,28145],[28146,28147,28148],[28149,28150,28151],[28152,28153,28154],[28155,28156,28157],[28158,28159,28160],[28161,28162,28163],[28164,28165,28166],[28167,28168,28169],[28170,28171,28172],[28173,28174,28175],[28176,28177,28178],[28179,28180,28181],[28182,28183,28184],[28185,28186,28187],[28188,28189,28190],[28191,28192,28193],[28194,28195,28196],[28197,28198,28199],[28200,28201,28202],[28203,28204,28205],[28206,28207,28208],[28209,28210,28211],[28212,28213,28214],[28215,28216,28217],[28218,28219,28220],[28221,28222,28223],[28224,28225,28226],[28227,28228,28229],[28230,28231,28232],[28233,28234,28235],[28236,28237,28238],[28239,28240,28241],[28242,28243,28244],[28245,28246,28247],[28248,28249,28250],[28251,28252,28253],[28254,28255,28256],[28257,28258,28259],[28260,28261,28262],[28263,28264,28265],[28266,28267,28268],[28269,28270,28271],[28272,28273,28274],[28275,28276,28277],[28278,28279,28280],[28281,28282,28283],[28284,28285,28286],[28287,28288,28289],[28290,28291,28292],[28293,28294,28295],[28296,28297,28298],[28299,28300,28301],[28302,28303,28304],[28305,28306,28307],[28308,28309,28310],[28311,28312,28313],[28314,28315,28316],[28317,28318,28319],[28320,28321,28322],[28323,28324,28325],[28326,28327,28328],[28329,28330,28331],[28332,28333,28334],[28335,28336,28337],[28338,28339,28340],[28341,28342,28343],[28344,28345,28346],[28347,28348,28349],[28350,28351,28352],[28353,28354,28355],[28356,28357,28358],[28359,28360,28361],[28362,28363,28364],[28365,28366,28367],[28368,28369,28370],[28371,28372,28373],[28374,28375,28376],[28377,28378,28379],[28380,28381,28382],[28383,28384,28385],[28386,28387,28388],[28389,28390,28391],[28392,28393,28394],[28395,28396,28397],[28398,28399,28400],[28401,28402,28403],[28404,28405,28406],[28407,28408,28409],[28410,28411,28412],[28413,28414,28415],[28416,28417,28418],[28419,28420,28421],[28422,28423,28424],[28425,28426,28427],[28428,28429,28430],[28431,28432,28433],[28434,28435,28436],[28437,28438,28439],[28440,28441,28442],[28443,28444,28445],[28446,28447,28448],[28449,28450,28451],[28452,28453,28454],[28455,28456,28457],[28458,28459,28460],[28461,28462,28463],[28464,28465,28466],[28467,28468,28469],[28470,28471,28472],[28473,28474,28475],[28476,28477,28478],[28479,28480,28481],[28482,28483,28484],[28485,28486,28487],[28488,28489,28490],[28491,28492,28493],[28494,28495,28496],[28497,28498,28499],[28500,28501,28502],[28503,28504,28505],[28506,28507,28508],[28509,28510,28511],[28512,28513,28514],[28515,28516,28517],[28518,28519,28520],[28521,28522,28523],[28524,28525,28526],[28527,28528,28529],[28530,28531,28532],[28533,28534,28535],[28536,28537,28538],[28539,28540,28541],[28542,28543,28544],[28545,28546,28547],[28548,28549,28550],[28551,28552,28553],[28554,28555,28556],[28557,28558,28559],[28560,28561,28562],[28563,28564,28565],[28566,28567,28568],[28569,28570,28571],[28572,28573,28574],[28575,28576,28577],[28578,28579,28580],[28581,28582,28583],[28584,28585,28586],[28587,28588,28589],[28590,28591,28592],[28593,28594,28595],[28596,28597,28598],[28599,28600,28601],[28602,28603,28604],[28605,28606,28607],[28608,28609,28610],[28611,28612,28613],[28614,28615,28616],[28617,28618,28619],[28620,28621,28622],[28623,28624,28625],[28626,28627,28628],[28629,28630,28631],[28632,28633,28634],[28635,28636,28637],[28638,28639,28640],[28641,28642,28643],[28644,28645,28646],[28647,28648,28649],[28650,28651,28652],[28653,28654,28655],[28656,28657,28658],[28659,28660,28661],[28662,28663,28664],[28665,28666,28667],[28668,28669,28670],[28671,28672,28673],[28674,28675,28676],[28677,28678,28679],[28680,28681,28682],[28683,28684,28685],[28686,28687,28688],[28689,28690,28691],[28692,28693,28694],[28695,28696,28697],[28698,28699,28700],[28701,28702,28703],[28704,28705,28706],[28707,28708,28709],[28710,28711,28712],[28713,28714,28715],[28716,28717,28718],[28719,28720,28721],[28722,28723,28724],[28725,28726,28727],[28728,28729,28730],[28731,28732,28733],[28734,28735,28736],[28737,28738,28739],[28740,28741,28742],[28743,28744,28745],[28746,28747,28748],[28749,28750,28751],[28752,28753,28754],[28755,28756,28757],[28758,28759,28760],[28761,28762,28763],[28764,28765,28766],[28767,28768,28769],[28770,28771,28772],[28773,28774,28775],[28776,28777,28778],[28779,28780,28781],[28782,28783,28784],[28785,28786,28787],[28788,28789,28790],[28791,28792,28793],[28794,28795,28796],[28797,28798,28799],[28800,28801,28802],[28803,28804,28805],[28806,28807,28808],[28809,28810,28811],[28812,28813,28814],[28815,28816,28817],[28818,28819,28820],[28821,28822,28823],[28824,28825,28826],[28827,28828,28829],[28830,28831,28832],[28833,28834,28835],[28836,28837,28838],[28839,28840,28841],[28842,28843,28844],[28845,28846,28847],[28848,28849,28850],[28851,28852,28853],[28854,28855,28856],[28857,28858,28859],[28860,28861,28862],[28863,28864,28865],[28866,28867,28868],[28869,28870,28871],[28872,28873,28874],[28875,28876,28877],[28878,28879,28880],[28881,28882,28883],[28884,28885,28886],[28887,28888,28889],[28890,28891,28892],[28893,28894,28895],[28896,28897,28898],[28899,28900,28901],[28902,28903,28904],[28905,28906,28907],[28908,28909,28910],[28911,28912,28913],[28914,28915,28916],[28917,28918,28919],[28920,28921,28922],[28923,28924,28925],[28926,28927,28928],[28929,28930,28931],[28932,28933,28934],[28935,28936,28937],[28938,28939,28940],[28941,28942,28943],[28944,28945,28946],[28947,28948,28949],[28950,28951,28952],[28953,28954,28955],[28956,28957,28958],[28959,28960,28961],[28962,28963,28964],[28965,28966,28967],[28968,28969,28970],[28971,28972,28973],[28974,28975,28976],[28977,28978,28979],[28980,28981,28982],[28983,28984,28985],[28986,28987,28988],[28989,28990,28991],[28992,28993,28994],[28995,28996,28997],[28998,28999,29000],[29001,29002,29003],[29004,29005,29006],[29007,29008,29009],[29010,29011,29012],[29013,29014,29015],[29016,29017,29018],[29019,29020,29021],[29022,29023,29024],[29025,29026,29027],[29028,29029,29030],[29031,29032,29033],[29034,29035,29036],[29037,29038,29039],[29040,29041,29042],[29043,29044,29045],[29046,29047,29048],[29049,29050,29051],[29052,29053,29054],[29055,29056,29057],[29058,29059,29060],[29061,29062,29063],[29064,29065,29066],[29067,29068,29069],[29070,29071,29072],[29073,29074,29075],[29076,29077,29078],[29079,29080,29081],[29082,29083,29084],[29085,29086,29087],[29088,29089,29090],[29091,29092,29093],[29094,29095,29096],[29097,29098,29099],[29100,29101,29102],[29103,29104,29105],[29106,29107,29108],[29109,29110,29111],[29112,29113,29114],[29115,29116,29117],[29118,29119,29120],[29121,29122,29123],[29124,29125,29126],[29127,29128,29129],[29130,29131,29132],[29133,29134,29135],[29136,29137,29138],[29139,29140,29141],[29142,29143,29144],[29145,29146,29147],[29148,29149,29150],[29151,29152,29153],[29154,29155,29156],[29157,29158,29159],[29160,29161,29162],[29163,29164,29165],[29166,29167,29168],[29169,29170,29171],[29172,29173,29174],[29175,29176,29177],[29178,29179,29180],[29181,29182,29183],[29184,29185,29186],[29187,29188,29189],[29190,29191,29192],[29193,29194,29195],[29196,29197,29198],[29199,29200,29201],[29202,29203,29204],[29205,29206,29207],[29208,29209,29210],[29211,29212,29213],[29214,29215,29216],[29217,29218,29219],[29220,29221,29222],[29223,29224,29225],[29226,29227,29228],[29229,29230,29231],[29232,29233,29234],[29235,29236,29237],[29238,29239,29240],[29241,29242,29243],[29244,29245,29246],[29247,29248,29249],[29250,29251,29252],[29253,29254,29255],[29256,29257,29258],[29259,29260,29261],[29262,29263,29264],[29265,29266,29267],[29268,29269,29270],[29271,29272,29273],[29274,29275,29276],[29277,29278,29279],[29280,29281,29282],[29283,29284,29285],[29286,29287,29288],[29289,29290,29291],[29292,29293,29294],[29295,29296,29297],[29298,29299,29300],[29301,29302,29303],[29304,29305,29306],[29307,29308,29309],[29310,29311,29312],[29313,29314,29315],[29316,29317,29318],[29319,29320,29321],[29322,29323,29324],[29325,29326,29327],[29328,29329,29330],[29331,29332,29333],[29334,29335,29336],[29337,29338,29339],[29340,29341,29342],[29343,29344,29345],[29346,29347,29348],[29349,29350,29351],[29352,29353,29354],[29355,29356,29357],[29358,29359,29360],[29361,29362,29363],[29364,29365,29366],[29367,29368,29369],[29370,29371,29372],[29373,29374,29375],[29376,29377,29378],[29379,29380,29381],[29382,29383,29384],[29385,29386,29387],[29388,29389,29390],[29391,29392,29393],[29394,29395,29396],[29397,29398,29399],[29400,29401,29402],[29403,29404,29405],[29406,29407,29408],[29409,29410,29411],[29412,29413,29414],[29415,29416,29417],[29418,29419,29420],[29421,29422,29423],[29424,29425,29426],[29427,29428,29429],[29430,29431,29432],[29433,29434,29435],[29436,29437,29438],[29439,29440,29441],[29442,29443,29444],[29445,29446,29447],[29448,29449,29450],[29451,29452,29453],[29454,29455,29456],[29457,29458,29459],[29460,29461,29462],[29463,29464,29465],[29466,29467,29468],[29469,29470,29471],[29472,29473,29474],[29475,29476,29477],[29478,29479,29480],[29481,29482,29483],[29484,29485,29486],[29487,29488,29489],[29490,29491,29492],[29493,29494,29495],[29496,29497,29498],[29499,29500,29501],[29502,29503,29504],[29505,29506,29507],[29508,29509,29510],[29511,29512,29513],[29514,29515,29516],[29517,29518,29519],[29520,29521,29522],[29523,29524,29525],[29526,29527,29528],[29529,29530,29531],[29532,29533,29534],[29535,29536,29537],[29538,29539,29540],[29541,29542,29543],[29544,29545,29546],[29547,29548,29549],[29550,29551,29552],[29553,29554,29555],[29556,29557,29558],[29559,29560,29561],[29562,29563,29564],[29565,29566,29567],[29568,29569,29570],[29571,29572,29573],[29574,29575,29576],[29577,29578,29579],[29580,29581,29582],[29583,29584,29585],[29586,29587,29588],[29589,29590,29591],[29592,29593,29594],[29595,29596,29597],[29598,29599,29600],[29601,29602,29603],[29604,29605,29606],[29607,29608,29609],[29610,29611,29612],[29613,29614,29615],[29616,29617,29618],[29619,29620,29621],[29622,29623,29624],[29625,29626,29627],[29628,29629,29630],[29631,29632,29633],[29634,29635,29636],[29637,29638,29639],[29640,29641,29642],[29643,29644,29645],[29646,29647,29648],[29649,29650,29651],[29652,29653,29654],[29655,29656,29657],[29658,29659,29660],[29661,29662,29663],[29664,29665,29666],[29667,29668,29669],[29670,29671,29672],[29673,29674,29675],[29676,29677,29678],[29679,29680,29681],[29682,29683,29684],[29685,29686,29687],[29688,29689,29690],[29691,29692,29693],[29694,29695,29696],[29697,29698,29699],[29700,29701,29702],[29703,29704,29705],[29706,29707,29708],[29709,29710,29711],[29712,29713,29714],[29715,29716,29717],[29718,29719,29720],[29721,29722,29723],[29724,29725,29726],[29727,29728,29729],[29730,29731,29732],[29733,29734,29735],[29736,29737,29738],[29739,29740,29741],[29742,29743,29744],[29745,29746,29747],[29748,29749,29750],[29751,29752,29753],[29754,29755,29756],[29757,29758,29759],[29760,29761,29762],[29763,29764,29765],[29766,29767,29768],[29769,29770,29771],[29772,29773,29774],[29775,29776,29777],[29778,29779,29780],[29781,29782,29783],[29784,29785,29786],[29787,29788,29789],[29790,29791,29792],[29793,29794,29795],[29796,29797,29798],[29799,29800,29801],[29802,29803,29804],[29805,29806,29807],[29808,29809,29810],[29811,29812,29813],[29814,29815,29816],[29817,29818,29819],[29820,29821,29822],[29823,29824,29825],[29826,29827,29828],[29829,29830,29831],[29832,29833,29834],[29835,29836,29837],[29838,29839,29840],[29841,29842,29843],[29844,29845,29846],[29847,29848,29849],[29850,29851,29852],[29853,29854,29855],[29856,29857,29858],[29859,29860,29861],[29862,29863,29864],[29865,29866,29867],[29868,29869,29870],[29871,29872,29873],[29874,29875,29876],[29877,29878,29879],[29880,29881,29882],[29883,29884,29885],[29886,29887,29888],[29889,29890,29891],[29892,29893,29894],[29895,29896,29897],[29898,29899,29900],[29901,29902,29903],[29904,29905,29906],[29907,29908,29909],[29910,29911,29912],[29913,29914,29915],[29916,29917,29918],[29919,29920,29921],[29922,29923,29924],[29925,29926,29927],[29928,29929,29930],[29931,29932,29933],[29934,29935,29936],[29937,29938,29939],[29940,29941,29942],[29943,29944,29945],[29946,29947,29948],[29949,29950,29951],[29952,29953,29954],[29955,29956,29957],[29958,29959,29960],[29961,29962,29963],[29964,29965,29966],[29967,29968,29969],[29970,29971,29972],[29973,29974,29975],[29976,29977,29978],[29979,29980,29981],[29982,29983,29984],[29985,29986,29987],[29988,29989,29990],[29991,29992,29993],[29994,29995,29996],[29997,29998,29999],[30000,30001,30002],[30003,30004,30005],[30006,30007,30008],[30009,30010,30011],[30012,30013,30014],[30015,30016,30017],[30018,30019,30020],[30021,30022,30023],[30024,30025,30026],[30027,30028,30029],[30030,30031,30032],[30033,30034,30035],[30036,30037,30038],[30039,30040,30041],[30042,30043,30044],[30045,30046,30047],[30048,30049,30050],[30051,30052,30053],[30054,30055,30056],[30057,30058,30059],[30060,30061,30062],[30063,30064,30065],[30066,30067,30068],[30069,30070,30071],[30072,30073,30074],[30075,30076,30077],[30078,30079,30080],[30081,30082,30083],[30084,30085,30086],[30087,30088,30089],[30090,30091,30092],[30093,30094,30095],[30096,30097,30098],[30099,30100,30101],[30102,30103,30104],[30105,30106,30107],[30108,30109,30110],[30111,30112,30113],[30114,30115,30116],[30117,30118,30119],[30120,30121,30122],[30123,30124,30125],[30126,30127,30128],[30129,30130,30131],[30132,30133,30134],[30135,30136,30137],[30138,30139,30140],[30141,30142,30143],[30144,30145,30146],[30147,30148,30149],[30150,30151,30152],[30153,30154,30155],[30156,30157,30158],[30159,30160,30161],[30162,30163,30164],[30165,30166,30167],[30168,30169,30170],[30171,30172,30173],[30174,30175,30176],[30177,30178,30179],[30180,30181,30182],[30183,30184,30185],[30186,30187,30188],[30189,30190,30191],[30192,30193,30194],[30195,30196,30197],[30198,30199,30200],[30201,30202,30203],[30204,30205,30206],[30207,30208,30209],[30210,30211,30212],[30213,30214,30215],[30216,30217,30218],[30219,30220,30221],[30222,30223,30224],[30225,30226,30227],[30228,30229,30230],[30231,30232,30233],[30234,30235,30236],[30237,30238,30239],[30240,30241,30242],[30243,30244,30245],[30246,30247,30248],[30249,30250,30251],[30252,30253,30254],[30255,30256,30257],[30258,30259,30260],[30261,30262,30263],[30264,30265,30266],[30267,30268,30269],[30270,30271,30272],[30273,30274,30275],[30276,30277,30278],[30279,30280,30281],[30282,30283,30284],[30285,30286,30287],[30288,30289,30290],[30291,30292,30293],[30294,30295,30296],[30297,30298,30299],[30300,30301,30302],[30303,30304,30305],[30306,30307,30308],[30309,30310,30311],[30312,30313,30314],[30315,30316,30317],[30318,30319,30320],[30321,30322,30323],[30324,30325,30326],[30327,30328,30329],[30330,30331,30332],[30333,30334,30335],[30336,30337,30338],[30339,30340,30341],[30342,30343,30344],[30345,30346,30347],[30348,30349,30350],[30351,30352,30353],[30354,30355,30356],[30357,30358,30359],[30360,30361,30362],[30363,30364,30365],[30366,30367,30368],[30369,30370,30371],[30372,30373,30374],[30375,30376,30377],[30378,30379,30380],[30381,30382,30383],[30384,30385,30386],[30387,30388,30389],[30390,30391,30392],[30393,30394,30395],[30396,30397,30398],[30399,30400,30401],[30402,30403,30404],[30405,30406,30407],[30408,30409,30410],[30411,30412,30413],[30414,30415,30416],[30417,30418,30419],[30420,30421,30422],[30423,30424,30425],[30426,30427,30428],[30429,30430,30431],[30432,30433,30434],[30435,30436,30437],[30438,30439,30440],[30441,30442,30443],[30444,30445,30446],[30447,30448,30449],[30450,30451,30452],[30453,30454,30455],[30456,30457,30458],[30459,30460,30461],[30462,30463,30464],[30465,30466,30467],[30468,30469,30470],[30471,30472,30473],[30474,30475,30476],[30477,30478,30479],[30480,30481,30482],[30483,30484,30485],[30486,30487,30488],[30489,30490,30491],[30492,30493,30494],[30495,30496,30497],[30498,30499,30500],[30501,30502,30503],[30504,30505,30506],[30507,30508,30509],[30510,30511,30512],[30513,30514,30515],[30516,30517,30518],[30519,30520,30521],[30522,30523,30524],[30525,30526,30527],[30528,30529,30530],[30531,30532,30533],[30534,30535,30536],[30537,30538,30539],[30540,30541,30542],[30543,30544,30545],[30546,30547,30548],[30549,30550,30551],[30552,30553,30554],[30555,30556,30557],[30558,30559,30560],[30561,30562,30563],[30564,30565,30566],[30567,30568,30569],[30570,30571,30572],[30573,30574,30575],[30576,30577,30578],[30579,30580,30581],[30582,30583,30584],[30585,30586,30587],[30588,30589,30590],[30591,30592,30593],[30594,30595,30596],[30597,30598,30599],[30600,30601,30602],[30603,30604,30605],[30606,30607,30608],[30609,30610,30611],[30612,30613,30614],[30615,30616,30617],[30618,30619,30620],[30621,30622,30623],[30624,30625,30626],[30627,30628,30629],[30630,30631,30632],[30633,30634,30635],[30636,30637,30638],[30639,30640,30641],[30642,30643,30644],[30645,30646,30647],[30648,30649,30650],[30651,30652,30653],[30654,30655,30656],[30657,30658,30659],[30660,30661,30662],[30663,30664,30665],[30666,30667,30668],[30669,30670,30671],[30672,30673,30674],[30675,30676,30677],[30678,30679,30680],[30681,30682,30683],[30684,30685,30686],[30687,30688,30689],[30690,30691,30692],[30693,30694,30695],[30696,30697,30698],[30699,30700,30701],[30702,30703,30704],[30705,30706,30707],[30708,30709,30710],[30711,30712,30713],[30714,30715,30716],[30717,30718,30719],[30720,30721,30722],[30723,30724,30725],[30726,30727,30728],[30729,30730,30731],[30732,30733,30734],[30735,30736,30737],[30738,30739,30740],[30741,30742,30743],[30744,30745,30746],[30747,30748,30749],[30750,30751,30752],[30753,30754,30755],[30756,30757,30758],[30759,30760,30761],[30762,30763,30764],[30765,30766,30767],[30768,30769,30770],[30771,30772,30773],[30774,30775,30776],[30777,30778,30779],[30780,30781,30782],[30783,30784,30785],[30786,30787,30788],[30789,30790,30791],[30792,30793,30794],[30795,30796,30797],[30798,30799,30800],[30801,30802,30803],[30804,30805,30806],[30807,30808,30809],[30810,30811,30812],[30813,30814,30815],[30816,30817,30818],[30819,30820,30821],[30822,30823,30824],[30825,30826,30827],[30828,30829,30830],[30831,30832,30833],[30834,30835,30836],[30837,30838,30839],[30840,30841,30842],[30843,30844,30845],[30846,30847,30848],[30849,30850,30851],[30852,30853,30854],[30855,30856,30857],[30858,30859,30860],[30861,30862,30863],[30864,30865,30866],[30867,30868,30869],[30870,30871,30872],[30873,30874,30875],[30876,30877,30878],[30879,30880,30881],[30882,30883,30884],[30885,30886,30887],[30888,30889,30890],[30891,30892,30893],[30894,30895,30896],[30897,30898,30899],[30900,30901,30902],[30903,30904,30905],[30906,30907,30908],[30909,30910,30911],[30912,30913,30914],[30915,30916,30917],[30918,30919,30920],[30921,30922,30923],[30924,30925,30926],[30927,30928,30929],[30930,30931,30932],[30933,30934,30935],[30936,30937,30938],[30939,30940,30941],[30942,30943,30944],[30945,30946,30947],[30948,30949,30950],[30951,30952,30953],[30954,30955,30956],[30957,30958,30959],[30960,30961,30962],[30963,30964,30965],[30966,30967,30968],[30969,30970,30971],[30972,30973,30974],[30975,30976,30977],[30978,30979,30980],[30981,30982,30983],[30984,30985,30986],[30987,30988,30989],[30990,30991,30992],[30993,30994,30995],[30996,30997,30998],[30999,31000,31001],[31002,31003,31004],[31005,31006,31007],[31008,31009,31010],[31011,31012,31013],[31014,31015,31016],[31017,31018,31019],[31020,31021,31022],[31023,31024,31025],[31026,31027,31028],[31029,31030,31031],[31032,31033,31034],[31035,31036,31037],[31038,31039,31040],[31041,31042,31043],[31044,31045,31046],[31047,31048,31049],[31050,31051,31052],[31053,31054,31055],[31056,31057,31058],[31059,31060,31061],[31062,31063,31064],[31065,31066,31067],[31068,31069,31070],[31071,31072,31073],[31074,31075,31076],[31077,31078,31079],[31080,31081,31082],[31083,31084,31085],[31086,31087,31088],[31089,31090,31091],[31092,31093,31094],[31095,31096,31097],[31098,31099,31100],[31101,31102,31103],[31104,31105,31106],[31107,31108,31109],[31110,31111,31112],[31113,31114,31115],[31116,31117,31118],[31119,31120,31121],[31122,31123,31124],[31125,31126,31127],[31128,31129,31130],[31131,31132,31133],[31134,31135,31136],[31137,31138,31139],[31140,31141,31142],[31143,31144,31145],[31146,31147,31148],[31149,31150,31151],[31152,31153,31154],[31155,31156,31157],[31158,31159,31160],[31161,31162,31163],[31164,31165,31166],[31167,31168,31169],[31170,31171,31172],[31173,31174,31175],[31176,31177,31178],[31179,31180,31181],[31182,31183,31184],[31185,31186,31187],[31188,31189,31190],[31191,31192,31193],[31194,31195,31196],[31197,31198,31199],[31200,31201,31202],[31203,31204,31205],[31206,31207,31208],[31209,31210,31211],[31212,31213,31214],[31215,31216,31217],[31218,31219,31220],[31221,31222,31223],[31224,31225,31226],[31227,31228,31229],[31230,31231,31232],[31233,31234,31235],[31236,31237,31238],[31239,31240,31241],[31242,31243,31244],[31245,31246,31247],[31248,31249,31250],[31251,31252,31253],[31254,31255,31256],[31257,31258,31259],[31260,31261,31262],[31263,31264,31265],[31266,31267,31268],[31269,31270,31271],[31272,31273,31274],[31275,31276,31277],[31278,31279,31280],[31281,31282,31283],[31284,31285,31286],[31287,31288,31289],[31290,31291,31292],[31293,31294,31295],[31296,31297,31298],[31299,31300,31301],[31302,31303,31304],[31305,31306,31307],[31308,31309,31310],[31311,31312,31313],[31314,31315,31316],[31317,31318,31319],[31320,31321,31322],[31323,31324,31325],[31326,31327,31328],[31329,31330,31331],[31332,31333,31334],[31335,31336,31337],[31338,31339,31340],[31341,31342,31343],[31344,31345,31346],[31347,31348,31349],[31350,31351,31352],[31353,31354,31355],[31356,31357,31358],[31359,31360,31361],[31362,31363,31364],[31365,31366,31367],[31368,31369,31370],[31371,31372,31373],[31374,31375,31376],[31377,31378,31379],[31380,31381,31382],[31383,31384,31385],[31386,31387,31388],[31389,31390,31391],[31392,31393,31394],[31395,31396,31397],[31398,31399,31400],[31401,31402,31403],[31404,31405,31406],[31407,31408,31409],[31410,31411,31412],[31413,31414,31415],[31416,31417,31418],[31419,31420,31421],[31422,31423,31424],[31425,31426,31427],[31428,31429,31430],[31431,31432,31433],[31434,31435,31436],[31437,31438,31439],[31440,31441,31442],[31443,31444,31445],[31446,31447,31448],[31449,31450,31451],[31452,31453,31454],[31455,31456,31457],[31458,31459,31460],[31461,31462,31463],[31464,31465,31466],[31467,31468,31469],[31470,31471,31472],[31473,31474,31475],[31476,31477,31478],[31479,31480,31481],[31482,31483,31484],[31485,31486,31487],[31488,31489,31490],[31491,31492,31493],[31494,31495,31496],[31497,31498,31499],[31500,31501,31502],[31503,31504,31505],[31506,31507,31508],[31509,31510,31511],[31512,31513,31514],[31515,31516,31517],[31518,31519,31520],[31521,31522,31523],[31524,31525,31526],[31527,31528,31529],[31530,31531,31532],[31533,31534,31535],[31536,31537,31538],[31539,31540,31541],[31542,31543,31544],[31545,31546,31547],[31548,31549,31550],[31551,31552,31553],[31554,31555,31556],[31557,31558,31559],[31560,31561,31562],[31563,31564,31565],[31566,31567,31568],[31569,31570,31571],[31572,31573,31574],[31575,31576,31577],[31578,31579,31580],[31581,31582,31583],[31584,31585,31586],[31587,31588,31589],[31590,31591,31592],[31593,31594,31595],[31596,31597,31598],[31599,31600,31601],[31602,31603,31604],[31605,31606,31607],[31608,31609,31610],[31611,31612,31613],[31614,31615,31616],[31617,31618,31619],[31620,31621,31622],[31623,31624,31625],[31626,31627,31628],[31629,31630,31631],[31632,31633,31634],[31635,31636,31637],[31638,31639,31640],[31641,31642,31643],[31644,31645,31646],[31647,31648,31649],[31650,31651,31652],[31653,31654,31655],[31656,31657,31658],[31659,31660,31661],[31662,31663,31664],[31665,31666,31667],[31668,31669,31670],[31671,31672,31673],[31674,31675,31676],[31677,31678,31679],[31680,31681,31682],[31683,31684,31685],[31686,31687,31688],[31689,31690,31691],[31692,31693,31694],[31695,31696,31697],[31698,31699,31700],[31701,31702,31703],[31704,31705,31706],[31707,31708,31709],[31710,31711,31712],[31713,31714,31715],[31716,31717,31718],[31719,31720,31721],[31722,31723,31724],[31725,31726,31727],[31728,31729,31730],[31731,31732,31733],[31734,31735,31736],[31737,31738,31739],[31740,31741,31742],[31743,31744,31745],[31746,31747,31748],[31749,31750,31751],[31752,31753,31754],[31755,31756,31757],[31758,31759,31760],[31761,31762,31763],[31764,31765,31766],[31767,31768,31769],[31770,31771,31772],[31773,31774,31775],[31776,31777,31778],[31779,31780,31781],[31782,31783,31784],[31785,31786,31787],[31788,31789,31790],[31791,31792,31793],[31794,31795,31796],[31797,31798,31799],[31800,31801,31802],[31803,31804,31805],[31806,31807,31808],[31809,31810,31811],[31812,31813,31814],[31815,31816,31817],[31818,31819,31820],[31821,31822,31823],[31824,31825,31826],[31827,31828,31829],[31830,31831,31832],[31833,31834,31835],[31836,31837,31838],[31839,31840,31841],[31842,31843,31844],[31845,31846,31847],[31848,31849,31850],[31851,31852,31853],[31854,31855,31856],[31857,31858,31859],[31860,31861,31862],[31863,31864,31865],[31866,31867,31868],[31869,31870,31871],[31872,31873,31874],[31875,31876,31877],[31878,31879,31880],[31881,31882,31883],[31884,31885,31886],[31887,31888,31889],[31890,31891,31892],[31893,31894,31895],[31896,31897,31898],[31899,31900,31901],[31902,31903,31904],[31905,31906,31907],[31908,31909,31910],[31911,31912,31913],[31914,31915,31916],[31917,31918,31919],[31920,31921,31922],[31923,31924,31925],[31926,31927,31928],[31929,31930,31931],[31932,31933,31934],[31935,31936,31937],[31938,31939,31940],[31941,31942,31943],[31944,31945,31946],[31947,31948,31949],[31950,31951,31952],[31953,31954,31955],[31956,31957,31958],[31959,31960,31961],[31962,31963,31964],[31965,31966,31967],[31968,31969,31970],[31971,31972,31973],[31974,31975,31976],[31977,31978,31979],[31980,31981,31982],[31983,31984,31985],[31986,31987,31988],[31989,31990,31991],[31992,31993,31994],[31995,31996,31997],[31998,31999,32000],[32001,32002,32003],[32004,32005,32006],[32007,32008,32009],[32010,32011,32012],[32013,32014,32015],[32016,32017,32018],[32019,32020,32021],[32022,32023,32024],[32025,32026,32027],[32028,32029,32030],[32031,32032,32033],[32034,32035,32036],[32037,32038,32039],[32040,32041,32042],[32043,32044,32045],[32046,32047,32048],[32049,32050,32051],[32052,32053,32054],[32055,32056,32057],[32058,32059,32060],[32061,32062,32063],[32064,32065,32066],[32067,32068,32069],[32070,32071,32072],[32073,32074,32075],[32076,32077,32078],[32079,32080,32081],[32082,32083,32084],[32085,32086,32087],[32088,32089,32090],[32091,32092,32093],[32094,32095,32096],[32097,32098,32099],[32100,32101,32102],[32103,32104,32105],[32106,32107,32108],[32109,32110,32111],[32112,32113,32114],[32115,32116,32117],[32118,32119,32120],[32121,32122,32123],[32124,32125,32126],[32127,32128,32129],[32130,32131,32132],[32133,32134,32135],[32136,32137,32138],[32139,32140,32141],[32142,32143,32144],[32145,32146,32147],[32148,32149,32150],[32151,32152,32153],[32154,32155,32156],[32157,32158,32159],[32160,32161,32162],[32163,32164,32165],[32166,32167,32168],[32169,32170,32171],[32172,32173,32174],[32175,32176,32177],[32178,32179,32180],[32181,32182,32183],[32184,32185,32186],[32187,32188,32189],[32190,32191,32192],[32193,32194,32195],[32196,32197,32198],[32199,32200,32201],[32202,32203,32204],[32205,32206,32207],[32208,32209,32210],[32211,32212,32213],[32214,32215,32216],[32217,32218,32219],[32220,32221,32222],[32223,32224,32225],[32226,32227,32228],[32229,32230,32231],[32232,32233,32234],[32235,32236,32237],[32238,32239,32240],[32241,32242,32243],[32244,32245,32246],[32247,32248,32249],[32250,32251,32252],[32253,32254,32255],[32256,32257,32258],[32259,32260,32261],[32262,32263,32264],[32265,32266,32267],[32268,32269,32270],[32271,32272,32273],[32274,32275,32276],[32277,32278,32279],[32280,32281,32282],[32283,32284,32285],[32286,32287,32288],[32289,32290,32291],[32292,32293,32294],[32295,32296,32297],[32298,32299,32300],[32301,32302,32303],[32304,32305,32306],[32307,32308,32309],[32310,32311,32312],[32313,32314,32315],[32316,32317,32318],[32319,32320,32321],[32322,32323,32324],[32325,32326,32327],[32328,32329,32330],[32331,32332,32333],[32334,32335,32336],[32337,32338,32339],[32340,32341,32342],[32343,32344,32345],[32346,32347,32348],[32349,32350,32351],[32352,32353,32354],[32355,32356,32357],[32358,32359,32360],[32361,32362,32363],[32364,32365,32366],[32367,32368,32369],[32370,32371,32372],[32373,32374,32375],[32376,32377,32378],[32379,32380,32381],[32382,32383,32384],[32385,32386,32387],[32388,32389,32390],[32391,32392,32393],[32394,32395,32396],[32397,32398,32399],[32400,32401,32402],[32403,32404,32405],[32406,32407,32408],[32409,32410,32411],[32412,32413,32414],[32415,32416,32417],[32418,32419,32420],[32421,32422,32423],[32424,32425,32426],[32427,32428,32429],[32430,32431,32432],[32433,32434,32435],[32436,32437,32438],[32439,32440,32441],[32442,32443,32444],[32445,32446,32447],[32448,32449,32450],[32451,32452,32453],[32454,32455,32456],[32457,32458,32459],[32460,32461,32462],[32463,32464,32465],[32466,32467,32468],[32469,32470,32471],[32472,32473,32474],[32475,32476,32477],[32478,32479,32480],[32481,32482,32483],[32484,32485,32486],[32487,32488,32489],[32490,32491,32492],[32493,32494,32495],[32496,32497,32498],[32499,32500,32501],[32502,32503,32504],[32505,32506,32507],[32508,32509,32510],[32511,32512,32513],[32514,32515,32516],[32517,32518,32519],[32520,32521,32522],[32523,32524,32525],[32526,32527,32528],[32529,32530,32531],[32532,32533,32534],[32535,32536,32537],[32538,32539,32540],[32541,32542,32543],[32544,32545,32546],[32547,32548,32549],[32550,32551,32552],[32553,32554,32555],[32556,32557,32558],[32559,32560,32561],[32562,32563,32564],[32565,32566,32567],[32568,32569,32570],[32571,32572,32573],[32574,32575,32576],[32577,32578,32579],[32580,32581,32582],[32583,32584,32585],[32586,32587,32588],[32589,32590,32591],[32592,32593,32594],[32595,32596,32597],[32598,32599,32600],[32601,32602,32603],[32604,32605,32606],[32607,32608,32609],[32610,32611,32612],[32613,32614,32615],[32616,32617,32618],[32619,32620,32621],[32622,32623,32624],[32625,32626,32627],[32628,32629,32630],[32631,32632,32633],[32634,32635,32636],[32637,32638,32639],[32640,32641,32642],[32643,32644,32645],[32646,32647,32648],[32649,32650,32651],[32652,32653,32654],[32655,32656,32657],[32658,32659,32660],[32661,32662,32663],[32664,32665,32666],[32667,32668,32669],[32670,32671,32672],[32673,32674,32675],[32676,32677,32678],[32679,32680,32681],[32682,32683,32684],[32685,32686,32687],[32688,32689,32690],[32691,32692,32693],[32694,32695,32696],[32697,32698,32699],[32700,32701,32702],[32703,32704,32705],[32706,32707,32708],[32709,32710,32711],[32712,32713,32714],[32715,32716,32717],[32718,32719,32720],[32721,32722,32723],[32724,32725,32726],[32727,32728,32729],[32730,32731,32732],[32733,32734,32735],[32736,32737,32738],[32739,32740,32741],[32742,32743,32744],[32745,32746,32747],[32748,32749,32750],[32751,32752,32753],[32754,32755,32756],[32757,32758,32759],[32760,32761,32762],[32763,32764,32765],[32766,32767,32768],[32769,32770,32771],[32772,32773,32774],[32775,32776,32777],[32778,32779,32780],[32781,32782,32783],[32784,32785,32786],[32787,32788,32789],[32790,32791,32792],[32793,32794,32795],[32796,32797,32798],[32799,32800,32801],[32802,32803,32804],[32805,32806,32807],[32808,32809,32810],[32811,32812,32813],[32814,32815,32816],[32817,32818,32819],[32820,32821,32822],[32823,32824,32825],[32826,32827,32828],[32829,32830,32831],[32832,32833,32834],[32835,32836,32837],[32838,32839,32840],[32841,32842,32843],[32844,32845,32846],[32847,32848,32849],[32850,32851,32852],[32853,32854,32855],[32856,32857,32858],[32859,32860,32861],[32862,32863,32864],[32865,32866,32867],[32868,32869,32870],[32871,32872,32873],[32874,32875,32876],[32877,32878,32879],[32880,32881,32882],[32883,32884,32885],[32886,32887,32888],[32889,32890,32891],[32892,32893,32894],[32895,32896,32897],[32898,32899,32900],[32901,32902,32903],[32904,32905,32906],[32907,32908,32909],[32910,32911,32912],[32913,32914,32915],[32916,32917,32918],[32919,32920,32921],[32922,32923,32924],[32925,32926,32927],[32928,32929,32930],[32931,32932,32933],[32934,32935,32936],[32937,32938,32939],[32940,32941,32942],[32943,32944,32945],[32946,32947,32948],[32949,32950,32951],[32952,32953,32954],[32955,32956,32957],[32958,32959,32960],[32961,32962,32963],[32964,32965,32966],[32967,32968,32969],[32970,32971,32972],[32973,32974,32975],[32976,32977,32978],[32979,32980,32981],[32982,32983,32984],[32985,32986,32987],[32988,32989,32990],[32991,32992,32993],[32994,32995,32996],[32997,32998,32999],[33000,33001,33002],[33003,33004,33005],[33006,33007,33008],[33009,33010,33011],[33012,33013,33014],[33015,33016,33017],[33018,33019,33020],[33021,33022,33023],[33024,33025,33026],[33027,33028,33029],[33030,33031,33032],[33033,33034,33035],[33036,33037,33038],[33039,33040,33041],[33042,33043,33044],[33045,33046,33047],[33048,33049,33050],[33051,33052,33053],[33054,33055,33056],[33057,33058,33059],[33060,33061,33062],[33063,33064,33065],[33066,33067,33068],[33069,33070,33071],[33072,33073,33074],[33075,33076,33077],[33078,33079,33080],[33081,33082,33083],[33084,33085,33086],[33087,33088,33089],[33090,33091,33092],[33093,33094,33095],[33096,33097,33098],[33099,33100,33101],[33102,33103,33104],[33105,33106,33107],[33108,33109,33110],[33111,33112,33113],[33114,33115,33116],[33117,33118,33119],[33120,33121,33122],[33123,33124,33125],[33126,33127,33128],[33129,33130,33131],[33132,33133,33134],[33135,33136,33137],[33138,33139,33140],[33141,33142,33143],[33144,33145,33146],[33147,33148,33149],[33150,33151,33152],[33153,33154,33155],[33156,33157,33158],[33159,33160,33161],[33162,33163,33164],[33165,33166,33167],[33168,33169,33170],[33171,33172,33173],[33174,33175,33176],[33177,33178,33179],[33180,33181,33182],[33183,33184,33185],[33186,33187,33188],[33189,33190,33191],[33192,33193,33194],[33195,33196,33197],[33198,33199,33200],[33201,33202,33203],[33204,33205,33206],[33207,33208,33209],[33210,33211,33212],[33213,33214,33215],[33216,33217,33218],[33219,33220,33221],[33222,33223,33224],[33225,33226,33227],[33228,33229,33230],[33231,33232,33233],[33234,33235,33236],[33237,33238,33239],[33240,33241,33242],[33243,33244,33245],[33246,33247,33248],[33249,33250,33251],[33252,33253,33254],[33255,33256,33257],[33258,33259,33260],[33261,33262,33263],[33264,33265,33266],[33267,33268,33269],[33270,33271,33272],[33273,33274,33275],[33276,33277,33278],[33279,33280,33281],[33282,33283,33284],[33285,33286,33287],[33288,33289,33290],[33291,33292,33293],[33294,33295,33296],[33297,33298,33299],[33300,33301,33302],[33303,33304,33305],[33306,33307,33308],[33309,33310,33311],[33312,33313,33314],[33315,33316,33317],[33318,33319,33320],[33321,33322,33323],[33324,33325,33326],[33327,33328,33329],[33330,33331,33332],[33333,33334,33335],[33336,33337,33338],[33339,33340,33341],[33342,33343,33344],[33345,33346,33347],[33348,33349,33350],[33351,33352,33353],[33354,33355,33356],[33357,33358,33359],[33360,33361,33362],[33363,33364,33365],[33366,33367,33368],[33369,33370,33371],[33372,33373,33374],[33375,33376,33377],[33378,33379,33380],[33381,33382,33383],[33384,33385,33386],[33387,33388,33389],[33390,33391,33392],[33393,33394,33395],[33396,33397,33398],[33399,33400,33401],[33402,33403,33404],[33405,33406,33407],[33408,33409,33410],[33411,33412,33413],[33414,33415,33416],[33417,33418,33419],[33420,33421,33422],[33423,33424,33425],[33426,33427,33428],[33429,33430,33431],[33432,33433,33434],[33435,33436,33437],[33438,33439,33440],[33441,33442,33443],[33444,33445,33446],[33447,33448,33449],[33450,33451,33452],[33453,33454,33455],[33456,33457,33458],[33459,33460,33461],[33462,33463,33464],[33465,33466,33467],[33468,33469,33470],[33471,33472,33473],[33474,33475,33476],[33477,33478,33479],[33480,33481,33482],[33483,33484,33485],[33486,33487,33488],[33489,33490,33491],[33492,33493,33494],[33495,33496,33497],[33498,33499,33500],[33501,33502,33503],[33504,33505,33506],[33507,33508,33509],[33510,33511,33512],[33513,33514,33515],[33516,33517,33518],[33519,33520,33521],[33522,33523,33524],[33525,33526,33527],[33528,33529,33530],[33531,33532,33533],[33534,33535,33536],[33537,33538,33539],[33540,33541,33542],[33543,33544,33545],[33546,33547,33548],[33549,33550,33551],[33552,33553,33554],[33555,33556,33557],[33558,33559,33560],[33561,33562,33563],[33564,33565,33566],[33567,33568,33569],[33570,33571,33572],[33573,33574,33575],[33576,33577,33578],[33579,33580,33581],[33582,33583,33584],[33585,33586,33587],[33588,33589,33590],[33591,33592,33593],[33594,33595,33596],[33597,33598,33599],[33600,33601,33602],[33603,33604,33605],[33606,33607,33608],[33609,33610,33611],[33612,33613,33614],[33615,33616,33617],[33618,33619,33620],[33621,33622,33623],[33624,33625,33626],[33627,33628,33629],[33630,33631,33632],[33633,33634,33635],[33636,33637,33638],[33639,33640,33641],[33642,33643,33644],[33645,33646,33647],[33648,33649,33650],[33651,33652,33653],[33654,33655,33656],[33657,33658,33659],[33660,33661,33662],[33663,33664,33665],[33666,33667,33668],[33669,33670,33671],[33672,33673,33674],[33675,33676,33677],[33678,33679,33680],[33681,33682,33683],[33684,33685,33686],[33687,33688,33689],[33690,33691,33692],[33693,33694,33695],[33696,33697,33698],[33699,33700,33701],[33702,33703,33704],[33705,33706,33707],[33708,33709,33710],[33711,33712,33713],[33714,33715,33716],[33717,33718,33719],[33720,33721,33722],[33723,33724,33725],[33726,33727,33728],[33729,33730,33731],[33732,33733,33734],[33735,33736,33737],[33738,33739,33740],[33741,33742,33743],[33744,33745,33746],[33747,33748,33749],[33750,33751,33752],[33753,33754,33755],[33756,33757,33758],[33759,33760,33761],[33762,33763,33764],[33765,33766,33767],[33768,33769,33770],[33771,33772,33773],[33774,33775,33776],[33777,33778,33779],[33780,33781,33782],[33783,33784,33785],[33786,33787,33788],[33789,33790,33791],[33792,33793,33794],[33795,33796,33797],[33798,33799,33800],[33801,33802,33803],[33804,33805,33806],[33807,33808,33809],[33810,33811,33812],[33813,33814,33815],[33816,33817,33818],[33819,33820,33821],[33822,33823,33824],[33825,33826,33827],[33828,33829,33830],[33831,33832,33833],[33834,33835,33836],[33837,33838,33839],[33840,33841,33842],[33843,33844,33845],[33846,33847,33848],[33849,33850,33851],[33852,33853,33854],[33855,33856,33857],[33858,33859,33860],[33861,33862,33863],[33864,33865,33866],[33867,33868,33869],[33870,33871,33872],[33873,33874,33875],[33876,33877,33878],[33879,33880,33881],[33882,33883,33884],[33885,33886,33887],[33888,33889,33890],[33891,33892,33893],[33894,33895,33896],[33897,33898,33899],[33900,33901,33902],[33903,33904,33905],[33906,33907,33908],[33909,33910,33911],[33912,33913,33914],[33915,33916,33917],[33918,33919,33920],[33921,33922,33923],[33924,33925,33926],[33927,33928,33929],[33930,33931,33932],[33933,33934,33935],[33936,33937,33938],[33939,33940,33941],[33942,33943,33944],[33945,33946,33947],[33948,33949,33950],[33951,33952,33953],[33954,33955,33956],[33957,33958,33959],[33960,33961,33962],[33963,33964,33965],[33966,33967,33968],[33969,33970,33971],[33972,33973,33974],[33975,33976,33977],[33978,33979,33980],[33981,33982,33983],[33984,33985,33986],[33987,33988,33989],[33990,33991,33992],[33993,33994,33995],[33996,33997,33998],[33999,34000,34001],[34002,34003,34004],[34005,34006,34007],[34008,34009,34010],[34011,34012,34013],[34014,34015,34016],[34017,34018,34019],[34020,34021,34022],[34023,34024,34025],[34026,34027,34028],[34029,34030,34031],[34032,34033,34034],[34035,34036,34037],[34038,34039,34040],[34041,34042,34043],[34044,34045,34046],[34047,34048,34049],[34050,34051,34052],[34053,34054,34055],[34056,34057,34058],[34059,34060,34061],[34062,34063,34064],[34065,34066,34067],[34068,34069,34070],[34071,34072,34073],[34074,34075,34076],[34077,34078,34079],[34080,34081,34082],[34083,34084,34085],[34086,34087,34088],[34089,34090,34091],[34092,34093,34094],[34095,34096,34097],[34098,34099,34100],[34101,34102,34103],[34104,34105,34106],[34107,34108,34109],[34110,34111,34112],[34113,34114,34115],[34116,34117,34118],[34119,34120,34121],[34122,34123,34124],[34125,34126,34127],[34128,34129,34130],[34131,34132,34133],[34134,34135,34136],[34137,34138,34139],[34140,34141,34142],[34143,34144,34145],[34146,34147,34148],[34149,34150,34151],[34152,34153,34154],[34155,34156,34157],[34158,34159,34160],[34161,34162,34163],[34164,34165,34166],[34167,34168,34169],[34170,34171,34172],[34173,34174,34175],[34176,34177,34178],[34179,34180,34181],[34182,34183,34184],[34185,34186,34187],[34188,34189,34190],[34191,34192,34193],[34194,34195,34196],[34197,34198,34199],[34200,34201,34202],[34203,34204,34205],[34206,34207,34208],[34209,34210,34211],[34212,34213,34214],[34215,34216,34217],[34218,34219,34220],[34221,34222,34223],[34224,34225,34226],[34227,34228,34229],[34230,34231,34232],[34233,34234,34235],[34236,34237,34238],[34239,34240,34241],[34242,34243,34244],[34245,34246,34247],[34248,34249,34250],[34251,34252,34253],[34254,34255,34256],[34257,34258,34259],[34260,34261,34262],[34263,34264,34265],[34266,34267,34268],[34269,34270,34271],[34272,34273,34274],[34275,34276,34277],[34278,34279,34280],[34281,34282,34283],[34284,34285,34286],[34287,34288,34289],[34290,34291,34292],[34293,34294,34295],[34296,34297,34298],[34299,34300,34301],[34302,34303,34304],[34305,34306,34307],[34308,34309,34310],[34311,34312,34313],[34314,34315,34316],[34317,34318,34319],[34320,34321,34322],[34323,34324,34325],[34326,34327,34328],[34329,34330,34331],[34332,34333,34334],[34335,34336,34337],[34338,34339,34340],[34341,34342,34343],[34344,34345,34346],[34347,34348,34349],[34350,34351,34352],[34353,34354,34355],[34356,34357,34358],[34359,34360,34361],[34362,34363,34364],[34365,34366,34367],[34368,34369,34370],[34371,34372,34373],[34374,34375,34376],[34377,34378,34379],[34380,34381,34382],[34383,34384,34385],[34386,34387,34388],[34389,34390,34391],[34392,34393,34394],[34395,34396,34397],[34398,34399,34400],[34401,34402,34403],[34404,34405,34406],[34407,34408,34409],[34410,34411,34412],[34413,34414,34415],[34416,34417,34418],[34419,34420,34421],[34422,34423,34424],[34425,34426,34427],[34428,34429,34430],[34431,34432,34433],[34434,34435,34436],[34437,34438,34439],[34440,34441,34442],[34443,34444,34445],[34446,34447,34448],[34449,34450,34451],[34452,34453,34454],[34455,34456,34457],[34458,34459,34460],[34461,34462,34463],[34464,34465,34466],[34467,34468,34469],[34470,34471,34472],[34473,34474,34475],[34476,34477,34478],[34479,34480,34481],[34482,34483,34484],[34485,34486,34487],[34488,34489,34490],[34491,34492,34493],[34494,34495,34496],[34497,34498,34499],[34500,34501,34502],[34503,34504,34505],[34506,34507,34508],[34509,34510,34511],[34512,34513,34514],[34515,34516,34517],[34518,34519,34520],[34521,34522,34523],[34524,34525,34526],[34527,34528,34529],[34530,34531,34532],[34533,34534,34535],[34536,34537,34538],[34539,34540,34541],[34542,34543,34544],[34545,34546,34547],[34548,34549,34550],[34551,34552,34553],[34554,34555,34556],[34557,34558,34559],[34560,34561,34562],[34563,34564,34565],[34566,34567,34568],[34569,34570,34571],[34572,34573,34574],[34575,34576,34577],[34578,34579,34580],[34581,34582,34583],[34584,34585,34586],[34587,34588,34589],[34590,34591,34592],[34593,34594,34595],[34596,34597,34598],[34599,34600,34601],[34602,34603,34604],[34605,34606,34607],[34608,34609,34610],[34611,34612,34613],[34614,34615,34616],[34617,34618,34619],[34620,34621,34622],[34623,34624,34625],[34626,34627,34628],[34629,34630,34631],[34632,34633,34634],[34635,34636,34637],[34638,34639,34640],[34641,34642,34643],[34644,34645,34646],[34647,34648,34649],[34650,34651,34652],[34653,34654,34655],[34656,34657,34658],[34659,34660,34661],[34662,34663,34664],[34665,34666,34667],[34668,34669,34670],[34671,34672,34673],[34674,34675,34676],[34677,34678,34679],[34680,34681,34682],[34683,34684,34685],[34686,34687,34688],[34689,34690,34691],[34692,34693,34694],[34695,34696,34697],[34698,34699,34700],[34701,34702,34703],[34704,34705,34706],[34707,34708,34709],[34710,34711,34712],[34713,34714,34715],[34716,34717,34718],[34719,34720,34721],[34722,34723,34724],[34725,34726,34727],[34728,34729,34730],[34731,34732,34733],[34734,34735,34736],[34737,34738,34739],[34740,34741,34742],[34743,34744,34745],[34746,34747,34748],[34749,34750,34751],[34752,34753,34754],[34755,34756,34757],[34758,34759,34760],[34761,34762,34763],[34764,34765,34766],[34767,34768,34769],[34770,34771,34772],[34773,34774,34775],[34776,34777,34778],[34779,34780,34781],[34782,34783,34784],[34785,34786,34787],[34788,34789,34790],[34791,34792,34793],[34794,34795,34796],[34797,34798,34799],[34800,34801,34802],[34803,34804,34805],[34806,34807,34808],[34809,34810,34811],[34812,34813,34814],[34815,34816,34817],[34818,34819,34820],[34821,34822,34823],[34824,34825,34826],[34827,34828,34829],[34830,34831,34832],[34833,34834,34835],[34836,34837,34838],[34839,34840,34841],[34842,34843,34844],[34845,34846,34847],[34848,34849,34850],[34851,34852,34853],[34854,34855,34856],[34857,34858,34859],[34860,34861,34862],[34863,34864,34865],[34866,34867,34868],[34869,34870,34871],[34872,34873,34874],[34875,34876,34877],[34878,34879,34880],[34881,34882,34883],[34884,34885,34886],[34887,34888,34889],[34890,34891,34892],[34893,34894,34895],[34896,34897,34898],[34899,34900,34901],[34902,34903,34904],[34905,34906,34907],[34908,34909,34910],[34911,34912,34913],[34914,34915,34916],[34917,34918,34919],[34920,34921,34922],[34923,34924,34925],[34926,34927,34928],[34929,34930,34931],[34932,34933,34934],[34935,34936,34937],[34938,34939,34940],[34941,34942,34943],[34944,34945,34946],[34947,34948,34949],[34950,34951,34952],[34953,34954,34955],[34956,34957,34958],[34959,34960,34961],[34962,34963,34964],[34965,34966,34967],[34968,34969,34970],[34971,34972,34973],[34974,34975,34976],[34977,34978,34979],[34980,34981,34982],[34983,34984,34985],[34986,34987,34988],[34989,34990,34991],[34992,34993,34994],[34995,34996,34997],[34998,34999,35000],[35001,35002,35003],[35004,35005,35006],[35007,35008,35009],[35010,35011,35012],[35013,35014,35015],[35016,35017,35018],[35019,35020,35021],[35022,35023,35024],[35025,35026,35027],[35028,35029,35030],[35031,35032,35033],[35034,35035,35036],[35037,35038,35039],[35040,35041,35042],[35043,35044,35045],[35046,35047,35048],[35049,35050,35051],[35052,35053,35054],[35055,35056,35057],[35058,35059,35060],[35061,35062,35063],[35064,35065,35066],[35067,35068,35069],[35070,35071,35072],[35073,35074,35075],[35076,35077,35078],[35079,35080,35081],[35082,35083,35084],[35085,35086,35087],[35088,35089,35090],[35091,35092,35093],[35094,35095,35096],[35097,35098,35099],[35100,35101,35102],[35103,35104,35105],[35106,35107,35108],[35109,35110,35111],[35112,35113,35114],[35115,35116,35117],[35118,35119,35120],[35121,35122,35123],[35124,35125,35126],[35127,35128,35129],[35130,35131,35132],[35133,35134,35135],[35136,35137,35138],[35139,35140,35141],[35142,35143,35144],[35145,35146,35147],[35148,35149,35150],[35151,35152,35153],[35154,35155,35156],[35157,35158,35159],[35160,35161,35162],[35163,35164,35165],[35166,35167,35168],[35169,35170,35171],[35172,35173,35174],[35175,35176,35177],[35178,35179,35180],[35181,35182,35183],[35184,35185,35186],[35187,35188,35189],[35190,35191,35192],[35193,35194,35195],[35196,35197,35198],[35199,35200,35201],[35202,35203,35204],[35205,35206,35207],[35208,35209,35210],[35211,35212,35213],[35214,35215,35216],[35217,35218,35219],[35220,35221,35222],[35223,35224,35225],[35226,35227,35228],[35229,35230,35231],[35232,35233,35234],[35235,35236,35237],[35238,35239,35240],[35241,35242,35243],[35244,35245,35246],[35247,35248,35249],[35250,35251,35252],[35253,35254,35255],[35256,35257,35258],[35259,35260,35261],[35262,35263,35264],[35265,35266,35267],[35268,35269,35270],[35271,35272,35273],[35274,35275,35276],[35277,35278,35279],[35280,35281,35282],[35283,35284,35285],[35286,35287,35288],[35289,35290,35291],[35292,35293,35294],[35295,35296,35297],[35298,35299,35300],[35301,35302,35303],[35304,35305,35306],[35307,35308,35309],[35310,35311,35312],[35313,35314,35315],[35316,35317,35318],[35319,35320,35321],[35322,35323,35324],[35325,35326,35327],[35328,35329,35330],[35331,35332,35333],[35334,35335,35336],[35337,35338,35339],[35340,35341,35342],[35343,35344,35345],[35346,35347,35348],[35349,35350,35351],[35352,35353,35354],[35355,35356,35357],[35358,35359,35360],[35361,35362,35363],[35364,35365,35366],[35367,35368,35369],[35370,35371,35372],[35373,35374,35375],[35376,35377,35378],[35379,35380,35381],[35382,35383,35384],[35385,35386,35387],[35388,35389,35390],[35391,35392,35393],[35394,35395,35396],[35397,35398,35399],[35400,35401,35402],[35403,35404,35405],[35406,35407,35408],[35409,35410,35411],[35412,35413,35414],[35415,35416,35417],[35418,35419,35420],[35421,35422,35423],[35424,35425,35426],[35427,35428,35429],[35430,35431,35432],[35433,35434,35435],[35436,35437,35438],[35439,35440,35441],[35442,35443,35444],[35445,35446,35447],[35448,35449,35450],[35451,35452,35453],[35454,35455,35456],[35457,35458,35459],[35460,35461,35462],[35463,35464,35465],[35466,35467,35468],[35469,35470,35471],[35472,35473,35474],[35475,35476,35477],[35478,35479,35480],[35481,35482,35483],[35484,35485,35486],[35487,35488,35489],[35490,35491,35492],[35493,35494,35495],[35496,35497,35498],[35499,35500,35501],[35502,35503,35504],[35505,35506,35507],[35508,35509,35510],[35511,35512,35513],[35514,35515,35516],[35517,35518,35519],[35520,35521,35522],[35523,35524,35525],[35526,35527,35528],[35529,35530,35531],[35532,35533,35534],[35535,35536,35537],[35538,35539,35540],[35541,35542,35543],[35544,35545,35546],[35547,35548,35549],[35550,35551,35552],[35553,35554,35555],[35556,35557,35558],[35559,35560,35561],[35562,35563,35564],[35565,35566,35567],[35568,35569,35570],[35571,35572,35573],[35574,35575,35576],[35577,35578,35579],[35580,35581,35582],[35583,35584,35585],[35586,35587,35588],[35589,35590,35591],[35592,35593,35594],[35595,35596,35597],[35598,35599,35600],[35601,35602,35603],[35604,35605,35606],[35607,35608,35609],[35610,35611,35612],[35613,35614,35615],[35616,35617,35618],[35619,35620,35621],[35622,35623,35624],[35625,35626,35627],[35628,35629,35630],[35631,35632,35633],[35634,35635,35636],[35637,35638,35639],[35640,35641,35642],[35643,35644,35645],[35646,35647,35648],[35649,35650,35651],[35652,35653,35654],[35655,35656,35657],[35658,35659,35660],[35661,35662,35663],[35664,35665,35666],[35667,35668,35669],[35670,35671,35672],[35673,35674,35675],[35676,35677,35678],[35679,35680,35681],[35682,35683,35684],[35685,35686,35687],[35688,35689,35690],[35691,35692,35693],[35694,35695,35696],[35697,35698,35699],[35700,35701,35702],[35703,35704,35705],[35706,35707,35708],[35709,35710,35711],[35712,35713,35714],[35715,35716,35717],[35718,35719,35720],[35721,35722,35723],[35724,35725,35726],[35727,35728,35729],[35730,35731,35732],[35733,35734,35735],[35736,35737,35738],[35739,35740,35741],[35742,35743,35744],[35745,35746,35747],[35748,35749,35750],[35751,35752,35753],[35754,35755,35756],[35757,35758,35759],[35760,35761,35762],[35763,35764,35765],[35766,35767,35768],[35769,35770,35771],[35772,35773,35774],[35775,35776,35777],[35778,35779,35780],[35781,35782,35783],[35784,35785,35786],[35787,35788,35789],[35790,35791,35792],[35793,35794,35795],[35796,35797,35798],[35799,35800,35801],[35802,35803,35804],[35805,35806,35807],[35808,35809,35810],[35811,35812,35813],[35814,35815,35816],[35817,35818,35819],[35820,35821,35822],[35823,35824,35825],[35826,35827,35828],[35829,35830,35831],[35832,35833,35834],[35835,35836,35837],[35838,35839,35840],[35841,35842,35843],[35844,35845,35846],[35847,35848,35849],[35850,35851,35852],[35853,35854,35855],[35856,35857,35858],[35859,35860,35861],[35862,35863,35864],[35865,35866,35867],[35868,35869,35870],[35871,35872,35873],[35874,35875,35876],[35877,35878,35879],[35880,35881,35882],[35883,35884,35885],[35886,35887,35888],[35889,35890,35891],[35892,35893,35894],[35895,35896,35897],[35898,35899,35900],[35901,35902,35903],[35904,35905,35906],[35907,35908,35909],[35910,35911,35912],[35913,35914,35915],[35916,35917,35918],[35919,35920,35921],[35922,35923,35924],[35925,35926,35927],[35928,35929,35930],[35931,35932,35933],[35934,35935,35936],[35937,35938,35939],[35940,35941,35942],[35943,35944,35945],[35946,35947,35948],[35949,35950,35951],[35952,35953,35954],[35955,35956,35957],[35958,35959,35960],[35961,35962,35963],[35964,35965,35966],[35967,35968,35969],[35970,35971,35972],[35973,35974,35975],[35976,35977,35978],[35979,35980,35981],[35982,35983,35984],[35985,35986,35987],[35988,35989,35990],[35991,35992,35993],[35994,35995,35996],[35997,35998,35999],[36000,36001,36002],[36003,36004,36005],[36006,36007,36008],[36009,36010,36011],[36012,36013,36014],[36015,36016,36017],[36018,36019,36020],[36021,36022,36023],[36024,36025,36026],[36027,36028,36029],[36030,36031,36032],[36033,36034,36035],[36036,36037,36038],[36039,36040,36041],[36042,36043,36044],[36045,36046,36047],[36048,36049,36050],[36051,36052,36053],[36054,36055,36056],[36057,36058,36059],[36060,36061,36062],[36063,36064,36065],[36066,36067,36068],[36069,36070,36071],[36072,36073,36074],[36075,36076,36077],[36078,36079,36080],[36081,36082,36083],[36084,36085,36086],[36087,36088,36089],[36090,36091,36092],[36093,36094,36095],[36096,36097,36098],[36099,36100,36101],[36102,36103,36104],[36105,36106,36107],[36108,36109,36110],[36111,36112,36113],[36114,36115,36116],[36117,36118,36119],[36120,36121,36122],[36123,36124,36125],[36126,36127,36128],[36129,36130,36131],[36132,36133,36134],[36135,36136,36137],[36138,36139,36140],[36141,36142,36143],[36144,36145,36146],[36147,36148,36149],[36150,36151,36152],[36153,36154,36155],[36156,36157,36158],[36159,36160,36161],[36162,36163,36164],[36165,36166,36167],[36168,36169,36170],[36171,36172,36173],[36174,36175,36176],[36177,36178,36179],[36180,36181,36182],[36183,36184,36185],[36186,36187,36188],[36189,36190,36191],[36192,36193,36194],[36195,36196,36197],[36198,36199,36200],[36201,36202,36203],[36204,36205,36206],[36207,36208,36209],[36210,36211,36212],[36213,36214,36215],[36216,36217,36218],[36219,36220,36221],[36222,36223,36224],[36225,36226,36227],[36228,36229,36230],[36231,36232,36233],[36234,36235,36236],[36237,36238,36239],[36240,36241,36242],[36243,36244,36245],[36246,36247,36248],[36249,36250,36251],[36252,36253,36254],[36255,36256,36257],[36258,36259,36260],[36261,36262,36263],[36264,36265,36266],[36267,36268,36269],[36270,36271,36272],[36273,36274,36275],[36276,36277,36278],[36279,36280,36281],[36282,36283,36284],[36285,36286,36287],[36288,36289,36290],[36291,36292,36293],[36294,36295,36296],[36297,36298,36299],[36300,36301,36302],[36303,36304,36305],[36306,36307,36308],[36309,36310,36311],[36312,36313,36314],[36315,36316,36317],[36318,36319,36320],[36321,36322,36323],[36324,36325,36326],[36327,36328,36329],[36330,36331,36332],[36333,36334,36335],[36336,36337,36338],[36339,36340,36341],[36342,36343,36344],[36345,36346,36347],[36348,36349,36350],[36351,36352,36353],[36354,36355,36356],[36357,36358,36359],[36360,36361,36362],[36363,36364,36365],[36366,36367,36368],[36369,36370,36371],[36372,36373,36374],[36375,36376,36377],[36378,36379,36380],[36381,36382,36383],[36384,36385,36386],[36387,36388,36389],[36390,36391,36392],[36393,36394,36395],[36396,36397,36398],[36399,36400,36401],[36402,36403,36404],[36405,36406,36407],[36408,36409,36410],[36411,36412,36413],[36414,36415,36416],[36417,36418,36419],[36420,36421,36422],[36423,36424,36425],[36426,36427,36428],[36429,36430,36431],[36432,36433,36434],[36435,36436,36437],[36438,36439,36440],[36441,36442,36443],[36444,36445,36446],[36447,36448,36449],[36450,36451,36452],[36453,36454,36455],[36456,36457,36458],[36459,36460,36461],[36462,36463,36464],[36465,36466,36467],[36468,36469,36470],[36471,36472,36473],[36474,36475,36476],[36477,36478,36479],[36480,36481,36482],[36483,36484,36485],[36486,36487,36488],[36489,36490,36491],[36492,36493,36494],[36495,36496,36497],[36498,36499,36500],[36501,36502,36503],[36504,36505,36506],[36507,36508,36509],[36510,36511,36512],[36513,36514,36515],[36516,36517,36518],[36519,36520,36521],[36522,36523,36524],[36525,36526,36527],[36528,36529,36530],[36531,36532,36533],[36534,36535,36536],[36537,36538,36539],[36540,36541,36542],[36543,36544,36545],[36546,36547,36548],[36549,36550,36551],[36552,36553,36554],[36555,36556,36557],[36558,36559,36560],[36561,36562,36563],[36564,36565,36566],[36567,36568,36569],[36570,36571,36572],[36573,36574,36575],[36576,36577,36578],[36579,36580,36581],[36582,36583,36584],[36585,36586,36587],[36588,36589,36590],[36591,36592,36593],[36594,36595,36596],[36597,36598,36599],[36600,36601,36602],[36603,36604,36605],[36606,36607,36608],[36609,36610,36611],[36612,36613,36614],[36615,36616,36617],[36618,36619,36620],[36621,36622,36623],[36624,36625,36626],[36627,36628,36629],[36630,36631,36632],[36633,36634,36635],[36636,36637,36638],[36639,36640,36641],[36642,36643,36644],[36645,36646,36647],[36648,36649,36650],[36651,36652,36653],[36654,36655,36656],[36657,36658,36659],[36660,36661,36662],[36663,36664,36665],[36666,36667,36668],[36669,36670,36671],[36672,36673,36674],[36675,36676,36677],[36678,36679,36680],[36681,36682,36683],[36684,36685,36686],[36687,36688,36689],[36690,36691,36692],[36693,36694,36695],[36696,36697,36698],[36699,36700,36701],[36702,36703,36704],[36705,36706,36707],[36708,36709,36710],[36711,36712,36713],[36714,36715,36716],[36717,36718,36719],[36720,36721,36722],[36723,36724,36725],[36726,36727,36728],[36729,36730,36731],[36732,36733,36734],[36735,36736,36737],[36738,36739,36740],[36741,36742,36743],[36744,36745,36746],[36747,36748,36749],[36750,36751,36752],[36753,36754,36755],[36756,36757,36758],[36759,36760,36761],[36762,36763,36764],[36765,36766,36767],[36768,36769,36770],[36771,36772,36773],[36774,36775,36776],[36777,36778,36779],[36780,36781,36782],[36783,36784,36785],[36786,36787,36788],[36789,36790,36791],[36792,36793,36794],[36795,36796,36797],[36798,36799,36800],[36801,36802,36803],[36804,36805,36806],[36807,36808,36809],[36810,36811,36812],[36813,36814,36815],[36816,36817,36818],[36819,36820,36821],[36822,36823,36824],[36825,36826,36827],[36828,36829,36830],[36831,36832,36833],[36834,36835,36836],[36837,36838,36839],[36840,36841,36842],[36843,36844,36845],[36846,36847,36848],[36849,36850,36851],[36852,36853,36854],[36855,36856,36857],[36858,36859,36860],[36861,36862,36863],[36864,36865,36866],[36867,36868,36869],[36870,36871,36872],[36873,36874,36875],[36876,36877,36878],[36879,36880,36881],[36882,36883,36884],[36885,36886,36887],[36888,36889,36890],[36891,36892,36893],[36894,36895,36896],[36897,36898,36899],[36900,36901,36902],[36903,36904,36905],[36906,36907,36908],[36909,36910,36911],[36912,36913,36914],[36915,36916,36917],[36918,36919,36920],[36921,36922,36923],[36924,36925,36926],[36927,36928,36929],[36930,36931,36932],[36933,36934,36935],[36936,36937,36938],[36939,36940,36941],[36942,36943,36944],[36945,36946,36947],[36948,36949,36950],[36951,36952,36953],[36954,36955,36956],[36957,36958,36959],[36960,36961,36962],[36963,36964,36965],[36966,36967,36968],[36969,36970,36971],[36972,36973,36974],[36975,36976,36977],[36978,36979,36980],[36981,36982,36983],[36984,36985,36986],[36987,36988,36989],[36990,36991,36992],[36993,36994,36995],[36996,36997,36998],[36999,37000,37001],[37002,37003,37004],[37005,37006,37007],[37008,37009,37010],[37011,37012,37013],[37014,37015,37016],[37017,37018,37019],[37020,37021,37022],[37023,37024,37025],[37026,37027,37028],[37029,37030,37031],[37032,37033,37034],[37035,37036,37037],[37038,37039,37040],[37041,37042,37043],[37044,37045,37046],[37047,37048,37049],[37050,37051,37052],[37053,37054,37055],[37056,37057,37058],[37059,37060,37061],[37062,37063,37064],[37065,37066,37067],[37068,37069,37070],[37071,37072,37073],[37074,37075,37076],[37077,37078,37079],[37080,37081,37082],[37083,37084,37085],[37086,37087,37088],[37089,37090,37091],[37092,37093,37094],[37095,37096,37097],[37098,37099,37100],[37101,37102,37103],[37104,37105,37106],[37107,37108,37109],[37110,37111,37112],[37113,37114,37115],[37116,37117,37118],[37119,37120,37121],[37122,37123,37124],[37125,37126,37127],[37128,37129,37130],[37131,37132,37133],[37134,37135,37136],[37137,37138,37139],[37140,37141,37142],[37143,37144,37145],[37146,37147,37148],[37149,37150,37151],[37152,37153,37154],[37155,37156,37157],[37158,37159,37160],[37161,37162,37163],[37164,37165,37166],[37167,37168,37169],[37170,37171,37172],[37173,37174,37175],[37176,37177,37178],[37179,37180,37181],[37182,37183,37184],[37185,37186,37187],[37188,37189,37190],[37191,37192,37193],[37194,37195,37196],[37197,37198,37199],[37200,37201,37202],[37203,37204,37205],[37206,37207,37208],[37209,37210,37211],[37212,37213,37214],[37215,37216,37217],[37218,37219,37220],[37221,37222,37223],[37224,37225,37226],[37227,37228,37229],[37230,37231,37232],[37233,37234,37235],[37236,37237,37238],[37239,37240,37241],[37242,37243,37244],[37245,37246,37247],[37248,37249,37250],[37251,37252,37253],[37254,37255,37256],[37257,37258,37259],[37260,37261,37262],[37263,37264,37265],[37266,37267,37268],[37269,37270,37271],[37272,37273,37274],[37275,37276,37277],[37278,37279,37280],[37281,37282,37283],[37284,37285,37286],[37287,37288,37289],[37290,37291,37292],[37293,37294,37295],[37296,37297,37298],[37299,37300,37301],[37302,37303,37304],[37305,37306,37307],[37308,37309,37310],[37311,37312,37313],[37314,37315,37316],[37317,37318,37319],[37320,37321,37322],[37323,37324,37325],[37326,37327,37328],[37329,37330,37331],[37332,37333,37334],[37335,37336,37337],[37338,37339,37340],[37341,37342,37343],[37344,37345,37346],[37347,37348,37349],[37350,37351,37352],[37353,37354,37355],[37356,37357,37358],[37359,37360,37361],[37362,37363,37364],[37365,37366,37367],[37368,37369,37370],[37371,37372,37373],[37374,37375,37376],[37377,37378,37379],[37380,37381,37382],[37383,37384,37385],[37386,37387,37388],[37389,37390,37391],[37392,37393,37394],[37395,37396,37397],[37398,37399,37400],[37401,37402,37403],[37404,37405,37406],[37407,37408,37409],[37410,37411,37412],[37413,37414,37415],[37416,37417,37418],[37419,37420,37421],[37422,37423,37424],[37425,37426,37427],[37428,37429,37430],[37431,37432,37433],[37434,37435,37436],[37437,37438,37439],[37440,37441,37442],[37443,37444,37445],[37446,37447,37448],[37449,37450,37451],[37452,37453,37454],[37455,37456,37457],[37458,37459,37460],[37461,37462,37463],[37464,37465,37466],[37467,37468,37469],[37470,37471,37472],[37473,37474,37475],[37476,37477,37478],[37479,37480,37481],[37482,37483,37484],[37485,37486,37487],[37488,37489,37490],[37491,37492,37493],[37494,37495,37496],[37497,37498,37499],[37500,37501,37502],[37503,37504,37505],[37506,37507,37508],[37509,37510,37511],[37512,37513,37514],[37515,37516,37517],[37518,37519,37520],[37521,37522,37523],[37524,37525,37526],[37527,37528,37529],[37530,37531,37532],[37533,37534,37535],[37536,37537,37538],[37539,37540,37541],[37542,37543,37544],[37545,37546,37547],[37548,37549,37550],[37551,37552,37553],[37554,37555,37556],[37557,37558,37559],[37560,37561,37562],[37563,37564,37565],[37566,37567,37568],[37569,37570,37571],[37572,37573,37574],[37575,37576,37577],[37578,37579,37580],[37581,37582,37583],[37584,37585,37586],[37587,37588,37589],[37590,37591,37592],[37593,37594,37595],[37596,37597,37598],[37599,37600,37601],[37602,37603,37604],[37605,37606,37607],[37608,37609,37610],[37611,37612,37613],[37614,37615,37616],[37617,37618,37619],[37620,37621,37622],[37623,37624,37625],[37626,37627,37628],[37629,37630,37631],[37632,37633,37634],[37635,37636,37637],[37638,37639,37640],[37641,37642,37643],[37644,37645,37646],[37647,37648,37649],[37650,37651,37652],[37653,37654,37655],[37656,37657,37658],[37659,37660,37661],[37662,37663,37664],[37665,37666,37667],[37668,37669,37670],[37671,37672,37673],[37674,37675,37676],[37677,37678,37679],[37680,37681,37682],[37683,37684,37685],[37686,37687,37688],[37689,37690,37691],[37692,37693,37694],[37695,37696,37697],[37698,37699,37700],[37701,37702,37703],[37704,37705,37706],[37707,37708,37709],[37710,37711,37712],[37713,37714,37715],[37716,37717,37718],[37719,37720,37721],[37722,37723,37724],[37725,37726,37727],[37728,37729,37730],[37731,37732,37733],[37734,37735,37736],[37737,37738,37739],[37740,37741,37742],[37743,37744,37745],[37746,37747,37748],[37749,37750,37751],[37752,37753,37754],[37755,37756,37757],[37758,37759,37760],[37761,37762,37763],[37764,37765,37766],[37767,37768,37769],[37770,37771,37772],[37773,37774,37775],[37776,37777,37778],[37779,37780,37781],[37782,37783,37784],[37785,37786,37787],[37788,37789,37790],[37791,37792,37793],[37794,37795,37796],[37797,37798,37799],[37800,37801,37802],[37803,37804,37805],[37806,37807,37808],[37809,37810,37811],[37812,37813,37814],[37815,37816,37817],[37818,37819,37820],[37821,37822,37823],[37824,37825,37826],[37827,37828,37829],[37830,37831,37832],[37833,37834,37835],[37836,37837,37838],[37839,37840,37841],[37842,37843,37844],[37845,37846,37847],[37848,37849,37850],[37851,37852,37853],[37854,37855,37856],[37857,37858,37859],[37860,37861,37862],[37863,37864,37865],[37866,37867,37868],[37869,37870,37871],[37872,37873,37874],[37875,37876,37877],[37878,37879,37880],[37881,37882,37883],[37884,37885,37886],[37887,37888,37889],[37890,37891,37892],[37893,37894,37895],[37896,37897,37898],[37899,37900,37901],[37902,37903,37904],[37905,37906,37907],[37908,37909,37910],[37911,37912,37913],[37914,37915,37916],[37917,37918,37919],[37920,37921,37922],[37923,37924,37925],[37926,37927,37928],[37929,37930,37931],[37932,37933,37934],[37935,37936,37937],[37938,37939,37940],[37941,37942,37943],[37944,37945,37946],[37947,37948,37949],[37950,37951,37952],[37953,37954,37955],[37956,37957,37958],[37959,37960,37961],[37962,37963,37964],[37965,37966,37967],[37968,37969,37970],[37971,37972,37973],[37974,37975,37976],[37977,37978,37979],[37980,37981,37982],[37983,37984,37985],[37986,37987,37988],[37989,37990,37991],[37992,37993,37994],[37995,37996,37997],[37998,37999,38000],[38001,38002,38003],[38004,38005,38006],[38007,38008,38009],[38010,38011,38012],[38013,38014,38015],[38016,38017,38018],[38019,38020,38021],[38022,38023,38024],[38025,38026,38027],[38028,38029,38030],[38031,38032,38033],[38034,38035,38036],[38037,38038,38039],[38040,38041,38042],[38043,38044,38045],[38046,38047,38048],[38049,38050,38051],[38052,38053,38054],[38055,38056,38057],[38058,38059,38060],[38061,38062,38063],[38064,38065,38066],[38067,38068,38069],[38070,38071,38072],[38073,38074,38075],[38076,38077,38078],[38079,38080,38081],[38082,38083,38084],[38085,38086,38087],[38088,38089,38090],[38091,38092,38093],[38094,38095,38096],[38097,38098,38099],[38100,38101,38102],[38103,38104,38105],[38106,38107,38108],[38109,38110,38111],[38112,38113,38114],[38115,38116,38117],[38118,38119,38120],[38121,38122,38123],[38124,38125,38126],[38127,38128,38129],[38130,38131,38132],[38133,38134,38135],[38136,38137,38138],[38139,38140,38141],[38142,38143,38144],[38145,38146,38147],[38148,38149,38150],[38151,38152,38153],[38154,38155,38156],[38157,38158,38159],[38160,38161,38162],[38163,38164,38165],[38166,38167,38168],[38169,38170,38171],[38172,38173,38174],[38175,38176,38177],[38178,38179,38180],[38181,38182,38183],[38184,38185,38186],[38187,38188,38189],[38190,38191,38192],[38193,38194,38195],[38196,38197,38198],[38199,38200,38201],[38202,38203,38204],[38205,38206,38207],[38208,38209,38210],[38211,38212,38213],[38214,38215,38216],[38217,38218,38219],[38220,38221,38222],[38223,38224,38225],[38226,38227,38228],[38229,38230,38231],[38232,38233,38234],[38235,38236,38237],[38238,38239,38240],[38241,38242,38243],[38244,38245,38246],[38247,38248,38249],[38250,38251,38252],[38253,38254,38255],[38256,38257,38258],[38259,38260,38261],[38262,38263,38264],[38265,38266,38267],[38268,38269,38270],[38271,38272,38273],[38274,38275,38276],[38277,38278,38279],[38280,38281,38282],[38283,38284,38285],[38286,38287,38288],[38289,38290,38291],[38292,38293,38294],[38295,38296,38297],[38298,38299,38300],[38301,38302,38303],[38304,38305,38306],[38307,38308,38309],[38310,38311,38312],[38313,38314,38315],[38316,38317,38318],[38319,38320,38321],[38322,38323,38324],[38325,38326,38327],[38328,38329,38330],[38331,38332,38333],[38334,38335,38336],[38337,38338,38339],[38340,38341,38342],[38343,38344,38345],[38346,38347,38348],[38349,38350,38351],[38352,38353,38354],[38355,38356,38357],[38358,38359,38360],[38361,38362,38363],[38364,38365,38366],[38367,38368,38369],[38370,38371,38372],[38373,38374,38375],[38376,38377,38378],[38379,38380,38381],[38382,38383,38384],[38385,38386,38387],[38388,38389,38390],[38391,38392,38393],[38394,38395,38396],[38397,38398,38399],[38400,38401,38402],[38403,38404,38405],[38406,38407,38408],[38409,38410,38411],[38412,38413,38414],[38415,38416,38417],[38418,38419,38420],[38421,38422,38423],[38424,38425,38426],[38427,38428,38429],[38430,38431,38432],[38433,38434,38435],[38436,38437,38438],[38439,38440,38441],[38442,38443,38444],[38445,38446,38447],[38448,38449,38450],[38451,38452,38453],[38454,38455,38456],[38457,38458,38459],[38460,38461,38462],[38463,38464,38465],[38466,38467,38468],[38469,38470,38471],[38472,38473,38474],[38475,38476,38477],[38478,38479,38480],[38481,38482,38483],[38484,38485,38486],[38487,38488,38489],[38490,38491,38492],[38493,38494,38495],[38496,38497,38498],[38499,38500,38501],[38502,38503,38504],[38505,38506,38507],[38508,38509,38510],[38511,38512,38513],[38514,38515,38516],[38517,38518,38519],[38520,38521,38522],[38523,38524,38525],[38526,38527,38528],[38529,38530,38531],[38532,38533,38534],[38535,38536,38537],[38538,38539,38540],[38541,38542,38543],[38544,38545,38546],[38547,38548,38549],[38550,38551,38552],[38553,38554,38555],[38556,38557,38558],[38559,38560,38561],[38562,38563,38564],[38565,38566,38567],[38568,38569,38570],[38571,38572,38573],[38574,38575,38576],[38577,38578,38579],[38580,38581,38582],[38583,38584,38585],[38586,38587,38588],[38589,38590,38591],[38592,38593,38594],[38595,38596,38597],[38598,38599,38600],[38601,38602,38603],[38604,38605,38606],[38607,38608,38609],[38610,38611,38612],[38613,38614,38615],[38616,38617,38618],[38619,38620,38621],[38622,38623,38624],[38625,38626,38627],[38628,38629,38630],[38631,38632,38633],[38634,38635,38636],[38637,38638,38639],[38640,38641,38642],[38643,38644,38645],[38646,38647,38648],[38649,38650,38651],[38652,38653,38654],[38655,38656,38657],[38658,38659,38660],[38661,38662,38663],[38664,38665,38666],[38667,38668,38669],[38670,38671,38672],[38673,38674,38675],[38676,38677,38678],[38679,38680,38681],[38682,38683,38684],[38685,38686,38687],[38688,38689,38690],[38691,38692,38693],[38694,38695,38696],[38697,38698,38699],[38700,38701,38702],[38703,38704,38705],[38706,38707,38708],[38709,38710,38711],[38712,38713,38714],[38715,38716,38717],[38718,38719,38720],[38721,38722,38723],[38724,38725,38726],[38727,38728,38729],[38730,38731,38732],[38733,38734,38735],[38736,38737,38738],[38739,38740,38741],[38742,38743,38744],[38745,38746,38747],[38748,38749,38750],[38751,38752,38753],[38754,38755,38756],[38757,38758,38759],[38760,38761,38762],[38763,38764,38765],[38766,38767,38768],[38769,38770,38771],[38772,38773,38774],[38775,38776,38777],[38778,38779,38780],[38781,38782,38783],[38784,38785,38786],[38787,38788,38789],[38790,38791,38792],[38793,38794,38795],[38796,38797,38798],[38799,38800,38801],[38802,38803,38804],[38805,38806,38807],[38808,38809,38810],[38811,38812,38813],[38814,38815,38816],[38817,38818,38819],[38820,38821,38822],[38823,38824,38825],[38826,38827,38828],[38829,38830,38831],[38832,38833,38834],[38835,38836,38837],[38838,38839,38840],[38841,38842,38843],[38844,38845,38846],[38847,38848,38849],[38850,38851,38852],[38853,38854,38855],[38856,38857,38858],[38859,38860,38861],[38862,38863,38864],[38865,38866,38867],[38868,38869,38870],[38871,38872,38873],[38874,38875,38876],[38877,38878,38879],[38880,38881,38882],[38883,38884,38885],[38886,38887,38888],[38889,38890,38891],[38892,38893,38894],[38895,38896,38897],[38898,38899,38900],[38901,38902,38903],[38904,38905,38906],[38907,38908,38909],[38910,38911,38912],[38913,38914,38915],[38916,38917,38918],[38919,38920,38921],[38922,38923,38924],[38925,38926,38927],[38928,38929,38930],[38931,38932,38933],[38934,38935,38936],[38937,38938,38939],[38940,38941,38942],[38943,38944,38945],[38946,38947,38948],[38949,38950,38951],[38952,38953,38954],[38955,38956,38957],[38958,38959,38960],[38961,38962,38963],[38964,38965,38966],[38967,38968,38969],[38970,38971,38972],[38973,38974,38975],[38976,38977,38978],[38979,38980,38981],[38982,38983,38984],[38985,38986,38987],[38988,38989,38990],[38991,38992,38993],[38994,38995,38996],[38997,38998,38999],[39000,39001,39002],[39003,39004,39005],[39006,39007,39008],[39009,39010,39011],[39012,39013,39014],[39015,39016,39017],[39018,39019,39020],[39021,39022,39023],[39024,39025,39026],[39027,39028,39029],[39030,39031,39032],[39033,39034,39035],[39036,39037,39038],[39039,39040,39041],[39042,39043,39044],[39045,39046,39047],[39048,39049,39050],[39051,39052,39053],[39054,39055,39056],[39057,39058,39059],[39060,39061,39062],[39063,39064,39065],[39066,39067,39068],[39069,39070,39071],[39072,39073,39074],[39075,39076,39077],[39078,39079,39080],[39081,39082,39083],[39084,39085,39086],[39087,39088,39089],[39090,39091,39092],[39093,39094,39095],[39096,39097,39098],[39099,39100,39101],[39102,39103,39104],[39105,39106,39107],[39108,39109,39110],[39111,39112,39113],[39114,39115,39116],[39117,39118,39119],[39120,39121,39122],[39123,39124,39125],[39126,39127,39128],[39129,39130,39131],[39132,39133,39134],[39135,39136,39137],[39138,39139,39140],[39141,39142,39143],[39144,39145,39146],[39147,39148,39149],[39150,39151,39152],[39153,39154,39155],[39156,39157,39158],[39159,39160,39161],[39162,39163,39164],[39165,39166,39167],[39168,39169,39170],[39171,39172,39173],[39174,39175,39176],[39177,39178,39179],[39180,39181,39182],[39183,39184,39185],[39186,39187,39188],[39189,39190,39191],[39192,39193,39194],[39195,39196,39197],[39198,39199,39200],[39201,39202,39203],[39204,39205,39206],[39207,39208,39209],[39210,39211,39212],[39213,39214,39215],[39216,39217,39218],[39219,39220,39221],[39222,39223,39224],[39225,39226,39227],[39228,39229,39230],[39231,39232,39233],[39234,39235,39236],[39237,39238,39239],[39240,39241,39242],[39243,39244,39245],[39246,39247,39248],[39249,39250,39251],[39252,39253,39254],[39255,39256,39257],[39258,39259,39260],[39261,39262,39263],[39264,39265,39266],[39267,39268,39269],[39270,39271,39272],[39273,39274,39275],[39276,39277,39278],[39279,39280,39281],[39282,39283,39284],[39285,39286,39287],[39288,39289,39290],[39291,39292,39293],[39294,39295,39296],[39297,39298,39299],[39300,39301,39302],[39303,39304,39305],[39306,39307,39308],[39309,39310,39311],[39312,39313,39314],[39315,39316,39317],[39318,39319,39320],[39321,39322,39323],[39324,39325,39326],[39327,39328,39329],[39330,39331,39332],[39333,39334,39335],[39336,39337,39338],[39339,39340,39341],[39342,39343,39344],[39345,39346,39347],[39348,39349,39350],[39351,39352,39353],[39354,39355,39356],[39357,39358,39359],[39360,39361,39362],[39363,39364,39365],[39366,39367,39368],[39369,39370,39371],[39372,39373,39374],[39375,39376,39377],[39378,39379,39380],[39381,39382,39383],[39384,39385,39386],[39387,39388,39389],[39390,39391,39392],[39393,39394,39395],[39396,39397,39398],[39399,39400,39401],[39402,39403,39404],[39405,39406,39407],[39408,39409,39410],[39411,39412,39413],[39414,39415,39416],[39417,39418,39419],[39420,39421,39422],[39423,39424,39425],[39426,39427,39428],[39429,39430,39431],[39432,39433,39434],[39435,39436,39437],[39438,39439,39440],[39441,39442,39443],[39444,39445,39446],[39447,39448,39449],[39450,39451,39452],[39453,39454,39455],[39456,39457,39458],[39459,39460,39461],[39462,39463,39464],[39465,39466,39467],[39468,39469,39470],[39471,39472,39473],[39474,39475,39476],[39477,39478,39479],[39480,39481,39482],[39483,39484,39485],[39486,39487,39488],[39489,39490,39491],[39492,39493,39494],[39495,39496,39497],[39498,39499,39500],[39501,39502,39503],[39504,39505,39506],[39507,39508,39509],[39510,39511,39512],[39513,39514,39515],[39516,39517,39518],[39519,39520,39521],[39522,39523,39524],[39525,39526,39527],[39528,39529,39530],[39531,39532,39533],[39534,39535,39536],[39537,39538,39539],[39540,39541,39542],[39543,39544,39545],[39546,39547,39548],[39549,39550,39551],[39552,39553,39554],[39555,39556,39557],[39558,39559,39560],[39561,39562,39563],[39564,39565,39566],[39567,39568,39569],[39570,39571,39572],[39573,39574,39575],[39576,39577,39578],[39579,39580,39581],[39582,39583,39584],[39585,39586,39587],[39588,39589,39590],[39591,39592,39593],[39594,39595,39596],[39597,39598,39599],[39600,39601,39602],[39603,39604,39605],[39606,39607,39608],[39609,39610,39611],[39612,39613,39614],[39615,39616,39617],[39618,39619,39620],[39621,39622,39623],[39624,39625,39626],[39627,39628,39629],[39630,39631,39632],[39633,39634,39635],[39636,39637,39638],[39639,39640,39641],[39642,39643,39644],[39645,39646,39647],[39648,39649,39650],[39651,39652,39653],[39654,39655,39656],[39657,39658,39659],[39660,39661,39662],[39663,39664,39665],[39666,39667,39668],[39669,39670,39671],[39672,39673,39674],[39675,39676,39677],[39678,39679,39680],[39681,39682,39683],[39684,39685,39686],[39687,39688,39689],[39690,39691,39692],[39693,39694,39695],[39696,39697,39698],[39699,39700,39701],[39702,39703,39704],[39705,39706,39707],[39708,39709,39710],[39711,39712,39713],[39714,39715,39716],[39717,39718,39719],[39720,39721,39722],[39723,39724,39725],[39726,39727,39728],[39729,39730,39731],[39732,39733,39734],[39735,39736,39737],[39738,39739,39740],[39741,39742,39743],[39744,39745,39746],[39747,39748,39749],[39750,39751,39752],[39753,39754,39755]]);}