diff --git a/new-process.py b/new-process.py index 44a5eaa..0565b02 100644 --- a/new-process.py +++ b/new-process.py @@ -7,6 +7,7 @@ import subprocess import wave as wv import struct import librosa +import heapq print("Starting...\n") @@ -23,7 +24,7 @@ def fct(song_name, offset, increment, songlen, maxfreq, display): sample_rate, audio_data = wavfile.read('crop.wav') size = audio_data.size - subprocess.run(["clear"]) + #subprocess.run(["clear"]) subprocess.run(["rm", "crop.wav"]) # do stuff here @@ -87,7 +88,7 @@ def plot_max(time, freq, Zxx, save): fres = [0 for x in range(len(time))] maxres = [0 for x in range(len(time))] for t in range(len(time)): - subprocess.run(["clear"]) + #subprocess.run(["clear"]) print(t, "/", len(time)) for f in range(len(Zxx)): if(maxres[t] < Zxx[f][t]): @@ -117,11 +118,251 @@ def plot_max(time, freq, Zxx, save): plt.show() -t, f, Zxx = fct("worlds_end_3.wav", 160.889, 0.032, 170.889, 3000, False) -#t, f, Zxx = fct("changing.wav", 0, 0.05, 3.9, 5000) -#fct("worlds_end_3.wav", 75, (60/178)/4, 75+2, 2500) +def extract_peaks(song_data, sample_rate, offset, display, threshold): + mx = max(song_data) + for i in range(len(song_data)): + #subprocess.run(["clear"]) + print(i, "/", len(song_data)) + if(song_data[i]/mx < threshold): + song_data[i] = 0 + t = [offset + i/sample_rate for i in range(len(song_data))] -plot_max(t, f, Zxx, True) + if(display): + plt.plot(t, song_data, 'b+') + plt.grid() + plt.xlabel("t") + plt.ylabel("amp") + plt.show() + + return (t, song_data) + +def get_local_max(song_data, center, width): + mx = 0 + for o in range(-width, width+1): + togo = min(len(song_data)-1, center+o) + togo = max(0, togo) + if(mx < song_data[togo]): + mx = song_data[togo] + return mx + +def extract_peaks_v2(song_data, sample_rate, offset, display, threshold, seglen): + mx = 0 + for i in range(len(song_data)): + if (i%seglen == 0): + print("----") + mx = get_local_max(song_data, i+seglen//2, seglen//2) + #subprocess.run(["clear"]) + print(i, "/", len(song_data)) + if(song_data[i]/mx < threshold): + song_data[i] = 0 + + t = [offset + i/sample_rate for i in range(len(song_data))] + + if(display): + plt.plot(t, song_data, 'b+') + plt.grid() + plt.xlabel("t") + plt.ylabel("amp") + plt.show() + + return (t, song_data) + +def peaks(song_name, offset, length, display, thr): + subprocess.run(["ffmpeg", "-ss", str(offset), "-t", str(length), "-i", song_name, "crop.wav"]) + + sample_rate, audio_data = wavfile.read('crop.wav') + + subprocess.run(["clear"]) + subprocess.run(["rm", "crop.wav"]) + + #return extract_peaks(audio_data, sample_rate, offset, display, thr) + return extract_peaks_v2(audio_data, sample_rate, offset, display, thr, 44100*2) + +def find_bpm(sample_rate, data, minbpm, maxbpm, step, width): + optimal = minbpm + optimal_acc = 0 + accuracy = 0 + + bpmlst = [] + scores = [] + + for beat in range(minbpm, maxbpm+step, step): + loopturn = 0 + print("testing", beat) + accuracy = 0 + current = 0 + + while(current+width < len(data)): + loopturn += 1 + for o in range(-width, width+1): + accuracy += data[current + o] + #current = (loopturn*sample_rate)//beat + current += (sample_rate)//beat + + #accuracy = accuracy/loopturn + + #accuracy *= (1+(maxbpm-beat)/minbpm) + if optimal_acc < accuracy: + optimal_acc = accuracy + optimal = beat + bpmlst.append(beat) + scores.append(accuracy) + + if(True): + plt.plot(bpmlst, scores) + plt.xlabel("BPM") + plt.ylabel("Score") + plt.grid() + plt.show() + + return (optimal, optimal_acc) + +def find_bpm_2(sample_rate, data, threshold, maxbpm): + mx = np.max(data) + min_spacing = (60*sample_rate)/maxbpm + k = 0 + while(k < len(data) and data[k]/mx < threshold): + k += 1 + + k += 1 + spacing = [] + current = 1 + progress = 0 + + while(k < len(data)): + if(k%(len(data)/100) == 0): + print(progress, "%") + progress += 1 + if(data[k]/mx >= threshold and current > min_spacing): + spacing.append(current) + current = 0 + else: + current += 1 + k += 1 -print("Program finished with return 0") \ No newline at end of file + for x in range(len(spacing)): + spacing[x] = 60/(spacing[x]/sample_rate) + + digits = [i for i in range(len(spacing))] + if(True): + plt.plot(digits, spacing) + plt.xlabel("N") + plt.ylabel("BPM") + plt.grid() + plt.show() + + beat = np.mean(spacing) + error = np.std(spacing) + + return (np.round(beat, 3), np.round(error, 3)) + +def filter_n_percent(song_name, offset, length, threshold): + # threshold is in ]0, 100] + + subprocess.run(["ffmpeg", "-ss", str(offset), "-t", str(length), "-i", song_name, "crop.wav"]) + + sample_rate, song_data = wavfile.read('crop.wav') + + subprocess.run(["clear"]) + subprocess.run(["rm", "crop.wav"]) + + is_locked = [False for i in range(len(song_data))] + x = int((len(song_data)*threshold)//100) + print("X = ", x) + + mx = max(song_data) + + print("Retreiving the", int(x), "/", len(song_data), "highest values") + elements = heapq.nlargest(int(x), enumerate(song_data), key=lambda x: x[1]) + print("Done") + + for idx in range(len(elements)): + is_locked[elements[idx][0]] = True + + for r in range(len(song_data)): + if(is_locked[r] == False): + song_data[r] = 0 + + if(True): + t = [offset + j/sample_rate for j in range(len(song_data))] + plt.plot(t, song_data) + plt.xlabel("Time") + plt.ylabel("Amplitude") + plt.grid() + plt.show() + + return song_data + +if(False): + #t, f, Zxx = fct("no.wav", 0, 0.032, 10, 5000, False) + #t, f, Zxx = fct("worlds_end_3.wav", 150.889, 0.032, 170.889, 3000, False) + #t, f, Zxx = fct("deltamax.wav", 9.992, 0.032, 114.318, 3000, False) + #t, f, Zxx = fct("deltamax.wav", 9.992, 0.032, 20, 3000, False) + #t, f, Zxx = fct("da^9.wav", 8.463, 0.032, 20, 5000, False) + t, f, Zxx = fct("13. Cosmic Mind.wav", 0, 0.032, 20, 5000, False) + #t, f, Zxx = fct("Furioso Melodia 44100.wav", 4, 0.032, 8, 3000, False) + #t, f, Zxx = fct("changing.wav", 0, 0.05, 3.9, 5000, False) + #fct("worlds_end_3.wav", 75, (60/178)/4, 75+2, 2500) + + plot_max(t, f, Zxx, True) + +if(False): + #(t, data) = peaks("worlds_end_3.wav", 0, 300, False, 0.92) + (t, data) = peaks("worlds_end_3.wav", 74.582, 6, False, 0.9) + #(t, data) = peaks("da^9.wav", 8.463, 301.924 - 8.463, False, 0.95) + #(t, data) = peaks("deltamax.wav", 8.463, 30101.924 - 8.463, False, 0.92) + da = find_bpm(t, 44100, data, 100, 200, 1, 10) + print("BPM data is", da) + +if(True): + #data = filter_n_percent("worlds_end_3.wav", 74.582, 20, 0.1) + data = filter_n_percent("no.wav", 1, 10, 0.1) + #da = find_bpm(44100, data, 100, 200, 1, 0) + da = find_bpm_2(44100, data, 0.97, 240) + print("BPM is", da[0], "with std of", da[1]) + +print("Program finished with return 0") + + + + + #data = [-1 for i in range(int(x))] + #ids = [-1 for i in range(int(x))] +''' + data = [] + ids = [] + for k in range(int(x)): + data.append(int(7*mx/10)) + ids.append(-1) + # structure there is [[index, value]...] + + i = 0 + calc = 0 + while(i < len(song_data)): + if(i%10 == 0): + print(i, "/", len(song_data)) + if(data[int(x)-1] < song_data[i]): + calc += 1 + #print("\n \n \n \n \n") + data[int(x)-1] = song_data[i] + ids[int(x)-1] = i + + k = int(x)-1 + #while(k < int(x) & data[0] > data[k]): + while(k > 0 and data[k-1] <= data[k]): + data[k], data[k-1] = data[k-1], data[k] + ids[k], ids[k-1] = ids[k-1], ids[k] + k -= 1 + + #print(data[int(x)-1], calc, "/", x) + + i += skip + i += 1 + + + for s in range(int(x)-1): + if(data[s] < data[s+1]): + print("Nope", s) + assert(0) +''' \ No newline at end of file diff --git a/output.csv b/output.csv index 08920d5..dcb370c 100644 --- a/output.csv +++ b/output.csv @@ -1,1879 +1,3757 @@ time,frequency,maxvalue -160.892,593.8,85033.0 -160.897,593.8,57881.0 -160.902,562.6,157135.0 -160.907,625.1,93490.0 -160.912,625.1,77643.0 -160.917,2250.3,141779.0 -160.924,2219.1,40381.0 -160.929,1000.1,111617.0 -160.934,718.9,75467.0 -160.939,968.9,108363.0 -160.944,1031.4,53374.0 -160.949,718.9,64453.0 -160.956,1000.1,111504.0 -160.961,531.3,150639.0 -160.966,468.8,147661.0 -160.971,781.4,96514.0 -160.976,937.6,84347.0 -160.981,625.1,33944.0 -160.988,968.9,64382.0 -160.993,468.8,121990.0 -160.998,468.8,114197.0 -161.003,1000.1,105418.0 -161.008,812.6,82869.0 -161.013,1031.4,83782.0 -161.02,1031.4,84689.0 -161.025,1062.7,94063.0 -161.03,375.1,145929.0 -161.035,1000.1,96544.0 -161.04,406.3,116131.0 -161.045,1031.4,89754.0 -161.052,1000.1,105902.0 -161.057,1000.1,121022.0 -161.062,375.1,77046.0 -161.067,1000.1,113497.0 -161.072,375.1,93440.0 -161.077,593.8,72782.0 -161.084,531.3,233674.0 -161.089,343.8,656056.0 -161.094,531.3,145202.0 -161.099,500.1,369900.0 -161.104,781.4,119070.0 -161.109,343.8,99857.0 -161.116,500.1,93316.0 -161.121,718.9,98170.0 -161.126,656.3,46641.0 -161.131,468.8,125335.0 -161.136,656.3,62407.0 -161.141,1000.1,75154.0 -161.148,1031.4,64782.0 -161.153,1000.1,136998.0 -161.158,375.1,154252.0 -161.163,1031.4,44831.0 -161.168,1562.7,56474.0 -161.173,406.3,113640.0 -161.18,406.3,90800.0 -161.185,468.8,217293.0 -161.19,1000.1,79157.0 -161.195,1031.4,91790.0 -161.2,968.9,114224.0 -161.205,281.3,71062.0 -161.212,1000.1,93191.0 -161.217,437.6,161402.0 -161.222,468.8,113166.0 -161.227,1000.1,139380.0 -161.232,562.6,73610.0 -161.237,968.9,155971.0 -161.244,968.9,156404.0 -161.249,468.8,182152.0 -161.254,406.3,58082.0 -161.259,718.9,124733.0 -161.264,468.8,268011.0 -161.269,437.6,62299.0 -161.276,968.9,76306.0 -161.281,500.1,50281.0 -161.286,406.3,84927.0 -161.291,468.8,73587.0 -161.296,406.3,333830.0 -161.301,406.3,28897.0 -161.308,312.5,74274.0 -161.313,250.0,89586.0 -161.318,531.3,54012.0 -161.323,437.6,85240.0 -161.328,406.3,100092.0 -161.333,1031.4,70675.0 -161.34,1031.4,104992.0 -161.345,968.9,103213.0 -161.35,1031.4,47176.0 -161.355,437.6,99098.0 -161.36,343.8,124043.0 -161.365,968.9,206137.0 -161.372,1000.1,115897.0 -161.377,343.8,59784.0 -161.382,406.3,28377.0 -161.387,468.8,229991.0 -161.392,1000.1,111740.0 -161.397,1031.4,109504.0 -161.404,281.3,60341.0 -161.409,312.5,105979.0 -161.414,468.8,85632.0 -161.419,437.6,71670.0 -161.424,406.3,1236288.0 -161.429,468.8,156782.0 -161.436,562.6,137493.0 -161.441,343.8,71662.0 -161.446,3469.2,51797.0 -161.451,406.3,286746.0 -161.456,1031.4,73021.0 -161.461,1000.1,51790.0 -161.468,343.8,124834.0 -161.473,1000.1,65945.0 -161.478,500.1,44371.0 -161.483,1031.4,116690.0 -161.488,1062.7,91803.0 -161.493,343.8,119525.0 -161.5,218.8,101538.0 -161.505,250.0,51531.0 -161.51,468.8,185222.0 -161.515,1031.4,145713.0 -161.52,1031.4,126208.0 -161.525,343.8,118388.0 -161.532,1000.1,104266.0 -161.537,1062.7,89355.0 -161.542,1125.2,130326.0 -161.547,1062.7,139934.0 -161.552,1000.1,59067.0 -161.557,343.8,233938.0 -161.564,1031.4,76025.0 -161.569,1031.4,89926.0 -161.574,1031.4,180658.0 -161.579,1031.4,117873.0 -161.584,1031.4,153600.0 -161.589,375.1,142946.0 -161.596,968.9,51466.0 -161.601,468.8,84410.0 -161.606,1000.1,85414.0 -161.611,437.6,100937.0 -161.616,343.8,70725.0 -161.621,437.6,309410.0 -161.628,781.4,60487.0 -161.633,375.1,207694.0 -161.638,968.9,63759.0 -161.643,1031.4,81516.0 -161.648,343.8,166199.0 -161.653,1031.4,21786.0 -161.66,1031.4,185101.0 -161.665,343.8,326789.0 -161.67,1093.9,68059.0 -161.675,406.3,64023.0 -161.68,1031.4,160844.0 -161.685,1031.4,93196.0 -161.692,406.3,138588.0 -161.697,1000.1,204292.0 -161.702,1000.1,96846.0 -161.707,1062.7,117706.0 -161.712,437.6,85994.0 -161.717,718.9,50555.0 -161.724,375.1,116927.0 -161.729,343.8,76675.0 -161.734,968.9,87081.0 -161.739,312.5,123342.0 -161.744,937.6,74637.0 -161.749,968.9,84882.0 -161.756,343.8,171006.0 -161.761,406.3,1934318.0 -161.766,250.0,61109.0 -161.771,343.8,299631.0 -161.776,562.6,108496.0 -161.781,281.3,83404.0 -161.788,343.8,151806.0 -161.793,500.1,103907.0 -161.798,1031.4,73190.0 -161.803,1031.4,184011.0 -161.808,468.8,250369.0 -161.813,343.8,142835.0 -161.82,343.8,170839.0 -161.825,312.5,43120.0 -161.83,312.5,35208.0 -161.835,687.6,33619.0 -161.84,375.1,65503.0 -161.845,375.1,344168.0 -161.852,1000.1,78287.0 -161.857,406.3,159202.0 -161.862,375.1,165755.0 -161.867,1000.1,69456.0 -161.872,1031.4,109440.0 -161.877,375.1,300911.0 -161.884,906.4,122151.0 -161.889,500.1,170972.0 -161.894,406.3,255596.0 -161.899,406.3,164410.0 -161.904,375.1,186088.0 -161.909,343.8,298489.0 -161.916,1000.1,106612.0 -161.921,312.5,63134.0 -161.926,531.3,134184.0 -161.931,437.6,78238.0 -161.936,406.3,44506.0 -161.941,750.1,59261.0 -161.948,687.6,115304.0 -161.953,531.3,27922.0 -161.958,750.1,43208.0 -161.963,750.1,108403.0 -161.968,375.1,105865.0 -161.973,312.5,112758.0 -161.98,437.6,131330.0 -161.985,343.8,119142.0 -161.99,750.1,94689.0 -161.995,781.4,91336.0 -162.0,750.1,69247.0 -162.005,312.5,107589.0 -162.012,500.1,123302.0 -162.017,375.1,130057.0 -162.022,718.9,53532.0 -162.027,750.1,172996.0 -162.032,750.1,122411.0 -162.037,750.1,136342.0 -162.044,750.1,174782.0 -162.049,750.1,185016.0 -162.054,687.6,150325.0 -162.059,718.9,238366.0 -162.064,718.9,159924.0 -162.069,343.8,200699.0 -162.076,750.1,323547.0 -162.081,781.4,125231.0 -162.086,812.6,120977.0 -162.091,812.6,76654.0 -162.096,500.1,502239.0 -162.101,312.5,336818.0 -162.108,812.6,126502.0 -162.113,375.1,239197.0 -162.118,812.6,65686.0 -162.123,406.3,112423.0 -162.128,406.3,170300.0 -162.133,812.6,138369.0 -162.14,750.1,163739.0 -162.145,312.5,119895.0 -162.15,812.6,56709.0 -162.155,718.9,128804.0 -162.16,343.8,102636.0 -162.165,781.4,80802.0 -162.172,375.1,121140.0 -162.177,406.3,135182.0 -162.182,406.3,74154.0 -162.187,1187.7,102063.0 -162.192,468.8,67377.0 -162.197,750.1,109164.0 -162.204,375.1,319588.0 -162.209,343.8,322598.0 -162.214,812.6,150788.0 -162.219,875.1,142359.0 -162.224,375.1,599582.0 -162.229,781.4,91140.0 -162.236,406.3,141861.0 -162.241,750.1,150499.0 -162.246,750.1,159884.0 -162.251,468.8,154534.0 -162.256,437.6,191660.0 -162.261,375.1,599239.0 -162.268,2312.8,77417.0 -162.273,375.1,96768.0 -162.278,406.3,135103.0 -162.283,406.3,260970.0 -162.288,2344.1,59682.0 -162.293,406.3,161379.0 -162.3,375.1,88708.0 -162.305,2344.1,50114.0 -162.31,406.3,73049.0 -162.315,1750.2,45988.0 -162.32,437.6,49440.0 -162.325,375.1,220418.0 -162.332,343.8,102854.0 -162.337,687.6,106310.0 -162.342,468.8,158106.0 -162.347,437.6,66213.0 -162.352,375.1,274487.0 -162.357,312.5,96859.0 -162.364,375.1,139297.0 -162.369,500.1,135530.0 -162.374,2375.3,52475.0 -162.379,343.8,194715.0 -162.384,343.8,337723.0 -162.389,843.9,44167.0 -162.396,437.6,117062.0 -162.401,2344.1,48593.0 -162.406,343.8,196950.0 -162.411,593.8,125326.0 -162.416,625.1,57135.0 -162.421,375.1,153640.0 -162.428,343.8,67136.0 -162.433,531.3,416688.0 -162.438,312.5,356658.0 -162.443,750.1,53507.0 -162.448,343.8,285742.0 -162.453,406.3,94254.0 -162.46,281.3,181502.0 -162.465,375.1,95710.0 -162.47,281.3,84915.0 -162.475,343.8,275173.0 -162.48,406.3,96176.0 -162.485,2375.3,54812.0 -162.492,343.8,131049.0 -162.497,2375.3,74031.0 -162.502,593.8,155186.0 -162.507,343.8,141389.0 -162.512,468.8,110381.0 -162.517,2375.3,86397.0 -162.524,2437.8,63182.0 -162.529,375.1,503083.0 -162.534,2406.6,99005.0 -162.539,2375.3,106162.0 -162.544,375.1,174478.0 -162.549,2406.6,67763.0 -162.556,343.8,277225.0 -162.561,343.8,330246.0 -162.566,2375.3,106729.0 -162.571,312.5,202521.0 -162.576,187.5,47495.0 -162.581,343.8,363923.0 -162.588,343.8,399092.0 -162.593,656.3,47760.0 -162.598,343.8,123898.0 -162.603,625.1,128221.0 -162.608,343.8,347055.0 -162.613,343.8,320945.0 -162.62,406.3,103831.0 -162.625,375.1,147176.0 -162.63,593.8,104206.0 -162.635,343.8,205325.0 -162.64,375.1,308325.0 -162.645,437.6,166890.0 -162.652,2375.3,91440.0 -162.657,2406.6,125768.0 -162.662,375.1,297732.0 -162.667,343.8,226360.0 -162.672,406.3,161874.0 -162.677,312.5,94117.0 -162.684,343.8,79070.0 -162.689,375.1,214764.0 -162.694,343.8,105318.0 -162.699,718.9,85848.0 -162.704,343.8,71474.0 -162.709,312.5,43941.0 -162.716,343.8,340300.0 -162.721,312.5,433372.0 -162.726,1250.2,43616.0 -162.731,593.8,72815.0 -162.736,593.8,95150.0 -162.741,375.1,76421.0 -162.748,687.6,153623.0 -162.753,656.3,94313.0 -162.758,593.8,104893.0 -162.763,593.8,74540.0 -162.768,218.8,67739.0 -162.773,375.1,1220361.0 -162.78,593.8,313894.0 -162.785,531.3,368698.0 -162.79,593.8,207450.0 -162.795,406.3,41748.0 -162.8,562.6,106215.0 -162.805,437.6,91638.0 -162.812,312.5,100796.0 -162.817,562.6,287401.0 -162.822,562.6,96333.0 -162.827,343.8,239296.0 -162.832,375.1,241940.0 -162.837,593.8,259913.0 -162.844,500.1,135597.0 -162.849,531.3,136291.0 -162.854,375.1,89511.0 -162.859,375.1,135821.0 -162.864,375.1,109146.0 -162.869,343.8,231590.0 -162.876,343.8,118596.0 -162.881,343.8,311489.0 -162.886,343.8,145603.0 -162.891,593.8,49339.0 -162.896,343.8,220926.0 -162.901,1187.7,47600.0 -162.908,281.3,101982.0 -162.913,375.1,279360.0 -162.918,468.8,123803.0 -162.923,312.5,154142.0 -162.928,343.8,151633.0 -162.933,312.5,68288.0 -162.94,375.1,213837.0 -162.945,437.6,104276.0 -162.95,562.6,85111.0 -162.955,375.1,78032.0 -162.96,1187.7,79117.0 -162.965,343.8,166481.0 -162.972,593.8,65310.0 -162.977,343.8,233492.0 -162.982,531.3,118217.0 -162.987,250.0,100856.0 -162.992,343.8,280235.0 -162.997,687.6,95890.0 -163.004,250.0,119574.0 -163.009,375.1,219669.0 -163.014,593.8,215507.0 -163.019,343.8,165341.0 -163.024,562.6,45180.0 -163.029,312.5,103763.0 -163.036,562.6,69153.0 -163.041,593.8,60586.0 -163.046,343.8,81359.0 -163.051,625.1,94632.0 -163.056,312.5,83962.0 -163.061,343.8,144194.0 -163.068,562.6,120785.0 -163.073,343.8,210568.0 -163.078,562.6,120794.0 -163.083,593.8,54258.0 -163.088,500.1,80964.0 -163.093,562.6,74998.0 -163.1,375.1,188038.0 -163.105,531.3,113097.0 -163.11,406.3,1350381.0 -163.115,562.6,228667.0 -163.12,312.5,146249.0 -163.125,343.8,45427.0 -163.132,625.1,111531.0 -163.137,406.3,143711.0 -163.142,406.3,120612.0 -163.147,343.8,265784.0 -163.152,312.5,313958.0 -163.157,625.1,277197.0 -163.164,593.8,158343.0 -163.169,593.8,123724.0 -163.174,656.3,163849.0 -163.179,343.8,224428.0 -163.184,375.1,155018.0 -163.189,593.8,118503.0 -163.196,593.8,164964.0 -163.201,687.6,146150.0 -163.206,312.5,149439.0 -163.211,375.1,215324.0 -163.216,625.1,121309.0 -163.221,312.5,130497.0 -163.228,218.8,88293.0 -163.233,312.5,286402.0 -163.238,312.5,273136.0 -163.243,312.5,108801.0 -163.248,593.8,137812.0 -163.253,312.5,74996.0 -163.26,281.3,158765.0 -163.265,593.8,173893.0 -163.27,281.3,154350.0 -163.275,312.5,152079.0 -163.28,250.0,75327.0 -163.285,250.0,104933.0 -163.292,343.8,137468.0 -163.297,281.3,121518.0 -163.302,250.0,117349.0 -163.307,343.8,155728.0 -163.312,312.5,60443.0 -163.317,312.5,165738.0 -163.324,250.0,120705.0 -163.329,312.5,71344.0 -163.334,375.1,98308.0 -163.339,343.8,44276.0 -163.344,312.5,93766.0 -163.349,1093.9,47357.0 -163.356,375.1,53039.0 -163.361,2219.1,72521.0 -163.366,406.3,63632.0 -163.371,343.8,59043.0 -163.376,2250.3,67419.0 -163.381,718.9,51799.0 -163.388,812.6,35543.0 -163.393,281.3,37386.0 -163.398,343.8,127917.0 -163.403,375.1,91634.0 -163.408,2219.1,85915.0 -163.413,2250.3,89645.0 -163.42,2219.1,105417.0 -163.425,343.8,107229.0 -163.43,343.8,179176.0 -163.435,2219.1,70919.0 -163.44,2250.3,163089.0 -163.445,406.3,1166391.0 -163.452,312.5,281123.0 -163.457,343.8,231693.0 -163.462,343.8,113401.0 -163.467,343.8,330516.0 -163.472,812.6,79848.0 -163.477,406.3,220146.0 -163.484,750.1,126988.0 -163.489,437.6,130113.0 -163.494,437.6,120972.0 -163.499,750.1,131494.0 -163.504,750.1,73798.0 -163.509,750.1,161529.0 -163.516,812.6,110702.0 -163.521,406.3,121191.0 -163.526,718.9,71268.0 -163.531,437.6,79318.0 -163.536,187.5,61611.0 -163.541,375.1,304448.0 -163.548,687.6,81943.0 -163.553,406.3,88336.0 -163.558,750.1,184912.0 -163.563,375.1,292375.0 -163.568,687.6,93247.0 -163.573,312.5,137750.0 -163.58,406.3,86401.0 -163.585,750.1,141858.0 -163.59,375.1,164766.0 -163.595,312.5,173214.0 -163.6,312.5,122349.0 -163.605,343.8,50868.0 -163.612,500.1,71972.0 -163.617,375.1,128124.0 -163.622,468.8,74563.0 -163.627,406.3,165624.0 -163.632,687.6,38080.0 -163.637,593.8,119446.0 -163.644,437.6,119110.0 -163.649,312.5,119684.0 -163.654,593.8,96044.0 -163.659,562.6,174424.0 -163.664,312.5,62368.0 -163.669,406.3,131538.0 -163.676,750.1,76412.0 -163.681,593.8,129314.0 -163.686,375.1,114737.0 -163.691,343.8,154143.0 -163.696,562.6,69568.0 -163.701,875.1,51021.0 -163.708,593.8,146305.0 -163.713,468.8,120790.0 -163.718,500.1,98791.0 -163.723,437.6,72377.0 -163.728,593.8,112557.0 -163.733,312.5,51487.0 -163.74,625.1,143388.0 -163.745,437.6,97080.0 -163.75,500.1,106674.0 -163.755,656.3,82512.0 -163.76,468.8,243360.0 -163.765,1187.7,49123.0 -163.772,625.1,93210.0 -163.777,343.8,78405.0 -163.782,437.6,771840.0 -163.787,1093.9,119336.0 -163.792,406.3,409450.0 -163.797,531.3,122263.0 -163.804,406.3,54484.0 -163.809,312.5,325601.0 -163.814,312.5,227215.0 -163.819,468.8,155833.0 -163.824,1125.2,28448.0 -163.829,468.8,69871.0 -163.836,687.6,147059.0 -163.841,625.1,47158.0 -163.846,343.8,49561.0 -163.851,593.8,73396.0 -163.856,406.3,130507.0 -163.861,625.1,69794.0 -163.868,625.1,95853.0 -163.873,687.6,123038.0 -163.878,375.1,89372.0 -163.883,500.1,91274.0 -163.888,500.1,143144.0 -163.893,656.3,56923.0 -163.9,531.3,35833.0 -163.905,343.8,265327.0 -163.91,625.1,87817.0 -163.915,531.3,107141.0 -163.92,531.3,102694.0 -163.925,375.1,143705.0 -163.932,2312.8,38764.0 -163.937,656.3,84465.0 -163.942,562.6,198056.0 -163.947,531.3,190543.0 -163.952,2344.1,92636.0 -163.957,468.8,83645.0 -163.964,625.1,132671.0 -163.969,718.9,70893.0 -163.974,625.1,161815.0 -163.979,281.3,76068.0 -163.984,406.3,202794.0 -163.989,218.8,58739.0 -163.996,437.6,135624.0 -164.001,281.3,89018.0 -164.006,562.6,108974.0 -164.011,2344.1,48290.0 -164.016,2375.3,71736.0 -164.021,2344.1,66182.0 -164.028,781.4,111500.0 -164.033,687.6,139096.0 -164.038,1187.7,127921.0 -164.043,468.8,55182.0 -164.048,1156.4,58797.0 -164.053,687.6,95124.0 -164.06,2375.3,37200.0 -164.065,656.3,110958.0 -164.07,343.8,88799.0 -164.075,750.1,122683.0 -164.08,2312.8,65144.0 -164.085,687.6,96648.0 -164.092,687.6,101195.0 -164.097,781.4,81033.0 -164.102,343.8,85778.0 -164.107,312.5,82753.0 -164.112,281.3,75556.0 -164.117,343.8,271652.0 -164.124,312.5,219902.0 -164.129,500.1,187592.0 -164.134,687.6,281470.0 -164.139,656.3,145558.0 -164.144,718.9,333456.0 -164.149,656.3,93037.0 -164.156,718.9,268031.0 -164.161,343.8,201276.0 -164.166,718.9,245505.0 -164.171,625.1,213080.0 -164.176,406.3,156899.0 -164.181,625.1,135193.0 -164.188,718.9,276500.0 -164.193,625.1,155349.0 -164.198,468.8,341587.0 -164.203,562.6,83650.0 -164.208,593.8,106625.0 -164.213,687.6,94519.0 -164.22,718.9,95458.0 -164.225,593.8,98421.0 -164.23,625.1,108700.0 -164.235,375.1,104236.0 -164.24,437.6,41357.0 -164.245,750.1,105441.0 -164.252,375.1,62028.0 -164.257,250.0,36897.0 -164.262,312.5,117898.0 -164.267,375.1,216504.0 -164.272,593.8,184830.0 -164.277,625.1,143376.0 -164.284,406.3,160410.0 -164.289,437.6,75771.0 -164.294,468.8,201346.0 -164.299,312.5,133197.0 -164.304,312.5,127924.0 -164.309,312.5,243148.0 -164.316,406.3,103576.0 -164.321,593.8,87987.0 -164.326,687.6,161039.0 -164.331,406.3,63805.0 -164.336,250.0,80090.0 -164.341,656.3,48829.0 -164.348,625.1,118106.0 -164.353,656.3,155472.0 -164.358,718.9,89438.0 -164.363,656.3,109471.0 -164.368,343.8,48549.0 -164.373,656.3,59381.0 -164.38,1312.7,43461.0 -164.385,718.9,52663.0 -164.39,625.1,49184.0 -164.395,687.6,139165.0 -164.4,1312.7,85154.0 -164.405,1343.9,64358.0 -164.412,1343.9,81786.0 -164.417,375.1,119201.0 -164.422,1343.9,71630.0 -164.427,687.6,127574.0 -164.432,1375.2,48475.0 -164.437,312.5,69191.0 -164.444,375.1,72699.0 -164.449,437.6,75127.0 -164.454,656.3,300289.0 -164.459,343.8,1185461.0 -164.464,625.1,243753.0 -164.469,687.6,171001.0 -164.476,687.6,216459.0 -164.481,281.3,129974.0 -164.486,406.3,175858.0 -164.491,687.6,228301.0 -164.496,312.5,64484.0 -164.501,625.1,146390.0 -164.508,718.9,65280.0 -164.513,343.8,88501.0 -164.518,718.9,83689.0 -164.523,625.1,108902.0 -164.528,718.9,159595.0 -164.533,656.3,141156.0 -164.54,625.1,153423.0 -164.545,656.3,166007.0 -164.55,718.9,111979.0 -164.555,1312.7,80360.0 -164.56,1562.7,27100.0 -164.565,1312.7,52285.0 -164.572,375.1,98392.0 -164.577,656.3,123929.0 -164.582,375.1,177936.0 -164.587,1343.9,84790.0 -164.592,687.6,144832.0 -164.597,500.1,49621.0 -164.604,375.1,101441.0 -164.609,312.5,126591.0 -164.614,468.8,182406.0 -164.619,562.6,225644.0 -164.624,562.6,182755.0 -164.629,281.3,123130.0 -164.636,687.6,116924.0 -164.641,687.6,121669.0 -164.646,406.3,235663.0 -164.651,1375.2,55362.0 -164.656,437.6,91634.0 -164.661,1343.9,74013.0 -164.668,562.6,87195.0 -164.673,718.9,124365.0 -164.678,593.8,182598.0 -164.683,750.1,128394.0 -164.688,343.8,96191.0 -164.693,687.6,118346.0 -164.7,1500.2,44591.0 -164.705,750.1,144133.0 -164.71,625.1,179769.0 -164.715,343.8,163488.0 -164.72,375.1,133551.0 -164.725,718.9,88851.0 -164.732,406.3,218385.0 -164.737,687.6,172383.0 -164.742,687.6,117788.0 -164.747,875.1,56177.0 -164.752,656.3,62500.0 -164.757,625.1,128950.0 -164.764,1312.7,74611.0 -164.769,312.5,88201.0 -164.774,375.1,151665.0 -164.779,687.6,107046.0 -164.784,593.8,69707.0 -164.789,1312.7,99552.0 -164.796,375.1,820576.0 -164.801,437.6,145886.0 -164.806,562.6,255977.0 -164.811,343.8,87521.0 -164.816,718.9,230155.0 -164.821,656.3,177906.0 -164.828,2000.3,47612.0 -164.833,687.6,86937.0 -164.838,656.3,63788.0 -164.843,687.6,74369.0 -164.848,593.8,164050.0 -164.853,1375.2,98179.0 -164.86,1406.4,104573.0 -164.865,375.1,219475.0 -164.87,468.8,217586.0 -164.875,500.1,62530.0 -164.88,1375.2,113503.0 -164.885,468.8,84070.0 -164.892,375.1,78103.0 -164.897,781.4,158187.0 -164.902,375.1,361668.0 -164.907,750.1,138160.0 -164.912,312.5,72641.0 -164.917,1343.9,46865.0 -164.924,718.9,105890.0 -164.929,343.8,62253.0 -164.934,375.1,215837.0 -164.939,718.9,72472.0 -164.944,718.9,151718.0 -164.949,656.3,140167.0 -164.956,656.3,138028.0 -164.961,687.6,84157.0 -164.966,625.1,87389.0 -164.971,406.3,63923.0 -164.976,625.1,32784.0 -164.981,375.1,164426.0 -164.988,656.3,60599.0 -164.993,718.9,70328.0 -164.998,687.6,68764.0 -165.003,718.9,93015.0 -165.008,687.6,126520.0 -165.013,250.0,69000.0 -165.02,718.9,158889.0 -165.025,1437.7,38777.0 -165.03,718.9,123689.0 -165.035,625.1,188201.0 -165.04,718.9,274856.0 -165.045,375.1,66083.0 -165.052,750.1,307211.0 -165.057,687.6,79263.0 -165.062,718.9,271776.0 -165.067,343.8,308457.0 -165.072,312.5,189291.0 -165.077,687.6,128214.0 -165.084,281.3,58943.0 -165.089,718.9,144426.0 -165.094,375.1,307048.0 -165.099,312.5,250744.0 -165.104,312.5,72111.0 -165.109,656.3,226242.0 -165.116,656.3,311075.0 -165.121,750.1,92256.0 -165.126,687.6,147064.0 -165.131,406.3,1092011.0 -165.136,437.6,182740.0 -165.141,843.9,57618.0 -165.148,625.1,119921.0 -165.153,625.1,167656.0 -165.158,343.8,154086.0 -165.163,750.1,200047.0 -165.168,312.5,68093.0 -165.173,406.3,131924.0 -165.18,406.3,176856.0 -165.185,718.9,245009.0 -165.19,312.5,209578.0 -165.195,718.9,190890.0 -165.2,406.3,153270.0 -165.205,468.8,119088.0 -165.212,281.3,118117.0 -165.217,718.9,432028.0 -165.222,687.6,281607.0 -165.227,718.9,373410.0 -165.232,687.6,137389.0 -165.237,687.6,129914.0 -165.244,656.3,111877.0 -165.249,343.8,60818.0 -165.254,593.8,73965.0 -165.259,656.3,116046.0 -165.264,718.9,121521.0 -165.269,281.3,85791.0 -165.276,718.9,103636.0 -165.281,375.1,168596.0 -165.286,687.6,159085.0 -165.291,343.8,74568.0 -165.296,468.8,84220.0 -165.301,750.1,74502.0 -165.308,718.9,147630.0 -165.313,343.8,75268.0 -165.318,718.9,177410.0 -165.323,656.3,169440.0 -165.328,750.1,183871.0 -165.333,312.5,88423.0 -165.34,656.3,78487.0 -165.345,718.9,144249.0 -165.35,343.8,66222.0 -165.355,343.8,97130.0 -165.36,2062.8,33381.0 -165.365,906.4,55110.0 -165.372,375.1,69854.0 -165.377,562.6,62765.0 -165.382,2000.3,73817.0 -165.387,1969.0,40925.0 -165.392,437.6,17739.0 -165.397,1312.7,31859.0 -165.404,312.5,100350.0 -165.409,562.6,45278.0 -165.414,343.8,83625.0 -165.419,593.8,75521.0 -165.424,312.5,62271.0 -165.429,531.3,39115.0 -165.436,500.1,191671.0 -165.441,281.3,86835.0 -165.446,781.4,43202.0 -165.451,812.6,71764.0 -165.456,406.3,52893.0 -165.461,1625.2,80801.0 -165.468,406.3,837231.0 -165.473,375.1,274605.0 -165.478,437.6,95886.0 -165.483,1156.4,37251.0 -165.488,281.3,168326.0 -165.493,312.5,157836.0 -165.5,281.3,112379.0 -165.505,406.3,47712.0 -165.51,500.1,129948.0 -165.515,406.3,243728.0 -165.52,468.8,69477.0 -165.525,343.8,238463.0 -165.532,718.9,65192.0 -165.537,906.4,132245.0 -165.542,406.3,171913.0 -165.547,500.1,362275.0 -165.552,468.8,111498.0 -165.557,437.6,140904.0 -165.564,531.3,226246.0 -165.569,500.1,87830.0 -165.574,500.1,234608.0 -165.579,281.3,141688.0 -165.584,468.8,142302.0 -165.589,468.8,68135.0 -165.596,468.8,260443.0 -165.601,437.6,55355.0 -165.606,500.1,125340.0 -165.611,468.8,159501.0 -165.616,562.6,95344.0 -165.621,468.8,98075.0 -165.628,593.8,200277.0 -165.633,468.8,156312.0 -165.638,281.3,152751.0 -165.643,531.3,194236.0 -165.648,531.3,87503.0 -165.653,437.6,104686.0 -165.66,1343.9,64162.0 -165.665,312.5,140232.0 -165.67,343.8,92475.0 -165.675,375.1,83128.0 -165.68,2031.5,50779.0 -165.685,343.8,102176.0 -165.692,375.1,68595.0 -165.697,750.1,102661.0 -165.702,406.3,69259.0 -165.707,2000.3,64397.0 -165.712,687.6,79867.0 -165.717,375.1,167923.0 -165.724,375.1,177968.0 -165.729,1937.8,107836.0 -165.734,375.1,95550.0 -165.739,1937.8,65437.0 -165.744,718.9,135659.0 -165.749,375.1,141109.0 -165.756,312.5,59332.0 -165.761,375.1,146530.0 -165.766,687.6,69069.0 -165.771,343.8,170621.0 -165.776,281.3,46898.0 -165.781,406.3,93508.0 -165.788,437.6,50605.0 -165.793,656.3,86609.0 -165.798,718.9,42077.0 -165.803,343.8,578676.0 -165.808,375.1,737999.0 -165.813,562.6,278279.0 -165.82,437.6,46682.0 -165.825,218.8,85006.0 -165.83,312.5,99371.0 -165.835,437.6,137749.0 -165.84,2000.3,39100.0 -165.845,343.8,204337.0 -165.852,750.1,126126.0 -165.857,406.3,65369.0 -165.862,375.1,113535.0 -165.867,656.3,160272.0 -165.872,500.1,328354.0 -165.877,625.1,21632.0 -165.884,406.3,106357.0 -165.889,1250.2,52392.0 -165.894,1969.0,38306.0 -165.899,1469.0,24563.0 -165.904,375.1,93270.0 -165.909,437.6,41325.0 -165.916,406.3,71169.0 -165.921,406.3,139579.0 -165.926,406.3,108234.0 -165.931,281.3,83164.0 -165.936,343.8,220400.0 -165.941,3313.0,33286.0 -165.948,3313.0,46548.0 -165.953,1312.7,69652.0 -165.958,375.1,105521.0 -165.963,375.1,68447.0 -165.968,750.1,219172.0 -165.973,406.3,277762.0 -165.98,781.4,193444.0 -165.985,343.8,103433.0 -165.99,343.8,117186.0 -165.995,343.8,57007.0 -166.0,687.6,154829.0 -166.005,750.1,109010.0 -166.012,375.1,133278.0 -166.017,750.1,142529.0 -166.022,781.4,153545.0 -166.027,781.4,138513.0 -166.032,687.6,192269.0 -166.037,750.1,92683.0 -166.044,718.9,93477.0 -166.049,781.4,208990.0 -166.054,750.1,156476.0 -166.059,687.6,304508.0 -166.064,406.3,99097.0 -166.069,718.9,301772.0 -166.076,781.4,180910.0 -166.081,718.9,145827.0 -166.086,687.6,285040.0 -166.091,812.6,88643.0 -166.096,750.1,412100.0 -166.101,750.1,226148.0 -166.108,718.9,147259.0 -166.113,687.6,137051.0 -166.118,781.4,272418.0 -166.123,750.1,387895.0 -166.128,718.9,261813.0 -166.133,750.1,233715.0 -166.14,750.1,613889.0 -166.145,312.5,910651.0 -166.15,687.6,164758.0 -166.155,750.1,325291.0 -166.16,750.1,208376.0 -166.165,750.1,298345.0 -166.172,718.9,272034.0 -166.177,781.4,180741.0 -166.182,750.1,391621.0 -166.187,781.4,189277.0 -166.192,750.1,302781.0 -166.197,781.4,245288.0 -166.204,750.1,450965.0 -166.209,718.9,225257.0 -166.214,718.9,384517.0 -166.219,750.1,272096.0 -166.224,750.1,152780.0 -166.229,468.8,143441.0 -166.236,718.9,188592.0 -166.241,750.1,165511.0 -166.246,375.1,417123.0 -166.251,750.1,285338.0 -166.256,750.1,132055.0 -166.261,343.8,332933.0 -166.268,750.1,170016.0 -166.273,750.1,320738.0 -166.278,375.1,360561.0 -166.283,718.9,232915.0 -166.288,343.8,343514.0 -166.293,781.4,166004.0 -166.3,750.1,261802.0 -166.305,437.6,318009.0 -166.31,750.1,148782.0 -166.315,468.8,151670.0 -166.32,718.9,127016.0 -166.325,812.6,132427.0 -166.332,406.3,388010.0 -166.337,406.3,123267.0 -166.342,750.1,160657.0 -166.347,343.8,214892.0 -166.352,750.1,226923.0 -166.357,781.4,34445.0 -166.364,781.4,89752.0 -166.369,750.1,97536.0 -166.374,406.3,104620.0 -166.379,843.9,65399.0 -166.384,750.1,129223.0 -166.389,781.4,130179.0 -166.396,750.1,68132.0 -166.401,781.4,70361.0 -166.406,812.6,163265.0 -166.411,750.1,201366.0 -166.416,375.1,105071.0 -166.421,343.8,169738.0 -166.428,781.4,58650.0 -166.433,406.3,132205.0 -166.438,312.5,223474.0 -166.443,781.4,72996.0 -166.448,781.4,92643.0 -166.453,406.3,227312.0 -166.46,937.6,31214.0 -166.465,375.1,246001.0 -166.47,343.8,174186.0 -166.475,593.8,64456.0 -166.48,406.3,1203012.0 -166.485,781.4,135792.0 -166.492,500.1,54653.0 -166.497,343.8,38770.0 -166.502,343.8,150302.0 -166.507,375.1,93563.0 -166.512,250.0,78588.0 -166.517,343.8,125902.0 -166.524,531.3,158205.0 -166.529,531.3,109281.0 -166.534,781.4,209215.0 -166.539,312.5,130256.0 -166.544,750.1,246422.0 -166.549,843.9,52292.0 -166.556,375.1,219687.0 -166.561,437.6,182668.0 -166.566,750.1,242478.0 -166.571,375.1,166857.0 -166.576,343.8,131926.0 -166.581,375.1,50869.0 -166.588,281.3,139816.0 -166.593,406.3,167634.0 -166.598,687.6,44969.0 -166.603,343.8,141387.0 -166.608,750.1,26001.0 -166.613,406.3,102722.0 -166.62,312.5,132897.0 -166.625,781.4,57598.0 -166.63,468.8,139332.0 -166.635,781.4,89420.0 -166.64,375.1,143151.0 -166.645,781.4,96797.0 -166.652,781.4,133658.0 -166.657,750.1,130084.0 -166.662,812.6,99067.0 -166.667,781.4,69901.0 -166.672,437.6,139252.0 -166.677,343.8,178128.0 -166.684,781.4,155056.0 -166.689,781.4,85863.0 -166.694,781.4,169469.0 -166.699,781.4,201954.0 -166.704,812.6,134123.0 -166.709,343.8,304500.0 -166.716,781.4,148024.0 -166.721,781.4,141684.0 -166.726,781.4,77573.0 -166.731,781.4,151288.0 -166.736,312.5,91395.0 -166.741,312.5,71316.0 -166.748,812.6,74222.0 -166.753,281.3,36202.0 -166.758,375.1,55667.0 -166.763,781.4,77623.0 -166.768,312.5,202516.0 -166.773,3188.0,44554.0 -166.78,312.5,111462.0 -166.785,343.8,104494.0 -166.79,437.6,135717.0 -166.795,3156.7,55582.0 -166.8,343.8,339354.0 -166.805,218.8,74245.0 -166.812,750.1,109070.0 -166.817,406.3,904365.0 -166.822,218.8,135517.0 -166.827,218.8,97490.0 -166.832,312.5,445387.0 -166.837,781.4,179630.0 -166.844,781.4,156444.0 -166.849,343.8,133462.0 -166.854,781.4,171235.0 -166.859,281.3,265863.0 -166.864,281.3,119856.0 -166.869,781.4,155256.0 -166.876,437.6,112370.0 -166.881,375.1,293894.0 -166.886,281.3,88622.0 -166.891,312.5,284904.0 -166.896,281.3,76305.0 -166.901,312.5,145651.0 -166.908,406.3,205427.0 -166.913,343.8,272090.0 -166.918,312.5,188890.0 -166.923,312.5,247127.0 -166.928,750.1,200044.0 -166.933,781.4,112493.0 -166.94,406.3,148525.0 -166.945,781.4,150291.0 -166.95,343.8,167458.0 -166.955,375.1,211574.0 -166.96,718.9,187225.0 -166.965,750.1,230722.0 -166.972,343.8,171542.0 -166.977,343.8,147316.0 -166.982,343.8,304619.0 -166.987,750.1,97312.0 -166.992,375.1,51625.0 -166.997,406.3,140248.0 -167.004,343.8,61701.0 -167.009,500.1,129719.0 -167.014,343.8,313878.0 -167.019,812.6,96938.0 -167.024,781.4,176671.0 -167.029,812.6,181970.0 -167.036,781.4,217950.0 -167.041,781.4,342852.0 -167.046,812.6,269262.0 -167.051,812.6,302684.0 -167.056,812.6,166004.0 -167.061,781.4,214680.0 -167.068,781.4,163943.0 -167.073,343.8,300730.0 -167.078,750.1,266402.0 -167.083,812.6,225005.0 -167.088,781.4,143079.0 -167.093,781.4,182010.0 -167.1,781.4,163910.0 -167.105,718.9,145194.0 -167.11,343.8,130044.0 -167.115,750.1,65613.0 -167.12,750.1,101752.0 -167.125,781.4,255220.0 -167.132,750.1,310349.0 -167.137,750.1,118009.0 -167.142,750.1,147167.0 -167.147,750.1,81595.0 -167.152,406.3,725410.0 -167.157,343.8,842243.0 -167.164,750.1,223172.0 -167.169,375.1,196610.0 -167.174,812.6,162868.0 -167.179,343.8,178267.0 -167.184,406.3,132919.0 -167.189,812.6,179749.0 -167.196,281.3,95937.0 -167.201,281.3,219806.0 -167.206,343.8,182687.0 -167.211,343.8,210069.0 -167.216,781.4,119243.0 -167.221,781.4,103932.0 -167.228,281.3,158906.0 -167.233,312.5,258276.0 -167.238,781.4,138581.0 -167.243,437.6,121101.0 -167.248,750.1,80984.0 -167.253,781.4,157529.0 -167.26,812.6,67223.0 -167.265,312.5,252218.0 -167.27,781.4,182052.0 -167.275,750.1,274693.0 -167.28,343.8,189188.0 -167.285,750.1,190395.0 -167.292,343.8,107697.0 -167.297,312.5,181415.0 -167.302,781.4,88213.0 -167.307,312.5,275804.0 -167.312,281.3,185352.0 -167.317,781.4,176493.0 -167.324,281.3,154502.0 -167.329,343.8,74200.0 -167.334,343.8,123023.0 -167.339,312.5,236726.0 -167.344,250.0,59334.0 -167.349,375.1,93222.0 -167.356,312.5,110285.0 -167.361,812.6,95712.0 -167.366,343.8,120467.0 -167.371,312.5,313667.0 -167.376,812.6,96774.0 -167.381,781.4,231604.0 -167.388,312.5,202758.0 -167.393,812.6,132928.0 -167.398,343.8,203107.0 -167.403,312.5,373374.0 -167.408,812.6,61082.0 -167.413,812.6,71850.0 -167.42,781.4,98773.0 -167.425,781.4,135283.0 -167.43,312.5,335708.0 -167.435,781.4,311167.0 -167.44,781.4,171947.0 -167.445,343.8,201494.0 -167.452,781.4,144519.0 -167.457,437.6,64070.0 -167.462,312.5,215663.0 -167.467,812.6,186014.0 -167.472,781.4,162140.0 -167.477,781.4,186039.0 -167.484,781.4,177251.0 -167.489,437.6,217473.0 -167.494,406.3,336732.0 -167.499,500.1,288320.0 -167.504,1000.1,60894.0 -167.509,375.1,128689.0 -167.516,343.8,134122.0 -167.521,250.0,177695.0 -167.526,312.5,223271.0 -167.531,312.5,182062.0 -167.536,312.5,215105.0 -167.541,375.1,197133.0 -167.548,812.6,35326.0 -167.553,312.5,233973.0 -167.558,812.6,150874.0 -167.563,812.6,251899.0 -167.568,812.6,108768.0 -167.573,781.4,277406.0 -167.58,812.6,237316.0 -167.585,812.6,125574.0 -167.59,781.4,159816.0 -167.595,750.1,175723.0 -167.6,781.4,231537.0 -167.605,812.6,55397.0 -167.612,312.5,164138.0 -167.617,312.5,166053.0 -167.622,750.1,276976.0 -167.627,781.4,115406.0 -167.632,343.8,245219.0 -167.637,812.6,118891.0 -167.644,843.9,115609.0 -167.649,750.1,133837.0 -167.654,531.3,21726.0 -167.659,1125.2,47918.0 -167.664,906.4,55353.0 -167.669,750.1,83159.0 -167.676,750.1,73285.0 -167.681,750.1,41769.0 -167.686,718.9,89099.0 -167.691,812.6,118038.0 -167.696,750.1,98903.0 -167.701,843.9,138491.0 -167.708,750.1,268153.0 -167.713,781.4,51538.0 -167.718,718.9,108858.0 -167.723,437.6,56795.0 -167.728,750.1,93648.0 -167.733,781.4,259758.0 -167.74,718.9,232787.0 -167.745,500.1,73695.0 -167.75,750.1,171532.0 -167.755,718.9,455385.0 -167.76,718.9,111133.0 -167.765,750.1,348120.0 -167.772,750.1,200707.0 -167.777,687.6,114323.0 -167.782,718.9,169416.0 -167.787,406.3,187343.0 -167.792,718.9,252965.0 -167.797,406.3,156626.0 -167.804,718.9,186438.0 -167.809,750.1,193990.0 -167.814,781.4,283128.0 -167.819,437.6,72722.0 -167.824,468.8,198841.0 -167.829,375.1,1702194.0 -167.836,468.8,327037.0 -167.841,375.1,87701.0 -167.846,843.9,52666.0 -167.851,437.6,237200.0 -167.856,468.8,111298.0 -167.861,562.6,241488.0 -167.868,468.8,118508.0 -167.873,750.1,116396.0 -167.878,343.8,145934.0 -167.883,375.1,130041.0 -167.888,750.1,116624.0 -167.893,781.4,300934.0 -167.9,750.1,73565.0 -167.905,406.3,431127.0 -167.91,343.8,197810.0 -167.915,468.8,196592.0 -167.92,406.3,248767.0 -167.925,343.8,137454.0 -167.932,375.1,323867.0 -167.937,437.6,143383.0 -167.942,750.1,137639.0 -167.947,718.9,196074.0 -167.952,687.6,192247.0 -167.957,312.5,150708.0 -167.964,718.9,164288.0 -167.969,750.1,188135.0 -167.974,750.1,117905.0 -167.979,687.6,160546.0 -167.984,343.8,184690.0 -167.989,781.4,451032.0 -167.996,750.1,202312.0 -168.001,406.3,189032.0 -168.006,750.1,197637.0 -168.011,343.8,321336.0 -168.016,750.1,154213.0 -168.021,468.8,208987.0 -168.028,437.6,221025.0 -168.033,343.8,116664.0 -168.038,281.3,128789.0 -168.043,781.4,108602.0 -168.048,781.4,160542.0 -168.053,812.6,167516.0 -168.06,750.1,134396.0 -168.065,312.5,217331.0 -168.07,750.1,92393.0 -168.075,781.4,229088.0 -168.08,750.1,203852.0 -168.085,750.1,291928.0 -168.092,750.1,171603.0 -168.097,781.4,162231.0 -168.102,750.1,160913.0 -168.107,750.1,166369.0 -168.112,750.1,331340.0 -168.117,750.1,199863.0 -168.124,750.1,225601.0 -168.129,687.6,121429.0 -168.134,687.6,205235.0 -168.139,718.9,74006.0 -168.144,718.9,246590.0 -168.149,718.9,335708.0 -168.156,1125.2,30147.0 -168.161,437.6,53574.0 -168.166,375.1,1469671.0 -168.171,531.3,253918.0 -168.176,375.1,356771.0 -168.181,406.3,98296.0 -168.188,500.1,100039.0 -168.193,406.3,294552.0 -168.198,1031.4,95051.0 -168.203,968.9,86012.0 -168.208,406.3,212798.0 -168.213,312.5,26691.0 -168.22,406.3,97778.0 -168.225,500.1,348028.0 -168.23,531.3,67422.0 -168.235,437.6,112133.0 -168.24,406.3,57218.0 -168.245,625.1,256319.0 -168.252,375.1,120457.0 -168.257,656.3,155329.0 -168.262,1218.9,35565.0 -168.267,1187.7,46853.0 -168.272,656.3,181559.0 -168.277,656.3,131096.0 -168.284,718.9,50388.0 -168.289,468.8,59128.0 -168.294,500.1,79333.0 -168.299,656.3,167323.0 -168.304,375.1,166313.0 -168.309,1156.4,36897.0 -168.316,1156.4,65432.0 -168.321,468.8,100859.0 -168.326,468.8,93494.0 -168.331,406.3,220293.0 -168.336,406.3,68103.0 -168.341,1125.2,30185.0 -168.348,468.8,70633.0 -168.353,593.8,121330.0 -168.358,343.8,135387.0 -168.363,343.8,91248.0 -168.368,656.3,89036.0 -168.373,562.6,62161.0 -168.38,531.3,83856.0 -168.385,343.8,200654.0 -168.39,281.3,47100.0 -168.395,656.3,130082.0 -168.4,468.8,153672.0 -168.405,875.1,69507.0 -168.412,375.1,220551.0 -168.417,562.6,91386.0 -168.422,343.8,133091.0 -168.427,437.6,184937.0 -168.432,687.6,200873.0 -168.437,687.6,116974.0 -168.444,1250.2,161830.0 -168.449,375.1,105619.0 -168.454,1250.2,117748.0 -168.459,718.9,169282.0 -168.464,406.3,74565.0 -168.469,656.3,167955.0 -168.476,375.1,182026.0 -168.481,500.1,105632.0 -168.486,406.3,55456.0 -168.491,406.3,160512.0 -168.496,656.3,147863.0 -168.501,406.3,1189494.0 -168.508,531.3,551561.0 -168.513,1218.9,86685.0 -168.518,1156.4,115811.0 -168.523,375.1,253709.0 -168.528,343.8,416222.0 -168.533,500.1,285291.0 -168.54,343.8,211923.0 -168.545,343.8,219404.0 -168.55,406.3,253957.0 -168.555,281.3,188331.0 -168.56,468.8,191654.0 -168.565,343.8,123065.0 -168.572,437.6,179635.0 -168.577,1187.7,163833.0 -168.582,312.5,94638.0 -168.587,375.1,228689.0 -168.592,1218.9,69541.0 -168.597,312.5,193567.0 -168.604,1218.9,83169.0 -168.609,750.1,115050.0 -168.614,437.6,169865.0 -168.619,718.9,105817.0 -168.624,312.5,213112.0 -168.629,343.8,203847.0 -168.636,218.8,32117.0 -168.641,406.3,261930.0 -168.646,718.9,86168.0 -168.651,1156.4,145997.0 -168.656,375.1,455125.0 -168.661,1031.4,90039.0 -168.668,437.6,219014.0 -168.673,1031.4,60213.0 -168.678,468.8,171190.0 -168.683,375.1,242382.0 -168.688,843.9,144149.0 -168.693,375.1,180472.0 -168.7,375.1,90141.0 -168.705,531.3,269115.0 -168.71,375.1,298804.0 -168.715,343.8,48513.0 -168.72,375.1,457036.0 -168.725,468.8,131781.0 -168.732,531.3,189739.0 -168.737,406.3,340179.0 -168.742,2250.3,65552.0 -168.747,406.3,562945.0 -168.752,468.8,154995.0 -168.757,468.8,271676.0 -168.764,406.3,236686.0 -168.769,2187.8,58847.0 -168.774,375.1,272407.0 -168.779,468.8,70342.0 -168.784,500.1,84542.0 -168.789,375.1,351913.0 -168.796,531.3,148251.0 -168.801,406.3,614418.0 -168.806,468.8,217961.0 -168.811,437.6,187515.0 -168.816,406.3,665324.0 -168.821,500.1,240579.0 -168.828,406.3,467463.0 -168.833,437.6,227580.0 -168.838,500.1,641889.0 -168.843,375.1,522655.0 -168.848,468.8,151418.0 -168.853,375.1,366514.0 -168.86,562.6,115166.0 -168.865,406.3,160531.0 -168.87,406.3,432526.0 -168.875,406.3,53070.0 -168.88,468.8,224411.0 -168.885,437.6,107930.0 -168.892,375.1,86421.0 -168.897,406.3,94049.0 -168.902,437.6,98720.0 -168.907,593.8,72265.0 -168.912,1343.9,90232.0 -168.917,500.1,123914.0 -168.924,406.3,95271.0 -168.929,375.1,58843.0 -168.934,562.6,148033.0 -168.939,750.1,152819.0 -168.944,1343.9,59550.0 -168.949,468.8,161828.0 -168.956,406.3,378861.0 -168.961,406.3,275957.0 -168.966,375.1,162520.0 -168.971,906.4,76942.0 -168.976,500.1,145826.0 -168.981,375.1,274011.0 -168.988,562.6,163090.0 -168.993,468.8,116252.0 -168.998,406.3,110427.0 -169.003,468.8,63383.0 -169.008,531.3,85877.0 -169.013,375.1,78357.0 -169.02,2344.1,67888.0 -169.025,562.6,77964.0 -169.03,656.3,148186.0 -169.035,375.1,137134.0 -169.04,687.6,130198.0 -169.045,875.1,75163.0 -169.052,593.8,49380.0 -169.057,406.3,92698.0 -169.062,343.8,54520.0 -169.067,1250.2,40890.0 -169.072,406.3,164255.0 -169.077,375.1,192953.0 -169.084,1250.2,71185.0 -169.089,656.3,128764.0 -169.094,593.8,225413.0 -169.099,687.6,136163.0 -169.104,906.4,132557.0 -169.109,750.1,81637.0 -169.116,1281.4,73666.0 -169.121,468.8,110511.0 -169.126,406.3,134323.0 -169.131,687.6,212167.0 -169.136,562.6,245550.0 -169.141,625.1,224533.0 -169.148,656.3,76258.0 -169.153,437.6,143532.0 -169.158,718.9,79968.0 -169.163,718.9,115953.0 -169.168,625.1,68521.0 -169.173,687.6,175589.0 -169.18,375.1,331043.0 -169.185,625.1,235511.0 -169.19,406.3,278204.0 -169.195,656.3,150277.0 -169.2,562.6,80544.0 -169.205,718.9,417915.0 -169.212,406.3,69010.0 -169.217,1312.7,67841.0 -169.222,343.8,125553.0 -169.227,375.1,44468.0 -169.232,312.5,97186.0 -169.237,531.3,30839.0 -169.244,656.3,108323.0 -169.249,625.1,83330.0 -169.254,406.3,132342.0 -169.259,375.1,85104.0 -169.264,562.6,130676.0 -169.269,687.6,77889.0 -169.276,1343.9,46832.0 -169.281,437.6,53111.0 -169.286,906.4,42953.0 -169.291,656.3,141113.0 -169.296,625.1,116927.0 -169.301,656.3,98232.0 -169.308,687.6,143788.0 -169.313,625.1,112793.0 -169.318,718.9,145091.0 -169.323,625.1,61666.0 -169.328,281.3,72122.0 -169.333,375.1,168930.0 -169.34,1281.4,49722.0 -169.345,687.6,123745.0 -169.35,593.8,81290.0 -169.355,656.3,79866.0 -169.36,718.9,102650.0 -169.365,625.1,128582.0 -169.372,625.1,29150.0 -169.377,312.5,99252.0 -169.382,718.9,95797.0 -169.387,343.8,137933.0 -169.392,687.6,133911.0 -169.397,250.0,121854.0 -169.404,625.1,56682.0 -169.409,625.1,72622.0 -169.414,375.1,62947.0 -169.419,250.0,93551.0 -169.424,750.1,178381.0 -169.429,406.3,67882.0 -169.436,437.6,52158.0 -169.441,687.6,35517.0 -169.446,343.8,134813.0 -169.451,687.6,82205.0 -169.456,375.1,210714.0 -169.461,343.8,106571.0 -169.468,312.5,132011.0 -169.473,250.0,85178.0 -169.478,656.3,95071.0 -169.483,656.3,188110.0 -169.488,625.1,105829.0 -169.493,687.6,128670.0 -169.5,687.6,183994.0 -169.505,625.1,114839.0 -169.51,625.1,227515.0 -169.515,406.3,634812.0 -169.52,562.6,341432.0 -169.525,625.1,458968.0 -169.532,343.8,181429.0 -169.537,468.8,94820.0 -169.542,437.6,258059.0 -169.547,656.3,204763.0 -169.552,656.3,142871.0 -169.557,343.8,144585.0 -169.564,656.3,137126.0 -169.569,593.8,129811.0 -169.574,625.1,124410.0 -169.579,687.6,190362.0 -169.584,375.1,62692.0 -169.589,375.1,132770.0 -169.596,687.6,78038.0 -169.601,625.1,79287.0 -169.606,406.3,236214.0 -169.611,406.3,154590.0 -169.616,437.6,310659.0 -169.621,562.6,85648.0 -169.628,656.3,238144.0 -169.633,750.1,75099.0 -169.638,312.5,180611.0 -169.643,343.8,268916.0 -169.648,593.8,105890.0 -169.653,437.6,136933.0 -169.66,312.5,118272.0 -169.665,750.1,260914.0 -169.67,375.1,180266.0 -169.675,687.6,256254.0 -169.68,718.9,184305.0 -169.685,656.3,74519.0 -169.692,718.9,88340.0 -169.697,343.8,87224.0 -169.702,593.8,72945.0 -169.707,718.9,122510.0 -169.712,343.8,243272.0 -169.717,656.3,142728.0 -169.724,625.1,92471.0 -169.729,625.1,159482.0 -169.734,375.1,175923.0 -169.739,687.6,55437.0 -169.744,625.1,56627.0 -169.749,656.3,130601.0 -169.756,656.3,183667.0 -169.761,656.3,289127.0 -169.766,625.1,306112.0 -169.771,656.3,173178.0 -169.776,687.6,294825.0 -169.781,656.3,146573.0 -169.788,343.8,121439.0 -169.793,656.3,62991.0 -169.798,656.3,111406.0 -169.803,281.3,71587.0 -169.808,343.8,231466.0 -169.813,656.3,107117.0 -169.82,656.3,115446.0 -169.825,687.6,107150.0 -169.83,687.6,105279.0 -169.835,375.1,318013.0 -169.84,312.5,167343.0 -169.845,687.6,145318.0 -169.852,375.1,1350974.0 -169.857,593.8,186848.0 -169.862,562.6,134506.0 -169.867,343.8,318557.0 -169.872,250.0,129518.0 -169.877,625.1,145724.0 -169.884,625.1,278307.0 -169.889,625.1,103339.0 -169.894,1250.2,64362.0 -169.899,656.3,133945.0 -169.904,593.8,240048.0 -169.909,593.8,168708.0 -169.916,687.6,244248.0 -169.921,593.8,173277.0 -169.926,656.3,138516.0 -169.931,718.9,411696.0 -169.936,375.1,111180.0 -169.941,312.5,230721.0 -169.948,406.3,130008.0 -169.953,687.6,298542.0 -169.958,593.8,150789.0 -169.963,656.3,220693.0 -169.968,656.3,176859.0 -169.973,718.9,162799.0 -169.98,281.3,169308.0 -169.985,250.0,120854.0 -169.99,625.1,205606.0 -169.995,687.6,149442.0 -170.0,625.1,149670.0 -170.005,625.1,143346.0 -170.012,343.8,180746.0 -170.017,312.5,118311.0 -170.022,687.6,133128.0 -170.027,593.8,101011.0 -170.032,656.3,169640.0 -170.037,593.8,110514.0 -170.044,656.3,256330.0 -170.049,625.1,385198.0 -170.054,593.8,498879.0 -170.059,656.3,276018.0 -170.064,625.1,229515.0 -170.069,656.3,270039.0 -170.076,687.6,92402.0 -170.081,718.9,143591.0 -170.086,593.8,175165.0 -170.091,625.1,250689.0 -170.096,656.3,138677.0 -170.101,656.3,206402.0 -170.108,656.3,295169.0 -170.113,656.3,273336.0 -170.118,656.3,168698.0 -170.123,687.6,141090.0 -170.128,718.9,106698.0 -170.133,656.3,165944.0 -170.14,656.3,267600.0 -170.145,687.6,351242.0 -170.15,656.3,127020.0 -170.155,687.6,130018.0 -170.16,718.9,269598.0 -170.165,656.3,293340.0 -170.172,687.6,118108.0 -170.177,625.1,136770.0 -170.182,625.1,57616.0 -170.187,437.6,1311390.0 -170.192,437.6,322823.0 -170.197,562.6,86123.0 -170.204,281.3,122536.0 -170.209,687.6,212168.0 -170.214,656.3,167148.0 -170.219,593.8,176604.0 -170.224,656.3,305904.0 -170.229,656.3,313009.0 -170.236,687.6,72088.0 -170.241,375.1,226294.0 -170.246,625.1,245735.0 -170.251,312.5,122574.0 -170.256,687.6,233668.0 -170.261,375.1,178830.0 -170.268,625.1,258879.0 -170.273,687.6,164960.0 -170.278,718.9,252704.0 -170.283,750.1,85418.0 -170.288,625.1,78068.0 -170.293,750.1,117035.0 -170.3,656.3,269106.0 -170.305,656.3,415928.0 -170.31,656.3,478739.0 -170.315,687.6,421054.0 -170.32,656.3,375818.0 -170.325,656.3,308739.0 -170.332,656.3,305270.0 -170.337,593.8,145360.0 -170.342,625.1,189577.0 -170.347,625.1,243754.0 -170.352,656.3,186013.0 -170.357,625.1,107746.0 -170.364,656.3,145898.0 -170.369,625.1,253159.0 -170.374,656.3,66242.0 -170.379,312.5,133752.0 -170.384,687.6,167459.0 -170.389,687.6,231277.0 -170.396,656.3,146907.0 -170.401,656.3,163819.0 -170.406,687.6,283207.0 -170.411,656.3,103096.0 -170.416,718.9,351237.0 -170.421,687.6,165118.0 -170.428,656.3,115131.0 -170.433,750.1,219597.0 -170.438,718.9,236391.0 -170.443,687.6,90191.0 -170.448,687.6,102799.0 -170.453,687.6,146864.0 -170.46,343.8,130209.0 -170.465,687.6,47327.0 -170.47,343.8,151973.0 -170.475,375.1,83616.0 -170.48,625.1,207162.0 -170.485,625.1,358261.0 -170.492,312.5,128832.0 -170.497,656.3,110994.0 -170.502,687.6,154292.0 -170.507,593.8,66276.0 -170.512,562.6,138460.0 -170.517,593.8,376969.0 -170.524,343.8,892810.0 -170.529,281.3,197439.0 -170.534,468.8,137256.0 -170.539,375.1,198883.0 -170.544,218.8,180055.0 -170.549,656.3,252995.0 -170.556,656.3,50628.0 -170.561,312.5,139575.0 -170.566,281.3,122747.0 -170.571,500.1,163441.0 -170.576,687.6,140958.0 -170.581,375.1,352702.0 -170.588,656.3,129961.0 -170.593,656.3,276814.0 -170.598,656.3,268432.0 -170.603,375.1,96249.0 -170.608,343.8,206111.0 -170.613,312.5,96516.0 -170.62,687.6,96164.0 -170.625,656.3,184406.0 -170.63,625.1,268850.0 -170.635,562.6,137971.0 -170.64,593.8,177291.0 -170.645,562.6,328019.0 -170.652,625.1,233179.0 -170.657,562.6,302310.0 -170.662,437.6,275711.0 -170.667,625.1,168023.0 -170.672,625.1,173614.0 -170.677,656.3,254139.0 -170.684,375.1,196264.0 -170.689,656.3,370322.0 -170.694,656.3,238796.0 -170.699,687.6,232750.0 -170.704,687.6,203139.0 -170.709,656.3,113571.0 -170.716,343.8,259587.0 -170.721,343.8,131327.0 -170.726,625.1,105243.0 -170.731,687.6,251946.0 -170.736,375.1,210832.0 -170.741,312.5,255424.0 -170.748,718.9,270057.0 -170.753,656.3,170298.0 -170.758,656.3,433950.0 -170.763,687.6,576445.0 -170.768,656.3,412942.0 -170.773,625.1,341926.0 -170.78,593.8,280193.0 -170.785,656.3,229657.0 -170.79,656.3,160966.0 -170.795,656.3,68561.0 -170.8,593.8,286341.0 -170.805,500.1,129772.0 -170.812,562.6,137238.0 -170.817,375.1,155148.0 -170.822,531.3,125926.0 -170.827,593.8,155463.0 -170.832,375.1,182802.0 -170.837,718.9,92288.0 -170.844,718.9,92965.0 -170.849,593.8,64856.0 -170.854,375.1,40379.0 -170.859,343.8,287617.0 -170.864,343.8,735575.0 -170.869,593.8,172041.0 -170.876,625.1,162718.0 -170.881,437.6,55567.0 -170.886,718.9,158020.0 -170.891,406.3,234387.0 -170.896,656.3,244533.0 -170.901,625.1,239634.0 +0.003,2469.1,0.0 +0.008,2062.8,0.0 +0.013,843.9,0.0 +0.018,3625.5,0.0 +0.023,3219.2,0.0 +0.028,2875.4,0.0 +0.035,1844.0,0.0 +0.04,5438.3,0.0 +0.045,4750.7,0.0 +0.05,406.3,0.0 +0.055,156.3,0.0 +0.06,156.3,0.0 +0.067,625.1,0.0 +0.072,718.9,0.0 +0.077,562.6,24.0 +0.082,343.8,48857.0 +0.087,218.8,804140.0 +0.092,156.3,203589.0 +0.099,187.5,754479.0 +0.104,187.5,598712.0 +0.109,156.3,134178.0 +0.114,1531.5,151250.0 +0.119,187.5,449479.0 +0.124,156.3,550474.0 +0.131,218.8,150922.0 +0.136,218.8,333271.0 +0.141,343.8,198685.0 +0.146,156.3,185361.0 +0.151,187.5,170617.0 +0.156,156.3,177050.0 +0.163,1562.7,131212.0 +0.168,1562.7,237925.0 +0.173,187.5,388972.0 +0.178,1562.7,309881.0 +0.183,1562.7,171831.0 +0.188,218.8,393696.0 +0.195,1562.7,275987.0 +0.2,875.1,198294.0 +0.205,312.5,266419.0 +0.21,1562.7,124026.0 +0.215,343.8,396541.0 +0.22,906.4,214845.0 +0.227,218.8,496247.0 +0.232,312.5,210814.0 +0.237,1531.5,95261.0 +0.242,343.8,456913.0 +0.247,187.5,171615.0 +0.252,218.8,202708.0 +0.259,1562.7,186045.0 +0.264,312.5,206645.0 +0.269,1562.7,263621.0 +0.274,1562.7,238325.0 +0.279,218.8,288067.0 +0.284,1562.7,229210.0 +0.291,250.0,290341.0 +0.296,593.8,142955.0 +0.301,1218.9,88121.0 +0.306,343.8,298942.0 +0.311,1218.9,127028.0 +0.316,625.1,171037.0 +0.323,312.5,123315.0 +0.328,281.3,171876.0 +0.333,312.5,156964.0 +0.338,312.5,84999.0 +0.343,312.5,168340.0 +0.348,187.5,107635.0 +0.355,312.5,375616.0 +0.36,2406.6,94802.0 +0.365,312.5,320106.0 +0.37,250.0,171188.0 +0.375,375.1,142610.0 +0.38,281.3,486245.0 +0.387,312.5,153834.0 +0.392,343.8,424173.0 +0.397,125.0,192866.0 +0.402,375.1,361929.0 +0.407,250.0,406355.0 +0.412,1562.7,134196.0 +0.419,312.5,349289.0 +0.424,312.5,107234.0 +0.429,343.8,535300.0 +0.434,281.3,151837.0 +0.439,312.5,139682.0 +0.444,250.0,214676.0 +0.451,1531.5,167636.0 +0.456,312.5,211091.0 +0.461,875.1,206827.0 +0.466,312.5,220637.0 +0.471,1594.0,211631.0 +0.476,1562.7,124246.0 +0.483,937.6,124259.0 +0.488,343.8,96684.0 +0.493,1562.7,276212.0 +0.498,906.4,160775.0 +0.503,1562.7,113198.0 +0.508,1562.7,287276.0 +0.515,343.8,185337.0 +0.52,843.9,199313.0 +0.525,343.8,326527.0 +0.53,1562.7,158051.0 +0.535,562.6,110339.0 +0.54,593.8,118703.0 +0.547,187.5,126795.0 +0.552,375.1,51062.0 +0.557,281.3,89013.0 +0.562,312.5,159697.0 +0.567,250.0,193700.0 +0.572,250.0,158632.0 +0.579,1531.5,266368.0 +0.584,687.6,205287.0 +0.589,312.5,183310.0 +0.594,1562.7,144604.0 +0.599,625.1,180020.0 +0.604,1500.2,109718.0 +0.611,281.3,190414.0 +0.616,343.8,141260.0 +0.621,937.6,100248.0 +0.626,937.6,193070.0 +0.631,1562.7,269253.0 +0.636,1562.7,204013.0 +0.643,1594.0,111563.0 +0.648,1594.0,146072.0 +0.653,937.6,87308.0 +0.658,593.8,98614.0 +0.663,562.6,87342.0 +0.668,937.6,55663.0 +0.675,625.1,118661.0 +0.68,1594.0,63624.0 +0.685,906.4,135619.0 +0.69,781.4,88255.0 +0.695,656.3,116568.0 +0.7,812.6,113411.0 +0.707,1531.5,213193.0 +0.712,312.5,224170.0 +0.717,937.6,241298.0 +0.722,218.8,83478.0 +0.727,593.8,105370.0 +0.732,843.9,90364.0 +0.739,781.4,264145.0 +0.744,1218.9,158830.0 +0.749,812.6,283931.0 +0.754,812.6,179098.0 +0.759,468.8,116270.0 +0.764,625.1,184102.0 +0.771,375.1,156236.0 +0.776,593.8,133197.0 +0.781,625.1,197147.0 +0.786,625.1,260422.0 +0.791,1562.7,204852.0 +0.796,343.8,186950.0 +0.803,781.4,225873.0 +0.808,687.6,198207.0 +0.813,718.9,290781.0 +0.818,718.9,55129.0 +0.823,312.5,208741.0 +0.828,906.4,146642.0 +0.835,312.5,317242.0 +0.84,718.9,97413.0 +0.845,343.8,287525.0 +0.85,250.0,194513.0 +0.855,375.1,210715.0 +0.86,312.5,357158.0 +0.867,375.1,152181.0 +0.872,343.8,370179.0 +0.877,312.5,110729.0 +0.882,375.1,301775.0 +0.887,281.3,341274.0 +0.892,656.3,136691.0 +0.899,281.3,301424.0 +0.904,1562.7,248491.0 +0.909,343.8,425080.0 +0.914,656.3,149374.0 +0.919,1500.2,199901.0 +0.924,1531.5,244705.0 +0.931,312.5,101115.0 +0.936,343.8,215143.0 +0.941,906.4,101037.0 +0.946,875.1,154951.0 +0.951,187.5,55645.0 +0.956,312.5,99076.0 +0.963,906.4,119794.0 +0.968,1562.7,117588.0 +0.973,343.8,113060.0 +0.978,750.1,69546.0 +0.983,312.5,149748.0 +0.988,781.4,106313.0 +0.995,1562.7,141351.0 +1.0,1562.7,219187.0 +1.005,656.3,122956.0 +1.01,312.5,222748.0 +1.015,687.6,177553.0 +1.02,343.8,170223.0 +1.027,656.3,121990.0 +1.032,375.1,143782.0 +1.037,1562.7,109227.0 +1.042,312.5,121485.0 +1.047,593.8,84942.0 +1.052,343.8,151884.0 +1.059,2312.8,71512.0 +1.064,312.5,118443.0 +1.069,281.3,122998.0 +1.074,1562.7,223290.0 +1.079,1531.5,194271.0 +1.084,281.3,129262.0 +1.091,343.8,132960.0 +1.096,1531.5,135538.0 +1.101,343.8,348350.0 +1.106,625.1,118531.0 +1.111,406.3,141173.0 +1.116,375.1,183765.0 +1.123,156.3,106110.0 +1.128,375.1,293355.0 +1.133,312.5,102638.0 +1.138,375.1,261947.0 +1.143,843.9,264343.0 +1.148,875.1,248779.0 +1.155,375.1,240980.0 +1.16,812.6,214284.0 +1.165,375.1,154537.0 +1.17,1562.7,117279.0 +1.175,312.5,87837.0 +1.18,1562.7,90309.0 +1.187,250.0,93533.0 +1.192,250.0,64611.0 +1.197,375.1,79790.0 +1.202,250.0,95002.0 +1.207,281.3,52401.0 +1.212,281.3,152229.0 +1.219,937.6,91297.0 +1.224,375.1,124344.0 +1.229,343.8,91660.0 +1.234,312.5,94866.0 +1.239,312.5,264368.0 +1.244,625.1,100642.0 +1.251,312.5,210549.0 +1.256,718.9,53331.0 +1.261,343.8,105675.0 +1.266,156.3,325800.0 +1.271,187.5,324791.0 +1.276,125.0,604718.0 +1.283,1250.2,92250.0 +1.288,843.9,191527.0 +1.293,906.4,147188.0 +1.298,1594.0,107652.0 +1.303,1250.2,119648.0 +1.308,1531.5,100429.0 +1.315,250.0,100031.0 +1.32,437.6,154565.0 +1.325,343.8,273632.0 +1.33,218.8,99520.0 +1.335,343.8,226233.0 +1.34,937.6,214195.0 +1.347,937.6,101769.0 +1.352,406.3,207814.0 +1.357,906.4,224854.0 +1.362,906.4,198586.0 +1.367,187.5,352062.0 +1.372,437.6,307370.0 +1.379,906.4,232542.0 +1.384,937.6,67492.0 +1.389,875.1,239883.0 +1.394,500.1,142872.0 +1.399,343.8,198857.0 +1.404,1281.4,123578.0 +1.411,1281.4,159946.0 +1.416,375.1,209312.0 +1.421,406.3,138516.0 +1.426,250.0,162743.0 +1.431,406.3,153729.0 +1.436,375.1,279682.0 +1.443,343.8,110319.0 +1.448,1812.8,129253.0 +1.453,375.1,267830.0 +1.458,781.4,184705.0 +1.463,187.5,468214.0 +1.468,218.8,327915.0 +1.475,906.4,304418.0 +1.48,875.1,139258.0 +1.485,375.1,153536.0 +1.49,843.9,308724.0 +1.495,906.4,320536.0 +1.5,375.1,351847.0 +1.507,875.1,314824.0 +1.512,875.1,174523.0 +1.517,875.1,134459.0 +1.522,875.1,269002.0 +1.527,875.1,196192.0 +1.532,875.1,102241.0 +1.539,843.9,311708.0 +1.544,875.1,263495.0 +1.549,875.1,216648.0 +1.554,906.4,337448.0 +1.559,875.1,180527.0 +1.564,156.3,391681.0 +1.571,375.1,116488.0 +1.576,1250.2,154686.0 +1.581,125.0,107630.0 +1.586,906.4,398832.0 +1.591,1250.2,93052.0 +1.596,843.9,127083.0 +1.603,937.6,90187.0 +1.608,875.1,360728.0 +1.613,343.8,453356.0 +1.618,906.4,363943.0 +1.623,375.1,230840.0 +1.628,281.3,181134.0 +1.635,250.0,201569.0 +1.64,281.3,164538.0 +1.645,156.3,201875.0 +1.65,250.0,960713.0 +1.655,250.0,112614.0 +1.66,125.0,429594.0 +1.667,156.3,319639.0 +1.672,218.8,274544.0 +1.677,187.5,154977.0 +1.682,187.5,291860.0 +1.687,218.8,371846.0 +1.692,156.3,311621.0 +1.699,406.3,246878.0 +1.704,625.1,318309.0 +1.709,125.0,190632.0 +1.714,843.9,489254.0 +1.719,687.6,221242.0 +1.724,875.1,122659.0 +1.731,781.4,121080.0 +1.736,687.6,287652.0 +1.741,156.3,416922.0 +1.746,718.9,85912.0 +1.751,187.5,241268.0 +1.756,750.1,234704.0 +1.763,312.5,339695.0 +1.768,718.9,165813.0 +1.773,406.3,238926.0 +1.778,687.6,492346.0 +1.783,687.6,343292.0 +1.788,812.6,290462.0 +1.795,750.1,341760.0 +1.8,750.1,218404.0 +1.805,781.4,141530.0 +1.81,718.9,416715.0 +1.815,312.5,263912.0 +1.82,718.9,168073.0 +1.827,343.8,257744.0 +1.832,812.6,233206.0 +1.837,687.6,165896.0 +1.842,343.8,218942.0 +1.847,781.4,271041.0 +1.852,812.6,163393.0 +1.859,843.9,231429.0 +1.864,906.4,121598.0 +1.869,312.5,152832.0 +1.874,875.1,227172.0 +1.879,718.9,125394.0 +1.884,656.3,139635.0 +1.891,906.4,103513.0 +1.896,781.4,436088.0 +1.901,843.9,163778.0 +1.906,437.6,154754.0 +1.911,812.6,484233.0 +1.916,750.1,303336.0 +1.923,312.5,260307.0 +1.928,875.1,230740.0 +1.933,781.4,417401.0 +1.938,906.4,254679.0 +1.943,937.6,139455.0 +1.948,843.9,390653.0 +1.955,812.6,591354.0 +1.96,250.0,234296.0 +1.965,937.6,170602.0 +1.97,812.6,134138.0 +1.975,875.1,269400.0 +1.98,437.6,168584.0 +1.987,281.3,174534.0 +1.992,843.9,153824.0 +1.997,375.1,353415.0 +2.002,1469.0,225989.0 +2.007,750.1,319387.0 +2.012,343.8,276148.0 +2.019,1469.0,143298.0 +2.024,812.6,208067.0 +2.029,781.4,190302.0 +2.034,687.6,170426.0 +2.039,750.1,307161.0 +2.044,750.1,367178.0 +2.051,750.1,381452.0 +2.056,750.1,453316.0 +2.061,750.1,354284.0 +2.066,750.1,255852.0 +2.071,687.6,321801.0 +2.076,750.1,257469.0 +2.083,750.1,298671.0 +2.088,812.6,430114.0 +2.093,437.6,212234.0 +2.098,812.6,448039.0 +2.103,812.6,498891.0 +2.108,656.3,145828.0 +2.115,781.4,245905.0 +2.12,781.4,148925.0 +2.125,812.6,169606.0 +2.13,687.6,96986.0 +2.135,1125.2,158261.0 +2.14,843.9,123205.0 +2.147,1500.2,219586.0 +2.152,1500.2,189926.0 +2.157,1437.7,147847.0 +2.162,343.8,235079.0 +2.167,281.3,212279.0 +2.172,1437.7,118209.0 +2.179,312.5,135095.0 +2.184,1125.2,106727.0 +2.189,875.1,148744.0 +2.194,218.8,144332.0 +2.199,1437.7,100178.0 +2.204,218.8,197177.0 +2.211,1531.5,81362.0 +2.216,250.0,88594.0 +2.221,250.0,221985.0 +2.226,875.1,96736.0 +2.231,218.8,180100.0 +2.236,1500.2,127185.0 +2.243,1187.7,168907.0 +2.248,281.3,180151.0 +2.253,406.3,99295.0 +2.258,687.6,216786.0 +2.263,406.3,197568.0 +2.268,1500.2,185269.0 +2.275,281.3,153611.0 +2.28,406.3,137356.0 +2.285,218.8,217128.0 +2.29,718.9,146225.0 +2.295,437.6,159678.0 +2.3,1437.7,156224.0 +2.307,343.8,261985.0 +2.312,281.3,265453.0 +2.317,1469.0,130474.0 +2.322,406.3,201212.0 +2.327,750.1,143285.0 +2.332,312.5,298747.0 +2.339,1437.7,217609.0 +2.344,1781.5,160095.0 +2.349,1437.7,335023.0 +2.354,1406.4,207371.0 +2.359,343.8,117071.0 +2.364,781.4,170415.0 +2.371,812.6,83526.0 +2.376,375.1,146559.0 +2.381,906.4,100800.0 +2.386,343.8,197128.0 +2.391,1469.0,353636.0 +2.396,1437.7,193494.0 +2.403,406.3,220091.0 +2.408,437.6,128360.0 +2.413,343.8,117897.0 +2.418,281.3,216594.0 +2.423,343.8,215183.0 +2.428,875.1,334578.0 +2.435,875.1,347923.0 +2.44,937.6,140867.0 +2.445,281.3,207231.0 +2.45,343.8,216339.0 +2.455,406.3,78694.0 +2.46,375.1,118112.0 +2.467,406.3,96531.0 +2.472,281.3,233728.0 +2.477,312.5,226064.0 +2.482,781.4,188190.0 +2.487,343.8,79994.0 +2.492,781.4,144580.0 +2.499,812.6,156489.0 +2.504,156.3,79238.0 +2.509,1469.0,139773.0 +2.514,1437.7,263963.0 +2.519,1437.7,176597.0 +2.524,343.8,174597.0 +2.531,1437.7,180477.0 +2.536,1437.7,255715.0 +2.541,843.9,166285.0 +2.546,906.4,161414.0 +2.551,281.3,195846.0 +2.556,1125.2,119842.0 +2.563,875.1,150944.0 +2.568,1469.0,141456.0 +2.573,812.6,197964.0 +2.578,843.9,102793.0 +2.583,2219.1,105024.0 +2.588,781.4,81249.0 +2.595,1500.2,154644.0 +2.6,1469.0,145406.0 +2.605,1500.2,86711.0 +2.61,1531.5,94405.0 +2.615,375.1,112353.0 +2.62,843.9,110194.0 +2.627,843.9,286936.0 +2.632,718.9,104069.0 +2.637,750.1,169594.0 +2.642,406.3,289671.0 +2.647,812.6,292672.0 +2.652,437.6,193174.0 +2.659,781.4,141005.0 +2.664,687.6,110529.0 +2.669,406.3,414643.0 +2.674,781.4,72049.0 +2.679,781.4,89443.0 +2.684,406.3,257447.0 +2.691,1469.0,196329.0 +2.696,375.1,321229.0 +2.701,1406.4,117498.0 +2.706,312.5,236161.0 +2.711,406.3,235114.0 +2.716,1469.0,181044.0 +2.723,375.1,93667.0 +2.728,500.1,127808.0 +2.733,343.8,318717.0 +2.738,625.1,87002.0 +2.743,343.8,338485.0 +2.748,312.5,180411.0 +2.755,468.8,285586.0 +2.76,375.1,267249.0 +2.765,468.8,160875.0 +2.77,375.1,369415.0 +2.775,718.9,199591.0 +2.78,375.1,296553.0 +2.787,2312.8,166988.0 +2.792,343.8,80634.0 +2.797,406.3,229412.0 +2.802,1844.0,120756.0 +2.807,843.9,215969.0 +2.812,843.9,164333.0 +2.819,843.9,265805.0 +2.824,406.3,168665.0 +2.829,312.5,142692.0 +2.834,718.9,230249.0 +2.839,781.4,369995.0 +2.844,312.5,158649.0 +2.851,718.9,163322.0 +2.856,812.6,252115.0 +2.861,812.6,150243.0 +2.866,1437.7,132819.0 +2.871,1437.7,215661.0 +2.876,812.6,138467.0 +2.883,343.8,172350.0 +2.888,343.8,249096.0 +2.893,1469.0,109754.0 +2.898,343.8,309675.0 +2.903,281.3,261429.0 +2.908,1469.0,202799.0 +2.915,343.8,304004.0 +2.92,875.1,155991.0 +2.925,343.8,208961.0 +2.93,843.9,182481.0 +2.935,812.6,231456.0 +2.94,406.3,170322.0 +2.947,250.0,128708.0 +2.952,343.8,206080.0 +2.957,812.6,173704.0 +2.962,343.8,247106.0 +2.967,843.9,200074.0 +2.972,843.9,250514.0 +2.979,875.1,151299.0 +2.984,1781.5,70025.0 +2.989,375.1,200079.0 +2.994,687.6,155081.0 +2.999,781.4,292043.0 +3.004,375.1,164926.0 +3.011,781.4,334950.0 +3.016,375.1,209140.0 +3.021,781.4,289910.0 +3.026,937.6,233820.0 +3.031,843.9,329006.0 +3.036,843.9,226552.0 +3.043,406.3,145397.0 +3.048,375.1,175133.0 +3.053,1437.7,195238.0 +3.058,375.1,137858.0 +3.063,1156.4,142220.0 +3.068,1781.5,113248.0 +3.075,375.1,155489.0 +3.08,875.1,84697.0 +3.085,2187.8,122469.0 +3.09,437.6,53229.0 +3.095,375.1,114546.0 +3.1,343.8,89805.0 +3.107,687.6,78657.0 +3.112,843.9,146086.0 +3.117,875.1,59105.0 +3.122,156.3,100265.0 +3.127,1469.0,57935.0 +3.132,718.9,107045.0 +3.139,281.3,82756.0 +3.144,843.9,18442.0 +3.149,1125.2,37564.0 +3.154,1437.7,38833.0 +3.159,156.3,32641.0 +3.164,343.8,26736.0 +3.171,1500.2,35934.0 +3.176,312.5,130110.0 +3.181,1125.2,40872.0 +3.186,343.8,108487.0 +3.191,250.0,41228.0 +3.196,250.0,611109.0 +3.203,156.3,370677.0 +3.208,156.3,674663.0 +3.213,187.5,936920.0 +3.218,250.0,65124.0 +3.223,1812.8,107644.0 +3.228,1500.2,117382.0 +3.235,218.8,369599.0 +3.24,125.0,335962.0 +3.245,187.5,258371.0 +3.25,187.5,273441.0 +3.255,406.3,56336.0 +3.26,250.0,301780.0 +3.267,312.5,294454.0 +3.272,312.5,319418.0 +3.277,718.9,145320.0 +3.282,187.5,428188.0 +3.287,843.9,203128.0 +3.292,125.0,116513.0 +3.299,218.8,318955.0 +3.304,1562.7,146534.0 +3.309,218.8,216426.0 +3.314,406.3,112236.0 +3.319,187.5,296716.0 +3.324,968.9,65712.0 +3.331,1562.7,91424.0 +3.336,250.0,547451.0 +3.341,1906.5,77880.0 +3.346,375.1,157317.0 +3.351,125.0,190203.0 +3.356,718.9,81972.0 +3.363,218.8,171077.0 +3.368,1562.7,171978.0 +3.373,312.5,161100.0 +3.378,1594.0,91345.0 +3.383,1562.7,173364.0 +3.388,156.3,500390.0 +3.395,375.1,123960.0 +3.4,187.5,127404.0 +3.405,187.5,202158.0 +3.41,312.5,203059.0 +3.415,937.6,111417.0 +3.42,312.5,274129.0 +3.427,687.6,58615.0 +3.432,1218.9,130104.0 +3.437,218.8,224529.0 +3.442,125.0,125047.0 +3.447,343.8,168861.0 +3.452,468.8,130237.0 +3.459,312.5,380524.0 +3.464,156.3,440348.0 +3.469,437.6,125438.0 +3.474,218.8,165364.0 +3.479,1531.5,116088.0 +3.484,343.8,258364.0 +3.491,218.8,161427.0 +3.496,343.8,201396.0 +3.501,531.3,91855.0 +3.506,156.3,215263.0 +3.511,375.1,346938.0 +3.516,218.8,165740.0 +3.523,906.4,286405.0 +3.528,937.6,281840.0 +3.533,312.5,268426.0 +3.538,968.9,181979.0 +3.543,937.6,305576.0 +3.548,937.6,241642.0 +3.555,1531.5,205975.0 +3.56,218.8,408399.0 +3.565,250.0,213144.0 +3.57,875.1,276558.0 +3.575,250.0,265441.0 +3.58,343.8,153330.0 +3.587,281.3,173495.0 +3.592,281.3,298080.0 +3.597,250.0,242366.0 +3.602,312.5,181338.0 +3.607,906.4,330454.0 +3.612,218.8,357396.0 +3.619,343.8,226610.0 +3.624,906.4,194763.0 +3.629,343.8,320064.0 +3.634,375.1,95277.0 +3.639,1562.7,134142.0 +3.644,406.3,192137.0 +3.651,281.3,185594.0 +3.656,312.5,189585.0 +3.661,250.0,378959.0 +3.666,343.8,161604.0 +3.671,375.1,59744.0 +3.676,250.0,260529.0 +3.683,1562.7,481771.0 +3.688,906.4,240976.0 +3.693,906.4,163100.0 +3.698,250.0,261223.0 +3.703,312.5,100826.0 +3.708,1531.5,141880.0 +3.715,250.0,305098.0 +3.72,218.8,120176.0 +3.725,937.6,178935.0 +3.73,906.4,172592.0 +3.735,906.4,367183.0 +3.74,250.0,336695.0 +3.747,937.6,165200.0 +3.752,281.3,181882.0 +3.757,343.8,155417.0 +3.762,343.8,247146.0 +3.767,343.8,151955.0 +3.772,375.1,74280.0 +3.779,250.0,140824.0 +3.784,1531.5,244869.0 +3.789,281.3,194054.0 +3.794,1562.7,64390.0 +3.799,1906.5,117449.0 +3.804,281.3,116167.0 +3.811,1562.7,131511.0 +3.816,218.8,435282.0 +3.821,562.6,132826.0 +3.826,875.1,429626.0 +3.831,906.4,189500.0 +3.836,906.4,110057.0 +3.843,312.5,278930.0 +3.848,562.6,140911.0 +3.853,875.1,199059.0 +3.858,1531.5,167451.0 +3.863,1531.5,209316.0 +3.868,187.5,198369.0 +3.875,1062.7,79018.0 +3.88,250.0,160269.0 +3.885,1531.5,50880.0 +3.89,343.8,137005.0 +3.895,1156.4,81358.0 +3.9,937.6,87463.0 +3.907,281.3,67835.0 +3.912,937.6,53395.0 +3.917,250.0,164211.0 +3.922,218.8,62879.0 +3.927,625.1,71545.0 +3.932,187.5,50192.0 +3.939,218.8,71871.0 +3.944,218.8,77582.0 +3.949,281.3,54657.0 +3.954,250.0,82191.0 +3.959,687.6,45558.0 +3.964,468.8,34208.0 +3.971,156.3,107631.0 +3.976,937.6,118582.0 +3.981,625.1,104983.0 +3.986,1531.5,125039.0 +3.991,1562.7,138893.0 +3.996,1531.5,277001.0 +4.003,1531.5,198559.0 +4.008,1562.7,154201.0 +4.013,875.1,158279.0 +4.018,812.6,109198.0 +4.023,437.6,199116.0 +4.028,343.8,205381.0 +4.035,625.1,133339.0 +4.04,375.1,295625.0 +4.045,375.1,121331.0 +4.05,375.1,195954.0 +4.055,343.8,122640.0 +4.06,1594.0,46111.0 +4.067,687.6,180497.0 +4.072,1000.1,83031.0 +4.077,875.1,132584.0 +4.082,1562.7,143049.0 +4.087,1562.7,180231.0 +4.092,1562.7,311837.0 +4.099,1531.5,309363.0 +4.104,1562.7,249944.0 +4.109,1594.0,175220.0 +4.114,312.5,144787.0 +4.119,1281.4,59193.0 +4.124,406.3,142985.0 +4.131,1625.2,96744.0 +4.136,406.3,134592.0 +4.141,1562.7,317421.0 +4.146,1562.7,217409.0 +4.151,1562.7,350950.0 +4.156,1562.7,390707.0 +4.163,1531.5,243206.0 +4.168,1531.5,178292.0 +4.173,1250.2,180205.0 +4.178,406.3,131879.0 +4.183,906.4,106284.0 +4.188,375.1,236833.0 +4.195,2406.6,67522.0 +4.2,375.1,231598.0 +4.205,1218.9,115931.0 +4.21,3125.4,35632.0 +4.215,375.1,119498.0 +4.22,843.9,39229.0 +4.227,343.8,202840.0 +4.232,531.3,88318.0 +4.237,343.8,221509.0 +4.242,875.1,82467.0 +4.247,1594.0,177913.0 +4.252,406.3,169476.0 +4.259,375.1,152581.0 +4.264,312.5,270172.0 +4.269,687.6,228623.0 +4.274,312.5,164270.0 +4.279,218.8,184725.0 +4.284,375.1,271682.0 +4.291,343.8,117625.0 +4.296,3094.2,76772.0 +4.301,968.9,229586.0 +4.306,906.4,213474.0 +4.311,281.3,182980.0 +4.316,343.8,304755.0 +4.323,343.8,229320.0 +4.328,406.3,129315.0 +4.333,812.6,223768.0 +4.338,343.8,220266.0 +4.343,750.1,169189.0 +4.348,375.1,367522.0 +4.355,406.3,173252.0 +4.36,156.3,337211.0 +4.365,750.1,192772.0 +4.37,375.1,415748.0 +4.375,750.1,218741.0 +4.38,2344.1,81914.0 +4.387,843.9,249075.0 +4.392,312.5,131214.0 +4.397,687.6,168608.0 +4.402,250.0,122643.0 +4.407,656.3,147109.0 +4.412,687.6,195507.0 +4.419,343.8,225884.0 +4.424,718.9,195661.0 +4.429,750.1,164990.0 +4.434,656.3,192693.0 +4.439,281.3,166611.0 +4.444,718.9,123897.0 +4.451,406.3,361604.0 +4.456,1343.9,153178.0 +4.461,718.9,175824.0 +4.466,375.1,450600.0 +4.471,718.9,177455.0 +4.476,343.8,206888.0 +4.483,750.1,308008.0 +4.488,1343.9,148504.0 +4.493,906.4,382166.0 +4.498,937.6,162502.0 +4.503,312.5,254504.0 +4.508,875.1,359239.0 +4.515,343.8,132614.0 +4.52,1343.9,216207.0 +4.525,906.4,282763.0 +4.53,906.4,305320.0 +4.535,968.9,117976.0 +4.54,843.9,382728.0 +4.547,906.4,406340.0 +4.552,375.1,348394.0 +4.557,1343.9,96910.0 +4.562,875.1,362526.0 +4.567,312.5,112449.0 +4.572,1312.7,168846.0 +4.579,875.1,138266.0 +4.584,812.6,329721.0 +4.589,343.8,268311.0 +4.594,875.1,131881.0 +4.599,968.9,338016.0 +4.604,968.9,97090.0 +4.611,906.4,246271.0 +4.616,937.6,482875.0 +4.621,812.6,94186.0 +4.626,875.1,216783.0 +4.631,875.1,180034.0 +4.636,406.3,144322.0 +4.643,843.9,174876.0 +4.648,937.6,242245.0 +4.653,437.6,209354.0 +4.658,968.9,261852.0 +4.663,3094.2,228703.0 +4.668,781.4,158432.0 +4.675,875.1,193372.0 +4.68,843.9,243388.0 +4.685,1031.4,122046.0 +4.69,906.4,123694.0 +4.695,3094.2,166735.0 +4.7,343.8,175629.0 +4.707,1000.1,146765.0 +4.712,2594.1,109309.0 +4.717,937.6,93745.0 +4.722,375.1,81856.0 +4.727,343.8,116404.0 +4.732,718.9,88875.0 +4.739,250.0,688403.0 +4.744,187.5,176190.0 +4.749,187.5,347738.0 +4.754,156.3,576313.0 +4.759,843.9,486206.0 +4.764,218.8,286772.0 +4.771,875.1,571070.0 +4.776,156.3,314848.0 +4.781,125.0,298029.0 +4.786,875.1,357143.0 +4.791,437.6,498823.0 +4.796,843.9,643105.0 +4.803,843.9,339292.0 +4.808,875.1,258618.0 +4.813,312.5,656632.0 +4.818,812.6,434233.0 +4.823,937.6,275688.0 +4.828,375.1,1014973.0 +4.835,937.6,228744.0 +4.84,843.9,509399.0 +4.845,406.3,399225.0 +4.85,937.6,319405.0 +4.855,406.3,479453.0 +4.86,406.3,632300.0 +4.867,218.8,321014.0 +4.872,406.3,266528.0 +4.877,406.3,457818.0 +4.882,250.0,503046.0 +4.887,406.3,714721.0 +4.892,375.1,323560.0 +4.899,375.1,428166.0 +4.904,406.3,444763.0 +4.909,718.9,242505.0 +4.914,375.1,331836.0 +4.919,750.1,387533.0 +4.924,750.1,269914.0 +4.931,375.1,344491.0 +4.936,750.1,427628.0 +4.941,125.0,218458.0 +4.946,406.3,358592.0 +4.951,812.6,235867.0 +4.956,156.3,347636.0 +4.963,406.3,267283.0 +4.968,375.1,254803.0 +4.973,250.0,451322.0 +4.978,406.3,199669.0 +4.983,406.3,230885.0 +4.988,875.1,215756.0 +4.995,125.0,256692.0 +5.0,843.9,178938.0 +5.005,406.3,244109.0 +5.01,156.3,471021.0 +5.015,1406.4,173944.0 +5.02,250.0,220327.0 +5.027,843.9,152018.0 +5.032,843.9,233476.0 +5.037,406.3,427401.0 +5.042,875.1,276986.0 +5.047,250.0,225831.0 +5.052,343.8,394483.0 +5.059,1156.4,98741.0 +5.064,375.1,348377.0 +5.069,875.1,444972.0 +5.074,218.8,294666.0 +5.079,312.5,287349.0 +5.084,281.3,155795.0 +5.091,875.1,390707.0 +5.096,875.1,570349.0 +5.101,187.5,369194.0 +5.106,875.1,157474.0 +5.111,343.8,280473.0 +5.116,125.0,233313.0 +5.123,1781.5,159828.0 +5.128,187.5,206568.0 +5.133,1781.5,138742.0 +5.138,312.5,343285.0 +5.143,718.9,132717.0 +5.148,406.3,124511.0 +5.155,187.5,191168.0 +5.16,843.9,95317.0 +5.165,343.8,179402.0 +5.17,875.1,290289.0 +5.175,187.5,220121.0 +5.18,375.1,180245.0 +5.187,843.9,510000.0 +5.192,250.0,269311.0 +5.197,406.3,344562.0 +5.202,750.1,414598.0 +5.207,718.9,200202.0 +5.212,375.1,307805.0 +5.219,750.1,102412.0 +5.224,375.1,220295.0 +5.229,156.3,318649.0 +5.234,1469.0,144993.0 +5.239,375.1,305461.0 +5.244,312.5,182635.0 +5.251,375.1,187145.0 +5.256,437.6,282758.0 +5.261,812.6,318184.0 +5.266,343.8,244953.0 +5.271,343.8,294187.0 +5.276,1281.4,68300.0 +5.283,156.3,414580.0 +5.288,1500.2,89965.0 +5.293,781.4,228450.0 +5.298,281.3,198714.0 +5.303,812.6,198116.0 +5.308,750.1,160020.0 +5.315,750.1,259462.0 +5.32,687.6,78959.0 +5.325,812.6,195934.0 +5.33,906.4,105981.0 +5.335,843.9,202753.0 +5.34,156.3,240753.0 +5.347,875.1,173413.0 +5.352,875.1,151206.0 +5.357,250.0,246521.0 +5.362,437.6,115878.0 +5.367,125.0,176989.0 +5.372,2219.1,246191.0 +5.379,437.6,180942.0 +5.384,375.1,214332.0 +5.389,875.1,240446.0 +5.394,437.6,186506.0 +5.399,437.6,89711.0 +5.404,218.8,80510.0 +5.411,406.3,230906.0 +5.416,1375.2,98059.0 +5.421,406.3,157817.0 +5.426,437.6,101276.0 +5.431,187.5,69945.0 +5.436,343.8,107125.0 +5.443,781.4,95673.0 +5.448,218.8,104777.0 +5.453,781.4,171363.0 +5.458,187.5,98538.0 +5.463,187.5,108819.0 +5.468,687.6,63912.0 +5.475,218.8,120165.0 +5.48,375.1,78253.0 +5.485,187.5,48610.0 +5.49,250.0,76548.0 +5.495,375.1,77713.0 +5.5,593.8,294058.0 +5.507,656.3,110891.0 +5.512,156.3,353831.0 +5.517,250.0,189166.0 +5.522,1469.0,229333.0 +5.527,250.0,203405.0 +5.532,718.9,127568.0 +5.539,750.1,124700.0 +5.544,1781.5,164684.0 +5.549,781.4,165206.0 +5.554,2312.8,103642.0 +5.559,375.1,321500.0 +5.564,781.4,216853.0 +5.571,781.4,193691.0 +5.576,718.9,105922.0 +5.581,781.4,269309.0 +5.586,750.1,237202.0 +5.591,687.6,283218.0 +5.596,687.6,209797.0 +5.603,1812.8,241285.0 +5.608,781.4,192409.0 +5.613,1812.8,248567.0 +5.618,718.9,228045.0 +5.623,375.1,226900.0 +5.628,750.1,210910.0 +5.635,406.3,478258.0 +5.64,781.4,282906.0 +5.645,750.1,254122.0 +5.65,406.3,303137.0 +5.655,750.1,263444.0 +5.66,781.4,306293.0 +5.667,781.4,432334.0 +5.672,750.1,439671.0 +5.677,718.9,278440.0 +5.682,750.1,375955.0 +5.687,750.1,249160.0 +5.692,1750.2,190437.0 +5.699,750.1,251875.0 +5.704,750.1,226065.0 +5.709,750.1,248670.0 +5.714,2312.8,144754.0 +5.719,2281.6,193880.0 +5.724,718.9,233583.0 +5.731,781.4,135852.0 +5.736,718.9,119202.0 +5.741,468.8,53674.0 +5.746,781.4,95169.0 +5.751,812.6,114496.0 +5.756,1469.0,87722.0 +5.763,750.1,74312.0 +5.768,1156.4,118296.0 +5.773,1812.8,172722.0 +5.778,750.1,140945.0 +5.783,1812.8,227845.0 +5.788,375.1,145018.0 +5.795,1218.9,116392.0 +5.8,375.1,230507.0 +5.805,375.1,170420.0 +5.81,1187.7,119070.0 +5.815,437.6,332160.0 +5.82,437.6,210848.0 +5.827,2344.1,164543.0 +5.832,406.3,420280.0 +5.837,1156.4,133758.0 +5.842,406.3,245252.0 +5.847,406.3,310301.0 +5.852,750.1,181916.0 +5.859,375.1,381142.0 +5.864,718.9,382033.0 +5.869,625.1,182053.0 +5.874,406.3,288334.0 +5.879,812.6,406495.0 +5.884,1750.2,182949.0 +5.891,406.3,191513.0 +5.896,750.1,374000.0 +5.901,812.6,214213.0 +5.906,406.3,250575.0 +5.911,781.4,307782.0 +5.916,781.4,221188.0 +5.923,687.6,229950.0 +5.928,375.1,145460.0 +5.933,343.8,365658.0 +5.938,843.9,199643.0 +5.943,375.1,242138.0 +5.948,343.8,224039.0 +5.955,343.8,274729.0 +5.96,375.1,239742.0 +5.965,375.1,201482.0 +5.97,843.9,219471.0 +5.975,812.6,226072.0 +5.98,625.1,171027.0 +5.987,343.8,192145.0 +5.992,781.4,181122.0 +5.997,1156.4,238324.0 +6.002,437.6,188235.0 +6.007,343.8,303161.0 +6.012,375.1,171211.0 +6.019,343.8,356043.0 +6.024,2344.1,152965.0 +6.029,375.1,252553.0 +6.034,375.1,342880.0 +6.039,343.8,188320.0 +6.044,2281.6,248918.0 +6.051,718.9,347902.0 +6.056,718.9,324698.0 +6.061,375.1,186765.0 +6.066,281.3,212275.0 +6.071,437.6,161380.0 +6.076,437.6,157212.0 +6.083,375.1,225036.0 +6.088,406.3,342937.0 +6.093,343.8,291595.0 +6.098,406.3,242510.0 +6.103,375.1,377761.0 +6.108,343.8,448293.0 +6.115,406.3,346419.0 +6.12,375.1,365937.0 +6.125,375.1,159607.0 +6.13,375.1,288593.0 +6.135,375.1,297001.0 +6.14,312.5,201097.0 +6.147,406.3,396087.0 +6.152,406.3,272550.0 +6.157,406.3,232073.0 +6.162,375.1,446257.0 +6.167,343.8,283948.0 +6.172,343.8,425922.0 +6.179,375.1,255042.0 +6.184,343.8,256025.0 +6.189,406.3,185708.0 +6.194,343.8,198014.0 +6.199,343.8,218207.0 +6.204,343.8,178879.0 +6.211,375.1,184205.0 +6.216,437.6,137655.0 +6.221,1187.7,157423.0 +6.226,406.3,234824.0 +6.231,375.1,151540.0 +6.236,718.9,145157.0 +6.243,406.3,265525.0 +6.248,406.3,154451.0 +6.253,406.3,222411.0 +6.258,375.1,342421.0 +6.263,156.3,1327738.0 +6.268,125.0,1800794.0 +6.275,187.5,426407.0 +6.28,218.8,556106.0 +6.285,1469.0,250772.0 +6.29,812.6,184611.0 +6.295,125.0,222946.0 +6.3,156.3,382975.0 +6.307,125.0,238769.0 +6.312,218.8,486341.0 +6.317,156.3,267160.0 +6.322,781.4,305778.0 +6.327,375.1,468582.0 +6.332,281.3,355466.0 +6.339,312.5,324694.0 +6.344,843.9,154302.0 +6.349,218.8,191396.0 +6.354,406.3,375476.0 +6.359,468.8,160398.0 +6.364,250.0,670734.0 +6.371,156.3,295347.0 +6.376,250.0,77090.0 +6.381,468.8,531145.0 +6.386,187.5,209537.0 +6.391,375.1,350873.0 +6.396,468.8,457753.0 +6.403,468.8,277519.0 +6.408,468.8,287946.0 +6.413,343.8,624404.0 +6.418,156.3,230729.0 +6.423,468.8,456884.0 +6.428,250.0,233875.0 +6.435,437.6,474172.0 +6.44,406.3,666910.0 +6.445,1531.5,194304.0 +6.45,468.8,336781.0 +6.455,437.6,208803.0 +6.46,125.0,166212.0 +6.467,437.6,700983.0 +6.472,500.1,175071.0 +6.477,406.3,701177.0 +6.482,500.1,331547.0 +6.487,468.8,229849.0 +6.492,437.6,372862.0 +6.499,375.1,215296.0 +6.504,437.6,334909.0 +6.509,468.8,544874.0 +6.514,250.0,144938.0 +6.519,406.3,578504.0 +6.524,406.3,284196.0 +6.531,437.6,378230.0 +6.536,437.6,381287.0 +6.541,1281.4,173375.0 +6.546,875.1,227397.0 +6.551,375.1,530207.0 +6.556,437.6,146243.0 +6.563,375.1,810931.0 +6.568,281.3,305581.0 +6.573,156.3,399401.0 +6.578,875.1,398158.0 +6.583,1437.7,114922.0 +6.588,343.8,869091.0 +6.595,2719.1,110663.0 +6.6,437.6,526856.0 +6.605,218.8,236581.0 +6.61,156.3,324318.0 +6.615,406.3,411381.0 +6.62,906.4,358818.0 +6.627,343.8,397172.0 +6.632,187.5,258655.0 +6.637,250.0,483716.0 +6.642,468.8,224704.0 +6.647,843.9,206103.0 +6.652,343.8,251610.0 +6.659,156.3,209133.0 +6.664,250.0,261857.0 +6.669,875.1,138085.0 +6.674,937.6,141500.0 +6.679,375.1,181053.0 +6.684,343.8,197191.0 +6.691,906.4,253946.0 +6.696,437.6,240895.0 +6.701,906.4,486515.0 +6.706,937.6,396528.0 +6.711,968.9,237756.0 +6.716,937.6,271930.0 +6.723,937.6,312169.0 +6.728,875.1,493781.0 +6.733,937.6,189213.0 +6.738,375.1,198581.0 +6.743,1500.2,209843.0 +6.748,1469.0,176520.0 +6.755,1250.2,119744.0 +6.76,2281.6,147778.0 +6.765,312.5,206271.0 +6.77,875.1,202592.0 +6.775,812.6,188741.0 +6.78,1406.4,208005.0 +6.787,875.1,197831.0 +6.792,250.0,180163.0 +6.797,437.6,139939.0 +6.802,906.4,283423.0 +6.807,906.4,130157.0 +6.812,906.4,72340.0 +6.819,2312.8,94303.0 +6.824,1562.7,79179.0 +6.829,312.5,182389.0 +6.834,156.3,197750.0 +6.839,1906.5,97366.0 +6.844,875.1,161715.0 +6.851,1875.3,121459.0 +6.856,2344.1,146647.0 +6.861,2344.1,114472.0 +6.866,2344.1,138512.0 +6.871,2344.1,197382.0 +6.876,250.0,96112.0 +6.883,156.3,206537.0 +6.888,2344.1,145342.0 +6.893,1469.0,145902.0 +6.898,1437.7,88089.0 +6.903,187.5,68852.0 +6.908,156.3,151263.0 +6.915,1437.7,274088.0 +6.92,2344.1,136139.0 +6.925,1562.7,141155.0 +6.93,1500.2,221336.0 +6.935,937.6,172541.0 +6.94,1469.0,170630.0 +6.947,1000.1,164079.0 +6.952,968.9,174354.0 +6.957,1375.2,120801.0 +6.962,1437.7,256701.0 +6.967,1500.2,167336.0 +6.972,1875.3,104033.0 +6.979,1406.4,213074.0 +6.984,218.8,83113.0 +6.989,187.5,151995.0 +6.994,1375.2,163294.0 +6.999,875.1,211587.0 +7.004,1031.4,115279.0 +7.011,968.9,161287.0 +7.016,875.1,310090.0 +7.021,906.4,124944.0 +7.026,218.8,316566.0 +7.031,156.3,217416.0 +7.036,156.3,664159.0 +7.043,1375.2,125809.0 +7.048,906.4,199326.0 +7.053,906.4,329833.0 +7.058,1437.7,217402.0 +7.063,1469.0,234556.0 +7.068,1031.4,83050.0 +7.075,1562.7,90978.0 +7.08,1531.5,143776.0 +7.085,875.1,60211.0 +7.09,2344.1,228851.0 +7.095,937.6,119871.0 +7.1,1406.4,148848.0 +7.107,906.4,116693.0 +7.112,1437.7,334713.0 +7.117,437.6,136356.0 +7.122,1406.4,246405.0 +7.127,1375.2,135416.0 +7.132,1469.0,296143.0 +7.139,937.6,89328.0 +7.144,906.4,265881.0 +7.149,812.6,63753.0 +7.154,156.3,90667.0 +7.159,375.1,135137.0 +7.164,906.4,166516.0 +7.171,406.3,139190.0 +7.176,812.6,130413.0 +7.181,906.4,100678.0 +7.186,437.6,299335.0 +7.191,281.3,124798.0 +7.196,1406.4,164211.0 +7.203,406.3,304278.0 +7.208,1406.4,219055.0 +7.213,1406.4,111321.0 +7.218,906.4,116174.0 +7.223,468.8,83746.0 +7.228,1437.7,130837.0 +7.235,1500.2,115300.0 +7.24,343.8,194959.0 +7.245,1375.2,120779.0 +7.25,1437.7,246311.0 +7.255,1406.4,174244.0 +7.26,1406.4,122234.0 +7.267,406.3,125794.0 +7.272,906.4,112773.0 +7.277,1156.4,110892.0 +7.282,1469.0,159202.0 +7.287,968.9,114168.0 +7.292,375.1,99424.0 +7.299,1562.7,126595.0 +7.304,406.3,192260.0 +7.309,468.8,239444.0 +7.314,218.8,297851.0 +7.319,468.8,243855.0 +7.324,437.6,323299.0 +7.331,437.6,221500.0 +7.336,406.3,365499.0 +7.341,781.4,139036.0 +7.346,468.8,210211.0 +7.351,281.3,283457.0 +7.356,437.6,87106.0 +7.363,406.3,236419.0 +7.368,406.3,67651.0 +7.373,437.6,132960.0 +7.378,406.3,72546.0 +7.383,1437.7,42547.0 +7.388,406.3,202330.0 +7.395,843.9,102415.0 +7.4,312.5,245162.0 +7.405,187.5,194874.0 +7.41,218.8,292137.0 +7.415,156.3,465477.0 +7.42,968.9,204227.0 +7.427,375.1,146161.0 +7.432,437.6,209211.0 +7.437,375.1,172065.0 +7.442,1281.4,90961.0 +7.447,1343.9,102351.0 +7.452,406.3,295361.0 +7.459,406.3,480911.0 +7.464,1312.7,117662.0 +7.469,968.9,215559.0 +7.474,437.6,257788.0 +7.479,1281.4,163795.0 +7.484,437.6,223998.0 +7.491,843.9,132176.0 +7.496,468.8,229961.0 +7.501,406.3,147240.0 +7.506,937.6,176158.0 +7.511,875.1,94814.0 +7.516,406.3,110620.0 +7.523,437.6,538587.0 +7.528,468.8,120155.0 +7.533,843.9,157692.0 +7.538,812.6,172061.0 +7.543,1312.7,115915.0 +7.548,406.3,179367.0 +7.555,437.6,385221.0 +7.56,1281.4,115921.0 +7.565,1312.7,161073.0 +7.57,375.1,235833.0 +7.575,1312.7,127115.0 +7.58,1312.7,161020.0 +7.587,375.1,230047.0 +7.592,468.8,281149.0 +7.597,875.1,139584.0 +7.602,937.6,110045.0 +7.607,875.1,121361.0 +7.612,406.3,207475.0 +7.619,875.1,168750.0 +7.624,843.9,187485.0 +7.629,875.1,250830.0 +7.634,875.1,405363.0 +7.639,906.4,298833.0 +7.644,843.9,371937.0 +7.651,937.6,572733.0 +7.656,906.4,209821.0 +7.661,843.9,211301.0 +7.666,843.9,477354.0 +7.671,875.1,183215.0 +7.676,843.9,301547.0 +7.683,875.1,322765.0 +7.688,843.9,255081.0 +7.693,875.1,288374.0 +7.698,843.9,500940.0 +7.703,1281.4,183184.0 +7.708,843.9,231452.0 +7.715,1625.2,197247.0 +7.72,1562.7,97141.0 +7.725,1625.2,239265.0 +7.73,906.4,336554.0 +7.735,1281.4,66948.0 +7.74,1000.1,156511.0 +7.747,1625.2,136546.0 +7.752,812.6,277577.0 +7.757,1562.7,123921.0 +7.762,906.4,296376.0 +7.767,812.6,74496.0 +7.772,937.6,163359.0 +7.779,250.0,577916.0 +7.784,156.3,710469.0 +7.789,218.8,786217.0 +7.794,187.5,230216.0 +7.799,218.8,1305330.0 +7.804,156.3,877164.0 +7.811,187.5,291859.0 +7.816,125.0,214179.0 +7.821,218.8,493265.0 +7.826,312.5,200090.0 +7.831,218.8,344020.0 +7.836,218.8,583526.0 +7.843,156.3,262534.0 +7.848,125.0,154184.0 +7.853,218.8,278013.0 +7.858,1500.2,148368.0 +7.863,843.9,185470.0 +7.868,437.6,112926.0 +7.875,250.0,165499.0 +7.88,218.8,206517.0 +7.885,1343.9,111506.0 +7.89,187.5,445239.0 +7.895,156.3,467954.0 +7.9,343.8,250882.0 +7.907,843.9,217955.0 +7.912,2219.1,195568.0 +7.917,1500.2,175949.0 +7.922,1500.2,151135.0 +7.927,1531.5,152665.0 +7.932,375.1,209584.0 +7.939,125.0,260388.0 +7.944,250.0,184530.0 +7.949,1281.4,138759.0 +7.954,2187.8,110106.0 +7.959,1343.9,147771.0 +7.964,375.1,239636.0 +7.971,1375.2,100379.0 +7.976,343.8,236371.0 +7.981,343.8,207972.0 +7.986,156.3,121139.0 +7.991,875.1,226433.0 +7.996,312.5,324736.0 +8.003,937.6,130046.0 +8.008,375.1,240276.0 +8.013,875.1,394412.0 +8.018,875.1,298947.0 +8.023,375.1,209380.0 +8.028,875.1,241442.0 +8.035,875.1,218259.0 +8.04,1312.7,220282.0 +8.045,1281.4,209572.0 +8.05,312.5,304751.0 +8.055,187.5,134346.0 +8.06,343.8,204715.0 +8.067,687.6,123055.0 +8.072,1312.7,59184.0 +8.077,812.6,235012.0 +8.082,250.0,166788.0 +8.087,312.5,58483.0 +8.092,187.5,122337.0 +8.099,281.3,127336.0 +8.104,812.6,185425.0 +8.109,218.8,164694.0 +8.114,812.6,272295.0 +8.119,812.6,227398.0 +8.124,375.1,207043.0 +8.131,937.6,117434.0 +8.136,281.3,343567.0 +8.141,843.9,271793.0 +8.146,218.8,138767.0 +8.151,343.8,172907.0 +8.156,562.6,232684.0 +8.163,156.3,301384.0 +8.168,125.0,199448.0 +8.173,187.5,123809.0 +8.178,375.1,125907.0 +8.183,1437.7,169737.0 +8.188,406.3,146640.0 +8.195,312.5,150046.0 +8.2,250.0,233967.0 +8.205,1343.9,88476.0 +8.21,781.4,130636.0 +8.215,1375.2,152717.0 +8.22,1375.2,235259.0 +8.227,1375.2,134567.0 +8.232,1437.7,296542.0 +8.237,1469.0,199101.0 +8.242,312.5,176814.0 +8.247,406.3,229384.0 +8.252,406.3,260561.0 +8.259,218.8,71825.0 +8.264,406.3,202273.0 +8.269,812.6,152922.0 +8.274,281.3,89807.0 +8.279,437.6,430378.0 +8.284,750.1,184301.0 +8.291,156.3,188974.0 +8.296,343.8,424217.0 +8.301,812.6,308321.0 +8.306,125.0,229724.0 +8.311,406.3,206884.0 +8.316,781.4,392189.0 +8.323,781.4,281918.0 +8.328,718.9,127989.0 +8.333,750.1,241680.0 +8.338,781.4,274975.0 +8.343,718.9,313319.0 +8.348,687.6,196376.0 +8.355,781.4,183268.0 +8.36,781.4,471797.0 +8.365,1500.2,127182.0 +8.37,406.3,164142.0 +8.375,812.6,381438.0 +8.38,875.1,300676.0 +8.387,875.1,320884.0 +8.392,875.1,330186.0 +8.397,906.4,250724.0 +8.402,875.1,396029.0 +8.407,843.9,366826.0 +8.412,906.4,265957.0 +8.419,906.4,275376.0 +8.424,875.1,418734.0 +8.429,843.9,364988.0 +8.434,906.4,201043.0 +8.439,843.9,345026.0 +8.444,843.9,232891.0 +8.451,875.1,140458.0 +8.456,906.4,89679.0 +8.461,843.9,71776.0 +8.466,375.1,294733.0 +8.471,2594.1,55519.0 +8.476,437.6,84583.0 +8.483,468.8,47249.0 +8.488,1469.0,43189.0 +8.493,375.1,230953.0 +8.498,218.8,56458.0 +8.503,406.3,120601.0 +8.508,437.6,124729.0 +8.515,218.8,52104.0 +8.52,343.8,142746.0 +8.525,375.1,66958.0 +8.53,500.1,127139.0 +8.535,218.8,560723.0 +8.54,125.0,185955.0 +8.547,375.1,210827.0 +8.552,125.0,383074.0 +8.557,1000.1,112072.0 +8.562,437.6,117905.0 +8.567,281.3,168661.0 +8.572,406.3,103876.0 +8.579,1437.7,252268.0 +8.584,1531.5,204375.0 +8.589,343.8,324782.0 +8.594,718.9,119112.0 +8.599,687.6,99443.0 +8.604,437.6,167229.0 +8.611,843.9,133421.0 +8.616,343.8,201479.0 +8.621,343.8,136750.0 +8.626,1093.9,91051.0 +8.631,1562.7,203751.0 +8.636,406.3,373409.0 +8.643,406.3,414386.0 +8.648,375.1,310240.0 +8.653,343.8,382903.0 +8.658,812.6,288062.0 +8.663,343.8,189247.0 +8.668,781.4,227915.0 +8.675,781.4,279712.0 +8.68,406.3,359567.0 +8.685,1031.4,167022.0 +8.69,375.1,370790.0 +8.695,375.1,414757.0 +8.7,312.5,236718.0 +8.707,406.3,517176.0 +8.712,781.4,191317.0 +8.717,750.1,167606.0 +8.722,437.6,230545.0 +8.727,750.1,98429.0 +8.732,406.3,460592.0 +8.739,343.8,345522.0 +8.744,500.1,131938.0 +8.749,406.3,321954.0 +8.754,437.6,240944.0 +8.759,1093.9,162988.0 +8.764,406.3,247088.0 +8.771,1093.9,54080.0 +8.776,1062.7,262662.0 +8.781,437.6,185543.0 +8.786,1531.5,191134.0 +8.791,1031.4,261842.0 +8.796,375.1,242770.0 +8.803,156.3,108583.0 +8.808,437.6,195452.0 +8.813,593.8,177300.0 +8.818,1562.7,139403.0 +8.823,406.3,265763.0 +8.828,812.6,45300.0 +8.835,468.8,124108.0 +8.84,1531.5,92050.0 +8.845,656.3,94901.0 +8.85,1062.7,94497.0 +8.855,125.0,112630.0 +8.86,375.1,52067.0 +8.867,1000.1,54225.0 +8.872,468.8,132944.0 +8.877,406.3,213838.0 +8.882,156.3,91145.0 +8.887,375.1,182710.0 +8.892,281.3,59583.0 +8.899,406.3,203485.0 +8.904,437.6,226425.0 +8.909,625.1,178709.0 +8.914,156.3,578471.0 +8.919,187.5,279767.0 +8.924,125.0,308466.0 +8.931,156.3,615337.0 +8.936,187.5,321251.0 +8.941,781.4,365228.0 +8.946,718.9,423190.0 +8.951,718.9,512560.0 +8.956,750.1,605274.0 +8.963,750.1,881938.0 +8.968,750.1,767465.0 +8.973,718.9,621199.0 +8.978,781.4,723397.0 +8.983,781.4,718836.0 +8.988,750.1,507174.0 +8.995,687.6,426748.0 +9.0,750.1,441464.0 +9.005,781.4,426630.0 +9.01,718.9,333090.0 +9.015,406.3,521565.0 +9.02,781.4,630248.0 +9.027,812.6,508412.0 +9.032,343.8,436761.0 +9.037,750.1,347855.0 +9.042,718.9,251577.0 +9.047,406.3,343680.0 +9.052,781.4,387667.0 +9.059,343.8,455230.0 +9.064,2969.2,154550.0 +9.069,781.4,255287.0 +9.074,406.3,442778.0 +9.079,1500.2,253242.0 +9.084,1500.2,225512.0 +9.091,437.6,329355.0 +9.096,593.8,161084.0 +9.101,437.6,487108.0 +9.106,187.5,362253.0 +9.111,187.5,452613.0 +9.116,218.8,498430.0 +9.123,500.1,264659.0 +9.128,312.5,373620.0 +9.133,906.4,299825.0 +9.138,187.5,658632.0 +9.143,156.3,372877.0 +9.148,250.0,359234.0 +9.155,156.3,130896.0 +9.16,281.3,220749.0 +9.165,312.5,215808.0 +9.17,218.8,365350.0 +9.175,312.5,218823.0 +9.18,781.4,248278.0 +9.187,750.1,140292.0 +9.192,968.9,310270.0 +9.197,843.9,412749.0 +9.202,875.1,400979.0 +9.207,906.4,228300.0 +9.212,875.1,249683.0 +9.219,843.9,224290.0 +9.224,812.6,149040.0 +9.229,1500.2,187501.0 +9.234,1437.7,321497.0 +9.239,1469.0,198287.0 +9.244,812.6,188580.0 +9.251,750.1,219154.0 +9.256,437.6,150113.0 +9.261,2219.1,181353.0 +9.266,781.4,236097.0 +9.271,2250.3,221973.0 +9.276,2250.3,261585.0 +9.283,812.6,259940.0 +9.288,437.6,500721.0 +9.293,2281.6,208904.0 +9.298,468.8,250055.0 +9.303,156.3,374729.0 +9.308,250.0,656272.0 +9.315,718.9,608899.0 +9.32,781.4,677145.0 +9.325,468.8,263444.0 +9.33,156.3,347850.0 +9.335,750.1,323406.0 +9.34,781.4,971885.0 +9.347,718.9,982799.0 +9.352,218.8,216814.0 +9.357,187.5,365075.0 +9.362,781.4,456571.0 +9.367,781.4,326052.0 +9.372,781.4,676596.0 +9.379,2344.1,226694.0 +9.384,843.9,356978.0 +9.389,750.1,762357.0 +9.394,781.4,905561.0 +9.399,125.0,523606.0 +9.404,843.9,232910.0 +9.411,781.4,143451.0 +9.416,812.6,283586.0 +9.421,281.3,255357.0 +9.426,2312.8,171624.0 +9.431,1531.5,245374.0 +9.436,250.0,158454.0 +9.443,1562.7,128278.0 +9.448,1562.7,124361.0 +9.453,187.5,220234.0 +9.458,750.1,203844.0 +9.463,781.4,331702.0 +9.468,218.8,286817.0 +9.475,375.1,256456.0 +9.48,718.9,253124.0 +9.485,375.1,206290.0 +9.49,2375.3,233059.0 +9.495,250.0,215829.0 +9.5,1750.2,111874.0 +9.507,281.3,151632.0 +9.512,1719.0,137872.0 +9.517,2344.1,187123.0 +9.522,281.3,232464.0 +9.527,2344.1,134421.0 +9.532,2344.1,274582.0 +9.539,2344.1,194273.0 +9.544,750.1,312430.0 +9.549,781.4,215063.0 +9.554,843.9,281912.0 +9.559,843.9,259955.0 +9.564,218.8,302692.0 +9.571,218.8,1126150.0 +9.576,250.0,221601.0 +9.581,468.8,187804.0 +9.586,218.8,332408.0 +9.591,343.8,89510.0 +9.596,218.8,894844.0 +9.603,250.0,365366.0 +9.608,406.3,404894.0 +9.613,343.8,583075.0 +9.618,2344.1,341227.0 +9.623,218.8,473640.0 +9.628,2312.8,205428.0 +9.635,2344.1,210106.0 +9.64,312.5,221134.0 +9.645,218.8,708653.0 +9.65,187.5,183389.0 +9.655,281.3,424857.0 +9.66,312.5,278261.0 +9.667,781.4,196666.0 +9.672,312.5,321656.0 +9.677,843.9,225118.0 +9.682,531.3,259814.0 +9.687,406.3,142702.0 +9.692,781.4,300077.0 +9.699,406.3,471619.0 +9.704,875.1,223747.0 +9.709,406.3,403526.0 +9.714,500.1,274155.0 +9.719,906.4,267164.0 +9.724,406.3,588298.0 +9.731,906.4,104065.0 +9.736,375.1,514719.0 +9.741,843.9,135121.0 +9.746,2312.8,187399.0 +9.751,437.6,613244.0 +9.756,2344.1,195231.0 +9.763,406.3,486653.0 +9.768,1906.5,92588.0 +9.773,1844.0,143991.0 +9.778,468.8,145109.0 +9.783,406.3,120287.0 +9.788,437.6,117589.0 +9.795,437.6,173159.0 +9.8,906.4,129799.0 +9.805,468.8,58011.0 +9.81,406.3,161105.0 +9.815,875.1,49454.0 +9.82,437.6,104917.0 +9.827,937.6,55107.0 +9.832,500.1,49980.0 +9.837,375.1,94711.0 +9.842,656.3,70427.0 +9.847,250.0,538072.0 +9.852,156.3,79735.0 +9.859,875.1,326282.0 +9.864,156.3,522299.0 +9.869,218.8,576681.0 +9.874,875.1,360732.0 +9.879,906.4,606828.0 +9.884,875.1,720696.0 +9.891,875.1,382083.0 +9.896,875.1,992887.0 +9.901,906.4,661688.0 +9.906,875.1,871399.0 +9.911,906.4,293669.0 +9.916,843.9,724201.0 +9.923,875.1,625352.0 +9.928,843.9,830716.0 +9.933,875.1,597423.0 +9.938,875.1,1489916.0 +9.943,906.4,1055199.0 +9.948,875.1,1403704.0 +9.955,875.1,1064242.0 +9.96,875.1,2156708.0 +9.965,875.1,2001580.0 +9.97,875.1,2108078.0 +9.975,906.4,1923838.0 +9.98,906.4,2088549.0 +9.987,906.4,1760853.0 +9.992,906.4,2042010.0 +9.997,906.4,1780308.0 +10.002,906.4,2018056.0 +10.007,906.4,1789152.0 +10.012,875.1,1809861.0 +10.019,875.1,1342544.0 +10.024,875.1,1953411.0 +10.029,875.1,1523806.0 +10.034,875.1,1090666.0 +10.039,875.1,977060.0 +10.044,156.3,905504.0 +10.051,906.4,924359.0 +10.056,875.1,873028.0 +10.061,875.1,482285.0 +10.066,843.9,772190.0 +10.071,812.6,353274.0 +10.076,843.9,339546.0 +10.083,1343.9,277939.0 +10.088,218.8,379623.0 +10.093,1437.7,450846.0 +10.098,1437.7,436223.0 +10.103,218.8,233729.0 +10.108,1375.2,279964.0 +10.115,218.8,353533.0 +10.12,562.6,111237.0 +10.125,281.3,257169.0 +10.13,468.8,269687.0 +10.135,156.3,447745.0 +10.14,437.6,187615.0 +10.147,312.5,175389.0 +10.152,906.4,235205.0 +10.157,906.4,153920.0 +10.162,1000.1,139145.0 +10.167,437.6,284080.0 +10.172,781.4,251833.0 +10.179,343.8,306303.0 +10.184,1375.2,347182.0 +10.189,1375.2,264991.0 +10.194,718.9,292358.0 +10.199,750.1,109670.0 +10.204,750.1,146714.0 +10.211,1375.2,121649.0 +10.216,781.4,194651.0 +10.221,375.1,128930.0 +10.226,156.3,222135.0 +10.231,2187.8,129890.0 +10.236,562.6,113785.0 +10.243,375.1,152956.0 +10.248,500.1,296271.0 +10.253,656.3,229501.0 +10.258,437.6,249568.0 +10.263,437.6,343925.0 +10.268,406.3,273979.0 +10.275,437.6,297848.0 +10.28,781.4,253624.0 +10.285,500.1,431063.0 +10.29,843.9,290921.0 +10.295,437.6,179721.0 +10.3,406.3,194290.0 +10.307,843.9,158087.0 +10.312,406.3,129824.0 +10.317,968.9,241291.0 +10.322,937.6,219572.0 +10.327,843.9,108285.0 +10.332,812.6,166049.0 +10.339,875.1,178328.0 +10.344,843.9,178317.0 +10.349,406.3,106671.0 +10.354,875.1,227919.0 +10.359,1000.1,196282.0 +10.364,968.9,123545.0 +10.371,1375.2,111350.0 +10.376,1000.1,139792.0 +10.381,1343.9,207380.0 +10.386,500.1,128790.0 +10.391,1312.7,102463.0 +10.396,406.3,113855.0 +10.403,218.8,249187.0 +10.408,156.3,792466.0 +10.413,187.5,910769.0 +10.418,156.3,684319.0 +10.423,218.8,337166.0 +10.428,125.0,166529.0 +10.435,437.6,111491.0 +10.44,437.6,151055.0 +10.445,906.4,276200.0 +10.45,906.4,209284.0 +10.455,843.9,343402.0 +10.46,812.6,260731.0 +10.467,843.9,371750.0 +10.472,812.6,272563.0 +10.477,843.9,335529.0 +10.482,875.1,309760.0 +10.487,937.6,347573.0 +10.492,937.6,307123.0 +10.499,906.4,341714.0 +10.504,906.4,322117.0 +10.509,875.1,379726.0 +10.514,875.1,292641.0 +10.519,906.4,273550.0 +10.524,937.6,302368.0 +10.531,906.4,153433.0 +10.536,937.6,225633.0 +10.541,937.6,145372.0 +10.546,843.9,170979.0 +10.551,812.6,129952.0 +10.556,375.1,163391.0 +10.563,187.5,126289.0 +10.568,406.3,129422.0 +10.573,906.4,104696.0 +10.578,125.0,160368.0 +10.583,406.3,95968.0 +10.588,250.0,243261.0 +10.595,187.5,398397.0 +10.6,156.3,260293.0 +10.605,156.3,443399.0 +10.61,156.3,367374.0 +10.615,2344.1,166588.0 +10.62,843.9,249391.0 +10.627,2344.1,277492.0 +10.632,187.5,419845.0 +10.637,2344.1,352664.0 +10.642,2344.1,389380.0 +10.647,2344.1,513676.0 +10.652,2344.1,502027.0 +10.659,2344.1,489457.0 +10.664,2344.1,556027.0 +10.669,2344.1,445192.0 +10.674,781.4,497451.0 +10.679,2344.1,410939.0 +10.684,781.4,779658.0 +10.691,781.4,531740.0 +10.696,781.4,649273.0 +10.701,781.4,503686.0 +10.706,812.6,559675.0 +10.711,781.4,307392.0 +10.716,812.6,372558.0 +10.723,2344.1,290739.0 +10.728,781.4,399868.0 +10.733,2344.1,214447.0 +10.738,2344.1,260657.0 +10.743,2344.1,248724.0 +10.748,2344.1,179557.0 +10.755,218.8,166080.0 +10.76,1562.7,207193.0 +10.765,2344.1,171141.0 +10.77,2344.1,283026.0 +10.775,2344.1,391266.0 +10.78,2312.8,431753.0 +10.787,1594.0,454153.0 +10.792,1625.2,397684.0 +10.797,1594.0,344574.0 +10.802,687.6,218583.0 +10.807,718.9,243488.0 +10.812,718.9,333687.0 +10.819,812.6,233440.0 +10.824,1594.0,225780.0 +10.829,1625.2,229443.0 +10.834,2375.3,343011.0 +10.839,2375.3,283336.0 +10.844,1594.0,655382.0 +10.851,1594.0,642849.0 +10.856,1625.2,266171.0 +10.861,593.8,171359.0 +10.866,1656.5,189916.0 +10.871,1594.0,424090.0 +10.876,2375.3,410130.0 +10.883,781.4,373196.0 +10.888,781.4,484557.0 +10.893,1594.0,490657.0 +10.898,1594.0,424621.0 +10.903,1625.2,225237.0 +10.908,781.4,290728.0 +10.915,781.4,205619.0 +10.92,812.6,300760.0 +10.925,1594.0,249229.0 +10.93,750.1,206181.0 +10.935,750.1,152798.0 +10.94,750.1,191650.0 +10.947,750.1,245746.0 +10.952,812.6,768969.0 +10.957,750.1,747862.0 +10.962,781.4,896851.0 +10.967,750.1,691790.0 +10.972,781.4,725719.0 +10.979,781.4,543203.0 +10.984,781.4,546161.0 +10.989,781.4,445938.0 +10.994,781.4,527479.0 +10.999,812.6,412759.0 +11.004,812.6,331003.0 +11.011,812.6,282067.0 +11.016,2375.3,269849.0 +11.021,1594.0,499887.0 +11.026,1594.0,578015.0 +11.031,1594.0,232310.0 +11.036,781.4,210718.0 +11.043,1625.2,248263.0 +11.048,1625.2,293047.0 +11.053,843.9,336608.0 +11.058,1594.0,137593.0 +11.063,843.9,147195.0 +11.068,3188.0,205750.0 +11.075,1625.2,155318.0 +11.08,1625.2,159408.0 +11.085,1594.0,162641.0 +11.09,1562.7,139444.0 +11.095,593.8,150460.0 +11.1,625.1,121350.0 +11.107,1531.5,205575.0 +11.112,812.6,261313.0 +11.117,750.1,198399.0 +11.122,781.4,197937.0 +11.127,843.9,251652.0 +11.132,875.1,234191.0 +11.139,1562.7,209278.0 +11.144,718.9,486141.0 +11.149,437.6,688194.0 +11.154,156.3,780802.0 +11.159,1594.0,244625.0 +11.164,2375.3,334955.0 +11.171,2406.6,304727.0 +11.176,250.0,934459.0 +11.181,1625.2,125260.0 +11.186,781.4,218572.0 +11.191,156.3,372640.0 +11.196,1594.0,315398.0 +11.203,1562.7,397735.0 +11.208,781.4,404999.0 +11.213,1656.5,346410.0 +11.218,781.4,352328.0 +11.223,2375.3,613921.0 +11.228,2406.6,396129.0 +11.235,1625.2,524895.0 +11.24,1625.2,309020.0 +11.245,812.6,174026.0 +11.25,187.5,276584.0 +11.255,125.0,310179.0 +11.26,1562.7,336657.0 +11.267,1562.7,247756.0 +11.272,2375.3,260743.0 +11.277,218.8,190801.0 +11.282,2344.1,280410.0 +11.287,750.1,410317.0 +11.292,781.4,582260.0 +11.299,781.4,480521.0 +11.304,843.9,235631.0 +11.309,2312.8,185012.0 +11.314,343.8,169138.0 +11.319,781.4,339122.0 +11.324,781.4,385607.0 +11.331,781.4,423299.0 +11.336,2344.1,385734.0 +11.341,218.8,402480.0 +11.346,843.9,344025.0 +11.351,1531.5,170407.0 +11.356,1594.0,255838.0 +11.363,1562.7,202694.0 +11.368,1594.0,409439.0 +11.373,1562.7,371125.0 +11.378,2344.1,346592.0 +11.383,1562.7,184324.0 +11.388,812.6,205196.0 +11.395,2375.3,157465.0 +11.4,781.4,246778.0 +11.405,781.4,263625.0 +11.41,781.4,302757.0 +11.415,750.1,266748.0 +11.42,750.1,248753.0 +11.427,1625.2,328784.0 +11.432,1594.0,206603.0 +11.437,1562.7,170736.0 +11.442,2344.1,238801.0 +11.447,2344.1,308169.0 +11.452,2375.3,157449.0 +11.459,1531.5,142022.0 +11.464,781.4,325120.0 +11.469,812.6,315368.0 +11.474,812.6,657692.0 +11.479,781.4,264807.0 +11.484,781.4,300179.0 +11.491,2344.1,279133.0 +11.496,1625.2,166597.0 +11.501,2344.1,209913.0 +11.506,1562.7,259640.0 +11.511,812.6,299397.0 +11.516,156.3,850075.0 +11.523,187.5,923640.0 +11.528,812.6,224857.0 +11.533,218.8,365636.0 +11.538,218.8,459061.0 +11.543,187.5,541659.0 +11.548,781.4,439332.0 +11.555,1594.0,637746.0 +11.56,156.3,786313.0 +11.565,812.6,615746.0 +11.57,812.6,452268.0 +11.575,1562.7,324522.0 +11.58,1625.2,543341.0 +11.587,2375.3,478399.0 +11.592,781.4,543719.0 +11.597,781.4,664557.0 +11.602,781.4,875759.0 +11.607,781.4,861082.0 +11.612,781.4,743757.0 +11.619,1562.7,450409.0 +11.624,156.3,512906.0 +11.629,812.6,374669.0 +11.634,2375.3,443858.0 +11.639,2375.3,756272.0 +11.644,156.3,448649.0 +11.651,2375.3,349893.0 +11.656,2375.3,371619.0 +11.661,187.5,252375.0 +11.666,187.5,263941.0 +11.671,812.6,130846.0 +11.676,187.5,199175.0 +11.683,156.3,307269.0 +11.688,1594.0,323290.0 +11.693,1562.7,452520.0 +11.698,1562.7,317964.0 +11.703,156.3,372831.0 +11.708,156.3,590635.0 +11.715,1625.2,303286.0 +11.72,218.8,532212.0 +11.725,1656.5,267905.0 +11.73,1625.2,260878.0 +11.735,1562.7,341756.0 +11.74,1562.7,385098.0 +11.747,781.4,364071.0 +11.752,750.1,443538.0 +11.757,781.4,697181.0 +11.762,750.1,630388.0 +11.767,750.1,713674.0 +11.772,750.1,453430.0 +11.779,812.6,382052.0 +11.784,531.3,253377.0 +11.789,2375.3,371698.0 +11.794,2375.3,495793.0 +11.799,2375.3,288924.0 +11.804,1594.0,133640.0 +11.811,1500.2,101158.0 +11.816,843.9,413518.0 +11.821,812.6,322788.0 +11.826,812.6,366809.0 +11.831,2344.1,334007.0 +11.836,843.9,253076.0 +11.843,2375.3,342302.0 +11.848,1531.5,152979.0 +11.853,2375.3,325573.0 +11.858,2375.3,681232.0 +11.863,2375.3,363806.0 +11.868,781.4,537048.0 +11.875,1594.0,403920.0 +11.88,812.6,455759.0 +11.885,187.5,403692.0 +11.89,156.3,653193.0 +11.895,156.3,547090.0 +11.9,843.9,477980.0 +11.907,781.4,476887.0 +11.912,1156.4,438706.0 +11.917,843.9,454384.0 +11.922,1625.2,550728.0 +11.927,218.8,385472.0 +11.932,1625.2,397256.0 +11.939,2375.3,399799.0 +11.944,156.3,544357.0 +11.949,187.5,483775.0 +11.954,843.9,277039.0 +11.959,1594.0,373584.0 +11.964,781.4,265280.0 +11.971,812.6,387920.0 +11.976,812.6,443115.0 +11.981,812.6,468704.0 +11.986,2344.1,242160.0 +11.991,812.6,385068.0 +11.996,2375.3,410202.0 +12.003,843.9,344633.0 +12.008,2344.1,241533.0 +12.013,2344.1,754551.0 +12.018,2375.3,494045.0 +12.023,781.4,330622.0 +12.028,781.4,389025.0 +12.035,812.6,536979.0 +12.04,781.4,510887.0 +12.045,781.4,460212.0 +12.05,781.4,529082.0 +12.055,812.6,520555.0 +12.06,812.6,360299.0 +12.067,2375.3,389994.0 +12.072,2344.1,187218.0 +12.077,1594.0,247084.0 +12.082,1625.2,397897.0 +12.087,1625.2,429922.0 +12.092,1625.2,335919.0 +12.099,2344.1,285248.0 +12.104,1125.2,206161.0 +12.109,812.6,391561.0 +12.114,843.9,629474.0 +12.119,781.4,780571.0 +12.124,781.4,972879.0 +12.131,781.4,1082554.0 +12.136,781.4,1133814.0 +12.141,812.6,824966.0 +12.146,781.4,559398.0 +12.151,812.6,287565.0 +12.156,2344.1,504641.0 +12.163,1594.0,371433.0 +12.168,1594.0,232166.0 +12.173,2344.1,416747.0 +12.178,2344.1,625322.0 +12.183,2344.1,357426.0 +12.188,781.4,410512.0 +12.195,843.9,257650.0 +12.2,2375.3,478712.0 +12.205,2375.3,557054.0 +12.21,781.4,185312.0 +12.215,781.4,328682.0 +12.22,812.6,666638.0 +12.227,812.6,779944.0 +12.232,812.6,982162.0 +12.237,781.4,628950.0 +12.242,781.4,624671.0 +12.247,812.6,523793.0 +12.252,2375.3,476656.0 +12.259,156.3,520028.0 +12.264,1562.7,243120.0 +12.269,1594.0,255529.0 +12.274,125.0,400924.0 +12.279,218.8,494938.0 +12.284,437.6,338373.0 +12.291,875.1,131045.0 +12.296,2344.1,453621.0 +12.301,2375.3,448736.0 +12.306,812.6,405457.0 +12.311,781.4,451165.0 +12.316,750.1,345502.0 +12.323,156.3,395663.0 +12.328,218.8,379564.0 +12.333,1531.5,213903.0 +12.338,1562.7,384939.0 +12.343,187.5,560416.0 +12.348,218.8,255625.0 +12.355,2375.3,711136.0 +12.36,2344.1,398586.0 +12.365,2344.1,395535.0 +12.37,2344.1,859101.0 +12.375,2344.1,305418.0 +12.38,781.4,371211.0 +12.387,812.6,717336.0 +12.392,812.6,500926.0 +12.397,781.4,820498.0 +12.402,781.4,673604.0 +12.407,812.6,836816.0 +12.412,781.4,432449.0 +12.419,781.4,403641.0 +12.424,218.8,358384.0 +12.429,812.6,258493.0 +12.434,781.4,252030.0 +12.439,1562.7,242363.0 +12.444,1562.7,396065.0 +12.451,1625.2,471466.0 +12.456,156.3,387053.0 +12.461,843.9,208178.0 +12.466,125.0,327003.0 +12.471,1625.2,273609.0 +12.476,812.6,837111.0 +12.483,812.6,1052933.0 +12.488,781.4,1170755.0 +12.493,781.4,1156266.0 +12.498,812.6,1613779.0 +12.503,781.4,1245535.0 +12.508,781.4,1097292.0 +12.515,781.4,707795.0 +12.52,781.4,649290.0 +12.525,812.6,334434.0 +12.53,843.9,285351.0 +12.535,2344.1,406760.0 +12.54,2312.8,271123.0 +12.547,2344.1,369213.0 +12.552,2344.1,243764.0 +12.557,3906.8,92894.0 +12.562,843.9,289136.0 +12.567,812.6,264537.0 +12.572,781.4,437948.0 +12.579,781.4,529602.0 +12.584,781.4,725401.0 +12.589,781.4,681849.0 +12.594,781.4,598696.0 +12.599,781.4,456099.0 +12.604,812.6,484752.0 +12.611,812.6,242471.0 +12.616,1656.5,182907.0 +12.621,1625.2,280758.0 +12.626,218.8,575904.0 +12.631,156.3,699726.0 +12.636,750.1,470006.0 +12.643,812.6,694141.0 +12.648,812.6,491935.0 +12.653,781.4,726260.0 +12.658,781.4,550920.0 +12.663,750.1,600760.0 +12.668,218.8,995642.0 +12.675,187.5,497280.0 +12.68,2344.1,223012.0 +12.685,250.0,233092.0 +12.69,218.8,580725.0 +12.695,187.5,454294.0 +12.7,187.5,271009.0 +12.707,187.5,407057.0 +12.712,156.3,643946.0 +12.717,781.4,580699.0 +12.722,812.6,514678.0 +12.727,781.4,624514.0 +12.732,156.3,440355.0 +12.739,250.0,561540.0 +12.744,812.6,221777.0 +12.749,218.8,240510.0 +12.754,218.8,398748.0 +12.759,250.0,534963.0 +12.764,2375.3,550260.0 +12.771,2375.3,430941.0 +12.776,125.0,519240.0 +12.781,843.9,416611.0 +12.786,812.6,734172.0 +12.791,156.3,624659.0 +12.796,812.6,786749.0 +12.803,781.4,484295.0 +12.808,812.6,766848.0 +12.813,531.3,570511.0 +12.818,2375.3,312350.0 +12.823,2375.3,456996.0 +12.828,1625.2,361234.0 +12.835,156.3,563054.0 +12.84,812.6,496072.0 +12.845,812.6,678958.0 +12.85,812.6,1033553.0 +12.855,781.4,964330.0 +12.86,812.6,1132719.0 +12.867,812.6,645096.0 +12.872,812.6,698230.0 +12.877,2344.1,320856.0 +12.882,218.8,400249.0 +12.887,2344.1,181828.0 +12.892,2344.1,821584.0 +12.899,2344.1,555041.0 +12.904,1562.7,558656.0 +12.909,2375.3,471384.0 +12.914,750.1,203887.0 +12.919,812.6,115679.0 +12.924,156.3,366718.0 +12.931,1562.7,273452.0 +12.936,1562.7,337588.0 +12.941,1594.0,506276.0 +12.946,1594.0,640605.0 +12.951,1562.7,840569.0 +12.956,1594.0,668151.0 +12.963,1562.7,277645.0 +12.968,3156.7,156867.0 +12.973,781.4,93262.0 +12.978,156.3,177406.0 +12.983,2344.1,343838.0 +12.988,1625.2,340600.0 +12.995,1562.7,257687.0 +13.0,843.9,213640.0 +13.005,781.4,280793.0 +13.01,218.8,464792.0 +13.015,812.6,495968.0 +13.02,781.4,569692.0 +13.027,812.6,695670.0 +13.032,781.4,759607.0 +13.037,812.6,904842.0 +13.042,781.4,637369.0 +13.047,781.4,408874.0 +13.052,1562.7,284895.0 +13.059,1562.7,186114.0 +13.064,1531.5,202598.0 +13.069,812.6,378136.0 +13.074,781.4,537698.0 +13.079,750.1,856502.0 +13.084,781.4,828021.0 +13.091,812.6,992119.0 +13.096,812.6,999126.0 +13.101,812.6,1079106.0 +13.106,781.4,908619.0 +13.111,812.6,1219708.0 +13.116,781.4,951020.0 +13.123,812.6,639892.0 +13.128,1562.7,291221.0 +13.133,1562.7,329269.0 +13.138,1562.7,378562.0 +13.143,781.4,324417.0 +13.148,750.1,482964.0 +13.155,781.4,674796.0 +13.16,812.6,946184.0 +13.165,812.6,936908.0 +13.17,781.4,808103.0 +13.175,812.6,733623.0 +13.18,781.4,964721.0 +13.187,843.9,434669.0 +13.192,812.6,261939.0 +13.197,156.3,719156.0 +13.202,187.5,350943.0 +13.207,812.6,495890.0 +13.212,2375.3,490323.0 +13.219,781.4,437500.0 +13.224,656.3,272737.0 +13.229,812.6,411957.0 +13.234,2344.1,319492.0 +13.239,1656.5,330772.0 +13.244,1625.2,270232.0 +13.251,1625.2,126419.0 +13.256,343.8,134802.0 +13.261,1625.2,226430.0 +13.266,1594.0,166917.0 +13.271,843.9,224566.0 +13.276,250.0,221613.0 +13.283,187.5,423239.0 +13.288,2344.1,558852.0 +13.293,2375.3,352620.0 +13.298,125.0,226601.0 +13.303,250.0,292266.0 +13.308,1594.0,206692.0 +13.315,218.8,296691.0 +13.32,187.5,157630.0 +13.325,343.8,272219.0 +13.33,2375.3,414353.0 +13.335,1594.0,271762.0 +13.34,3125.4,189019.0 +13.347,1594.0,155193.0 +13.352,781.4,321952.0 +13.357,1594.0,398228.0 +13.362,1594.0,515346.0 +13.367,1594.0,299134.0 +13.372,2375.3,378360.0 +13.379,2375.3,431508.0 +13.384,406.3,300782.0 +13.389,812.6,255558.0 +13.394,781.4,607603.0 +13.399,812.6,748102.0 +13.404,750.1,671477.0 +13.411,781.4,689298.0 +13.416,812.6,451919.0 +13.421,812.6,501523.0 +13.426,1625.2,129961.0 +13.431,2375.3,235177.0 +13.436,2375.3,518603.0 +13.443,843.9,524160.0 +13.448,812.6,470388.0 +13.453,781.4,469827.0 +13.458,843.9,413435.0 +13.463,781.4,386918.0 +13.468,156.3,666198.0 +13.475,812.6,494625.0 +13.48,843.9,678918.0 +13.485,843.9,649509.0 +13.49,781.4,516372.0 +13.495,812.6,468568.0 +13.5,812.6,395091.0 +13.507,187.5,180360.0 +13.512,3188.0,152091.0 +13.517,1594.0,340065.0 +13.522,1594.0,455521.0 +13.527,781.4,652639.0 +13.532,781.4,764201.0 +13.539,781.4,1160205.0 +13.544,781.4,1084946.0 +13.549,812.6,747109.0 +13.554,781.4,643523.0 +13.559,781.4,440508.0 +13.564,218.8,484423.0 +13.571,156.3,327804.0 +13.576,750.1,199969.0 +13.581,1218.9,217997.0 +13.586,750.1,208974.0 +13.591,1531.5,195864.0 +13.596,812.6,242541.0 +13.603,2375.3,253618.0 +13.608,781.4,465772.0 +13.613,812.6,466855.0 +13.618,781.4,637467.0 +13.623,2375.3,614560.0 +13.628,2344.1,690642.0 +13.635,781.4,154892.0 +13.64,2375.3,227652.0 +13.645,218.8,302025.0 +13.65,156.3,214142.0 +13.655,218.8,1879635.0 +13.66,218.8,527912.0 +13.667,1562.7,319530.0 +13.672,1562.7,272112.0 +13.677,187.5,540839.0 +13.682,781.4,454431.0 +13.687,812.6,780142.0 +13.692,781.4,1031111.0 +13.699,781.4,1162592.0 +13.704,781.4,1184286.0 +13.709,781.4,1103745.0 +13.714,781.4,1042688.0 +13.719,781.4,780304.0 +13.724,781.4,434829.0 +13.731,218.8,268570.0 +13.736,187.5,399673.0 +13.741,250.0,525133.0 +13.746,843.9,217627.0 +13.751,812.6,487133.0 +13.756,156.3,1175105.0 +13.763,781.4,348282.0 +13.768,843.9,263575.0 +13.773,281.3,672529.0 +13.778,187.5,659635.0 +13.783,781.4,364655.0 +13.788,875.1,535267.0 +13.795,781.4,438325.0 +13.8,781.4,322806.0 +13.805,218.8,329062.0 +13.81,187.5,608153.0 +13.815,187.5,526875.0 +13.82,500.1,234071.0 +13.827,187.5,380396.0 +13.832,375.1,437496.0 +13.837,437.6,263295.0 +13.842,281.3,163708.0 +13.847,187.5,357943.0 +13.852,125.0,49532.0 +13.859,468.8,438755.0 +13.864,281.3,450345.0 +13.869,500.1,272121.0 +13.874,500.1,105189.0 +13.879,187.5,745586.0 +13.884,1531.5,84310.0 +13.891,250.0,314890.0 +13.896,125.0,207298.0 +13.901,343.8,85620.0 +13.906,187.5,238590.0 +13.911,218.8,159799.0 +13.916,250.0,494142.0 +13.923,781.4,149299.0 +13.928,312.5,364254.0 +13.933,812.6,111455.0 +13.938,343.8,481177.0 +13.943,406.3,300380.0 +13.948,156.3,364116.0 +13.955,406.3,494963.0 +13.96,343.8,252872.0 +13.965,468.8,341613.0 +13.97,406.3,461713.0 +13.975,468.8,584695.0 +13.98,500.1,425654.0 +13.987,343.8,414197.0 +13.992,406.3,292484.0 +13.997,750.1,243495.0 +14.002,406.3,521622.0 +14.007,343.8,185634.0 +14.012,500.1,138669.0 +14.019,406.3,155948.0 +14.024,375.1,270174.0 +14.029,500.1,174978.0 +14.034,406.3,203451.0 +14.039,312.5,240044.0 +14.044,531.3,207814.0 +14.051,281.3,356872.0 +14.056,406.3,124914.0 +14.061,312.5,84834.0 +14.066,312.5,318745.0 +14.071,375.1,126899.0 +14.076,531.3,278597.0 +14.083,562.6,159004.0 +14.088,218.8,432602.0 +14.093,343.8,80902.0 +14.098,468.8,116824.0 +14.103,218.8,440899.0 +14.108,781.4,155630.0 +14.115,218.8,679527.0 +14.12,250.0,350010.0 +14.125,156.3,252498.0 +14.13,843.9,304204.0 +14.135,437.6,144592.0 +14.14,250.0,438488.0 +14.147,468.8,232462.0 +14.152,343.8,333491.0 +14.157,125.0,420705.0 +14.162,531.3,126983.0 +14.167,343.8,246135.0 +14.172,531.3,147070.0 +14.179,218.8,177385.0 +14.184,500.1,170169.0 +14.189,375.1,217671.0 +14.194,843.9,86865.0 +14.199,281.3,188290.0 +14.204,187.5,423939.0 +14.211,187.5,338324.0 +14.216,468.8,148868.0 +14.221,375.1,199343.0 +14.226,781.4,115774.0 +14.231,187.5,237478.0 +14.236,500.1,307989.0 +14.243,218.8,250565.0 +14.248,437.6,211240.0 +14.253,406.3,300961.0 +14.258,406.3,136794.0 +14.263,218.8,108701.0 +14.268,250.0,268103.0 +14.275,468.8,190583.0 +14.28,375.1,327408.0 +14.285,156.3,146727.0 +14.29,906.4,103168.0 +14.295,468.8,125521.0 +14.3,468.8,141377.0 +14.307,218.8,99988.0 +14.312,531.3,121405.0 +14.317,406.3,255106.0 +14.322,562.6,213045.0 +14.327,500.1,103740.0 +14.332,625.1,103954.0 +14.339,187.5,143491.0 +14.344,593.8,92681.0 +14.349,156.3,119720.0 +14.354,593.8,145072.0 +14.359,2562.9,35211.0 +14.364,593.8,102268.0 +14.371,437.6,56001.0 +14.376,406.3,45049.0 +14.381,437.6,85729.0 +14.386,562.6,115752.0 +14.391,218.8,116785.0 +14.396,187.5,52465.0 +14.403,218.8,103828.0 +14.408,468.8,202098.0 +14.413,437.6,113376.0 +14.418,531.3,127908.0 +14.423,531.3,68529.0 +14.428,281.3,92350.0 +14.435,281.3,49641.0 +14.44,468.8,91567.0 +14.445,437.6,49882.0 +14.45,187.5,39926.0 +14.455,218.8,113101.0 +14.46,250.0,19468.0 +14.467,250.0,75164.0 +14.472,937.6,31047.0 +14.477,875.1,151341.0 +14.482,281.3,450273.0 +14.487,156.3,195653.0 +14.492,218.8,516763.0 +14.499,218.8,88941.0 +14.504,500.1,174343.0 +14.509,468.8,175178.0 +14.514,218.8,568511.0 +14.519,468.8,352203.0 +14.524,406.3,157327.0 +14.531,500.1,132879.0 +14.536,437.6,119859.0 +14.541,250.0,290638.0 +14.546,218.8,196992.0 +14.551,375.1,92332.0 +14.556,468.8,63003.0 +14.563,437.6,183519.0 +14.568,468.8,118463.0 +14.573,156.3,41611.0 +14.578,3125.4,62998.0 +14.583,250.0,156762.0 +14.588,375.1,170916.0 +14.595,406.3,155754.0 +14.6,250.0,209683.0 +14.605,156.3,98281.0 +14.61,468.8,91878.0 +14.615,218.8,217106.0 +14.62,187.5,94448.0 +14.627,781.4,27328.0 +14.632,437.6,108456.0 +14.637,250.0,204994.0 +14.642,187.5,85968.0 +14.647,187.5,66029.0 +14.652,250.0,131041.0 +14.659,500.1,85252.0 +14.664,562.6,259736.0 +14.669,156.3,414613.0 +14.674,406.3,123579.0 +14.679,437.6,431837.0 +14.684,562.6,380733.0 +14.691,531.3,293167.0 +14.696,500.1,219639.0 +14.701,343.8,101832.0 +14.706,375.1,482987.0 +14.711,406.3,284286.0 +14.716,562.6,345501.0 +14.723,437.6,360139.0 +14.728,593.8,153495.0 +14.733,375.1,275783.0 +14.738,218.8,254836.0 +14.743,343.8,167733.0 +14.748,437.6,165705.0 +14.755,312.5,394356.0 +14.76,468.8,87512.0 +14.765,531.3,163938.0 +14.77,281.3,275311.0 +14.775,343.8,147311.0 +14.78,343.8,164031.0 +14.787,750.1,173631.0 +14.792,218.8,311400.0 +14.797,468.8,182357.0 +14.802,250.0,148977.0 +14.807,343.8,200010.0 +14.812,750.1,81922.0 +14.819,281.3,140118.0 +14.824,531.3,86415.0 +14.829,375.1,179035.0 +14.834,437.6,161613.0 +14.839,437.6,182812.0 +14.844,218.8,101268.0 +14.851,250.0,324007.0 +14.856,500.1,261898.0 +14.861,125.0,174963.0 +14.866,437.6,443386.0 +14.871,156.3,297268.0 +14.876,531.3,152025.0 +14.883,531.3,192309.0 +14.888,218.8,327130.0 +14.893,218.8,182251.0 +14.898,406.3,329304.0 +14.903,437.6,89637.0 +14.908,187.5,249172.0 +14.915,187.5,85266.0 +14.92,281.3,108558.0 +14.925,406.3,244817.0 +14.93,187.5,64183.0 +14.935,343.8,236392.0 +14.94,156.3,142895.0 +14.947,281.3,113408.0 +14.952,781.4,100838.0 +14.957,156.3,300004.0 +14.962,375.1,219634.0 +14.967,843.9,118122.0 +14.972,250.0,150436.0 +14.979,843.9,87035.0 +14.984,250.0,113009.0 +14.989,250.0,342966.0 +14.994,187.5,123749.0 +14.999,375.1,160308.0 +15.004,500.1,90293.0 +15.011,281.3,262011.0 +15.016,406.3,78163.0 +15.021,375.1,272742.0 +15.026,375.1,73861.0 +15.031,250.0,93925.0 +15.036,281.3,147336.0 +15.043,500.1,157817.0 +15.048,375.1,500977.0 +15.053,125.0,460629.0 +15.058,125.0,550085.0 +15.063,406.3,287721.0 +15.068,187.5,511496.0 +15.075,500.1,817396.0 +15.08,156.3,271767.0 +15.085,500.1,273541.0 +15.09,250.0,516454.0 +15.095,343.8,129457.0 +15.1,156.3,395746.0 +15.107,156.3,209360.0 +15.112,406.3,661572.0 +15.117,312.5,182950.0 +15.122,437.6,322555.0 +15.127,375.1,162480.0 +15.132,468.8,83977.0 +15.139,437.6,84080.0 +15.144,406.3,445147.0 +15.149,531.3,112657.0 +15.154,406.3,179784.0 +15.159,312.5,256906.0 +15.164,406.3,248248.0 +15.171,250.0,204211.0 +15.176,406.3,200802.0 +15.181,406.3,171503.0 +15.186,375.1,114964.0 +15.191,406.3,309014.0 +15.196,1031.4,58518.0 +15.203,437.6,224738.0 +15.208,437.6,199638.0 +15.213,437.6,210264.0 +15.218,531.3,102696.0 +15.223,218.8,98699.0 +15.228,437.6,158467.0 +15.235,843.9,103670.0 +15.24,312.5,123509.0 +15.245,375.1,171023.0 +15.25,406.3,270041.0 +15.255,343.8,367642.0 +15.26,281.3,109459.0 +15.267,937.6,85401.0 +15.272,375.1,272101.0 +15.277,218.8,89953.0 +15.282,406.3,186793.0 +15.287,468.8,81206.0 +15.292,343.8,198239.0 +15.299,281.3,146212.0 +15.304,250.0,179470.0 +15.309,281.3,72204.0 +15.314,156.3,148741.0 +15.319,406.3,159890.0 +15.324,437.6,133412.0 +15.331,250.0,232606.0 +15.336,468.8,75122.0 +15.341,250.0,99697.0 +15.346,531.3,46070.0 +15.351,312.5,239417.0 +15.356,343.8,41917.0 +15.363,343.8,179328.0 +15.368,500.1,37851.0 +15.373,312.5,299285.0 +15.378,218.8,88860.0 +15.383,281.3,112331.0 +15.388,500.1,42606.0 +15.395,312.5,162009.0 +15.4,531.3,109835.0 +15.405,281.3,242436.0 +15.41,718.9,273956.0 +15.415,312.5,181452.0 +15.42,687.6,133382.0 +15.427,343.8,203727.0 +15.432,531.3,138020.0 +15.437,218.8,110758.0 +15.442,718.9,202852.0 +15.447,500.1,238442.0 +15.452,375.1,181086.0 +15.459,468.8,172970.0 +15.464,281.3,64804.0 +15.469,468.8,68737.0 +15.474,218.8,172302.0 +15.479,468.8,58144.0 +15.484,375.1,111706.0 +15.491,1562.7,72294.0 +15.496,343.8,280880.0 +15.501,500.1,47702.0 +15.506,468.8,153960.0 +15.511,718.9,40870.0 +15.516,187.5,206561.0 +15.523,3125.4,85211.0 +15.528,500.1,135221.0 +15.533,343.8,128211.0 +15.538,437.6,60706.0 +15.543,375.1,328502.0 +15.548,500.1,58679.0 +15.555,437.6,48719.0 +15.56,187.5,87335.0 +15.565,312.5,128041.0 +15.57,437.6,95443.0 +15.575,281.3,61897.0 +15.58,406.3,61876.0 +15.587,531.3,86670.0 +15.592,906.4,99093.0 +15.597,281.3,180302.0 +15.602,156.3,513013.0 +15.607,500.1,331959.0 +15.612,687.6,124226.0 +15.619,562.6,196848.0 +15.624,875.1,128714.0 +15.629,906.4,127179.0 +15.634,843.9,169364.0 +15.639,812.6,159689.0 +15.644,468.8,202972.0 +15.651,750.1,105970.0 +15.656,468.8,178828.0 +15.661,843.9,144110.0 +15.666,250.0,147919.0 +15.671,906.4,89439.0 +15.676,937.6,125231.0 +15.683,906.4,79007.0 +15.688,187.5,165550.0 +15.693,156.3,175757.0 +15.698,875.1,71423.0 +15.703,406.3,48921.0 +15.708,406.3,195093.0 +15.715,156.3,136188.0 +15.72,437.6,271648.0 +15.725,281.3,119914.0 +15.73,437.6,270425.0 +15.735,187.5,192183.0 +15.74,468.8,175084.0 +15.747,187.5,114567.0 +15.752,468.8,164515.0 +15.757,187.5,324840.0 +15.762,468.8,113606.0 +15.767,218.8,157693.0 +15.772,437.6,190502.0 +15.779,250.0,176980.0 +15.784,406.3,326090.0 +15.789,250.0,228890.0 +15.794,781.4,99067.0 +15.799,500.1,219961.0 +15.804,625.1,253378.0 +15.811,468.8,291660.0 +15.816,531.3,230050.0 +15.821,531.3,340797.0 +15.826,562.6,239352.0 +15.831,593.8,175286.0 +15.836,531.3,278597.0 +15.843,593.8,101100.0 +15.848,218.8,293445.0 +15.853,718.9,42470.0 +15.858,218.8,288002.0 +15.863,500.1,61153.0 +15.868,187.5,93015.0 +15.875,531.3,48389.0 +15.88,218.8,130847.0 +15.885,218.8,182929.0 +15.89,312.5,134253.0 +15.895,281.3,141723.0 +15.9,343.8,100360.0 +15.907,218.8,168127.0 +15.912,343.8,137317.0 +15.917,187.5,135782.0 +15.922,343.8,66124.0 +15.927,218.8,145358.0 +15.932,187.5,38115.0 +15.939,218.8,190851.0 +15.944,187.5,10128.0 +15.949,500.1,197023.0 +15.954,500.1,77367.0 +15.959,250.0,169709.0 +15.964,500.1,511341.0 +15.971,343.8,181780.0 +15.976,156.3,1125494.0 +15.981,250.0,329238.0 +15.986,437.6,241110.0 +15.991,406.3,256701.0 +15.996,187.5,378298.0 +16.003,375.1,127666.0 +16.008,281.3,356566.0 +16.013,437.6,157032.0 +16.018,187.5,220027.0 +16.023,312.5,171281.0 +16.028,187.5,131787.0 +16.035,312.5,77652.0 +16.04,250.0,206911.0 +16.045,156.3,303001.0 +16.05,218.8,83161.0 +16.055,218.8,299478.0 +16.06,375.1,76636.0 +16.067,218.8,327519.0 +16.072,281.3,116388.0 +16.077,187.5,116291.0 +16.082,312.5,108991.0 +16.087,218.8,213677.0 +16.092,781.4,63203.0 +16.099,218.8,65432.0 +16.104,1031.4,57890.0 +16.109,531.3,59050.0 +16.114,250.0,64020.0 +16.119,406.3,85223.0 +16.124,218.8,87667.0 +16.131,375.1,78057.0 +16.136,312.5,57889.0 +16.141,375.1,181464.0 +16.146,218.8,247885.0 +16.151,437.6,171348.0 +16.156,500.1,173791.0 +16.163,125.0,215005.0 +16.168,437.6,297340.0 +16.173,406.3,269129.0 +16.178,218.8,266322.0 +16.183,437.6,224089.0 +16.188,250.0,334157.0 +16.195,500.1,104955.0 +16.2,343.8,292564.0 +16.205,437.6,184483.0 +16.21,156.3,363257.0 +16.215,531.3,201112.0 +16.22,406.3,383790.0 +16.227,437.6,190525.0 +16.232,156.3,154382.0 +16.237,406.3,494678.0 +16.242,406.3,164080.0 +16.247,781.4,229783.0 +16.252,437.6,550024.0 +16.259,468.8,158767.0 +16.264,437.6,576465.0 +16.269,500.1,399418.0 +16.274,2312.8,85801.0 +16.279,437.6,680286.0 +16.284,500.1,300346.0 +16.291,437.6,338965.0 +16.296,437.6,832032.0 +16.301,500.1,303288.0 +16.306,437.6,869411.0 +16.311,437.6,602389.0 +16.316,468.8,209539.0 +16.323,406.3,545920.0 +16.328,281.3,184091.0 +16.333,437.6,592527.0 +16.338,406.3,371652.0 +16.343,843.9,278534.0 +16.348,468.8,693311.0 +16.355,875.1,140398.0 +16.36,437.6,438898.0 +16.365,468.8,598010.0 +16.37,125.0,221122.0 +16.375,406.3,515764.0 +16.38,468.8,235962.0 +16.387,500.1,285389.0 +16.392,437.6,568652.0 +16.397,531.3,155543.0 +16.402,437.6,583389.0 +16.407,406.3,311701.0 +16.412,250.0,150998.0 +16.419,406.3,420652.0 +16.424,875.1,89671.0 +16.429,406.3,346630.0 +16.434,437.6,568534.0 +16.439,937.6,79608.0 +16.444,406.3,307021.0 +16.451,343.8,172267.0 +16.456,437.6,325661.0 +16.461,406.3,187033.0 +16.466,406.3,186689.0 +16.471,437.6,500595.0 +16.476,375.1,62307.0 +16.483,343.8,67942.0 +16.488,375.1,124908.0 +16.493,406.3,163974.0 +16.498,437.6,130173.0 +16.503,406.3,130434.0 +16.508,437.6,126748.0 +16.515,437.6,359442.0 +16.52,468.8,494831.0 +16.525,437.6,254561.0 +16.53,437.6,137773.0 +16.535,156.3,449882.0 +16.54,468.8,357968.0 +16.547,250.0,80257.0 +16.552,500.1,150276.0 +16.557,437.6,310291.0 +16.562,406.3,344518.0 +16.567,437.6,473892.0 +16.572,468.8,402129.0 +16.579,468.8,99653.0 +16.584,156.3,208745.0 +16.589,593.8,89139.0 +16.594,500.1,176209.0 +16.599,437.6,190140.0 +16.604,156.3,204330.0 +16.611,468.8,538088.0 +16.616,156.3,105982.0 +16.621,437.6,89767.0 +16.626,437.6,159312.0 +16.631,531.3,26439.0 +16.636,375.1,294775.0 +16.643,468.8,213819.0 +16.648,468.8,65326.0 +16.653,437.6,174987.0 +16.658,281.3,72979.0 +16.663,437.6,179546.0 +16.668,1406.4,46912.0 +16.675,125.0,85561.0 +16.68,406.3,277755.0 +16.685,218.8,54583.0 +16.69,468.8,46820.0 +16.695,500.1,74368.0 +16.7,187.5,179872.0 +16.707,437.6,377076.0 +16.712,125.0,250330.0 +16.717,562.6,151744.0 +16.722,437.6,687644.0 +16.727,406.3,398412.0 +16.732,500.1,502643.0 +16.739,406.3,93500.0 +16.744,468.8,735786.0 +16.749,156.3,639622.0 +16.754,406.3,666202.0 +16.759,468.8,284483.0 +16.764,468.8,334606.0 +16.771,468.8,314351.0 +16.776,312.5,250842.0 +16.781,406.3,507126.0 +16.786,187.5,372334.0 +16.791,156.3,71128.0 +16.796,312.5,311744.0 +16.803,437.6,232189.0 +16.808,437.6,302405.0 +16.813,218.8,123684.0 +16.818,156.3,314758.0 +16.823,656.3,94593.0 +16.828,156.3,87280.0 +16.835,125.0,122480.0 +16.84,468.8,177709.0 +16.845,437.6,84476.0 +16.85,343.8,142099.0 +16.855,125.0,276299.0 +16.86,2312.8,67114.0 +16.867,218.8,138870.0 +16.872,406.3,141710.0 +16.877,531.3,111508.0 +16.882,468.8,80906.0 +16.887,187.5,163403.0 +16.892,406.3,290505.0 +16.899,125.0,108960.0 +16.904,375.1,223002.0 +16.909,375.1,142339.0 +16.914,250.0,95911.0 +16.919,937.6,104851.0 +16.924,531.3,122882.0 +16.931,406.3,383469.0 +16.936,187.5,193368.0 +16.941,500.1,168606.0 +16.946,1000.1,76460.0 +16.951,312.5,171010.0 +16.956,125.0,61636.0 +16.963,281.3,218360.0 +16.968,906.4,164550.0 +16.973,343.8,182044.0 +16.978,156.3,80542.0 +16.983,250.0,361125.0 +16.988,906.4,148724.0 +16.995,156.3,117766.0 +17.0,562.6,228228.0 +17.005,906.4,128484.0 +17.01,375.1,58504.0 +17.015,187.5,126304.0 +17.02,906.4,141982.0 +17.027,3156.7,73677.0 +17.032,406.3,200993.0 +17.037,937.6,131882.0 +17.042,906.4,70895.0 +17.047,1812.8,23621.0 +17.052,406.3,126610.0 +17.059,937.6,54656.0 +17.064,843.9,33199.0 +17.069,468.8,135445.0 +17.074,281.3,356548.0 +17.079,125.0,209862.0 +17.084,218.8,376103.0 +17.091,468.8,292757.0 +17.096,375.1,389757.0 +17.101,437.6,458588.0 +17.106,875.1,140406.0 +17.111,500.1,613257.0 +17.116,375.1,276501.0 +17.123,468.8,244897.0 +17.128,437.6,124522.0 +17.133,187.5,204903.0 +17.138,468.8,365172.0 +17.143,375.1,118278.0 +17.148,468.8,53916.0 +17.155,281.3,84986.0 +17.16,406.3,152905.0 +17.165,406.3,199791.0 +17.17,500.1,97989.0 +17.175,218.8,89476.0 +17.18,406.3,82478.0 +17.187,406.3,128624.0 +17.192,156.3,74118.0 +17.197,812.6,27388.0 +17.202,437.6,82117.0 +17.207,375.1,188088.0 +17.212,437.6,146942.0 +17.219,718.9,17955.0 +17.224,187.5,60328.0 +17.229,406.3,112860.0 +17.234,437.6,129229.0 +17.239,218.8,64542.0 +17.244,250.0,24638.0 +17.251,437.6,199851.0 +17.256,375.1,214906.0 +17.261,125.0,134047.0 +17.266,343.8,84265.0 +17.271,468.8,225376.0 +17.276,343.8,183681.0 +17.283,906.4,101175.0 +17.288,875.1,102365.0 +17.293,500.1,139084.0 +17.298,375.1,197458.0 +17.303,437.6,171933.0 +17.308,1562.7,67644.0 +17.315,375.1,85733.0 +17.32,375.1,117574.0 +17.325,312.5,106680.0 +17.33,1594.0,57986.0 +17.335,1312.7,29639.0 +17.34,406.3,200304.0 +17.347,375.1,110207.0 +17.352,843.9,38142.0 +17.357,343.8,63668.0 +17.362,406.3,123831.0 +17.367,406.3,241744.0 +17.372,781.4,83627.0 +17.379,437.6,86317.0 +17.384,875.1,156177.0 +17.389,406.3,124738.0 +17.394,812.6,88591.0 +17.399,406.3,33989.0 +17.404,843.9,192511.0 +17.411,468.8,103061.0 +17.416,843.9,129195.0 +17.421,968.9,42377.0 +17.426,468.8,140382.0 +17.431,718.9,58428.0 +17.436,875.1,195303.0 +17.443,187.5,102124.0 +17.448,875.1,261686.0 +17.453,156.3,605166.0 +17.458,531.3,276188.0 +17.463,343.8,85264.0 +17.468,406.3,487413.0 +17.475,156.3,131008.0 +17.48,500.1,303377.0 +17.485,218.8,566968.0 +17.49,156.3,250609.0 +17.495,406.3,539012.0 +17.5,843.9,173889.0 +17.507,156.3,200088.0 +17.512,187.5,263305.0 +17.517,437.6,218319.0 +17.522,375.1,133891.0 +17.527,156.3,347424.0 +17.532,187.5,98127.0 +17.539,406.3,322045.0 +17.544,406.3,177748.0 +17.549,125.0,94435.0 +17.554,156.3,309136.0 +17.559,375.1,147400.0 +17.564,406.3,274678.0 +17.571,437.6,189393.0 +17.576,125.0,157362.0 +17.581,156.3,141266.0 +17.586,375.1,167402.0 +17.591,125.0,105607.0 +17.596,500.1,117030.0 +17.603,500.1,45861.0 +17.608,437.6,220398.0 +17.613,156.3,48620.0 +17.618,250.0,83369.0 +17.623,718.9,117681.0 +17.628,375.1,384867.0 +17.635,281.3,399593.0 +17.64,656.3,222914.0 +17.645,562.6,553722.0 +17.65,156.3,164673.0 +17.655,250.0,102040.0 +17.66,843.9,163800.0 +17.667,750.1,74166.0 +17.672,687.6,110283.0 +17.677,125.0,179098.0 +17.682,718.9,140467.0 +17.687,1375.2,135080.0 +17.692,218.8,157573.0 +17.699,875.1,104204.0 +17.704,500.1,161224.0 +17.709,468.8,175010.0 +17.714,156.3,163947.0 +17.719,468.8,368425.0 +17.724,437.6,170896.0 +17.731,156.3,178576.0 +17.736,2344.1,188305.0 +17.741,2344.1,171936.0 +17.746,468.8,253639.0 +17.751,468.8,219844.0 +17.756,468.8,105937.0 +17.763,468.8,241236.0 +17.768,531.3,127372.0 +17.773,187.5,194441.0 +17.778,437.6,175924.0 +17.783,437.6,85611.0 +17.788,437.6,117067.0 +17.795,437.6,294261.0 +17.8,468.8,53166.0 +17.805,437.6,151843.0 +17.81,500.1,182285.0 +17.815,500.1,231564.0 +17.82,125.0,297580.0 +17.827,500.1,347839.0 +17.832,437.6,707490.0 +17.837,500.1,140700.0 +17.842,437.6,612843.0 +17.847,437.6,414484.0 +17.852,1000.1,95560.0 +17.859,437.6,732345.0 +17.864,531.3,75264.0 +17.869,437.6,333092.0 +17.874,437.6,584201.0 +17.879,156.3,77602.0 +17.884,437.6,449754.0 +17.891,1406.4,152958.0 +17.896,375.1,178389.0 +17.901,406.3,290646.0 +17.906,2344.1,113271.0 +17.911,375.1,146126.0 +17.916,406.3,230830.0 +17.923,906.4,151685.0 +17.928,406.3,195561.0 +17.933,968.9,180970.0 +17.938,968.9,103592.0 +17.943,406.3,248044.0 +17.948,937.6,89739.0 +17.955,437.6,316005.0 +17.96,1844.0,108129.0 +17.965,500.1,105479.0 +17.97,406.3,296033.0 +17.975,187.5,374638.0 +17.98,156.3,488223.0 +17.987,406.3,266632.0 +17.992,250.0,467427.0 +17.997,406.3,353567.0 +18.002,250.0,334774.0 +18.007,218.8,345506.0 +18.012,250.0,471058.0 +18.019,343.8,129151.0 +18.024,250.0,137021.0 +18.029,531.3,96715.0 +18.034,312.5,225745.0 +18.039,375.1,277850.0 +18.044,250.0,198460.0 +18.051,406.3,188187.0 +18.056,187.5,280552.0 +18.061,875.1,113132.0 +18.066,250.0,135309.0 +18.071,187.5,114590.0 +18.076,187.5,139382.0 +18.083,250.0,164500.0 +18.088,218.8,196412.0 +18.093,437.6,154064.0 +18.098,218.8,288208.0 +18.103,906.4,87035.0 +18.108,250.0,106755.0 +18.115,906.4,120806.0 +18.12,312.5,75822.0 +18.125,312.5,98678.0 +18.13,906.4,93262.0 +18.135,250.0,258691.0 +18.14,187.5,121298.0 +18.147,250.0,98901.0 +18.152,281.3,156077.0 +18.157,937.6,91375.0 +18.162,562.6,147531.0 +18.167,250.0,112364.0 +18.172,312.5,88235.0 +18.179,187.5,199628.0 +18.184,218.8,297297.0 +18.189,250.0,183722.0 +18.194,218.8,521115.0 +18.199,500.1,90527.0 +18.204,281.3,96581.0 +18.211,156.3,108737.0 +18.216,468.8,179676.0 +18.221,125.0,169801.0 +18.226,187.5,507632.0 +18.231,468.8,290410.0 +18.236,281.3,112230.0 +18.243,406.3,104111.0 +18.248,125.0,102690.0 +18.253,312.5,163716.0 +18.258,125.0,164966.0 +18.263,187.5,169713.0 +18.268,187.5,276187.0 +18.275,125.0,165613.0 +18.28,437.6,152751.0 +18.285,218.8,122373.0 +18.29,437.6,76876.0 +18.295,125.0,394665.0 +18.3,187.5,28720.0 +18.307,468.8,239819.0 +18.312,125.0,171909.0 +18.317,375.1,220574.0 +18.322,437.6,79911.0 +18.327,437.6,118331.0 +18.332,156.3,342422.0 +18.339,187.5,76291.0 +18.344,406.3,190855.0 +18.349,875.1,73963.0 +18.354,937.6,127792.0 +18.359,437.6,94183.0 +18.364,531.3,52825.0 +18.371,187.5,513859.0 +18.376,187.5,917868.0 +18.381,125.0,76870.0 +18.386,218.8,250644.0 +18.391,187.5,117797.0 +18.396,218.8,337088.0 +18.403,156.3,100786.0 +18.408,250.0,604571.0 +18.413,156.3,231353.0 +18.418,250.0,471643.0 +18.423,125.0,447184.0 +18.428,312.5,368708.0 +18.435,187.5,188019.0 +18.44,250.0,557606.0 +18.445,187.5,265436.0 +18.45,218.8,400561.0 +18.455,187.5,89077.0 +18.46,218.8,720715.0 +18.467,250.0,181619.0 +18.472,187.5,431689.0 +18.477,156.3,155883.0 +18.482,187.5,323997.0 +18.487,156.3,291450.0 +18.492,218.8,100991.0 +18.499,218.8,307114.0 +18.504,187.5,79458.0 +18.509,218.8,72291.0 +18.514,906.4,74753.0 +18.519,375.1,138154.0 +18.524,187.5,224470.0 +18.531,343.8,137580.0 +18.536,156.3,236709.0 +18.541,1531.5,47243.0 +18.546,156.3,179491.0 +18.551,125.0,150075.0 +18.556,343.8,80188.0 +18.563,156.3,475349.0 +18.568,187.5,418212.0 +18.573,156.3,360009.0 +18.578,156.3,179027.0 +18.583,281.3,76886.0 +18.588,218.8,291992.0 +18.595,250.0,80047.0 +18.6,406.3,129401.0 +18.605,125.0,395358.0 +18.61,218.8,51013.0 +18.615,437.6,179628.0 +18.62,718.9,95349.0 +18.627,156.3,180476.0 +18.632,156.3,133157.0 +18.637,281.3,78734.0 +18.642,250.0,194841.0 +18.647,906.4,68360.0 +18.652,906.4,133433.0 +18.659,468.8,80241.0 +18.664,187.5,127732.0 +18.669,125.0,203721.0 +18.674,875.1,187631.0 +18.679,875.1,46600.0 +18.684,312.5,22671.0 +18.691,156.3,129500.0 +18.696,406.3,103148.0 +18.701,125.0,154260.0 +18.706,281.3,77716.0 +18.711,218.8,153860.0 +18.716,531.3,63868.0 +18.723,125.0,74734.0 +18.728,125.0,105102.0 +18.733,187.5,211305.0 +18.738,781.4,48958.0 +18.743,343.8,239003.0 +18.748,750.1,155799.0 +18.755,218.8,340606.0 +18.76,781.4,195184.0 +18.765,843.9,106527.0 +18.77,812.6,122789.0 +18.775,187.5,195381.0 +18.78,812.6,83248.0 +18.787,125.0,171134.0 +18.792,2375.3,47332.0 +18.797,156.3,201731.0 +18.802,187.5,248064.0 +18.807,156.3,79805.0 +18.812,156.3,142307.0 +18.819,281.3,106091.0 +18.824,218.8,235723.0 +18.829,125.0,144468.0 +18.834,218.8,128881.0 +18.839,437.6,143590.0 +18.844,531.3,149822.0 +18.851,156.3,99660.0 +18.856,375.1,153420.0 +18.861,187.5,293184.0 +18.866,375.1,103510.0 +18.871,562.6,165726.0 +18.876,187.5,124076.0 +18.883,218.8,156173.0 +18.888,250.0,180150.0 +18.893,343.8,154567.0 +18.898,437.6,103807.0 +18.903,312.5,57170.0 +18.908,343.8,191519.0 +18.915,156.3,145779.0 +18.92,406.3,168835.0 +18.925,187.5,134647.0 +18.93,218.8,290008.0 +18.935,625.1,113756.0 +18.94,250.0,203527.0 +18.947,468.8,309150.0 +18.952,468.8,264194.0 +18.957,218.8,197110.0 +18.962,531.3,255898.0 +18.967,187.5,386138.0 +18.972,156.3,119338.0 +18.979,437.6,212277.0 +18.984,156.3,104293.0 +18.989,156.3,373722.0 +18.994,406.3,130798.0 +18.999,125.0,121241.0 +19.004,156.3,303829.0 +19.011,187.5,197652.0 +19.016,1375.2,53728.0 +19.021,531.3,79107.0 +19.026,156.3,243419.0 +19.031,156.3,370459.0 +19.036,468.8,171945.0 +19.043,156.3,237094.0 +19.048,125.0,225230.0 +19.053,125.0,144683.0 +19.058,218.8,93181.0 +19.063,750.1,35651.0 +19.068,125.0,434340.0 +19.075,781.4,99237.0 +19.08,437.6,252405.0 +19.085,406.3,103835.0 +19.09,250.0,187570.0 +19.095,406.3,208404.0 +19.1,125.0,53506.0 +19.107,156.3,672455.0 +19.112,156.3,1423085.0 +19.117,218.8,519789.0 +19.122,375.1,156045.0 +19.127,156.3,221876.0 +19.132,218.8,148426.0 +19.139,187.5,544060.0 +19.144,156.3,117732.0 +19.149,218.8,256519.0 +19.154,156.3,204399.0 +19.159,250.0,202772.0 +19.164,156.3,314326.0 +19.171,843.9,98948.0 +19.176,125.0,422489.0 +19.181,218.8,77794.0 +19.186,156.3,308437.0 +19.191,875.1,105602.0 +19.196,125.0,177670.0 +19.203,156.3,234034.0 +19.208,531.3,72983.0 +19.213,187.5,339560.0 +19.218,218.8,123663.0 +19.223,187.5,230488.0 +19.228,156.3,192987.0 +19.235,156.3,273258.0 +19.24,187.5,221834.0 +19.245,218.8,96802.0 +19.25,156.3,103455.0 +19.255,781.4,106625.0 +19.26,187.5,127952.0 +19.267,187.5,223180.0 +19.272,218.8,141583.0 +19.277,187.5,100536.0 +19.282,875.1,67687.0 +19.287,187.5,98519.0 +19.292,125.0,222832.0 +19.299,125.0,352076.0 +19.304,156.3,493522.0 +19.309,406.3,278117.0 +19.314,843.9,341557.0 +19.319,312.5,248608.0 +19.324,437.6,440202.0 +19.331,406.3,381937.0 +19.336,812.6,291728.0 +19.341,437.6,708216.0 +19.346,312.5,391705.0 +19.351,468.8,268060.0 +19.356,437.6,333055.0 +19.363,312.5,385134.0 +19.368,437.6,523039.0 +19.373,437.6,108131.0 +19.378,218.8,238909.0 +19.383,375.1,613267.0 +19.388,281.3,178966.0 +19.395,375.1,204582.0 +19.4,125.0,244540.0 +19.405,531.3,220284.0 +19.41,406.3,383797.0 +19.415,218.8,248043.0 +19.42,468.8,306712.0 +19.427,375.1,181382.0 +19.432,250.0,353858.0 +19.437,468.8,329899.0 +19.442,375.1,93077.0 +19.447,406.3,169814.0 +19.452,468.8,367161.0 +19.459,2344.1,65179.0 +19.464,468.8,133599.0 +19.469,468.8,286726.0 +19.474,375.1,170961.0 +19.479,218.8,562074.0 +19.484,250.0,348069.0 +19.491,187.5,96803.0 +19.496,437.6,491944.0 +19.501,437.6,424488.0 +19.506,437.6,169100.0 +19.511,468.8,81104.0 +19.516,218.8,373591.0 +19.523,187.5,630529.0 +19.528,187.5,342358.0 +19.533,468.8,92072.0 +19.538,468.8,156554.0 +19.543,343.8,255021.0 +19.548,218.8,343060.0 +19.555,343.8,333804.0 +19.56,218.8,274137.0 +19.565,250.0,465144.0 +19.57,312.5,188822.0 +19.575,406.3,237003.0 +19.58,218.8,102386.0 +19.587,187.5,432770.0 +19.592,125.0,432321.0 +19.597,218.8,173589.0 +19.602,406.3,172527.0 +19.607,250.0,361800.0 +19.612,437.6,90687.0 +19.619,187.5,296713.0 +19.624,343.8,153408.0 +19.629,406.3,523612.0 +19.634,500.1,43560.0 +19.639,406.3,65384.0 +19.644,406.3,508435.0 +19.651,968.9,52110.0 +19.656,406.3,477011.0 +19.661,468.8,100020.0 +19.666,343.8,205084.0 +19.671,406.3,242856.0 +19.676,281.3,300766.0 +19.683,156.3,868463.0 +19.688,343.8,353925.0 +19.693,468.8,253174.0 +19.698,500.1,121047.0 +19.703,218.8,463417.0 +19.708,156.3,223020.0 +19.715,187.5,622401.0 +19.72,187.5,402212.0 +19.725,343.8,90143.0 +19.73,218.8,108488.0 +19.735,187.5,108978.0 +19.74,218.8,480081.0 +19.747,375.1,128961.0 +19.752,218.8,405821.0 +19.757,125.0,503843.0 +19.762,406.3,154697.0 +19.767,187.5,346895.0 +19.772,156.3,388025.0 +19.779,312.5,176340.0 +19.784,3094.2,83902.0 +19.789,250.0,249723.0 +19.794,250.0,166711.0 +19.799,500.1,92184.0 +19.804,250.0,670771.0 +19.811,437.6,332295.0 +19.816,406.3,108193.0 +19.821,218.8,416201.0 +19.826,250.0,164166.0 +19.831,281.3,176961.0 +19.836,406.3,81366.0 +19.843,406.3,209214.0 +19.848,437.6,187881.0 +19.853,375.1,77107.0 +19.858,250.0,244167.0 +19.863,406.3,185165.0 +19.868,375.1,169755.0 +19.875,125.0,125428.0 +19.88,375.1,209281.0 +19.885,531.3,101665.0 +19.89,531.3,279976.0 +19.895,406.3,176280.0 +19.9,437.6,152121.0 +19.907,281.3,230248.0 +19.912,156.3,188341.0 +19.917,375.1,158692.0 +19.922,468.8,128562.0 +19.927,343.8,180327.0 +19.932,343.8,125251.0 +19.939,843.9,71891.0 +19.944,312.5,262399.0 +19.949,437.6,204623.0 +19.954,531.3,53642.0 +19.959,375.1,290489.0 +19.964,218.8,171306.0 +19.971,187.5,160582.0 +19.976,406.3,183393.0 +19.981,312.5,357525.0 +19.986,250.0,165039.0 +19.991,375.1,554627.0 +19.996,343.8,339354.0 +20.003,343.8,255032.0 +20.008,281.3,217210.0 +20.013,375.1,291502.0 +20.018,312.5,80577.0 +20.023,343.8,332462.0 +20.028,406.3,389973.0